@charset "utf-8";

/* ------------------------------
   Browser 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, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
	font-family: inherit;
	font-style: inherit;
	font-weight: inherit;
}

html {
	-webkit-text-size-adjust: none;
}
img {
	border:0;
	max-width:100%;
	height:auto;
}
a {
	-webkit-tap-highlight-color: transparent;
}

strong {
	font-weight: bold;
}

ol, ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

caption, th, td {
	font-weight: normal;
	text-align: left;
	vertical-align: top;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}

blockquote, q {
	quotes: "" "";
}
a{
    text-decoration: none;
	color: #555;
}
a:focus {
/*\*/
	overflow: hidden;
/**/
}

option {
	padding-right: 10px;
}

/* HTML5 ELEMENTS
------------------------------ */
header,article,aside,section,footer,
nav,menu,details,hgroup,summary {
	display: block;
}

/*CSS All style
--------------------------------*/

body{
	font-size: 16px;
	color: #675b5f;
	background: url(../img/bg.jpg);
    font-family: 'M PLUS 1p', sans-serif;
}
#wrap{
	width: 100%;
	margin: 50px auto 0;
    overflow: hidden;
}
header{
	width: 100%;
    overflow: hidden;
}
h2{
	width: 300px;
	margin: auto;
	text-align: center;
	font-size: 30px;
    color: #522600;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}
h3{
    color: #522600;
    font-family: 'M PLUS Rounded 1c', sans-serif;

}
.center{
    text-align: center;
}
.right{
    text-align: right;
}
/*Mobile*/
@media screen and (max-width: 640px) {
    h2{
        font-size: 25px;
    }
}

/*CSS Gnav
--------------------------------*/
.inner {
    width: 980px;
    margin: 0 auto;
}
.inner:after {
    content: "";
    clear: both;
    display: block;
}
 
/* header */
#top-head {
    top: -100px;
    position: absolute;
    width: 100%;
    margin: 100px auto 0;
    line-height: 1;
    z-index: 999;
	background-color: #FFF6E3;
}
#top-head a,
#top-head {
    color: #675b5f;
    text-decoration: none;
}
#top-head .inner {
    position: relative;
}
/*logo*/
#top-head .logo {
    float: left;
	height: 100px;
}
.logo #logo-circle{
	height: 200px;
}
#logo-square{
	display: none;
}

#global-nav ul {
    list-style: none;
    position: absolute;
    right: 0;
    bottom: 0;
}
#global-nav ul li {
    float: left;
}
#global-nav ul li a {
	position:relative;
	padding:20px 40px;
    display:block;
	transition: 1s;
}
#global-nav ul li a:hover {
	color: #f30;
}

 /*-----------hover-effect--------------*/
#global-nav ul li a::after {
	position:absolute;
	top:40%;
	left:20%;
	content: attr(data-hover);
	opacity: 0;
	display:block;
	transform: scale(.3);
	transition: all .4s;
	font-size:15px;
}
#global-nav ul li a span{
	display: inline-block;
	transition: all .4s;
}
#global-nav ul li a:hover::after {
	transform: rotateX(0);
	opacity: 1;
}
#global-nav ul li a:hover span {
  transform: rotateX(-360deg);
  opacity: 0;
}

/* Fixed */
#top-head.fixed {
    margin-top: 0;
    top: 0;
    position: fixed;
    padding-top: 10px;
    height: 55px;
    background: #FFF6e3;
    transition: top 0.65s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
}
#top-head.fixed .logo {
    font-size: 24px;
    color: #fff;
	height: 55px;
}
#top-head.fixed .logo #logo-circle{
	display: none;
}
#top-head.fixed .logo #logo-square{
	display: inline;
	height: 55px;
}

#top-head.fixed #global-nav ul li a {
    color: #675b5f;
	padding:5px 40px;
}
 
