@charset "UTF-8";
 .sec .inner{
	width: 100%;
	position: relative;
	z-index: 1;

	margin: auto;
}

@media screen and (max-width: 768px) {
.sec {
	width: 100%;
	position: relative;
	z-index: 1;
	min-width:100%;	
	margin: auto;
}	
}





/*--------------------------------------------------
  フェードイン
--------------------------------------------------*/

.js-scroll-fade {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-scroll-fade.is-show {
  opacity: 1;
  transform: translateY(0);
}


.js-scroll-fade.delay01 {
  transition-delay: 0.2s;
}

.js-scroll-fade.delay02 {
  transition-delay: 0.4s;
}

.js-scroll-fade.delay03 {
  transition-delay: 0.6s;
}




/*--------------------------------------------------
  header
--------------------------------------------------*/
header {
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 111;
}
header .inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; 	
}
header .logo {
	width: 280px;
}


header .b_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
	margin-top: 25px;
}


header .link01 {
	margin-right: 25px;
}




header .link01 a {
	background: #dd8612;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	height: 65px;
	width: 250px;
	line-height: 65px;
	display: block;
	border-radius: 100px;
  overflow: hidden;
  z-index: 0;	
	position: relative;
	border: solid 1px #dd8612;
	box-sizing: border-box;
}
header .link01 a:hover {
  color: #dd8612;
  opacity: 1;
	
}
header .link01 a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #fff;

  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
  z-index: -1;
}

header .link01 a:hover::before {
  transform: scaleY(1);
}






header .link01 a .l_txt {
	display: inline-block;
	color: #dd8612;
	font-weight: bold;
	font-size: 15px;
	margin-left: 10px;
	background: #fff;
  width: 44px;
	height: 22px;
	line-height: 22px;
	left: 1;
  transition: all 0.3s ease;
}

header .link01 a:hover .l_txt {
 background: #dd8612;	
	color: #fff;
}








header .phone {
	margin-right: 15px;
}
header .phone a {
  position: relative;
  z-index: 0;
  overflow: hidden;	
	background: #51433c;
	color: #fff;
	height: 65px;
	width: 250px;
	line-height: 70px;
	border-radius: 100px;
	display: block;
	text-align: center;
	border: solid 1px #51433c;
	box-sizing: border-box;
}


header .phone a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
}

header .phone a:hover {
  color: #51433c;
  opacity: 1;
}

header .phone a:hover::before {
  transform: scaleY(1);
}

header .phone a span {
  position: relative;
  display: inline-block;
  padding-left: 26px;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
}

header .phone a span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 21px;
  margin-top: -12px;
  background: url("../images/tel.png") 0 0 / 100% auto no-repeat;
	  transition: all 0.3s ease;
}

header .phone a:hover span::before {
  background-image: url("../images/tel_on.png");
}


@media (max-width: 768px) {

header .logo {
	width: 170px;
}

	
}

/*--------------------------------------------------
  mv
--------------------------------------------------*/
.mv {
	width: 100%;
	background: url("../images/mv_bg.jpg") center 0 no-repeat;
	background-size:cover;	
	height: 805px;
	min-width: 1100px;
}


.mv .inner {
	max-width: 1100px;
	margin: auto;
	position: relative;
	padding: 0 20px;	
}


.mv .mv_eng {
	color: #fff;
 font-size: 160px;
	text-align: center;
	line-height: 0.9;
	padding-top: 200px;
	max-width: 1100px;
}

.mv .fix_box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; 
}

.mv .mv_txt01 {
	font-size: 60px;
	color: #fff;
	font-weight: bold;
	line-height: 1.2;
	width: 50%;
  position: relative;
}
.mv .mv_txt01::before {
	content: "";
	position: absolute;
	right: 0;
	width: 1px;
	background: #fff;
	height: 86%;
	top: 20px;
}
.mv .mv_txt01 .f01 {
	font-size: 48.3px;
	color: #fff;
	font-weight: bold;
	transition: all 0.3s ease;
	line-height: 1.2;	
}

.mv .mv_txt01 .f02 {
	font-size: 40px;
	color: #fff;
	font-weight: bold;
	line-height: 1.2;	
}

.mv .mv_txt01 .f03 {
	font-size: 49.4px;
	color: #fff;
	font-weight: bold;
	line-height: 1.2;	
}

.mv .mv_txt02 {
	width: 45%;
	color: #fff;
	font-weight: 500;
	line-height: 2;
	font-size: 18px;
	padding-top: 24px;
	padding-left: 5%;
	transition: all 0.3s ease;	
}

.mv .ls_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
	margin-top: 105px;
}

.mv .ls_box .item {
  width: calc((100% - 35px) / 4);
  max-width: 500px;
  aspect-ratio: 500 / 260;
  position: relative;
  background: #007d8a;

  /* itemの背景自体を左上・右下で削る */
  clip-path: polygon(
    8% 0,
    100% 0,
    100% 84%,
    92% 100%,
    0 100%,
    0 16%
  );
}

/* 白い枠 */
.mv .ls_box .item::before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 0;
  background: #fff;

  clip-path: polygon(
    8% 0,
    100% 0,
    100% 84%,
    92% 100%,
    0 100%,
    0 16%
  );
}

/* 枠の内側 */
.mv .ls_box .item::after {
  content: "";
  position: absolute;
  inset: 9px;
  z-index: 0;
  background: #007d8a;

  clip-path: polygon(
    8% 0,
    100% 0,
    100% 84%,
    92% 100%,
    0 100%,
    0 16%
  );
}

/* テキストを疑似要素より前面に出す */
.mv .ls_box .item .i_inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 30px;
  box-sizing: border-box;
}

.mv .ls_box .item .txt {
  margin: 0;
  text-align: center;
	color: #fff;
	font-size: 18.5px;
	font-weight: 500;
	line-height: 1.4;
	transition: all 0.3s ease;
	
}

.mv .ls_box .item .txt span {
	font-size: 23.5px;
	font-weight: 500;
	line-height: 1.4;	
transition: all 0.3s ease;	
}


@media screen and (max-width: 768px){
.mv {
	width: 100%;
	background: none;
	background-size:cover;	
	height: 100%;
	min-width: 100%;
}

	
.mv .sp_box	 {
  width: 100%;
	background: url("../images/sp_mv_bg.jpg") center 0 no-repeat;
	background-size:cover;	
	height: 100%;
	min-width: 100%;
	padding-bottom: 20%;
}

.mv .inner {
	max-width: 90%;
	margin: auto;
	position: relative;
	padding: 0;	
}


.mv .mv_eng {
	color: #fff;
  font-size: 17vw;
	text-align: center;
	line-height: 0.9;
	padding-top: 110px;
	max-width: 100%;
}

.mv .fix_box {
  display: block;
  justify-content: center;
  flex-wrap: wrap; 
}

.mv .mv_txt01 {
	font-size: 8.4vw;
	color: #fff;
	font-weight: bold;
	line-height: 1.2;
	width: 100%;
	text-align: center;
	margin-top: 20px;
	padding-left: 0;
	margin-left: 6px;
	
}
.mv .mv_txt01::before {
	content: "";
	position: absolute;
	display: none;
}
.mv .mv_txt01 .f01 {
	font-size: 6.5vw;
	color: #fff;
	font-weight: bold;
	transition: all 0.3s ease;
	line-height: 1.2;	
}

.mv .mv_txt01 .f02 {
	font-size: 5vw;
	color: #fff;
	font-weight: bold;
	line-height: 1.2;	
	padding-right: 16px;
}

.mv .mv_txt01 .f03 {
	font-size: 6vw;
	color: #fff;
	font-weight: bold;
	line-height: 1.2;	
}

.mv .mv_txt02 {
	width: 100%;
	color: #fff;
	font-weight: 500;
	line-height: 2;
	font-size: 3.3vw;
	text-align: center;
	padding-top: 12px;
	padding-left: 0;
	transition: all 0.3s ease;	
}
	
	
	
.mv .sp_inner {
	max-width: 90%;
	margin: auto;
	position: relative;
	margin-top: -15%;
}	
	
.mv .ls_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 7px;
	margin-top: 0;
}

