@charset "utf-8";
/* CSS Document */
html {
  font-size: 10px;
}
body {
  font-family:"Zen Maru Gothic", serif;
  color: #333;
  margin: 0 auto;
	max-width: 1920px;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}
img {
  max-width: 100%;
}
.sp-only {
	display: none;
}
.flex {
	display: flex;
}
.row {
	flex-direction: row-reverse;
}
.wrap {
	flex-wrap: wrap;
}
.ffft {
	font-family: "Futura PT Medium", "Futura PT Bold", "Futura PT Light";
}
.ffym {
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.ffzm {
	font-family: zen-old-mincho, sans-serif;
}
.ffci {
	font-family: Cinzel, "Cinzel Black", "Cinzel Medium", "Cinzel SemiBold";
}
.ffzm {
	font-family:zen-kaku-mincho, sans-serif;
}
.ffst {
	font-family:Stencil;
}
.ffzg {
	font-family: zen-kaku-gothic-new, sans-serif;
}
.fwb {
	font-weight: 600;
}
.white {
	color: #fff;
}

.sp-only {
	display: none;
}
.spbr {
	display: none;
}

.cut {
	display: none;
}


/*========= 上部固定させるためのCSS ===============*/
#header {
	width:100%;
	height: 100px;
	background:#fff;
}
#header .inner {
	position: absolute;
	top: 40px;
	left: 50%;
	transform: translateX(-50%);
}
#header .inner h1 {
	width: 380px;
	margin: 0 auto;
	text-align: center;
}
#header .inner h1 a {
	display: block;
	margin-bottom: 10px;
}
#header .inner h1 a img {
	border-radius: 2rem;
}
#header .inner h1 span {
	font-size: 16px;
	font-weight: 500;
	color: #95B234;
}
.h-tel {
	position: absolute;
	top:30px;
	right: 50px;
	align-items: center;
	gap:10px;
}
.h-tel p {
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 3px;
	color: #777;
}
.h-tel img {
	width: 30px;
}
.h-tel a {
	display: block;
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 3px;
	color: #777;
}


/*mainvisual*/
#mainvisual {
	width: 100%;
	height: 90vh;
	margin: 0 auto;
	background: url("../img/mainvisual.jpg");
	background-size: cover;
	background-position: center;
	z-index: -1;
	position: relative;	
}
#mainvisual::before {
	content: "";
	width: 100%;
	height: 80px;
	background: url("../img/frame.png");
	background-size: cover;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.catch-copy {
	width: 95%;
	max-width: 1100px;
	position: absolute;
	bottom: 150px;
	left: 50%;
	transform: translateX(-50%);
}


/*head-nav*/
.head-nav {
	width: 1200px;
	margin: -30px auto 0 auto;
	padding: 3rem 0;
	box-sizing: border-box;
	background: rgba(158,138,99,0.9);
	border-radius: 2rem;
	
}
.head-nav nav {
	width: 90%;
	margin: auto;
}
.head-nav nav ul {
	justify-content: space-between;
}

.head-nav.fixed {
	position: fixed;/*fixedを設定して固定*/
  z-index: 999;/*最前面へ*/
  top:30px;/*位置指定*/
  left:50%;/*位置指定*/
	transform: translateX(-50%);
	padding: 0.8rem 0;
	width: 100%;
	height: 60px;
	background: rgba(255,255,255,0.9);
	border-radius: 0;
}
.head-nav.fixed ul {
	width: 80%;
	margin: auto;
}
.head-nav.fixed ul li,
.head-nav.fixed ul li a {
	color: #333;
}

/*2階層目以降は横並びにしない*/
nav ul ul{
	display: block;
}
/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
	position: relative;
	text-align: center;
	font-size: 18px;
	font-weight: 500;
	color: #333;
	line-height: 1.5;
}

nav ul li a {
	display: block;
	text-align: center;
	font-size: 18px;
	font-weight: 500;
	color: #333;
	line-height: 1.5;
}
nav ul li span,
nav ul li a span {
	font-size: 15px;
	font-weight: 300;
	font-style:normal;
}


/*== 2・3階層目の共通設定 */