/* Toggle Button */
#nav-toggle {
    display: none;
    position: absolute;
    right: 12px;
    top: 14px;
    width: 34px;
    height: 36px;
    cursor: pointer;
    z-index: 101;
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #675b5f;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 0;
}
#nav-toggle span:nth-child(2) {
    top: 11px;
}
#nav-toggle span:nth-child(3) {
    top: 22px;
}
/*Mobile*/
@media screen and (max-width: 800px) {
    .logo #logo-circle{
        height:150px;
    }

	#wrap{
		width:100%;
        padding: 0;
	}
    #top-head,
    .inner {
        width: 100%;
        padding: 0;
    }
    #top-head {
        top: 0;
        position: fixed;
        margin-top: 0;
    }
    /* Fixed reset */
    #top-head.fixed {
        padding-top: 0;
        background: transparent;
    }
    #mobile-head {
        background: #fff6e3;
        width: 100%;
        height: 56px;
        z-index: 999;
        position: relative;
    }
    #top-head.fixed .logo,
    #top-head .logo {
        position: absolute;
        left: 13px;
        top: 0;
        color: #675b5f;
        font-size: 26px;
    }
    #global-nav {
        position: absolute;
        /* 開いてないときは画面外に配置 */
        top: -500px;
        background: #FFF6E3;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
    }
    #global-nav ul {
        list-style: none;
        position: static;
        right: 0;
        bottom: 0;
        font-size: 14px;
    }
    #global-nav ul li {
        float: none;
        position: static;
    }
    #top-head #global-nav ul li a,
    #top-head.fixed #global-nav ul li a {
        width: 100%;
        display: block;
        color: #2E1200;
        padding: 20px 0;
    }
    
    #global-nav ul li a::after {
		top:40%;
		left:45%;
	}

    #nav-toggle {
        display: block;
    }
    /* #nav-toggle 切り替えアニメーション */
    .open #nav-toggle span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }
    .open #nav-toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .open #nav-toggle span:nth-child(3) {
        top: 11px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }
    /* #global-nav スライドアニメーション */
    .open #global-nav {
        /* #global-nav top + #mobile-head height */
        -moz-transform: translateY(556px);
        -webkit-transform: translateY(556px);
        transform: translateY(556px);
    }
}
@media screen and (max-width: 640px) {
    #wrap{
        margin-top: 0;
    }
    .logo #logo-circle{
        display: none;
    }
    .logo #logo-square{
        display: inline;
        height: 55px;
    }
    #global-nav ul li a::after {
		top:40%;
		left:40%;
	}
    #mobile-head {
        background: #FFF6E3;
    }
    #top-head.fixed .logo,
    #top-head .logo {
        color: #675b5f;
    }

}
/* CSS  #top-info
------------------------------ */
#top_info{
	width: 1000px;
    margin: auto;
	padding-top: 25px;
	overflow: hidden;
}
#news{
	width: 900px;
	background: #FFF6E3;
	padding: 30px 50px;
	border-radius: 20px;
}
#activity{
	width: 780px;
	padding: 15px 0 30px;
    margin: auto;
}
#activity h2{
    margin-top: 30px;
}
#activity figure{
	width: 315px;
	margin: 20px 30px;
	padding-top: 15px;
	padding-left: 15px;
	padding-bottom: 5px;
	background: #FFF6E3;
	border-radius: 20px;
    float: left;
}
#activity figure img{
	border-top-right-radius: 20px 20px;
	border-top-left-radius: 20px 20px;
}
#activity figcaption{
	width: 280px;
	margin: auto;
}
#activity figcaption h3{
	text-align: center;
	margin: 5px 0;
}
#activity figcaption p{
    color: #555;
}

.link_jamp{
	text-align: right;
	font-size: 12px;
	padding-bottom: 5px;
	transition: 1s;
}
/*Mobile*/
@media screen and (max-width: 800px) {
    #top_info{
        width: auto;
        padding: 0;
        padding-top: 25px;
        overflow: hidden;
    }
    #news{
        width: 640px;
        background: #FFF6E3;
        padding: 30px;
        margin: auto;
        border-radius: 20px;
    }
    #activity{
        width: 640px;
        padding: 15px 0 30px;
    }
    #activity figure{
        float: left;
        width: 45%;
        margin: 20px 2.5%;
        padding: 0;
    }
    #activity figure img{
        width: 100%;
        border-top-right-radius: 20px 20px;
        border-top-left-radius: 20px 20px;
    }
    #activity figcaption{
        width: 100%;
    }
    #activity figcaption p{
        display: none;
    }
    #activity figcaption h3{
        font-size: 16px;   
    }
}
@media screen and (max-width: 640px) {
    #top_info{
        width: auto;
        padding-top: 0;
        overflow: hidden;
    }
    #news{
        width: calc(90% - 60px);
        margin: 60px auto 0;
        float: none;
        background: #FFF6E3;
        border-radius: 20px;
    }
    #news h2{
        width: auto;
    }
    #activity{
        width: auto;
        padding: 15px 0 30px;
        float: none;
        overflow: hidden;
    }
    #activity figcaption h3{
        font-size: 12px;   
    }
}
/*　facebook
---------------------------*/
.facebook-wrapper {
    max-width: 500px;
    max-height: 550px;
    margin: 0 auto;
}
.facebook-wrapper > .fb-page {
    width: 100%;
    height: 500px;
}
.facebook-wrapper > .fb-page > span,
.facebook-wrapper iframe {
    width: 100% !important;
}