.mv .ls_box .item {
  width: calc((100% - 7px) / 2);
  max-width: 500px;
  aspect-ratio: 500 / 260;
  position: relative;
  background: #007d8a;

  /* itemの背景自体を左上・右下で削る */
  clip-path: polygon(
    8% 0,
    100% 0,
    100% 84%,
    92% 100%,
    0 100%,
    0 16%
  );
}

/* 白い枠 */
.mv .ls_box .item::before {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: 0;
  background: #fff;

  clip-path: polygon(
    8% 0,
    100% 0,
    100% 84%,
    92% 100%,
    0 100%,
    0 16%
  );
}

/* 枠の内側 */
.mv .ls_box .item::after {
  content: "";
  position: absolute;
  inset: 6px;
  z-index: 0;
  background: #007d8a;

  clip-path: polygon(
    8% 0,
    100% 0,
    100% 84%,
    92% 100%,
    0 100%,
    0 16%
  );
}

/* テキストを疑似要素より前面に出す */
.mv .ls_box .item .i_inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 30px 5px;
  box-sizing: border-box;
}

.mv .ls_box .item .txt {
  margin: 0;
  text-align: center;
	color: #fff;
	font-size: 3.5vw;
	font-weight: 500;
	line-height: 1.5;
	transition: all 0.3s ease;
	
}

.mv .ls_box .item .txt span {
	font-size: 4vw;
	font-weight: 500;
	line-height: 1.4;	
  transition: all 0.3s ease;	
}

	
}


/*-------------------------------------------------
  sec01
--------------------------------------------------*/

.sec01 {
	margin: auto;
	margin-top: 140px;
}

.sec01 .fix_box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; 
  align-items: center;		
	margin: auto;
	max-width: 1100px;
	min-width: 1100px;
}
.sec01 .image_box {
	width: 25%;
	padding-left: 10%;
	position: relative;
}
.sec01 .text_box {
	width: 60%;
}
.sec01 .image {
	width: 228px;
	margin: auto;
}

.sec01 .n_txt {
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}

.sec01 .text_box .txt {
	text-align: center;
	font-size: 23px;
	line-height: 1.6;
	font-weight: bold;
}
.sec01 .text_box .txt span {
	font-weight: bold;
}
.sec01 .link01 {
	text-align: center;
	margin-top: 40px;
}

.sec01 .link01 a {
  position: relative;
  overflow: hidden;
  z-index: 0;	
	background: #dd8612;
	color: #fff;
	font-size: 26px;
	display: block;
	font-weight: bold;
	text-align: center;
	padding: 20px 50px 20px;
	border-radius: 100px;
	border: solid 1px #dd8612;
	box-sizing: border-box;	
}

.sec01 .link01 a .l_txt {
	display: inline-block;
	color: #dd8612;
	font-weight: bold;
	font-size: 22px;
	margin-left: 10px;
	background: #fff;
	padding: 3px 6px 5px;
  line-height: 1;
  transition: all 0.3s ease;
}


.sec01 .link01 a:hover .l_txt {
 background: #dd8612;	
	color: #fff;
}



.sec01 .link01 a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #fff;

  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
  z-index: -1;
}

.sec01 .link01 a:hover {
  color: #dd8612;
  opacity: 1;
}



.sec01 .link01 a:hover::before {
  transform: scaleY(1);
}






@media screen and (max-width: 768px) {
.sec01 {
	margin: auto;
	margin-top: 50px;
}

.sec01 .fix_box {
  display: block;
  justify-content: center;
  flex-wrap: wrap; 
  align-items: center;		
	margin: auto;
	max-width: 90%;
	min-width: 90%;
}
.sec01 .image_box {
	width: 100%;
	padding-left: 0;
	position: relative;
}
.sec01 .text_box {
	width: 100%;
}
.sec01 .image {
	width: 40%;
	margin: auto;
	margin-top: 10px;
}

.sec01 .n_txt {
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	line-height: 1.4;
}

.sec01 .text_box .txt {
	text-align: center;
	font-size: 19px;
	line-height: 1.6;
	font-weight: bold;
}
.sec01 .text_box .txt span {
	font-weight: bold;
}
.sec01 .link01 {
	text-align: center;
	margin-top: 20px;
}

.sec01 .link01 a {
	background: #dd8612;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	padding: 15px 0 15px;
	border-radius: 100px;
	width: 90%;
	margin: auto;
	display: inline-block;
	line-height: 1.5;
}

.sec01 .link01 a .l_txt {
	display: inline-block;
	color: #dd8612;
	font-weight: bold;
	font-size: 13px;
	margin-left: 4px;
	background: #fff;
	padding: 1px 4px 3px;
  line-height: 1;

}
	
}



/*-------------------------------------------------
  title
--------------------------------------------------*/

.title_box01 .eng_t {
	font-size: 70px;
	line-height: 1;
	position: relative;
	font-weight: 600;
	text-align: center;
}


.title_box01 .eng_t::before {
  content: "";
  position: absolute;
	background: #51433c;
	width: 60px;
	height: 1px;
	display: block;
	bottom: -18px;
	left: 0;
	right: 0;
	margin: auto;
}

.title_box01 .title {
	font-weight: bold;
	font-size: 40px;
	line-height: 1.4;
	margin-top: 60px;
}
.title_box01 .title .f_size01 {
	font-size: 55px;
	font-weight: bold;
	line-height: 1;
}
.title_box01 .title span {
	font-weight: bold;

}


@media screen and (max-width: 768px) {
.title_box01 .eng_t {
	font-size: 45px;
	line-height: 1;
	position: relative;
	font-weight: 600;
	text-align: center;
}


.title_box01 .eng_t::before {
  content: "";
  position: absolute;
	background: #51433c;
	width: 30px;
	height: 1px;
	display: block;
	bottom: -11px;
	left: 0;
	right: 0;
	margin: auto;
}

.title_box01 .title {
	font-weight: bold;
	font-size: 25px;
	line-height: 1.4;
	margin-top: 35px;
}
.title_box01 .title .f_size01 {
	font-size: 38px;
	font-weight: bold;
	line-height: 1;
}
.title_box01 .title span {
	font-weight: bold;

}	
}

/*-------------------------------------------------
  sec02
--------------------------------------------------*/

.sec02 {
	margin: 120px 50px 0;
	min-width: 1000px;	
}

.sec02 .box {
	width: 100%;
	background: url("../images/sec02_bg.jpg") center 0 no-repeat;
	background-size:cover;	
	padding-bottom: 120px;
}
.sec02 .inner {
	max-width: 1100px;
 margin: auto;	
}

.sec02 .inner .m_box {
	padding: 0 50px;
}
.sec02 .title_box01 {
	position: relative;
	top: -32px;
	margin-bottom: 20px;
}


