@charset "utf-8";

/*----------------------------------------------------------------------------
　reset
-----------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  font-weight:normal;
  vertical-align: baseline;
  box-sizing: border-box;
}
body {
  line-height:1;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
table, tr, th, td, caption {
  vertical-align: middle;
  text-align: left;
}
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
	width: 100%;
}
textarea {
	vertical-align: top;
}



/*----------------------------------------------------------------------------
　Base
-----------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #333;
  font-size: 1.5rem;
  font-family: 'Noto Sans JP', sans-serif;
	-webkit-text-size-adjust: none;
	word-break: break-word;
	word-wrap: break-word;
	overflow-wrap: break-word;
	overflow-x: hidden;
}

a {
	color: #333;
  text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha(opacity=60)";
}

img {
	max-width: 100%;
	width: 100%;
	height: auto;
}

strong {
	font-weight: bold;
}

body, html {
	height: 100%;
}

.fl {
  float: left;
}
.fr {
  float: right;
}

.sp_br {
	display: none;
}
.pc_br {
	display: block;
}

.sp_only {
  display: none;
}
.pc_only {
  display: block;
}

.cf:after {
  content: "";
  clear: both;
  display: block;
}

.wh {
  color: #fff;
}

.fb {
  font-weight: bold;
}
.fb span {
  font-weight: bold;
}

@media screen and (max-width: 768px) {
	a:hover {
		opacity: 1;
		filter: alpha(opacity=100);
		-ms-filter: "alpha(opacity=100)";
	}
	
	.sp_br {
		display: block;
	}
	.pc_br {
		display: none;
	}

	.sp_only {
		display: block;
	}
	.pc_only {
		display: none;
	}
}



/*--------------------------------------
　Header
---------------------------------------*/


/*--------------------------------------
　Footer
---------------------------------------*/
.l-footer-area {
	background: #fff;
	width: 100%;
	padding: 40px 0;
}
.f_inner {
	max-width: 1092px;
	margin: auto;
	box-sizing: border-box;
}
.l-footer-area .wrap_01 {
	display: flex;
	justify-content: space-between;
	padding-top: 40px;
}
.l-footer-area .sns_box {
	display: flex;
	align-items: center;
	margin-top: 12px;
}
.l-footer-area .sns_box a {
	display: block;
	margin-right: 12px;
}
.l-footer-area .sns_box a:first-child {
	margin-right: 18px;
}
.l-footer-area .right  {
	text-align: right;
}
.l-footer-area .right .txt_01  {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
}
.l-footer-area .right .copy  {
	margin-top: 10px;
	font-size: 12px;
}


@media screen and (max-width: 768px) {
.l-footer-area {
	padding: 30px 15px;
}
.f_inner {
	max-width: 100%;
	padding:0;
}
.l-footer-area .wrap_01 {
	padding-top: 30px;
	display: block;
}
	.l-footer-area .left {
		display: table;
	margin:0 auto;
}
.l-footer-area .sns_box {
	display: flex;
	align-items: center;
	margin-top: 12px;
	margin:0 auto;
}
	.l-footer-area .left p {
		font-size: 13px;
}
.l-footer-area .sns_box a {
	display: block;
	margin-right: 12px;
}
.l-footer-area .sns_box a:first-child {
	margin-right: 18px;
}
	.l-footer-area .sns_box a:last-child {
	margin-right: 0
}
.l-footer-area .right  {
	text-align: center;
	margin-top: 30px;
}
.l-footer-area .right .txt_01  {
	font-size: 16px;
	margin-bottom: 10px;
}
.l-footer-area .right .copy  {
	margin-top: 10px;
	font-size: 10px;
}

}



/*--------------------------------------
　PageTop
---------------------------------------*/
.l-pagetop {
  position: fixed;
  bottom: 50px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 0;
}

