@charset "UTF-8";

/*
Theme Name: obu-ulala_blog
*/


/************************************
header
************************************/
@media screen and (min-width: 1200px) {
	header {
		box-sizing: border-box;
		background: #f2f6fa;
		border-top: 13px solid #00489d;
		width: 100%;
		height: 293px;
		padding-top: 50px;
	}
	
	header h1 {
		width: 210px;
		height: 140px;
		margin: 0 auto 20px;
	}
	
	header h2 {
		color: #595641;
		font-size: 37px;
		line-height: 1em;
		font-weight: 600;
		text-align: center;
		width: 100%;
	}
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
	header {
		box-sizing: border-box;
		background: #f2f6fa;
		border-top: calc(13vw / var(--tablet)) solid #00489d;
		width: 100%;
		height: calc(293vw / var(--tablet));
		padding-top: calc(50vw / var(--tablet));
	}
	
	header h1 {
		width: calc(210vw / var(--tablet));
		height: calc(140vw / var(--tablet));
		margin: 0 auto calc(20vw / var(--tablet));
	}
	
	header h2 {
		color: #595641;
		font-size: calc(37vw / var(--tablet));
		line-height: 1em;
		font-weight: 600;
		text-align: center;
		width: 100%;
	}
}

@media screen and (max-width: 767px) {
	header {
		box-sizing: border-box;
		background: #f2f6fa;
		border-top: calc(13vw / var(--sp)) solid #00489d;
		width: 100%;
		height: calc(293vw / var(--sp));
		padding-top: calc(50vw / var(--sp));
	}
	
	header h1 {
		width: calc(210vw / var(--sp));
		height: calc(140vw / var(--sp));
		margin: 0 auto calc(20vw / var(--sp));
	}
	
	header h2 {
		color: #595641;
		font-size: calc(37vw / var(--sp));
		line-height: 1em;
		font-weight: 600;
		text-align: center;
		width: 100%;
	}
}


