/* ******************************************************************
 *	File name		: graduate.css
 *	Summary			: css base
 * ******************************************************************
 */

:root {
	--page-theme: #FFF4F6;/* 背景 */
	--page-color: #E87795;/* 文字 */
}

/* -----------------------------------------------------------------
   base
----------------------------------------------------------------- */

html{
	background:var(--page-theme);
	}
	header::before{
		background:var(--page-theme);
	}
#wrapper::before{
	display:none;
}

#main_contents{
	position:relative;
	width:100% !important;
	max-width:100%;
	margin:0 auto;
	padding:0px !important;
}
section{
	position:relative;
	width:100%;
	max-width:100%;
	margin:0 auto;
	padding:0px !important;
	background:none !important;
}

/* --- responsive --- */
@media screen and (max-width:1040px){
	#main_contents{
		padding:0 10px !important;
	}
}


/* -----------------------------------------------------------------
   flower
----------------------------------------------------------------- */

#flower_action{
	position:fixed;
	width:100%;
	height:100%;
	z-index:-1;
}
#flower_action img:nth-child(odd){
	animation:flower_turn_1 10s linear 0s infinite;
}
#flower_action img:nth-child(even){
	animation:flower_turn_2 10s linear 0s infinite;
}

@keyframes flower_turn_1{
	0% {transform:rotate(0deg);}
	100% {transform:rotate(359deg);}
}
@keyframes flower_turn_2{
	0% {transform:rotate(0deg);}
	100% {transform:rotate(-359deg);}
}

/* -----------------------------------------------------------------
   section
----------------------------------------------------------------- */

section.fadein{
	transition:0.8s ease-in-out;
	transform:translateY(30px);
	opacity:0;
}
section.fadein.active{
	transform:translateY(0px);
	opacity:1;
}

section.fadein_right{
	transition:1.3s ease-in-out;
	transform:translateX(150px);
	opacity:0;
}
section.fadein_right.active{
	transform:translateX(0px);
	opacity:1;
}

section.fadein_left{
	transition:1.3s ease-in-out;
	transform:translateX(-150px);
	opacity:0;
}
section.fadein_left.active{
	transform:translateX(0px);
	opacity:1;
}

section.box{
	position:relative;
	margin:0 auto 100px;
	}
	section.box::before{
		content:" ";
		position:absolute;
		top:0px;
		width:50%;
		height:100%;
		background:#FFF;
		z-index:0;
		}
		section.box.box_left::before{
			right:50%;
		}
		section.box.box_right::before{
			left:50%;
}
section.box .contents{
	position:relative;
	width:1100px;
	max-width:100%;
	margin:0 auto;
	padding:100px 40px;
	background:#FFF;
	-moz-border-radius:50px;
	-webkit-border-radius:50px;
	border-radius:50px;
}

/* --- responsive --- */
@media screen and (max-width:1040px){
	section{
		padding:15px;
	}
	section.fadein_right,
	section.fadein_left{
		transition:0.8s ease-in-out;
		transform:translateY(30px);
		opacity:0;
	}
	section.fadein_right.active,
	section.fadein_left.active{
		transform:translateY(0px);
		opacity:1;
	}
	section::before{
		display:none;
	}

	section.box .contents{
		padding:30px 15px 30px;
	}
}

/* -----------------------------------------------------------------
   p
----------------------------------------------------------------- */

section p{
	position:relative;
	font-size:1.05rem;
	text-align:left;
	line-height:1.75;
}

section p.sub_lead{
	margin:0 auto 20px;
	font-weight:600;
	font-size:1.4rem;
	text-align:center;
	color:var(--page-color);
}

/* --- responsive --- */
@media screen and (max-width:1040px){
	section p{
		font-size:0.9rem;
		line-height:1.75;
	}

	section p.sub_lead{
		font-size:1.3rem;
	}
}

/* -----------------------------------------------------------------
   page_box
----------------------------------------------------------------- */