/* CSS  /.contents
------------------------------ */
.contents_inner{
	line-height: 2;
}
.contents:nth-of-type(even){
    margin-top: 25px;
    background: #fff;
    min-height: 430px;
    border-top-right-radius: 1500px 300px;
    border-top-left-radius: 1500px 300px;
    padding-bottom: 55px;
    margin-left: -50px;
    padding-left: 50px;
    margin-right: -50px;
    padding-right: 50px;
}

.contents:nth-of-type(odd){
    background: #FFDCDC;
	padding: 55px 0;
}
.contents_inner{
    width: 1000px;
    padding: 0;
    margin: auto;
    overflow: hidden;
}
.contents_inner h3{
    text-align: center;
    font-size: 40px;
    padding: 50px 0 25px;
}
/*  float設定
------------------------------ */
.float_left{
    width: 600px;
    float: left;
    padding: 0;
}
.float_right{
    width: 350px;
    float: right;
}
.float_right img{
    width: 350px;
}
.float_right p{
    text-align: center;
}

h3.greeting{
    padding: 0;
    padding-left: 40px;
    background: url("../img/h4_logo.png") no-repeat;
    width: 300px;
    margin: 0 auto 30px;
}

.contents_mini_title{
    widows: auto;
    padding: 50px 0 50px;
    margin: 35px 0;
    font-size: 35px;
    text-align: right;
	color: #381C00;
	text-shadow: 0 0 1px #fff, 0 0 1px #fff, 0 0 3px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 10px #fff;
}

.text_area{
	width: 1000px;
	margin: 20px auto 0;
}

.canteen1{
    background: url("../img/contents-mini-title1.png") no-repeat;
    background-position: left;
	background-size: contain;
}
.canteen2{
    background: url("../img/contents-mini-title2.png") no-repeat;
    background-position: left;
	background-size: contain;
}
.support1{
    background: url("../img/contents-mini-title3.png") no-repeat;
    background-position: left;
	background-size: contain;
}
.support2{
    background: url("../img/contents-mini-title4.png") no-repeat;
    background-position: left;
	background-size: contain;
}

.typing{
    text-align: center;
    font-size: 25px;
}
/*Mobile*/
@media screen and (max-width: 800px) {
    .contents_inner{
        width: 100%;
        margin: 0;
    }
    .text_area{
        width: 90%;
        margin: 20px 5% 0;
    }

    .float_left{
        width: 50%;
        padding: 0;
        margin: 0;
        margin-left: 5%;
    }
    .float_right{
        width: 40%;
        padding: 0;
        margin: 0;
        margin-right: 5%;
    }
    .float_right img{
        width: 100%;
    }
    .contents_inner p{
        width: 90%;
        margin-left: 5%;
    }
}
@media screen and (max-width: 640px) {
    .contents_inner h3{
        font-size: 28px;
    }
    .float_left{
        width: 90%;
        padding: 0;
        margin: 0;
        margin-left: 5%;
    }
    .float_right{
        width: 80%;
        padding: 0;
        margin: 0;
        margin-right: 10%;
    }
.contents_mini_title{
    widows: auto;
    padding: 50px 0 50px;
    margin: 35px 0;
    font-size: 20px;
    text-align: right;
	color: #381C00;
}
}


/*  CSS support style
------------------------------ */
#link_area{
    width: 900px;
    margin: auto;
    padding: 15px 0;
}
#link_area ul{
    width: 840px;
    margin: auto;
    overflow: hidden;
}
#link_area ul li{
    width: 200px;
    margin: 5px;
    float: left;
    background: #fffacb;
}
#link_area ul li a{
    display: block;
    padding: 10px 0;
    text-align: center;
    font-size: 18px;
}
/*Mobile*/
@media screen and (max-width: 800px) {
    #link_area{
        width: 90%;
    }
    #link_area ul{
        width: 100%;
    }
    #link_area ul li{
        width: 24%;
        margin: 0 0.5%;
    }
    #link_area ul li a{
        font-size: 15px;
    }
}
@media screen and (max-width: 640px) {
    #link_area{
        width: 90%;
    }
    #link_area ul{
        width: 84%;
    }
    #link_area ul li{
        width: 100%;
        margin: 2.5%;
    }
    #link_area ul li a{
        font-size: 15px;
    }
}