/************************************
#blog_top
************************************/
@media screen and (min-width: 1200px) {
	#blog_top {
		box-sizing: border-box;
		width: 1000px;
		padding: 0 0 40px 300px;
		margin: 0 auto;
	}
	
	#blog_top>ul {
		display: flex;
		flex-direction: column;
		width: 100%;
	}
	
	#blog_top>ul li {
		border-bottom: 1px solid #d8d8d8;
		padding: 50px 0;
	}
	
	#blog_top>ul li a {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		width: 100%;
		height: 100%;
	}
	
	#blog_top>ul li a .thumbnail {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	#blog_top>ul li a .thumbnail img {
		object-fit: cover;
		width: 200px;
		height: 200px;
	}
	
	#blog_top>ul li a .text {
		position: relative;
		width: 470px;
	}
	
	#blog_top>ul li a .text .date {
		color: #00489d;
		font-size: 14px;
		line-height: 1em;
		font-weight: 600;
		text-align: left;
		width: 100%;
		margin-bottom: 15px;
	}
	
	#blog_top>ul li a .text h3 {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		color: #3c3c3c;
		font-size: 16px;
		line-height: 1em;
		font-weight: 600;
		text-align: left;
		width: 100%;
		margin-bottom: 10px;
	}
	
	#blog_top>ul li a .text .description {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		color: #3c3c3c;
		font-size: 14px;
		line-height: 24px;
		font-weight: 400;
		text-align: justify;
		width: 100%;
	}
	
	#blog_top>ul li a .text .readmore {
		position: absolute;
		background: #5db6e7;
		color: #ffffff;
		font-size: 12px;
		line-height: 27px;
		font-weight: 400;
		text-align: center;
		text-decoration: underline;
		border-radius: 6px;
		width: 100px;
		height: 27px;
		bottom: 0;
		left: 0;
	}
	
	#blog_top .navigation {
		border-bottom: 1px solid #d8d8d8;
		width: 100%;
		padding: 20px 0;
	}
	
	#blog_top .navigation .nav-links {
		display: flex;
		justify-content: center;
		gap: 0 12px;
		width: 100%;
	}
	
	#blog_top .navigation .nav-links .page-numbers {
		display: flex;
		justify-content: center;
		align-items: center;
		box-sizing: border-box;
		background: #ebebeb;
		color: #322323;
		font-size: 16px;
		line-height: 28px;
		font-weight: 600;
		text-align: center;
		border: 2px solid #ebebeb;
		border-radius: 4px;
		width: 28px;
		height: 28px;
	}
	
	#blog_top .navigation .nav-links .page-numbers.current, #blog_top .navigation .nav-links a.page-numbers:hover {
		background: #ffffff;
	}
	
	#blog_top .navigation .nav-links .page-numbers.dots, #blog_top .navigation .nav-links .page-numbers.prev, #blog_top .navigation .nav-links .page-numbers.next {
		background: transparent;
		border: none;
	}
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
	#blog_top {
		box-sizing: border-box;
		width: calc(1000vw / var(--tablet));
		padding: 0 0 calc(40vw / var(--tablet)) calc(300vw / var(--tablet));
		margin: 0 auto;
	}
	
	#blog_top>ul {
		display: flex;
		flex-direction: column;
		width: 100%;
	}
	
	#blog_top>ul li {
		border-bottom: calc(1vw / var(--tablet)) solid #d8d8d8;
		padding: calc(50vw / var(--tablet)) 0;
	}
	
	#blog_top>ul li a {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		width: 100%;
		height: 100%;
	}
	
	#blog_top>ul li a .thumbnail {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	#blog_top>ul li a .thumbnail img {
		object-fit: cover;
		width: calc(200vw / var(--tablet));
		height: calc(200vw / var(--tablet));
	}
	
	#blog_top>ul li a .text {
		position: relative;
		width: calc(470vw / var(--tablet));
	}
	
	#blog_top>ul li a .text .date {
		color: #00489d;
		font-size: calc(14vw / var(--tablet));
		line-height: 1em;
		font-weight: 600;
		text-align: left;
		width: 100%;
		margin-bottom: calc(15vw / var(--tablet));
	}
	
	#blog_top>ul li a .text h3 {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		color: #3c3c3c;
		font-size: calc(16vw / var(--tablet));
		line-height: 1em;
		font-weight: 600;
		text-align: left;
		width: 100%;
		margin-bottom: calc(10vw / var(--tablet));
	}
	
	#blog_top>ul li a .text .description {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		color: #3c3c3c;
		font-size: calc(14vw / var(--tablet));
		line-height: calc(24vw / var(--tablet));
		font-weight: 400;
		text-align: justify;
		width: 100%;
	}
	
	#blog_top>ul li a .text .readmore {
		position: absolute;
		background: #5db6e7;
		color: #ffffff;
		font-size: calc(12vw / var(--tablet));
		line-height: calc(27vw / var(--tablet));
		font-weight: 400;
		text-align: center;
		text-decoration: underline;
		border-radius: calc(6vw / var(--tablet));
		width: calc(100vw / var(--tablet));
		height: calc(27vw / var(--tablet));
		bottom: 0;
		left: 0;
	}
	
	#blog_top .navigation {
		border-bottom: calc(1vw / var(--tablet)) solid #d8d8d8;
		width: 100%;
		padding: calc(20vw / var(--tablet)) 0;
	}
	
	#blog_top .navigation .nav-links {
		display: flex;
		justify-content: center;
		gap: 0 calc(12vw / var(--tablet));
		width: 100%;
	}
	
	#blog_top .navigation .nav-links .page-numbers {
		display: flex;
		justify-content: center;
		align-items: center;
		box-sizing: border-box;
		background: #ebebeb;
		color: #322323;
		font-size: calc(16vw / var(--tablet));
		line-height: calc(28vw / var(--tablet));
		font-weight: 600;
		text-align: center;
		border: calc(2vw / var(--tablet)) solid #ebebeb;
		border-radius: calc(4vw / var(--tablet));
		width: calc(28vw / var(--tablet));
		height: calc(28vw / var(--tablet));
	}
	
	#blog_top .navigation .nav-links .page-numbers.current, #blog_top .navigation .nav-links a.page-numbers:hover {
		background: #ffffff;
	}
	
	#blog_top .navigation .nav-links .page-numbers.dots, #blog_top .navigation .nav-links .page-numbers.prev, #blog_top .navigation .nav-links .page-numbers.next {
		background: transparent;
		border: none;
	}
}

