@charset "utf-8";

.header_home .logo,
.header_home .sitename_wrap {
  opacity: 0;
  transition: opacity 1.5s ease, transform 1.5s ease;
}
.header_home .logo.show-header,
.header_home .sitename_wrap.show-header {
  opacity: 1;
}

/*--------------------------------------
　loading
---------------------------------------*/
.wrap {
  background: #fdfaf5;
}
  
.loading {
  background: #fdfaf5;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}

body.is-lock {
  overflow: hidden;
}

.loading.is-end {
  position: relative;
  inset: auto;
  background: none;
  height: auto;
  z-index: auto;
  padding: 0 0 8rem;
}

.loading-animation {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 900px;
  position: relative;
}

.loading_bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fbf2e4;
  width: 800px;
  height: 800px;
  border: 45px solid #ffd37d;
  border-radius: 50%;
  box-shadow: 0 0 0 50px #ffefd0;
  z-index: 0;
  opacity: 0;
  animation: loadingBgMove 4s ease forwards;
  animation-delay: 0.5s;
}
.loading.is-visited .loading_bg {
  opacity: 1;
  transform: translate(0%, -50%) scale(1);
  animation: none;
}

@keyframes loadingBgMove {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
    background: #fbf2e4;
  }
  20% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    background: #fbf2e4;
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    background: #fbf2e4;
  }
  100% {
    opacity: 1;
    transform: translate(0%, -50%) scale(1);
    background: rgba(255,239,208,0);
  }
}

