/* -----------------------------------------------
Reset
----------------------------------------------- */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}


/* -----------------------------------------------
Body - not related to megamenu
----------------------------------------------- */

* {
    box-sizing: border-box;
}

a {
    color: #333;
}

.description {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}


/* -----------------------------------------------
megamenu.js STYLE STARTS HERE
----------------------------------------------- */


/* -----------------------------------------------
Screen style's
----------------------------------------------- */

.menu-container {
    margin: 0 auto;
    background: #e9e9e9;
}

.menu-mobile {
    display: none;
    padding: 20px;
}

.menu-mobile:after {
    content: "\f0c9";
    font-family: "FontAwesome";
    font-size: 1.7rem;
    padding: 0;
    float: right;
    position: relative;
    top: 50%;
}

.menu-dropdown-icon:before {
    content: "\f067";
    font-family: "FontAwesome";
    display: none;
    cursor: pointer;
    float: right;
    padding: 1em;
    background: #fff;
    color: #333;
}

.menu{
	float:right;
	padding-top:10px;
	}

.menu > ul {
    margin: 0 auto;
    width: 100%;
    list-style: none;
    padding: 0;
    position: relative;
    /* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */
    box-sizing: border-box;
}

.menu > ul:before,
.menu > ul:after {
    content: "";
    display: table;
}

.menu > ul:after {
    clear: both;
}

.menu > ul > li {
    float: left;
    padding: 0 10px;
    margin: 0;
}

.menu > ul > li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.menu > ul > li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #f0776c;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
  z-index:999;
}

.menu > ul > li a:hover::after {
  transform: scale(1, 1);
}

.menu > ul > li > ul {
    display: none;
    width: 100%;
    background: #ffeaf1;
    padding: 20px;
    position: absolute;
    z-index: 99;
    left: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
}

.menu > ul > li > ul:before,
.menu > ul > li > ul:after {
    content: "";
    display: table;
}

.menu > ul > li > ul:after {
    clear: both;
}

.menu > ul > li > ul > li {
    margin: 0;
    padding-bottom: 0;
    list-style: none;
    width: 25%;
    background: none;
    float: left;
}

.menu > ul > li > ul > li a {
    padding: .2em 0;
    width: 95%;
    display: block;
    border-bottom: 1px solid #ccc;
}

.menu > ul > li > ul > li > ul {
    display: block;
    padding: 0;
    margin: 10px 0 0;
    list-style: none;
    box-sizing: border-box;
}

.menu > ul > li > ul > li > ul:before,
.menu > ul > li > ul > li > ul:after {
    content: "";
    display: table;
}

.menu > ul > li > ul > li > ul:after {
    clear: both;
}

.menu > ul > li > ul > li > ul > li {
    float: left;
    width: 100%;
    padding: 10px 0;
    margin: 0;
    font-size: .8em;
}

.menu > ul > li > ul > li > ul > li a {
    border: 0;
}

.menu > ul > li > ul.normal-sub {
    width: 250px;
    left: auto;
    padding: 10px 20px;
}

.menu > ul > li > ul.normal-sub > li {
    width: 100%;
}

.menu > ul > li > ul.normal-sub > li a {
    border: 0;
    padding: 0.6em 0 0 0;
}


/* -----------------------------------------------
Mobile style's
----------------------------------------------- */

@media only screen and (max-width: 959px) {
	.menu-mobile:after {
    top: -10px;
	line-height:0;
}
    .menu-container {
        width: 100%;
    }
	.menu{
	float: inherit;
	}
    .menu-mobile {
        display: block;
        padding: 20px 0 0 0;
    }
	.menu-mobile::after {
    padding: 5px 15px 0 0;
}

    .menu-dropdown-icon:before {
        display: block;
		background:#f2abd2;
		color:#fff;
    }
    .menu > ul {
        display: none;
    }
    .menu > ul > li {
        width: 100%;
        float: none;
        display: block;
		border-bottom:#e288b9 solid 1px;
		padding:0;
    }
    .menu > ul > li a {
        padding: 1em;
        width: 100%;
        display: block;
    }
	.menu > ul > li a {
        display: block;
        padding: 1em;
}

.menu > ul > li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 0;
  background: none;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: none;
}

