@charset "UTF-8";

/*
Theme Name: さとうゆきこ
*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

/*リセットCSS*/
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.6;
}
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;
}/*リセットCSSここまで*/



body{
  background: url('images/haikei.jpeg');
  font-family:'メイリオ', Meiryo,'ヒラギノ角ゴシック','Hiragino Sans','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
  padding-bottom: 70px;
  font-size: 16px;
}

.container{
	background: #fff;
}
.navbar-default, .navbar-collapse, .navbar-default, .navbar-form{
background-color: rgba(255, 255, 255, 0);
}
.navbar-default .navbar-toggle{
border: none;
}

img{
	max-width: 100%;
}

/* a{
 color: #333;
 text-decoration: none;
} */

h2{
color: #fff;
background-color: #efb7af;
position: relative;
padding: 0.25em 1em;
border-top: solid 2px #fff;
border-bottom: solid 2px #fff;
}
h2::before, h2::after{
content: '';
position: absolute;
top: -7px;
width: 2px;
height: -webkit-calc(100% + 14px);
height: calc(100% + 14px);
background-color: #fff;
}
h2::before {left: 7px;}
h2::after {right: 7px;}

h3 {
position: relative;/*相対位置*/
margin: 50px 0;
padding: 0.5em 0.5em 0.5em 1.5em;/*アイコン分のスペース*/
line-height: 1.4;/*行高*/
color: #ff8888;/*文字色*/
border-top: dotted 1px gray;
border-bottom: dotted 1px gray;
background: #fffff4;
font-size: 24px;
font-weight: bold;
}

h3::before{ font-family: FontAwesome;/*忘れずに*/
content: "\f138";/*アイコンのユニコード*/
position: absolute;/*絶対位置*/
font-size: 1em;/*サイズ*/
left: 0.25em;/*アイコンの位置*/
top: 0.5em;/*アイコンの位置*/
color: #ff8888; /*アイコン色*/
}

h4 {
position: relative;/*相対位置*/
padding-left: 1.5em;/*アイコン分のスペース*/
line-height: 1.4;/*行高*/
color:  #ff8888;/*文字色*/
font-size: 20px;
margin: 50px 0;
font-weight:  bold;
}

h4::before{ font-family: FontAwesome;/*忘れずに*/
content: "\f111";/*アイコンのユニコード*/
position: absolute;/*絶対位置*/
font-size: 1em;/*サイズ*/
left: 5px;/*アイコンの位置*/
top: 0;/*アイコンの位置*/
color: #ff8888;
}

h5 {
padding: 0.25em 0.5em;/*上下 左右の余白*/
color:  #ff6a6a;/*文字色*/
background: transparent;/*背景透明に*/
border-left: solid 4px #ff8888;/*左線*/
font-weight: bold;
font-size: 18px;
margin: 50px 0;
}

#rogo{
  margin-top: -30px;
}

.circle{
  width: 80px;
  text-align: center;
  background-color: #efb7af;
  font-size:  18px;
  font-weight: bold;
  color: #FFF;
  padding: 8px;
  border-radius: 50%;
  } 

.swing {
margin:10px;
-moz-animation: swing linear 5s infinite;
-moz-transform-origin: center -30px 0;
-webkit-animation: swing linear 5s infinite;
-webkit-transform-origin: center -30px 0;
-ms-animation: swing linear 5s infinite;
-ms-transform-origin: center -30px 0;
-o-animation: swing linear 5s infinite;
-o-transform-origin:center -30px 0;
animation: swing linear 5s infinite;
transform-origin: center -30px 0;
display: block;
float:left;
}
@-moz-keyframes swing {
0% { -moz-transform: rotate(0deg) }
25% { -moz-transform: rotate(5deg); }
50% { -moz-transform: rotate(0deg); }
75% { -moz-transform: rotate(-5deg); }
100% { -moz-transform: rotate(0deg); }
}
@-webkit-keyframes swing {
0% { -webkit-transform: rotate(0deg); }
25% { -webkit-transform: rotate(5deg); }
50% { -webkit-transform: rotate(0deg); }
75% { -webkit-transform: rotate(-5deg); }
100% { -webkit-transform: rotate(0deg); }
}    
@-o-keyframes swing {
0% { -o-transform: rotate(0deg); }
25% { -o-transform: rotate(5deg); }
50% { -o-transform: rotate(0deg); }
75% { -o-transform: rotate(-5deg); }
100% { -o-transform: rotate(0deg); }
}
@-ms-keyframes swing {
0% { -ms-transform: rotate(0deg); }
25% { -ms-transform: rotate(5deg); }
50% { -ms-transform: rotate(0deg); }
75% { -ms-transform: rotate(-5deg); }
100% { -ms-transform: rotate(0deg); }
}
@keyframes swing {
0% { transform: rotate(0deg); }
25% { transform: rotate(5deg); }
50% { transform: rotate(0deg); }
75% { transform: rotate(-5deg); }
100% { transform: rotate(0deg); }
}

