@charset "UTF-8";
:root {
	--link-color: #305db3;
	--main-color: #ffe8d7;
	--key-color: #ff6b00;
	--title-color: #000000;
	--text-color: #222222;
}
/*--------------------------------
global selectors
---------------------------------*/
body {
	font-family: "Yu Gothic", YuGothic, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo;
	font-size: 16px;
	line-height: 1.8;
	letter-spacing: 0.02em;
	vertical-align: baseline;
	color: var(--text-color);
}
@media screen and (max-width: 768px) {
	body {
		font-size: 15px;
		line-height: 1.8;
	}
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
a {
	color: var(--link-color);
	text-decoration: underline;
}
.pc {
	display: block;
}
.sp {
	display: none;
}
@media (max-width: 768px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
}
.mt0 {
	margin-top: 0px !important;
}
.mb0 {
	margin-bottom: 0px !important;
}
.mb10 {
	margin-bottom: 10px !important;
}
.mb20 {
	margin-bottom: 20px !important;
}
.mb26 {
	margin-bottom: 26px !important;
}
.mbP { 
	margin-bottom: 14px !important; /*下余白14*/
} 
@media (max-width: 768px) {
	.mbP { 
	margin-bottom: 28px !important; /*下余白28*/
	}
}

p {
	margin-bottom: 10px;
}
.bold {
	font-size: 17px;
	font-weight: bold;
}
@media screen and (max-width: 768px) {
	.bold {
	font-size: 16px;	
	}
}

/*--------------------------------
Layout
---------------------------------*/
.container {
	max-width: 820px;
	margin: 0 auto;
	padding: 0 20px;
	overflow: hidden;
}

@media screen and (max-width: 768px) {
	.container {
		padding: 0 20px;
	}
}

@media screen and (max-width: 450px) {
	.container {
		padding: 0 10px;
	}
}

/*--------------------------------
header 
---------------------------------*/
.header {
	width: 100%;
	border-bottom: 2PX solid var(--key-color);	
	margin-bottom: 50px;
	padding: 0;
}
.header__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 820px;
	margin: 0 auto;
	padding: 46px 0;
}
.header__title {
	width: 690px;
}

@media screen and (max-width: 768px) {
.header {
	width: 100%;	
	margin: 0 auto 30px;
	}	
	.header__inner {
	padding: 50px 0;
	}
	.header__title {
	max-width: 80%;
	}
}

@media screen and (max-width: 450px) {
	.header__inner {
	padding: 30px 0;
	}
	.header__title {
	max-width: 86%;
	}
}

/*--------------------------------
section
---------------------------------*/
.section {
	padding: 0 0 50px;
}
.section__heading {
	margin: 0 auto 30px;
}
.section__body {
	padding: 0 10px 0;
}
.section__title-h2 {
	font-size: 26px;
	font-weight: bold;
	font-feature-settings: "palt";
	letter-spacing: 0.05em;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--title-color);
	background-color: var(--main-color);
	padding: 18px 24px;
}
.section__title-h3 {
	position: relative;
	font-size: 22px;
	font-feature-settings: "palt";
	font-weight: bold;
	color: var(--title-color);
	padding: 10px 20px;
	margin: 30px 0 14px;
}
.section__title-h3::before {
	position: absolute;
	content: "";
	background-color: var(--key-color);
	border-radius: 4px;
	display: block;
	top: 12%;
	left: 0;
	width: 8px;
	height: 70%;
	margin-right: 15px;
}
.target_blank {
	display: inline-block;
	font-size: 25px;
	color: var(--link-color);
	margin-bottom: 0;
}
.section__body ul {
	margin-bottom: 14px;
}
.section__body ul li {
	margin-bottom: 5px;
}
.section__body .tejyun_text {
	width: 300px;
}

@media screen and (max-width: 768px) {
	.section {
	padding: 0 0 40px;
	}
	.section__heading {
	margin: 0 auto 20px;
	}
	.section__body {
	padding: 0;
	}
	.section__title-h2 {
	font-size: 26px;
	line-height: 1.3;
	padding: 10px 14px;
	}
	.section__title-h3 {
	font-size: 22px;
	line-height: 1;
	letter-spacing: 0.08em;
	padding: 8px 15px;
	margin-bottom: 12px;
	}
	.section__title-h3::before {
	border-radius: 4px;
	width: 6px;
	height: 80%;
	top: 8%;
	margin-right: 15px;
	}
}
@media screen and (max-width: 450px) {
	.section {
	padding: 0 0 30px;
	}
	.section__body {
	padding: 0;
	}
	.section__title-h2 {
	font-size: 20px;
	font-feature-settings: "palt";
	line-height: 1.3;
	padding: 10px 14px;
	}
	.section__title-h3 {
	font-size: 19px;
	line-height: 1;
	letter-spacing: 0.03em;
	padding: 8px 15px;
	margin-bottom: 12px;
	}
	.section__title-h3::before {
	border-radius: 4px;
	width: 6px;
	height: 80%;
	top: 8%;
	margin-right: 15px;
	}
}