.l-pagetop__link {
  display: block;
	background: #fff;
  width: 100%;
  height: 100%;
	box-sizing: border-box;
	border-radius: 50%;
	border: 2px solid #000;
  position: relative;
}
.l-pagetop__link::after {
	display: block;
	content: "";
	position: absolute;
	top: 43%;
	left: 50%;
	width: 12px;
	height: 12px;
	margin-left: -6px;
	border-top: 2px solid #000;
	border-left: 2px solid #000;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.l-pagetop span {
	display: none;
}

@media screen and (max-width: 768px) {
	.l-pagetop {
		bottom: 10px;
		right: 5px;
		width: 40px;
		height: 40px;
	}
		
	.l-pagetop__link {
		border: 1px solid #000;
	}
	.l-pagetop__link::after {
		width: 8px;
		height: 8px;
		margin-left: -4px;
		border-top: 1px solid #000;
		border-left: 1px solid #000;
	}
}






/*--------------------------------------
　Title
---------------------------------------*/
h2,
h3,
h4,
h5,
h6,
.cc {
	font-weight: bold;
	line-height: 1.5;
}
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	display: block;
	font-weight: bold;
}
h2 span,
h3 span,
h4 span,
h5 span,
h6 span,
.cc span {
	font-weight: bold;
}
h2 br,
h3 br,
h4 br,
h5 br,
h6 br,
.cc br {
	line-height: 0;
}
*:not(br){
  line-height: 1.5;
}

.contents h1 {
	margin: 0 0 5rem;
	color: #6a7a5e;
	font-size: 3.6rem;
	font-weight: bold;
	line-height: 1.4;
}


.contents h2 {
	background: #6a7a5e;
	margin: 4rem 0 2rem;
	padding: 2rem 3rem 2rem 4rem;
	color: #fff;
	font-size: 3.2rem;
	position: relative;
}

.contents h2 a {
	padding: 0 3rem 0 0;
	color: #fff;
	position: relative;
}
.contents h2 a::before {
	content: "";
	position: absolute;
	top: -20px;
	left: -40px;
	width: calc(100% + 7rem);
	height: calc(100% + 4rem);
}
.contents h2 a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 14px;
	height: 14px;
	margin-top: -7px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


.contents h3 {
	margin: 4rem 0 2rem;
	padding: 0 0 1.5rem 0;
	font-size: 2.8rem;
	border-bottom: 3px solid #6a7a5e;
}

.contents h3 a {
	padding: 0 3rem 0 0;
	position: relative;
}
.contents h3 a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100% + 1.5rem);
}
.contents h3 a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 12px;
	height: 12px;
	margin-top: -6px;
	border-top: solid 2px #6a7a5e;
	border-right: solid 2px #6a7a5e;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


.contents h4 {
	color: #6a7a5e;
	margin: 4rem 0 2rem;
	font-size: 2.2rem;
}

.contents h4 a {
	display: inline-block;
	padding: 0 2.5rem 0 0;
	color: #6a7a5e;
	position: relative;
}
.contents h4 a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 10px;
	height: 10px;
	margin-top: -5px;
	border-top: solid 2px #6a7a5e;
	border-right: solid 2px #6a7a5e;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
	.contents h1 {
		margin: 0 0 3rem;
		font-size: 2.5rem;
	}


	.contents h2 {
		margin: 3rem 0 2rem;
		padding: 1.5rem 2rem;
		font-size: 2.2rem;
	}

	.contents h2 a {
		padding: 0 1.5rem 0 0;
		position: relative;
	}
  .contents h2 a::before {
    top: -15px;
    left: -20px;
    width: calc(100% + 4rem);
    height: calc(100% + 3rem);
  }
	.contents h2 a::after {
		width: 10px;
		height: 10px;
		margin-top: -5px;
		border-top: solid 1px #fff;
		border-right: solid 1px #fff;
	}


	.contents h3 {
		margin: 3rem 0 2rem;
		padding: 0 0 1rem 0;
		font-size: 1.8rem;
		border-bottom: 1px solid #6a7a5e;
	}

	.contents h3 a {
		padding: 0 1.5rem 0 0;
	}
  .contents h3 a::before {
    height: calc(100% + 1rem);
  }
	.contents h3 a::after {
		width: 10px;
		height: 10px;
		margin-top: -5px;
		border-top: solid 1px #6a7a5e;
		border-right: solid 1px #6a7a5e;
	}


	.contents h4 {
		margin: 3rem 0 2rem;
		font-size: 1.6rem;
	}

	.contents h4 a {
		padding: 0 1.5rem 0 0;
	}
	.contents h4 a::after {
		width: 8px;
		height: 8px;
		margin-top: -4px;
		border-top: solid 1px #6a7a5e;
		border-right: solid 1px #6a7a5e;
	}
}