.sec02 .read {
	text-align: center;
	font-size: 16px;
	font-weight: 500;
}
.sec02 .image {
	width: 705px;
	margin: auto;
	margin-top: 25px;
}

.sec02 .title {
	font-size: 40px;
	text-align: center;
	font-weight: bold;
	line-height: 1.4;
	margin-top: 65px;
}

.sec02 .title span {
	font-weight: bold;
}

.sec02 .txt01 {
	text-align: center;
	font-weight: bold;
	font-size: 16px;
	margin-top: 16px;
	line-height: 1.6;
}

.sec02 .txt01 .marker {
	font-weight: bold;
	color: #fff;
	display: inline-block;
	background: #007d8a;
	line-height: 1;
	padding: 2px 6px 4px;
	
}

.sec02 .sub_box {
	margin-top: 70px;
}

.sec02 .item_box {
	position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; 	
	margin-top: 62px;
}


.sec02 .item_box::before {
  content: "";
  position: absolute;
	background: #51433c;
	width: 1px;
	height: 40px;
	display: block;
	top: -50px;
	left: 0;
	right: 0;
	margin: auto;	
}

.sec02 .item_box .item {
	width: 33.33%;
	border-right: solid 1px #51433c;
	box-sizing: border-box;
}
.sec02 .item_box .item:last-child {
border-right: none;
}
.sec02 .item_box .item .i_inner {
	padding: 15px 35px 20px;
}
.sec02 .item_box .item .icon {
	width: 89px;
	margin: auto;
}
.sec02 .item_box .item h4 {
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	margin-top: 20px;
	margin-bottom: 7px;
}


