@charset "utf-8";
/*ver 1.0*/
/******************************/
/* RESET */
/******************************/
*{ 
	-webkit-text-size-adjust: none;
	margin:0;
	padding:0;
	box-sizing: border-box;
}
html{
	font-size: 62.5%; /* 1.6rem = 16px、1.8 = 18px、2.0rem = 20px のような設定になってます*/
}

/* html5要素 */
article, aside, dialog, figure, figcaption, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}
article, aside, dialog, figure, footer, header,
hgroup, nav, section {
	display:block;
}


table {
	border-collapse:collapse;
	border-spacing:0;
}
fieldset,img { 
	border:0;
	vertical-align:bottom;
}
address,caption,cite,code,dfn,em,strong,th,var {
	font-style:normal;
	font-weight:normal;
}
ol,ul {
	list-style:none;
}
caption,th {
	text-align:left;
}
h1,h2,h3,h4,h5,h6 {
	clear: both;
	font-size:100%;
	font-weight:normal;
}
q:before,q:after {
	content:'';
}
abbr,acronym {
	border:0;
}

a {
	outline:none;
}

.sd-content ul li{
	background-color: transparent !important;
	padding: 0 !important;
	margin: 0 !important;
}


/******************************/
/* 基本設定 */
/******************************/
a:link {
	color: #465d8b;
	text-decoration: none;
}

a:visited {
	color: #465d8b;
	text-decoration: none;
}

a:hover {
	opacity:0.6;
	filter: alpha(opacity=60);
	-moz-opacity:0.6;
	text-decoration: none;
	transition: opacity 0.7s ease 0s;
}



a:hover img{
	opacity:0.6;
	filter: alpha(opacity=60);
	-moz-opacity:0.6;
	transition: opacity 0.7s ease 0s;
}

/***** Font *****/
#ac-post .ac-post__title {
	font-size: 2.4rem;
	font-weight: 900;
}
#ac-post h1 {
	font-size: 2.4rem;
	font-weight: 900;
}
#ac-post h2 {
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.6;
 	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
}
#ac-post h2::before {
	content: "";
    display: block;
    flex: 0 0 28px;
    height: 1px;
    background: #333;
    margin-right: 15px;
    transform: translateY(0.8em);
}
#ac-post h3 {
	font-size: 1.6rem;
	font-weight: 700;
}
@media screen and (max-width:767px){
	#ac-post .ac-post__title {
		font-size: 2rem;
		line-height: 1.5;
	}
	#ac-post h1 {
		font-size: 2rem;
		line-height: 1.5;
	}
	#ac-post h2 {
		font-size: 1.7rem;
		line-height: 1.5;
	}
	#ac-post h2::before {
	    flex: 0 0 20px;
	    margin-right: 10px;
	}
	#ac-post h3 {
		font-size: 1.5rem;
		line-height: 1.5;
	}
}
#ac-post p {
	font-size: 1.4rem;
	margin-bottom: 20px;
}
#ac-post strong {
	font-weight: 900;
}
#ac-post em {
	font-style: italic;
}

#ac-post blockquote {
	background-color: #ededed;
    border: 1px solid #C8C8C8;
    padding: 20px 25px;
    position: relative;
	margin: 14px auto;
}
#ac-post blockquote::before, 
#ac-post blockquote::after {
    color: #C8C8C8;
    font-family: serif;
    position: absolute;
    font-size: 300%;
}    
#ac-post blockquote::before {
    content: "“";
    line-height: 1.1;
    left: 10px;
    top: 0;
}
#ac-post blockquote::after {
    content: "”";
    line-height: 0;
    right: 10px;
    bottom: 0px;
}
#ac-post blockquote p {
	margin-bottom: 0;
}

/***** List *****/
#ac-post ul, 
#ac-post ol {
	font-size: 1.4rem;
    margin-bottom: 25px;
}
#ac-post ul li {
	list-style-type: disc;
	list-style-position: outside;
	margin: 3px 0 3px 16px;
}
#ac-post ol li {
	list-style-type: decimal;
    list-style-position: outside;
	margin: 3px 0 3px 16px;
}

/***** Link *****/
#ac-post a:link, 
#ac-post a:visited {
    text-decoration: none;
    font-weight: 700;
}
#ac-post a:hover {
	text-decoration: underline;
}

/***** Image *****/
#ac-post img {
	height: auto;
    max-width: 100%;
}

/***** キャプション *****/
.wp-caption {
	margin-bottom: 25px;
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0;
}
.wp-caption-text {
	color: #707070;
	font-family: "Noto Sans", sans-serif;
	font-size: 1.2rem;
	line-height: 1.5;
	padding: 5px 0;
}