/*--------------------------------------
　テキスト
---------------------------------------*/

.contents p a {
	text-decoration: underline;
}
.contents p a:hover {
	text-decoration: none;
}

.txt_bold {
	color: #6a7a5e;
	font-weight: bold;
}
.marker {
	background: linear-gradient(transparent 70%, #fff000 0%);
	font-weight: bold;
}


.caption {
	margin: 1rem 0 0 0!important;
	padding: 0 0 0.5rem 0;
	font-size: 1rem;
	color: #888;
	line-height: 1.3;
	word-wrap: break-word;
	word-break: break-all;
	overflow-x: auto;
	overflow-y: hidden;
	white-space: nowrap;
}
.caption::-webkit-scrollbar {
	height: 2px;
}
.caption::-webkit-scrollbar-track {
	background: #e7e7e7;
	margin: 0 0;
	border: none;
	border-radius: 0;
	box-shadow: none;
}
.caption::-webkit-scrollbar-thumb {
	background: #aeaeae;
	border-radius: 0;
	box-shadow: none;
}
.caption a {
	color: #888;
	text-decoration: underline;
}
@-moz-document url-prefix() {
  .caption {
    scrollbar-color: #aeaeae #e7e7e7;
  	scrollbar-width: thin;
  }
}

@media screen and (max-width: 768px) {
	.contents p {
		margin: 2rem 0 2rem;
		line-height: 1.8;
	}
	
	.caption {
		margin: 1rem 0 0 0!important;
    font-size: 1rem;
	}
}


/*--------------------------------------
　fixed_bnr
---------------------------------------*/
.fixed_bnr {
  position: fixed;
  bottom: 40px;
  right: 0;
  width: 340px;
  z-index: 1;
	border-radius: 30px 0 0 30px;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
	transition: all 0.3s ease;
}
.fixed_bnr.stop {
  opacity: 0;
}
.fixed_bnr.stop a {
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .fixed_bnr {
    bottom: 0;
    right: 0;
    left:inherit;
    width: 60%;
	  box-shadow: none;
	  padding: 0 10px;
  }

  .fixed_bnr a {
    
  }
}

body {
	background: url("img/bg.webp") center no-repeat;
	background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.bg_fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url("img/bg.webp") center center / cover no-repeat;
  z-index: -1;
}
/*--------------------------------------
　MV
---------------------------------------*/
.mv_home {
	-moz-box-sizing: border-box;
  box-sizing: border-box;
	background: url("img/mv_bg.webp") center top no-repeat;
	background-size: 100% auto;
}
.mv_inner {
	max-width:1400px;
	margin: 0 auto;
}
.mv_inner .mv_ttl {
	position: relative;
	left: -2%;
}
.mv_under {
	max-width: 1092px;
	padding: 0 40px;
	margin: auto;
	position: relative;
	top: -50px;
}
.mv_under .mv_txt{
	width: 80%;
	margin: 0 auto 20px;
}
.mv_under .link_box{
	display: flex;
	justify-content: space-between;
}
.mv_under .link_box a{
	display: block;
	width: 48.5%;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
	border-radius: 20px;
}
@media screen and (max-width: 768px) {
.mv_under {
	top: inherit;
	padding: 10px 15px 20px;
}
.mv_inner .mv_ttl {
	position: relative;
	left: inherit;
}
.mv_under .mv_txt{
	display: none;
}
.mv_under .link_box{
	display:block;
}
.mv_under .link_box a{
	display: block;
	width: 100%;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
	margin-bottom: 10px;
	border-radius: 20px;
}
}





/*--------------------------------------
　Main Index
---------------------------------------*/
.contents_top {
	width: 100%;
	margin: auto;
	box-sizing: border-box;
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 0 40px;
}

.sec {
	width: 100%;
	margin: auto;
	box-sizing: border-box;
	position: relative;
}

.sec .inner {
	max-width: 1092px;
	margin: auto;
	box-sizing: border-box;
}
.note {
	font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
	.contents_top {
		min-width: 100%;
		padding: 0 0;
	}
  
	.sec {
		min-width: 100%;
	}
  
	.sec .inner {
		max-width: 100%;
		padding: 0 15px;
	}
}





/*--------------------------------------
　Title
---------------------------------------*/

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





/*--------------------------------------
　テキスト
---------------------------------------*/

.txt {
	margin: 3rem 0 3rem;
	font-size: 1.4rem;
	text-align: justify;
	line-height: 1.6;
}

.lead {
	margin: 3rem 0 0!important;
	font-size: 1.5rem;
	line-height: 2;
}

p.caption {
	margin: 1rem 0 0 0!important;
	padding: 0 0 0.5rem 0;
	font-size: 1rem;
	line-height: 1.3;
}

.sec p {
	margin: 0 0 0;
}

@media screen and (max-width: 768px) {
	.contents_top p {
		margin: 2rem 0 2rem;
		line-height: 1.8;
	}

	.txt {
		margin: 2rem 0 2rem;
		line-height: 1.8;
	}

	.lead {
		margin: 2rem 0 0!important;
		line-height: 1.8;
	}
  
  p.caption {
    margin: 1rem 0 0 0!important;
    padding: 0 0 0.5rem 0;
    font-size: 1rem;
    line-height: 1.3;
  }
  
  .sec p {
    margin: 0 0 0;
  }
}
/*--------------------------------------
　sec01
---------------------------------------*/
.sec01 {
	padding: 0 0 100px;
}
.sec01 .ttl {
	width: 90%;
	margin: 0 auto;
}
.sec01 .inner,.sec02 .inner {
  max-width: 1200px;
}
.sec01 .banner_ttl {
	width: 80%;
	margin: 0 auto;
}
.sec01 .banner_area {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0 50px;
}
.sec01 .banner_area a {
	display: block;
	width: 49%;
	border: 4px solid #fff;
	box-sizing: border-box;
	margin:20px 0 0 0;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.45);
}
.sec01 .wrap_01,.sec02 .wrap_01 {
	position: relative;
}
.sec01 .pricelink,.sec02 .pricelink {
	position: absolute;
	display: block;
	width: 22%;
	top:0px;
	right: 0px;
}
@media screen and (max-width: 768px) {
.sec01 {
	padding: 0 0 48px;
}
.sec01 .ttl {
	width: 100%;
	margin: 0 auto;
}
.sec01 .inner,.sec02 .inner {
  max-width: 100%;
	width: 100%;
	padding: 0!important;
}
	.sec01 .banner_ttl {
	width: 100%;
}
.sec01 .banner_area {
	display: block;
	padding: 0 15px;
}
.sec01 .banner_area a {
	width: 100%;
	border: 3px solid #fff;
	margin:15px 0 0 0;
}
.sec01 .pricelink,.sec02 .pricelink {
	position: absolute;
	display: block;
	width: 21%;
	top:0px;
	right: 0px;
}
}
/*--------------------------------------
　sec02
---------------------------------------*/
.sec02 {
	padding: 0 0 60px;
}
.sec02 .ttl {
	width: 75%;
	margin: 0 auto;
}
.sec02 .wrap_01 {
	position: relative;
	top: -40px;
}