.loading .img_box {
  width: 710px;
  height: 710px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  animation: imgBoxFade 7s ease forwards;
  animation-delay: 0.5s;
}
.loading.is-visited .img_box {
  opacity: 1;
  transform: scale(1);
  animation: none;
}
@keyframes imgBoxFade {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.loading .img_box .img {
  width: 100%;
  height: 100%;
  position: relative;
}
.loading .img_box img {
  position: absolute;
  inset: 0;   
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: mvSlider 25s ease-in-out infinite;
}
.loading .img_box .img img:nth-child(1) {
  animation-delay: 3s;
}
.loading .img_box .img img:nth-child(2) {
  animation-delay: 8s;
}
.loading .img_box .img img:nth-child(3) {
  animation-delay: 13s;
}
.loading .img_box .img img:nth-child(4) {
  animation-delay: 18s;
}
.loading .img_box .img img:nth-child(5) {
  animation-delay: 23s;
}

.loading.is-visited .img_box {
  opacity: 1;
  transform: scale(1);
  animation: none;
}
.loading.is-visited .img_box .img img:nth-child(1) {
  animation-delay: 0s;
}
.loading.is-visited .img_box .img img:nth-child(2) {
  animation-delay: 5s;
}
.loading.is-visited .img_box .img img:nth-child(3) {
  animation-delay: 10s;
}
.loading.is-visited .img_box .img img:nth-child(4) {
  animation-delay: 15s;
}
.loading.is-visited .img_box .img img:nth-child(5) {
  animation-delay: 20s;
}

@keyframes mvSlider {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  5% {
    opacity: 1;
    transform: scale(1);
  }
  20% {
    opacity: 1;
    transform: scale(1.1);
  }
  25% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

.loading_block {
  width: 1000px;
  margin: auto;
  position: relative;
}

.loading .subttl_wrap {
  text-align: center;
}
.loading .subttl {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: left;
  font-size: 24px;
  font-weight: bold;
  opacity: 0;
  animation: subttlMove 7s ease forwards;
  animation-delay: 0.5s;
}
.loading.is-visited .subttl {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, 0) scale(1);
  opacity: 1;
  animation: none;
}

@keyframes subttlMove {
  0% {
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.6);
  }
  20% {
    top: 50%;
    left: 50%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.6);
  }
  30% {
    top: 50%;
    left: 50%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.6);
  }
  60% {
    top: 50%;
    left: 0%;
    opacity: 1;
    transform: translate(0, -50%) scale(1.6);
  }
  100% {
    top: 0%;
    left: 0%;
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

.loading .mv_ttl {
  display: inline-block;
  margin: 10rem 0 0;
  width: 0;
	font-size: 42px;
	font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  animation: mv_ttlMove 2.5s ease-in-out forwards;
  animation-delay: 5.5s;
}
.loading.is-visited .mv_ttl {
  opacity: 1;
  width: 100%;
  transform: scale(1);
  animation: none;
}
@keyframes mv_ttlMove {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.loading .mv_txt {
  margin: 3rem 0 0;
	font-size: 18px;
  line-height: 2;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 7s;
}
.loading.is-visited .mv_txt {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

.loading .caption {
  margin: 3rem 0 0;
  color: #383030;
	font-size: 10px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 7.2s;
}
.loading.is-visited .caption {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

.loading .kazari01 {
  position: absolute;
  bottom: -250px;
  right: -80px;
  width: 280px;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 7.5s;
}
.loading.is-visited .kazari01 {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

.loading .kazari02 {
  position: absolute;
  bottom: -150px;
  left: -80px;
  width: 220px;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 7.5s;
}
.loading.is-visited .kazari02 {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

.mv_scroll {
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
  margin: auto;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 7.5s;
}
.loading.is-visited .mv_scroll {
  opacity: 1;
  animation: none;
}

.mv_scroll_txt {
  width: 140px;
  margin: auto;
  position: relative;
}
.mv_scroll_txt::after {
  content: "";
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%,0);
  width: 1px;
  height: 60px;
  background: #383030;
  animation: liner 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes liner {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  30% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  70% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 768px) {
  .wrap {
    overflow: visible;
  }

  .loading {
    overflow: hidden;
  }

  body.is-lock {
    overflow: hidden;
  }

  .loading.is-end {
    position: relative;
    inset: auto;
    background: none;
    height: auto;
    z-index: auto;
    padding: 0 0 0.8rem;
  }

  .loading-animation {
    width: 100%;
    height: auto;
    position: relative;
    display: block;
  }

  .loading_bg-animation {
    width: 100%;
    height: 100vh;
    position: absolute;
    display: block;
  }
  .loading_bg {
    position: absolute;
    display: block;
    margin: auto;
    inset: 0;
    width: 330px;
    height: 330px;
    border: 20px solid #ffd37d;
    box-shadow: 0 0 0 20px #ffefd0;
    opacity: 0;
    animation: loadingBgMoveSP 4s ease forwards;
    animation-delay: 0.5s;
  }
  .loading.is-visited .loading_bg {
    top: -60vh;
    left: 20%;
    right: unset;
    opacity: 1;
    transform: scale(1);
    animation: none;
  }

  @keyframes loadingBgMoveSP {
    0% {
      inset: 0;
      opacity: 0;
      transform: scale(1);
      background: #fbf2e4;
    }
    20% {
      inset: 0;
      opacity: 1;
      transform: scale(1);
      background: #fbf2e4;
    }
    50% {
      inset: 0;
      opacity: 1;
      transform: scale(1);
      background: #fbf2e4;
    }
    100% {
      top: -60vh;
      left: 20%;
      right: unset;
      opacity: 1;
      transform:scale(1);
      background: rgba(255,239,208,0);
    }
  }

  .loading .img_box {
    width: 100%;
    height: 100%;
    animation: imgBoxFade 4s ease forwards;
    animation-delay: 0.5s;
  }

  .loading_block {
    width: 100%;
    padding: 0 2rem;
  }

  .loading .subttl_wrap {
    position: absolute;
    width: 100%;
    height: 100vh;
    left: 0rem;
  }
  .loading.is-visited .subttl_wrap {
    align-items: flex-start;
    justify-content: flex-start;
  }
  .loading .subttl {
    position: absolute;
    animation: subttlMoveSP 7s ease forwards;
    animation-delay: 0.5s;
    font-size: 2.5rem;
    opacity: 0;
    text-align: left;
    top: 50%;
    left: 50%;
    transform: scale(1) translate(calc(-50% + 2rem), calc(-50% - 1rem));
    width: 80%;
    display: block;
  }
  .loading.is-visited .subttl {
    position: relative;
    left: -3.4rem;
    top: 32rem;  
    transform: scale(.64) translate(0,0);
    opacity: 1;
    animation: none;
    font-size: 2.7rem;
  }

  @keyframes subttlMoveSP {
    0% {
      opacity: 0;
      top: 50%;
      left: 50%;
      transform: scale(1) translate(calc(-50% + 2rem), calc(-50% - 1rem));
    }
    28% {
      top: 50%;
      left: 50%;
      transform: scale(1) translate(calc(-50% + 2rem), calc(-50% - 1rem));
      opacity: 1;
    }
    /*30% {
      top: 50%;
      left: 50%;
      transform: scale(1) translate(calc(-50% + 2rem), calc(-50% - 1rem));
      opacity: 1;
    }
    60% {
      opacity: 1;
      left: 2rem;
      top: 36rem;
      transform: scale(.64) translate(0,0);
    }*/
    70% {
      opacity: 1;
      left: -4rem;
      top: 33rem;  
      transform: scale(.64) translate(0,0);
    }
    100% {
      opacity: 1;
      left: -4rem;
      top: 33rem;  
      transform: scale(.64) translate(0,0);
    }
  }

  .loading .mv_ttl {
    margin: 43rem 0 0;
    font-size: 2.5rem;
    animation: mv_ttlMove 2s ease-in-out forwards;
    animation-delay: 3.5s;
  }

  .loading .mv_txt {
    margin: 0.8rem 0 0;
    font-size: 1.4rem;
    line-height: 1.8;
    animation: fadeUp 1.2s ease forwards;
    animation-delay: 5s;
  }
  .loading.is-visited .mv_txt {
    opacity: 1;
    transform: translateY(0);
    animation: none;
  }

  .loading .caption {
    margin: 1.5rem 0 0;
    font-size: 1rem;
    animation: fadeUp 1.2s ease forwards;
    animation-delay: 5.2s;
  }
  .loading.is-visited .caption {
    opacity: 1;
    transform: translateY(0);
    animation: none;
  }

  .loading .kazari01 {
    bottom: inherit;
	top: 20rem;
    right: inherit;
    left: 25px;
    width: 11rem;
    animation: fadeUp 1.2s ease forwards;
    animation-delay: 5.5s;
  }
  .loading.is-visited .kazari01 {
    opacity: 1;
    transform: translateY(0);
    animation: none;
  }

  .loading .kazari02 {
    position: relative;
    bottom: 30px;
    left: 20px;
    width: 25%;
    /* animation: fadeUp 1.2s ease forwards;
    animation-delay: 5.5s; */
  }
  .loading.is-visited .kazari02 {
    opacity: 1;
    transform: translateY(0);
    animation: none;
  }

  .mv_scroll {
    position: relative;
    bottom: inherit;
    left: inherit;
    width: 100%;
    margin: 3rem auto 0;
    animation: fadeUp 1.2s ease forwards;
    animation-delay: 5.5s;
  }
  .loading.is-visited .mv_scroll {
    opacity: 1;
    animation: none;
  }

  .mv_scroll_txt {
    width: 35%;
  }
  .mv_scroll_txt::after {
    top: calc(100% + 5px);
    width: 1px;
    height: 40px;
  }
}


/*--------------------------------------
　Main Index
---------------------------------------*/
.contents_top {
	width: 100%;
	min-width: 1000px;
	margin: auto;
	box-sizing: border-box;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.contents_top {
	overflow: visible!important;
}

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

.sec .inner {
	max-width: 1000px;
	margin: auto;
	box-sizing: border-box;
}

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


/*--------------------------------------
　テキスト
---------------------------------------*/
.contents_top p {
	margin: 3rem 0 3rem;
	font-size: 1.8rem;
	line-height: 2;
}

p.txt {
	margin: 3rem 0 3rem;
	font-size: 1.8rem;
	text-align: justify;
	line-height: 2;
}

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

.caption {
	margin: 1rem 0 0 0;
	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;
  	font-size: 1.6rem;
		line-height: 1.8;
	}

	p.txt {
		margin: 2rem 0 2rem;
  	font-size: 1.6rem;
		line-height: 1.8;
	}

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


/*--------------------------------------
　toc_parts
---------------------------------------*/
.contents_top #toc ul.chapter li:nth-child(1) {
  display: none;
}
.contents_top #toc .chapter .chapter {
  display: none;
}


/*--------------------------------------
　sec02
---------------------------------------*/
.sec02  {
	padding: 18rem 0 10rem;
  contain: paint;
}
.contents_top .upper {
	display: flex;
	justify-content: space-between;
	position: relative;
}
.sec02 .upper:before {
	display: block;
	content: "";
	background: url("img/sec02_illust01.png") center no-repeat;
	background-size: cover;
	width: 170px;
	height: 80px;
	position: absolute;
	left: -80px;
	top: -100px;
}

.sec02 .inner:first-child {
  margin: 0 44rem 7rem;
  width: 1100px;
}
.contents_top .upper .left {
	width: 48%;
}
.contents_top .upper .subttl {
	display: flex;
	justify-content: space-between;
	font-size:2.4rem;
}
.contents_top .upper .ttl {
	font-size: 3.4rem;
}
.contents_top .upper .right {
	width: 50%;
}
/*------- phase -------*/
.phase_container {
  position: relative;
	margin-bottom:10rem;
}
.phase_sticky {
  position: sticky;
  top: 0;
  /*height: 100vh;
	overflow: hidden;*/
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.phasebtn_box {
	display: flex;
	justify-content:space-between;
	margin: 3rem 44rem 8rem;
	width: 1000px;
}
.phasebtn_box > div{
  display: table;
  width: 250px;
  position: relative;
}
.phasebtn_box > div .eng{
	position: absolute;
	bottom: 94%;
	line-height: 1;
	font-size: 3rem;
	width:60%;
	text-align: center;
	left: 50%;
	transform: translate(-50%,0);
}

.phasebtn_box > div::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 1rem;      /* ずらし量はお好みで調整 */
  left: 1rem;
  border-radius: 100px;
  background: #ffbaba;
  border: 1px solid #383030;
  z-index: 0;
}

.phasebtn_box > .phasebtn_02::before {
  background: #77c6b3;
}
.phasebtn_box > .phasebtn_03::before {
  background: #ffd37d;
}

.phasebtn_box a{
  display: block;
  width: 100%;
  padding: 1.5rem 4rem;
  box-sizing: border-box;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  border-radius: 100px;
  text-decoration: none !important;
  position: relative;
  background: #fff;     
  border: 1px solid #383030;
  z-index: 1; 
}
.phasebtn_box a:hover {
	opacity: 1;
}
.phasebtn_box > .phasebtn_01.is-active a{
	background: #ffbaba;
}
.phasebtn_box > .phasebtn_02.is-active a{
	background: #77c6b3;
}
.phasebtn_box > .phasebtn_03.is-active a{
	background: #ffd37d;
}
.flag_bar{
    width: 1020px;
    margin: 0 43rem 2rem;
    position: relative;
}
.flag {
	width: 44px;
	position: absolute;
	left: 0%;
	bottom: 0;
	transition: left .4s ease;
}
.phase_bar{
	width: 100%;
	background: #ffd37d;
	height: 22px;
	border-radius: 100px;
}
.cards_wrap{
	padding: 0 40px;
	box-sizing: border-box;
}
.cards {
  display: flex;
  transition: transform 0.1s;
  background: url("img/flow.webp") left top no-repeat;
  background-size: auto 85%;
  width: 2868px;
}
.card {
  flex: 0 0 auto;
  width: 856px;
	height: 700px;
	position: relative;
}
  /* 各テキスト（吹き出し）の基本スタイル */
.phase_label {
  position: absolute;
  display: inline-block;
  background: #fff;
  border-radius: 999px;
  border: 1px solid #383030;
  font-size: 1.4rem;
  line-height: 1.6;
  width: 160px;
  height: 160px;
  cursor: pointer;
}
.label_inner {
	position: relative;
	width: 100%;
	height: 100%;
}
.label_inner .label_txt {
	position: absolute;
	width: 100%;
	left: 0;
	top: 50%;
	transform: translate(0,-50%);
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
}
.label_inner .open {
	position: absolute;
	width: 4rem;
	height: 4rem;
	bottom: 0rem;
	right:0;
}
.label01::after,
.label02::after,
.label03::after,
.label04::after,
.label05::after,
.label06::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 10;
}


@media screen and (min-width: 769px) {
.phase_label.label01,
.phase_label.label03,
.phase_label.label05 {
  top: 11%; 
}

.phase_label.label02,
.phase_label.label04,
.phase_label.label06 {
  bottom: 25.5%;
}

.phase_content03 .label01,
.phase_content03 .label03,
.phase_content03 .label05 {
  top: unset;
  bottom: 25.5%;
}

.phase_content03 .label02,
.phase_content03 .label04,
.phase_content03 .label06 {
  bottom: unset;
  top: 11%; 
}


/* phase_content01 */
.phase_content01 .label01 {
  left: 8%;
}
.phase_content01 .label02 {
  left: 19%;
}
.phase_content01 .label03 {
  left: 35%;
}
.phase_content01 .label04 {
  left: 47%;
}
.phase_content01 .label05 {
  left: 61%;
}
.phase_content01 .label06 {
  left: 74%;
}
/* phase_content02 */
.phase_content02 .label01 {
  left: 1%;
}
.phase_content02 .label02 {
  left: 18%;
}
.phase_content02 .label03 {
  left: 33%;
}
.phase_content02 .label04 {
  left: 48%;
}
.phase_content02 .label05 {
  left: 62%;
}
/* phase_content03 */
.phase_content03 .label01 {
  left: -5%;
}
.phase_content03 .label02 {
  left: 6%;
}
.phase_content03 .label03 {
  left: 25%;
}
.phase_content03 .label04 {
  left: 38%;
}

.label01::after,
.label02::after,
.label03::after,
.label04::after,
.label05::after,
.label06::after {
  left: 50%;
}



.phase_content:not(.phase_content03) .label01::after,
.phase_content:not(.phase_content03) .label03::after,
.phase_content:not(.phase_content03) .label05::after,
.phase_content03 .label02::after,
.phase_content03 .label04::after,
.phase_content03 .label06::after  {
  top: 104%;
  transform: translateX(-50%);
  background: url('img/dot_up.svg') no-repeat center center;
  width: 23px;
  height: 63px;
}

.phase_content:not(.phase_content03) .label02::after,
.phase_content:not(.phase_content03) .label04::after,
.phase_content:not(.phase_content03) .label06::after,
.phase_content03 .label01::after,
.phase_content03 .label03::after,
.phase_content03 .label05::after {
  bottom: 106%;
  background: url('img/dot_down.svg') no-repeat center center;
  width: 23px;
  height: 65px;
  left: 44%;
}
}


/*------- check -------*/
.check_box {
	background: #fff;
	border: 1px solid #383030;
	border-radius: 40px;
	padding: 80px;
	position: relative;
}
.check_box .check_ttl {
	position: absolute;
	left: 3rem;
	top: -6rem;
	width: 120px;
}
.check_box .midashi {
	font-weight: bold;
	font-size: 2.6rem;
	margin-bottom: 2rem;
}
.check_box .kazari01 {
	position: absolute;
	left: 18rem;
	top: -7rem;
	width: 340px;
}
.check_box .kazari02 {
	position: absolute;
	left: 50%;
	transform: translate(-50%,0);
	bottom: -8rem;
	width: 28px;
}
.check_box .check_box_inner {
	display: flex;
	justify-content: space-between;
}
.check_box .left {
	width: 57%;
}
.check_box .right {
	width: 38%;
}
@media screen and (max-width: 768px) {
.sec02  {
	padding: 8rem 0 5rem;
}
.sec02 .inner,
.sec02 .inner:first-child {
  margin: 0;
  width: auto;
}
.contents_top .upper {
	display: block;
}
.sec02 .upper:before {
	display: block;
	content: "";
	background: url("img/sec02_illust01.png") center no-repeat;
	background-size: cover;
	width: 88px;
	height: 40px;
	left: 0;
	top: -50px;
}
.contents_top .upper .left {
	width: 100%;
	margin-bottom: 2rem;
}
.contents_top .upper .subttl {
	display: block;
	justify-content: space-between;
	font-size:1.6rem;
}
.contents_top .upper .ttl {
	font-size: 3rem;
	margin: 0!important;
}
.contents_top .upper .right {
	width: 100%;
}
	
/*------- phase -------*/
.phase_container {
	margin-bottom:10rem;
}	
.phase_sticky {
  position: static;      /* inherit ではなく static でOK */
  top: auto;
  height: auto;
  overflow: visible;     /* ★ ここを visible に */
}

.phasebtn_box {
  display: flex;
  justify-content: space-between;
  margin: 4rem auto;
  width: 100%;
  padding: 0 2rem;
  box-sizing: border-box;
  position: sticky;      /* ← これで viewport に対して sticky */
  top: 7rem;
  z-index: 10;           /* 上にかぶせたい場合 */
  background: #fdfaf5;      /* 下のカードが透けて見えないように */
}
	
.phasebtn_box > div{
  display: table;
  width: 31%;
  position: relative;
	pointer-events:inherit;
}
.phasebtn_box > div .eng{
	bottom: 98%;
	line-height: 1;
	font-size: 1.2rem;
}

.phasebtn_box > div::before {
  top: 0.4rem;      /* ずらし量はお好みで調整 */
  left: 0.4rem;
  border-radius: 15px;
}
.phasebtn_box a{
  padding: 8px 1rem;
  font-size: 1.3rem;
  border-radius: 15px;
}
  
.phasebtn_box > div.phasebtn_01.is-active a {
  background: #ffbaba;
}
.phasebtn_box > div.phasebtn_02.is-active a {
  background: #77c6b3;
}
.phasebtn_box > div.phasebtn_03.is-active a {
  background: #ffd37d;
}
  
.flag_bar{
	display: none;
}
.cards_wrap{
	padding: 0 2rem;
}
.cards {
  display: block;
	transition: transform 0.1s;
	width: 100%;
	background-image: url('img/sp_flow.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    aspect-ratio: 6.5 / 26; /* アスペクト比を保持してレスポンシブ */
}
.card {
  flex: 0 0 auto;
  width: 100%;
	height: 33%;
	position: relative;
}
  /* 各テキスト（吹き出し）の基本スタイル */
.phase_label {
  padding: 1rem;
  font-size: 1.1rem;
  width: 100px;
  height: 100px;
  z-index: 2;
  left: 0;
  right: 0;
  margin: auto;
}
.label_inner .label_txt {
	font-size:1.1rem;
}
.label_inner .open {
	position: absolute;
	width: 3rem;
	height: 3rem;
	bottom: -1rem;
	right:-1rem;
}
.phase_label.label01,
.phase_label.label03,
.phase_label.label05 {
	right: 20.1rem;
}

.phase_label.label02,
.phase_label.label04,
.phase_label.label06 {
	left: 20.6rem;
}

.phase_content03 .label01,
.phase_content03 .label03,
.phase_content03 .label05 {
	left: 20.6rem;
	right: 0;
}

.phase_content03 .label02,
.phase_content03 .label04,
.phase_content03 .label06 {
	right: 20.2rem;
	left: 0;
}

/* phase_content01 */
.phase_content01 .label01 {
  top: 15%; 
}
.phase_content01 .label02 {
	top: 32%;
}
.phase_content01 .label03 {
  top: 50%; 
}
.phase_content01 .label04 {
  top: 67%;
}
.phase_content01 .label05 {
  top: 80%; 
}
.phase_content01 .label06 {
  top: 102%;
}
/* phase_content02 */
.phase_content02 .label01 {
  top: 19%; 
}
.phase_content02 .label02 {
	top: 37%;
}
.phase_content02 .label03 {
  top: 54%; 
}
.phase_content02 .label04 {
  top: 73%;
}
.phase_content02 .label05 {
  top: 91%; 
}
/* phase_content03 */
.phase_content03 .label01 {
  top: 8%;
}
.phase_content03 .label02 {
  top: 23%; 
}
.phase_content03 .label03 {
  top: 42%;
}
.phase_content03 .label04 {
  top: 59%; 
}

.label01::after,
.label02::after,
.label03::after,
.label04::after,
.label05::after,
.label06::after {width: 55px;height: 19px;top: 41%;transform: translateX(-50%);}

.phase_content:not(.phase_content03) .label01::after,
.phase_content:not(.phase_content03) .label03::after,
.phase_content:not(.phase_content03) .label05::after,
.phase_content03 .label02::after,
.phase_content03 .label04::after,
.phase_content03 .label06::after  {
  background: url('img/dot_left.svg') no-repeat center center;
  right: -8.6rem;
}

.phase_content:not(.phase_content03) .label02::after,
.phase_content:not(.phase_content03) .label04::after,
.phase_content:not(.phase_content03) .label06::after,
.phase_content03 .label01::after,
.phase_content03 .label03::after,
.phase_content03 .label05::after {
  background: url('img/dot_right.svg') no-repeat center center;
  right: 7.7rem;
}
/*------- check -------*/
.check_box {
	border-radius: 20px;
	padding:4rem 2rem 2rem;
}
.check_box .check_ttl {
	position: absolute;
	left: 3rem;
	top: -4rem;
	width: 70px;
}
.check_box .kazari01 {
	position: absolute;
	left: 12rem;
	top: -4rem;
	width: 200px;
}
.check_box .kazari02 {
	left: 50%;
	bottom: -4rem;
	width: 14px;
}
.check_box .check_box_inner {
	display: block;
}
.check_box .left {
	width: 100%;
	margin-bottom: 2rem;
}
.check_box .right {
	width: 100%;
}
.check_box .midashi {
    font-size: 2rem;
    margin-bottom: 1rem;
}
}
/*--------------------------------------
　sec03
---------------------------------------*/
.sec03  {
	padding:6rem 0;
}
.sec03 .ttl_box  {
	position: relative;
	text-align: center;
	font-size: 4.6rem;
	margin-bottom: 10rem;
}
.sec03 .ttl_box .kazari01 {
	position: absolute;
	left: 0;
	top: 0;
	width: 170px;
}
.sec03 .ttl_box .kazari02 {
	position: absolute;
	right: 0;
	top: 2rem;
	width: 170px;
}
.sec03 .difference_box>div  {
	margin-bottom: 10rem;
}
.sec03 .difference_box .midashi {
  width: calc(100% - 300px);
  margin: auto;
	font-size: 3.8rem;
	text-align: center;
	position: relative;
	margin-bottom: 4rem;
}
.sec03 .difference_box .num {
  width: 115px;
  margin: 0 0 -5.5rem;
}
.sec03 .difference_box .difference_02 .eng{
	color: #ffd37d;
}
.sec03 .difference_box .difference_03 .eng{
	color: #77c6b3;
}
.sec03 .difference_box>div .wrap_01 {
	display: flex;
	justify-content: space-between;
  align-items: center;
	position: relative;
}
.sec03 .difference_box .left  {
	position: relative;
	width: 50%;
	padding-right: 6rem;
}
.sec03 .difference_box .right  {
	width: 50%;
}
.sec03 .difference_box .left .arrow {
	position: absolute;
	width: 30px;
	height: 40px;
	top: 50%;
	transform: translate(0,-50%);
	right: 2rem;
}
.sec03 .difference_box>div .wrap_01 .left .txt_01 {
	font-size: 2rem;
	font-weight: bold;
	border: 1px solid #383030;
	border-radius: 6px;
	background: #fff;
	display: table;
	padding: 1rem 3rem;
	margin-bottom: 2rem;
}
.sec03 .difference_box>div .wrap_01 li {
	margin-bottom: 1rem;
	position: relative;
	padding-left: 2rem;
  font-size: 1.8rem;
}
.sec03 .difference_box>div .wrap_01 li:before {
	position: absolute;
	left: 0;
	top: 10px;
	background: #ffbaba;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	content: "";
	display: block;
}
.sec03 .difference_box>div:nth-child(1) .wrap_01 li:before {
	background: #ffbaba;
}
.sec03 .difference_box>div:nth-child(2) .wrap_01 li:before {
	background: #ffd37d;
}
.sec03 .difference_box>div:nth-child(3) .wrap_01 li:before {
	background: #77c6b3;
}
.sec03 .difference_box>div .right {
	background: #fff;
	border: 1px solid #383030;
	border-radius: 20px;
}
.sec03 .difference_box>div .right .txt_01 {
	position: relative;
	background: #e5e5e5;
	border-radius: 20px 20px 0 0;
	text-align: center;
	line-height: 6rem;
	height: 6rem;
	font-size: 2.2rem;
	font-weight: bold;
}
.sec03 .difference_box>div .right .txt_01 .kazari01 {
	position: absolute;
	width: 100px;
	right: 2rem;
	bottom: 0;
}
.sec03 .difference_box .difference_03 .right .txt_01 .kazari01 {
	width: 130px;
}
.sec03 .difference_box>div .right .txt_01 .kazari02 {
	position: absolute;
	width: 80px;
	left: 2rem;
	bottom: 1rem;
}
.sec03 .difference_box>div .right ul {
	padding:3rem;
}
@media screen and (max-width: 768px) {
.sec03  {
	padding:3rem 0;
}
.sec03 .ttl_box  {
	font-size: 2.6rem;
	margin-bottom: 8rem;
}
.sec03 .ttl_box .ttl {
	font-size: 3rem;
	text-align: center;
}
.sec03 .ttl_box .kazari01 {
	position: absolute;
	left: 0;
	top: -5rem;
	width: 80px;
}
.sec03 .ttl_box .kazari02 {
	position: absolute;
	right: 0;
	top: inherit;
	bottom: -7rem;
	width: 100px;
}
.sec03 .difference_box>div  {
	margin-bottom: 5rem;
}
.sec03 .difference_box .midashi {
  width: 100%;
	font-size: 2.3rem;
	margin-bottom: 2rem;
	text-align: left;
}
.sec03 .difference_box .num {
  width: 20%;
  margin: 0 0 1rem;
}
.sec03 .difference_box>div .wrap_01 {
	display: block;
}
.sec03 .difference_box .left  {
	width: 100%;
	padding:0 0 6rem 0;
}
.sec03 .difference_box .right  {
	width: 100%;
}
.sec03 .difference_box .left .arrow {
	position: absolute;
	width: 20px;
	height: 30px;
	top: inherit;
	bottom: 2rem;
	left: 50%;
	transform: translate(-50%,0) rotate(90deg);
	right: inherit;
}
.sec03 .difference_box>div .wrap_01 .left .txt_01 {
	font-size: 1.6rem;
	border-radius: 5px;
	padding: 0.6rem 1.5rem;
	margin-bottom: 2rem;
}
.sec03 .difference_box>div .wrap_01 li {
	margin-bottom: 1rem;
	position: relative;
	padding-left: 2rem;
  font-size: 1.6rem;
}
.sec03 .difference_box>div .wrap_01 li:before {
	position: absolute;
	left: 0;
	top: 9px;
	background: #ffbaba;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	content: "";
	display: block;
}
.sec03 .difference_box>div .right {
	background: #fff;
	border: 1px solid #383030;
	border-radius: 20px;
}
.sec03 .difference_box>div .right .txt_01 {
	border-radius: 20px 20px 0 0;
	line-height: 5rem;
	height: 5rem;
	font-size: 1.8rem;
}
.sec03 .difference_box>div .right .txt_01 .kazari01 {
	position: absolute;
	width: 75px;
	right: 1rem;
	bottom: 0;
}
.sec03 .difference_box .difference_03 .right .txt_01 .kazari01 {
	width: 105px;
}
.sec03 .difference_box>div .right .txt_01 .kazari02 {
	position: absolute;
	width: 60px;
	left: 2rem;
	bottom: 1rem;
}
.sec03 .difference_box>div .right ul {
	padding:2rem;
}
}
/*--------------------------------------
　sec04
---------------------------------------*/
.sec04  {
	padding: 7rem 0 8rem;
	background:url("img/sec03_bg01.webp") center 40px no-repeat#fff;
	background-size: 90% auto;
	border-radius: 8rem 8rem 0 0 ;
}
.sec04 .ttl_box {
	position: relative;
}
.sec04 .ttl_box .fukidashi {
	width: 240px;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	top: -10rem;
}
.sec04 .ttl {
  font-size: 4.6rem;
  text-align: center;
}
.sec04 .ttl a {
	padding: 0 6rem;
}
.ttl a {
  display: block;
	font-weight: bold;
  position: relative;
}
.ttl a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 28px;
  height: 28px;
  background: url("img/arrow01.webp") center no-repeat;
  background-size: cover;
}
.sec04 .read {
	width: 90%;
	margin: 6rem auto 10rem;
}
.sec04 .tab-container {
  display: flex;
	justify-content: space-between;
  flex-wrap: wrap;
}
.sec04 .tab {
	font-weight: bold;
	text-align:center;
	padding: 10px;
	background-color: #d5c3a9;
	cursor: pointer;
	font-size: 1.6rem;
	width: 19%;
	border-radius: 100px;
	color: #fff;
border: solid 2px #fff;   
	outline: solid 1px #383030;   
	outline-offset: 0;
	margin-bottom: 1.4rem;
}

.sec04 .tab.active {
  background-color: #383030;
}

.sec04 .content {
  display: none; /*必須*/
	position: relative;
	z-index: 1;
	padding: 10rem 0;
}
.sec04 .content.show {
  display: block; /*必須*/
}

.sec04 .content .country_name a {
  display: inline-block;
}
.sec04 .content .country_name img {
  display: block;
  width: 200px;
  height: auto;
}
.sec04 .content .country_name h3 {
  margin: 1rem 0 0;
  font-size: 4.6rem;
}
.sec04 .content .country_bg {
  width: 68px;
	position: absolute;
	top: 6rem;
	right: -9rem;
	z-index: -1;
}
.sec04 .content .wrap_01 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #383030;  
	padding: 6rem 0;
}
.sec04 .content .wrap_01 .left {
	width: 55%;
}
.sec04 .content .wrap_01 .left .chach_box {
	display: flex;
	align-items: center;
  justify-content: space-between;
	margin-bottom: 3rem;
}
.sec04 .content .wrap_01 .left .chach_box .txt_01{
  width: calc(100% - 120px);
	font-size: 2.2rem;
}
.icon_box {
	width: 90px;
	height: 90px;
	background: url("img/icon_point.png") center no-repeat;
	background-size: cover;
	text-align: center;
	color: #fff;
}
.icon_box.icon_check {
	background: url("img/icon_check.png") center no-repeat;
	background-size: cover;
}
.icon_box.icon_num01 {
	background: url("img/icon_num01.png") center no-repeat;
	background-size: cover;
}
.icon_box.icon_num02 {
	background: url("img/icon_num02.png") center no-repeat;
	background-size: cover;
}
.icon_box.icon_num03 {
	background: url("img/icon_num03.png") center no-repeat;
	background-size: cover;
}
.icon_box.icon_num04 {
	background: url("img/icon_num04.png") center no-repeat;
	background-size: cover;
}
.icon_box.icon_num05 {
	background: url("img/icon_num05.png") center no-repeat;
	background-size: cover;
}
.sec04 .content .wrap_01 .right {
	width: 40%;
}
.sec04 .content .wrap_02 ul li {
	display: flex;
	align-items: center;
	padding: 4rem 0;
	border-bottom: 1px solid #383030;  
}
.sec04 .content .wrap_02 ul li .left {
	width: 30%;
}
.sec04 .content .wrap_02 ul li .left p{
	text-align: center;
	font-weight: bold;
	line-height: 1.4;
}
.sec04 .content .wrap_02 ul li .left .img{
	width: 120px;
	margin: auto;
	margin-bottom: 1rem;
}
.sec04 .content .wrap_02 ul li .txt{
	width: 70%;
}
.sec04 .content .wrap_03 {
	display: flex;
	align-items: center;
	margin: 8rem 0 0 0;
}
.sec04 .content .wrap_03 .left {
	width: 65%;
  position: relative;
  display: inline-block;
  margin: 1.5em 15px 1.5em 0;
  padding: 4rem;
  background: #fdfaf5;
  border: solid 1px #383030;  
  box-sizing: border-box;
	border-radius: 4rem;
}

.sec04 .content .wrap_03 .left:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  margin-top: -12px;
  border: 12px solid transparent;
  border-left: 12px solid #fdfaf5;
  z-index: 2;
}

.sec04 .content .wrap_03 .left:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -28px;
  margin-top: -14px;
  border: 14px solid transparent;
  border-left: 14px solid #383030; 
  z-index: 1;
}

.sec04 .content .wrap_03 .right {
	width: 30%;
}
.sec04 .content .wrap_03 .right img{
	width: 70%;
}
.slider-wrapper_02  {
  overflow: hidden;
  width: 100%;
}

.slider-wrapper_02 .slider {
  display: flex;
  width: calc(100vw * 2); /* 6枚分の横幅 */
  animation: scroll-left 40s linear infinite;
}

.slider-wrapper_02 .slide {
  width: calc(100vw / 3);
}

.slider-wrapper_02 .slide img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}
.slider-wrapper_02 {
	position: relative;
}
.slider-wrapper_02:before {
	position:absolute;
	content: "";
	display: block;
	background: #fff;
	width: 100%;
	height: 6rem;
	top: -1px;
	left: 0;
	border-radius: 0 0 40px 40px;
	z-index: 10;
}
.slider-wrapper_02:after {
	position:absolute;
	content: "";
	display: block;
	background:  #fdfaf5;
	width: 100%;
	height: 6rem;
	bottom: -1px;
	left: 0;
	border-radius:40px 40px 0 0 ;
	z-index: 10;
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100vw); /* ちょうど3枚分 */
  }
}
@media screen and (max-width: 768px) {
.sec04  {
	padding: 5rem 0 8rem;
	background:url("img/sec03_bg01.webp") center 20px no-repeat#fff;
	background-size: 90% auto;
	border-radius: 4rem 4rem 0 0 ;
}
.sec04 .ttl_box {
	position: relative;
}
.sec04 .ttl_box .fukidashi {
	width: 140px;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	top: -6.5rem;
}
.sec04 .ttl {
  font-size: 3rem;
}
.sec04 .ttl a {
	padding: 0 4rem;
}
.ttl a::after {
  width: 20px;
  height: 20px;
}
.sec04 .read {
	width: 100%;
	margin: 3rem auto 5rem;
}
.sec04 .tab-container {
  display: flex;
	justify-content: space-between;
  flex-wrap: wrap;
}
.sec04 .tab {
	padding: 10px 5px;
	font-size: 1.1rem;
	width: 32%;
border: solid 1px #fff;   
	outline: solid 1px #383030;   
	outline-offset: 0;
	margin-bottom: 1.4rem;
}

.sec04 .content {
  display: none; /*必須*/
	position: relative;
	z-index: 1;
	padding: 5rem 0;
}
.sec04 .content.show {
  display: block; /*必須*/
}

  .sec04 .content .country_name img {
    width: 60%;
    margin: auto;
  }
  .sec04 .content .country_name h3 {
    margin: 1rem 0 0;
    font-size: 3rem;
  }
  
  .sec04 .content .country_bg {
    width: 100%;
    position: relative;
    top: inherit;
    right: inherit;
  }

.sec04 .content .wrap_01 {
	display: block;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #383030;  
	padding: 4rem 0;
}
.sec04 .content .wrap_01 .left {
	width: 100%;
}
.sec04 .content .wrap_01 .left .chach_box {
	margin-bottom: 2rem;
}
.sec04 .content .wrap_01 .left .chach_box .txt_01{
  width: calc(100% - 75px);
	font-size: 1.5rem;
}
.icon_box {
	width: 60px;
	height: 60px;
	color: #fff;
	font-size: 1.1rem;
}
.sec04 .content .wrap_01 .right {
	width: 100%;
  margin: 2rem 0 0;
}
	.sec04 .content .wrap_01 .right .img{
		width: 80%;
		margin: auto;
}
.sec04 .content .wrap_02 ul li {
	display: block;
	padding: 3rem 0;
	border-bottom: 1px solid #383030;  
}
.sec04 .content .wrap_02 ul li .left {
	width: 100%;
	display: flex;
	align-items: center;
}
.sec04 .content .wrap_02 ul li .left p{
	text-align: left;
	font-size: 1.8rem;
}
.sec04 .content .wrap_02 ul li .left .img{
	width: 100px;
	margin: inherit;
	margin:0 1rem 1rem 0;
}
.sec04 .content .wrap_02 ul li .txt{
	width: 100%;
}
.sec04 .content .wrap_03 {
	display: block;
	margin: 4rem 0 0 0;
}
.sec04 .content .wrap_03 .left {
	width: 100%;
  position: relative;
  display: inline-block;
  margin: 1.5em 0 4rem 0;
  padding: 2rem;
	border-radius: 3rem;
}
.sec04 .content .wrap_03 .left:before {
	content: "";
	position: absolute;
	top: inherit;
	right: inherit;
	left: 50%;
	bottom: -24px;
	margin:0 0 0 -12px;
	border: 12px solid transparent;
	border-top: 12px solid #fdfaf5;
	z-index: 2;
}

.sec04 .content .wrap_03 .left:after {
  content: "";
  position: absolute;
  top: inherit;
  right: inherit;
left: 50%;
  bottom: -28px;
  margin:0 0 0 -14px;
  border: 14px solid transparent;
  border-top: 14px solid #383030; 
  z-index: 1;
}

.sec04 .content .wrap_03 .right {
	width: 100%;
}
.sec04 .content .wrap_03 .right img{
	width: 100%;
}
  .slider-wrapper_02 {
    overflow: hidden; /* 左右を見切れにする */
  }

  /* スライド幅を大きくして中心を目立たせる */
  .slider-wrapper_02 .slide {
    width: 80vw; /* 中央を大きく、左右が見切れる */
  }

  /* 6枚分の横幅 → 80vw × 6 */
  .slider-wrapper_02 .slider {
    width: calc(80vw * 6);
    animation: scroll-left-sp 30s linear infinite;
  }
.slider-wrapper_02 .slide img {
  height: 220px;
}
  
.slider-wrapper_02:before {
	height: 3rem;
	top: -2px;
	left: 0;
	border-radius: 0 0 30px 30px;
	z-index: 10;
}
.slider-wrapper_02:after {
	height: 3rem;
	bottom: -2px;
	left: 0;
	border-radius:30px 30px 0 0 ;
	z-index: 10;
}
  /* アニメーション：3枚分スクロール（=80vw × 3） */
  @keyframes scroll-left-sp {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-80vw * 3)); }
  }
}

