/*要素のフォントサイズやマージン・パディングをリセットしています*/
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;
    color: #000000;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
    background-color:#ff9;
    color: #000000;
    text-decoration:none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています
また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
    background-color:#ff9;
    color: #000000;
    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;
}

::-webkit-selection {
  color: #ffffff;
  background: #2e5b99;
  text-shadow: none;
}

::-moz-selection {
  color: #ffffff;
  background: #2e5b99;
  text-shadow: none;
}

::selection {
  color: #ffffff;
  background: #2e5b99;
  text-shadow: none;
}
/*================================================================================================================*/
/*================================================================================================================*/
html {
　　font-size: 62.5%;
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	font-style: normal;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: #000000;
	letter-spacing: normal;
	background: #ffffff;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* Windowsでなければ、このスタイルは適用されない */
/*
  body {
    font-family: 'Meiryo', sans-serif;
  }
*/
}

a {text-decoration: none;} 

.jump_point {
	display: block;
	padding-top: 240px;
	margin-top: -240px;
}

h1 {
	font-size: 32px;
	font-weight: 600;
}

h2 {
	font-size: 24px;
	font-weight: 600;
}

h3 {
	font-size: 20px;
	font-weight: 600;
	text-align: center;
}

h4 {
	font-size: 18px;
	font-weight: 600;
}

h5 {
	font-size: 16px;
	font-weight: 500;
}

p {
	font-size: 16px;
	text-align: center;
}

.pdt-8  {padding-top: 8px;}
.pdt-16 {padding-top: 16px;}
.pdt-24 {padding-top: 24px;}
.pdt-26 {padding-top: 26px;}
.pdt-32 {padding-top: 32px;}
.pdt-52 {padding-top: 52px;}
.pdt-88 {padding-top: 44px;}

.pdb-8  {padding-bottom: 8px;}
.pdb-16 {padding-bottom: 16px;}
.pdb-24 {padding-bottom: 24px;}
.pdb-32 {padding-bottom: 32px;}
.pdb-52 {padding-bottom: 52px;}
.pdb-88 {padding-bottom: 44px;}

.pdl-16 {padding-left: 16px;}

.mb-8   {margin-bottom: 8px;}
.mb-16  {margin-bottom: 16px;}
.mb-24  {margin-bottom: 24px;}
.mb-32  {margin-bottom: 32px;}
.mb-52  {margin-bottom: 52px;}
.mb-88  {margin-bottom: 44px;}

.pink {
	color: #ff6c76;
}

.text_line {
	text-decoration: underline;
	color: blue;
}

.pink_textline{
	border-bottom: 3px solid #FFAEB4;
}

.breadcrumbs_area{
	margin: 0;
	padding: 0;
	list-style: none;
	background-color: #fcfaf5;
	border-radius: 4px;
	overflow: hidden;
}

.breadcrumbs_area .breadcrumb{
	max-width: 1176px;
	margin: auto;
}

.breadcrumbs_area .breadcrumb .breadcrumb-item{
  	float: left;
  	margin-right: 0;
}

.breadcrumbs_area .breadcrumb .breadcrumb-item a{
  	display: block;
  	padding: 10px 10px 10px 40px;
  	text-decoration: none;
  	color: #000000;
  	font-size: 14px;
  	position: relative;
}

.breadcrumbs_area .breadcrumb .breadcrumb-item a:before{
	position: absolute;
	font-family:'FontAwesome';
  	content: '\f1b0';
  	font-size: 20px;
    color: #ffaeb4;
    left: 10px;
    top: 5px;
}

.breadcrumbs_area .breadcrumb .breadcrumb-item.active{
	padding: 10px;
	font-weight: 600;
	font-size: 14px;
}

.breadcrumbs_area .breadcrumb .breadcrumb-item.active:before{
	font-family:'FontAwesome';
  	content: '>';
  	margin-right: 20px;
  	color: #ffaeb4;
}

.breadcrumbs_area .breadcrumb .breadcrumb-item.active span {
	display: block;
	padding: 10px;
	color: #000000;
}