@media screen and (max-width: 768px) {
.sec02 {
	padding: 0 0 40px;
}
.sec02 .ttl {
	width: 98%;
	margin: 0 auto;
}
.sec02 .wrap_01 {
	position: relative;
	top: -20px;
}
}
/*--------------------------------------
　sec03
---------------------------------------*/
.sec03 {
	padding: 0 0 40px;
}
.sec03 .inner {
	background: rgba(218,224,0,0.8);
	border: 6px solid #fff;
	box-sizing: border-box;
	padding:0 40px 40px;
}
.sec03 .ttl {
	position: relative;
	top: -30px;
}
.sec03 .read {
	font-size: 1.8rem;
}
.sec03 ul {
	background: #fff;
	padding: 6px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 20px 0 10px 0;
}
.sec03 ul .upper .wrap_cover {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.sec03 ul .upper {
	width: 100%;
}
.sec03 ul .under {
	width: 32.8%;
}
.sec03 ul .midahi {
	width: 100%;
	text-align: center;
	color: #fff;
	background: #8fc31f;
	padding: 4px 10px;
}
.sec03 ul .upper .wrap_01 {
	width: 49%;
}
.sec03 ul .wrap_01 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding:10px;
}

.sec03 ul  .img {
	width: 25%;
}
.sec03 ul  .txtbox {
	width: 70%;
}
.sec03 ul .upper .wrap_01:nth-child(2)  .img {
	width: 10%;
}
.sec03 ul .upper .wrap_01:nth-child(2) .txtbox {
	width: 80%;
}
.sec03 ul .txt_01 {
	color: #ea5514;
	font-weight: bold;
}
@media screen and (max-width: 768px) {
.sec03 {
	padding: 0 15px 20px;
}
.sec03 .inner {
	border: 4px solid #fff;
	padding:0 15px 15px;
}
.sec03 .ttl {
	position: relative;
	top: 0;
	margin-bottom: 10px;
}
.sec03 .read {
	font-size: 1.4rem;
}
.sec03 ul {
	background: #fff;
	padding: 6px;
	display: block;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 10px 0 10px 0;
}
.sec03 ul .upper .wrap_cover {
	width: 100%;
	display: block;
}
.sec03 ul .upper {
	width: 100%;
}
.sec03 ul .under {
	width: 100%;
}
.sec03 ul .midahi {
	width: 100%;
	padding: 4px 10px;
}
.sec03 ul .upper .wrap_01 {
	width: 100%;
}
.sec03 ul .wrap_01 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding:10px;
}

