﻿@charset "UTF-8";

/* ---------------------------------------
Basic
------------------------------------------ */
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, sub, sup, tt, var,
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;
}

/* スタイルリセット */
*, *: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-appearance:none;
    -moz-appearance:none;
    -ms-appearance:none;
    -o-appearance:none;
    appearance:none;
} */


/* ---------------------------------------
Option
------------------------------------------ */
body {
    width:100%;
    height:100%;
    -webkit-text-size-adjust: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow-x: hidden;
}
strong, b {
    font-weight:bold;
}
small {
    font-size:87.5%;
}
ul, li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
img {
    max-width: 100%;
    height: auto;
    width /***/:auto;
    vertical-align:middle;
    border:none;
    -ms-interpolation-mode: bicubic;
}
a:hover img{
    opacity: 0.75;
    filter: alpha(opacity=75);
    transition:all 0.3s ease;
}
.centerfix {
    text-align:center;
}
.b {
    font-weight:bold;
}
.wideline {
    line-height:2.0;
}
.right {
    text-align:right;
}
/* スマホでのcenter無効化 */
@media(max-width:640px){
center { 
    text-align:left;
    }
}

/* GoogleMap埋め込み */
.googlemap {
    position: relative;
    padding-top: 60%;
    height: 0;
    overflow: hidden;
}
.googlemap iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* YouTube動画埋め込み */
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* 画像装飾 */
.photoframe {
    border:1px solid #CCC;
    padding:3px;
    background-color:#FFF;
}
.photoradius{
     border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
}
.photocircle{
     border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

/* スペーサー */
/*html記述 <div class="spacer"><!—-></div>*/
.spacer {
    clear: both;
    width: auto;
    height: 40px;
}
@media(max-width:640px){
.spacer {
    height: 30px;
    }
}
.spacer30 {
    clear: both;
    width: auto;
    height: 30px;
}
.spacer25 {
    clear: both;
    width: auto;
    height: 25px;
}
.spacer20 {
    clear: both;
    width: auto;
    height: 20px;
}
.spacer15 {
    clear: both;
    width: auto;
    height: 15px;
}
.spacer10 {
    clear: both;
    width: auto;
    height: 10px;
}
.spacer5 {
    clear: both;
    width: auto;
    height: 5px;
}


/* ---------------------------------------
旧ブラウザへのHTML5対応
------------------------------------------ */
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;
}