.main_title{
    position: relative;
    width: 100%;
    height: 250px;
    margin-top: 95px;
    /*下部弧状スタイルCSS*/
    border-bottom-right-radius: 1500px 300px;
    border-bottom-left-radius: 1500px 300px;
    margin-left: -50px;
    padding-left: 50px;
    margin-right: -50px;
    padding-right: 50px;
}
.main_title.page2{
    background: #fff url("../img/main_title1.jpg") no-repeat;
    background-position: right;	
}

.main_title.page3{
    background: #fff url("../img/main_title2.jpg") no-repeat;
    background-position: right;	
}

.main_title h2{
    font-size: 50px;
}
.main_title .boxString{
  position   : absolute;
  display    : inline-block;
  padding    : 20px;
  color      : #fff;
  top        : 35%;
  left       : 50%;
  transform  : translate(-50%,-50%);
  z-index    : 11;
}
/*Mobile*/
@media screen and (max-width: 800px) {
    .main_title{
        width: 100%;
        height: 150px;
        margin-top: 55px;
    }
    .main_title .boxString{
        top: 50%;
    }
    .main_title h2{
        font-size: 30px;
    }
}

.contact_btn_area{
    width: 498px;
    margin: 30px auto;
    background:#fff;
    border-radius: 20px;
    border: #FFCECF 3px dotted;
    text-align: center;
    padding: 10px 0;
}
.contact_btn_area .topic-3{
    width: 460px;
    margin: auto;
}
.contact_btn_area .topic-3 p{
    width: 300px;
    padding: 0;
    font-size: 20px;
    float: left;
}
.contact_btn a{
    display: block;
    margin: 20px auto;
    padding: 20px 0;
    width: 300px;
    background: #fffacb;
}

/*Mobile*/
@media screen and (max-width: 800px) {
    .contact_btn_area{
        width: 100%;
        margin: 0;
        border: #FFCECF 3px dotted;
        padding: 10px 0;
    }
    .contact_btn_area .topic-3{
        width: 95%;
        margin-left: 2.5%;
    }
    .contact_btn_area .topic-3 p{
        width: 70%;
        padding: 0;
        font-size: 18px;
        float: left;
    }
    .contact_btn_area .topic-3 img{
        width: 15%;
    }
}
@media screen and (max-width: 640px) {
    .contact_btn_area{
        width: 100%;
        margin: 0;
        border: #FFCECF 3px dotted;
        padding: 10px 0;
    }
    .contact_btn_area .topic-3{
        width: 95%;
        margin-left: 2.5%;
    }
    .contact_btn_area .topic-3 p{
        width: 70%;
        font-size: 15px;
    }
    .contact_btn_area .topic-3 img{
        display: inline;
        width: 15%;
    }
    .contact_btn a{
        margin-left: 15%;
        width: 70%;
    }
}

.support_mini_title{
    width: 1000px;
    padding: 0;
    margin-top: 20px;
    text-align: center;
    font-size: 25px;
    border-bottom: dashed 3px #FFC5C6;
}