.page_box{
	padding-left:10px;
	border-left:5px solid var(--page-color);
	}
	.page_box b{
		font-weight:500;
		color:var(--page-color);
	}
	.page_box p{
		margin-bottom:0px !important;
}

/* -----------------------------------------------------------------
   box_line
----------------------------------------------------------------- */

.box_line{
	margin-bottom:70px;
	border-bottom:1px solid var(--page-color);
}
/* --- responsive --- */
@media screen and (max-width:1000px){
	.box_line{
		padding-bottom:70px;
	}
}

/* -----------------------------------------------------------------
   lr_box
----------------------------------------------------------------- */

.lr_box{
	display:-webkit-flex;
	display:flex;
	-webkit-box-pack:justify;
	-ms-flex-pack:justify;
	justify-content:space-between;
	flex-wrap:wrap;
	}
	.lr_box .lr_text{
		position:relative;
		flex:1;
	}
	.lr_box figure{
		max-width:100%;
		margin-left:30px;
}
/* --- responsive --- */
@media screen and (max-width:1000px){
	.lr_box .lr_text{
		flex:none;
		width:100% !important;
		margin-bottom:15px;
	}
	.lr_box figure{
		width:100%;
		text-align:center;
		margin:0px auto;
	}
}

/* -----------------------------------------------------------------
   shigle_title
----------------------------------------------------------------- */

#shigle_title{
	position:relative;
	width:100%;
	}
	#shigle_title h2{
		position:relative;
		width:100%;
		margin:130px 0 30px;
		font-weight:bold;
		font-size:2.4rem;
		text-align:center;
		color:#000;
		line-height:1.35;
	}
	#shigle_title + p{
		margin:0 0 90px;
		font-weight:bold;
		line-height:1.75;
	}
	#shigle_title + p b{
		display:block;
		margin-bottom:20px;
		font-size:1.7rem;
}

/* --- responsive --- */
@media screen and (max-width:767px){
	#shigle_title h2{
		margin:40px 0 30px;
		padding:0 20px;
		font-size:1.8rem;
	}
	#shigle_title + p{
		margin:0 0 50px;
		padding:0 20px;
		font-size:0.95rem;
		line-height:1.75;
	}
	#shigle_title + p b{
		font-size:1.4rem;
	}
}

/* -----------------------------------------------------------------
   shigle_title img
----------------------------------------------------------------- */

#shigle_title h2::before{
	content:" ";
	position:absolute;
	top:-3px;
	right:calc(50% - 300px);
	width:75px;
	height:125px;
	background:url(../../image/page/graduate.png) no-repeat 0 0;
	background-size:contain;
}

/* --- responsive --- */
@media screen and (max-width:767px){
	#shigle_title h2::before{
		display:block;
		position:relative;
		top:0px;
		right:0px;
		margin:0 auto 15px;
	}
}


/* -----------------------------------------------------------------
   EXtra
----------------------------------------------------------------- */

/* merit_circle */
.merit_circle{
	position:relative;
	margin:80px 0 80px;
}
.merit_circle h3{
	margin:0 0 15px;
	font-weight:500 !important;
	font-size:1.4rem;
}
.merit_circle h3 b{
	display:inline-block;
	margin:0 15px;
	font-weight:bold;
	font-size:2.5rem;
}
.merit_circle ul{
	display:-webkit-flex;
	display:flex;
	-webkit-box-pack:justify;
	-ms-flex-pack:justify;
	justify-content:space-between;
	flex-wrap:wrap;
	width:630px;
	max-width:100%;
	margin:0 auto;
	}
	#gc_attire .merit_circle ul{
		width:420px;
		max-width:100%;
	}
	.merit_circle ul li{
		width:172px;
		max-width:100%;
		text-align:center;
	}
	.merit_circle ul li div{
		display:-webkit-flex;
		display:flex;
		justify-content:center;
		align-items:center;
		position:relative;
		width:172px;
		height:172px;
		margin:0 0 13px;
		font-weight:500;
		font-size:1.2rem;
		-moz-border-radius:86px;
		-webkit-border-radius:86px;
		border-radius:86px;
		background:#5F8FCB;
		line-height:1.4;
		color:#FFF;
		transform:scale(1.3,1.3);
		transition-duration:1.5s;
	}
	#gc_attire .merit_circle ul li div{
		width:190px;
	}
	.merit_circle ul li p{
		margin:7px 0 0;
		font-weight:500;
		font-size:0.9rem;
		text-align:center;
		line-height:1.35;
}
.merit_circle h3 b{
	display:inline-block;
	margin:0 15px;
	font-weight:bold;
	font-size:2.5rem;
}