.sec02 .txt02 {
	text-align: center;
	line-height: 2.5;
	margin-top: 40px;
}
.sec02 .txt02 span{
 text-align: center;
	font-weight: bold;
  padding-bottom: 8px;
  border-bottom: 1px solid #51433c;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

@media screen and (max-width: 768px) {
.sec02 {
	margin: 80px auto 0;
	min-width: 90%;	
	width: 90%;
}

.sec02 .box {
	width: 100%;
	background: url("../images/sp_sec02_bg.jpg") center 0 no-repeat;
	background-size:cover;	
	padding-bottom: 60px;
}
.sec02 .inner {
max-width: 88%;
 margin: auto;	
}

.sec02 .inner .m_box {
	padding: 0;
}
.sec02 .title_box01 {
	position: relative;
	top: -20px;
	margin-bottom: 15px;
}


.sec02 .read {
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
}
.sec02 .image {
	width: 100%;
	margin: auto;
	margin-top: 20px;
}

	.sec02 .image img {
		  object-fit: cover;
  font-family: 'object-fit: cover';
		height: 105px;
	}
	
.sec02 .title {
	font-size: 6.2vw;
	text-align: center;
	font-weight: bold;
	line-height: 1.4;
	margin-top: 30px;
}

.sec02 .title span {
	font-weight: bold;
}

.sec02 .txt01 {
	text-align: center;
	font-weight: bold;
	font-size: 14px;
	margin-top: 12px;
	line-height: 1.6;
}

.sec02 .txt01 .marker {
	font-weight: bold;
	color: #fff;
	display: inline-block;
	background: #007d8a;
	line-height: 1;
	padding: 2px 6px 4px;
	
}

.sec02 .sub_box {
	margin-top: 40px;
}

.sec02 .item_box {
	position: relative;
  display: block;
  justify-content: space-between;
  flex-wrap: wrap; 	
	margin-top: 38px;
}


.sec02 .item_box::before {
  content: "";
  position: absolute;
	background: #51433c;
	width: 1px;
	height: 20px;
	display: block;
	top: -30px;
	left: 0;
	right: 0;
	margin: auto;	
}

.sec02 .item_box .item {
	width: 100%;
	border-right: none;
	border-top: solid 1px #51433c;
	box-sizing: border-box;
}
.sec02 .item_box .item:last-child {
 border-right: none;
	border-bottom: solid 1px #51433c;
}
.sec02 .item_box .item .i_inner {
	padding: 15px 0 24px;
}
.sec02 .item_box .item .icon {
	width: 28%;
	margin: auto;
}
.sec02 .item_box .item h4 {
	text-align: center;
	font-size: 17px;
	font-weight: bold;
	margin-top: 10px;
	margin-bottom: 7px;
}
	.sec02 .item_box .item .txt {
		font-size: 14px;
		line-height: 1.7;
	}

.sec02 .txt02 {
	text-align: center;
	line-height: 2.2;
	margin-top: 30px;
	font-size: 3.5vw;
}
.sec02 .txt02 span{
 text-align: center;
	font-weight: bold;
  padding-bottom: 1px;
  border-bottom: 1px solid #51433c;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
	
}


/*-------------------------------------------------
  sec03
--------------------------------------------------*/

.sec03 {
	margin-top: 130px;	
}
.sec03 .inner {
	min-width: 1100px;
	width: 1100px;
	margin: auto;
}

.sec03 .inner .box {
	padding: 0 20px;
}

.sec03 .title_box01 .title {
	text-align: center;
}

.sec03 .image01 {
	margin-top: 55px;
}

.sec03 .ttl01 {
	font-weight: bold;
	font-size: 25px;
	position: relative;
	padding-left: 23px;
	margin-top: 20px;
	margin-bottom: 10px;
}

.sec03 .ttl01::before {
  content: "";
  position: absolute;
	background: #007d8a;
	width: 12px;
	height: 12px;
	border-radius: 100px;
	display: block;
	top: 18px;
	left: 0;
}

.sec03 .arrow {
	width: 45px;
  margin: auto;
	margin-top: 25px;
}

.sec03 .reason_area {
	margin: 50px 50px 0;
}

.sec03 .reason_area .item {
	position: relative;
	background: #007d8a;
	height: 416px;
	margin-bottom: 20px;
	min-width: 1000px;
}
.sec03 .reason_area .item::before {
  content: "";
  position: absolute;
	background: url("../images/sec03_item_bg01.png") 0 0 no-repeat;
	background-size: 100% auto;
	width: 329px;
	height: 361.5px;
	display: block;
	top: 0;
	left: 0;
}

.sec03 .reason_area .item .i_inner {
	max-width: 1060px;
	margin: auto;
	padding: 0 20px;
}
.sec03 .reason_area .item .fix_box {
	display: flex;
  justify-content: space-between;
  flex-wrap: wrap; 
	align-items: center;
}

.sec03 .reason_area .item .txt_box {
	width: 55%;
	position: relative;
	z-index: 1;
	padding-top: 40px;
}

.sec03 .reason_area .item .image {
	width: 42%;
	position: relative;
	z-index: 1
}

.sec03 .reason_area .item01 .image {
	width: 286px;
	margin-right: 40px;
	margin-top: 30px;
}

.sec03 .reason_area .item01::after {
  content: "";
  position: absolute;
	background: url("../images/sec03_item_bg02.png") right 0 no-repeat;
	background-size: 100% auto;
	width: 663px;
	height: 100%;
	display: block;
	top: 0;
	right: 0;
}
.sec03 .reason_area .item02 .image {
	width: 198px;
	margin-right: 70px;
	margin-top: 40px;
}

.sec03 .reason_area .item02::after {
  content: "";
  position: absolute;
	background: url("../images/sec03_item_bg03.png") right 0 no-repeat;
	background-size: 100% auto;
	width: 668px;
	height: 100%;
	display: block;
	top: 0;
	right: 0;
}

.sec03 .reason_area .item03 .image {
	width: 308px;
	margin-right: 10px;
	margin-top: 55px;
}

.sec03 .reason_area .item03::after {
  content: "";
  position: absolute;
	background: url("../images/sec03_item_bg04.png") right 0 no-repeat;
	background-size: 100% auto;
	width: 663px;
	height: 100%;
	display: block;
	top: 0;
	right: 0;
}

.sec03 .reason_area .item04 .image {
	width: 243px;
	margin-right: 40px;
	margin-top: 55px;
}

.sec03 .reason_area .item04::after {
  content: "";
  position: absolute;
	background: url("../images/sec03_item_bg05.png") right 0 no-repeat;
	background-size: 100% auto;
	width: 663px;
	height: 100%;
	display: block;
	top: 0;
	right: 0;
}

.sec03 .reason_area .item .txt_box .nmv {
	font-size: 66px;
	color: #fff;
	font-weight: 500;
}

.sec03 .reason_area .item .txt_box .nmv span {
	font-size: 76px;
	font-weight: 500
}

.sec03 .reason_area .item .txt_box h4 {
	font-size: 24px;
	color: #fff;
	font-weight: bold;
	line-height: 1.5;
}

.sec03 .reason_area .item .txt_box .txt {
	color: #fff;
	margin-top: 20px;
}

.sec03 .reason_area .item .txt_box .f_size01 {
	font-size: 14px;
}








@media screen and (max-width: 768px) {
.sec03 {
	margin-top: 70px;	
}
.sec03 .inner {
	min-width: 90%;
	width: 90%;
	margin: auto;
}

.sec03 .inner .box {
	padding: 0 0;
}

.sec03 .title_box01 .title {
	text-align: center;
}

.sec03 .image01 {
	margin-top: 25px;
}

.sec03 .ttl01 {
	font-weight: bold;
	font-size: 17px;
	position: relative;
	padding-left: 15px;
	margin-top: 18px;
	margin-bottom: 14px;
	line-height: 1.4;
}
	
	
	.sec03 .txt_sp {
		line-height: 1.7;
	}

.sec03 .ttl01::before {
  content: "";
  position: absolute;
	background: #007d8a;
	width: 8px;
	height: 8px;
	border-radius: 100px;
	display: block;
	top: 9px;
	left: 0;
}

.sec03 .arrow {
	width: 38px;
  margin: auto;
	margin-top: 20px;
}

.sec03 .reason_area {
	margin: 25px auto 0;
	width: 90%;
}

.sec03 .reason_area .item {
	position: relative;
	background: #007d8a;
	height: auto;
	margin-bottom: 15px;
	min-width: 100%;
	padding-bottom: 30px;
}
.sec03 .reason_area .item::before {
  content: "";
  position: absolute;
	background: url("../images/sp_sec03_item_bg01.png") 0 0 no-repeat;
	background-size: 100% auto;
	width: 55%;
	height: 100%;
	display: block;
	top: 0;
	left: inherit;
	right: 0;
}

.sec03 .reason_area .item .i_inner {
	max-width:88%;
	margin: auto;
	padding: 0 0;
}
	
	
.sec03 .reason_area .item .fix_box {
	display: block;
  justify-content: space-between;
  flex-wrap: wrap; 
	align-items: center;
}

.sec03 .reason_area .item .txt_box {
	width: 100%;
	position: relative;
	z-index: 1;
	padding-top: 25px;
}

.sec03 .reason_area .item .image {
	width: 100%;
	position: relative;
	z-index: 1
}

.sec03 .reason_area .item01 .image {
	width: 50%;
	margin-right: 0;
	margin: auto;
	margin-top: 20px;
}

.sec03 .reason_area .item01::after {
  content: "";
  position: absolute;
	background: url("../images/sp_sec03_item_bg02.png") 0 bottom no-repeat;
	background-size: 100% auto;
	width: 100%;
	height: 100%;
	display: block;
	top: inherit;
	right: 0;
	left: 0;
	bottom: 0;
}
.sec03 .reason_area .item02 .image {
	width: 45%;
	margin-right: 0;
	margin: auto;
	margin-top: 20px;	
}

.sec03 .reason_area .item02::after {
  content: "";
  position: absolute;
	background: url("../images/sp_sec03_item_bg03.png") 0 bottom no-repeat;
	background-size: 100% auto;
	width: 100%;
	height: 100%;
	display: block;
	top: inherit;
	right: 0;
	left: 0;
	bottom: 0;
}

.sec03 .reason_area .item03 .image {
	width: 58%;
	margin-right: 0;
	margin: auto;
	margin-top: 20px;
}

.sec03 .reason_area .item03::after {
  content: "";
  position: absolute;
	background: url("../images/sp_sec03_item_bg04.png") 0 bottom no-repeat;
	background-size: 100% auto;
	width: 100%;
	height: 100%;
	display: block;
	top: inherit;
	right: 0;
	left: 0;
	bottom: 0;
}

.sec03 .reason_area .item04 .image {
	width: 44%;
	margin-right: 0;
	margin: auto;
	margin-top: 20px;
}

.sec03 .reason_area .item04::after {
  content: "";
  position: absolute;
	background: url("../images/sp_sec03_item_bg05.png") 0 bottom no-repeat;
	background-size: 100% auto;
	width: 100%;
	height: 100%;
	display: block;
	top: inherit;
	right: 0;
	left: 0;
	bottom: 0;
}

.sec03 .reason_area .item .txt_box .nmv {
	font-size: 9.5vw;
	color: #fff;
	font-weight: 500;
}

.sec03 .reason_area .item .txt_box .nmv span {
	font-size: 11vw;
	font-weight: 500
}

.sec03 .reason_area .item .txt_box h4 {
	font-size: 4.5vw;
	color: #fff;
	font-weight: bold;
	line-height: 1.5;
	margin-top: 4px;
}

.sec03 .reason_area .item .txt_box .txt {
	color: #fff;
	margin-top: 20px;
	font-size: 14px;
}
	
.sec03 .reason_area .item .txt_box .f_size01 {
	font-size: 12px;
}	
	
	
}


/*-------------------------------------------------
  sec04
--------------------------------------------------*/

.sec04 {
	margin-top: 160px;	
	background: url("../images/sec04_bg.jpg") center 0 no-repeat;	
	background-size: cover;
	padding: 120px 0 130px;
	min-width: 1100px;
}

.sec04 .title_box01 .eng_t {
	color: #ddd9d7;
}


.sec04 .title_box01 .eng_t::before {
  content: "";
  position: absolute;
	background: #ddd9d7;
	width: 60px;
	height: 1px;
	display: block;
	bottom: -18px;
	left: 0;
	right: 0;
	margin: auto;
}

.sec04 .inner {
	margin: auto;
	width: 1100px;
}
.sec04 .inner .box {
	padding: 0 20px;
}

.sec04 .fix_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; 	
	margin-top: 80px;
}

.sec04 .image {
	width: 35%;
}

.sec04 .text_box {
	width: 56%;
}

.sec04 .text_box h3 {
	color: #fff;
	font-weight: bold;
	font-size: 40px;
	line-height: 1.4;
}

.sec04 .text_box .item_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; 	
	margin-top: 35px;
}