.support_title{
    text-align: center;
    font-size: 25px;
    padding: 20px　0;
    margin-bottom: 10px;
}
.support_border{
    width: 850px;
    margin: 20px auto;
    text-align: center;
    background: #fff;
    padding: 20px 0 20px;
    line-height: 2.0;
    border-radius: 15px 250px 30px 120px / 150px 30px 180px 15px;
    border: 6px #FFC9CA solid;
    font-size: 15px;
}
.infomation h3{
    padding-bottom: 0;
}
.infomation .text_area{
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.5;
}
.infomation .contact_btn_area{
    margin-top: 0;
}
.tel_title{
    font-size: 20px;
    margin-right: 10px;
}
/*Mobile*/
@media screen and (max-width: 800px) {
    .support_mini_title{
        width: 100%;
        font-size: 25px;
    }
    .support_title{
        font-size: 25px;
    }
    .support_border{
        width: 78.8%;
        margin: 20px 10%;
        border: 0.6% #FFC9CA solid;
    }
    .infomation .contact_btn_area{
        margin-top: 0;
    }
    .infomation .float_left,.infomation .float_right{
        float: none;
    }
    .infomation .float_right{
        display: none;
    }
    .infomation .float_left{
        width: 90%;
        margin: 0;
        margin-left: 5%;
    }
    .infomation .float_left .contact_btn_area .topic-3{
        margin: 0;
        width: 60%;
        margin-left: 20%;
    }
    .infomation .float_left .contact_btn_area .topic-3 p{
        margin: 0;
        width: 60%;
        font-size: 22px;
        padding-top: 5px;
    }
    .infomation .float_left .contact_btn_area .topic-3 img{
        width: 20%;
    }
    .infomation .text_area{
        width: 90%;
    }

    .tel_title{
        font-size: 20px;
        margin-right: 10px;
    }
}
@media screen and (max-width: 640px){
    .contact_btn_area .topic-3 p{
        width: 65%;
        font-size: 15px;
    }
    .contact_btn_area .topic-3 img{
        display: inline;
        width: 15%;
    }
    .infomation .float_left .contact_btn_area .topic-3{
        width: 90%;
        margin-left: 5%;
    }
    .infomation .float_left .contact_btn_area .topic-3 p{
        font-size: 15px;
        padding-top: 10px;
    }
}
/* CSS conttact
------------------------------*/
.contact_border{
    width: 900px;
    margin: 20px auto;
    text-align: center;
    background: #fff;
    padding: 20px 0 20px;
    line-height: 2.0;
    border-radius: 15px 250px 30px 120px / 150px 30px 180px 15px;
    border: 6px #FFC9CA solid;
    font-size: 15px;
}
.contents.contact_form{
    padding: 0;
}
/*Mobile*/
@media screen and (max-width:800px){
    .contact_border{
        width: 90%;
        margin-left: 4.4%;
        border: 0.6% #FFC9CA solid;
    }
    .contents.contact_form{
        padding: 0;
    }
}
@media screen and (max-width:640px){
    .contact_border p{
        font-size: 10px;
    }
    .contact_border p:first-of-type{
        font-size: 15px;
    }
    .contents.contact_form{
        padding: 0;
    }
}

#formWrap {
	width:1000px;
	margin: 10px auto 50px;
	color:#555;
	line-height:120%;
	font-size:15px;
}
table.formTable{
	width:100%;
	margin:0 auto;
	border-collapse:collapse;
}
table.formTable td,table.formTable th{
	border:1px solid #FFC5C6;
	padding:20px;
}
table.formTable th{
	width:30%;
	font-weight:normal;
	background: #fffacb;
	text-align:left;
    font-size: 20px;
}
/*セレクトボックス*/
.cp_ipselect {
	overflow: hidden;
	width: 80%;
	margin: 1em 0;
	text-align: center;
}
.cp_ipselect select {
	width: 100%;
	padding-right: 1em;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}
.cp_ipselect select::-ms-expand {
    display: none;
}
.cp_ipselect.cp_sl03 {
	position: relative;
	border-radius: 2px;
	border: 2px solid #ccc;
	background: #ffffff;
}
.cp_ipselect.cp_sl03::before {
	position: absolute;
	top: 0.8em;
	right: 0.8em;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #ccc;
	pointer-events: none;
}
.cp_ipselect.cp_sl03 select {
	padding: 8px 38px 8px 8px;
	color: #555;
}