@media screen and (max-width: 767px) {
	#blog_top {
		box-sizing: border-box;
		width: calc(340vw / var(--sp));
		padding: calc(30vw / var(--sp)) 0 calc(10vw / var(--sp));
		margin: 0 auto;
	}
	
	#blog_top>ul {
		display: flex;
		flex-direction: column;
		width: 100%;
	}
	
	#blog_top>ul li {
		border-bottom: calc(1vw / var(--sp)) solid #d8d8d8;
		padding: calc(20vw / var(--sp)) 0;
	}
	
	#blog_top>ul li a {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		width: 100%;
		height: 100%;
	}
	
	#blog_top>ul li a .thumbnail {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	#blog_top>ul li a .thumbnail img {
		object-fit: cover;
		width: calc(140vw / var(--sp));
		height: calc(140vw / var(--sp));
	}
	
	#blog_top>ul li a .text {
		position: relative;
		width: calc(185vw / var(--sp));
	}
	
	#blog_top>ul li a .text .date {
		color: #00489d;
		font-size: calc(14vw / var(--sp));
		line-height: 1em;
		font-weight: 600;
		text-align: left;
		width: 100%;
		margin-bottom: calc(15vw / var(--sp));
	}
	
	#blog_top>ul li a .text h3 {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		color: #3c3c3c;
		font-size: calc(16vw / var(--sp));
		line-height: 1em;
		font-weight: 600;
		text-align: left;
		width: 100%;
		margin-bottom: calc(10vw / var(--sp));
	}
	
	#blog_top>ul li a .text .description {
		display: -webkit-box;
		overflow: hidden;
		-webkit-box-orient: vertical;
		text-overflow: ellipsis;
		-webkit-line-clamp: 2;
		color: #3c3c3c;
		font-size: calc(14vw / var(--sp));
		line-height: calc(24vw / var(--sp));
		font-weight: 400;
		text-align: justify;
		width: 100%;
	}
	
	#blog_top>ul li a .text .readmore {
		position: absolute;
		background: #5db6e7;
		color: #ffffff;
		font-size: calc(12vw / var(--sp));
		line-height: calc(27vw / var(--sp));
		font-weight: 400;
		text-align: center;
		text-decoration: underline;
		border-radius: calc(6vw / var(--sp));
		width: calc(100vw / var(--sp));
		height: calc(27vw / var(--sp));
		bottom: 0;
		left: 0;
	}
	
	#blog_top .navigation {
		border-bottom: calc(1vw / var(--sp)) solid #d8d8d8;
		width: 100%;
		padding: calc(20vw / var(--sp)) 0;
	}
	
	#blog_top .navigation .nav-links {
		display: flex;
		justify-content: center;
		gap: 0 calc(12vw / var(--sp));
		width: 100%;
	}
	
	#blog_top .navigation .nav-links .page-numbers {
		display: flex;
		justify-content: center;
		align-items: center;
		box-sizing: border-box;
		background: #ebebeb;
		color: #322323;
		font-size: calc(16vw / var(--sp));
		line-height: calc(28vw / var(--sp));
		font-weight: 600;
		text-align: center;
		border: calc(2vw / var(--sp)) solid #ebebeb;
		border-radius: calc(4vw / var(--sp));
		width: calc(28vw / var(--sp));
		height: calc(28vw / var(--sp));
	}
	
	#blog_top .navigation .nav-links .page-numbers.current, #blog_top .navigation .nav-links a.page-numbers:hover {
		background: #ffffff;
	}
	
	#blog_top .navigation .nav-links .page-numbers.dots, #blog_top .navigation .nav-links .page-numbers.prev, #blog_top .navigation .nav-links .page-numbers.next {
		background: transparent;
		border: none;
	}
}