/***** ギャラリー *****/
.gallery {
	margin-bottom: 25px;
}
.gallery-item {
	display: inline-block;
	padding: 1.5%;
	text-align: center;
	vertical-align: top;
	width: 100%;
}
figure.gallery-item img {
	-ms-interpolation-mode: bicubic;
	border: 0;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
}
.gallery-columns-2 .gallery-item {
	max-width: 47%;
}
.gallery-columns-3 .gallery-item {
	max-width: 30.33%;
}
.gallery-columns-4 .gallery-item {
	max-width: 22%;
}
.gallery-columns-5 .gallery-item {
	max-width: 17%;
}
.gallery-columns-6 .gallery-item {
	max-width: 13.66%;
}
.gallery-columns-7 .gallery-item {
	max-width: 11.28%;
}
.gallery-columns-8 .gallery-item {
	max-width: 9.5%;
}
.gallery-columns-9 .gallery-item {
	max-width: 8.11%;
}
.gallery-icon img {
	margin: 0 auto;
}
.gallery-caption {
	color: #707070;
	color: rgba(51, 51, 51, 0.7);
	display: block;
	font-family: "Noto Sans", sans-serif;
	font-size: 1.2rem;
	line-height: 1.5;
	padding: 0.5em 0;
}
.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
	display: none;
}

/***** 配置 *****/
.aligncenter { 
	clear: both;
	display: block; 
	margin: 0 auto;
}
.alignleft { 
	float:left;
	margin-right: 25px;
}
.alignright { 
	float:right;
	margin-left: 25px;
}
img.alignright { 
	display: inline-block; 
	margin: 0 0 10px 15px;
}
img.alignleft { 
	display: inline-block; 
	margin: 0 15px 10px 0;
}

/***** 目次 *****/
#ac-post #toc_container {
  padding: 10px 20px !important;
  margin-bottom: 80px !important;
  margin-top: 30px !important;
  width: 100% !important;
}
#ac-post #toc_container a {
  font-weight: 400;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
} 
#ac-post #toc_container .toc_list > li {
	margin: 0;
}
#ac-post #toc_container .toc_list > li > a {
	position: relative;
	padding-left: 20px;
	vertical-align: middle;
}
#ac-post #toc_container .toc_list > li > a::before, 
#ac-post #toc_container .toc_list > li > a::after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;	
}
#ac-post #toc_container .toc_list > li > a::before {
	width: 15px;
	height: 15px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: #000;	
}
#ac-post #toc_container .toc_list > li > a::after {
	left: 4px;
	width: 4px;
	height: 4px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);	
}
#ac-post #toc_container li ul li a::before {
  content: "\25B6";
  margin-right: 5px;
  font-size: 0.8rem;
}
#ac-post #toc_container p.toc_title {
  border-bottom: 1px solid #aaa;
  padding-bottom: 10px !important;
  padding-top: 5px !important;
}
#ac-post #toc_container {
  width: 90%;
}

/* bottom-margin */
.mb0 {margin-bottom:0;}
.mb5 {margin-bottom:5px;}
.mb10 {margin-bottom:10px;}
.mb15 {margin-bottom:15px;}
.mb20 {margin-bottom:20px;}
.mb25 {margin-bottom:25px;}
.mb30 {margin-bottom:30px;}
.mb35 {margin-bottom:35px;}
.mb40 {margin-bottom:40px;}
.mb45 {margin-bottom:45px;}
.mb50 {margin-bottom:50px;}
.mb60 {margin-bottom:60px;}
.mb80 {margin-bottom:80px;}


/* 目次プラグインスタイル */

.point_box {
	margin-top: 10px;
	margin-bottom: 30px;
	background-color: #fafaf5;
	border-radius: 10px;
	/* CSS3草案 */
	-webkit-border-radius: 10px;
	/* Safari,Google Chrome用 */
	-moz-border-radius: 10px;
	padding: 15px;
	color: #000;
  }
  
  
  #toc_container {
	padding: 10px 20px !important;
	margin-bottom: 80px !important;
	margin-top: 30px !important;
  }
  #toc_container a {
	font-weight: 400;
	font-size: 1.3rem;
	color: #000;
  }
  #toc_container a::before {
	margin-right: 6px;
	background-image: url("../_img/circle-nav.png");
	background-size: 15px 15px;
	display: inline-block;
	width: 15px;
	height: 15px;
	content: "";
	margin-bottom: -3px;
  }
  #toc_container li ul li a::before {
	content: "\25B6";
	margin-right: 0px;
	font-size: 0.8rem;
	background-image: none;
  }
  #toc_container p.toc_title {
	border-bottom: 1px solid #aaa;
	padding-bottom: 10px !important;
	padding-top: 5px !important;
  }
  #toc_container {
	width: 90%;
  }

  /* sp only, pc only */
  .pc-only{
	display: block;
  }
  .sp-only{
	display: none;
  }

  @media screen and (max-width:768px) {
	.pc-only{
		display: none;
	  }
	  .sp-only{
		display: block;
	  }
  }