.page_title h1{
	position: relative;
}

.page_title h1:after{
    position: absolute;
    display: block;
    content: '';
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 100px;
    height: 4px;
    font-family: 'FontAwesome';
    content: '\f1b0';
    font-size: 30px;
    color: #ffaeb4;
    /* background: #ffaeb4; */
    /* left: 10px; */
    /* top: 5px; */
}


header {
	border-top: 7px solid #f0c878;
	border-bottom: 1px solid #f5f5f5;
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	width: 100%;
	background: #ffffff;
/* 	padding: 20px 40px; */
	box-sizing: border-box;
}

header .header_container {
	display: flex;
	max-height: 75px;
	align-items: stretch;
	padding: 0 20px;
	position: relative;
	z-index: 1;
	max-width: 1176px;
	margin: auto; 
}

.container-header .site-brand{
	padding: 5px 0;
}

.container-header .site-brand p{
	font-size: 10px;
	text-align: left;
	margin-bottom: 5px;
}

.container-header .site-brand h1{
	margin: 0;
}

.container-header .site-brand h1 a img{
	height: 45px;
}

.container-menu{
	margin-left: auto;
}

.container-menu ul{
	display: flex;
	height: 100%;
	text-align: center;
}

.container-menu ul li a{
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	padding: 0 24px;
	position: relative;
	white-space: nowrap;
}

.container-menu ul li a span{
	width: 150px;
	background: #ffaeb4;
	padding: 10px 20px;
	border-radius: 100px;
/* 	box-shadow: 5px 5px 5px 0 rgba(0,0,0,0.3); */
	color: #000000;
}

main {
	margin-top: 83px;
}

