@charset "utf-8";
/* CSS Document */

body{
font-family: 'ヒラギノ角ゴPro', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', sans-serif;
margin:0;
color:#000;
}

img{
}

a{
    color:blue;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	text-decoration:none;
}
a:visited{
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
a:hover {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	text-decoration:underline;
}

p {
    font-size: 100%;
    /*letter-spacing: 0.2em;*/
    line-height: 180%;
    margin-bottom: 0.5em;
}

/* common
---------------------------------------------------------- */
.flex {
  display: flex;
  flex-wrap: wrap;
}
.between {
  justify-content: space-between;
}
.flex_end {
  justify-content: flex-end;
}

.only_pc {
  display:block;
}

.only_sp {
  display:none;
}


#wrapper {
	width:100%;
}

h1 {
  text-align: center;
  margin: 65px auto;
}

.contents {
  width: 100%;
}
.contents li {
  width: 50%;
  padding: 40px 0 30px;
}
.contents li.list_01 {
  background-color: #d3ebea;
  text-align: right;
}
.contents li.list_01 img {
  margin-right: 20%;
}

.contents li.list_02 {
  background-color: #f4f4f4;
}
.contents li.list_02 img {
  margin-left: 20%;
}


.footer {
  text-align: center;
  margin: 80px auto;
  font-size: 12px;
}
.footer img {
  margin-bottom: 15px;
}

small {
  display: block;
  font-size: 12px;
  text-align: center;
  border-top: 1px solid #eeeeee;
  padding: 15px 0;
}

/* ==========================================================================//
//
//　SP 768px以下
//
// ========================================================================== */

@media screen and (max-width: 768px) {

.only_pc {
  display:none !important;
}

.only_sp {
  display:block !important;
}

.flex {
  display: block;
  }

.contents li {
  width: 100%;
  text-align: center !important;
}
.contents li.list_01 img {
  margin-right: 0;
}

.contents li.list_02 img {
  margin-left: 0;
}
  
}