.sec04 .text_box .item_box .item {
	background: #fff;
	width: 33.22%;
	padding: 22px 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.sec04 .text_box .item_box .item h4 {
	color: #007d8a;
	font-size: 22px;
	font-weight: bold;
	text-align: center;
	line-height: 1;
}

.sec04 .text_box .item_box .item .txt {
	font-weight: bold;
	line-height: 1.4;
	margin-top: 8px;
	font-size: 16px;
	text-align: center;
}

.sec04 .text_box .item_box .item .txt span {
	font-size: 12px;
	position: relative;
	top: -4px;
}

.sec04 .text_box .ls_box {
	margin-top: 30px;
}
.sec04 .text_box .ls_box .item{
	border-bottom: solid #666666 1px;
	box-sizing: border-box;
	padding-bottom: 22px;
	margin-bottom: 20px;
}

.sec04 .text_box .ls_box .item .txt01 {
	position: relative;
	padding-left:25px;
	font-weight: bold;
	line-height: 1.4;
	color: #fff;
}

.sec04 .text_box .ls_box .item .txt01::before {
  content: "";
  position: absolute;
	background: #b8a890;
	width: 15px;
	height: 1px;
	display: block;
	left: 0;
	top: 12px;
}
.sec04 .note {
	text-align: right;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
}

@media screen and (max-width: 768px) {
.sec04 {
	margin-top: 70px;	
	background: url("../images/sec04_bg.jpg") center 0 no-repeat;	
	background-size: cover;
	padding: 60px 0 60px;
	min-width: 100%;
}

.sec04 .title_box01 .eng_t {
	color: #ddd9d7;
}


.sec04 .title_box01 .eng_t::before {
  content: "";
  position: absolute;
	background: #ddd9d7;
	width: 30px;
	height: 1px;
	display: block;
	bottom: -11px;
	left: 0;
	right: 0;
	margin: auto;
}

.sec04 .inner {
	margin: auto;
	width: 90%;
}
.sec04 .inner .box {
	padding: 0 0;
}

.sec04 .fix_box {
  display: block;
  justify-content: space-between;
  flex-wrap: wrap; 	
	margin-top: 40px;
	position: relative;
}

.sec04 .image {
	width: 40%;
}

.sec04 .text_box {
	width: 100%;
}

.sec04 .text_box h3 {
	color: #fff;
	font-weight: bold;
	font-size: 5.6vw;
	position: absolute;
	top: 5.6%;
	left: 48%;
	line-height: 1.5;
}

.sec04 .text_box .item_box {
  display: block;
  justify-content: space-between;
  flex-wrap: wrap; 	
	margin-top: 30px;
}

.sec04 .text_box .item_box .item {
	background: #fff;
	width: 100%;
	padding: 20px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 2px;
}
.sec04 .text_box .item_box .item h4 {
	color: #007d8a;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	line-height: 1;
}

.sec04 .text_box .item_box .item .txt {
	font-weight: bold;
	line-height: 1.4;
	margin-top: 8px;
	font-size: 14px;
	text-align: center;
}

.sec04 .text_box .item_box .item .txt span {
	font-size: 10px;
	position: relative;
	top: -4px;
}

.sec04 .text_box .ls_box {
	margin-top: 25px;
}
.sec04 .text_box .ls_box .item{
	border-bottom: solid #666666 1px;
	box-sizing: border-box;
	padding-bottom: 15px;
	margin-bottom: 13px;
}

.sec04 .text_box .ls_box .item .txt01 {
	position: relative;
	padding-left:18px;
	font-weight: bold;
	line-height: 1.4;
	color: #fff;
	font-size: 14px;
}

.sec04 .text_box .ls_box .item .txt01::before {
  content: "";
  position: absolute;
	background: #b8a890;
	width: 11px;
	height: 1px;
	display: block;
	left: 0;
	top: 9px;
}
.sec04 .note {
	text-align: right;
	color: #fff;
	font-size: 12px;
	font-weight: 400;
}
	
}

/*-------------------------------------------------
  sec05
--------------------------------------------------*/

.sec05 {
	margin-top: 130px;	
	min-width: 1100px;
}


.sec05 .inner {
	margin: auto;
	width: 1100px;
}

.sec05 .inner .box {
	padding: 0 20px;
}


.sec05 .title_box01 .eng_t {
	text-align: left;
}


.sec05 .title_box01 .eng_t::before {
  content: "";
  position: absolute;
	background: #51433c;
	width: 60px;
	height: 1px;
	display: block;
	bottom: -18px;
	left: 0;
	right: inherit;
	margin: auto;
}

.sec05 .title_box01 .title {
	color: #007d8a;
}

.sec05 .fix_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; 	
}

.sec05 .text_box {
	width: 60%;
	margin-top: 40px;
}

.sec05 .image {
	width: 32%;
	margin-top: -80px;
}

.sec05 .text_box li {
	position: relative;
	border-bottom: solid 1px #d9d6d4;
	box-sizing: border-box;
	padding-bottom: 16px;
	margin-bottom: 14px;
}

.sec05 .text_box li::before{
  content: '';
  position: absolute;
  bottom: -1px;
  width: 32%;
  height:1px;
	background: #51433c;
}

.sec05 .text_box dl {
	width: 100%;
	display: table;
}


.sec05 .text_box dt{
	width: 32%;
	display: table-cell;
	font-weight: bold;
	line-height: 1.4;
}
.sec05 .text_box dd{
	width: 63%;
	display: table-cell;
	padding-left: 5%;
	line-height: 1.4;
}


@media screen and (max-width: 768px) {
.sec05 {
	margin-top: 70px;	
	min-width: 100%;
}


.sec05 .inner {
	margin: auto;
	width: 90%;
	position: relative;
}

.sec05 .inner .box {
	padding: 0 0;
}


.sec05 .title_box01 .eng_t {
	text-align: left;
	font-size: 11.7vw;
}



.sec05 .title_box01 .eng_t::before {
  content: "";
  position: absolute;
	background: #51433c;
	width: 30px;
	height: 1px;
	display: block;
	bottom: -11px;
	left: 0;
	right: inherit;
	margin: auto;
}

.sec05 .title_box01 .title {
	color: #007d8a;
}

.sec05 .fix_box {
  display: block;
  justify-content: space-between;
  flex-wrap: wrap; 	
}

.sec05 .text_box {
	width: 100%;
	margin-top: 25px;
}

.sec05 .image {
	width: 20%;
	margin-top: 0;
	position: absolute;
	right: 0;
	top: -16px;
}

.sec05 .text_box li {
	position: relative;
	border-bottom: solid 1px #d9d6d4;
	box-sizing: border-box;
	padding-bottom: 10px;
	margin-bottom: 10px;
}

.sec05 .text_box li::before{
  content: '';
  position: absolute;
  bottom: -1px;
  width: 32%;
  height:1px;
	background: #51433c;
}

.sec05 .text_box dl {
	width: 100%;
	display: table;
}


.sec05 .text_box dt{
	width: 32%;
	display: table-cell;
	font-weight: bold;
	line-height: 1.4;
}
.sec05 .text_box dd{
	width: 65%;
	display: table-cell;
	padding-left: 3%;
	line-height: 1.4;
	vertical-align:middle;
}
	
}

/*-------------------------------------------------
  sec06
--------------------------------------------------*/

.sec06 {
	margin-top: 160px;	
	background: url("../images/sec06_bg.jpg") center 0 no-repeat;	
	background-size: cover;
	padding: 120px 0 70px;
	min-width: 1100px;
}

.sec06 .title_box01 .eng_t {
	color: #ddd9d7;
	text-align: left;
}
.sec06 .title_box01 .title {
	text-align: left;
	color: #fff;	
}

