@charset "UTF-8";

/* reset */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td {margin: 0;padding: 0;}table {border-collapse: collapse;border-spacing: 0;}fieldset,img {border: 0;}address,caption,cite,code,dfn,em,th,var {font-style: normal;font-weight: normal;}ul,ol {list-style: none;}caption,th {text-align: left;}h1,h2,h3,h4,h5,h6 {font-size: 100%;}q:before,q:after {content: '';}abbr,acronym {border: 0;font-variant: normal;}sup {vertical-align: text-top;}sub {vertical-align: text-bottom;}input,textarea,select {font-family: inherit;font-size: inherit;font-weight: inherit;}input,textarea,select {*font-size: 100%;}a img,map a {border: none;}

/* default */
html {
  overflow-x: hidden;
  font-size: 62.5%;
}
body {
  color: rgba(34,34,34,1);
  font-size: 1.6rem;
  font-weight: lighter;
  line-height: 2;
  font-family: 'メイリオ',Helvetica,"Helvetica Neue",Arial,sans-serif;
  -webkit-text-size-adjust: none;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
a {
  color: rgba(255,120,90,1);
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  color: rgba(255,120,90,0.8);
}
img {
  vertical-align: bottom;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover img {
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
}
p {
  margin-top: 20px;
}
input,
textarea {
  -webkit-appearance: none;
}

/* header */
#drawer {
  width: 260px;
  height: 100%;
  background: rgba(255,255,255,1);
  box-shadow: 0 5px 10px 0 rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  overflow-y: scroll;
  -webkit-transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  -webkit-transform: translateX(-260px);
  transform: translateX(-260px);
}
#drawer.active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
#drawer .headline {
  height: 50px;
  position: relative;
}
#drawer #close {
  width: 26px;
  height: 26px;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -13px;
  display: block;
}
#drawer #close:before,
#drawer #close:after {
  content: "";
  width: 26px;
  height: 2px;
  background: rgba(34,34,34,1);
  box-sizing: border-box;
  border-radius: 1px;
  display: block;
  position: absolute;
  top: 47%;
  transform: rotate(45deg);
}
#drawer #close:after {
  transform: rotate(-45deg);
}
#drawer nav ul {
  padding-top: 20px;
}
#drawer nav li {
  padding: 6px 30px;
}
#drawer nav li a {
  color: rgba(34,34,34,1);
}
#drawer nav li a:before {
  content: "ー";
  margin-right: 0.5em;
}
#drawer nav li a:hover {
  color: rgba(255,120,90,1);
}
#drawer .tagArea {
  padding: 10px 20px 20px;
  margin: 0;
}
#drawer .inputArea {
  padding: 20px 20px 0;
  letter-spacing: -0.4em;
}
#drawer .inputArea .input {
  width: 130px;
  height: 60px;
  border: solid 2px #eee;
  border-right: none;
  border-radius: 5px 0 0 5px;
  box-sizing: border-box;
  padding: 10px 20px;
  letter-spacing: normal;
  vertical-align: top;
}
#drawer .inputArea .btn {
  width: 90px;
  background: rgba(250,110,150,1);
  border: none;
  border-radius: 0 5px 5px 0;
  box-sizing: border-box;
  height: 60px;
  color: #fff;
  padding: 10px 20px;
  letter-spacing: normal;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#drawer .inputArea .btn:hover {
  background: rgba(250,110,150,0.8);
}
header {
  background: rgba(255,255,255,1);
  width: 100%;
  height: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .ico-menu {
  font-size: 2.6rem;
  position: absolute;
  top: 50%;
  left: 20px;
  margin-top: -13px;
  cursor: pointer;
}
header #logo {
  margin: 0;
}
header #logo img {
  height: 20px;
  display: block;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

/* contents */
#contents {
  padding: 30px 20% 0;
}