.bnr_area {
	text-align: center;
	margin: 30px auto 10px;
}
@media screen and (max-width: 768px) {
	.bnr_area {
		margin: 20px auto 10px;
	}
}

.indent li {
	text-indent: -1em;
	margin-left: 1em;
}


/*--------------------------------
caption
---------------------------------*/
.caption_img_01 {
  display: inline-block;
	width: 300px;	
	box-sizing: content-box;
	overflow: hidden;	
	float: right;
	padding: 0 0 0 30px;
}
.caption_img_02 {
  display: inline-block;
	width: 390px;	
	box-sizing: content-box;
	overflow: hidden;	
	float: right;
	padding: 0 0 0 30px;
}
.caption_img_01 img, 
.caption_img_02 img {
	border: 1px solid #acacac;
}
.new_caption_text {
	font-size: 14px;
}

@media screen and (max-width: 768px) {
	.caption_img_01 {
	width: 40%;
	margin: 0 auto 10px;
	padding: 0 0 20px 20px;
	}	
	.caption_img_02 {
	width: 100%;
	margin: 0 auto 10px;
	padding: 0 0 20px 20px;
	}		
	.caption_img_01 img,
	.caption_img_02 img　{
	width: 100%;	
	}
}

@media screen and (max-width: 450px) {
	.caption_img_01 {
	width: 100%;
	float: none;
	text-align: center;
	margin: 0 auto 10px;
	padding: 0;	
	}	
	.caption_img_02 {
	width: 100%;
	float: none;
	margin: 0 auto 10px;
	padding: 0;	
	}		
	.caption_img_01 img {
	width: 50%;
	}
	.caption_img_02 img {
	width: 100%;
	}
	.new_caption_text {
	display: block;
	}
}

/*--------------------------------
target_link
---------------------------------*/
.target_link {
	
}
.target_link a {
	word-break: break-all;
	text-decoration: underline;
}
.end_icon {
	display: inline-block;
	line-height: 1;
	width: 16px;
	height: 16px;
	margin-left: 4px;
}

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

}

/*--------------------------------
nichibun-site_link
---------------------------------*/
.nichibun-site_link {
	margin-top: 70px;
}
.nichibun-site_link ul {
	display: flex;
	justify-content: center;
	column-gap: 30px;
}
.nichibun-site_link ul:first-child {
	margin-top: 80px;
	margin-bottom: 16px;
}
.nichibun-site_link ul li {
	font-size: 14px;
}
.nichibun-site_link .end_icon {
	width: 16px;
	height: 16px;
}
.nichibun-site_link .arrow-left_icon {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin: 0 2px;
  border-left: 3px solid #fe6c26;
  border-bottom: 3px solid #fe6c26;
  transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
	.nichibun-site_link {
	margin-top: 40px;
	}
	.nichibun-site_link ul {
	column-gap: 20px;
	}
	.nichibun-site_link ul li {
	font-size: 14px;
	}
	.nichibun-site_link .end_icon {
	width: 15px;
	height: 15px;
	margin-left: 4px;
	}
}


/*--------------------------------
footer
---------------------------------*/
.footer {
	width: 100%;
	border-top: 2PX solid var(--key-color);		
	margin-top: 40px;
}
.footer__inner {
	max-width: 820px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--title-color);
	padding: 30px 20px;
	margin: 0 auto;
}
.footer__copyright {
	font-size: 12px;
	letter-spacing: 0.05em;
}
.footer__logo {
	width: 160px;
	margin-bottom: 6px;
}

@media screen and (max-width: 768px) {
	.footer {
	margin-top: 60px;
	}
	.footer__inner {
	flex-direction: column-reverse;
	flex-wrap: wrap-reverse;
	text-align: center;
	padding: 30px 10px 32px;
	}
	.footer__logo {
	margin-bottom: 12px;
	}
	.footer__copyright {
	font-size: 11px;
	letter-spacing: 0.02em;
	line-height: 1.3;
	}
}

@media screen and (max-width: 450px) {
	.footer {
	margin-top: 20px;
	}
	.footer__inner {
	padding: 16px 10px 20px;
	}
	.footer__copyright {
	font-size: 10px;
	letter-spacing: 0.01em;
	}
}

/*--------------------------------
page top
---------------------------------*/
.page-top {
  display: none;
  position: fixed;
  right: 60px;
  bottom: 70px;
  z-index: 1;
}
.page-top__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s;
  border-radius: 50%;
  background-color: var(--key-color);
  cursor: pointer;
}
.page-top__icon {
  font-size: 40px;
}
.page-top__link:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .page-top {
  right: 20px;
  bottom: 100px;
  }
  .page-top__link {
  width: 50px;
  height: 50px;
  }
  .page-top__icon {
  font-size: 24px;
  }
}

@media screen and (max-width: 450px) {
  .page-top {
  right: 10px;
  bottom: 38px;
  }
}