/************************************
#blog_sidebar
************************************/
@media screen and (min-width: 1200px) {
	#blog_sidebar {
		position: absolute;
		width: 260px;
		top: 60px;
		left: calc(50% - 500px);
	}
	
	#blog_sidebar .posts.newposts {
		margin-bottom: 30px;
	}
	
	#blog_sidebar .posts h3 {
		background: #00489d;
		color: #ffffff;
		font-size: 18px;
		line-height: 60px;
		font-weight: 600;
		text-align: center;
		border-radius: 6px;
		width: 100%;
		height: 60px;
		margin-bottom: 5px;
	}
	
	#blog_sidebar .posts ul {
		box-sizing: border-box;
		background: #ffffff;
		border: 2px solid #f2f6fa;
		border-radius: 6px;
		width: 100%;
		padding-bottom: 30px;
	}
	
	#blog_sidebar .posts.monthlyposts ul {
		padding-top: 10px;
	}
	
	#blog_sidebar .posts.newposts ul li {
		border-bottom: 1px solid #d8d8d8;
		width: 200px;
		padding: 30px 0;
		margin: 0 auto;
	}
	
	#blog_sidebar .posts.newposts ul li a {
		width: 100%;
	}
	
	#blog_sidebar .posts.newposts ul li a .date {
		color: #00489d;
		font-size: 14px;
		line-height: 1em;
		font-weight: 600;
		text-align: left;
		width: 100%;
		margin-bottom: 15px;
	}
	
	#blog_sidebar .posts.newposts ul li a h4 {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		color: #3c3c3c;
		font-size: 16px;
		line-height: 1em;
		font-weight: 600;
		text-align: left;
		width: 100%;
	}
	
	#blog_sidebar .posts.monthlyposts ul li {
		border-bottom: 1px solid #d8d8d8;
		width: 200px;
		padding: 20px 0;
		margin: 0 auto;
	}
	
	#blog_sidebar .posts.monthlyposts ul li a {
		display: block;
		color: #3c3c3c;
		font-size: 16px;
		line-height: 1em;
		font-weight: 400;
		text-align: left;
		text-decoration: underline;
		width: 100%;
	}
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
	#blog_sidebar {
		position: absolute;
		width: calc(260vw / var(--tablet));
		top: calc(60vw / var(--tablet));
		left: calc(50% - (500vw / var(--tablet)));
	}
	
	#blog_sidebar .posts.newposts {
		margin-bottom: calc(30vw / var(--tablet));
	}
	
	#blog_sidebar .posts h3 {
		background: #00489d;
		color: #ffffff;
		font-size: calc(18vw / var(--tablet));
		line-height: calc(60vw / var(--tablet));
		font-weight: 600;
		text-align: center;
		border-radius: calc(6vw / var(--tablet));
		width: 100%;
		height: calc(60vw / var(--tablet));
		margin-bottom: calc(5vw / var(--tablet));
	}
	
	#blog_sidebar .posts ul {
		box-sizing: border-box;
		background: #ffffff;
		border: calc(2vw / var(--tablet)) solid #f2f6fa;
		border-radius: calc(6vw / var(--tablet));
		width: 100%;
		padding-bottom: calc(30vw / var(--tablet));
	}
	
	#blog_sidebar .posts.monthlyposts ul {
		padding-top: calc(10vw / var(--tablet));
	}
	
	#blog_sidebar .posts.newposts ul li {
		border-bottom: calc(1vw / var(--tablet)) solid #d8d8d8;
		width: calc(200vw / var(--tablet));
		padding: calc(30vw / var(--tablet)) 0;
		margin: 0 auto;
	}
	
	#blog_sidebar .posts.newposts ul li a {
		width: 100%;
	}
	
	#blog_sidebar .posts.newposts ul li a .date {
		color: #00489d;
		font-size: calc(14vw / var(--tablet));
		line-height: 1em;
		font-weight: 600;
		text-align: left;
		width: 100%;
		margin-bottom: calc(15vw / var(--tablet));
	}
	
	#blog_sidebar .posts.newposts ul li a h4 {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		color: #3c3c3c;
		font-size: calc(16vw / var(--tablet));
		line-height: 1em;
		font-weight: 600;
		text-align: left;
		width: 100%;
	}
	
	#blog_sidebar .posts.monthlyposts ul li {
		border-bottom: calc(1vw / var(--tablet)) solid #d8d8d8;
		width: calc(200vw / var(--tablet));
		padding: calc(20vw / var(--tablet)) 0;
		margin: 0 auto;
	}
	
	#blog_sidebar .posts.monthlyposts ul li a {
		display: block;
		color: #3c3c3c;
		font-size: calc(16vw / var(--tablet));
		line-height: 1em;
		font-weight: 400;
		text-align: left;
		text-decoration: underline;
		width: 100%;
	}
}