.merit_circle.active{
}
.merit_circle.active ul li div{
	transform:scale(1,1);
}
/* --- responsive --- */
@media screen and (max-width:1040px){
	.merit_circle ul li{
		width:100%;
		margin:0 0 0px;
	}
	#gc_attire .merit_circle ul li div,
	.merit_circle ul li div{
		left:10px;
		width:calc(100% - 20px);
		height:auto;
		padding:10px;
		font-size:1.1rem;
		-moz-border-radius:10px;
		-webkit-border-radius:10px;
		border-radius:10px;
		transform:scale(1.1,1.1);
		}
		.merit_circle ul li div br{
			display:none;
		}
	.merit_circle ul li div::before{
		display:none;
	}
	.merit_circle ul li p{
	}
}

/* -----------------------------------------------------------------
   top_title
----------------------------------------------------------------- */

section ul.disc li{
	position:relative;
	width:100%;
	margin-bottom:10px;
	padding-left:15px;
	font-size:0.92rem;
	text-align:left;
	}
	section ul.disc li b{
		font-weight:normal !important;
		font-size:1.0rem;
	}
	section ul.disc li::before{
		content:" ";
		position:absolute;
		top:7px;
		left:0px;
		width:9px;
		height:9px;
		-moz-border-radius:50%;
		-webkit-border-radius:50%;
		border-radius:50%;
		background:var(--page-color);
}

/* -----------------------------------------------------------------
   h3
----------------------------------------------------------------- */

#gc_attire .lr_text{
	text-align:left;
}
#gc_attire .lr_box h3{
	display:-webkit-flex;
	display:flex;
	justify-content:center;
	align-items:center;
	width:175px;
	height:30px;
	margin-bottom:7px;
	text-align:left;
	font-weight:500 !important;
	border:1px solid #000;
	-moz-border-radius:15px;
	-webkit-border-radius:15px;
	border-radius:15px;
}

/* -----------------------------------------------------------------
   top_title
----------------------------------------------------------------- */

.section_title{
	position:relative;
	margin:0 0 20px;
	text-align:center;
	line-height:1.5;
	}
	.section_title *{
		color:var(--page-color);
	}
	.section_title h2{
		position:relative;
		padding:0 0 30px;
		margin:0 0 20px;
		font-weight:bold;
		font-size:3.0rem;
		line-height:1.2;
	}
	.section_title h2::before,
	.section_title h2::after{
		content:" ";
		position:absolute;
		bottom:0px;
		width:64px;
		height:8px;
	}
	.section_title h2::before{
		left:50%;
		background:#E87C97;
	}
	.section_title h2::after{
		right:50%;
		background:#5F8FCB;
}
.bg_blue .section_title *{
	color:#FFF;
}

#main_contents h3{
	font-weight:bold;
}

/* --- responsive --- */
@media screen and (max-width:1040px){
	.section_title h2{
		font-size:1.9rem !important;
	}
}

/* -----------------------------------------------------------------
   ribbon
----------------------------------------------------------------- */