/*下の階層を持っているulの指定*/
.head-nav nav li.has-child ul{
    /*絶対配置で位置を指定*/
	position: absolute;
	left:50%;
	top:8rem;
	transform: translateX(-50%);
	z-index: 5;
    /*形状を指定*/
	background:#D9F8E3;
	width:180px;
    /*はじめは非表示*/
	visibility: hidden;
	opacity: 0;
    /*アニメーション設定*/
	transition: all .3s;
}
.head-nav nav .has-child ul li a{
	padding: 1rem 0;
	font-size:13px;
	text-align: center;
}
/*hoverしたら表示*/
.head-nav nav li.has-child:hover > ul,
.head-nav nav li.has-child ul li:hover > ul,
.head-nav nav li.has-child:active > ul,
.head-nav nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
.head-nav nav li.has-child ul li a{
	display: block;
	color: #333;
	border-bottom:solid 1px rgba(255,255,255,0.6);
}

.head-nav nav li.has-child ul li:last-child a{
	border-bottom:none;
}

.head-nav nav li.has-child ul li a:hover,
.head-nav nav li.has-child ul li a:active{
	background:#54C2A8;
}


@media screen and (max-width:1300px) {
	.head-nav {
		width: 90%;
	}
}


/*news-info*/
#news-info {
	background: #BEB197;
	padding: 5rem 0;
	margin-top: 5rem;
}
#news-info .container {
	width: 85%;
	margin: auto;
	justify-content: space-between;
	align-items: flex-start;
}
.ni-con {
	width: 45%;
	background: #fff;
	border-radius: 3rem;
	box-shadow: 0 3px 6px rgba(0,0,0,0.2);
	padding: 5rem 0;
}
.ttl01 {
	font-weight: 500;
	text-align: center;
	line-height: 1.3;
	font-size: 24px;
	color: #777;
	letter-spacing: 0.5px;
	margin-bottom: 2rem;
}
.ttl01 span {
	color: #EF95AB;
	font-size: 16px;
}
.index-wrap {
	width: 85%;
	margin: auto;
	flex-direction: column;
	gap:3rem;
}
.index-wrap dl {
	padding-bottom: 2rem;
	border-bottom: 1px solid #777;
	padding-left: 60px;
	font-size: 16px;
}
.news-dl,
.blog-dl {
	position: relative;
}
.news-dl::before {
	content: "";
	width: 50px;
	height: 50px;
	background: url("../img/deco01.png");
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
}
.blog-dl::before {
	content: "";
	width: 50px;
	height: 50px;
	background: url("../img/deco02.png");
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
}


/*feature*/
#feature {
	padding: 10rem 0 0 0;
}
.sec-ttl {
	font-size: 32px;
	text-align: center;
	letter-spacing: 3px;
	position: relative;
    margin-bottom: 50px;
}
.sec-ttl::before {
	content: "";
	width: 120px;
	height: 120px;
	background: url("../img/deco03.png");
	background-size: cover;
	opacity: 0.8;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	z-index: -1;
}
.feature-wrap {
	margin-top: 10rem;
}
.feature-wrap ul {
	flex-direction: column;
}
.feature-wrap ul li {
	height: 380px;
}
.feature-wrap ul li .img {
	width: 30%;
}
.feature-wrap ul li .txt {
	width: 70%;
}
.feature-wrap ul li .txt {
	padding-top: 7rem;
	box-sizing: border-box;
}
.f01 {
	background: #FCECEF;
}
.f02 {
	background: #ECF6FC;
}
.f03 {
	background: #ECFCF7;
}
.f-ttl-flex {
	justify-content: center;
	gap: 2rem;
	align-items: center;
}
.fno {
	font-size: 90px;
	letter-spacing: 3px;
	color: #777;
}
.f-ttl {
	font-size: 24px;
	line-height: 1.8;
}
.f-txt {
	width: 70%;
	margin: 2rem auto 0 auto;
	line-height: 2;
	font-size: 18px;
}
.fno-01 span {
	color: #EF719F;
}
.fno-02 span {
	color: #64BFEE;
}
.fno-03 span {
	color: #72E5B0;
}


@media screen and (max-width:1300px) {
	.feature-wrap ul li .txt {
		width: 40%;
	}
	.feature-wrap ul li .img {
		width: 60%;
	}
	.feature-wrap ul li .img img {
		width: 100%;
	}
	.fno {
		font-size: 70px;
	}
	.f-ttl {
		font-size: 20px;
		line-height: 1.8;
	}
	.f-txt {
		width: 90%;
	}
}

/*--- スライドショー ---*/
#slideshow {
	padding: 10rem 0;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
	margin: 5rem auto 0 auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider .slick-slide {
    margin:0 1rem;/*スライド左右の余白調整*/
}