.privacy{
    width: 1000px;
    margin: 10px auto;
    background: #ffffff;
}
.privacy pre{
    width: 948px;
    height: 150px;
    margin: 20px auto;
    padding: 20px;
    border: 1px #000 solid;
    overflow: scroll;
}
.privacy p{
    background: #fffacb;
    text-align: center;
    padding: 20px 0;
}
span.hissu{
    font-size: 10px;
    border: 1px solid #f00;
    padding: 5px;
}
/*Mobile*/
@media screen and (max-width:800px){
    #formWrap {
        width: auto;
        margin: 10px auto 50px;
        color:#555;
        line-height:120%;
        font-size:15px;
    }
    #formWrap p{
        width: auto;
        text-align: center;
    }
    table.formTable{
        width:80%;
        padding: 0;
        margin:0 auto;
        border-collapse:collapse;
    }
    table.formTable td,table.formTable th{
        border:1px solid #FFC5C6;
        padding: 20px 0 20px 10px;
    }
    table.formTable th{
        width:30%;
        font-size: 15px;
    }
    .privacy{
        width: auto;
        margin: 10px auto;
        background: #ffffff;
    }
    .privacy pre{
        width: 80%;
        height: 150px;
        padding: 1%;
        border: 0.1% #000 solid;
    }
    .privacy p{
        width: auto;
        background: #fffacb;
        text-align: center;
        padding: 0;
        padding: 20px 0;
    }
}
@media screen and (max-width:640px) {
    #formWrap {
        width:95%;
        margin:0 auto;
    }
    #formWrap p{
        font-size: 10px;
    }

    table.formTable th, table.formTable td {
        width:auto;
        display:block;
    }
    table.formTable th {
        margin-top:5px;
        border-bottom:0;
    }
    input[type="text"], textarea {
        width:80%;
        padding:5px;
        font-size:110%;
        display:block;
    }
    input[type="submit"], input[type="reset"], input[type="button"] {
        display:block;
        width:100%;
        height:40px;
    }
    .privacy p{
        width: 100%;
    }
    .privacy{
        width: auto;
        margin: 10px auto;
        background: #ffffff;
    }
    .privacy pre{
        width: 60%;
        height: 150px;
        padding: 1%;
        border: 0.1% #000 solid;
    }
    .privacy td{
        width: auto;
        background: #fffacb;
        text-align: center;
        padding: 0;
        padding: 20px 0;
    }
    span.hissu{
        font-size: 10px;
        border: 1px solid #f00;
        padding: 5px;
    }
}

/*---------------------------------*/
#footer_top{
    background: #fff6e3;
    padding: 20px 0;
    overflow: hidden;
    width: 100%;
}
.footer_inner{
    width: 1000px;
    margin: auto;
}
.corporation{
    width: 500px;
    float: left;
}
.corporation h3{
    font-size: 23px;
}
.telephone{
    width: 300px;
    float: right;
    text-align: center;
    padding: 10px 50px;
    background: #fff;
    border-radius: 20px;
}
.telephone p{
    line-height: 1;
}
.telephone p:first-of-type{
    font-size: 20px;
    color: #FFACAE;
}
.telephone p:nth-of-type(2n){
    font-size: 25px;
}
footer{
    width: 100%;
    background: #fff6e3;
    padding: 5px 0;
}

footer p{
    text-align: center;
}
/*infomationの中*/
.contact_btn_area .telephone{
    float: none;
    margin: auto;
}
/*Mobile*/
@media screen and (max-width: 800px) {
    .footer_inner{
        width: 100%;
        margin: 0;
    }
    .corporation{
        width: 45%;
        margin-left: 5%;
    }
    .corporation h3{
        font-size: 18px;
    }
    .corporation p{
        font-size: 12px;
    }
    .corporation a{
        font-size: 12px;
    }
    .footer_inner .telephone{
        width: 30%;
        padding: 10px 2.5%;
        margin-right: 5%;
    }
    .footer_inner .telephone p{
        line-height: 1;
    }
    .footer_inner .telephone p:first-of-type{
        font-size: 15px;
    }

}
@media screen and (max-width: 640px) {
    .footer_inner{
        width: 100%;
        margin: 0;
    }
    .corporation{
        width: 90%;
        float: none;
        margin-left: 5%;
        margin-bottom: 10px;
    }
    .corporation h3{
        font-size: 18px;
    }
    .corporation p{
        font-size: 12px;
        margin-bottom: 0;
    }
    .corporation a{
        font-size: 10px;
    }
    .footer_inner .telephone{
        width: 90%;
        padding: 10px 0;
        margin-right: 2.5%;
    }
    .telephone{
        width: 100%;
        float: none;
        padding: 10px 10%;
        margin-left: 5%;
    }
    .telephone p{
        line-height: 1;
    }
    .telephone p:first-of-type{
        font-size: 15px;
    }
    /*infomationの中*/
    .contact_btn_area .telephone{
        width: auto;
    }
    .contact_btn_area .telephone p{ 
        width: auto;
    }

}


/* ------------------------------
   CLEARFIX ELEMENTS
------------------------------ */
.cfx:before,
.cfx:after {
	content: " ";
	display: table;
}
.cfx:after {clear: both;}
.cfx {*zoom: 1;}

/*  トップページへボタン
------------------------------ */
#fixedTop {
	padding: 20px;
	right: 10px;
	bottom: 10px;
	color: #fff;
	text-align: center;
	display: none;
	background: #FFC8C9;
	border-radius:70px;
	position: fixed;
	z-index: 99;
	font-size:25px;
}
#fixedTop:hover{
	opacity:0.8;
}