.ribbon{
	display:-webkit-flex;
	display:flex;
	justify-content:center;
	align-items:center;
	position:relative;
	width:580px;
	max-width:calc(100% - 40px);
	height:80px;
	margin:0 auto 50px;
	font-weight:bold;
	font-size:1.7rem;
	background:var(--page-color);
	color:#FFF;
	}
	.ribbon::before,
	.ribbon::after{
		content:" ";
		position:absolute;
		top:0px;
		border:40px solid transparent;
		border-left:30px solid var(--page-theme);
	}
	.ribbon::before{
		left:0px;
	}
	.ribbon::after{
		right:0px;
		transform:rotate(180deg);
}

/* --- responsive --- */
@media screen and (max-width:767px){
	.ribbon{
		height:60px;
		font-size:1.1rem;
		}
		.ribbon::before,
		.ribbon::after{
			border:30px solid transparent;
			border-left:20px solid var(--page-theme);
	}
}

/* -----------------------------------------------------------------
   second_nav
----------------------------------------------------------------- */

#second_nav{
	position:relative;
	width:780px;
	max-width:100%;
	margin:0 auto 30px;
	padding:0 20px;
	}
	#second_nav ul{
		display:-webkit-flex;
		display:flex;
		-webkit-box-pack:justify;
		-ms-flex-pack:justify;
		justify-content:space-between;
		flex-wrap:wrap;
	}
	#second_nav ul li{
		position:relative;
		width:100%;
		margin:0 0 15px;
		-moz-border-radius:15px;
		-webkit-border-radius:15px;
		border-radius:15px;
		-moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.4);
		-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.4);
		box-shadow: 4px 4px 5px rgba(0,0,0,0.2);
		background:#FFF;
		}
		#second_nav ul li::before{
			content:" ";
			position:absolute;
			left:30px;
			top:calc(50% - 17px);
			width:35px;
			height:35px;
			background:url(../../image/base/check.png) no-repeat 0 0;
			background-size:contain;
	}
	#second_nav ul li a{
		display:block;
		width:100%;
		padding:15px 10px 15px 100px;
		font-weight:bold;
		font-size:1.2rem;
		text-align:left;
		transition-duration:0.5s;
		color:var(--page-color);
	}
	#second_nav ul li a > span{
		display:inline-block;
		width:200px;
		height:26px;
		text-align:center;
		margin:0 15px 7px 0;
		padding-top:2px;
		font-size:0.95rem;
		background:var(--page-color);
		-moz-border-radius:13px;
		-webkit-border-radius:13px;
		border-radius:13px;
		color:#FFF;
	}
	#second_nav ul li a b{
		display:inline-block;
		font-weight:bold !important;
		font-size:1.4rem !important;
	}
	#second_nav ul li a p{
		color:#555;
	}
	#second_nav ul li a:hover{
		opacity:0.8;
		text-decoration:none;
	}

/* --- responsive --- */
@media screen and (max-width:1000px){
	#second_nav ul li{
		width:100%;
		margin:0 0 10px;
	}
	#second_nav ul li a b{
		font-size:1.1rem !important;
	}
	#second_nav ul li a p{
		font-size:1.0rem;
	}
}

/* -----------------------------------------------------------------
   main_contents
----------------------------------------------------------------- */

#main_contents{
	width:1040px;
	max-width:100%;
	padding:0 20px;
}

/* -----------------------------------------------------------------
   page
----------------------------------------------------------------- */

#calendar{
	margin-bottom:50px;
}

/* --- responsive --- */
@media screen and (max-width:767px){
	#calendar{
		overflow-x:scroll;
	}
	#calendar figure{
		margin-bottom:15px;
		width:200%;
	}
}

#end_comment{
	margin:50px 0;
	}
	#end_comment p{
		font-size:1.1rem;
		line-height:1.75;
}

/* -----------------------------------------------------------------
   yarukoto_banner
----------------------------------------------------------------- */

#yarukoto_banner{
	width:827px;
	padding:0 20px;
	max-width:100%;
	margin:0 auto 175px;
}
/* --- responsive --- */
@media screen and (max-width:767px){
	#yarukoto_banner{
		width:500px;
		margin:0 auto 80px;
	}
}

/* -----------------------------------------------------------------
   footer
----------------------------------------------------------------- */