.container-hero {
/* 	background: url(../img/top/hero_pc.jpg) fixed center no-repeat; */
	background-image: url(../img/top/hero_pc.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
	height: 600px;
	position: relative;
}

.container-hero div {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.container-hero div p{
	padding: 32px;
}

.container-hero div h2{
	text-align: center;
	color: #ffffff;
	text-shadow: 3px 3px 4px #3e3e3e; 
}


.bk_yellow{
	background: #ffefce;
	padding: 52px 0;
}

.bk_fcfaf5{
	background: #fcfaf5;
}
.bk_ffffff{
	background: #ffffff;
}

.bk_l{
	position: relative;
}

.bk_l:before{
	position: absolute;
    display: block;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fcfaf5;
    z-index: -1;
}

.bk_r{
	position: relative;
}

.bk_r:before{
	position: absolute;
    display: block;
    content: '';
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #fcfaf5;
    z-index: -1;
}

.container, 
.container-new {
	max-width: 1176px;
	margin: auto;
}

.container div, 
.container-new div {
/*
	margin-top: 44px;
	margin-bottom: 44px;
*/
}

.container div h3 {
	margin-bottom: 24px;
}

/*
.container div h3 span{
	position: relative;
}
*/

/*
.container div h3 span:before{
	position: absolute;
    display: block;
    content: '';
    bottom: -2px;
    left: -5px;
    width: 100%;
    height: 3px;
    background: #FFAEB4;
}
*/

.container div p, 
.container-new div p{
	max-width: 800px;
	margin: auto;
	line-height: 2;
}

p.button a{
	max-width: 350px;
	margin: auto;
	padding: 15px;
    text-align: center;
    display: block;
    text-decoration: none;
    color: #000000;
    background: #ffd174;
/*     box-shadow: 5px 5px 5px 0 rgba(126,84,0,0.3); */
    border-radius: 10px;
    border-radius: 100px;
}

p.button a.pink {
	background: #ffaeb4;
}

.container div ul {
	display: flex;
	justify-content: space-around;
	max-width: 800px;
	margin: auto;
}

.container div ul.voice {
	max-width: 1000px;
	align-items: stretch;
}

.container div ul li{
	padding: 0 10px;
}

.container div ul li img{
	width: 100%;
}

.container div ul li.img a{
	display: block;
}

.container div ul li.img a img{
	width: 100%;
}


.text {
	padding: 0 30px 0 10px;
	width: 33.3333%;
}

blockquote{
    position: relative;
/*     border-left: 3px solid #f0c878; */
/*     padding-left: 10px; */
}

blockquote:before{
    position:absolute;
    font-family:'FontAwesome';
    content:'\f10d';
    font-size: 20px;
    color: #e39993;
}

blockquote:after{
    position:absolute;
    font-family:'FontAwesome';
    content:'\f10e';
    font-size: 20px;
    color: #e39993;
    right: 0;
    bottom: 0;
}

blockquote p{
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
    text-align: left;
}

blockquote .voice_text_sub{
    display: block;
    font-size: 12px;
    color: #000000;
    text-align: right;
}

blockquote .voice_text_info{
	font-size: 15px;
	line-height: 30px!important;
}

.container div.area{
	max-width: 800px;
	margin: auto;
}

.container div.area p{
	text-align: left;
}

.container-new div h4, 
.container-common div h4{
	font-size: 20px;
	text-align: center;
	margin-bottom: 32px;
}

.page_price .container-common div h4{
	font-size: 20px;
	text-align: left;
	padding: 10px 0;
	margin-bottom: 16px;
	border-bottom: 1px solid #cccccc;
}



.page_price .container div p.full-width{
	max-width: none;
	padding-left: 10px;
	padding-right: 10px;
}

.y_box {
	padding: 20px 0;
	background: #ffd174;
	
}



.container-new div ul {
	max-width: 800px;
	margin: auto;
}

.container-new div ul li:first-child{
	border-top: 1px solid #ffd174;
}

.container-new div ul li{
	border-bottom: 1px solid #ffd174;
}

.container-new div ul li a{
	display: block;
	padding: 24px 20px;
}

.container-new div ul li a span{
	padding-right: 16px;
}

.container-common .table{
	max-width: 800px;
	margin: auto;
}

.container-common .table table{
	width: 100%;
} 

.container-common .table table tbody{
	border-right: 1px solid #ffd174;
	border-bottom: 1px solid #ffd174;
} 

.container-common .table table tbody tr{
	
} 

.container-common .table table tbody tr td{
	padding: 20px;
	border-left: 1px solid #ffd174;
	border-top: 1px solid #ffd174;
	width: 50%;
}

.container-common .table table tbody tr td:first-child{
	background: #ffd174;
}

.container-last {
	margin-bottom: 44px;
}

footer{
	padding-top: 32px;
	background: #ffefce;
}

.footer_container {
	display: flex;
	align-items: stretch;
	padding: 0;
	position: relative;
	z-index: 1;
	max-width: 1176px;
	margin: auto; 
	padding: 0 20px;
}

.container-footer .site-brand p {
    font-size: 10px;
    text-align: left;
    padding-bottom: 5px;
}

.container-footer .site-brand h6 a img{
	max-width: 250px;
}

.container-footer_menu{
	display: flex;
	margin-left: auto;
}

.container-footer_menu nav{
	width: 250px;
}

.container-footer_menu ul{
/* 	display: flex; */
	height: 100%;
	text-align: left;
}

.container-footer_menu ul li a{
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	padding: 16px;
	position: relative;
	white-space: nowrap;
}


.copyright{
	padding: 20px 0;
	
}
.copyright p{
	font-size: 13px;
	text-align: center;
	color: #3e3e3e;
}


.pdlr-20{
	padding: 0 20px;
}

.sp_block{
	display: none;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
  position: relative;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000000;
  /* border-radius: 4px; */
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 11px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

#menu01.active span:nth-of-type(1) {
  transform: translateY(11px) rotate(-45deg);
}
#menu01.active span:nth-of-type(2) {
  opacity: 0;
}
#menu01.active span:nth-of-type(3) {
  transform: translateY(-11px) rotate(45deg);
}