.navbar-default {
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0); 0%);
  background-image:      -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0); 0%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
  background-image:         linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0); 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255, 255, 255, 0)', endColorstr='rgba(255, 255, 255, 0)', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-radius: 0px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0), 0 0px 0px rgba(0, 0, 0, 0);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0), 0 0px 0px rgba(0, 0, 0, 0);
  border-style: none;
  box-shadow: 1px 1px 2px #a6815b;
}

.navbar-default .navbar-nav>li>a{
  color: #ff8888;
  padding: 13px 30px;
  font-size: 16px;
}
.navbar-default .navbar-nav>li:last-child{
  padding-right: 0;
}


ul li:hover{
  background-color: #efb7af;
}

.navbar-default .navbar-nav>li>a:hover{
    color: #fff;
}


#contactForm{
	border: 1px solid #a17a51;
	margin-top:50px;
}
/*index.php*/
#title{
  margin-top: 40px;
  font-size: 22px;
  color: #ff6a6a;
}
.btn{
	width: 230px;
	height: 80px;
	margin-top: 20px;
	color: #fff;
	font-size: 18px;
	position: relative;
  display: inline-block;
  padding: 0.25em 0.5em;
  text-decoration: none;
  background: #efb7af;/*色*/
  border-radius: 4px;/*角の丸み*/
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), inset 0 -2px 0 rgba(0, 0, 0, 0.05);
  font-weight: bold;
  border: solid 2px #f4aaa1;/*線色*/

}

.btn:active{
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.30);
}
.btn:hover{
	color: #fff;
	opacity:  .8;
	transform: translate3d(0, 2px, 0);
}

.btn a{
	color: #fff;
}

.btn a:hover{
	color: #fff;
	text-decoration: none;
}

.btn:visited{
	border: none;
}

#check{
	margin-top: 30px;
	font-size: 20px;
}
input{
	display: inline-block;
	width: 200px;
}
p label>input{
	display: inline-block;
	width: auto;
}
#submit{
	margin-left: 10px;
}


/*ヘッダー部分をスクロール固定する*/
/* .fixed{
	position: fixed;
  top: 0;
  left: 0;
  padding-left: 80px;
  width: 100%;
  z-index: 1;
  background-color: #fff;
  box-shadow: 1px 1px 2px #a6815b;
} */


footer {
    width: 100%;
    margin-top: 50px;
    padding: 10px;
    background-color: #fffff4;
}

footer a{
	display: inline-block;
	color: #333;
}

#contact a:hover{
	display: block;
	text-decoration: none;
  background: #fff;
	transform: translate3d(0, 1px, 0);
}

#footernav{
  margin-left: -30px;
}

#footernav li{
  background: none;
}

#footernav li a{
  background: none;
  color: #333;
  font-size: 12px;
  display: inline-block;
}

#footernav li a:hover{
  color: red;
}

address{
  margin-top: 30px;
}

address a{
  text-decoration: underline;
}

address a:hover{
  color:  red;
}


/*上に戻るボタン*/
#pageTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
}
 
#pageTop a {
  display: block;
  z-index: 999;
  padding: 8px 0 0 8px;
  border-radius: 30px;
  width: 50px;
  height: 50px;
  background-color: #efb7af;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}
 
#pageTop a:hover {
  text-decoration: none;
  opacity: 0.8;
}
 
/* navbar collapse for iPad (bootstrap) */
@media (max-width: 991px) {
    .navbar-header {
        float: none;
    }
    .navbar-toggle {
        display: block;
    }
    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    }
    .navbar-collapse.collapse {
        display: none!important;
    }
    .navbar-nav {
        float: none!important;
        margin: 7.5px -15px;
    }
    .navbar-nav>li {
        float: none;
    }
    .navbar-nav>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .navbar-text {
        float: none;
        margin: 15px 0;
    }
    .navbar-collapse.collapse.in {
        display: block!important;
    }
    .collapsing {
        overflow: hidden!important;
    }
}

#formWrap {
  width: 100%;
  margin:0 auto;
  color:#555;
  line-height:120%;
  font-size:90%;
}

table a{
  color: #333;
}

table.formTable{
  width: 100%;
  margin:0 auto;
  border-collapse:collapse;
}
table.formTable td,table.formTable th{
  border:1px solid #efb7af;
  padding:10px;
}
table.formTable th{
  width:30%;
  font-weight:normal;
  background:#f8e9e1;
  text-align:left;
}
/*single.php*/
#single h2{
  background: none;
  border: none;
  color: #ff8888;
  margin-left: -22px;
  font-size: 24px;
}

#single h2::before{
 text-indent: -9999px;
}

#single h2 a{
  color: #ff8888;
}

