<link href='https://fonts.googleapis.com/css?family=Josefin Sans|Josefin Slab|Didact Gothic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<style type="text/css">
*{box-sizing:border-box;}

body{
font-family: 'Didact Gothic',"メイリオ", sans-serif;
font-size:11.5px;
margin:0;
padding:0;
letter-spacing:2.5px;
line-height:1.9;
text-align:center;
word-break:break-all;
white-space:normal;
-webkit-tap-highlight-color:rgba(0,0,0,0);
overflow-x:hidden;
}

header{
margin:0 auto;
background:#fff;
text-align:left;
}

#all{
margin:0 auto;
padding:45px 60px 45px 60px;
max-width:800px;
}

#maru{
margin:0 auto;
width:105px;
height:105px;
background-image:url(#丸の背景画像URL#);
background-size:105px;
border:#fff solid 6px;
border-radius:50%;
}

#wrp{
margin:0 auto;
padding:20px 30px 0 30px;
max-width:800px;
text-align:justify;
}

article{
margin:0 auto;
padding:25px;
max-width:500px;
background:#fff;
border:#fff solid 1px;
position:relative;
}

article:after{
top:5px;
left:5px;
content:"";
width:100%;
height:100%;
background:rgba(20,20,20,.055);
position:absolute;
z-index:-2;
}

aside{
margin:8px 0 0 20px;
padding:0 0 0 20px;
border-left:#434343 solid 1px;
}

aside small{color:#aaa;}

nav{
display:flex;
display: -webkit-flex;
justify-content: space-between;
flex-wrap: wrap;
}

nav div{flex-grow:1;}

nav h3{margin-top:30px;}

footer{
font-size:10px;
padding:15px; /* フッターの余白調整 */
color:#aaa;
background:#fff;
font-weight:700;
}

#rise{
font-size:15px;
bottom:30px;
right:30px;
width:30px;
height:30px;
background:#FDC38B;
border-radius:50%;
line-height:30px;
letter-spacing:0;
position: fixed;
opacity:.6;
}

#rise a{color:#fff;}

#rise a:hover {background:transparent;}

mark{
color:#434343;
padding:1px 0;
background:transparent;
border-bottom:#FDC38B dashed 1px;
font-weight:400;
}

.button{
font-size:10px;
margin:12px 0 3px 0;
padding:2px 10px 2px 12.5px ;
color:#434343;
background:#fff;
border:#434343 solid 1px;
font-weight:700;
display:inline-block;
position:relative;
}

.button:hover{
color:#bbb;
background:transparent;
}

.fa-heart-o{color:#FDC38B;}

a{
padding-top:2px;
text-decoration:none;
}

a:hover{background:linear-gradient(transparent 60%, #fffccf 60%);}

footer,h1{font-family: 'Josefin Slab',"メイリオ", sans-serif;}

.button, h2, h3, h4{font-family: 'Josefin Sans',"メイリオ", sans-serif;}

h1{
font-size:20px;
margin:20px 0 0 0;
}

h2{
font-size:10px;
letter-spacing:5px;
margin:0 0 28px 0;
position:relative;
}

h2:before{
bottom:-10px;
left:0;
content:"";
width:40px;
height:2px;
background:#A5DCDA;
position:absolute;
}

h3{
font-size:12px;
margin:8px 0 0 0;
}

h4{
font-size:10px;
margin:0;
padding:12.5px 0;
}

h4 a{color:#434343;}

select,input[type],textarea{
font-family: 'Josefin Sans',"メイリオ", sans-serif;
font-size:11px;
margin:10px 0;
padding:5px;
width:90%;
height:auto;
color:#434343;
background:#f2f2f2;
border:none;
border-radius:0;
letter-spacing:2.2px;
line-height:1.8;
box-shadow:none;
text-shadow:none;
outline:none;
vertical-align:middle;
}

input[type="submit"]{
font-weight:700;
cursor:pointer;
}

input[type="submit"]:hover{color:#aaa;}

#name{margin:0;}

#name input[type=text]{
margin:0 6px 0 0;
padding:4px 5px 4px 7px;
width:55px;
}

#name input[type=submit]{
padding:4px 5px 4px 7px;
width:auto;
}

textarea{height:8em;}

::selection {background: rgba(238,220,187,.3);}

::-moz-selection {background: rgba(238,220,187,.3);}

@media screen and (max-width:759px) {
#all{
padding:50px 35px 25px 35px;
text-align:center;
}

#maru{
width:145px;
height:145px;
background-size:145px;
}

h1{font-size:18px;}
}

@media screen and (min-width:760px) {

#all{
display:flex;
display: -webkit-flex;
flex-wrap: wrap;
}

#menu{
padding-left:15px;
flex-grow:1;
}

#maru{margin-right:15px;}

#wrp{padding-top:30px;}

section{
width:100%;
border-collapse: separate;
border-spacing:15px 0;
display:table;
}

article{
min-width:50%;
max-width:380px;
display:table-cell;
}

h4{padding-top:5px;}
}
</style>

<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.1.min.js"></script>
<script>
$(function(){
   $('a[href^=#]').click(function() {
      var speed = 800; 
      var href= $(this).attr("href");
      var target = $(href == "#" || href == "" ? 'html' : href);
      var position = target.offset().top;
      $('body,html').animate({scrollTop:position}, speed, 'swing');
      return false;
   });
});

$(function() {
    var topBtn = $('#rise');    
    topBtn.hide();
    $(window).scroll(function () {
        if ($(this).scrollTop() > 100) {
            topBtn.fadeIn();
        } else {
            topBtn.fadeOut();
        }
    });
    topBtn.click(function () {
        $('body,html').animate({
            scrollTop: 0
        }, 800);
        return false;
    });
});
</script>