@media screen and (max-width: 767px) {
	#blog_sidebar {
		width: calc(340vw / var(--sp));
		margin: 0 auto;
	}
	
	#blog_sidebar .posts.newposts {
		margin-bottom: calc(30vw / var(--sp));
	}
	
	#blog_sidebar .posts h3 {
		background: #00489d;
		color: #ffffff;
		font-size: calc(18vw / var(--sp));
		line-height: calc(60vw / var(--sp));
		font-weight: 600;
		text-align: center;
		border-radius: calc(6vw / var(--sp));
		width: 100%;
		height: calc(60vw / var(--sp));
		margin-bottom: calc(5vw / var(--sp));
	}
	
	#blog_sidebar .posts ul {
		box-sizing: border-box;
		background: #ffffff;
		border: calc(2vw / var(--sp)) solid #f2f6fa;
		border-radius: calc(6vw / var(--sp));
		width: 100%;
		padding-bottom: calc(30vw / var(--sp));
	}
	
	#blog_sidebar .posts.monthlyposts ul {
		padding-top: calc(15vw / var(--sp));
	}
	
	#blog_sidebar .posts.newposts ul li {
		border-bottom: calc(1vw / var(--sp)) solid #d8d8d8;
		width: calc(278vw / var(--sp));
		padding: calc(30vw / var(--sp)) 0;
		margin: 0 auto;
	}
	
	#blog_sidebar .posts.newposts ul li a {
		width: 100%;
	}
	
	#blog_sidebar .posts.newposts ul li a .date {
		color: #00489d;
		font-size: calc(14vw / var(--sp));
		line-height: 1em;
		font-weight: 600;
		text-align: left;
		width: 100%;
		margin-bottom: calc(15vw / var(--sp));
	}
	
	#blog_sidebar .posts.newposts ul li a h4 {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		color: #3c3c3c;
		font-size: calc(16vw / var(--sp));
		line-height: 1em;
		font-weight: 600;
		text-align: left;
		width: 100%;
	}
	
	#blog_sidebar .posts.monthlyposts ul li {
		border-bottom: calc(1vw / var(--sp)) solid #d8d8d8;
		width: calc(278vw / var(--sp));
		padding: calc(15vw / var(--sp)) 0;
		margin: 0 auto;
	}
	
	#blog_sidebar .posts.monthlyposts ul li a {
		display: block;
		color: #3c3c3c;
		font-size: calc(16vw / var(--sp));
		line-height: 1em;
		font-weight: 400;
		text-align: left;
		text-decoration: underline;
		width: 100%;
	}
}