.sec06 .title_box01 .eng_t::before {
  content: "";
  position: absolute;
	background: #ddd9d7;
	width: 60px;
	height: 1px;
	display: block;
	bottom: -18px;
	left: 0;
	right: inherit;
	margin: auto;
}

.sec06 .inner {
	margin: auto;
	width: 1100px;
}
.sec06 .inner .box {
	padding: 0 20px;
}
.sec06 .fix_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; 	
}

.sec06 .title_box01 {
	width: 35%;
}

.sec06 .step_area {
	width: 58%;
	position: relative;
	margin-top: 80px;
}

.sec06 .step_area::before {
  content: '';
  position: absolute;
  width: 2px;
  height:85%;
	background: #fff;	
	left: 31px;
	top: 20px;
}



.sec06 .step {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; 
  align-items: center;
	margin-bottom: 44px;
	position: relative;
	z-index: 1;
}


.sec06 .step .nmv {
	width: 62px;
	height: 62px;
	background: #007d8a;
	border-radius: 100px;
	color: #fff;
  text-align: center;	
}
.sec06 .step .nmv .tx01 {
	font-size: 12px;
	text-align: center;
	font-weight: 500;	
	margin-top: 17px;
	display: inline-block;
}

.sec06 .step .nmv .f_size01 {
	font-size: 24px;
	line-height: 1;
	font-weight: 500;	
  text-align: center;	
}

.sec06 .step .t_box {
	width: 86%;
}


.sec06 .step .t_box h4 {
	color: #fff;
	font-weight: bold;
	font-size: 22px;
}
.sec06 .step .t_box .txt {
	color: #fff;
	font-size: 15px;
}
@media screen and (max-width: 768px) {
	
.sec06 {
	margin-top: 80px;	
	background: url("../images/sec06_bg.jpg") center 0 no-repeat;	
	background-size: cover;
	padding: 60px 0 35px;
	min-width: 100%;
}

.sec06 .title_box01 .eng_t {
	color: #ddd9d7;
	text-align: left;
}
.sec06 .title_box01 .title {
	text-align: left;
	color: #fff;	
}

.sec06 .title_box01 .eng_t::before {
  content: "";
  position: absolute;
	background: #ddd9d7;
	width: 30px;
	height: 1px;
	display: block;
	bottom: -11px;
	left: 0;
	right: inherit;
	margin: auto;
}

.sec06 .inner {
	margin: auto;
	width: 90%;
}
.sec06 .inner .box {
	padding: 0 0;
}
.sec06 .fix_box {
  display: block;
  justify-content: space-between;
  flex-wrap: wrap; 	
}

.sec06 .title_box01 {
	width: 100%;
}

.sec06 .step_area {
	width: 100%;
	position: relative;
	margin-top: 35px;
}

.sec06 .step_area::before {
  content: '';
  position: absolute;
  width: 2px;
  height:85%;
	background: #fff;	
	left: 22px;
	top: 20px;
}



.sec06 .step {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; 
  align-items: flex-start;
	margin-bottom: 30px;
	position: relative;
	z-index: 1;
}


.sec06 .step .nmv {
	width: 46px;
	height: 46px;
	background: #007d8a;
	border-radius: 100px;
	color: #fff;
  text-align: center;	
}
.sec06 .step .nmv .tx01 {
	font-size: 10px;
	text-align: center;
	font-weight: 500;	
	margin-top: 13px;
	display: inline-block;
}

.sec06 .step .nmv .f_size01 {
	font-size: 18px;
	line-height: 1;
	font-weight: 500;	
  text-align: center;	
}

.sec06 .step .t_box {
	width: 80%;
	margin-top: -6px;
}


.sec06 .step .t_box h4 {
	color: #fff;
	font-weight: bold;
	font-size: 17px;
	line-height: 1.5;
}
.sec06 .step .t_box .txt {
	color: #fff;
	font-size: 14px;
	line-height: 1.5;
	margin-top: 6px;
}	
}


/*-------------------------------------------------
  sec07
--------------------------------------------------*/

.sec07 {
	margin-top: 130px;	
	min-width: 1100px;
}


.sec07 .inner {
	margin: auto;
	width: 1100px;
}

.sec07 .inner .box {
	padding: 0 20px;
}

.sec07 .title_box01 .title {
	text-align: center;
	color: #007d8a;	
}



.sec07 .qa_area {
  width: min(100%, 890px);
  margin: 30px auto 0;
}

.sec07 .qa_box {
  
}

/* 質問部分 */
.sec07 .q_txt {
  appearance: none;
  display: grid;
  grid-template-columns: 34px 1fr 24px;
  align-items: center;
  width: 100%;
  padding: 27px 0 12px 0 ;
  background: transparent;
  border: 0;
  color: #51433c;
  font: inherit;
  text-align: left;
  cursor: pointer;
	border-bottom: 1px solid #51433c;
}

.q_label {
  color: #007d8a;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
	display: inline-block;
	margin-top: 9px;
}



.q_text {
  padding-left: 14px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}



/* 右側のプラス・マイナス */
.qa_icon {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  margin-left: auto;
}

.qa_icon::before,
.qa_icon::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 27px;
  height: 2px;
  background: #51433c;
  transform: translate(-50%, -50%);
  transition: transform 0.3s, opacity 0.3s;
}

.qa_icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* 開いているときはマイナス */
.q_txt.is-open .qa_icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

/* 回答部分 */
.a_wrap {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  transition:
    grid-template-rows 0.35s ease,
    visibility 0.35s;
}

.a_wrap.is-open {
  grid-template-rows: 1fr;
  visibility: visible;
}

.a_inner {
  min-height: 0;
  overflow: hidden;
}

.a_txt {
  display: grid;
  grid-template-columns: 34px 1fr;
  margin: 0;
  padding: 15px 0 0;
  color: #51433c;
}

.a_label {
  color: #b90000;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
	margin-top: 4px;
}

.a_text {
  padding-left: 14px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

/* キーボード操作時 */
.q_txt:focus-visible {
  outline: 2px solid #008599;
  outline-offset: 4px;
}







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

.sec07 {
	margin-top: 60px;	
	min-width: 100%;
}


.sec07 .inner {
	margin: auto;
	width: 90%;
}

.sec07 .inner .box {
	padding: 0 0;
}

.sec07 .title_box01 .title {
	text-align: center;
	color: #007d8a;	
}



.sec07 .qa_area {
  width: min(100%, 375px);
  margin: 10px auto 0;
}
	
	
/* 質問部分 */
.sec07 .q_txt {
  appearance: none;
  display: grid;
  grid-template-columns: 19px 1fr 32px;
  align-items:baseline;
  width: 100%;
  padding: 17px 0 7px 0 ;
  background: transparent;
  border: 0;
  color: #51433c;
  font: inherit;
  text-align: left;
  cursor: pointer;
	border-bottom: 1px solid #51433c;
}

.q_label {
  color: #007d8a;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
	display: inline-block;
	margin-top: 8px;
	position: relative;
	top:2px;
}



.q_text {
  padding-left: 14px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}



/* 右側のプラス・マイナス */
.qa_icon {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  margin-left: auto;
	top: 4px;
}

.qa_icon::before,
.qa_icon::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #51433c;
  transform: translate(-50%, -50%);
  transition: transform 0.3s, opacity 0.3s;
}



/* 回答部分 */

.qa_icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* 開いているときはマイナス */
.q_txt.is-open .qa_icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.a_txt {
  display: grid;
  grid-template-columns: 18px 1fr;
  margin: 0;
  padding: 12px 0 0;
  color: #51433c;
}