footer{
	background:#FFF;
	}
	footer::before{
		background:url(../../image/base/ft_bg_w.png) no-repeat center bottom;
		background-size:cover;
}

/* ft_banner */
#ft_contents_sp{
	display:-webkit-flex;
	display:flex;
	-webkit-box-pack:justify;
	-ms-flex-pack:justify;
	justify-content:space-between;
	flex-wrap:wrap;
	position:relative;
	width:1000px;
	max-width:100%;
	margin:0 auto;
	padding:40px 0;
	z-index:2;
	}
	#ft_contents_sp h2{
		width:240px;
		font-weight:bold !important;
		font-size:2.0rem;
		text-align:left;
		color:#000;
	}
	#ft_contents_sp div{
		width:calc(100% - 240px);
		text-align:left;
	}
#ft_contents_sp *{
	color:#000;
}

/* --- */
#ft_contents_sp div p{
	font-size:1.1rem;
	line-height:1.75;
}
#ft_contents_sp div #ft_fshop{
	margin:0px 0 100px;
}
#ft_contents_sp div #ft_fshop p:has(strong){
	position:relative;
	margin:0 0 0px;
	padding-left:35px;
	font-size:1.5rem;
	}
	#ft_contents_sp div #ft_fshop p:has(strong)::before{
		content:" ";
		position:absolute;
		top:7px;
		left:0px;
		width:25px;
		height:25px;
		background:#F08300;
		-moz-border-radius:50%;
		-webkit-border-radius:50%;
		border-radius:50%;
	}
	#ft_contents_sp div #ft_fshop p strong{
		font-weight:bold;
}
#ft_contents_sp div #ft_tel{
	position:relative;
	margin:0 0 10px;
	font-weight:bold;
	font-size:1.9rem;
	line-height:1;
	}
	#ft_contents_sp div #ft_tel b{
		font-weight:bold !important;
		font-size:2.5rem;
}
#ft_contents_sp div #ft_tel span{
	font-weight:normal;
	font-size:1.0rem;
}
#ft_contents_sp div #ft_mail{
	margin:0 0 10px;
	}
	#ft_contents_sp div #ft_mail img{
		position:relative;
		top:-5px;
		margin:0 15px 0 0;
	}
	#ft_contents_sp div #ft_mail a{
		font-size:1.5rem;
		color:#000;
		text-decoration:none;
}
#ft_contents_sp div .back_top{
	width:520px;
	max-width:100%;
	height:110px;
	margin:0 0 60px;
	}
	#ft_contents_sp div .back_top a{
		display:-webkit-flex;
		display:flex;
		justify-content:center;
		align-items:center;
		position:relative;
		width:100%;
		height:100%;
		font-size:1.5rem;
		background:#F08300;
		color:#FFF;
		border:2px solid #F08300;
		-moz-border-radius:25px;
		-webkit-border-radius:25px;
		border-radius:25px;
		transition-duration:0.5s;
	}
	#ft_contents_sp div .back_top a:hover{
		text-decoration:none;
		background:#FFF;
		color:#F08300;
		}
		#ft_contents_sp div .back_top a::before{
			content:" ";
			position:absolute;
			left:60px;
			width:46px;
			height:35px;
			background:url(../../image/base/pc.png) no-repeat 0 0;
		}
		#ft_contents_sp div .back_top a:hover::before{
			background:url(../../image/base/pc_on.png) no-repeat 0 0;
}
#ft_contents_sp div .box_btn_g{
	width:400px;
	max-width:100%;
	margin:15px 0 0;
}

footer p#copy{
	padding:7px 10px;
	font-size:1.0rem;
}