/************************************
#blog_posts
************************************/
@media screen and (min-width: 1200px) {
	#blog_posts {
		box-sizing: border-box;
		width: 1000px;
		padding: 50px 0 60px 300px;
		margin: 0 auto;
	}
	
	#blog_posts .date {
		color: #00489d;
		font-size: 14px;
		line-height: 1em;
		font-weight: 600;
		text-align: left;
		width: 100%;
		margin-bottom: 15px;
	}
	
	#blog_posts h3 {
		box-sizing: border-box;
		background: #00489d;
		color: #ffffff;
		font-size: 18px;
		line-height: 60px;
		font-weight: 600;
		text-align: left;
		border-radius: 6px;
		width: 100%;
		height: 60px;
		padding: 0 10px;
		margin-bottom: 30px;
	}
	
	#blog_posts .content {
		width: 100%;
		margin-bottom: 45px;
	}
	
	#blog_posts .content p {
		color: #3c3c3c;
		font-size: 16px;
		line-height: 26px;
		font-weight: 400;
		text-align: justify;
		width: 100%;
		margin-bottom: 26px;
	}
	
	#blog_posts .content p:last-child {
		margin-bottom: 0;
	}
	
	#blog_posts .content p img {
		max-width: 100%;
	}
	
	#blog_posts .other_posts {
		position: relative;
		box-sizing: border-box;
		border-top: 1px solid #d8d8d8;
		border-bottom: 1px solid #d8d8d8;
		width: 100%;
		height: 70px;
	}
	
	#blog_posts .other_posts li {
		display: table;
		position: absolute;
	}
	
	#blog_posts .other_posts li.prev {
		top: 50%;
		left: 0;
		transform: translateY(-50%);
	}
	
	#blog_posts .other_posts li.top {
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	
	#blog_posts .other_posts li.next {
		top: 50%;
		right: 0;
		transform: translateY(-50%);
	}
	
	#blog_posts .other_posts li a {
		color: #3c3c3c;
		font-size: 16px;
		line-height: 1em;
		font-weight: 400;
		text-decoration: underline;
	}
	
	#blog_posts .other_posts li.prev a {
		text-align: left;
	}
	
	#blog_posts .other_posts li.top a {
		text-align: center;
	}
	
	#blog_posts .other_posts li.next a {
		text-align: right;
	}
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
	#blog_posts {
		box-sizing: border-box;
		width: calc(1000vw / var(--tablet));
		padding: calc(50vw / var(--tablet)) 0 calc(60vw / var(--tablet)) calc(300vw / var(--tablet));
		margin: 0 auto;
	}
	
	#blog_posts .date {
		color: #00489d;
		font-size: calc(14vw / var(--tablet));
		line-height: 1em;
		font-weight: 600;
		text-align: left;
		width: 100%;
		margin-bottom: calc(15vw / var(--tablet));
	}
	
	#blog_posts h3 {
		box-sizing: border-box;
		background: #00489d;
		color: #ffffff;
		font-size: calc(18vw / var(--tablet));
		line-height: calc(60vw / var(--tablet));
		font-weight: 600;
		text-align: left;
		border-radius: calc(6vw / var(--tablet));
		width: 100%;
		height: calc(60vw / var(--tablet));
		padding: 0 calc(10vw / var(--tablet));
		margin-bottom: calc(30vw / var(--tablet));
	}
	
	#blog_posts .content {
		width: 100%;
		margin-bottom: calc(45vw / var(--tablet));
	}
	
	#blog_posts .content p {
		color: #3c3c3c;
		font-size: calc(16vw / var(--tablet));
		line-height: calc(26vw / var(--tablet));
		font-weight: 400;
		text-align: justify;
		width: 100%;
		margin-bottom: calc(26vw / var(--tablet));
	}
	
	#blog_posts .content p:last-child {
		margin-bottom: 0;
	}
	
	#blog_posts .content p img {
		max-width: 100%;
	}
	
	#blog_posts .other_posts {
		position: relative;
		box-sizing: border-box;
		border-top: calc(1vw / var(--tablet)) solid #d8d8d8;
		border-bottom: calc(1vw / var(--tablet)) solid #d8d8d8;
		width: 100%;
		height: calc(70vw / var(--tablet));
	}
	
	#blog_posts .other_posts li {
		display: table;
		position: absolute;
	}
	
	#blog_posts .other_posts li.prev {
		top: 50%;
		left: 0;
		transform: translateY(-50%);
	}
	
	#blog_posts .other_posts li.top {
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	
	#blog_posts .other_posts li.next {
		top: 50%;
		right: 0;
		transform: translateY(-50%);
	}
	
	#blog_posts .other_posts li a {
		color: #3c3c3c;
		font-size: calc(16vw / var(--tablet));
		line-height: 1em;
		font-weight: 400;
		text-decoration: underline;
	}
	
	#blog_posts .other_posts li.prev a {
		text-align: left;
	}
	
	#blog_posts .other_posts li.top a {
		text-align: center;
	}
	
	#blog_posts .other_posts li.next a {
		text-align: right;
	}
}