/*

.flyout:hover{
	margin-right:0;
}

.flyout .flyout_sub {
	display: none;
}
.flyout:hover .flyout_sub {
	display: block;
	margin-top:-28px; 
	padding-top:28px;
	position: relative;
}
.flyout:hover .flyout_sub a {
	position: absolute;
	margin-right:-1px;
	padding: 24px 10px;
}
*/


.flyout_sub {
  display: none;
  background: #B9B9B9;
  position: relative;
}

.flyout_sub > ul {
  list-style: none;
  margin: 0;
  padding: 0 10px;
  width: 300px;
  display: block;
  position: absolute;
  top: -18px;
  left: -80px;
  border-left: 1px solid #fcfaf5;
  border-right: 1px solid #fcfaf5;
}

.flyout_sub > ul > li {
	border-bottom: 1px solid #fcfaf5;
}

.flyout_sub > ul > li > a {
  text-decoration: none;
  color: #000000;
  padding: 12px 20px;
  background: #ffffff;
  text-align: left;
/*   border-bottom: 1px solid #ffd174; */
}

.flyout_sub > ul > li:last-child > a {
  border-style: none;
}


.flyout:hover .flyout_sub {
  display: inline-block;
}

.sp_menu {
	display: none;
}


/* ================================ */


.container_title h1{
	text-align: center;
}

.sevices h2{
	text-align: center;
}

.container div.sevices ul li{
	width: 33.3333%;
	padding: 0 10px;
}

.container div.sevices ul li p{
	font-size: 16px;
}

.container div.sevices ul li p img{
	padding: 0 20px;
	margin-bottom: 16px;
}


.container div.sevices ul li p.button a{
	max-width: 180px;
	font-size: 14px;
	line-height: normal;
}

.nagare {
/* 	max-width: 980px; */
	margin: auto;
}

.nagare .step{
	display: flex;
	flex-direction: row-reverse;
	width: 100%;
	justify-content: center;
/* 	align-items: center; */
}

.nagare .step div{
	width: 80%;
	padding: 0 10px;
}

.nagare .step div h4{
	padding-bottom: 16px;
}

.nagare .step div h5{
	padding-bottom: 16px;
}

.nagare .step div p{
	text-align: left;
	line-height: 30px;
}
.nagare .step div p img{
	width: 100%;
}

.nagare .step div:last-child p{
	text-align: left;
	max-width: 100%;
}

.nagare .step div p.box{
	border: 1px solid #000000;
	padding: 10px; 
}


.container.check_box{
	display: flex;
	width: 100%;
}

.container div.check{
	text-align: left;
	width: 50%;
}

.container div.check h3{
	text-align: left;
	position: relative;
	padding-left: 28px;
}

.container div.check h3:before{
	position:absolute;
    font-family:'FontAwesome';
    content:'\f00c';
    top: 0;
    left: 0;
    font-size: 20px;
    color: #FFAEB4;
}

.container div.check p{
	text-align: left;
	max-width: 1176px;
}

.container div.sub_title h2{
	text-align: center;
}

.container div.sub_title h3{
	text-align: left;
	position: relative;
	padding-left: 12px;
}

.container div.sub_title h3:before{
	position: absolute;
    display: block;
    content: '';
    top: 0;
    left: 0;
    width: 4px;
    height: 30px;
    background: #FFAEB4;
}

.container div.sub_title p{
	text-align: left;
	max-width: 1176px;
}

.container div.sub_title p.button a{
	margin: 0;
	max-width: 180px;
	font-size: 14px;
	line-height: normal;
}

.container div.sub_title_box{
	background: #ffe7e8;
	padding: 32px 24px 52px 24px;
}

.container div.sub_title_box p{
	text-align: left;
}

.container.qa div.sub_title h3{
	text-align: left;
	position: relative;
	padding-left: 36px;
}

.container.qa div.sub_title h3:before{
	position: absolute;
    display: block;
    font-family:'FontAwesome';
    content:'Q';
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    font-size: 20px;
    border-radius: 100px;
    padding-left: 6.5px;
    color: #ffffff;
    background: #ffd174;
}