.a_label {
  color: #b90000;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
	margin-top: 3px;
}

.a_text {
  padding-left: 14px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

/* キーボード操作時 */
.q_txt:focus-visible {
  outline: 2px solid #008599;
  outline-offset: 4px;
}
}

/*-------------------------------------------------
  sec08
--------------------------------------------------*/

.sec08 {
	margin-top: 160px;	
	background: url("../images/sec08_bg.jpg") center 0 no-repeat;	
	background-size: cover;
	padding: 110px 0 100px;
	min-width: 1100px;
}

.sec08 .title_box01 .eng_t {
	color: #ddd9d7;
}


.sec08 .title_box01 .eng_t::before {
  content: "";
  position: absolute;
	background: #ddd9d7;
	width: 60px;
	height: 1px;
	display: block;
	bottom: -18px;
	left: 0;
	right: 0;
	margin: auto;
}

.sec08 .title_box01 .title {
	text-align: center;
	color: #fff;
}

.sec08 .inner {
	margin: auto;
	width: 1100px;
}
.sec08 .inner .box {
	padding: 0 20px;
}


.sec08 .fix_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
	width: 940px;
	margin: 40px auto 0;
}

.sec08 .fix_box .item {
  width: calc((100% - 40px) / 3);
}

.sec08 .fix_box .item .i_inner {
  --line-color: #fff;   /* 線色 */
  --line-width: 1px;    /* 線の太さ */
  --cut-size: 22px;     /* 角落ちの長さ */

  position: relative;
  padding: 29px 10px;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* 角落ちした枠線 */
.sec08 .fix_box .item .i_inner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    /* 左上の斜線 */
    linear-gradient(135deg,
      transparent calc(50% - 0.5px),
      var(--line-color) calc(50% - 0.5px),
      var(--line-color) calc(50% + 0.5px),
      transparent calc(50% + 0.5px)
    ) left top / var(--cut-size) var(--cut-size) no-repeat,

    /* 上線 */
    linear-gradient(var(--line-color), var(--line-color))
    left var(--cut-size) top 0 / calc(100% - var(--cut-size)) var(--line-width) no-repeat,

    /* 右線 */
    linear-gradient(var(--line-color), var(--line-color))
    right 0 top 0 / var(--line-width) calc(100% - var(--cut-size)) no-repeat,

    /* 右下の斜線 */
    linear-gradient(135deg,
      transparent calc(50% - 0.5px),
      var(--line-color) calc(50% - 0.5px),
      var(--line-color) calc(50% + 0.5px),
      transparent calc(50% + 0.5px)
    ) right bottom / var(--cut-size) var(--cut-size) no-repeat,

    /* 下線 */
    linear-gradient(var(--line-color), var(--line-color))
    left 0 bottom 0 / calc(100% - var(--cut-size)) var(--line-width) no-repeat,

    /* 左線 */
    linear-gradient(var(--line-color), var(--line-color))
    left 0 top var(--cut-size) / var(--line-width) calc(100% - var(--cut-size)) no-repeat;
}

.sec08 .fix_box .item .txt {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
	text-align: center;
  line-height: 1.8;
}



.sec08 .link_box {
	margin-top: 40px;
	text-align: center;
}
.sec08 .link_box .read{
	position: relative;
	text-align: center;
	font-weight: bold;
	font-size: 20px;
	display: inline-block;
	color: #fff;
}
.sec08 .link_box .read::before {
  content: "";
  position: absolute;
	background: url("../images/t_icon01.png") 0 0 no-repeat;	
	background-size: 100% auto;
	width: 17px;
	height: 25px;
	display: block;
	left: -27px;
	top: 7px;
}
.sec08 .link_box .read::after {
  content: "";
  position: absolute;
	background: url("../images/t_icon02.png") 0 0 no-repeat;	
	background-size: 100% auto;
	width: 17px;
	height: 25px;
	display: block;
	right: -16px;
	top: 7px;
}

.sec08 .l_fix_box {
	display: flex;
  justify-content: space-between;
  flex-wrap: wrap; 
	width: 920px;
	margin: 15px auto 0;
}

.sec08 .link01 {
	width: 450px;
}
.sec08 .link02 {
	width: 450px;
}
.sec08 .link01 a {
  position: relative;
  overflow: hidden;
  z-index: 0;		
	background: #dd8612;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	padding: 28px 0 28px;
	border-radius: 100px;
	width: 450px;
	display: block;
	border: solid 1px #dd8612;
	box-sizing: border-box;		
}

.sec08 .link01 a .l_txt {
	display: inline-block;
	color: #dd8612;
	font-weight: bold;
	font-size: 18px;
	margin-left: 10px;
	background: #fff;
	padding: 3px 6px 5px;
  line-height: 1;
  transition: all 0.3s ease;	
}


.sec08 .link01 a:hover .l_txt {
 background: #dd8612;	
	color: #fff;
}



.sec08 .link01 a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #fff;

  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
  z-index: -1;
}

.sec08 .link01 a:hover {
  color: #dd8612;
  opacity: 1;
}



.sec08 .link01 a:hover::before {
  transform: scaleY(1);
}





.sec08 .link02 a {
  position: relative;
  z-index: 0;
  overflow: hidden;	
	background: #007d8a;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	padding: 28px 0 28px;
	border-radius: 100px;
	width: 450px;
  display: block;	
  border: 1px solid #007d8a;
	box-sizing: border-box;
}
/* 下からせり上がる白背景 */
.sec08 .link02 a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
}

/* 右側アイコン */
.sec08 .link02 a::before {
  content: "";
  position: absolute;
  right: 26px;
  top: 50%;
  width: 30px;
  height: 26px;
  margin-top: -14px;
  background: url("../images/l_icon01.png") 0 0 / 100% auto no-repeat;
 transition: all 0.3s ease;
}

.sec08 .link02 a:hover {
  color: #007d8a;
  opacity: 1;
}

.sec08 .link02 a:hover::after {
  transform: scaleY(1);
}

.sec08 .link02 a:hover::before {
  background-image: url("../images/l_icon01_on.png");
}


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

.sec08 {
	margin-top: 80px;	
	background: url("../images/sec08_bg.jpg") center 0 no-repeat;	
	background-size: cover;
	padding: 60px 0 45px;
	min-width: 100%;
}

.sec08 .title_box01 .eng_t {
	color: #ddd9d7;
}


.sec08 .title_box01 .eng_t::before {
  content: "";
  position: absolute;
	background: #ddd9d7;
	width: 30px;
	height: 1px;
	display: block;
	bottom: -11px;
	left: 0;
	right: 0;
	margin: auto;
}

.sec08 .title_box01 .title {
	text-align: center;
	color: #fff;
	font-size: 23px;
}

.sec08 .inner {
	margin: auto;
	width: 90%;
}
.sec08 .inner .box {
	padding: 0 0;
}


.sec08 .fix_box {
  display: block;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
	width: 100%;
	margin: 28px auto 0;
}

.sec08 .fix_box .item {
  width: 100%;
	margin-bottom: 10px;
}