@media screen and (max-width: 767px) {
	#blog_posts {
		width: calc(340vw / var(--sp));
		padding: calc(50vw / var(--sp)) 0;
		margin: 0 auto;
	}
	
	#blog_posts .date {
		color: #00489d;
		font-size: calc(14vw / var(--sp));
		line-height: 1em;
		font-weight: 600;
		text-align: left;
		width: 100%;
		margin-bottom: calc(10vw / var(--sp));
	}
	
	#blog_posts h3 {
		box-sizing: border-box;
		background: #00489d;
		color: #ffffff;
		font-size: calc(18vw / var(--sp));
		line-height: calc(60vw / var(--sp));
		font-weight: 600;
		text-align: left;
		border-radius: calc(6vw / var(--sp));
		width: 100%;
		height: calc(60vw / var(--sp));
		padding: 0 calc(10vw / var(--sp));
		margin-bottom: calc(30vw / var(--sp));
	}
	
	#blog_posts .content {
		width: 100%;
		margin-bottom: calc(45vw / var(--sp));
	}
	
	#blog_posts .content p {
		color: #3c3c3c;
		font-size: calc(16vw / var(--sp));
		line-height: calc(26vw / var(--sp));
		font-weight: 400;
		text-align: justify;
		width: 100%;
		margin-bottom: calc(26vw / var(--sp));
	}
	
	#blog_posts .content p:last-child {
		margin-bottom: 0;
	}
	
	#blog_posts .content p img {
		max-width: 100%;
	}
	
	#blog_posts .other_posts {
		position: relative;
		box-sizing: border-box;
		border-top: calc(1vw / var(--sp)) solid #d8d8d8;
		border-bottom: calc(1vw / var(--sp)) solid #d8d8d8;
		width: 100%;
		height: calc(70vw / var(--sp));
	}
	
	#blog_posts .other_posts li {
		display: table;
		position: absolute;
	}
	
	#blog_posts .other_posts li.prev {
		top: 50%;
		left: 0;
		transform: translateY(-50%);
	}
	
	#blog_posts .other_posts li.top {
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	
	#blog_posts .other_posts li.next {
		top: 50%;
		right: 0;
		transform: translateY(-50%);
	}
	
	#blog_posts .other_posts li a {
		color: #3c3c3c;
		font-size: calc(16vw / var(--sp));
		line-height: 1em;
		font-weight: 400;
		text-decoration: underline;
	}
	
	#blog_posts .other_posts li.prev a {
		text-align: left;
	}
	
	#blog_posts .other_posts li.top a {
		text-align: center;
	}
	
	#blog_posts .other_posts li.next a {
		text-align: right;
	}
}