.container.qa div.sub_title p{
	position: relative;
	padding-left: 36px;
}

.container.qa div.sub_title p:before{
	position: absolute;
    display: block;
    font-family:'FontAwesome';
    content:'A';
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    font-size: 20px;
    padding-left: 6.5px;
    color: #FFAEB4;
}

.about_area{
/* 	display: flex; */
	width: 100%;
	max-width: 800px;
	margin: auto;
}

.about_area .about_area_child:first-child{
/* 	width: 30%; */
/* 	padding-right: 15px; */
}

.about_area .about_area_child:last-child{
/* 	width: 70%; */
/* 	padding-left: 15px; */
}

.about_area .about_area_child figure{
	text-align: center;
	padding-bottom: 16px;
}

.about_area .about_area_child figure img{
	width: 100%;
	max-width: 245px;
	margin: auto;
	padding-bottom: 16px;
}

.about_area .about_area_child figure figcaption{
	font-size: 18px;
	font-weight: 600;
}

.about_area .about_area_child ul{
	display: block;
	max-width: /*350px*/450px;
	margin: auto;
	line-height: 1.3;
	padding-bottom: 24px;
}
.about_area .about_area_child ul li{
	padding-bottom: 24px;
}




.page_contents{
	
}

.page_contents p{
	text-align: left;
}

.small{
	max-width: 800px;
	margin: auto;
	font-size: 14px;
	text-align: left;
	background: #ffe7e8;
    padding: 10px 16px;
    margin-top: 16px;
}


