@charset "utf-8";
/*
=======================================
  Reset CSS
=======================================
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, main, menu, nav, section, summary,
time, mark, audio, video{
  margin:0;
  padding:0;
}

article,aside,details,figcaption,figure,
footer,header,main,menu,nav,section{
  display:block;
}

html{
  -webkit-text-size-adjust: 100%;
}

body{
  color: #59220d;
  line-height: 1.5;
  margin-left: 10px;
  font-size: 10px;
  font-family: sans-serif;
}

/* フォント書式forSP*/

t0 {font-family:sans-serif; ヒラギノ角ゴProN; font-size:20px; font-weight:bold; color:white;}
t0b {font-family:sans-serif; ヒラギノ角ゴProN; font-size:20px; font-weight:bold; color:indigo;}
t1 {font-family:sans-serif; ヒラギノ角ゴProN; font-size:15px; font-weight:bold; color:white;}
t1b {font-family:sans-serif; ヒラギノ角ゴProN; font-size:13px; font-weight:bold; line-height: 200%; color:black;}
t1bw {font-family:sans-serif; ヒラギノ角ゴProN; font-size:17px; font-weight:bold; color:blue;}
t1black {font-family:sans-serif; ヒラギノ角ゴProN; font-size:17px; font-weight:bold; color:black;}
t2 {font-family:sans-serif; ヒラギノ角ゴProN; font-size:13px; font-weight:bold; color:white;}
t2b {font-family:sans-serif; ヒラギノ角ゴProN; font-size:13px; font-weight:bold; color:black;}
t3 {font-family:sans-serif; ヒラギノ角ゴProN; font-size:20px; font-weight:normal; color:yellow;}
m1black {font-family:sans-serif; ヒラギノ角ゴProN;  font-size:15px; font-weight:normal; color:black;}
m1blue {font-family:sans-serif; ヒラギノ角ゴProN;  font-size:15px; font-weight:normal; color:blue;}
m2 {font-family:sans-serif; ヒラギノ角ゴProN; font-size:13px;  font-weight:bold; line-height: 170%; color:black;}
m2blue {font-family:sans-serif; ヒラギノ角ゴProN; font-size:13px;  font-weight:bold; line-height: 170%; color:blue;}
m3 {font-family:sans-serif; ヒラギノ角ゴProN; font-size:12px;  font-weight:bold; line-height: 140%; color:black;}



/img{
  border: 0;
  max-width: 100%;
  height: auto;
}
/*
ul,ol{
  list-style-type: none;
}
*/
table {
  border-collapse: collapse; 
  border-spacing: 0;

}

img, input, select, textarea { 
  vertical-align: middle;
}
/*
a {
  color: #59220d;
  transition: 0.5s;
}
a:hover {
  color: #d53e04;
}
a:hover img {
  opacity: 0.7;
}
*/


/*
=========================================
  Base Layout
=========================================
*/

/*container*/
.container {
  max-width: 940px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 10px;
}
h1 {
  width: 310px;
 margin: 0 auto;
  padding-left: 5px;
  padding-right: 5px;
  backgroud-color: white;
}
h2 {
  width: 310px;
  margin: 0 auto;
  padding-left: 5px;
  padding-right: 5px;
  background-color: lightgreen;
}

footer {
  width: 100vw;
  backgrond-color: yellow;
}

/*section
--------------------*/
#photo {
  margin: 5px 0;
  width: 100vw;
}

/*copyright*/
.copyright {
  text-align: left;
}

/*pagetop*/
.pagetop{
  width: 30px;
  height: 30px;
  position: fixed;
  right: 30px;
  bottom: 30px;
}
.pagetop a {
  display: block;
  width: 30px;
  height: 30px;
  padding-top: 1px;
  box-sizing: border-box;
  background: rgba(155,255,255,0.5);
  border-radius: 50%;
  text-decoration: none;
  text-align: center;
  font-size: 12px;
}
/*.pagetop a:hover {
  background: rgba(255,255,255,0.5);
  color: #59220d;
}
.pagetop a::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: auto;
  border-top: 5px solid #59220d;
  border-right: 5px solid #59220d;
  transform: rotate(-45deg);
}
/*

=========================================
  Modules（Parts）
=========================================
*/

/*Heading
--------------------*/
.heading{
  margin-bottom: 15px;
  border-bottom: #4d941a 1px solid;
  color: #4d941a;
  font-size: 20px;
  font-weight: normal;
  font-family: 'Cardo', serif;
  font-style: italic;
  overflow: hidden;
  position: relative;
}





/*
=========================================
  Utilities
=========================================
*/

/* マージン
---------------------------------*/
.mb0{ margin-bottom: 0 !important;}
.mb5{ margin-bottom: 5px !important;}
.mb10{ margin-bottom: 10px !important;}
.mb15{ margin-bottom: 15px !important;}
.mb20{ margin-bottom: 20px !important;}
.mb25{ margin-bottom: 25px !important;}
.mb30{ margin-bottom: 30px !important;}
.mb35{ margin-bottom: 35px !important;}
.mb40{ margin-bottom: 40px !important;}
.mb45{ margin-bottom: 45px !important;}
.mb50{ margin-bottom: 50px !important;}

/* 左右行揃え
---------------------------------*/
.ta-l{ text-align: left; }
.ta-r{ text-align: right; }
.ta-c{ text-align: center; }


/* フロート／フロート解除
---------------------------------*/
.fl{ float:left; }
.fr{ float:right; }
.fl-img{ float: left; margin-right: 10px; margin-bottom: 10px;}
.fr-img{ float: right; margin-left: 10px; margin-bottom: 10px;}
.clear{ clear:both; }

/* clearfix */
.clearfix:after {
  content: ""; 
  display: block; 
  clear: both; 
}