.menu > ul > li a:hover::after {
  transform: none;
}
    .menu > ul > li > ul {
        position: relative;
    }
    .menu > ul > li > ul.normal-sub {
        width: 100%;
		padding:0;
    }
	
    .menu > ul > li > ul > li {
        float: none;
        width: 100%;
    }
    .menu > ul > li > ul > li:first-child {
        margin: 0;
    }
    .menu > ul > li > ul > li > ul {
        position: relative;
    }
    .menu > ul > li > ul > li > ul > li {
        float: none;
    }
	.menu > ul > li > ul.normal-sub > li {
		width: 50%;
		float: left;
		text-align: center;
}
	.menu > ul > li > ul.normal-sub > li:nth-child(2),
	.menu > ul > li > ul.normal-sub > li:nth-child(3),
	.menu > ul > li > ul.normal-sub > li:nth-child(6),
	.menu > ul > li > ul.normal-sub > li:nth-child(7) {
		background-color:#ffffff;
}
	.menu > ul > li > ul.normal-sub > li:nth-child(1),
	.menu > ul > li > ul.normal-sub > li:nth-child(4),
	.menu > ul > li > ul.normal-sub > li:nth-child(5),
	.menu > ul > li > ul.normal-sub > li:nth-child(8),
	.menu > ul > li > ul.normal-sub > li:nth-child(9)  {
		background-color:#fff4fa;
}
    .menu .show-on-mobile {
        display: block;
		background:#ffeaf1;
		margin-top:20px;
    }
}

/* -----------------------------------------------
Common
----------------------------------------------- */


body {
    font: 15px 'Lucida Grande','Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
        line-height: normal;
    color: #111;
    line-height: 1.6;
}

a:hover, a:focus {
    color: #333;
}

.top h1{
	width:30%;
	float:left;
}

.sub{
background-color: #ffeaf1;
padding:5px 0 8px;
background-image: url(https://fukakitaryokuchi.movabletype.io/images/border-header-01.png);
background-repeat: repeat-x;
background-position: left bottom;
}
.sub .inner p{
	float:left;
}

.sub .inner address{
	float:right;
}

.inner{
    max-width: 1170px;
	margin:0 auto;
	padding: 0 15px;
}

.top{
    max-width: 1170px;
	margin:0 auto;
	padding:15px 15px 10px 15px;
}

.contents{
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.mainvisual img{
	width:100%;
}
#mainvisual-lower .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,192,203,0.8);
}
#mainvisual-lower {
    color: #fff;
    text-shadow: none;
}
.linkbox{
margin-bottom:15px;
}
.linkbox a:link,
.linkbox a:visited{
background: #ffeaf1;
display: block;
border-radius: 5px;
text-align: center;
padding: 15px 0;
}
.linkbox a:hover{
background: #f0776c;
display: block;
border-radius: 5px;
text-align: center;
padding: 15px 0;
text-decoration:none;
}
.leftcontents{
width:50%;
float:left;
}
.rightcontents{
width:50%;
float:right;
}


.ggmap {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
margin-bottom:30px;
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
#footer-logoarea{
padding: 15px;
}
.fontS{
	font-size:10px;
}

.container h3.ttl {
    text-align: left;
    font-size: 1.2rem;
    line-height: 1.5;
    text-decoration: none;
    padding: 0;
    margin: 0 0 23px 0;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #cccccc;
    display: block;
    position: relative;
    font-weight: bold;
    color: #5c5c5c;
}
.container h3.ttl::after {
    background-color: #f0776c;
    width: 150px;
    height: 2px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    content: "";
}
.container a.link:link,
.container a.link:visited{
	font-weight:bold;
	color:#f0776c;
	text-decoration:none;
}
.container a.link:hover{
	font-weight:bold;
	color:#e05e52;
	text-decoration:underline;
}
.table-bordered th{
background-color: #ffeaf1;
vertical-align:middle !important;
text-align: center;
width:30%;
}

.downloadbox{
margin-bottom:15px;
}
.viewbox{
margin-bottom:40px;
}
#copyright a:link,
#copyright a:visited{
color:#fff !important;
}
.cf::after{
  content: "";
  display: block;
  clear: both;
}

@media only screen and (max-width: 959px) {
.top h1{
	width:50%;
	padding: 10px 0 0 15px;
}
.sub .inner p{
	float:none;
}

.sub .inner address{
	float:none;
}
.inner{
	line-height:1.2em;
	text-align:center;
}
	.top{
	padding:0;
}
.leftcontents{
	width:100%;
	padding:0 15px;
float:none;
}
.rightcontents{
	width:100%;
	padding:0 15px;
float:none;
}
.contents{
	padding:0;
}
.table-bordered th,
.table-bordered td{
width:100%;
display:block;
}

.fontS{
	text-align:center;
}
}
@media only screen and (max-width: 767px) {
.downloadbox{
border-bottom: 1px solid #ededed;
}
.viewbox{
margin-bottom:30px;
}
}

/* -----------------------------------------------
FAQ
----------------------------------------------- */
.panel-default > .panel-heading {
    color: #333;
    border-color: #f9ecf1;
    background-color: #ffeaf1;
}