/************************************
#notfound
************************************/
@media screen and (min-width: 1200px) {
	#notfound {
		width: 100%;
		padding: 100px 0 60px;
	}
	
	#notfound h3 {
		color: #00489d;
		font-size: 18px;
		line-height: 1em;
		font-weight: 600;
		text-align: center;
		width: 100%;
		margin-bottom: 30px;
	}
	
	#notfound p {
		color: #3c3c3c;
		font-size: 16px;
		line-height: 1em;
		font-weight: 400;
		text-align: center;
		width: 100%;
		margin-bottom: 100px;
	}
	
	#notfound .other_posts {
		position: relative;
		box-sizing: border-box;
		border-top: 1px solid #d8d8d8;
		border-bottom: 1px solid #d8d8d8;
		width: 1000px;
		height: 70px;
		margin: 0 auto;
	}
	
	#notfound .other_posts li.top {
		display: table;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	
	#notfound .other_posts li a {
		color: #3c3c3c;
		font-size: 16px;
		line-height: 1em;
		font-weight: 400;
		text-align: center;
		text-decoration: underline;
	}
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
	#notfound {
		width: 100%;
		padding: calc(100vw / var(--tablet)) 0 calc(60vw / var(--tablet));
	}
	
	#notfound h3 {
		color: #00489d;
		font-size: calc(18vw / var(--tablet));
		line-height: 1em;
		font-weight: 600;
		text-align: center;
		width: 100%;
		margin-bottom: calc(30vw / var(--tablet));
	}
	
	#notfound p {
		color: #3c3c3c;
		font-size: calc(16vw / var(--tablet));
		line-height: 1em;
		font-weight: 400;
		text-align: center;
		width: 100%;
		margin-bottom: calc(100vw / var(--tablet));
	}
	
	#notfound .other_posts {
		position: relative;
		box-sizing: border-box;
		border-top: calc(1vw / var(--tablet)) solid #d8d8d8;
		border-bottom: calc(1vw / var(--tablet)) solid #d8d8d8;
		width: calc(1000vw / var(--tablet));
		height: calc(70vw / var(--tablet));
		margin: 0 auto;
	}
	
	#notfound .other_posts li.top {
		display: table;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	
	#notfound .other_posts li a {
		color: #3c3c3c;
		font-size: calc(16vw / var(--tablet));
		line-height: 1em;
		font-weight: 400;
		text-align: center;
		text-decoration: underline;
	}
}

@media screen and (max-width: 767px) {
	#notfound {
		width: 100%;
		padding: calc(100vw / var(--sp)) 0 calc(50vw / var(--sp));
	}
	
	#notfound h3 {
		color: #00489d;
		font-size: calc(18vw / var(--sp));
		line-height: 1em;
		font-weight: 600;
		text-align: center;
		width: 100%;
		margin-bottom: calc(30vw / var(--sp));
	}
	
	#notfound p {
		color: #3c3c3c;
		font-size: calc(16vw / var(--sp));
		line-height: 1em;
		font-weight: 400;
		text-align: center;
		width: 100%;
		margin-bottom: calc(100vw / var(--sp));
	}
	
	#notfound .other_posts {
		position: relative;
		box-sizing: border-box;
		border-top: calc(1vw / var(--sp)) solid #d8d8d8;
		border-bottom: calc(1vw / var(--sp)) solid #d8d8d8;
		width: calc(340vw / var(--sp));
		height: calc(70vw / var(--sp));
		margin: 0 auto;
	}
	
	#notfound .other_posts li.top {
		display: table;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	
	#notfound .other_posts li a {
		color: #3c3c3c;
		font-size: calc(16vw / var(--sp));
		line-height: 1em;
		font-weight: 400;
		text-align: center;
		text-decoration: underline;
	}
}