/*--------------------------------------
　sec05
---------------------------------------*/
.sec05  {
	padding: 10rem 0;
}
.sec05 .ttl {
	position: relative;
	display: table;
	padding-right: 4rem;
}
.sec05 .qa_box {
  display: flex;
  flex-wrap: wrap;
  position: relative;
	justify-content: space-between;
	margin: 12rem 0 10rem;
}
.sec05 .qa_box .qa_wrap:nth-child(odd) {
	top: 28rem;
}


.sec05 .qa_box .qa_wrap {
	width: 47%;
  background: #fff;
  border-radius: 40px;
  padding: 6rem 4rem;
  border: 1px solid #383030; 
  position: relative;
	margin-bottom: 9rem;
}


.sec05 .qa_box .q_icon {
	width: 90px;
	position: absolute;
	top: -45px;
	left: 0;
	right: 0;
	margin: auto;
}
.sec05 .qa_box .q_txt a{
	display: block;
	font-size: 2rem;
	font-weight:bold;
	position: relative;
	width: 100%;
	padding-right: 4rem;
}
.sec05 .qa_box .q_txt a:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0, -50%);
	width: 24px;
	height: 24px;
	background: url("img/arrow01.webp") center no-repeat;
	background-size: cover;
}
.sec05 .qa_box .a_txt{
	display: block;
	color: #3e83db;
	font-weight:bold;
	position: relative;
	padding-left: 6rem;
	margin: 2rem 0;
  font-size: 1.8rem;
}
.sec05 .qa_box .a_txt:after {
	content: "";
	display: block;
	background: url("img/eng_a.webp") center no-repeat;
	background-size:cover;
	position: absolute;
	width: 42px;
	height: 33px;
	top: 50%;
	left: 0;
	transform: translate(0, -50%);
}
.sec05 .qa_box .kazari01 {
	position: absolute;
	width: 450px;
	right:0 ;
	top: -4rem;
}
.sec05 .qa_box .kazari02 {
	position: absolute;
	width: 450px;
	right:0 ;
	bottom: 9rem;
}
.sec05 .qa_box .kazari03 {
	position: absolute;
	width: 200px;
	left:-4rem ;
	bottom: -4rem;
}
.sec05 .about_box {
	width: 80%;
	border-radius: 20px;
	background: #fff;
	padding:4rem 6rem 4rem;
	margin: auto;
}
.sec05 .about_box .ttl {
	font-size: 2rem;
	font-weight: bold;
	padding-left: 4rem;
	position: relative;
	margin-bottom:1rem;
}
.sec05 .about_box .ttl:before {
	content: "";
	display: block;
	left: 0;
	top: 50%;
	transform: translate(0,-50%);
	background: #ffd37d;
	width: 20px;
	height: 20px;
	position: absolute;
	border-radius: 50%;
}
.sec05 .about_box .btn-link a {
  margin: 2rem 0 0;
}
@media screen and (max-width: 768px) {
.sec05  {
	padding: 6rem 0;
}
.sec05 .ttl {
	position: relative;
	display: table;
	padding-right: 4rem;
}
.sec05 .qa_box {
  display: block;
	margin: 6rem 0 5rem;
}
.sec05 .qa_box .qa_wrap:nth-child(odd) {
	top:inherit;
}


.sec05 .qa_box .qa_wrap {
	width: 100%;
  border-radius: 30px;
  padding: 4rem 2rem;
	margin-bottom: 5rem;
}


.sec05 .qa_box .q_icon {
	width: 60px;
	position: absolute;
	top: -30px;
}
.sec05 .qa_box .q_txt a{
	display: block;
	font-size: 2.2rem;
	font-weight:bold;
	position: relative;
	width: 100%;
	padding-right: 4rem;
}
.sec05 .qa_box .q_txt a:after {
	width: 20px;
	height: 20px;
}
	
.sec05 .qa_box .a_txt{
	padding-left: 4rem;
	margin: 1.5rem 0;
  font-size: 1.8rem;
}
.sec05 .qa_box .a_txt:after {
	width: 2.5rem;
	height: 2rem;
}
.sec05 .qa_box .kazari01 {
	position: static;
	width:80%;
	right:0 ;
	top: inherit;
	margin: 0 auto 4rem;
}
.sec05 .qa_box .kazari02 {
	position: static;
	width:80%;
	right:0 ;
	bottom: inherit;
	margin: 4rem auto 0;
}
.sec05 .qa_box .kazari03 {
	display: none;
}
.sec05 .about_box {
	width: 100%;
	border-radius: 20px;
	padding:3rem 2rem 3rem;
}
.sec05 .about_box .ttl {
	font-size: 1.8rem;
	font-weight: bold;
	padding-left: 3rem;
	position: relative;
	margin-bottom:1rem;
}
.sec05 .about_box .ttl:before {
	width: 16px;
	height: 16px;
}
.sec05 .about_box .btn-link a {
  margin: 1.5rem 0 0;
}  
}
/*--------------------------------------
　モーダル
---------------------------------------*/
.js-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 9999;
}
.modal{
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.modal__bg{
  background: rgba(0,0,0,0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.modal__content{
  left: 50%;
  position: absolute;
  top: 44%;
  transform: translate(-50%,-50%);
  width: 60%;
}
.modal_inner {
	background: #fff;
	position: relative;
	padding: 6rem 6rem 2rem;
	border-radius: 4rem;
}
.modal_inner .modal_ttl {
	font-size: 2.8rem;
	font-weight: bold;
}
.modal_inner .btn-internal{
	margin: 0 auto;
}
.modal_inner .batsu {
	position: absolute;
	font-size: 4rem;
	right: 2rem;
	top: 1rem;
}
@media screen and (max-width: 768px) {
.modal__content{
    width: 90%;
}
.modal_inner {
	padding: 2rem 2rem 1rem;
	border-radius: 2rem;
}
.modal_inner .modal_ttl {
	font-size: 2rem;
}
.modal_inner .batsu {
	font-size: 2.2rem;
	right: 1rem;
	top: 1rem;
}
}


/*--------------------------------------
　fixed_toc
---------------------------------------*/
.fixed_toc {
	position: fixed;
	top: 20%;
  right: 0;
	width: 280px;
	height: auto;
	z-index: 1;
  transition: all 0.5s ease;
	transform: translateX(100%);
}
.fixed_toc.is-open {
	transform: translateX(0);
	transform: translateZ(0);
}

.fixed_toc .fixed_toc_ttl {
  display: flex;
  justify-content: center;
  align-items: center;
	position: absolute;
	top: 0;
	right: 100%;
	background: #ffd37d;
	width: 60px;
  height: 120px;
	padding: 2rem 0 4rem;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
  letter-spacing: 0.2em;
	border-radius: 10px 0 0 10px;
  -webkit-writing-mode: vertical-rl;
	-moz-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	-ms-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
  font-family: "Noto Sans JP vertical";
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 100;
}
.fixed_toc .fixed_toc_ttl::before,
.fixed_toc .fixed_toc_ttl::after {
	content: "";
	position: absolute;
  bottom: 30px;
  left: 50%;
	background: #383030;
	width: 18px;
	height: 2px;
  margin-left: -8px;
	transition: all 0.4s;
}
.fixed_toc .fixed_toc_ttl::after {
	transform: rotate(90deg);
}
.fixed_toc.is-open .fixed_toc_ttl::before {
  display: none;
}
.fixed_toc.is-open .fixed_toc_ttl::after {
  transform: rotate(180deg);
}

.fixed_toc .fixed_toc_block {
	position: fixed;
	top: 0;
	left: 0;
	background: #fff;
	width: 100%;
	max-height: calc(100vh - 20rem);
	padding: 3rem 3rem 3rem;
  border-radius: 0 0 0 20px;
  border-right: none;
	overflow-x: hidden;
	overflow-y: auto;
	z-index: 99;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.fixed_toc .fixed_toc_block::-webkit-scrollbar {
	display: none;
}

.fixed_toc ul {
	margin: 0 0 0;
}
.fixed_toc ul li {
  padding: 2rem 0 2rem;
  font-size: 1.6rem;
  line-height: 1.5;
  border-bottom: 1px solid #052c66;
	position: relative;
}
.fixed_toc ul li:first-child {
  padding: 0 0 2rem;
}
.fixed_toc ul li a {
  display: block;
  padding: 0 2.5rem 0 0;
  font-weight: bold;
  position: relative;
}
.fixed_toc ul li a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
  background: url("img/arrow_web.webp") left top no-repeat;
  background-size: contain;
	width: 20px;
	height: 20px;
	margin-top: -10px;
  opacity: 0;
  transition: all 0.3s ease;
  transform: rotate(45deg);
}
.fixed_toc ul li a:hover {
  opacity: 1;
	color: #ec5212;
}
.fixed_toc ul li a:hover::after  {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .fixed_toc {
    top: 15%;
    right: 0;
    width: calc(100% - 60px);
    height: 62%;
  }

  .fixed_toc .fixed_toc_ttl {
    width: 40px;
    height: 80px;
    padding: 1rem 0 2rem;
    font-size: 1.5rem;
    border-radius: 5px 0 0 5px;
  }
  .fixed_toc .fixed_toc_ttl::before,
  .fixed_toc .fixed_toc_ttl::after {
    bottom: 15px;
    width: 12px;
    height: 1px;
    margin-left: -6px;
  }

  .fixed_toc .fixed_toc_block {
    max-height: calc(100vh - 20.8rem);
    padding: 2.5rem 2rem 2.5rem;
    border: 1px solid #052c66;
    border-radius: 0 0 0 10px;
    border-right: none;
  }

  .fixed_toc ul li {
    padding: 1.5rem 0 1.5rem;
    font-size: 1.4rem;
  }
  .fixed_toc ul li:first-child {
    padding: 0 0 1.5rem;
  } 

   /* モーダル表示時のチラツキを解除する */
  body.is-modal-open .h_float_wrap,
  body.is-modal-open .fixed_toc,
  body.is-modal-open .l-pagetop {
    visibility: hidden;
  }
  body.is-modal-open .fixed_toc,
  body.is-modal-open .l-pagetop {
    display: none;
  }
  body .h_float_wrap {
    visibility: visible;
  }
}

/* toc */
.toc_parts .acc_box.is-hide {
  height: unset;
}
.toc_parts .toc_parts_inner {
  padding: 0;
}