/*treatment*/
#treatment {
	margin: 15rem 0;
	background: #E9E4DB;
	padding: 10rem 0;
	position: relative;
}
#treatment::before {
	content: "";
	width: 100%;
	height: 80px;
	background: url("../img/bg-tre_top.png");
	background-size: cover;
	background-position: center;
	position: absolute;
	top: -80px;
	left: 50%;
	transform: translateX(-50%);
}
#treatment::after {
	content: "";
	width: 100%;
	height: 80px;
	background: url("../img/bg-tre_bottom.png");
	background-size: cover;
	background-position: center;
	position: absolute;
	bottom: -78px;
	left: 50%;
	transform: translateX(-50%);
}

.tre-wrap-top {
	width: 90%;
	margin: 10rem auto 5rem auto;
}
.tre-wrap-top ul {
	justify-content: space-between;
}
.tre-wrap-top ul li {
	width: calc(100% / 5.2);
}
.treatment-item {
	background: #fff;
	border-radius: 3rem;
	padding: 2rem 0 3rem 0;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.treatment-img {
	width: 92%;
	margin: 0 auto 3rem auto;
}
.tre-link {
	display: block;
	color: #5E4724;
	font-weight: 500;
	text-align: center;
	width: 70%;
	margin: auto;
}
.tre-wrap-top .tre-link {
	font-size: 20px;
	letter-spacing: 2.5px;
}
.tre-wrap-bottom {
	width: 88%;
	margin: 0 auto;
}
.tre-wrap-bottom ul {
	justify-content: space-between;
}
.tre-wrap-bottom ul li {
	width: calc(100% / 5.2);
}
.tre-wrap-bottom .tre-link {
	font-size: 16px;
	letter-spacing: 1.5px;
}
.tre-link:hover {
	color: #777;
	border-bottom: 1px solid #777;
}


/*campaign*/
#campaign {
	padding: 0 0 10rem 0;
}
.campaign-bnr {
	max-width: 900px;
	width: 95%;
	margin: auto;
}


/*greeting*/
#greeting {
	padding: 10rem 0;
	background: url("../img/bg-greeting.png");
	background-size: cover;
}
#greeting .inner {
	width: 95%;
	max-width: 1200px;
	align-items: center;
	justify-content: space-between;
	margin: 10rem auto 5rem auto;
}
#greeting .inner .left {
	width: 40%;
}
#greeting .inner .right {
	width: 55%;
}
.greeting-b {
	font-size: 22px;
	line-height: 2;
	color: #5DBF74;
}
.greeting-s {
	font-size: 16px;
	line-height: 2;
	margin: 2rem auto;
}
.greeting-name {
	font-size: 26px;
	color: #8A4A13;
	letter-spacing: 2px;
}

.page-link {
	width: 300px;
	background: #fff;
	border-radius: 2rem;
	margin: auto;
	padding: 2rem 0;
	box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.page-link a {
	display: block;
	text-align: center;
	color: #777;
	font-size: 18px;
	letter-spacing: 1.5px;
	font-weight: 500;
}


/*insta*/
#instagram {
	padding: 10rem 0;
}
.insta-index-wrap {
	max-width: 1000px;
	align-items: flex-start;
	justify-content: center;
	gap:5rem;
	margin: 10rem auto 5rem auto;
}
.insta-index-wrap .item {
	width: 250px;
}

.page-link a i {
	font-size: 20px;
	color: #48B77B;
	margin-right: 1rem;
}


/*footer*/
#footer {
	padding-top: 5rem;
	background: #BEB197;
}
.foot-logo {
	width: 300px;
	margin: auto;
}
.foot-adress {
	text-align: center;
	font-size: 16px;
	letter-spacing: 1px;
	color: #5E4724;
	margin: 2rem auto;
	font-weight: 500;
}
.foot-adress i {
	font-size: 20px;
	color: #E9E4DB;
}
.foot-timetable {
	width: 95%;
	max-width: 600px;
	margin: auto;
}
.blog-link {
	align-items: center;
	justify-content: center;
	gap: 3rem;
	margin: 2rem auto
}
.blog-link .item {
	width: 200px;
}
.site-map {
	max-width: 900px;
	width: 80%;
	margin: auto;
}
.sitemap-ttl {
	text-align: center;
	font-size: 18px;
	letter-spacing: 2px;
	margin-bottom: 2rem;
}
.site-map ul {
	justify-content: center;
	gap: 3rem;
	border-bottom: 1px solid #fff;
}
.site-map ul li a {
	display: block;
	font-size: 16px;
	font-weight: 500;
} 
.foot-map {
	width: 100%;
	margin-top: 5rem;
}
.foot-map iframe {
	width: 100%;
}
.copy {
	padding: 5px 0;
}
.copy p {
	font-size: 14px;
	text-align: center;
}
