.container div.flex_box {
	display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.container div.flex_box p{
	width: 50%;
	margin: 0;
	padding-top: 15px;
}

.container div.flex_box p img{
	width: 100%;
}

.arrow{
	position: relative;
}

.arrow:after{
	position: absolute;
    display: block;
    content: '';
    bottom: 10px;
    right: 20px;
    font-family: 'FontAwesome';
    content: '\f078';
    font-size: 14px;
    color: #ffffff;
}

.box {
	border: 1px solid #000000;
    padding: 10px;
}

.img_center{
	text-align: center!important;
}

.left{
	text-align: left!important;
}

/* ================================ */
@media screen and (max-width: 1023px){
	.sp_none{display: none;}
	.sp_block{display: block;}
	
	h2 {
		font-size: 24px;
	}
	
	.container-menu {
		display: none;
	}
	
	.list {
		padding: 20px 0;
		margin-left: auto;
	}
	
	nav.sp_menu.view {
		display: block;
		padding: 0 20px;
	}
	
	nav.sp_menu.view ul{
		position: fixed;
		top: 0;
		left: 0;
		transition: .3s all;
		z-index: 990;
		width: 100%;
		height: 100vh;
		background: #ffefce;
		padding-top: 103px;
		padding-left: 20px;
		padding-right: 20px;
	}
	nav.sp_menu.view ul.open{
		left:0%;
	}
	nav.sp_menu.view ul li{
		border-bottom: 1px solid #ffd174;
	}
	nav.sp_menu.view ul li a{
		display: block;
		padding: 10px 20px;
		color: #000000;
	}
	
	nav.sp_menu.view ul li .sub_menu ul {
		display: block;
		position: relative;
		width: auto;
		height: auto;
		padding: 0;
	}
	
	nav.sp_menu.view ul li .sub_menu ul li{
		border-top: 1px solid #ffd174;
		border-bottom-style: none;
	}
	
	nav.sp_menu.view ul li .sub_menu ul li a{
		padding: 10px 40px;
	}
	
	.container div ul.voice{
		display: block;
	}
	
	.text {
		width: 100%;
		padding-bottom: 24px!important;
	}
	.text:last-child {
		width: 100%;
		padding-bottom: 0!important;
	}
	
	.footer_container {
		display: block;
		text-align: center;
	}
	
	.container-footer .site-brand p{
		text-align: center;
	}
	
	
	.container-footer_menu{
		display: block;
		max-width: 800px;
		margin: auto;
	}
	
	.container-footer_menu nav{
		width: 100%;
	}
	
	.container-footer_menu nav:first-child{
		border-top: 1px solid #ffd174;
	}
	
	.container-footer_menu ul{
		text-align: left;
	}
	
	.container-footer_menu ul li{
		border-bottom: 1px solid #ffd174;
	}
	
	.container div.sevices ul li{
		width: 33.3333%;
		padding: 0 10px;
	}
	.container div.sevices ul li p{
		font-size: 15px;
		line-height: normal;	
	}
	
	.container div.sevices ul li p img{
		padding: 0;
		width: 110px;
		margin: 4px 0 20px 0;
	}
	
}


@media screen and (max-width: 960px){
	.container div.sevices ul{
		display: block;
		padding-top: 24px!important;
	}
	
	.container div.sevices ul li{
		max-width: 800px;
		width: 100%;
		margin: auto;
		padding: 0;
		margin-bottom: 16px;
/* 		display: flex; */
		justify-content: space-around;
		align-items: center;
	}
	
	.container div.sevices ul li p{
/* 		width: 50%; */
	}
	
	.container div.sevices ul li div{
/* 		width: 50%; */
	}
	
	.container div.sevices ul li div p img{
		max-width: 250px;
	}
	
	.container div.sevices ul li div p{
		width: auto;
	}
	.nagare .step{
		display: block;
	}
	.nagare .step div {
		width: 100%;
		padding: 0;
	}
	.nagare .step div p img{
		margin-bottom: 24px;
	}
	.nagare .step div:last-child p{
		text-align: left;
	}
	
	.container.check_box{
		display: block;
	}

	.container div.check{
		width: 100%;
	}
	
	.container div.check:last-child{
		margin-top: 52px;
	}
	
	.about_area{
		display: block;
		width: 100%;
	}
	.about_area .about_area_child:first-child{
		width: 100%;
		padding-right: 0;
/* 		padding-bottom: 32px; */
	}

	.about_area .about_area_child:last-child{
		width: 100%;
		padding-left: 0;
	}
	
	.about_area .about_area_child figure img{
		padding-left: 30px;
		padding-right: 30px;
	}
	
	.page_title h1:after{
/*     	left: 38%; */
    	font-size: 24px;
    }
    
    .img_center img{
	    width: 100%
    }
    .container div.flex_box{
	    display: block;
    }
    .container div.flex_box p{
	    width: 100%;
    }
    
    .container-hero div {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 260px;
/* 		transform: none; */
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
}
}

.container-new div h3, .container-last div h3 {
    margin-bottom: 24px;
}

.border_w {
	border-top: 1px solid #fff!important;
}

.button_small {padding: 8px!important;}
.width_500 {max-width: 500px!important;}
.page_price .container div.flex_box {
	width: 100%;
	justify-content: center;
}
.page_price .container div.flex_box p{
	width: 40%;
}
.page_price .container div.flex_box p.button a {
	max-width: 395px;
}
@media screen and (max-width: 960px){
	.pdb-88 {padding-bottom: 32px;}
	.pdt-52 {padding-top: 26px;}
	.pdt-24 {padding-top: 12px;}
	h1 {font-size: 24px;}
	h2 {font-size: 20px;}
	h3 {font-size: 16px;}
	h4 {font-size: 14px;}
	h5 {font-size: 14px;}
	p {font-size: 14px;}
	footer {padding-top: 16px;}
	.container div h3 {margin-bottom: 12px;}
	.container-new div h3, .container-last div h3 {margin-bottom: 12px;}
	.container-new div ul li a{padding: 12px 20px;}
	.container-common .table table tbody tr td{padding: 10px;}
	.container-last {margin-bottom: 22px;}
	.container-footer_menu ul li a {padding: 10px;}
	.container-hero {
		background: url(../img/top/hero_sp.jpg) center no-repeat;
		background-size: cover;
		height: 485px;
	}
	.about_area .about_area_child figure figcaption{font-size: 16px;}
	.page_price .container div.flex_box p{width: 100%;}
}