/* home */
#hero img {
  width: 100%;
}
.copy {
  text-align: center;
  line-height: 1.8;
  font-size: 4rem;
  font-weight: bold;
  margin: 80px 0;
}
.listArea {
  display: flex;
  flex-wrap: wrap;
}
.listArea li {
  margin-top: 40px;
}
.listArea li a {
  color: rgba(34,34,34,1);
  display: flex;
}
.listArea li .img {
  width: 40%;
  background-image: linear-gradient(45deg, rgba(246,199,116,1) 0%, rgba(255,120,90,1) 100%);
  border-radius: 10px;
  overflow: hidden;
}
.listArea li .img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transform: scale(1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.listArea li a:hover .img img {
  transform: scale(1.1);
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  opacity: 0.6;
}
.listArea li .text {
  box-sizing: border-box;
  padding-left: 20px;
  flex: 1;
}
.listArea li a .text .title {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.listArea li a:hover .text .title {
  color: rgba(255,120,90,0.8);
}
.listArea li .category {
  background: rgba(255,120,90,1);
  border-radius: 20px;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px 2px;
  display: inline-block;
}
.listArea li time {
  color: #aaa;
  font-size: 1.4rem;
  padding-left: 5px;
}
.listArea li .title {
  font-weight: bold;
  line-height: 1.8;
  padding-top: 5px;
  display: block;
  overflow: hidden;
}
.new a:before {
  content: "NEW";
  background: #ef494b;
  border-radius: 12px;
  height: 22px;
  line-height: 22px;
  font-size: 12px;
  font-weight: normal;
  color: #fff;
  padding: 2px 6px 0;
  display: inline-block;
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: 1;
}
.ranking li {
  counter-increment: num;
}
.ranking li a:before {
  background: #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  line-height: 22px;
  font-size: 12px;
  text-align: center;
  color: #aaa;
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: 1;
  content: counter(num);
}
.ranking li:nth-of-type(1) a:before {
  background: #d9b340;
  color: #fff;
}
.ranking li:nth-of-type(2) a:before {
  background: #6f7b83;
  color: #fff;
}
.ranking li:nth-of-type(3) a:before {
  background: #a15326;
  color: #fff;
}

/* search */
.pager {
  text-align: center;
  margin-top: 20px;
}
.pager a.page-numbers,
.pager .current {
  background: #f5f5f5;
  border-radius: 5px;
  color: #666;
  padding: 5px 20px;
  margin: 20px 4px 0;
  display: inline-block;
}
.pager a.page-numbers:hover,
.pager .current {
  background: #666;
  color: #fff;
}

/* single */
.thumb {
  margin: 40px 0 30px 0;
}
.thumb img {
  width: 100%;
  border-radius: 10px;
}
.imgArea {
  margin: 40px 0 30px 0;
}
.imgArea img {
  width: 100%;
  border-radius: 10px;  
}
.data li {
  border-right: solid 1px #eee;
  color: #aaa;
  padding: 0 14px 0 0;
  margin: 20px 10px 0 0;
  display: inline-block;
  vertical-align: bottom;
}
.data li:first-of-type,
.data li:last-of-type {
  border: none;
  padding: 0;
}
.data li.category a {
  background: rgba(255,120,90,1);
  border-radius: 20px;
  padding: 1px 22px 0;
  color: #fff;
  display: inline-block;
}
#cont {
  background: #f6f6f6;
  border-radius: 10px;
  padding: 20px 40px 40px;
  margin: 40px 0 60px;
}
#cont span {
  font-size: 2.5rem;
  font-weight: bold;
}
#cont ol {
  counter-reset: num;
  padding-top: 0;
}
#cont ol li {
  counter-increment: num;
  padding-left: 1.5em;
  position: relative;
}
#cont ol li:before {
  content: counter(num)".";
  font-weight: bold;
  position: absolute;
  left: 0;
}
#cont ol li a {
  color: rgba(34,34,34,1);
}
#cont ol li a:hover {
  color: rgba(255,120,90,0.8);
}
#cont ol ol {
  padding-left: 1em;
}
.description img {
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.description .youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.description .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.description ul {
  padding-top: 20px;
}
.description ul li {
  padding-left: 1em;
  position: relative;
}
.description ul li:before {
  content: "・";
  font-weight: bold;
  position: absolute;
  left: 0;
}
.description ul ul {
  padding: 0 0 0 1em;
}
.description ol {
  counter-reset: num;
  padding-top: 20px;
}
.description ol li {
  counter-increment: num;
  padding-left: 1.5em;
  position: relative;
}
.description ol li:before {
  content: counter(num)"．";
  font-weight: bold;
  position: absolute;
  left: 0;
}
.description ol ol {
  padding: 0 0 0 1em;
}
.description strong {
  background: linear-gradient(transparent 60%, rgba(246,199,116,0.4) 0%);
}
.description .link {
  background: #f6f6f6;
  border-left: solid 5px #eee;
  color: rgba(34,34,34,1);
  padding: 10px 30px 10px 20px;
  margin-top: 20px;
  display: block;
  position: relative;
}
.description .link:hover {
  color: rgba(255,120,90,1);
}
.description .link:after {
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid;
  border-color: rgba(34,34,34,1) rgba(34,34,34,1) transparent transparent;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 17px;
  margin-top: -5px;
}
.description .product{
	margin:40px 0;
	display:flex;
}
.description .product a{
	width:100%;
	min-height:100px;
	border:solid 1px #eee;
	border-radius:10px;
	box-sizing:border-box;
	box-shadow:0 0 15px #ddd;
	font-size:1.6rem;
	color:#666;
	padding:20px;
	display:flex;
	align-items:center;
}
.description .product a:hover{
	box-shadow:0 0 20px #ccc;
}
.description .product a img{
	width:20%;
}
.description .product a span{
	padding-left:20px;
	flex:1;
}
.description .product a span:after{
	content:"Rakutenで見る";
	background:rgba(191,0,0,1);
	border-radius:5px;
	color:#fff;
	text-align:center;
	padding:12px 0;
	margin-top:10px;
	display:block;
	-webkit-transition:0.3s;
	transition:0.3s;
}
.description .product a:hover span:after{
	background:rgba(191,0,0,0.8);
}
.description figure {
  margin: 20px 0 30px 0;
}
.description blockquote {
  background: #f6f6f6;
  border-left: solid 5px #eee;
  font-style: italic;
  padding: 20px 40px 40px;
  margin: 40px 0;
}
.description blockquote cite {
  font-style: italic;
  text-align: right;
  display: block;
}
.description blockquote cite:before {
  content: "by ";
}
.description  pre {
  background: #f6f6f6;
  padding: 40px;
  margin: 40px 0;
  white-space: pre-wrap;
}
.description table {
  width: 100%;
  margin: 40px 0;
}
.description table thead {
  background: #f6f6f6;
}
.description table th,
.description table td {
  border: solid 1px #eee;
  padding: 10px;
}
.description table thead th {
  font-weight: bold;
  text-align: center;
}
.profile {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.profile .img {
  width: 25%;
  max-width: 300px;
}
.profile .img img {
  width: 100%;
  border: solid 4px #eee;
  border-radius: 50%;
  box-sizing: border-box;
  padding: 4px;
}
.profile .text {
  margin-left: 20px;
  flex: 1;
}
.profile .text h3,
.profile .text p {
  margin: 0;
}
.tagArea {
  margin-top: 20px;
  letter-spacing: -0.4em;
}
.tagArea li {
  margin: 10px 10px 0 0;
  display: inline-block;
  letter-spacing: normal;
}
.tagArea li a {
  border: solid 1px #aaa;
  border-radius: 5px;
  text-align: center;
  font-size: 1.2rem;
  color: #aaa;
  padding: 5px 6px 4px;
  display: block;
}
.tagArea li a:hover {
  background: #f5f5f5;
}
.tagArea li a:before {
  content: "#";
  margin-right: 2px;
}
.btnArea {
  margin-top: 40px;
}
.btn {
  margin-top: 20px;
}
.btn a {
  width: 100%;
  background: rgba(255,120,90,1);
  box-sizing: border-box;
  border-radius: 5px;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  display: block;
}
.btn a:hover {
  background: rgba(255,120,90,0.8);
}
h1 {
  font-size: 3rem;
  margin-top: 60px;
}
h2 {
  font-size: 3rem;
  padding-top: 60px;
  margin-top: 60px;
  position: relative;
}
h2:before {
  content: "";
  width: 100%;
  height: 5px;
  background: #eee;
  border-radius: 5px;
  position: absolute;
  top: 0;
}
h2:first-child {
  padding: 0;
}
h2:first-child:before {
  content: none;
}
h3 {
  font-size: 2.5rem;
  margin-top: 60px;
}
h4 {
  font-size: 2rem;
  margin-top: 60px;
}
h5 {
  margin-top: 60px;
}
.sns {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
.sns li {
  width: 23%;
  margin: 22px 0 0;
}
.sns li a {
  border-radius: 5px;
  color: #fff;
  text-align: center;
  padding: 10px 0 9px;
  display: block;
}
.sns li a:before {
  font-size: 2.6rem;
}
.sns li a:hover {
  -webkit-transform: translate3d(0,2px,0);
  -moz-transform: translate3d(0,2px,0);
  transform: translate3d(0,2px,0);
  box-shadow: none;
}
.sns .twitter a {
  background: #1da1f2;
  box-shadow: 0 2px 0 #1781c2;
}
.sns .twitter a:hover {
  background: #1781c2;
}
.sns .facebook a {
  background: #3b5998;
  box-shadow: 0 2px 0 #2f477a;
}
.sns .facebook a:hover {
  background: #2f477a;
}
.sns .google a {
  background: #dc4e41;
  box-shadow: 0 2px 0 #b03e34;
}
.sns .google a:hover {
  background: #b03e34;
}
.sns .hatena a {
  background: #00a4de;
  box-shadow: 0 2px 0 #0083b2;
}
.sns .hatena a:hover {
  background: #0083b2;
}
.sns .line a {
  background: #00c300;
  box-shadow: 0 2px 0 #009c00;
}
.sns .line a:hover {
  background: #009c00;
}
.sns .pocket a {
  background: #ef3f56;
  box-shadow: 0 2px 0 #bf3245;
}
.sns .pocket a:hover {
  background: #bf3245;
}
.sns .feedly a {
  background: #6cc655;
  box-shadow: 0 2px 0 #569e44;
}
.sns .feedly a:hover {
  background: #569e44;
}
.sns .rss a {
  background: #ffa500;
  box-shadow: 0 2px 0 #cc8400;
}
.sns .rss a:hover {
  background: #cc8400;
}

/* page */
input,
textarea {
  padding: 10px;
  border: solid 2px #eee;
  border-radius: 0;
  box-sizing: border-box;
}
input {
  width: 300px;
}
input[type="submit"] {
  width: 100%;
  background: rgba(255,120,90,1);
  border: none;
  border-radius: 5px;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
input[type="submit"]:hover {
  background: rgba(255,120,90,0.8);
}
textarea {
  width: 100%;
  height: 150px;
  vertical-align: bottom;
}
.inputArea {
  letter-spacing: -0.4em;
}
.inputArea .input {
  width: 236px;
  height: 60px;
  border: solid 2px #eee;
  border-right: none;
  border-radius: 5px 0 0 5px;
  box-sizing: border-box;
  font-size: 2rem;
  padding: 10px 20px;
  margin-top: 20px;
  letter-spacing: normal;
  vertical-align: top;
}
.inputArea .btn {
  width: 100px;
  background: rgba(255,120,90,1);
  border: none;
  border-radius: 0 5px 5px 0;
  box-sizing: border-box;
  height: 60px;
  color: #fff;
  font-size: 2rem;
  padding: 10px 20px;
  letter-spacing: normal;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.inputArea .btn:hover {
  background: rgba(255,120,90,0.8);
}
#sitemap_list {
  padding-top: 20px;
}
#sitemap_list li {
  padding-left: 1em;
  position: relative;
}
#sitemap_list li:before {
  content: "・";
  font-weight: bold;
  position: absolute;
  left: 0;
}
#sitemap_list ul {
  padding: 0 0 0 1em;
}

/* footer */
footer {
  text-align: center;
  margin-top: 80px;
  padding-bottom: 40px;
}
#breadcrumb ol {
  background: #fff;
  font-size: 1.4rem;
  text-align: left;
  padding: 20px 5%;
}
#breadcrumb li {
  color: rgba(34,34,34,1);
  display: inline-block;
}
#breadcrumb li:after {
  content: "＞";
  padding: 0 5px;
  display: inline-block;
}
#breadcrumb li:last-of-type:after {
  content: none;
}
#breadcrumb li a {
  color: rgba(34,34,34,1);
}
#breadcrumb li a:hover {
  color: rgba(255,120,90,0.8);
}
footer .sns {
  width: 300px;
  padding-top: 50px;
  margin: 0 auto;
}
footer .sns .twitter a,
footer .sns .facebook a,
footer .sns .google a,
footer .sns .hatena a,
footer .sns .line a,
footer .sns .pocket a,
footer .sns .feedly a,
footer .sns .rss a,
footer .sns .twitter a:hover,
footer .sns .facebook a:hover,
footer .sns .google a:hover,
footer .sns .hatena a:hover,
footer .sns .line a:hover,
footer .sns .pocket a:hover,
footer .sns .feedly a:hover,
footer .sns .rss a:hover {
  background: none;
  box-shadow: none;
  color: rgba(34,34,34,1);
}
footer nav ul li {
  margin: 15px 10px 0;
  display: inline-block;
}
footer nav ul li a {
  font-size: 1.2rem;
  color: rgba(34,34,34,1);
}
footer .logo img {
  height: 20px;
  margin-top: 20px;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
#copy {
  font-size: 1.2rem;
  margin: 20px 20px 0;
  display: block;
}
#pageTop {
  background: rgba(255,120,90,1);
  border-radius: 50%;
  font-size: 2rem;
  color: #fff;
  padding: 15px;
  z-index: 11;
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
}
#pageTop:hover {
  background: rgba(255,120,90,0.8);
}

/* responsive */
@media screen and (max-width: 768px) {
#contents {
  padding: 30px 5% 0;
}
.copy {
  font-size: 2.5rem;
}
img {
  max-width: 100%;
  height: auto;
}
#cont {
  padding: 5px 20px 20px;
}
.listArea li a {
  display: block;
}
.listArea li .img {
  width: 100%;
}
.listArea li .text {
  padding: 10px 0 0;
}
.description blockquote {
  padding: 1px 20px 20px;
}
.description pre {
  padding: 20px;
}
.description table {
  display: block;
  overflow-x: scroll;
  white-space: nowrap;
}
.profile {
  display: block;
}
.profile .img {
  width: 50%;
  margin: 0 auto;
}
.profile .text {
  margin: 0;
}
#pageTop {
  right: 10px;
  bottom: 10px;
}
}