.sec08 .fix_box .item .i_inner {
  --line-color: #fff;   /* 線色 */
  --line-width: 1px;    /* 線の太さ */
  --cut-size: 22px;     /* 角落ちの長さ */

  position: relative;
  padding: 15px 10px;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* 角落ちした枠線 */
.sec08 .fix_box .item .i_inner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    /* 左上の斜線 */
    linear-gradient(135deg,
      transparent calc(50% - 0.5px),
      var(--line-color) calc(50% - 0.5px),
      var(--line-color) calc(50% + 0.5px),
      transparent calc(50% + 0.5px)
    ) left top / var(--cut-size) var(--cut-size) no-repeat,

    /* 上線 */
    linear-gradient(var(--line-color), var(--line-color))
    left var(--cut-size) top 0 / calc(100% - var(--cut-size)) var(--line-width) no-repeat,

    /* 右線 */
    linear-gradient(var(--line-color), var(--line-color))
    right 0 top 0 / var(--line-width) calc(100% - var(--cut-size)) no-repeat,

    /* 右下の斜線 */
    linear-gradient(135deg,
      transparent calc(50% - 0.5px),
      var(--line-color) calc(50% - 0.5px),
      var(--line-color) calc(50% + 0.5px),
      transparent calc(50% + 0.5px)
    ) right bottom / var(--cut-size) var(--cut-size) no-repeat,

    /* 下線 */
    linear-gradient(var(--line-color), var(--line-color))
    left 0 bottom 0 / calc(100% - var(--cut-size)) var(--line-width) no-repeat,

    /* 左線 */
    linear-gradient(var(--line-color), var(--line-color))
    left 0 top var(--cut-size) / var(--line-width) calc(100% - var(--cut-size)) no-repeat;
}

.sec08 .fix_box .item .txt {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
	text-align: center;
  line-height: 1.6;
}



.sec08 .link_box {
	margin-top: 30px;
	text-align: center;
}
.sec08 .link_box .read{
	position: relative;
	text-align: center;
	font-weight: bold;
	font-size: 4.2vw;
	display: inline-block;
	color: #fff;
}
.sec08 .link_box .read::before {
  content: "";
  position: absolute;
	background: url("../images/t_icon01.png") 0 0 no-repeat;	
	background-size: 100% auto;
	width: 5%;
	height: 100%;
	display: block;
	left: -20px;
	top: 6px;
}
.sec08 .link_box .read::after {
  content: "";
  position: absolute;
	background: url("../images/t_icon02.png") 0 0 no-repeat;	
	background-size: 100% auto;
	width: 5%;
	height: 100%;
	display: block;
	right: -12px;
	top: 6px;
}

.sec08 .l_fix_box {
	display: block;
  justify-content: space-between;
  flex-wrap: wrap; 
	width: 90%;
	margin: 15px auto 0;
}

.sec08 .link01 {
	width: 100%;
	margin-bottom: 15px;
}
.sec08 .link02 {
	width: 100%;
}
.sec08 .link01 a {
	background: #dd8612;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	padding: 12px 0 12px;
	border-radius: 100px;
	width: 100%;
	display: block;
	line-height: 1.5;
}

.sec08 .link01 a .l_txt {
	display: inline-block;
	color: #dd8612;
	font-weight: bold;
	font-size: 12px;
	margin-left: 5px;
	background: #fff;
	padding: 2px 5px 4px;
  line-height: 1;
}
	
	

	
	
.sec08 .link02 a {
	background: #007d8a;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	padding: 22px 0 22px;
	border-radius: 100px;
	width: 100%;
  display: block;	
	position: relative;
}	
	
.sec08 .link02 a::before {
  content: "";
  position: absolute;	
	background: url("../images/l_icon01.png") 0 0 no-repeat;	
	background-size: 100% auto;
	width: 18px;
	height: 20px;
	right: 16px;
	top: 50%;
	margin-top: -8px;
}

	
	
	
	
	
}



/*-------------------------------------------------
  footer
--------------------------------------------------*/

footer {
	min-width: 1100px;
}


footer .inner {
	margin: auto;
	width: 1100px;
}

footer .inner .box {
	padding: 5px 20px 30px;
}

footer .f_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; 	
  align-items: center;
}

footer .f_logo {
	width: 192px;
}

footer .info {
	text-align: right;
}

footer .info .txt {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	margin: 0;
	padding: 0;	
	text-align: right;
}
footer .info .txt a {
	text-decoration: underline;	
}

footer .info .t_link {
	line-height: 1;
}

footer .info .t_link a {
	font-size: 14px;
	font-weight: 400;		
	line-height: 1;
	text-decoration: underline;
}





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

footer {
	min-width: 100%;
}


footer .inner {
	margin: auto;
	width: 90%;
}

footer .inner .box {
	padding: 0 0 25px;
}

footer .f_box {
  display: block;
  justify-content: space-between;
  flex-wrap: wrap; 	
  align-items: center;
}

footer .f_logo {
	width: 55%;
	margin: auto;
	margin-bottom: 15px;
}

footer .info {
	text-align: center;
}

footer .info .txt {
	font-size: 11px;
	font-weight: 400;
	line-height: 1.5;
	margin: 0;
	padding: 0;	
	text-align: center;
}


footer .info .t_link {
	line-height: 1;
}

footer .info .t_link a {
	font-size: 12px;
	font-weight: 400;		
	line-height: 1.4;
	text-decoration: underline;
}
	
}

/*-------------------------------------------------
  thanks
--------------------------------------------------*/

.thanks {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.thanks .inner {
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.thanks .inner .box {
  text-align: center;
}

.thanks .title_box01 .title {
  text-align: center;
	color: #007d8a;
}
.thanks .read {
	margin-top: 20px;
}

@media screen and (max-width: 768px)  {
.thanks .inner {
  width: 90%;
}
	
}




.fix_link {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 222;
  width: 100%;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fix_link.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.fix_link .b_box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
	margin: auto;
}
.fix_link .link01 {
	width: 47%;
	margin: 10px 2% 10px 1%;
	display: inline-block;
}
.fix_link .phone {
	width: 47%;
	margin: 10px 1% 10px 2%;
 display: inline-block;
}

.fix_link .link01 a {
	background: #dd8612;
	color: #fff;
	font-size: 3.6vw;
	font-weight: bold;
	text-align: center;
	width: 100%;
	display: inline-block;
	height: 50px;
	line-height: 50px;
	border-radius: 100px;
}

.fix_link .link01 a .l_txt {
	display: inline-block;
	color: #dd8612;
	font-weight: bold;
	font-size: 3.2vw;
	margin-left: 4px;
	background: #fff;
	line-height: 1;
	padding: 1.3%;
}

.fix_link .phone a {
	background: #51433c;
	color: #fff;
	width: 100%;
	border-radius: 100px;
	display: block;
	height: 50px;
	line-height: 50px;
	text-align: center;
}

.fix_link .phone a span{
	font-size: 5vw;
	font-weight: 500;
	text-align: center;
	position: relative;
	display: inline-block;
	padding-top: 3px;
	padding-left: 20px;
}

.fix_link .phone a span::before {
	content: "";
	position: absolute;
	background: url("../images/tel.png") left 0 no-repeat;	
	background-size: 100% auto;
	left: -6px;
	width: 10%;
	height: 100%;
	top: 50%;
	margin-top: -6%;
}




.contact {
	min-width: 1100px;
	margin-top: 80px;
	margin-bottom: 80px;
}

.contact .inner {
	margin: auto;
	width: 1100px;
}
.contact .inner .box {
	padding: 0 20px;
}

@media screen and (max-width: 768px) {
.contact {
	min-width: 100%;
	margin-top: 50px;
	margin-bottom: 50px;
}

.contact .inner {
	margin: auto;
	width: 90%;
}
.contact .inner .box {
	padding: 0;
}
	
}