.sec03 ul  .img {
	width: 25%;
}
.sec03 ul  .txtbox {
	width: 70%;
}
.sec03 ul .upper .wrap_01:nth-child(2)  .img {
	width: 25%;
}
.sec03 ul .upper .wrap_01:nth-child(2) .txtbox {
	width: 70%;
}
}
/*--------------------------------------
　sec04
---------------------------------------*/
.sec04 {
	padding: 0 0 100px;
}
.sec04 .wrap_01 {
	background: rgba(255,255,255,0.8);
	border: 6px solid #009944;
	box-sizing: border-box;
	padding:20px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.sec04 .wrap_01 .ttl {
	width: 30%;
}
.sec04 .wrap_01 ul {
	width: 67%;
	display: flex;
	flex-wrap: wrap;
}
.sec04 .wrap_01 ul li {
	width: 49%;
	font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
.sec04 {
	padding: 0 0 60px;
}
.sec04 .wrap_01 {
	border: 4px solid #009944;
	box-sizing: border-box;
	padding:15px;
	display: block;
}
.sec04 .wrap_01 .ttl {
	width: 100%;
}
.sec04 .wrap_01 ul {
	width: 100%;
	display:block;
}
.sec04 .wrap_01 ul li {
	width: 100%;
	font-size: 1.2rem;
}
}
/*--------------------------------------
　sec05
---------------------------------------*/
.sec05 {
	padding: 0 0 100px;
}
.sec05 .inner {
	background: rgba(0,160,233,0.8);
	border: 6px solid #fff;
	box-sizing: border-box;
	padding:190px 40px 40px;
	position: relative;
	border-radius: 20px;
}
.sec05 .inner .ttl {
	position: absolute;
	top: -20px;
	left: 10px;
	width: 100%;
	z-index: 1;
}
.sec05 .wrap_01 ul  {
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 2;
}
.sec05 .wrap_01 ul:not(:last-child)  {
	margin-bottom: 20px;
}
.sec05 .wrap_01 ul li {
	background: #fff;
	padding: 20px;
	box-sizing: border-box;
	border-radius: 14px;
	width: 32%;
	display: flex;
  flex-direction: column; 
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}
.sec05 .wrap_01 .under li {
	width: 49%;
}
.sec05 .wrap_01 .midashi {
	margin: 10px 0;
}
.sec05 .wrap_01 .place {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}
.sec05 .wrap_01 .place img {
	width: 20%;
}
.sec05 .wrap_01 .place p {
	width: 76%;
	color: #00a0e9;
	font-weight: bold;
	font-size: 1.6rem;
}
.sec05 .wrap_01 .txt_01 {
	color: #e83828;
	font-weight: bold;
	font-size: 1.6rem;
	margin-bottom: 10px;
}
.sec05 .wrap_01 .txt_02 {
	color: #e83828;
	font-weight: bold;
	font-size: 1.2rem;
}
.sec05 .wrap_01 .txtbox {
  flex: 1; /* ← これ追加 */
}
.sec05 .wrap_01 .img {
	border-radius: 10px;
	margin-top: 10px;
	overflow: hidden;
	align-self: flex-end;
}
.sec05 .wrap_01 .ttl_01 {
	text-align: center;
	font-weight: bold;
	color: #fff;
	background: #00a0e9;
	border-radius: 100px;
	padding: 4px 10px;
}
.sec05 .middle .txt_01,.sec05 .under .txt_01 {
	font-size: 1.8rem;
	margin: 10px 0;
	color: #00a0e9;
}
.sec05 dl {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.sec05 dl dt  {
	width: 15%;
}
.sec05 dl dt span {
	display: block;
	width: 100%;
	padding: 2px;
	color: #fff;
	text-align: center;
	font-size: 1.2rem;
	background: #00a0e9;
	border-radius: 4px;
}
.sec05 dl dd{
	width: 80%;
	margin-bottom: 10px;
}
.sec05 .wrap_01 .btn_01{
	width: 100%;
	display: block;
	margin: 14px auto 0;
	padding: 10px 0;
	border: 2px solid #007aec;
	background: #fff;
	border-radius: 100px;
	text-align: center;
	font-weight: bold;
	font-size: 1.6rem;
	color:#007aec;
	position: relative;
	box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
}
.sec05 .wrap_01 .under .btn_01{
	width: 80%;
	margin: 14px auto 0;
}
.sec05 .wrap_01  .btn_01::before,
.sec05 .wrap_01  .btn_01::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 5%;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #007aec;
  transform-origin: calc(100% - 1px) 50%;
}
.sec05 .wrap_01 .pink .btn_01{
	border: 2px solid #ec4da6;
	color:#ec4da6;
}
.sec05 .wrap_01 .pink .btn_01::before,
.sec05 .wrap_01 .pink .btn_01::after {
  background-color: #ec4da6;
}
.sec05 .wrap_01 .green .btn_01{
	border: 2px solid #56c150;
	color:#56c150;
}
.sec05 .wrap_01 .green .btn_01::before,
.sec05 .wrap_01 .green .btn_01::after {
  background-color: #56c150;
}
.sec05 .btnbox {
	display: flex;
	justify-content: space-between;
}
.sec05 .btnbox .btn_01{
	width: 32%;
	display: block;
	margin: 20px auto 0;
	padding: 14px 0;
	border: 4px solid #fff;
	background: #007aec;
	border-radius: 100px;
	text-align: center;
	font-weight: bold;
	font-size: 1.6rem;
	color: #fff;
	position: relative;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}
.sec05 .btnbox .btn_01::before,
.sec05 .btnbox .btn_01::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 4%;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 1px) 50%;
}
.sec05 .pink.btn_01{
	background: #ec4da6;
}
.sec05 .green.btn_01{
	background: #56c150;
}
.sec05 .btn_01::before {
  transform: rotate(45deg);
}