/*---------------------------------------------*/

/*トップリンク*/
/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#fff;
	border: 1px solid #874316;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	color: #7d7d7d;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}




/*==================================================
ふわっ
===================================*/

/* その場で */
.fadeIn{
animation-name:fadeInAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 下から */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 上から */

.fadeDown{
animation-name:fadeDownAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeDownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 左から */

.fadeLeft{
animation-name:fadeLeftAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
  transform: translateX(-100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* 右から */

.fadeRight{
animation-name:fadeRightAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
  transform: translateX(100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger{
    opacity: 0;
}


/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/

.box{
	opacity: 0;
}

/*==================================================
動かしたい動き（今回は” ふわっ” を採用）
===================================*/

.fadeUp {
animation-name:fadeUpAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}
/****************************************************
下層ページ
*****************************************************/
#u_mainvisual {
	width: 100%;
	height: 36vw;
	margin: 0 auto;
	background: url("../img/u_mainvisual.jpg");
	background-size: cover;
	background-position: center;
	z-index: -1;
	position: relative;	
}
#u_mainvisual::before {
	content: "";
	width: 100%;
	height: 80px;
	background: url("../img/frame.png") no-repeat;
	background-size: contain;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.h2_ttl
{
    text-align: center;
    color: #FFFFFF;
    font-size: max(3vw , 30px);
    position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.inner
{
    max-width: calc(1200px + 6%);
    margin: 3% auto;
    padding: 3%;
}
.inner p
{
    font-size: max(0.9vw , 16px);
}
.price_box
{
    font-size: max(1vw , 18px);
    display: flex;
    justify-content: space-between;
    padding: 1vw;
    background: #FFCFFA;
    flex-wrap: wrap;
    margin: 3% auto;
    align-items: flex-start;
}
.price_box li:nth-child(even)
{
    font-weight: 700;
    font-size: max(1.2vw , 20px);
    color: #8F003E;
    text-align: right;
}
.price_box li
{
    width: 50%;
    line-height: 2;
}
.price_box li span
{
    font-size: max(0.8vw , 16px);
}
.flex-2
{
    width: 48%;
}
.h4_ttl
{
    font-size: max(1.4vw, 20px);
    font-weight: 700;
    padding-left: 40px;
    position: relative;
    margin-bottom: 3%;
}
.h4_ttl::before
{
    content: "";
    background: url("../img/title_icon.png") no-repeat center / contain;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 38px;
}
.inner .flex
{
    justify-content: space-between;
    margin-bottom: 3%;
}
.bord_b
{
    padding-bottom: 3%;
    border-bottom: 1px dashed #333333;
}
.flex-img
{
    width: 28%;
}
.flex-txt
{
    width: 68%;
}
.bg_box
{
    background: #FFD4F4;
    padding: 3vw;
}
.flex-4
{
    width: 15%;
}
.tc
{
    text-align: center;
}
.flex-3
{
    width: 23%
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
.tbl
{
    font-size: max(0.9vw , 16px);
    max-width: 800px;
    width: 100%;
    margin: 3% auto;
}
.tbl th {
    padding: 10px;
    text-align: left;
    vertical-align: middle;
    border: 1px solid #A67C52;
    background: #321F00;
    color: #FFF;
    width: 20%;
}
.tbl td {
    padding: 10px;
    text-align: left;
    border: 1px solid #A67C52;
    width: 80%;
}
.mt3
{
    margin-top: 3%;
}
.border_box
{
    padding: 3vw;
    border: 1px solid #570000;
    margin: 3% 0;
}
.check_list
{
    max-width: 1000px;
    margin: 3% auto;
    display: flex;
    gap:10px;
    justify-content: space-around;
    flex-wrap: wrap;
}
.box_ttl
{
    text-align: center;
    font-weight: 700;
    font-size: max(1.2vw , 20px);
    margin-bottom: 3%;
}
.check_list li
{
  width: 34%;
    font-size: max(0.9vw , 16px);
    list-style: disc;
        margin-left: 2rem;
}
.bold
{
    font-weight: 700;
}
.t20
{
    font-size: max(1.2vw , 20px)!important;
}
.career
{
    margin: 3% 0;
    font-size: max(0.9vw , 16px);
}
.career li
{
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333333;
}
.career dl
{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between
}
.career dt
{
    width: 20%;
}
.career dd
{
    width: 75%;
}
.flow_flex
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap : 20px;
}
.flow_box
{
    width: 12%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2vw;
    background: #E1D9C9;
    font-size: max(0.9vw , 16px);
    position: relative;
    border: 1px solid #5B3600;
    height: 50px;
}
.flow_box::before
{
    content: "";
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    background: url("../img/arrow.png") no-repeat center / contain;
    width: 15px;
    height: 30px;
}
.flow_box:last-child::before
{
    display: none;
}
.box_con {
  max-width: 900px;
  margin: 0  auto;
}
@media only screen and (max-width: 768px) {
  .box_con {
    width: 95%;
  }
}
.box_con form {
  width: 100%;
}
.box_con form table {
  width: 100%;
    font-size: 1.8rem;
    padding: 1rem;
    margin-top: 5rem;
}
.box_con form table tr {
  position: relative;
}
.box_con form table tr:after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 1px;
  border-bottom: dotted #cdcdcd 1px;
}
.box_con form table tr th {
  width: 30%;
  font-weight: normal;
  padding: 1em .5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .box_con form table tr th {
    text-align: center;
    width: 100%;
    display: block;
    background: #97ae88;
    padding: .8em .2em;
    color: #fff;
  }
}
.box_con form table tr th span {
  background: #cd6f55;
  padding: 0 .3em;
  color: #fff;
  margin-left: .5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.box_con form table tr td {
  padding: 1em .5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .box_con form table tr td {
    padding: 1.5em .5em;
    display: block;
    width: 100%;
  }
}
.box_con form table tr .box_br {
  display: block;
}
.box_con form table tr select {
  border: 1px solid #97ae88;
}
.box_con form table tr label input {
  cursor: pointer;
  display: none;
  vertical-align: middle;
}
.box_con form table tr .radio02-input + label {
  padding-left: 23px;
  margin-right: 20px;
  position: relative;
}
.box_con form table tr .radio02-input + label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #999;
  border-radius: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.box_con form table tr .radio02-input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 3px;
  width: 12px;
  height: 12px;
  background: #97ae88;
  border-radius: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.box_con form table tr select, .box_con form table tr input, .box_con form table tr textarea {
  width: 100%;
  height: 3em;
  padding: .5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
    background: #EEEEEE;
}
.box_con form table tr textarea {
  height: 10em;
}

/*プライバシーのデザインcss↓*/
.con_pri {
  max-width: 700px;
  margin: 0  auto;
}
@media only screen and (max-width: 768px) {
  .con_pri {
    width: 95%;
  }
}
.con_pri .box_pri {
  height: 300px;
  overflow-y: scroll;
  border: 1px solid #cdcdcd;
  background: #f7f7f7;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 20px;
  padding: 20px 55px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri {
    margin-top: 4%;
    padding: 3%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .con_pri .box_pri {
    padding: 4%;
  }
}
.con_pri .box_pri .box_tori {
  text-align: left;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori {
    margin-top: 4%;
  }
}
.con_pri .box_pri .box_tori h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori h4 {
    margin-bottom: 4%;
  }
}
.con_pri .box_pri .box_tori .txt {
  padding: 0 20px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori .txt {
    padding: 0;
  }
}
.con_pri .box_pri .box_num {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_num {
    margin-top: 5%;
  }
}
.con_pri .box_pri .box_num h4 {
    font-size: 2rem;
    font-weight: 600;
    margin: 3% 0;
}
.con_pri .box_pri .box_num .txt {
  padding: 10px 0 0 20px;

}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_num .txt {
    padding: 3% 0 0 3%;
  }
}
.box_num ul li {
    font-size: 1.8rem;
    line-height: 1.7;
    list-style: square outside none;
    margin: 0 0 0 4rem;
    padding: 0;
}

.box_check {
  text-align: center;
  margin: 1em auto;
}
.box_check label {
  display: inline-block;
}
.box_check label span {
  margin-left: .3em;
    font-size: 1.8rem;
}

.btn {
  text-align: center;
}
.btn input {
  display: inline-block;
  background: #eee;
  padding: .5em 4em;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  border: none;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.btn input:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}