/* --- responsive --- */
@media only screen and (max-width:1000px){
	/* ft_banner */
	#ft_contents_sp{
		display:none;
	}

	footer p#copy{
		font-size:0.8rem;
		color:#000;
	}
}
@media only screen and (max-width:640px){
	#ft_contents_sp div #ft_fshop{
		margin:30px 0 20px;
	}
	#ft_contents_sp div .back_top{
		width:100%;
		height:70px;
		}
		#ft_contents_sp div .back_top a{
			font-size:1.2rem;
			-moz-border-radius:35px;
			-webkit-border-radius:35px;
			border-radius:35px;
		}
		#ft_contents_sp div .back_top a::before{
			left:20px;
	}
}

/* sp menu */
#ft_contents{
	display:none;
}

/* -----------------------------------------------------------------
   album_box
----------------------------------------------------------------- */

#album_box{
	}
	#album_box ul{
		display:-webkit-flex;
		display:flex;
		-webkit-box-pack:justify;
		-ms-flex-pack:justify;
		justify-content:space-between;
		flex-wrap:wrap;
	}
	#album_box ul li{
		position:relative;
		width:32%;
		margin-bottom:15px;
		padding:15px;
		background:var(--page-theme);
		-moz-border-radius:6px;
		-webkit-border-radius:6px;
		border-radius:6px;
	}
	#album_box ul li h4{
		margin-bottom:10px;
		font-weight:500;
		font-size:1.1rem;
		color:var(--page-color);
	}
	#album_box ul li p{
		font-size:0.95rem;
}
/* --- responsive --- */
@media only screen and (max-width:767px){
	#album_box ul li{
		width:100%;
	}
}

/* -----------------------------------------------------------------
   shop_lr_list
----------------------------------------------------------------- */

.shop_lr_list > ul{
	display:-webkit-flex;
	display:flex;
	-webkit-box-pack:justify;
	-ms-flex-pack:justify;
	justify-content:space-between;
	flex-wrap:wrap;
	width:840px;
	max-width:100%;
	margin:0 auto;
}
.shop_lr_list > ul > li{
	width:390px;
	max-width:49%;
	margin:0 0 30px;
}
#main_contents .shop_lr_list > ul > li h4{
	margin:0 0 10px !important;
	padding:0px !important;
	background:none !important;
}
.shop_lr_list > ul > li h4 a{
	font-weight:bold;
	font-size:1.5rem;
	text-decoration:underline;
	color:var(--base-color);
	line-height:1.4;
}
.shop_lr_list > ul > li p{
	font-size:0.87rem;
	line-height:1.5;
}
.shop_lr_list > ul > li:first-child .handling{
	margin-top:37px;
}
.shop_lr_list > ul > li .handling{
	margin:0 0 15px;
	}
	.shop_lr_list > ul > li .handling p{
		margin:0px;
		line-height:1.75;
	}
	.shop_lr_list > ul > li .handling ul li{
		font-size:0.87rem;
}
.shop_lr_list > ul > li .map{
	position:relative;
	width:100%;
	height:220px;
	margin:0 0 10px;
	border:0px solid var(--base-color);
}
.shop_lr_list > ul > li .map iframe{
	width:100%;
	height:100%;
	border:0;
}

/* --- responsive --- */
@media only screen and (max-width:1000px){
	.shop_lr_list > ul{
		display:block;
	}
	.shop_lr_list > ul > li{
		width:100%;
		max-width:100%;
	}
	.shop_lr_list > ul > li h4 a{
		font-size:1.3rem;
	}
	.shop_lr_list > ul > li h4 br{
		display:none;
	}
	.shop_lr_list > ul > li:first-child .handling{
		margin-top:0px;
	}
}

/* -----------------------------------------------------------------
   drivers_license
----------------------------------------------------------------- */

#drivers_license_lr{
	display:-webkit-flex;
	display:flex;
	-webkit-box-pack:justify;
	-ms-flex-pack:justify;
	justify-content:space-between;
	flex-wrap:wrap;
	margin:0 auto 30px;
}
#drivers_license_lr > div{
	width:calc(100% - 400px);
	text-align:left;
}
#drivers_license_lr > figure{
	width:363px;
	max-width:100%;
}