.sec05 .btn_01::after {
  transform: rotate(-45deg);
}
.sec05 .wrap_01 .green .ttl_01 {
	background: #56c150;
}
.sec05 .wrap_01 .green .txt_01 {
	color: #56c150;
}
.sec05 .wrap_01 .green dt span{
	background: #56c150;
}
.sec05 .wrap_01 .pink .ttl_01 {
	background: #ec4da6;
}
.sec05 .wrap_01 .pink .txt_01 {
	color: #ec4da6;
}
.sec05 .wrap_01 .pink dt span{
	background: #ec4da6;
}

@media screen and (max-width: 768px) {
.sec05 {
	padding: 0 15px 60px;
}
.sec05 .inner {
	border: 4px solid #fff;
	padding:30% 15px 20px;
	border-radius: 20px;
}
.sec05 .inner .ttl {
	position: absolute;
	top: -20px;
	left: 0;
	right: 0;
	margin: auto;
	width: 95%;
	z-index: 1;
}
.sec05 .wrap_01 ul  {
	display: block;
	z-index: 2;
}
.sec05 .wrap_01 ul:not(:last-child)  {
	margin-bottom: 0;
}
.sec05 .wrap_01 ul li {
	padding: 15px;
	border-radius: 14px;
	width: 100%;
	display: flex;
  flex-direction: column; 
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
	margin-bottom: 15px;
}
.sec05 .wrap_01 .under li {
	width: 100%;
}
.sec05 .wrap_01 .place {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}
.sec05 .wrap_01 .place img {
	width: 20%;
}
.sec05 .wrap_01 .place p {
	width: 76%;
	color: #00a0e9;
	font-weight: bold;
	font-size: 1.6rem;
}
.sec05 .wrap_01 .txt_01 {
	color: #e83828;
	font-weight: bold;
	font-size: 1.6rem;
	margin-bottom: 10px;
}
.sec05 .wrap_01 .txt_02 {
	color: #e83828;
	font-weight: bold;
	font-size: 1.2rem;
}
.sec05 .wrap_01 .txtbox {
  flex: 1; /* ← これ追加 */
}
.sec05 .wrap_01 .img {
	border-radius: 10px;
	margin-top: 10px;
	overflow: hidden;
	align-self: flex-end;
}
.sec05 .wrap_01 .ttl_01 {
	text-align: center;
	font-weight: bold;
	color: #fff;
	background: #00a0e9;
	border-radius: 100px;
	padding: 4px 10px;
}
.sec05 .middle .txt_01,.sec05 .under .txt_01 {
	font-size: 1.8rem;
	margin: 10px 0;
	color: #00a0e9;
}
.sec05 dl {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.sec05 dl dt  {
	width: 15%;
}
.sec05 dl dt span {
	display: block;
	width: 100%;
	padding: 2px;
	color: #fff;
	text-align: center;
	font-size: 1.2rem;
	background: #00a0e9;
	border-radius: 4px;
}
.sec05 dl dd{
	width: 80%;
	margin-bottom: 10px;
}
.sec05 .wrap_01 .btn_01{
	width: 100%;
	border: 3px solid #007aec;
	font-size: 1.4rem;
}
.sec05 .wrap_01 .under .btn_01{
	width: 100%;
	margin: 14px auto 0;
}
	
.sec05 .wrap_01 .pink .btn_01{
	border: 3px solid #ec4da6;
}
.sec05 .wrap_01 .green .btn_01{
	border: 3px solid #56c150;
}
.sec05 .btnbox {
	display: block;
}
.sec05 .btn_01{
	width: 100%;
	margin: 15px auto 0;
	padding: 10px 0;
	border: 3px solid #fff;
	font-size: 1.4rem;
}
}
/*--------------------------------------
　sec06
---------------------------------------*/
.sec06{
	padding: 0 0 100px;
}
.sec06 .inner {
	background: rgba(78,208,99,0.8);
	border: 6px solid #fff;
	box-sizing: border-box;
	padding:200px 40px 40px;
	position: relative;
	border-radius: 20px;
}
.sec06 .inner .ttl {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translate(-50%,0);
	width: 80%;
	z-index: 1;
}
.sec06 .wrap_01 {
	position: relative;
	display: flex;
	justify-content: space-between;
	z-index: 2;
	margin-bottom: 10px;
}
.sec06 .imgbox {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.sec06 .imgbox img {
	display: block;
	width: 32%;
	margin-top: 20px;
}
.sec06 .btn_01{
	width: 40%;
	display: block;
	margin: 20px auto 0;
	padding: 14px 0;
	border: 4px solid #fff;
	background: #ffdf19;
	border-radius: 100px;
	text-align: center;
	font-weight: bold;
	font-size: 1.6rem;
	color: #222;
	position: relative;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}
.sec06 .btn_01::before,
.sec06 .btn_01::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 4%;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #222;
  transform-origin: calc(100% - 1px) 50%;
}
.sec06 .btn_01::before {
  transform: rotate(45deg);
}
.sec06 .btn_01::after {
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
.sec06{
	padding: 0 15px 60px;
}
.sec06 .inner {
	border: 4px solid #fff;
	padding:20% 15px 20px;
	position: relative;
	border-radius: 20px;
}
.sec06 .inner .ttl {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translate(-50%,0);
	width: 95%;
	z-index: 1;
}
.sec06 .wrap_01 {
	position: relative;
	display: flex;
	justify-content: space-between;
	z-index: 2;
	margin-bottom: 10px;
}
.sec06 .imgbox {
	display:flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.sec06 .imgbox img {
	display: block;
	width: 49%;
	margin-top: 10px;
}
.sec06 .btn_01{
	width: 100%;
	margin: 14px auto 0;
	padding: 10px 0;
	border: 3px solid #fff;
	font-size: 1.4rem;
}
}
/*--------------------------------------
　sec07
---------------------------------------*/
.sec07{
	padding: 0 0 100px;
}
.sec07 .inner {
	background: rgba(255,255,255,0.8);
	border: 6px solid #ec4da6;
	box-sizing: border-box;
	padding:40px 40px;
	position: relative;
	border-radius: 20px;
	display: flex;
	justify-content: space-between;
}
.sec07 .left {
	width: 60%;
}
.sec07 .left .txt_01 {
	line-height: 1.8;
	margin: 14px 0 0 0;
	font-size: 2rem;
}
.sec07 .left .txt_01 .strong {
	font-size:2.6rem;
	font-weight: bold;
	color: #ec4da6;
}
.sec07 .right {
	width: 35%;
}
.sec07 .btn_01{
	width: 85%;
	display: block;
	margin: -2px auto 0;
	padding: 14px 0;
	border-radius: 100px;
	text-align: center;
	font-weight: bold;
	font-size: 2rem;
	color: #fff;
	background: #e4007f;
	position: relative;
}
.sec07 .btn_01::before,
.sec07 .btn_01::after {
  content: "";
  position: absolute;
  top: calc(50% - 1.5px);
  right: 6%;
  width: 14px;
  height: 3px;
  border-radius: 9999px;
  background-color:#fff;
  transform-origin: calc(100% - 1.5px) 50%;
}

.sec07 .btn_01::before {
  transform: rotate(45deg);
}

.sec07 .btn_01::after {
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
	.sec07{
	padding: 0 15px 60px;
}
.sec07 .inner {
	border: 4px solid #ec4da6;
	padding:15px;
	border-radius: 20px;
	display: block;
}
.sec07 .left {
	width: 100%;
}
.sec07 .left .txt_01 {
	line-height: 1.6;
	margin: 10px 0 0 0;
	font-size: 1.6rem;
}
.sec07 .left .txt_01 .strong {
	font-size:2rem;
}
.sec07 .right {
	width: 100%;
}
.sec07 .btn_01{
	width: 100%;
	margin: -2px auto 0;
	padding: 8px 0;
	font-size: 1.6rem;
}
.sec07 .btn_01::before,
.sec07 .btn_01::after {
  top: calc(50% - 1px);
  right: 6%;
  width: 9px;
  height: 2px;
  transform-origin: calc(100% - 1px) 50%;
}
}