#drivers_school{
	margin:80px 0 0;
}
#drivers_school h3{
	position:relative;
	margin:0 0 30px;
	padding:10px;
	font-size:1.35rem;
	background:var(--base-color);
	color:#FFF;
}
.ds_h4{
	display:-webkit-flex;
	display:flex;
	-webkit-box-pack:justify;
	-ms-flex-pack:justify;
	justify-content:space-between;
	flex-wrap:wrap;
	margin:0 0 25px;
	-moz-border-radius:20px;
	-webkit-border-radius:20px;
	border-radius:20px;
	border:2px solid var(--base-color);
	overflow:hidden;
	}
	.ds_h4 h4{
		display:-webkit-flex;
		display:flex;
		justify-content:center;
		align-items:center;
		position:relative;
		width:180px;
		padding:10px;
		font-size:1.2rem;
		text-align:center;
		background:var(--base-color);
		color:#FFF;
	}
	.ds_h4 p{
		display:-webkit-flex;
		display:flex;
		justify-content:flex-start;
		align-items:center;
		width:calc(100% - 190px);
		padding:5px;
		font-weight:bold;
		font-size:0.87rem;
		text-align:left;
}

.ds_list{
	display:-webkit-flex;
	display:flex;
	-webkit-box-pack:justify;
	-ms-flex-pack:justify;
	justify-content:space-between;
	flex-wrap:wrap;
}
.ds_list ul{
	display:-webkit-flex;
	display:flex;
	-webkit-box-pack:justify;
	-ms-flex-pack:justify;
	justify-content:space-between;
	flex-wrap:wrap;
	margin:0 0 50px;
	}
	.ds_list.col2 ul li{
		width:48%;
	}
	.ds_list ul li{
		position:relative;
		width:100%;
		margin:0 0 15px;
		text-align:left;
		}
		.ds_list ul li::before{
			content:" ";
			position:absolute;
			top:3px;
			left:0px;
			width:15px;
			height:15px;
			-moz-border-radius:50%;
			-webkit-border-radius:50%;
			border-radius:50%;
			background:#E87C97;
	}
	.ds_list ul li a{
		padding:0 0 0 25px;
		font-weight:bold;
		text-decoration:underline;
		color:#000;
	}
	.ds_list ul li a:nth-child(2),
	.ds_list ul li a:nth-child(3),
	.ds_list ul li span{
		font-weight:normal;
		font-size:0.87rem;
	}
	.ds_list ul li span{
		padding:0 0 0 25px;
	}
	.ds_list ul li a:hover{
		text-decoration:none;
}


/* --- responsive --- */
@media screen and (max-width:767px){
	#drivers_license_lr > div{
		width:100%;
		margin:0 auto 25px;
	}
	#drivers_license_lr > figure{
		width:100%;
		margin:0 auto 15px;
	}

	.ds_h4 h4{
		width:110px;
		padding:5px;
		font-size:0.9rem;
		}
		.ds_h4 p{
			width:calc(100% - 120px);
			padding:5px 10px 5px 0;
			line-height:1.5;
	}

	.ds_list.col2 ul li{
		width:100%;
	}
	.ds_list.col2 ul:nth-child(1){
		margin:0 auto;
	}
}


/* -----------------------------------------------------------------
   ceremony_suit_lr
----------------------------------------------------------------- */

#ceremony_suit_lr{
	display:-webkit-flex;
	display:flex;
	-webkit-box-pack:justify;
	-ms-flex-pack:justify;
	justify-content:space-between;
	width:900px;
	max-width:100%;
	margin:0 auto;
}
#ceremony_suit_lr div{
	width:400px;
	max-width:100%;
	text-align:center;
}
#ceremony_suit_lr div figure{
	width:280px;
	margin:0 auto 10px;
}

/* --- responsive --- */
@media screen and (max-width:1040px){
	#ceremony_suit_lr div{
		width:48%;
	}
	#ceremony_suit_lr div figure{
		width:100%;
		margin:0 auto 10px;
	}
}

















