@charset "UTF-8";
/* base
==================================*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
blockquote,
ul,
li,
ol,
dl,
dd,
tr {
  font-size: 16px;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
}

a {
  color: #1f1f1f;
  text-decoration: none;
  transition: 0.3s;
}

@media (min-width: 800px) {

  a:hover {
    color: #1f1f1f;
    text-decoration: none;
  }

  a.tel {
    cursor: default;
    pointer-events: none;
  }

  .hover {
    transition: opacity .5s ease;
  }

  .hover:hover {
    opacity: .75;
    transition: opacity .5s ease;
  }
}

@media (min-width: 999px) {
  .pt {
    display: none;
  }

  .ts {
    display: none;
  }
}

@media (min-width: 800px) {
  .sp {
    display: none !important;
  }
}

@media (max-width: 799px) {
  .pc {
    display: none !important;
  }

  .pt {
    display: none;
  }
}

html {
    overflow-y: scroll;
    font-size: 62.5%;
}

@media screen and (max-width: 799px) {
    html {
        font-size: 62.5%;
    }
	body {
		/* padding-bottom: 50px; */
	}
}

#AllBox {
	overflow: hidden;
}

/* main
==================================*/
main {
  display: block; /*IE対策*/
  overflow: hidden;
}

/*　Retina対応時のCSS↓　*/
/* header
==================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  width: 100%;
  height: 100px;
  transition: transform 0.3s 0.3s;
}
header.hidden {
	transform: translateY(-100px);
}
header .logo_wrap {
	margin-left: 40px;
	margin-top: 12px;
}
header .logo {
	max-width: 260px;
}
header .logo_wrap small {
	color: #7c7c7c;
	display: block;
	white-space: nowrap;
	font-size: 10px;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: 0.03em;
}
.header_inner {
	display: flex;
	justify-content: space-between;
	height: 100px;
	background-color: #fff;
}
.header_links {
	display: flex;
	align-items: center;
	padding-right: 20px;
	z-index: 1;
}
.header_links .header_tel {
	margin-right: 15px;
	position: relative;
    top: -6px;
}
.header_tel a span {
	line-height: 1;
}
.header_tel a span small {
	font-size: 14px;
}
.header_tel a {
	max-width: 245px;
	width: 100%;
	background: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: clamp(28px, 3vw, 36px);
	line-height: 39px;
	font-weight: 700;
	letter-spacing: 0.03em;
	font-family: "Barlow", sans-serif;
}
.header_email a {
	font-size: 17px;
	height: 70px;
	line-height: 1.2;
	font-weight: 700;
	background: #e60019;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	width: 220px;
	border-radius: 35px;
	position: relative;
	transition: .3s ease;
	box-sizing: border-box;
	overflow: hidden;
	text-align: center;
}
.header_email a::after {
	content: '';
	background: url(../images/top/arw_hd_contact.svg) no-repeat center center / contain;
	position: absolute;
	right: 20px;
    top: 25px;
    width: 20px;
    height: 20px;
}
.header_email a::before {
	content: '';
	position: absolute;
	left: 24px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 24px;
	height: 20px;
	background: url('../images/common/icon_email_white.svg') no-repeat;
	background-size: 100% 100%;
	transition: .3s ease;
}
@media (min-width: 800px) {
	.header_email a:hover {
		opacity: .7;
	}
}
@media (max-width: 799px) {
	header {
	  height: 40px;
	  position: fixed;
	  top: 0;
	  left: 0;
	}
	header.hidden {
		transform: translateY(-40px);
	}
	header .logo {
		width: 150px;
	}
	header .logo_wrap {
		margin-left: 20px;
		margin-top: 2px;
	}
	.header_inner {
		height: 40px;
	    display: flex;
	    align-items: center;
	    justify-content: space-between;
	}
	.header_links {
		position: fixed;
		column-gap: 10px;
		bottom: 10px;
		left: 0;
		z-index: 100;
		width: 100%;
		padding-left: 10px;
		padding-right: 10px;
		opacity: 1;
		transition: .3s;
	}
	.header_tel,
	.header_email {
		width: 50%;
	}
	.header_tel a span {
		height: auto;
		font-size: 10px;
	}
	.header_tel a span small {
		font-size: 10px;
	}
	.header_tel a span img {
		width: auto;
		height: 100%;
	}
	.header_links .header_tel {
		height: 50px;
		background: #fff;
		border-radius: 25px;
		position: relative;
		margin-right: 0;
		overflow: hidden;
		top: 0;
	}
	.header_tel a {
	    max-width: unset;
	    width: 100%;
	    display: flex;
	    flex-direction: column;
	    align-items: center;
	    justify-content: center;
	    font-size: 21px;
	    line-height: 1;
	}
	.header_tel .link-tel {
		height: 50px;
    	padding-top: 0;
	}
	.header_email a {
		font-size: 14px;
		height: 50px;
		width: 100%;
	}
	.header_email a::before {
		left: 17px;
        z-index: 3;
        width: 21px;
        height: 17px;
	}
	.header_email a::after {
		top: auto;
		right: 17px;
	    width: 16px;
    	height: 16px;
	}
	
}
/* footer
==================================*/
footer {
	background: #fff;
	position: relative;
}
.footer_inner {
	max-width: 1400px;
    padding: 50px 100px 50px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
	margin-inline: auto;
    row-gap: 80px;
}
.footer_inner .ft_info_wrap {
	flex-shrink: 0;
}
.footer_inner .ft_info_wrap dl {
	padding-bottom: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 40px;
}
.footer_inner .ft_info_wrap dl dt {
	color: #1f1f1f;
}
.footer_inner .ft_info_wrap dl dd {
	line-height: 1.5;
	position: relative;
}
.footer_inner .ft_info_wrap dl dd::after {
	content: "";
    border-right: 1px solid #d0d0d0;
    height: calc(100% - 8px);
    position: absolute;
    left: -20px;
    top: 0;
    margin-top: 5px;
}
.footer_inner .ft_info_wrap .copy {
	color: #3e3a39;
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
	text-align: center;
}
.ft_bnr_wrap {
	max-width: 357px;
	position: relative;
}
.ft_bnr_wrap::after {
	content: "";
	background: url(../images/common/icon_outlink.svg) no-repeat center center / contain;
	width: 11px;
	height: 9px;
	position: absolute;
	right: 10px;
	top: 10px
}
@media (min-width: 800px) {
	.ft_bnr_wrap a:hover {
		opacity: .7;
	}
}
#pageTop {
  opacity: 0;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 888;
  transition: 0.3s;
}
#pageTop.active {
  opacity: 1;
}

@media (min-width:800px) {
	#pageTop a {
		display: block;
		width: 50px;
	  }
}
#pageTop a:hover {
  opacity: 0.7;
}
@media (max-width: 799px) {
	footer {
		margin-top: 0;
	}
	.footer_inner {
		padding: 25px 20px 72px;
		align-items: center;
		column-gap: 0;
		row-gap: 36px;
	}
	.copy {
		font-size: 10px;
		padding: 5px 0;
		line-height: 1;
	}
	.footer_inner .ft_info_wrap dl {
		padding-bottom: 24px;
		flex-direction: column;
	}
	.footer_inner .ft_info_wrap dl dt {
		font-size: 12px;
		padding-bottom: 8px;
		text-align: center;
	}
	.footer_inner .ft_info_wrap dl dd {
		font-size: 12px;
		text-align: center;
	}
	.footer_inner .ft_info_wrap dl dd::after {
		display: none;
	}
	.footer_inner .ft_info_wrap .copy {
		font-size: 11px;
		text-align: center;
	}
	.ft_bnr_wrap {
		max-width: 480px;
		position: relative;
		margin-inline: auto;
	}
	.ft_bnr_wrap::after {
		content: "";
		background: url(../images/common/icon_outlink.svg) no-repeat center center / contain;
		width: 13px;
		height: 11px;
		position: absolute;
		right: 10px;
		top: 10px
	}
}
/* loader
==================================*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1001;
}

/* Animation
==================================*/
.c-anim-up {
  transform: translate(0, 30px);
  opacity: 0;
  transition: 0.3s ease;
}
.c-anim-down {
  transform: translate(0, -30px);
  opacity: 0;
  transition: 0.3s ease;
}
.c-anim-ttl {
	transform: translate(0, 0);
	/* opacity: 0; */
	transition: 0.3s ease;
}
.move {
  transform: translate(0, 0);
  opacity: 1;
}

.delay1 {
  -moz-transition-delay: 300ms;
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
}

.delay2 {
  -moz-transition-delay: 600ms;
  -webkit-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
}

.delay3 {
  -moz-transition-delay: 900ms;
  -webkit-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
}

.delay4 {
  -moz-transition-delay: 1200ms;
  -webkit-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
}

.delay5 {
  -moz-transition-delay: 1500ms;
  -webkit-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
}

.delay6 {
  -moz-transition-delay: 1800ms;
  -webkit-transition-delay: 1800ms;
  -o-transition-delay: 1800ms;
  -ms-transition-delay: 1800ms;
}

.delay7 {
  -moz-transition-delay: 2100ms;
  -webkit-transition-delay: 2100ms;
  -o-transition-delay: 2100ms;
  -ms-transition-delay: 2100ms;
}
.delay8 {
  -moz-transition-delay: 2400ms;
  -webkit-transition-delay: 2400ms;
  -o-transition-delay: 2400ms;
  -ms-transition-delay: 2400ms;
}

.c-anim-scale01 {
   transform: scale(1.3);
   transition: transform 3s ease;
}
.move.c-anim-scale01 {
	transform: scale(1);
}

.c-pop {
	opacity: 0;
}
.move .c-pop.move {
	animation: bounceIn .75s forwards .85s;
}

@keyframes bounceIn {
  0% {
	opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3) translate(0, 0);
            transform: scale3d(.3, .3, .3) translate(0, 0);
			
  }

  50% {
	opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03) translate(0, 0);
            transform: scale3d(1.03, 1.03, 1.03) translate(0, 0);
  }

  100% {
	  opacity: 1;
    -webkit-transform: scale3d(1, 1, 1) translate(0, 0);
            transform: scale3d(1, 1, 1) translate(0, 0);
  }
}

@media (min-width: 800px) {
  .c-anim-scale {
     transform: scale(1.2);
     transition: transform 1s ease;
  }
  .move.c-anim-scale {
    transform: scale(1);
  }
}
/*==================================
  Component
==================================*/
html {
  overflow: auto;
}
html.no_move {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}
img[src$=".png"], img[src$=".jpg"] {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 100px;
  padding-right: 100px;
  box-sizing: border-box;
}

@media (max-width: 799px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.row .col {
  position: relative;
  width: 100%;
  min-height: 1px;
  box-sizing: border-box;
}
.row .col.col_4 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

/*==================================
  Contact_reset
==================================*/
.form_wrap {
  /*------ Reset CSS ------*/
  /*------ Reset END ------*/
}
.form_wrap input {
  -webkit-appearance: none;
}
.form_wrap input[type=text] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}
.form_wrap input[type=radio] {
  opacity: 0;
  margin: 0;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 1;
}

.form_wrap input[type=checkbox] {
  opacity: 0;
  margin: 0;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 1;
}

.form_wrap input::-moz-placeholder {
  color: #95baee;
}
.form_wrap input::placeholder {
  color: #95baee;
}
.form_wrap input:-ms-input-placeholder {
  color: #95baee;
}
.form_wrap input::-webkit-input-placeholder {
  color: #95baee;
}
.form_wrap button,
.form_wrap input[type=button],
.form_wrap input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  border-radius: 0;
}
.form_wrap textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  border-radius: 0;
}
.form_wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  border-radius: 0;
}

/*==================================
  Contact_base
==================================*/
/* input, textarea
--------------------------------*/
/* radio_button
--------------------------------*/
.form_wrap {
  /*------ Form Base ------*/
  /*------ Form Base END ------*/
}
@-webkit-keyframes onAutoFillStart {}
@keyframes onAutoFillStart {}
input:-webkit-autofill {
	-webkit-text-fill-color: #ffffff;
  }

.form_wrap span.error {
  color: #ffe400;
  display: block;
  margin: 7px 0 0;
}
.form_wrap input:-webkit-autofill {
  -webkit-animation-name: onAutoFillStart;
          animation-name: onAutoFillStart;
  background: rgb(255, 255, 255) !important;
  -webkit-transition: background-color 50000s ease-in-out 0s;
  transition: background-color 50000s ease-in-out 0s;
}
.form_wrap input[type=text]:focus,
.form_wrap input[type=email]:focus,
.form_wrap input[type=tel]:focus,
.form_wrap input[type=search]:focus,
.form_wrap input[type=url]:focus,
.form_wrap textarea:focus {
  color: #fff;
  background-color: #6098e7;
}

.form_wrap .ERR {
  color: #cc0303;
}

.form_wrap input[type=text] {
	font-size: 18px;
	line-height: 1.4;
	letter-spacing: 0.03em;
	color: #fff;
	width: 100%;
	background: #6098e7;
	box-sizing: border-box;
	height: 70px;
	padding: 25px 30px ;
	
	border-radius: 5px;
}
.form_wrap input[type=text].zip {
  max-width: 247px;
  width: 100%;
}
.form_wrap .zip-wrap {
  display: inline-block;
  position: relative;
  max-width: 247px;
  width: 100%;
  margin-right: 3px;
  border-radius: 5px;
}
@media (max-width: 970px) {
.form_wrap .zip-wrap {
	max-width: 175px;
	}
}
.form_wrap .address input[type=button] {
	background-color: #1f1f1f;
    border-radius: 5px;
    display: inline-block;
    margin-left: 12px;
    height: 70px;
    max-width: 170px;
    width: 100%;
    color: #fff;
}
.form_wrap .zip-wrap::before {
	color: #fff;
  content: "〒";
  font-size: 18px;
  position: absolute;
  top: 1.2em;
  left: 30px;
  margin: auto;
}
.form_wrap .zip-wrap input {
  padding: 12px 21px 12px 55px;
  width: 100%;
}
.form_wrap input[type=button] {
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.03em;
  font-weight: 500;
  color: #1f1f1f;
  box-sizing: border-box;
  transition: all 0.3s ease;
  cursor: pointer;
  
}
.form_wrap input[type=button]:hover {
  background: none;
}
.form_wrap input[type=checkbox] + label {
	color: #fff;
  padding-left: 43px;
  position: relative;
  margin-right: 10px;
  cursor: pointer;
}
.form_wrap input[type=checkbox] + label::before {
  content: "";
  display: block;
  position: absolute;
  border-radius: 2px;
  top: 1px;
  left: 0;
  width: 25px;
  height: 25px;
  border: 1px solid #fff;
  background: #fff;
  box-sizing: border-box;
}
.form_wrap input[type=checkbox] + label::after {
	opacity: 0;
	content: "";
	position: absolute;
	top: 3px;
	left: 3px;
	background: url('../images/top/arw_submit.svg') no-repeat;
	width: 22px;
	height: 20px;
	background-size: 100% 100%;
}
.form_wrap input[type=checkbox]:checked + label {
  background: none;
}
.form_wrap input[type=checkbox]:checked + label::after {
  opacity: 1;
}
.form_wrap input[type=radio] + label {
  padding-left: 27px;
  position: relative;
  margin-right: 27px;
  cursor: pointer;
}
.form_wrap input[type=radio] + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 17px;
  height: 17px;
  border: 1px solid #dddddd;
  background: #dddddd;
  box-sizing: border-box;
  border-radius: 50%;
}
.form_wrap input[type=radio] + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  width: 9px;
  height: 9px;
  background: #000;
  border-radius: 50%;
  opacity: 0;
}
.form_wrap input[type=radio]:checked + label {
  background: none;
}
.form_wrap input[type=radio]:checked + label::after {
  opacity: 1;
}
.form_wrap .select-box {
  overflow: hidden;
  width: 60%;
  text-align: center;
  position: relative;
  border-radius: 2px;
  background: #dddddd;
}
.form_wrap .select-box select {
  font-size: 16px;
  color: #000;
  letter-spacing: 0.035em;
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  padding: 12px 38px 12px 21px;
}
.form_wrap .select-box select::-ms-expand {
  display: none;
}
.form_wrap .select-box::before {
  position: absolute;
  top: 1.25em;
  right: 21px;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000;
  pointer-events: none;
}
.form_wrap textarea {
	font-size: 18px;
	line-height: 1.4;
	letter-spacing: 0.03em;
	color: #fff;
	width: 100%;
	background: #6098e7;
	box-sizing: border-box;
	min-height: 270px;
	padding: 25px 30px ;
	border-radius: 5px;
}
.form_wrap .overscroll {
  margin-top: 53px;
  overflow-y: scroll;
  height: 290px;
  padding: 35px 45px;
  background: #fff;
  border-radius: 5px;
}
.form_wrap .overscroll ul > li {
  margin-bottom: 2px;
}
.form_wrap .overscroll ul > li strong {
  font-size: 18px;
  line-height: 1.88;
  font-weight: bold;
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: 1px;
}
.form_wrap .overscroll ul > li p {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
.form_wrap .overscroll ul > li > ol {
  margin-top: 5px;
}
.form_wrap .overscroll ul > li > ol li {
  text-indent: -1.25em;
  padding-left: 1.25em;
}
.form_wrap .overscroll ul > li:first-child strong {
  margin-bottom: 5px;
}
.form_wrap .overscroll ul > li:last-child {
  margin-bottom: 0;
}
.form_wrap .submit_area {
  margin-top: 50px;
  text-align: center;
}
.form_wrap .submit_area p {
	color: #fff;
}
.form_wrap .submit_area input[type=submit] {
	font-size: 22px;
    line-height: 1.4;
    font-weight: bold;
    letter-spacing: 0.03em;
    color: #1f1f1f;
    width: 420px;
    height: 90px;
    border-radius: 5px;
    margin: 0 auto;
    background: linear-gradient(168deg, #ffe400 37%, #edd400 36%, #edd400 85%, #edd400 100%);
    background-position: 1% 50%;
    background-size: 160% 100%;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    transition: background-size 0.3s ease, transform .3s;
}
.form_wrap .submit_area span:hover input[type=submit] {
  color: #1f1f1f;
}
.form_wrap .submit_area ul.koumoku {
  max-width: 590px;
  margin: 20px auto 0;
}
.form_wrap .submit_area ul.koumoku li {
  font-size: 28px;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 0.03em;
  color: #1f1f1f;
  width: 262px;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.form_wrap .submit_area ul.koumoku li input[type=submit] {
  font-size: 28px;
  width: 100%;
  border: none;
}

.form_wrap .btn_back {
  text-align: center;
}
.form_wrap .btn_back input {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.13em;
  color: #fff;
  width: 262px;
  background: #dddddd;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  border: 3px solid #dddddd;
  transition: all 0.3s ease;
  height: 58px;
  padding: 15px 15px 14px;
}
.form_wrap .contact_back {
  margin-top: 25px;
  text-align: center;
}
.form_wrap .contact_back a {
	font-size: 22px;
    line-height: 1.4;
    font-weight: bold;
    letter-spacing: 0.03em;
    color: #1f1f1f;
    width: 420px;
    height: 90px;
    border-radius: 5px;
    margin: 0 auto;
    background: linear-gradient(168deg, #ffe400 37%, #edd400 36%, #edd400 85%, #edd400 100%);
    background-position: 1% 50%;
    background-size: 160% auto;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    transition: background-size 0.3s ease, transform .3s;
}
.form_wrap .contact_back a:hover {
  color: #000;
  background: none;
}
@media (min-width: 800px) {
	.form_wrap .submit_area  input[type=submit]:hover,
	.form_wrap .contact_back a:hover {
		cursor: pointer;
		background: linear-gradient(168deg, #ffe400 37%, #edd400 36%, #edd400 85%, #edd400 100%);
		background-position: 1% 50%;
		background-size: 100% 650%;
		transform: scale(1.02);
		transition: background-size 0.3s ease, transform .3s;	
	} 
}

/*==================================
  Contact
==================================*/
#Contact {
	background: url(../images/top/bg_contact.jpg) no-repeat center -180px / cover;
	background-color: #004ab2;
	width: 100%;
	padding-top: clamp(240px, 10vw, 360px) !important;
    padding-bottom: 160px;
    overflow: hidden;
    position: relative;
    top: -26vw;
    margin-bottom: -26vw;
    z-index: 0;
    max-width: 2000px;
    margin-inline: auto;
}
.ttl_contact {
	display: flex;
	justify-content: flex-end;
	flex-direction: column;
	align-items: flex-end;
	padding-bottom: 50px;
}
.ttl_contact .txt_free {
	max-width: 305px;
	display: block;
	padding-bottom: 18px;
	clip-path: inset(0 100% 0 0);
	transform: translateX(-5%);
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1), clip-path .8s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: .15s;
}
.ttl_contact .ttl_free {
	max-width: clamp(715px, 50%, 780px);
	clip-path: inset(0 100% 0 0);
	transform: translateX(-5%);
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1), clip-path .8s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: .45s;
}
.ttl_contact .tel_list {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 30px;
	border-top: 1px solid #175ec3;
	border-bottom: 1px solid #175ec3;
	margin-top: 30px;
}
.ttl_contact .tel_list .ttl_tel {
	font-size: clamp(18px, 2.8vw, 28px);
	font-weight: 700;
	color: #fff;
	position: relative;
	padding-left: clamp(45px, 4vw, 55px);
}
.ttl_contact .tel_list .ttl_tel::before {
	content: "";
	background: url(../images/top/con_icon_tel.svg) no-repeat center center / contain;
	width: clamp(36px, 4vw, 46px);;
	height: clamp(36px, 4vw, 46px);;
	position: absolute;
	left: 0;
	top: 0;
}
.ttl_contact .tel_list .number_tel {
	position: relative;
	display: flex;
    align-items: center;
}
.ttl_contact .tel_list .number_tel a {
	font-size: clamp(36px, 4vw, 50px);
	font-family: "Barlow Semi Condensed", sans-serif;
	font-weight: 600;
	color: #ffe400;
}
.ttl_contact .tel_list .number_tel span {
	color: #fff;
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 400;
    line-height: 1.2;
    white-space: nowrap;
    padding-left: 15px;
}
/* move */
.ttl_contact.move .txt_free,
.ttl_contact.move .ttl_free {
	clip-path: inset(0);
	transform: translate(0);
}
 

.form-sec {
	padding: 37px 58px 59px;
	border-radius: 10px;
  	max-width: 1200px;
  	margin: 0 auto;
	position: relative;
}
.form-sec::before {
	content: "";
	background: url(../images/top/con_frame.png) no-repeat center center / contain;
	width: 100%;
	height: 60px;
	position: absolute;
	top: 0;
	left: 0;
}
.form-sec::after {
	content: "";
	background: url(../images/top/con_frame.png) no-repeat center center / contain;
	width: 100%;
	height: 60px;
	position: absolute;
	bottom: -25px;
	left: 0;
	transform: scale(-1);
}
.contact-title {
	padding-bottom: 12px;
	width: 100%;
	height: 60px;
	font-size: 28px;
	line-height: 1.5;
	letter-spacing: .03em;
	color: #fff;
	font-weight: bold;
	margin: 25px 0 20px;
}
.sfm1 {
	position: relative;
}
.anchor {
	position: absolute;
	top: -80px;
	z-index: -1;
}
@media (max-width: 1300px) {
	#Contact {
	    padding-top: 120px;
	}
	.contact-head .eng {
	    top: -125px;
	    font-size: 150px;
		line-height: 110px;
	}
}
@media (max-width: 1200px) {
	#Contact {
	    padding-top: 50px;
	}
	.contact-head .eng {
	    font-size: 100px;
	    line-height: 90px;
		top: -55px;
	}
}
@media (max-width: 1000px)  {
	.contact-tel {
	    padding: 28px 5px;
	}
	.contact-tel .title {
	    font-size: 24px;
	    padding-right: 20px;
	}
	.contact-tel .tel-time {
	    padding-left: 20px;
	}
	.contact-tel .tel-time a {
		max-width: 250px;
	}
}
.form_wrap .container {
  margin: auto;
}
.form_wrap .container p > a {
  background: linear-gradient(#000, #000) 0 100%/0 1px no-repeat;
  background-size: 100% 1px;
  padding-bottom: 2px;
  display: inline;
}
.form_wrap .container p > a:hover {
  color: #704f00;
  background: linear-gradient(#704f00, #704f00) 0 100%/0 1px no-repeat;
  background-size: 100% 1px;
}
.form_wrap .agree_area {
  margin: 28px 0 0;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.03em;
  font-weight: bold;
}
.form_wrap .need {
	font-size: 12px;
    position: absolute;
    right: 10px;
    font-weight: 700;
    color: #004ab2;
    background-color: #ffe400;
    border-radius: 20px;
    display: inline-block;
    text-align: center;
    width: 40px;
    height: 24px;
    padding-top: 6px;
    box-sizing: border-box;
}
.form_wrap table {
  display: block;
}
.form_wrap table tbody {
  display: block;
}
.form_wrap table tr {
  display: flex;
  /* align-items: center; */
  margin-bottom: 30px;
}
.form_wrap  .textarea,
.form_wrap  .address {
	align-items: flex-start;
}
.sfm1 .form_wrap .textarea th,
.sfm1 .form_wrap .address th  {
	padding-top: 15px;
}
.form_wrap table tr th {
  color: #fff;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.03em;
  font-weight: 700;
  display: block;
  text-align: left;
  width: 210px;
  position: relative;
  top: -2px;
  box-sizing: border-box;
  padding-right: 10px;
  padding-top: 25px;
}
.form_wrap table tr th small {
	font-size: 14px;
}
.form_wrap table tr td {
  color: #fff;
  display: block;
  padding-left: 20px;
  width: calc(100% - 195px);
  word-break: break-all;
}
.form_wrap table tr td .text02 {
  margin-top: 8px;
}
.form_wrap .check-list {
  padding-top: 5px;
  padding-left: 0;
}
.form_wrap .check-list li {
  display: inline-block;
}
.form_wrap .form_wrap > p {
  margin-top: 0 !important;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: 500;
}
.form_wrap.sfm2 td {
	word-break: break-all;
}
.form_wrap.sfm2 td p {
  overflow-wrap: break-word;
}
.sfm2 {
	top: 0 !important;
    margin-bottom: 0 !important;
	padding-top: clamp(180px, 10vw, 360px) !important;
	background: url(../images/top/bg_contact.jpg) no-repeat center / cover !important;
}
.sfm2 .form_wrap table tr {
	margin-bottom: 36px;
}
.sfm2 .form_wrap table tr th {
	padding-top: 0;
}
.sfm2 .form_wrap p {
	color: #fff;
}

/* TB */
@media (max-width: 920px) { 
	.form_wrap table tr {
		flex-direction: column;
		row-gap: 15px;
	  }
	  .sfm1 .form_wrap .textarea th,
	  .sfm1 .form_wrap .address th  {
		  padding-top: 0;
	  }
	  .form_wrap table tr th {

	  }
	  .form_wrap .need {
		position: relative;
		left: 10px;
	  }
	  .form_wrap table tr td {
		padding-left: 0;
		width: 100%;
	  }
}

/* SP */
@media (max-width: 799px) {
	#Contact {
		background: url(../images/top/bg_contact.jpg) no-repeat center -190px / cover;
		background-color: #004ab2;
		width: 100%;
        padding-top: 25vw !important;
        padding-bottom: 27vw;
        overflow: hidden;
        position: relative;
        top: -38vw;
        margin-bottom: -38vw;
        z-index: 0;
	}
	.ttl_contact {
		display: flex;
		justify-content: flex-end;
		flex-direction: column;
		align-items: flex-end;
		padding-bottom: 50px;
	}
	.ttl_contact .txt_free {
		max-width: clamp(175px, 30vw, 300px);
		display: block;
		padding-bottom: 18px;
	}
	.ttl_contact .ttl_free {
		max-width: clamp(260px, 50vw, 400px);
	}
	.ttl_contact .ttl_free img {
		width: 100%;
	}
	.ttl_contact .tel_list {
		display: flex;
        justify-content: center;
        flex-direction: column;
        /* align-items: center; */
        column-gap: 0;
        border-top: 1px solid #175ec3;
        border-bottom: 1px solid #175ec3;
		padding-top: 12px;
		padding-bottom: 12px;
        margin-top: 30px;
		width: 100%;
	}
	.ttl_contact .tel_list .ttl_tel {
		font-size: 23px;
		padding-left: 45px;
	}
	.ttl_contact .tel_list .ttl_tel::before {
		content: "";
		background: url(../images/top/con_icon_tel.svg) no-repeat center center / contain;
		width: 35px;
		height: 35px;
		position: absolute;
		left: 0;
		top: 0;
	}
	.ttl_contact .tel_list .number_tel {
		display: flex;
		align-items: flex-start;
		white-space: nowrap;
	}
	.ttl_contact .tel_list .number_tel a {
		font-size: 40px;
		font-family: "Barlow Semi Condensed", sans-serif;
		font-weight: 600;
		color: #ffe400;
		line-height: 1;
	}
	.ttl_contact .tel_list .number_tel span {
		font-size: 12px;
		position: relative;
		white-space: nowrap;
		top: 8px;
		padding-left: 10px;
	}

	.form-sec {
		padding: 5vw 3vw;
		border-radius: 10px;
		  max-width: 1200px;
		  margin: 0 auto;
		position: relative;
	}
	.form-sec::before {
		content: "";
		background: url(../images/top/sp/sp_con_frame.png) no-repeat center center / contain;
		width: 100%;
		height: clamp(40px, 10vw, 96px);
		position: absolute;
		top: 0;
		left: 0;
	}
	.form-sec::after {
		content: "";
		background: url(../images/top/sp/sp_con_frame.png) no-repeat center center / contain;
		width: 100%;
		height: clamp(40px, 10vw, 96px);
		position: absolute;
		bottom: -25px;
		left: 0;
		transform: scale(-1);
	}
	.contact-title {
		padding-bottom: 12px;
		width: 100%;
		height: auto;
		font-size: 23px;
		line-height: 1.5;
		letter-spacing: .03em;
		color: #fff;
		font-weight: bold;
		margin: 10px 0 20px;
	}
	.sfm1 {
		position: relative;
	}
	.form_wrap table tr {
	    display: block;
	    margin-bottom: 15px;
	}
	.form_wrap table tr th {
	    font-size: 16px;
	    width: 100%;
		padding-top: 0;
	}
	.form_wrap table tr td {
		width: 100%;
		margin-top: 8px;
	}
	.form_wrap input[type=text] {
	    font-size: 16px;
	    height: 50px;
	    padding: 15px 12px;
		border-radius: 2.5px;
	}
	.form_wrap .zip-wrap {
	  max-width: 210px;
	  width: calc(100% - 120px);
	  margin-right: 6px;
	  border-radius: 2.5px;
	}
	.form_wrap .zip-wrap input[type=text] {
	    padding: 15px 12px 15px 32px;
	}
	.form_wrap .zip-wrap::before {
	  font-size: 16px;
	  top: 12px;
	  left: 12px;
	}
	.form_wrap input[type=button] {
	    font-size: 14px;
	    line-height: 1.625;
	    letter-spacing: 0.03em;
	    font-weight: 500;
	}
	.form_wrap .address input[type=button] {
	    padding-bottom: 0;
	    margin-left: 0;
		height: 50px;
		max-width: clamp(110px, 3vw, 170px);
		position: relative;
        top: -1px;
	}
	.form_wrap .agree_area {
	    margin: 17px 0 0;
	    text-align: center;
	    font-size: 14px;
	    font-weight: bold;
	}
	.form_wrap input[type=checkbox] + label {
		font-size: 15px;
		padding-left: 28px;
		margin-right: 0;
		margin-left: 0;
		white-space: nowrap;
	}

	.form_wrap input[type=checkbox] + label::before {
	  width: 19px;
	  height: 19px;
	  top: 2px;
	}
	.form_wrap input[type=checkbox] + label::after {
		opacity: 0;
		content: "";
		position: absolute;
		top: 3px;
		left: 1px;
		background: url('../images/top/arw_submit.svg') no-repeat;
		width: 17px;
		height: 16px;
		background-size: 100% 100%;
	}

	.form_wrap textarea {
		font-size: 16px;
		min-height: 150px;
		padding: 15px 12px;
		border-radius: 2.5px;
	}

	.form_wrap .overscroll {
		margin-top: 30px;
		height: 143.5px;
		padding: 19px 15px; 
		-webkit-overflow-scrolling: touch;
		border-radius: 2.5px;
	}

	.form_wrap .overscroll ul > li {
	  margin-bottom: 6px;
	}
	.form_wrap .overscroll ul > li strong {
	  font-size: 12px;
	  line-height: 1.79;
	  margin-bottom: 1px;
	}

	.form_wrap .overscroll ul > li p {
	  font-size: 11px;
	  line-height: 1.5;
	}

	.form_wrap .submit_area {
	  margin-top: 25px;
	}

	.form_wrap .submit_area input[type=submit] {
		font-size: 17px;
		line-height: 1;
    	width: 100%;
		max-width: 320px;
		height: 59px;
		border-radius: 2.5px;
		margin: 0 auto;
	}
	.form_wrap .contact_back a {
		font-size: 17px;
		line-height: 1;
		width: 265px;
		height: 59px;
		border-radius: 2.5px;
		margin: 0 auto;
		background: linear-gradient(168deg, #ffe400 37%, #edd400 36%, #edd400 85%, #edd400 100%);
		background-position: 1% 50%;
		background-size: 160% auto;
		box-sizing: border-box;
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		box-sizing: border-box;
		transition: background-size 0.3s ease, transform
	}

  .form_wrap .submit_area ul.koumoku {
    	display: flex;
    	flex-direction: column-reverse;
    	justify-content: center;
    	align-items: center;
  }

	.form_wrap .submit_area ul.koumoku li {
	  font-size: 17px;
	  line-height: 1;
	  width: 265px;
	  height: 59px;
	  border-radius: 2.5px;
	  margin: 0 auto;
	}
	.form_wrap .submit_area ul.koumoku li input[type=submit] {
	  font-size: 17px;
	  line-height: 1;
	  width: 265px;
	  height: 59px;
	  border-radius: 2.5px;
	  margin: 0 auto;
	}
	.form_wrap .submit_area ul.koumoku .btn_back.left,
	.form_wrap .submit_area ul.koumoku .send.right {
		float: none;
	}
	.form_wrap .submit_area ul.koumoku .btn_back.left {
		margin-top: 20px;
	}
	.form_wrap .container {
		margin: auto;
	}
	.form_wrap .container p > a {
		background: linear-gradient(#000, #000) 0 100%/0 1px no-repeat;
		background-size: 100% 1px;
		padding-bottom: 2px;
		display: inline;
	}
	.form_wrap .agree_area {
		margin: 18px 0 0;
		text-align: left;
		font-size: 18px;
		letter-spacing: 0.03em;
		font-weight: bold;
		position: relative;
        left: -4px;
	}
	.form_wrap .need {
		font-size: 10px;
		border-radius: 15px;
		width: 30px;
		height: 18px;
		padding-top: 4px;
		margin-left: 5px;
		position: relative;
        right: 0;
        top: -1px;
	}
	.form_wrap table {
		display: block;
	}
	.form_wrap table tbody {
		display: block;
	}
	.form_wrap table tr {
		margin-bottom: 20px;
	}
	.form_wrap  .textarea,
	.form_wrap  .address {
		align-items: flex-start;
	}
	.sfm1 .form_wrap .textarea th,
	.sfm1 .form_wrap .address th  {
		padding-top: 0;
	}
	.form_wrap table tr th {
		display: block;
		text-align: left;
		position: relative;
	}
	.form_wrap table tr th small {
		font-size: 11px;
	}
	.form_wrap table tr td {
		display: block;
		padding-left: 0;
	}
	.form_wrap table tr td .text02 {
		margin-top: 8px;
	}
	.form_wrap .check-list {
		padding-top: 5px;
		padding-left: 0;
	}
	.form_wrap .check-list li {
		display: inline-block;
	}
	.form_wrap .form_wrap > p {
		margin-top: 0 !important;
		font-size: 16px;
		line-height: 1.5;
		letter-spacing: 0.03em;
		font-weight: 500;
	}
	.form_wrap.sfm2 td p {
		overflow-wrap: break-word;
	}
}

/*==========================================
  Common
==========================================*/
.txt_lead {
	font-size: 17px;
	font-weight: 500;
	line-height: 2;
}
.txt_lead_s {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
}
.txt_lead_m {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.8;
}

@media (max-width: 799px) {
	.txt_lead {
		font-size: 14px;
		font-weight: 400;
		line-height: 1.8;
	}
	.txt_lead_s {
		font-size: 12px;
		font-weight: 400;
		line-height: 1.8;
	}
	.txt_lead_m {
		font-size: 17px !important;
	}
}


/*==========================================
  Layout
==========================================*/

/*==========================================
  Main
==========================================*/
main {
	/* padding-top: 100px; */
}
@media (max-width: 799px) { 
	main {
		padding-top: 40px;
	}
}

/*==========================================
  メインイメージ
==========================================*/
main .mv_sec {
	width: 100%;
	height: clamp(400px, 46vw, 650px);
	/* max-height: 650px;
	min-height: 650px; */
	overflow: hidden;
	position: relative;
	margin-top: 100px;
}
main .mv_sec .bg_mv {
	aspect-ratio: 40 / 13;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
    width: 100%;
    height: 650px;
}
main .mv_sec .bg_mv img {
	object-fit: cover;
	object-position: center center;
	width: 100%;
	height: 100%;
}
main .mv_sec .mv_top_wrap {
	background: url(../images/top/bg_3point.jpg) no-repeat center center / cover;
	max-height: 100px;
    z-index: 2;
    position: relative;
	padding: clamp(15px, 2vw, 22px) 0;
	transform: translateY(-100px);
	transition: transform .3s ease-out;
}
main .mv_sec .mv_top_wrap ul {
	display: flex;
	justify-content: center;
	align-items: center;
	/* column-gap: clamp(30px, 3vw, 40px); */
	max-width: clamp(700px, 60vw, 912px);
	margin: 0 auto;
	position: relative;
}
main .mv_sec .mv_top_wrap ul li.icon_and {
	width: clamp(18px, 5%, 50px);
    height: clamp(18px, 5%, 50px);
    padding-left: 0.5vw;
    padding-right: 0.5vw;
    flex-shrink: 0;
    text-align: center;
	position: relative;
    top: 2px;
}
main .mv_sec .mv_top_wrap ul li:nth-of-type(3)::before {
	content: none;
}
/* loaded */
main .mv_sec.loaded .mv_top_wrap {
	transform: translateY(0);
}

main .mv_main_wrap {
	display: flex;
	justify-content: center;
	max-width: 1400px;
	padding-left: 100px;
	padding-right: 100px;
	box-sizing: border-box;
	margin-inline: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
main .mv_main_wrap .gmen_wrap {
	width: 45.75%;
    /* min-height: clamp(500px, 38vw, 600px); */
    position: relative;
	right: -2.5vw;
    z-index: 1;
}
main .mv_main_wrap .gmen_wrap .img_gmen {
	position: absolute;
    bottom: 0;
	right: -70px;
    aspect-ratio: 199 / 160;
	transform: translateY(100px);
	transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
}
main .mv_main_wrap .gmen_wrap .img_gmen img {
	width: 100%;
    height: 100%;
    object-fit: contain;
}
/* loaded */
main .mv_sec.loaded .mv_main_wrap .gmen_wrap .img_gmen {
	transform: translateY(0);
}


main .mv_main_wrap .catch_wrap {
	width: 56.1666%;
    position: relative;
	padding-bottom: clamp(35px, 5.5vw, 74px);
	box-sizing: border-box;
	max-width: 700px;
    z-index: 1;
	/* animation: poyon 1.2s forwards; */
}
main .mv_main_wrap .catch_wrap .bg_catch {
	display: block;
    width: clamp(400px, 156%, 870px);
    height: 100%;
    position: absolute;
	left: -90px;
    top: -2vw;
    z-index: -1;
	opacity: 0;
	transform: scale(0.9, 0.9);
	transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1), opacity .4s;
	transition-delay: .7s;
}
main .mv_main_wrap .catch_wrap dl.catch_top {
	display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    bottom: 0;
    left: -0.6vw;
    width: 117%;
	opacity: 0;
	transform: translateY(5%);
	transition: transform .6s ease-out, opacity .4s;
}
main .mv_main_wrap .catch_wrap dl.catch_top dt {
	max-width: clamp(100px, 12vw, 160px);
	width: 100%;
}
main .mv_main_wrap .catch_wrap dl.catch_top dd {
	position: relative;
	left: -1.5vw;
	clip-path: inset(0 100% 0 0);
	transform: translateX(-5%);
    transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1), clip-path .5s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: .3s;
}
/* loaded */
main .mv_sec.loaded .mv_main_wrap .catch_wrap dl.catch_top {
	opacity: 1;
	transform: translateY(0);
}
main .mv_sec.loaded .mv_main_wrap .catch_wrap dl.catch_top dd {
	clip-path: inset(0);
	transform: translate(0);
}
main .mv_sec.loaded .mv_main_wrap .catch_wrap .bg_catch {
	opacity: 1;
	transform: scale(1);
}


main .mv_main_wrap .catch_wrap div.catch_btm {
	max-width: 660px;
    position: relative;
    top: -20px;
	transform: scale(1.5, 1.5) rotate(180deg);
	opacity: 0;
	transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1), opacity .2s;
	transition-delay: .5s;
}
main .mv_main_wrap .catch_wrap div.catch_btm::after {
	content: "";
	background: url(../images/top/mv_ct_frame.png) no-repeat center center / contain;
	position: absolute;
	right: -10px;
	bottom: -8px;
	width: clamp(70px, 5.5vw, 80px);
	height: clamp(80px, 5.5vw, 100px);
	display: block;
	transform: scale(-1);
}
main .mv_main_wrap .catch_wrap div.catch_btm .ttl_hd03_catch {
	max-width: clamp(380px, 90%, 570px);
	margin-inline: auto;
	height: auto;
	padding-bottom: 10px;
	position: relative;
	z-index: 1;
}
main .mv_main_wrap .catch_wrap div.catch_btm .ttl_hd03_catch::before {
	content: "";
	background: url(../images/top/mv_ct_frame.png) no-repeat center center / contain;
	position: absolute;
	left: -20px;
	top: 0;
	width: clamp(70px, 5.5vw, 80px);
	height: clamp(80px, 5.5vw, 100px);
	display: block;
}
main .mv_main_wrap .catch_wrap div.catch_btm .ttl_hd03_catch span.arw_up {
	width: clamp(90px, 28%, 165px);
    /* height: clamp(90px, 26%, 165px); */
    position: absolute;
    right: calc(50% - clamp(200px, 25vw, 345px));
    top: 4px;
    z-index: -1;
	clip-path: inset(100% 75% 0 0);
	transform: scale(0.5) translateY(30px);
	transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1), clip-path .3s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: .8s;
}
main .mv_main_wrap .catch_wrap div.catch_btm .ttl_catch_btm {
	width: 100%;
}
main .mv_main_wrap .catch_wrap div.catch_btm .ttl_catch_btm dl.catch_stop {
	display: flex;
}
main .mv_main_wrap .catch_wrap div.catch_btm .ttl_catch_btm dl.catch_stop dt {
	position: relative;
	width: clamp(180px, 40%, 230px);
	left: -8px;
}
main .mv_main_wrap .catch_wrap div.catch_btm .ttl_catch_btm dl.catch_stop dd {
	position: relative;
	left: -22px;
	width: clamp(300px, 70%, 430px)
}
main .mv_main_wrap .catch_wrap div.catch_btm .ttl_catch_btm dl.catch_stop dd small.label_stop {
	position: absolute;
	top: clamp(-50px, -11%, 4vw);
    left: clamp(1vw, 6.5%, 9vw);
    width: clamp(80px, 39%, 175px);
    height: clamp(80px, 39%, 175px);
	transform: scale(1) translateY(-60px);
    opacity: 0;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity .3s;
    transition-delay: 1s;
}
main .mv_main_wrap .catch_wrap div.catch_btm .ttl_catch_btm dl.catch_stop dd span {
	position: relative;
	display: block;
}
main .mv_main_wrap .catch_wrap div.catch_btm .ttl_catch_btm dl.catch_stop dd span.btm_boushi {
	position: relative;
}
main .mv_main_wrap .catch_wrap div.catch_btm .ttl_catch_btm dl.catch_stop dd span.btm_boushi::after {
	content: "";
	background-color: #ffe400;
	width: 100%;
    height: 14px;
    position: absolute;
    bottom: 6px;
    left: -6px;
    transform: skew(-22deg, -3deg);
	z-index: -1;
}
main .mv_main_wrap .catch_wrap div.catch_btm .ttl_catch_btm dl.catch_stop dd span.top_boushi {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}
/* loaded */
main .mv_sec.loaded .mv_main_wrap .catch_wrap div.catch_btm .ttl_hd03_catch span.arw_up {
	clip-path: inset(0);
	transform: scale(1) translate(0);
}
main .mv_sec.loaded .mv_main_wrap .catch_wrap div.catch_btm {
	transform: scale(1, 1) rotate(0);
	opacity: 1;
}
main .mv_sec.loaded .mv_main_wrap .catch_wrap div.catch_btm .ttl_catch_btm dl.catch_stop dd small.label_stop {
	transform: scale(1) translateY(0);
    opacity: 1;
}

/* TB */
@media (max-width:880px) {
	main .mv_main_wrap .catch_wrap::after {
		left: -70px;
		top: -30px;
	}
}

/* SP */
@media (max-width: 799px) {
	main .mv_sec {
		width: 100%;
		max-height: 510px;
		min-height: 510px;
		overflow: hidden;
		position: relative;
		margin-top: 0;
	}
	main .mv_sec .mv_top_wrap {
		background: url(../images/top/bg_3point.jpg) no-repeat center center / cover;
		/* height: 61px; */
		position: relative;
		box-sizing: border-box;
		padding: clamp(8px, 2vw, 15px) 0;
		z-index: 2;
	}
	main .mv_sec .mv_top_wrap ul {
		display: flex;
		justify-content: center;
		align-items: center;
		max-width: 100%;
		margin: 0 auto;
		position: relative;
        top: -3px;
		padding-left: 10px;
        padding-right: 10px;
	}
	main .mv_sec .mv_top_wrap ul li {
		height: clamp(42px, 10vw, 60px);
	}
	main .mv_sec .mv_top_wrap ul li.icon_and {
		width: clamp(18px, 5%, 30px);
        height: clamp(18px, 5%, 30px);
        padding-left: 0.5vw;
        padding-right: 0.5vw;
        flex-shrink: 0;
        text-align: center;
        position: relative;
        top: 5px;
        left: 3px;
	}
	main .mv_sec .mv_top_wrap ul li img {
		width: 100%;
        height: 100%;
        object-fit: contain;
	}
	main .mv_main_wrap {
		flex-direction: column;
		align-items: center;
		height: 450px;
		padding-left: 15px;
		padding-right: 15px;
		z-index: 1;
	}
	main .mv_main_wrap .gmen_wrap {
		width: 100%;
		position: relative;
		bottom: 2px;
		right: 0;
		z-index: 0;
		min-height: auto;
	}
	main .mv_main_wrap .gmen_wrap .img_gmen {
		position: initial;
		aspect-ratio: 171 / 134;
		display: block;
        width: clamp(320px, 42vw, 480px);
        margin-inline: auto;
	}
	main .mv_main_wrap .gmen_wrap .img_gmen img {
		width: 100%;
		max-width: 100%;
	}
	main .mv_main_wrap .catch_wrap {
		width: 100%;
        position: relative;
        padding-top: clamp(45px, 18%, 180px);
        padding-bottom: 1vw;
        box-sizing: border-box;
        max-width: clamp(290px, 50%, 450px);
        left: 0;
        z-index: 1;
	}
	main .mv_main_wrap .catch_wrap::after {
		width: clamp(400px, 150%, 800px);
		top: 35px;
        left: -84px;
		z-index: -1;
	}
	main .mv_main_wrap .bg_catch {
		display: block;
		max-width: clamp(400px, 85vw, 600px);
        width: 112%;
        height: 100%;
        position: absolute;
        top: 2vw;
        left: 50%;
        z-index: -1;
		opacity: 0;
		transform: scale(0.9, 0.9) translateX(-50%);
		transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1), opacity .4s;
		transition-delay: .5s;
	}
	/* loaded */
	main .mv_sec.loaded .mv_main_wrap .bg_catch {
		opacity: 1;
		transform: scale(1) translateX(-50%);
	}


	main .mv_main_wrap .catch_wrap dl.catch_top {
		left: -4.6vw;
		bottom: -10px;
		width: 120%;
	}
	main .mv_main_wrap .catch_wrap dl.catch_top dt {
		max-width: clamp(80px, 19%, 120px);
	}
	main .mv_main_wrap .catch_wrap dl.catch_top dd {
		max-width: clamp(280px, 76%, 360px);
		left: -10px;
	}
	main .mv_main_wrap .catch_wrap div.catch_btm {
		top: 0;
	}
	main .mv_main_wrap .catch_wrap div.catch_btm::after {
		right: -40px;
        bottom: -3px;
		width: clamp(45px, 33%, 65px);
        height: clamp(45px, 33%, 65px);
	}
	main .mv_main_wrap .catch_wrap div.catch_btm .ttl_hd03_catch {
		max-width: clamp(380px, 85%, 500px);
		margin-inline: auto;
		padding-bottom: 5px;
		position: relative;
		left: -2vw;
		z-index: 1;
	}
	main .mv_main_wrap .catch_wrap div.catch_btm .ttl_hd03_catch::before {
		width: clamp(45px, 54%, 65px);
        height: clamp(45px, 54%, 65px);
        left: -24px;
        top: 0;
	}
	main .mv_main_wrap .catch_wrap div.catch_btm .ttl_hd03_catch span.arw_up {
		width: clamp(76px, 30%, 125px);
        height: clamp(76px, 30%, 125px);
        position: absolute;
		right: calc(50% - clamp(180px, 30.5vw, 240px));
        top: -3px;
        z-index: -1;
	}
	main .mv_main_wrap .catch_wrap div.catch_btm .ttl_catch_btm dl.catch_stop {
		width: 110%;
		left: -2vw;
        position: relative;
	}
	main .mv_main_wrap .catch_wrap div.catch_btm .ttl_catch_btm dl.catch_stop dt {
		position: relative;
		width: clamp(120px, 64%, 220px);
		left: -8px;
	}
	main .mv_main_wrap .catch_wrap div.catch_btm .ttl_catch_btm dl.catch_stop dd {
		position: relative;
		left: -3vw;
		width: clamp(210px, 100vw, 360px);
	}
	main .mv_main_wrap .catch_wrap div.catch_btm .ttl_catch_btm dl.catch_stop dd::before {
		left: 0;
		top: 0;
	}
	main .mv_main_wrap .catch_wrap div.catch_btm .ttl_catch_btm dl.catch_stop dd::after {
        position: absolute;
        top: clamp(-4px, 0vw, -18px);
        left: clamp(4px, 10%, 30px);
        width: clamp(70px, 36%, 110px);
        height: 101px;
	}
	@media (max-width: 780px) {
		main .mv_main_wrap .catch_wrap div.catch_btm .ttl_catch_btm dl.catch_stop dd::after {
			top: clamp(-14px, 0vw, -18px);
            left: clamp(4px, 10%, 30px);
            width: clamp(70px, 36%, 110px);
            height: 101px;
		}
	}
	@media (max-width: 480px) {
		main .mv_main_wrap .catch_wrap dl.catch_top {
			left: -5.6vw;
			bottom: -3px;
		}
		main .mv_main_wrap .catch_wrap dl.catch_top dt {
			max-width: clamp(80px, 25%, 120px);
		}
		main .mv_main_wrap .catch_wrap dl.catch_top dd {
			max-width: clamp(280px, 76%, 360px);
			left: -10px;
		}
	}
}

/*==========================================
  万引きリード
==========================================*/
.lead_sec {
	background-color: #ffd735;
	position: relative;
}
.lead_sec::before {
	content: "";
	display: block;
	background: repeating-linear-gradient(
		135deg,  #4c4010, #4c4010 5px, #ffd735 5px, #ffd735 10px
  	);
	height: 20px;
}
.lead_sec .lead_head {
	position: relative;
	padding-top: 30px;
	padding-bottom: 60px;
}
.lead_sec .lead_head::after {
	content: "";
	display: block;
	background: repeating-linear-gradient(
		135deg,  #4c4010, #4c4010 5px, #ffd735 5px, #ffd735 10px
  	);
	height: 20px;
	width: 60%;
	position: absolute;
	left: 0;
	bottom: 0;
	clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
}
.lead_sec .lead_head .container {
	position: relative;
}
.lead_sec .lead_head .ttl_hd04_lead {
	font-size: 30px;
	font-weight: 700;
	padding-bottom: 30px;
	line-height: 1.5;
}
.lead_sec .lead_head .ttl_hd04_lead strong {
	font-size: 50px; 
	font-weight: 900;
}
.lead_sec .lead_head .ttl_hd04_lead span.txt_settouzai {
	display: inline-block;
    max-width: 210px;
    padding-left: 5px;
    padding-right: 5px;
    width: 100%;
	clip-path: inset(0 100% 0 0);
	transform: translateX(-5%);
    transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1), clip-path .6s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: .2s;
}
.lead_sec .lead_head .ttl_hd04_lead span.txt_settouzai img {
	vertical-align: bottom;
}
/* move */
.lead_sec .lead_head .ttl_hd04_lead.move span.txt_settouzai {
	clip-path: inset(0);
	transform: translate(0);
}

/* SP */
@media (max-width: 799px) {
	.lead_sec::before {
		content: "";
		display: block;
		background: repeating-linear-gradient(135deg, #4c4010, #4c4010 3px, #ffd735 3px, #ffd735 6px);
		height: 12px;
	}
	.lead_sec .lead_head {
		position: relative;
		padding: 20px 25px 35px;
	}
	.lead_sec .lead_head::after {
		content: "";
		display: block;
		background: repeating-linear-gradient(135deg, #4c4010, #4c4010 3px, #ffd735 3px, #ffd735 6px);
		height: 12px;
		width: 60%;
		position: absolute;
		left: 0;
		bottom: 0;
		clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
	}
	.lead_sec .lead_head .container {
		padding-left: 0;
		padding-right: 0;
	}
	.lead_sec .lead_head .ttl_hd04_lead {
		font-size: 18px;
		font-weight: 700;
		line-height: 1.3;
		padding-bottom: 24px;
		white-space: nowrap;
	}
	.lead_sec .lead_head .ttl_hd04_lead strong {
		font-size: clamp(25px, 8vw, 31px);
	}
	.lead_sec .lead_head .ttl_hd04_lead span.txt_settouzai {
		display: inline-block;
		max-width: clamp(97px, 36%, 135px);
        padding-left: 0;
        padding-right: 10px;
        width: 100%;
	}
	.lead_sec .lead_head .txt_lead {
		font-weight: 500;
	}
}

/*==========================================
  万引きの被害
==========================================*/
.lead_wrap_01 {
	position: relative;
	max-width: 2000px;
	margin-inline: auto;
	bottom: -7vw;
    margin-top: -7vw;
	z-index: 1;
}
.lead_wrap_01::after {
    content: "";
    background-color: #f3c200;
	background-image: url(../images/top/pt_lead_line.png);
	background-size: 9px;
	background-repeat: repeat;
    clip-path: polygon(0 24.28vw, 100% 0, 100% 100%, 0 calc(100% - 24.28vw));
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -1;
}
.lead_wrap_01 .lead_wrap_inner {
	position: relative;
	width: 100%;
    height: 100%;
	padding-bottom: 15vw;
}
.lead_wrap_01 .lead_wrap_inner::before {
	content: "";
	background: url(../images/top/higai_bg_radi_r_wide.png) no-repeat right top 4px / clamp(300px, 85vw, 1000px);
    position: absolute;
    top: 0;
	right: 0;
    width: 100%;
    height: 100%;
	clip-path: polygon(0 24.28vw, 0 0, 0 100%, 0 calc(100% - 24.28vw));
	opacity: 0;
	transform: translate(-30px, 30px);
	transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1), clip-path .6s cubic-bezier(0.16, 1, 0.3, 1), opacity .3s;
	transition-delay: .3s;
}
.lead_wrap_01 .lead_wrap_inner::after {
	content: "";
	background: url(../images/top/higai_img_sonshitsu.png) no-repeat right bottom / 50%;
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	clip-path: polygon(0 24.28vw, 100% 0, 100% 100%, 0 calc(100% - 24.28vw));
}
.lead_wrap_01 .container {
	padding-top: 50px;
	position: relative;
	z-index: 1;
}
/* move */
.lead_wrap_01 .lead_wrap_inner.move::before {
	opacity: 1;
	transform: translate(0, 0);
	clip-path: polygon(0 24.28vw, 100% 0, 100% 100%, 0 calc(100% - 24.28vw));
}

/* Title */
.lead_wrap_01 .ttl_wrap_lead {
	padding-left: 30px;
	padding-bottom: 30px;
}
.lead_wrap_01 .ttl_wrap_lead .top {
	display: inline-block;
    position: relative;
    left: clamp(120px, 12vw, 170px);
    bottom: -15px;
    margin-right: 18vw;
}
.lead_wrap_01 .ttl_wrap_lead .top figure {
	clip-path: inset(0 100% 0 0);
	transform: translateX(-5%);
    transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1), clip-path .6s cubic-bezier(0.16, 1, 0.3, 1);
}
.lead_wrap_01 .ttl_wrap_lead .top span {
	display: inline-block;
	max-width: clamp(82px, 19%, 162px);
    width: 100%;
    position: absolute;
    bottom: clamp(10px, 1.5vw, 30px);
    right: clamp(10px, 3.5vw, 50px);
	clip-path: inset(0 100% 0 0);
	transform: translateX(-5%);
    transition: transform .4s ease-out .2s, clip-path .3s ease-out .4s;
}
.lead_wrap_01 .ttl_wrap_lead .btm {
	display: inline-block;
	position: relative;
}
.lead_wrap_01 .ttl_wrap_lead .btm figure {
	clip-path: inset(0 100% 0 0);
    transform: translateX(-5%);
    transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1), clip-path .5s cubic-bezier(0.16, 1, 0.3, 1);
}
.lead_wrap_01 .ttl_wrap_lead .btm span {
	display: inline-block;
	max-width: clamp(270px, 47%, 528px);
    width: 100%;
    position: absolute;
    bottom: -10px;
    left: clamp(12px, 5.2vw, 76px);
	clip-path: inset(0 100% 0 0);
    transform: translateX(-5%);
    transition: transform .4s ease-out .2s, clip-path .3s ease-out .2s;
}
/* move */
.lead_wrap_01 .ttl_wrap_lead.move .top figure,
.lead_wrap_01 .ttl_wrap_lead.move .top span,
.lead_wrap_01 .ttl_wrap_lead.move .btm figure,
.lead_wrap_01 .ttl_wrap_lead.move .btm span {
	clip-path: inset(0);
	transform: translate(0);
}

/* graph */
.lead_wrap_01 .col_wrap {
	display: flex;
	justify-content: flex-start;
	column-gap: 50px;
}
.lead_wrap_01 .col_wrap figure {
	aspect-ratio: 716 / 505;
	max-width: 716px;
    display: block;
    flex-shrink: 0;
	position: relative;
	width: 59.66%;
}
.lead_wrap_01 .col_wrap figure span.label_kenkyo {
	position: absolute;
    top: clamp(32px, 4vw, 70px);
    right: 1vw;
    max-width: clamp(100px, 10vw, 148px);
    width: 100%;
	transition: opacity .3s;
	opacity: 0;
}
.lead_wrap_01 .col_wrap .txt_box .txt_lead {
	font-weight: 400;
	line-height: 1.8;
	padding-bottom: 24px;
}
.lead_wrap_01 .col_wrap .txt_box .txt_lead_m {
	font-size: 17px;
	font-weight: 400;
	line-height: 1.8;
}
.lead_wrap_01 .col_wrap .txt_box .txt_lead_m span.txt_lossPrice {
	display: block;
	padding-top: 15px;
	position: relative;
}
.lead_wrap_01 .col_wrap .txt_box .txt_lead_m span.txt_lossPrice::after {
	content: "※経済産業省「商業統計」より";
	font-size: 10px;
	color: #1f1f1f;
	position: absolute;
	bottom: -15px;
	right: 0;
}
/* move */
.lead_wrap_01 .col_wrap.move figure span.label_kenkyo {
	opacity: 1;
	animation: poyon 1.2s forwards;
}
@keyframes poyon {
	0%   { transform: scale(1.0, 1.0) translate(0%, 0%); }
	15%  { transform: scale(0.9, 0.9) translate(0%, 5%); }
	30%  { transform: scale(1.3, 0.8) translate(0%, 10%); }
	50%  { transform: scale(0.8, 1.5) translate(0%, -10%); }
	70%  { transform: scale(1.1, 0.9) translate(0%, 5%); }
	100% { transform: scale(1.0, 1.0) translate(0%, 0%); }
}

/* TB */
@media (max-width: 840px) { 
	/* graph */
	.lead_wrap_01 .col_wrap {
		flex-direction: column;
		row-gap: 30px;
	}
	.lead_wrap_01 .col_wrap figure {
		margin-inline: auto;
		width: 100%;
	}
	.lead_wrap_01 .col_wrap .txt_box .txt_lead_m span.txt_lossPrice {
		width: 70%;
	}
}

@media (max-width: 799px) {
/* bg */
.lead_wrap_01 {
	position: relative;
	z-index: 1;
	height: 100%;
	overflow: visible;
}
.lead_wrap_01::before {
    display: none;
}
.lead_wrap_01::after {
    content: "";
    background-color: #f3c200;
	background-image: url(../images/top/pt_lead_line.png);
	background-size: 6px;
	background-repeat: repeat;
    clip-path: polygon(0 35.89vw, 100% 0, 100% 100%, 0 calc(100% - 35.89vw));
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -1;
}
.lead_wrap_01 .lead_wrap_inner {
	position: relative;
	width: 100%;
    height: 100%;
	padding-bottom: 35.89vw;
}
.lead_wrap_01 .lead_wrap_inner::before {
	content: "";
	background: url(../images/top/sp/sp_higai_bg_radi_r.png) no-repeat right top / contain;
    position: absolute;
    top: 0;
	right: 0;
    width: 100%;
    height: 100%;
	clip-path: polygon(0 35.89vw, 100% 0, 100% 100%, 0 calc(100% - 35.89vw));
}
.lead_wrap_01 .lead_wrap_inner::after {
	content: "";
	background: url(../images/top/sp/sp_higai_img_sonshitsu.png) no-repeat right bottom / 80%;
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	clip-path: polygon(0 35.89vw, 100% 0, 100% 100%, 0 calc(100% - 35.89vw));
}
/* title */
.lead_wrap_01 .container {
	padding-top: 50px;
	position: relative;
	z-index: 1;
}
.lead_wrap_01 .ttl_wrap_lead {
	padding-left: 0;
	padding-bottom: 30px;
}
.lead_wrap_01 .ttl_wrap_lead .top {
	display: inline-block;
	position: relative;
	left: 0;
    bottom: -15px;
	margin-bottom: 50px;
	margin-right: 50px;
}
.lead_wrap_01 .ttl_wrap_lead .top figure {
	position: relative;
}
.lead_wrap_01 .ttl_wrap_lead .top span {
	display: inline-block;
	max-width: clamp(70px, 26%, 162px);
	width: 100%;
	position: absolute;
	bottom: 7px;
	left: clamp(50px, 65.5%, 405px);
	right: auto;
}
.lead_wrap_01 .ttl_wrap_lead .btm {
	display: inline-block;
	position: relative;
}
.lead_wrap_01 .ttl_wrap_lead .btm span {
	display: inline-block;
	max-width: clamp(215px, 71%, 528px);
	width: 100%;
	position: absolute;
	bottom: clamp(22px, 40%, 41px);
	left: clamp(10px, 8%, 54px);
}
/* graph */
.lead_wrap_01 .col_wrap {
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	row-gap: 20px;
}
.lead_wrap_01 .col_wrap figure {
	aspect-ratio: 449 / 421;
	max-width: 800px;
    display: block;
    flex-shrink: 0;
	width: 100%;
}
.lead_wrap_01 .col_wrap figure span.label_kenkyo {
	position: absolute;
	top: clamp(46px, 12vw, 120px);
	right: 1vw;
	max-width: clamp(100px, 22vw, 165px);
	width: 100%;
}
.lead_wrap_01 .col_wrap .txt_box {
	padding-left: 10px;
	padding-right: 10px;

}
.lead_wrap_01 .col_wrap .txt_box .txt_lead_m {
	font-size: 14px !important;
}
.lead_wrap_01 .col_wrap .txt_box .txt_lead_m span.txt_lossPrice {
	max-width: clamp(300px, 60%, 640px);
	width: 100%;
}
}

/*==========================================
  複数犯や従業員
==========================================*/
.lead_wrap_02 {
	position: relative;
	max-width: 2000px;
	margin-inline: auto;
	z-index: 1;
}
.lead_wrap_02::after {
	content: "";
    background-color: #f3c200;
	background-image: url(../images/top/pt_lead_line.png);
	background-size: 9px;
	background-repeat: repeat;
    clip-path: polygon(0 0, 100% 24.28vw, 100% calc(100% - 24.28vw), 0 100%);
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -1;
}
.lead_wrap_02 .lead_wrap_inner {
	position: relative;
	width: 100%;
	height: 100%;
	padding-bottom: 3vw;
}
.lead_wrap_02 .lead_wrap_inner::before {
	content: "";
    background: url(../images/top/higai_bg_radi_l.png) no-repeat left -3vw top -4vw / clamp(300px, 58vw, 1281px);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(25% 50%, 50% 24.28vw, 100% calc(100% - 24.28vw), 50% 100%);
	opacity: 0;
	transform: translate(30px, 30px);
	transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1), clip-path .5s cubic-bezier(0.16, 1, 0.3, 1), opacity .3s;
	transition-delay: .3s;
}
/* move */
.lead_wrap_02 .lead_wrap_inner.move::before {
	opacity: 1;
	transform: translate(0, 0);
    clip-path: polygon(0 0, 100% 24.28vw, 50% calc(100% - 24.28vw), 0 100%);
}

.lead_wrap_02 .container {
	padding-top: 5vw;
	position: relative;
	z-index: 1;
}
.lead_wrap_02 .ttl_wrap_lead {
	padding-bottom: 70px;
}
.lead_wrap_02 .ttl_wrap_lead .top {
	display: inline-block;
	position: relative;
	left: 0;
    bottom: -15px;
	margin-right: 22vw;
}
.lead_wrap_02 .ttl_wrap_lead .top figure {
	clip-path: inset(0 100% 0 0);
	transform: translateX(-5%);
    transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1), clip-path .6s cubic-bezier(0.16, 1, 0.3, 1);
}
.lead_wrap_02 .ttl_wrap_lead .top span {
	display: inline-block;
	max-width: clamp(200px, 47%, 305px);
    width: 100%;
    position: absolute;
    bottom: 11px;
    right: clamp(30px, 6.5vw, 72px);
	clip-path: inset(0 100% 0 0);
	transform: translateX(-5%);
    transition: transform .4s ease-out .2s, clip-path .3s ease-out .2s;
}
.lead_wrap_02 .ttl_wrap_lead .btm {
	display: inline-block;
	position: relative;
}
.lead_wrap_02 .ttl_wrap_lead .btm figure {
	clip-path: inset(0 100% 0 0);
	transform: translateX(-5%);
    transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1), clip-path .6s cubic-bezier(0.16, 1, 0.3, 1);
}
.lead_wrap_02 .ttl_wrap_lead .btm span {
	display: inline-block;
	max-width: clamp(200px, 28vw, 305px);
    width: 100%;
    position: absolute;
    bottom: -39px;
    left: 0;
	clip-path: inset(0 100% 0 0);
	transform: translateX(-5%);
    transition: transform .4s ease-out .2s, clip-path .3s ease-out .4s;
}
.lead_wrap_02 .ttl_wrap_lead .btm figure {
	padding-left: clamp(240px, 28.5vw, 310px);
}
.lead_wrap_02 .ttl_wrap_lead p.txt_warning {
	line-height: 1.8;
	text-align: right;
	position: relative;
    top: 32px;
	padding-left: 30vw;
}
.lead_wrap_02 .ttl_wrap_lead p.txt_warning small {
	display: inline-block;
	text-align: left;
}
.lead_wrap_02 .ttl_wrap_lead p.txt_warning span {
	color: #d10017;
	font-weight: 700;
}
/* move */
/* move */
.lead_wrap_02 .ttl_wrap_lead.move .top figure,
.lead_wrap_02 .ttl_wrap_lead.move .top span,
.lead_wrap_02 .ttl_wrap_lead.move .btm figure,
.lead_wrap_02 .ttl_wrap_lead.move .btm span {
	clip-path: inset(0);
	transform: translate(0);
}

.lead_wrap_02 .col_wrap_trick {
	display: flex;
	justify-content: space-between;
	border: 4px solid #1f1f1f;
	border-radius: 0 10px 10px 10px;
	position: relative;
	box-sizing: border-box;
	padding: 36px;
	margin-bottom: 80px;
}
.lead_wrap_02 .col_wrap_trick h5.ttl_trick {
	background-color: #1f1f1f;
	border-radius: 10px 10px 0 0;
	font-size: 28px;
	font-weight: 900;
	color: #fff;
	height: 60px;
	position: absolute;
	padding: 6px 18px 10px;
	top: -60px;
	left: -4px;
	box-sizing: border-box;
	z-index: 0;
}
.lead_wrap_02 .col_wrap_trick h5.ttl_trick::before {
	content: "";
    background-color: #1f1f1f;
    width: 30px;
    height: 59px;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    display: block;
    position: absolute;
    right: -27px;
    top: 1px;
    border-radius: 3px;
}
.lead_wrap_02 .col_wrap_trick h5.ttl_trick::after {
	content: "";
	background: url(../images/top/higai_label_trick.svg) no-repeat center center / contain;
	width: 72px;
    height: 72px;
    position: absolute;
    left: 50%;
    top: -16px;
    z-index: -1;
    transform: translateX(-50%);
}
.lead_wrap_02 .col_wrap_trick h5.ttl_trick span {
	font-size: 42px;
	color: #ffe400;
}
.lead_wrap_02 .col_wrap_trick h5.ttl_trick small {
	font-size: 16px;
}
.lead_wrap_02 .col_wrap_trick ul.trick_list {
	padding-right: 50px;
}
.lead_wrap_02 .col_wrap_trick ul.trick_list li {
	font-size: 17px;
	line-height: 1.5;
	position: relative;
	padding-left: 18px;
	margin-bottom: 8px;
}
.lead_wrap_02 .col_wrap_trick ul.trick_list li:last-child {
	margin-bottom: 0;
}
.lead_wrap_02 .col_wrap_trick ul.trick_list li::before {
	content: "";
	background-color: #1f1f1f;
	width: 10px;
	height: 10px;
	border-radius: 50%;
    position: absolute;
    left: 0;
    top: 9px;
}
.lead_wrap_02 .col_wrap_trick figure {
	aspect-ratio: 10 / 7;
	max-width: 400px;
}
/* move */

/* TB */
@media (max-width: 840px) { 
	/* graph */
	.lead_wrap_02 .col_wrap_trick {
		flex-direction: column;
		row-gap: 30px;
	}
	.lead_wrap_02 .col_wrap_trick ul.trick_list {
		padding-right: 0;
	}
	.lead_wrap_02 .col_wrap_trick figure {
		margin-inline: auto;
	}
}

/* SP */
@media (max-width: 799px) { 
	.lead_wrap_02 {
		position: relative;
		z-index: 1;
		overflow: visible;
		top: 0;
		height: 100%;
		margin-bottom: 0;
		padding-top: 0;
	}
	.lead_wrap_02::before {
		display: none;
	}
	.lead_wrap_02::after {
		content: "";
		background-color: #f3c200;
		background-image: url(../images/top/pt_lead_line.png);
		background-size: 6px;
		background-repeat: repeat;
		clip-path: polygon(0 0, 100% 35.89vw, 100% calc(100% - 35.89vw), 0 100%);
		position: absolute;
		top: 0;
		width: 100%;
		height: 100%;
		display: block;
		z-index: -1;
	}
	.lead_wrap_02 .lead_wrap_inner {
		position: relative;
		width: 100%;
		height: 100%;
		padding-bottom: 5vw;
	}
	.lead_wrap_02 .lead_wrap_inner::before {
		content: "";
		background: url(../images/top/sp/sp_higai_bg_radi_l.png) no-repeat -8px -47px / 88%;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        clip-path: polygon(0 0, 100% 35.89vw, 100% calc(100% - 35.89vw), 0 100%) !important;
	}
	.lead_wrap_02 .ttl_wrap_lead .top {
		display: inline-block;
		position: relative;
		left: 0;
		bottom: -30px;
		margin-right: 50px;
		margin-bottom: 5vw;
	}
	.lead_wrap_02 .ttl_wrap_lead .top span {
		display: inline-block;
        max-width: clamp(100px, 47%, 340px);
        width: 100%;
        position: absolute;
        bottom: 7px;
        left: clamp(50px, 40%, 405px);
        right: auto;
	}
	.lead_wrap_02 .ttl_wrap_lead .btm {
		display: inline-block;
		position: relative;
		top: 15px;
		width: 100%;
	}
	.lead_wrap_02 .ttl_wrap_lead .btm span {
		display: inline-block;
		max-width: clamp(100px, 39%, 316px);
        width: 100%;
        position: absolute;
        bottom: clamp(20px, 33%, 40px);
        left: 0;
	}
	.lead_wrap_02 .ttl_wrap_lead .btm figure {
		padding-left: clamp(100px, 40%, 320px);
	}
	.lead_wrap_02 .ttl_wrap_lead p.txt_warning {
		font-size: 14px;
		padding-bottom: 40px;
		padding-left: 0;
	}
	/* trick */
	.lead_wrap_02 .col_wrap_trick {
		display: flex;
		justify-content: space-between;
		flex-direction: column;
		border: 3px solid #1f1f1f;
		border-radius: 0 5px 5px 5px;
		position: relative;
		box-sizing: border-box;
		padding: 20px;
		margin-bottom: 65px;
	}
	.lead_wrap_02 .col_wrap_trick h5.ttl_trick {
		border-radius: 5px 5px 0 0;
		font-size: 20px;
		height: 44px;
		position: absolute;
		padding: 5px 10px 6px;
		top: -44px;
		left: -3px;
		box-sizing: border-box;
		z-index: 0;
	}
	.lead_wrap_02 .col_wrap_trick h5.ttl_trick::before {
		content: "";
		background-color: #1f1f1f;
		width: 15px;
		height: 43px;
		clip-path: polygon(0 0, 100% 100%, 0 100%);
		display: block;
		position: absolute;
		right: -14px;
		top: 1px;
		border-radius: 3px;
	}
	.lead_wrap_02 .col_wrap_trick h5.ttl_trick::after {
		content: "";
		background: url(../images/top/higai_label_trick.svg) no-repeat center center / contain;
		width: 52px;
		height: 52px;
		top: -12px;
	}
	.lead_wrap_02 .col_wrap_trick h5.ttl_trick span {
		font-size: 30px;
		color: #ffe400;
	}
	.lead_wrap_02 .col_wrap_trick h5.ttl_trick small {
		font-size: 14px;
	}
	.lead_wrap_02 .col_wrap_trick ul.trick_list {
		padding-right: 0;
		padding-bottom: 20px;
	}
	.lead_wrap_02 .col_wrap_trick:nth-of-type(2) ul.trick_list {
		padding-bottom: 0;
	}
	.lead_wrap_02 .col_wrap_trick:nth-of-type(3) ul.trick_list {
		padding-bottom: 0;
	}
	.lead_wrap_02 .col_wrap_trick:nth-of-type(4) ul.trick_list {
		padding-bottom: 0;
	}
	.lead_wrap_02 .col_wrap_trick ul.trick_list li {
		font-size: 14px;
		line-height: 1.5;
		position: relative;
		padding-left: 15px;
		margin-bottom: 8px;
	}
	.lead_wrap_02 .col_wrap_trick ul.trick_list li:last-child {
		margin-bottom: 0;
	}
	.lead_wrap_02 .col_wrap_trick ul.trick_list li::before {
		width: 8px;
		height: 8px;
		border-radius: 50%;
		position: absolute;
		left: 0;
		top: 7px;
	}
	.lead_wrap_02 .col_wrap_trick figure {
		aspect-ratio: 10 / 7;
		max-width: 600px;
        margin-inline: auto;
	}
}

/*==========================================
  狙われやすい店舗
==========================================*/
.lead_wrap_03 {
	position: relative;
	max-width: 2000px;
	margin-inline: auto;
	z-index: 1;
	top: -8vw;
	margin-bottom: -8vw;
}
.lead_wrap_03::after {
    content: "";
    background-color: #f3c200;
	background-image: url(../images/top/pt_lead_line.png);
	background-size: 9px;
	background-repeat: repeat;
    clip-path: polygon(0 24.28vw, 100% 0, 100% 100%, 0 calc(100% - 24.28vw));
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -1;
}
.lead_wrap_03 .ttl_wrap_lead {
	padding-bottom: 120px;
	text-align: right;
}
.lead_wrap_03 .lead_wrap_inner {
	position: relative;
	width: 100%;
	height: 100%;
	padding-top: 10vw;
	padding-bottom: 15vw;
}
.lead_wrap_03 .lead_wrap_inner::before {
	content: "";
	background: url(../images/top/higai_bg_radi_r_wide.png) no-repeat right top 4px / clamp(300px, 85vw, 1000px);
    position: absolute;
    top: 0;
	right: 0;
    width: 100%;
    height: 100%;
	clip-path: polygon(0 24.28vw, 0 0, 0 100%, 0 calc(100% - 24.28vw));
	opacity: 0;
	transform: translate(-30px, 30px);
	transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1), clip-path .6s cubic-bezier(0.16, 1, 0.3, 1), opacity .3s;
	transition-delay: .3s;
}
/* move */
.lead_wrap_03 .lead_wrap_inner.move::before {
	opacity: 1;
	transform: translate(0, 0);
	clip-path: polygon(0 24.28vw, 100% 0, 100% 100%, 0 calc(100% - 24.28vw));
}

.lead_wrap_03 .ttl_wrap_lead .top {
	display: inline-block;
	position: relative;
	left: 0;
    bottom: -15px;
}
.lead_wrap_03 .ttl_wrap_lead .top::after {
	content: "";
	background: url(../images/top/illu_target.svg) no-repeat center center / contain;
	width: clamp(80px, 10vw, 130px);
    height: 130px;
	opacity: 0;
    position: absolute;
	top: -88px;
    left: calc(50% - clamp(48px, 5vw, 80px));
    z-index: 1;
}

.lead_wrap_03 .ttl_wrap_lead .top figure {
	clip-path: inset(0 100% 0 0);
	transform: translateX(-5%);
    transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1), clip-path .5s cubic-bezier(0.16, 1, 0.3, 1);
}
.lead_wrap_03 .ttl_wrap_lead .top span {
	display: inline-block;
    max-width: clamp(300px, 58%, 595px);
    width: 100%;
    position: absolute;
    bottom: 4px;
    right: clamp(30px, 4.8vw, 65px);
	clip-path: inset(0 100% 0 0);
	transform: translateX(-5%);
    transition: transform .4s ease-out .2s, clip-path .3s ease-out .2s;
}
/* .lead_wrap_03 .ttl_wrap_lead .top span::after {
	content: "";
	background: url(../images/top/illu_target.svg) no-repeat center center / contain;
	width: clamp(80px, 10vw, 130px);
    height: 130px;
    position: absolute;
    top: -60px;
    left: clamp(50px, 6.8vw, 83px);
	z-index: 1;
} */
.lead_wrap_03 .ttl_wrap_lead .top span::before {
	content: "";
	background: url(../images/top/higai_txtsp_target.png) no-repeat center center / contain;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	transition: opacity .15s linear .8s;
	z-index: 1;
}
.lead_wrap_03 .ttl_wrap_lead p.txt_warning {
	line-height: 1.8;
	text-align: right;
	position: relative;
    top: 50px;
}
.lead_wrap_03 .ttl_wrap_lead p.txt_warning small {
	display: inline-block;
	text-align: left;
}
/* move */
.lead_wrap_03 .ttl_wrap_lead.move .top figure,
.lead_wrap_03 .ttl_wrap_lead.move .top span {
	clip-path: inset(0);
	transform: translate(0);
}
.lead_wrap_03 .ttl_wrap_lead.move .top span::before {
	opacity: 1;
}

.lead_wrap_03 .ttl_wrap_lead.move .top::after {
	animation: target .75s ease-in-out .2s forwards;
}
@keyframes target {
	0% {
		opacity: 0;
		transform: scale(1.3, 1.3) translate(15px, -15px);
		transform-origin: center;
	}
	25% {
		opacity: 1;
	}
	45% {
		transform: scale(1, 1) translate(10px, -5px);
	}
	85% {
		transform: scale(1.1, 1.1) translate(-15px, 0);
	}
	100% {
		transform: scale(1, 1) translate(0, 0);
		opacity: 1;
	}
}

.lead_wrap_03 .col_wrap_case {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 70px 80px;
	transition: .3s;
}
.lead_wrap_03 .col_wrap_case .case {
	width: calc(50% - 40px);
	position: relative;
	transition: .3s;
}
.lead_wrap_03 .col_wrap_case .case::before {
	content: "";
	border-top: 6px solid #1f1f1f;
	position: absolute;
	right: 0;
	top: 0;
	width: calc(100% - 115px);
}
.lead_wrap_03 .col_wrap_case .case::after {
	content: "";
	border-right: 6px solid #1f1f1f;
	position: absolute;
	right: 0;
	top: 0;
	height: 50px;
}
.lead_wrap_03 .col_wrap_case .case .inner {
	border-bottom: 6px solid #1f1f1f;
	position: relative;
	height: 100%;
}
.lead_wrap_03 .col_wrap_case .case .inner::after {
	content: "";
	border-right: 6px solid #1f1f1f;
	position: absolute;
	right: 0;
	bottom: 0;
	height: 50px;
}
.lead_wrap_03 .col_wrap_case .case .inner::before {
	content: "";
	border-right: 6px solid #1f1f1f;
	position: absolute;
	left: 0;
	bottom: 0;
	height: 50px;
}
.lead_wrap_03 .col_wrap_case .case .inner .ttl_case {
	font-size: 60px;
	font-family: "Anton", sans-serif;
	font-weight: 400;
	position: absolute;
	left: 0;
	top: -40px;
	z-index: 1;
}
.lead_wrap_03 .col_wrap_case .case .inner .ttl_case span {
	font-size: 50px;
	display: block;
}
.lead_wrap_03 .col_wrap_case .case .inner dl.case_info {
	display: flex;
	column-gap: 28px;
	padding: 28px 30px 24px 28px;
}
.lead_wrap_03 .col_wrap_case .case .inner dl.case_info dt {
	flex-shrink: 0;
}
.lead_wrap_03 .col_wrap_case .case .inner dl.case_info dt figure {
	aspect-ratio: 1 / 1;
	max-width: clamp(150px, 16vw, 225px);
	position: relative;
}
.lead_wrap_03 .col_wrap_case .case .inner dl.case_info dt figure::before {
	content: "";
	background: url(../images/top/illu_target.svg) no-repeat center center / contain;
	width: 80px;
	height: 80px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}
.lead_wrap_03 .col_wrap_case .case .inner dl.case_info dt figure img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.lead_wrap_03 .col_wrap_case .case .inner dl.case_info dd.txt_case {
	display: flex;
	flex-direction: column;
}
.lead_wrap_03 .col_wrap_case .case .inner dl.case_info dd.txt_case h6 {
	font-size: clamp(20px, 2.2vw, 27px);
	font-weight: 900;
	padding-bottom: 20px;
	line-height: 1.3;
}
.lead_wrap_03 .col_wrap_case .case:first-child .inner dl.case_info dd.txt_case h6 {
	padding-bottom: 0;
	margin-bottom: auto;
}
.lead_wrap_03 .col_wrap_case .case .inner dl.case_info dd.txt_case h6 strong {
	white-space: nowrap;
}
.lead_wrap_03 .col_wrap_case .case .inner dl.case_info dd.txt_case h6 span {
	background-color: #1f1f1f;
	color: #fff;
	font-size: clamp(28px, 2.8vw, 38px);
	font-weight: 900;
	display: inline-block;
    padding: 1px 2px 4px;
	line-height: 1;
	letter-spacing: -0.05em;
}
.lead_wrap_03 .col_wrap_case .case .inner dl.case_info dd.txt_case p.txt_lead {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
}
@media (max-width: 1180px) {
	.lead_wrap_03 .col_wrap_case {
		flex-direction: column;
	}
	.lead_wrap_03 .col_wrap_case .case {
		width: 100%;
	}
	.lead_wrap_03 .col_wrap_case .case::before {
		width: calc(100% - 115px);
	}
	.lead_wrap_03 .col_wrap_case .case:first-child .inner dl.case_info dd.txt_case h6 {
		margin-bottom: 0;
		padding-bottom: 20px;
	}
}

/* sp */
@media (max-width: 799px) { 
	.lead_wrap_03 {
		background: none;
		position: relative;
		z-index: 1;
		overflow: visible;
		top: -10vw;
		height: 100%;
		margin-bottom: -10vw;
		padding-top: 0;
	}
	.lead_wrap_03::before {
		display: none;
	}
	.lead_wrap_03::after {
		content: "";
		background-color: #f3c200;
		background-image: url(../images/top/pt_lead_line.png);
		background-size: 6px;
		background-repeat: repeat;
		clip-path: polygon(0 35.89vw, 100% 0, 100% 100%, 0 calc(100% - 35.89vw));
		position: absolute;
		top: 0;
		width: 100%;
		height: 100%;
		display: block;
		z-index: -1;
	}
	.lead_wrap_03 .lead_wrap_inner {
		position: relative;
		width: 100%;
		height: 100%;
		padding-bottom: 17vw;
		padding-top: 5vw;
	}
	.lead_wrap_03 .lead_wrap_inner::before {
		content: "";
        background: url(../images/top/sp/sp_higai_bg_radi_r.png) no-repeat left top / contain;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        clip-path: polygon(0 35.89vw, 100% 0, 100% 100%, 0 calc(100% - 35.89vw));
	}
	.lead_wrap_03 .ttl_wrap_lead {
		text-align: right;
		padding-bottom: 0;
	}
	.lead_wrap_03 .ttl_wrap_lead .top {
		display: inline-block;
		position: relative;
		left: 0;
		bottom: -15px;
		margin-right: 25px;
		margin-bottom: 15vw;
	}
	.lead_wrap_03 .ttl_wrap_lead .top::after {
		content: "";
		background: url(../images/top/illu_target.svg) no-repeat center center / contain;
		width: clamp(65px, 16vw, 95px);
        height: clamp(65px, 16vw, 95px);
        position: absolute;
		top: clamp(5px, 2vw, 30px);
        left: calc(50% - clamp(60px, 32vw, 196px));
	}
	.lead_wrap_03 .ttl_wrap_lead .top span {
		display: inline-block;
        max-width: clamp(220px, 89%, 592px);
        width: 100%;
        position: absolute;
        bottom: -6vw;
        left: 0;
        right: auto;
	}
	.lead_wrap_03 .ttl_wrap_lead .top span::before {
		content: "";
		background: url(../images/top/higai_txtsp_target.png) no-repeat center center / contain;
		width: 100%;
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
		z-index: 1;
	}
	.lead_wrap_03 .ttl_wrap_lead .top figure {
		display: block;
		width: 100%;
		box-sizing: border-box;
		padding-left: clamp(145px, 42%, 300px);
		text-align: left;
	}
	.lead_wrap_03 .ttl_wrap_lead p.txt_warning {
		font-size: 14px;
		line-height: 1.8;
		text-align: right;
		position: relative;
		top: 0;
		padding-bottom: 10vw;
	}
	.lead_wrap_03 .ttl_wrap_lead p.txt_warning small {
		display: inline-block;
		text-align: left;
	}
	/* case */
	.lead_wrap_03 .col_wrap_case {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		gap: 50px 0;
	}
	.lead_wrap_03 .col_wrap_case .case {
		max-width: 640px;
        margin-inline: auto;
		width: 100%;
		position: relative;
	}
	.lead_wrap_03 .col_wrap_case .case::before {
		content: "";
		border-top: 4px solid #1f1f1f;
		position: absolute;
		right: 0;
		top: 0;
		width: calc(100% - 80px);
	}
	.lead_wrap_03 .col_wrap_case .case::after {
		content: "";
		border-right: 4px solid #1f1f1f;
		position: absolute;
		right: 0;
		top: 0;
		height: 50px;
	}
	.lead_wrap_03 .col_wrap_case .case .inner {
		border-bottom: 4px solid #1f1f1f;
		position: relative;
	}
	.lead_wrap_03 .col_wrap_case .case .inner::after {
		content: "";
		border-right: 4px solid #1f1f1f;
		position: absolute;
		right: 0;
		bottom: 0;
		height: 50px;
	}
	.lead_wrap_03 .col_wrap_case .case .inner::before {
		content: "";
		border-right: 4px solid #1f1f1f;
		position: absolute;
		left: 0;
		bottom: 0;
		height: 50px;
	}
	.lead_wrap_03 .col_wrap_case .case .inner .ttl_case {
		font-size: 42px;
		font-family: "Anton", sans-serif;
		font-weight: 400;
		position: absolute;
		left: 0;
		top: -26px;
	}
	.lead_wrap_03 .col_wrap_case .case .inner .ttl_case span {
		font-size: 35px;
		display: block;
	}
	.lead_wrap_03 .col_wrap_case .case .inner dl.case_info {
		display: flex;
		column-gap: 18px;
		padding: 18px 18px 18px 18px;
	}
	.lead_wrap_03 .col_wrap_case .case .inner dl.case_info dt {
		flex-shrink: 0;
	}
	.lead_wrap_03 .col_wrap_case .case .inner dl.case_info dt figure {
		aspect-ratio: 1 / 1;
		max-width: 125px;
	}
	.lead_wrap_03 .col_wrap_case .case .inner dl.case_info dt figure::before {
		width: 50px;
		height: 50px;
	}
	.lead_wrap_03 .col_wrap_case .case .inner dl.case_info dt figure img {
		object-fit: cover;
		width: 100%;
		height: 100%;
	}
	.lead_wrap_03 .col_wrap_case .case .inner dl.case_info dd.txt_case h6 {
		font-size: 24px;
        font-weight: 900;
        line-height: 1.5;
        padding-bottom: 10px !important;
	}
	.lead_wrap_03 .col_wrap_case .case .inner dl.case_info dd.txt_case h6 small {
		display: inline-block;
	}
	.lead_wrap_03 .col_wrap_case .case .inner dl.case_info dd.txt_case h6 strong {
		white-space: nowrap;
	}
	.lead_wrap_03 .col_wrap_case .case .inner dl.case_info dd.txt_case h6 span {
		background-color: #1f1f1f;
        color: #fff;
        font-size: clamp(25px, 7vw, 33px);
        display: inline-block;
        line-height: 1;
        padding: 1px 2px 4px;
        letter-spacing: -0.08em;
	}
	.lead_wrap_03 .col_wrap_case .case .inner dl.case_info dd.txt_case p.txt_lead {
		font-size: 13px;
		line-height: 1.5;
	}
}

/*==========================================
  万引きによる倒産
==========================================*/
.lead_wrap_04 {
	position: relative;
	max-width: 2000px;
	margin-inline: auto;
	top: -8vw;
	margin-bottom: -8vw;
    z-index: 1;
}
.lead_wrap_04::after {
	content: "";
    background-color: #f3c200;
	background-image: url(../images/top/pt_lead_line.png);
	background-size: 9px;
	background-repeat: repeat;
    clip-path: polygon(0 0, 100% 24.28vw, 100% calc(100% - 24.28vw), 0 100%);
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -1;
}
.lead_wrap_04 .lead_wrap_inner {
	position: relative;
	width: 100%;
	height: 100%;
	padding-bottom: 3vw;
}
.lead_wrap_04 .lead_wrap_inner::before {
	content: "";
	background: url(../images/top/higai_bg_radi_l.png) no-repeat left -3vw top -4vw / clamp(300px, 58vw, 1281px);
    position: absolute;
    top: 0;
	right: 0;
    width: 100%;
    height: 100%;
	clip-path: polygon(25% 50%, 50% 24.28vw, 100% calc(100% - 24.28vw), 50% 100%);
	opacity: 0;
	transform: translate(30px, 30px);
	transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1), clip-path .5s cubic-bezier(0.16, 1, 0.3, 1), opacity .3s;
	transition-delay: .3s;
}
/* move */
.lead_wrap_04 .lead_wrap_inner.move::before {
	opacity: 1;
	transform: translate(0, 0);
    clip-path: polygon(0 0, 100% 24.28vw, 50% calc(100% - 24.28vw), 0 100%);
}

.lead_wrap_04 .container {
	padding-top: 5vw;
	padding-bottom: 15vw;
	position: relative;
	z-index: 1;
}
.lead_wrap_04 .ttl_wrap_lead {
	padding-bottom: 50px;
}
.lead_wrap_04 .ttl_wrap_lead .top {
	display: inline-block;
	position: relative;
}
.lead_wrap_04 .ttl_wrap_lead .top figure {
	clip-path: inset(0 100% 0 0);
	transform: translateX(-5%);
    transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1), clip-path .5s cubic-bezier(0.16, 1, 0.3, 1);
}
.lead_wrap_04 .ttl_wrap_lead .top span {
	display: inline-block;
    max-width: clamp(210px, 32%, 264px);
    width: 100%;
    position: absolute;
    bottom: 32px;
    right: clamp(70px, 9.7vw, 119px);
	clip-path: inset(0 100% 0 0);
	transform: translateX(-5%);
    transition: transform .2s ease-out .2s, clip-path .3s ease-out .2s;
}
/* move */
.lead_wrap_04 .ttl_wrap_lead.move .top figure,
.lead_wrap_04 .ttl_wrap_lead.move .top span {
	clip-path: inset(0);
	transform: translate(0);
}

.lead_wrap_04 .col_wrap {
	display: flex;
	justify-content: flex-start;
	column-gap: 50px;
	padding-bottom: 4vw;
}
.lead_wrap_04 .col_wrap figure {
	aspect-ratio: 341 / 199;
	max-width: 682px;
    display: block;
    flex-shrink: 0;
	width: 51.83%;
}
.lead_wrap_04 .col_wrap .txt_box h5 {
	position: relative;
	padding-bottom: 30px;
	transition: .3s;
}
.lead_wrap_04 .col_wrap .txt_box h5::before {
	content: "";
	background: url(../images/top/higai_img_disappear.svg) no-repeat center center / contain;
	width: clamp(140px, 40%, 208px);
    height: 196px;
    position: absolute;
    top: -200px;
    right: 100px;
	display: block;
	opacity: 0;
	transition: opacity .6s;
	
}
.lead_wrap_04 .col_wrap .txt_box .txt_lead {
	line-height: 1.8;
	padding-bottom: 24px;
}
/* move */
.lead_wrap_04 .col_wrap .txt_box.move h5::before {
	opacity: 1;
	animation: fall 3s linear forwards, swing 1.8s ease 2 alternate;
}
@keyframes fall {
	to {
		top: -147px;
	}
}
@keyframes swing {
	0%, 100% {
        transform: translateX(0) rotate(0);
    }
    50% {
        transform: translateX(50px) rotate(-10deg);
    }
}

.lead_wrap_04 .more_wrap {
    position: relative;
    border-left: 6px solid #1f1f1f;
    border-right: 6px solid #1f1f1f;
    box-sizing: border-box;
    max-width: 1060px;
    margin-inline: auto;
	z-index: 1;
}
.lead_wrap_04 .more_wrap::before {
	content: "";
	border-top: 6px solid #1f1f1f;
	width: 50px;
	position: absolute;
	top: 0;
	left: 0;
}
.lead_wrap_04 .more_wrap::after {
	content: "";
	border-top: 6px solid #1f1f1f;
	width: 50px;
	position: absolute;
	bottom: 0;
	left: 0;
}
.lead_wrap_04 .more_wrap .more_wrap_inner {
	position: relative;
	padding: 10px 30px 30px;
}
.lead_wrap_04 .more_wrap .more_wrap_inner::before {
	content: "";
	border-top: 6px solid #1f1f1f;
	width: 50px;
	position: absolute;
	top: 0;
	right: 0;
}
.lead_wrap_04 .more_wrap .more_wrap_inner::after {
	content: "";
	border-top: 6px solid #1f1f1f;
	width: 50px;
	position: absolute;
	bottom: 0;
	right: 0;
}
.lead_wrap_04 .more_wrap .more_wrap_inner .ttl_hd04 {
	font-size: clamp(30px, 3vw, 40px);
	font-weight: 900;
	letter-spacing: -0.04em;
	padding-bottom: 30px;
	position: relative;
	text-align: center;
	z-index: 0;
}
.lead_wrap_04 .more_wrap .more_wrap_inner .ttl_hd04::after {
	content: "";
	background: url(../images/top/higai_label_more.svg) no-repeat center center / contain;
	width: 137px;
	height: 141px;
	position: absolute;
	left: -30px;
    top: -50px;
    z-index: -1;
	transition: opacity .3s;
	opacity: 0;
}
.lead_wrap_04 .more_wrap .more_wrap_inner .ttl_hd04 span.txt_large {
	display: inline-block;
	max-width: clamp(360px, 10vw, 408px);
	width: 100%;
	vertical-align: bottom;
    position: relative;
    top: 12px;
	clip-path: inset(0 100% 0 0);
	transform: translateX(-5%);
    transition: transform .4s ease-out .2s, clip-path .3s ease-out .3s;
}
.lead_wrap_04 .more_wrap .more_wrap_inner .txt_lead {
	text-align: center;
	line-height: 1.8;
}
@media (max-width: 1180px) { 
	.lead_wrap_04 .more_wrap .more_wrap_inner .ttl_hd04 small {
		display: block;
	}
}
/* move */
.lead_wrap_04 .more_wrap .more_wrap_inner .ttl_hd04.move::after {
	opacity: 1;
	animation: poyon 1.2s forwards;
}
.lead_wrap_04 .more_wrap .more_wrap_inner .ttl_hd04.move span.txt_large {
	clip-path: inset(0);
	transform: translate(0);
}

/* TB */
@media (max-width: 840px) { 
	.lead_wrap_04 .col_wrap {
		flex-direction: column;
		row-gap: 60px;
	}
	.lead_wrap_04 .col_wrap figure {
		max-width: 682px;
		margin-inline: auto;
		width: 100%;
	}
	.lead_wrap_04 .col_wrap .txt_box h5 {
		width: 70%;
	}
	.lead_wrap_04 .col_wrap .txt_box h5::before {
		width: clamp(120px, 28%, 208px);
        height: 240px;
        top: -200px;
        right: 92px;
	}
}

/* SP */
@media (max-width: 799px) { 
	.lead_wrap_04 {
		background: none;
		position: relative;
		z-index: 1;
		overflow: visible;
		top: -10vw;
		height: 100%;
		margin-bottom: -10vw;
		padding-top: 0;
	}
	.lead_wrap_04::before {
		display: none;
	}
	.lead_wrap_04::after {
		content: "";
		background-color: #f3c200;
		background-image: url(../images/top/pt_lead_line.png);
		background-size: 6px;
		background-repeat: repeat;
		clip-path: polygon(0 0, 100% 35.89vw, 100% calc(100% - 35.89vw), 0 100%);
		position: absolute;
		top: 0;
		width: 100%;
		height: 100%;
		display: block;
		z-index: -1;
	}
	.lead_wrap_04 .lead_wrap_inner {
		position: relative;
		width: 100%;
		height: 100%;
		padding-top: 10vw;
		padding-bottom: 28vw;
	}
	.lead_wrap_04 .lead_wrap_inner::before {
		content: "";
		background: url(../images/top/sp/sp_higai_bg_radi_l.png) no-repeat -10px -27px / 85%;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        clip-path: polygon(0 0, 100% 35.89vw, 100% calc(100% - 35.89vw), 0 100%) !important;
	}
	.lead_wrap_04 .container {
		padding-top: 6.41vw;
		padding-bottom: 0;
	}
	.lead_wrap_04 .ttl_wrap_lead {
		padding-bottom: 30px;
	}
	.lead_wrap_04 .ttl_wrap_lead .top {
		display: inline-block;
		position: relative;
	}
	.lead_wrap_04 .ttl_wrap_lead .top span {
		display: inline-block;
        max-width: clamp(100px, 36%, 260px);
        width: 100%;
        position: absolute;
        bottom: clamp(15px, 23%, 60px);
        right: auto;
        left: clamp(158px, 50%, 428px);
	}
	.lead_wrap_04 .col_wrap {
		flex-direction: column;
		row-gap: clamp(58px, 50%, 120px);
		column-gap: 0;
		padding-bottom: 80px;
		z-index: 1;
        position: relative;
	}
	.lead_wrap_04 .col_wrap figure {
		aspect-ratio: 341 / 199;
		max-width: 800px;
		display: block;
		flex-shrink: 0;
		width: 100%;
	}
	.lead_wrap_04 .col_wrap .txt_box h5 {
		position: relative;
		padding-bottom: 30px;
		width: 85%;
	}
	.lead_wrap_04 .col_wrap .txt_box h5::before {
		content: "";
        background: url(../images/top/higai_img_disappear.svg) no-repeat center center / contain;
		width: clamp(100px, 30%, 170px);
        height: 100%;
        position: absolute;
        top: auto;
        bottom: clamp(50px, 59%, 100px); 
        right: -80px;
        left: min(66%, 500px);
        display: block;
	}
	.lead_wrap_04 .col_wrap .txt_box .txt_lead {
		padding-left: 10px;
		padding-right: 10px;
		padding-bottom: 0;
	}
	/* move */
	.lead_wrap_04 .col_wrap .txt_box.move h5::before {
		animation: fall 2s linear forwards, swing 1s ease 2 alternate;
	}
	@keyframes fall {
		to {
			top: -100px !important;
		}
	}
	@keyframes swing {
		0%, 100% {
			transform: translateX(0) rotate(0);
		}
		50% {
			transform: translateX(50px) rotate(-10deg);
		}
	}

	.lead_wrap_04 .more_wrap {
		border-left: 5px solid #1f1f1f;
		border-right: 5px solid #1f1f1f;
	}
	.lead_wrap_04 .more_wrap::before {
		border-top: 5px solid #1f1f1f;
		width: 36px;
	}
	.lead_wrap_04 .more_wrap::after {
		border-top: 5px solid #1f1f1f;
		width: 36px;
	}
	.lead_wrap_04 .more_wrap .more_wrap_inner {
		position: relative;
		padding: 10px 20px 20px;
	}
	.lead_wrap_04 .more_wrap .more_wrap_inner::before {
		border-top: 5px solid #1f1f1f;
		width: 36px;
	}
	.lead_wrap_04 .more_wrap .more_wrap_inner::after {
		border-top: 5px solid #1f1f1f;
		width: 36px;
	}
	.lead_wrap_04 .more_wrap .more_wrap_inner .ttl_hd04 {
		font-size: clamp(21px, 5vw, 36px);
		font-weight: 900;
		letter-spacing: -0.04em;
		padding-bottom: 20px;
		position: relative;
		text-align: center;
		z-index: 0;
	}
	.lead_wrap_04 .more_wrap .more_wrap_inner .ttl_hd04::after {
		content: "";
        background: url(../images/top/higai_label_more.svg) no-repeat center center / contain;
        width: clamp(98px, 28%, 120px);
        height: 100%;
        position: absolute;
        left: -40px;
        top: -60px;
        z-index: -1;
	}
	.lead_wrap_04 .more_wrap .more_wrap_inner .ttl_hd04 span {
		display: inline-block;
        max-width: clamp(200px, 76%, 480px) !important;
        width: 100%;
        vertical-align: bottom;
        position: relative;
        top: 8px !important;
	}
	.lead_wrap_04 .more_wrap .more_wrap_inner .txt_lead {
		text-align: left;
		line-height: 1.8;
	}
	@media (max-width: 540px) {
		.lead_wrap_04 .more_wrap .more_wrap_inner .ttl_hd04 small {
			display: inline-block;
		}
	}
}


/*==========================================
  対策をしないと（切り替え）
==========================================*/
.change_wrap {
	background: url(../images/top/bg_change.jpg) no-repeat center top 25% / cover;
    position: relative;
    max-width: 2000px;
	margin-inline: auto;
    /* height: clamp(700px, 80vw, 1200px); */
    top: -28vw;
    margin-bottom: -28vw;
	padding-bottom: 31vw;
}
.change_wrap::before {
	content: "";
    display: block;
    background: repeating-linear-gradient(135deg, #001635, #001635 5px, #fff 5px, #FFF 10px);
    height: 20px;
    width: 60%;
    position: absolute;
    right: 0;
    top: 19vw;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
    mix-blend-mode: multiply;
}
.change_wrap .container {
	padding-top: 22vw;
}
.change_wrap .container .ttl_change {
	padding-left: clamp(90px, 6vw, 150px);
}
.change_wrap .container .ttl_change .top {
	margin-bottom: 2vw;
	position: relative;
	right: clamp(80px, 6vw, 150px);
	display: flex;
    justify-content: center;
    align-items: end;
	column-gap: 10px;
	width: 110%;
	z-index: 1;
}
.change_wrap .container .ttl_change .top .suprise_wrap {
	display: inline-block;
	position: relative;
	z-index: 1;
	/* width: 100%; */
	transition: opacity .3s;
	opacity: 0;
}
.change_wrap .container .ttl_change .top .suprise_wrap ul {
    z-index: 1;
}
.change_wrap .container .ttl_change .top .suprise_wrap ul li img.icon_suprise {
	position: absolute;
	bottom: clamp(10px, 0.5vw, 50px);
    right: 8px;
    z-index: 1;
    height: clamp(50px, 9vw, 116px);
}
.change_wrap .container .ttl_change .top .suprise_wrap ul li img.bg_suprise {
	max-width: clamp(80px, 10vw, 124px);
}
.change_wrap .container .ttl_change .top .text_wrap {
	position: relative;
    /* width: 100%; */
    /* flex-shrink: 0; */
}
.change_wrap .container .ttl_change .top .text_wrap figure {
	clip-path: inset(0 100% 0 0);
	transform: translateX(-5%);
    transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1), clip-path .5s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: .2s;
}
.change_wrap .container .ttl_change .top .text_wrap span {
	display: inline-block;
    max-width: clamp(75px, 15%, 170px);
    width: 100%;
    position: absolute;
    bottom: -2px;
    left: calc(62% - clamp(20px, 8%, 500px));
	clip-path: inset(0 100% 0 0);
	transform: translateX(-5%);
    transition: transform .4s ease-out .2s, clip-path .3s ease-out .4s;
}
.change_wrap .container .ttl_change .top .text_wrap span::before {
	content: "";
	background: url(../images/top/cha_txt_tousan_hibi.png) no-repeat center center / contain;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
    height: 100%;
	opacity: 0;
	transition: opacity .15s linear .8s;
}
/* move */
.change_wrap .container .ttl_change .top.move .suprise_wrap {
	opacity: 1;
}
.change_wrap .container .ttl_change .top.move .suprise_wrap ul li img.icon_suprise {
	animation: suprise 1.2s both 1 ease-in;
}
@keyframes suprise {
    0%,
    to {
        transform: scale(1, 1)
    }
	30% {
		transform: scale(1.3, .80)
	}
	40% {
		transform: scale(.80, 1.3)
	}
	50% {
		transform: scale(1.25, .80)
	}
	65% {
		transform: scale(.9, 1.05)
	}
	75% {
		transform: scale(1.05, .9)
	}
}
.change_wrap .container .ttl_change .top.move .text_wrap figure,
.change_wrap .container .ttl_change .top.move .text_wrap span {
	clip-path: inset(0);
	transform: translate(0);
}
.change_wrap .container .ttl_change .top.move .text_wrap span::before {
	opacity: 1;
}

.change_wrap .container .ttl_change .btm {
	position: relative;
	left: -30px;
}
.change_wrap .container .ttl_change .btm dl.catch_stop {
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
}
.change_wrap .container .ttl_change .btm dl.catch_stop dt {
	max-width: 310px;
	padding-right: 10px;
	position: relative;
	top: 5px;
	width: 30.3983%;
	opacity: 0;
	transform: translateX(-10%);
    transition: transform .6s ease-out, opacity .4s;
}
.change_wrap .container .ttl_change .btm dl.catch_stop dt::before {
	content: "";
	background: url(../images/top/cha_txt_soon.png) no-repeat center center / contain;
	width: 100%;
    height: 100%;
    max-width: clamp(72px, 6vw, 120px);
    position: absolute;
    left: -16px;
    top: -26px;
	opacity: 0;
	transform: translateX(-10%);
    transition: transform .6s ease-out, opacity .4s;
	transition-delay: .3s;
}
.change_wrap .container .ttl_change .btm dl.catch_stop dt img {
	width: 100%;
}
.change_wrap .container .ttl_change .btm dl.catch_stop dd.txt_stop {
	position: relative;
	left: -1.5vw;
    bottom: 0;
	width: 47.5890%;
	z-index: 1;
}
.change_wrap .container .ttl_change .btm dl.catch_stop dd.txt_stop span {
	position: relative;
	display: block;
	clip-path: inset(0 100% 0 0);
	transform: translateX(-5%);
    transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1), clip-path .5s cubic-bezier(0.16, 1, 0.3, 1);
}
.change_wrap .container .ttl_change .btm dl.catch_stop dd.txt_stop span.btm_boushi {
	position: relative;
}
.change_wrap .container .ttl_change .btm dl.catch_stop dd.txt_stop span.btm_boushi::after {
	content: "";
	background-color: #ffe400;
	width: 100%;
    height: 14px;
    position: absolute;
    bottom: 6px;
    left: -6px;
    transform: skew(-22deg, -3deg);
	z-index: -1;
}
.change_wrap .container .ttl_change .btm dl.catch_stop dd.txt_stop span.top_boushi {
	position: absolute;
	left: -1px;
	top: 0;
	width: 100%;
	z-index: 1;
}
.change_wrap .container .ttl_change .btm dl.catch_stop dd.txt_stop .label_stop {
	position: absolute;
	top: clamp(-50px, -11%, 4vw);
    left: clamp(1vw, 7.5%, 9vw);
    width: clamp(80px, 39%, 196px);
    height: clamp(80px, 39%, 196px);
	transform: translateY(-60px);
	opacity: 0;
	transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity .3s;
	transition-delay: .6s;
}
.change_wrap .container .ttl_change .btm dl.catch_stop dd.txt_stop img {
	width: 100%;
}
.change_wrap .container .ttl_change .btm dl.catch_stop dd.txt_taisaku {
	position: relative;
    top: -20px;
    left: -1vw;
	width: 24.1090%;
	clip-path: inset(0 100% 0 0);
	transform: translateX(-5%);
    transition: transform .4s ease-out .2s, clip-path .3s ease-out .4s;
}
/* move */
.change_wrap .container .ttl_change .btm.move dl.catch_stop dt,
.change_wrap .container .ttl_change .btm.move dl.catch_stop dt::before {
	opacity: 1;
	transform: translate(0);
}
.change_wrap .container .ttl_change .btm.move dl.catch_stop dd.txt_stop span,
.change_wrap .container .ttl_change .btm.move dl.catch_stop dd.txt_taisaku {
	clip-path: inset(0);
	transform: translate(0);
}
.change_wrap .container .ttl_change .btm.move dl.catch_stop dd.txt_stop .label_stop {
	transform: translateY(0);
	opacity: 1;
}

/* TB */
@media (max-width: 840px) { 
	.change_wrap .container .ttl_change .btm dl.catch_stop dd.txt_stop {
		left: -15px;
	}
	.change_wrap .container .ttl_change .btm dl.catch_stop dd.txt_taisaku {
		left: -15px;
	}
}

/* SP */
@media (max-width: 799px) {
	.change_wrap {
		background: url(../images/top/sp/sp_bg_change.png) no-repeat center center / cover;
        position: relative;
		top: -2vw;
        margin-top: -45vw;
        margin-bottom: -2vw;
        height: clamp(480px, 136vw, 1150px);
        max-width: 100%;
	}
	.change_wrap::before {
		background: repeating-linear-gradient(135deg, #001635, #001635 3px, #fff 3px, #FFF 6px);
        height: 12px;
        width: 67%;
        top: 29.5vw;
        clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
	}
	.change_wrap .container {
		padding-top: 0;
        position: absolute;
        left: 50%;
		top: clamp(24vw, 50%, 60vw);
        transform: translate(-50%, -50%);
        width: 100%;
        z-index: 1;
	}
	.change_wrap .container .ttl_change {
		padding-left: 0;
	}
	.change_wrap .container .ttl_change .top {
		margin-bottom: 15px;
		position: relative;
		right: 0;
		width: 100%;
		align-items: flex-start;
	}
	@media (max-width: 420px) {
		.change_wrap .container .ttl_change .top {
			column-gap: 0;
		}
	}
	.change_wrap .container .ttl_change .top span {
		display: inline-block;
		max-width: clamp(75px, 37%, 370px) !important;
        position: absolute;
        bottom: 7vw !important;
        left: clamp(114px, 48.8%, 400px) !important;
	}
	.change_wrap .container .ttl_change .top figure {
		padding-left: 0;
	}
	.change_wrap .container .ttl_change .top figure img {
		width: 100%;
	}
	.change_wrap .container .ttl_change .top .suprise_wrap {
		display: inline-block;
        position: relative;
        /* max-width: clamp(80px, 14vw, 140px);
        width: 100%; */
	}
	.change_wrap .container .ttl_change .top .suprise_wrap ul {
	}
	.change_wrap .container .ttl_change .top .suprise_wrap ul li img.icon_suprise {
		position: absolute;
        bottom: clamp(5px, 1vw, 100px);
        left: clamp(29px, 7vw, 180px);
        z-index: 1;
        height: clamp(60px, 18vw, 110px);
	}
	.change_wrap .container .ttl_change .top .suprise_wrap ul li img.bg_suprise {
		max-width: clamp(70px, 20vw, 124px);
	}
	.change_wrap .container .ttl_change .btm {
		position: relative;
		left: 15px;
	}
	.change_wrap .container .ttl_change .btm dl.catch_stop {
		display: flex;
		justify-content: flex-start;
		align-items: flex-end;
		flex-wrap: wrap;
	}
	.change_wrap .container .ttl_change .btm dl.catch_stop dt {
		max-width: 300px;
		padding-right: 0;
		position: relative;
		width: clamp(20vw, 37%, 34.39vw);
	}
	.change_wrap .container .ttl_change .btm dl.catch_stop dt::before {
		content: "";
		background: url(../images/top/cha_txt_soon.png) no-repeat center center / contain;
		width: 100%;
		height: 100%;
		max-width: clamp(67px, 13vw, 112px);
        position: absolute;
        left: -16px;
        top: -24px;
	}
	.change_wrap .container .ttl_change .btm dl.catch_stop dt img {
		width: 100%;
	}
	.change_wrap .container .ttl_change .btm dl.catch_stop dd.txt_stop {
		position: relative;
		left: -8px;
		bottom: 0;
		width: clamp(45vw, 63%, 60.58vw);
	}
	.change_wrap .container .ttl_change .btm dl.catch_stop dd.txt_stop .label_stop {
		position: absolute;
		top: clamp(-6vw, -4%, 4vw);
        left: clamp(1vw, 11%, 9vw);
        width: clamp(61px, 34%, 196px);
        height: clamp(61px, 32%, 196px);
	}
	.change_wrap .container .ttl_change .btm dl.catch_stop dd.txt_stop img {
		width: 100%;
	}
	.change_wrap .container .ttl_change .btm dl.catch_stop dd.txt_taisaku {
		position: absolute;
        bottom: -7vw;
        left: auto;
        width: 28.1vw;
        top: auto;
        right: 15px;
	}
}


/*==========================================
  防止対策
==========================================*/
.check_sec {
	background: none;
	position: relative;
	z-index: 1;
	/* overflow: visible; */
	max-width: 2000px;
	top: -28vw;
	height: 100%;
	margin-inline: auto;
	margin-bottom: -28vw;
	padding-top: 0;
	padding-bottom: clamp(80px, 6vw, 120px);
}
.check_sec::after {
	content: "";
	background-color: #dce5f6;
	background-image: url(../images/top/pt_lead_line.png);
	background-size: 6px;
	background-repeat: repeat;
	clip-path: polygon(0 24.28vw, 100% 0, 100% calc(100% - 100px), 50% 100%, 0 calc(100% - 100px));
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: -1;
}

.check_sec .container {
	padding-top: 6vw;
}
.check_sec .container .check {
	background: url(../images/top/bg_case_m.png) no-repeat center center / cover;
	border: 4px solid #baceeb;
	border-radius: 10px;
	padding: 60px 36px 36px;
	position: relative;
	margin-bottom: 60px;

}
.check_sec .container .check:nth-of-type(3) {
	margin-bottom: 40px;
}
.check_sec .container .check .ttl_hd05_check {
	background-color: #00398a;
	border-radius: 10px 10px 10px 0;
	color: #fff;
	display: inline-block;
	font-size: 26px;
	font-weight: 900;
	position: absolute;
	top: -36px;
	left: -4px;
	padding: 8px 18px 18px;
	height: 66px;
	box-sizing: border-box;
	overflow: hidden;
    z-index: 0;
}
.check_sec .container .check .ttl_hd05_check::after {
	content: "";
	background-color: #00265d;
	clip-path: polygon(0 0, 100% 0, 0 100%);
	width: 110px;
	height: 66px;
    position: absolute;
	left: 0;
    top: 0;
    z-index: -1;
}
.check_sec .container .check .ttl_hd05_check strong {
	width: 40px;
	height: 40px;
	display: inline-block;
    position: relative;
	top: 6px;
    margin-right: 4px;
}
.check_sec .container .check .ttl_hd05_check strong::before {
	content: "";
	background: url(../images/top/arw_check.svg) no-repeat center center / contain;
	width: 30px;
	height: 24px;
	position: absolute;
	left: 10px;
    top: 4px;
	clip-path: inset(0 100% 0 0);
	transform: translateX(-5%);
    transition: transform .4s ease-out .2s, clip-path .3s ease-out .4s;
}
.check_sec .container .check .ttl_hd05_check strong svg circle {
	fill: transparent;
	stroke: #f3dd27;
	stroke-width: 4px;
	stroke-linecap: round;	
}
.check_sec .container .check .ttl_hd05_check strong img {
	width: 100%;
}
.check_sec .container .check .ttl_hd05_check span {
	font-size: 36px;
	color: #f3dc23;
}
/* move */
.check_sec .container .check .ttl_hd05_check.move strong svg circle {
	animation: check75 .4s ease-in-out forwards;
}
.check_sec .container .check .ttl_hd05_check.move strong::before {
	clip-path: inset(0);
	transform: translate(0);
}
@keyframes check75 {
	0% {
		stroke-dasharray: 0 125;
		}
	100% {
		stroke-dasharray: 85 125;
	}
}

.check_sec .container .check dl {
	display: grid;
    justify-content: space-between;
    column-gap: 40px;
	grid-template-columns: clamp(150px, 25vw, 280px) 1fr;
    grid-template-rows: max-content 1fr;
}
.check_sec .container .check dl dt {
	flex-shrink: 0;
	grid-column: 1 / 2;
	grid-row: 1 / 3;
}
.check_sec .container .check dl dt figure {
	aspect-ratio: 1 / 1;
	max-width: 280px;
}
.check_sec .container .check dl dt figure img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.check_sec .container .check dl dd.txt_lead_col {
	grid-column: 2 / 3;
	grid-row: 1 / 2;
}
.check_sec .container .check dl dd.txt_lead_col p.txt_lead_s {
	padding-bottom: 24px;
}
.check_sec .container .check dl dd.optimal_col {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
}
.check_sec .container .check dl dd.optimal_col .optimal_box {
	background-color: #fff;
	border-radius: 5px;
	padding: 20px;
}
.check_sec .container .check dl dd.optimal_col .optimal_box .ttl_hd06_optimal {
	color: #004ab2;
	font-size: 20px;
	font-weight: 700;
	padding-bottom: 12px;
}
.check_sec .container .check dl dd.optimal_col .optimal_box .optimal_list li {
	line-height: 1.8;
	position: relative;
	padding-left: 18px;
	padding-bottom: 12px;
}
.check_sec .container .check dl dd.optimal_col .optimal_box .optimal_list li:last-child {
	padding-bottom: 0;
}
.check_sec .container .check dl dd.optimal_col .optimal_box .optimal_list li::before {
	content: "";
	background-color: #004ab2;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 10px;
}
/* 本当に減るのか */
.check_sec .container .reduce_wrap {
	max-width: 660px;
	margin-inline: auto;
}
.check_sec .container .reduce_wrap .top {
	font-size: 28px;
	font-weight: 900;
	font-style: italic;
	text-align: center;
	padding-bottom: 10px;
}
.check_sec .container .reduce_wrap .top span {
	color: #004ab2;
	border-radius: 5px;
	background-color: #fff;
	display: inline-block;
	padding: 6px;
	margin-left: 4px;
	margin-right: 4px;
}
.check_sec .container .reduce_wrap .btm {
	color: #d10017;
	font-size: 42px;
	font-weight: 900;
	font-style: italic;
	text-align: center;
	letter-spacing: -0.06em;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	white-space: nowrap;
}
.check_sec .container .reduce_wrap .btm strong {
	vertical-align: bottom;
	position: relative;
    left: 8px;
	top: 4px;
}
.check_sec .container .reduce_wrap .btm strong img {
	width: 100%;;
}
.check_sec .container .reduce_wrap .btm span {
	position: relative;
    left: 7px;
    /* top: 12px; */
}
.check_sec .container .reduce_wrap .btm span img {
	width: 40px;
}

/* TB */
@media (max-width: 840px) { 
	.check_sec .container .check dl dd.optimal_col {
		grid-column: 1 / 3;
	}
}

/* SP */
@media (max-width: 799px) {
	.check_sec {
		background: none;
		position: relative;
		z-index: 1;
		overflow: visible;
		top: -45vw;
		height: 100%;
		margin-bottom: -45vw;
		padding-top: 0;
	}
	.check_sec::after {
		content: "";
		background-color: #dce5f6;
		background-image: url(../images/top/pt_lead_line.png);
		background-size: 6px;
		background-repeat: repeat;
		clip-path: polygon(0 35.89vw, 100% 0, 100% 97%, 50% 100%, 0 97%);
		position: absolute;
		top: 0;
		width: 100%;
		height: 100%;
		display: block;
		z-index: -1;
	}
	.check_sec .container {
		padding-top: 10vw;
	}
	.check_sec .container .check {
		background: url(../images/top/bg_case_m.png) no-repeat center center / cover;
		border: 3px solid #baceeb;
		border-radius: 5px;
		padding: 40px 18px 24px;
		position: relative;
		margin-bottom: 40px;
	}
	.check_sec .container .check:nth-of-type(3) {
		margin-bottom: 30px;
	}
	.check_sec .container .check .ttl_hd05_check {
		border-radius: 5px 5px 5px 0;
		font-size: 19px;
		top: -27px;
		left: -4px;
		padding: 7px 12px 16px;
		height: 50px;
	}
	.check_sec .container .check .ttl_hd05_check::after {
		content: "";
		background-color: #00265d;
		clip-path: polygon(0 0, 100% 0, 0 100%);
		width: 80px;
		height: 50px;
		position: absolute;
		left: 0;
		top: 0;
		z-index: -1;
	}
	.check_sec .container .check .ttl_hd05_check strong {
		width: 28px;
		height: 28px;
		display: inline-block;
		position: relative;
		top: 4px;
		margin-right: 3px;
	}
	.check_sec .container .check .ttl_hd05_check strong::before {
		content: "";
		background: url(../images/top/arw_check.svg) no-repeat center center / contain;
		width: 22px;
		height: 17px;
		position: absolute;
		left: 7px;
		top: 3px;
		clip-path: inset(0 100% 0 0);
		transform: translateX(-5%);
		transition: transform .4s ease-out .2s, clip-path .3s ease-out .4s;
	}
	.check_sec .container .check .ttl_hd05_check strong svg {
		width: 100%;
	}
	.check_sec .container .check .ttl_hd05_check strong svg circle {
		fill: transparent;
		stroke: #f3dd27;
		stroke-width: 2px;
		stroke-linecap: round;	
	}
	.check_sec .container .check .ttl_hd05_check span {
		font-size: clamp(21px, 5vw, 24px);
		color: #f3dc23;
	}
	.check_sec .container .check .ttl_hd05_check small {
		font-size: 10px;
	}
	/* move */
	.check_sec .container .check .ttl_hd05_check.move strong svg circle {
		animation: check75 .4s ease-in-out forwards;
	}
	.check_sec .container .check .ttl_hd05_check.move strong::before {
		clip-path: inset(0);
		transform: translate(0);
	}
	@keyframes check75 {
		0% {
			stroke-dasharray: 0 85;
			}
		100% {
			stroke-dasharray: 65 85;
		}
	}

	.check_sec .container .check dl {
		display: grid;
		justify-content: space-between;
		column-gap: 20px;
		grid-template-columns: max-content 1fr;
		grid-template-rows: max-content 1fr;
	}
	.check_sec .container .check dl dt {
		flex-shrink: 0;
		grid-column: 1 / 2;
		grid-row: 1 / 2;
		padding-bottom: 24px;
	}
	.check_sec .container .check dl dt figure {
		aspect-ratio: 1 / 1;
		max-width: clamp(140px, 10vw, 180px);
	}
	.check_sec .container .check dl dt figure img {
		object-fit: cover;
		width: 100%;
		height: 100%;
	}
	.check_sec .container .check dl dd.txt_lead_col {
		grid-column: 2 / 3;
		grid-row: 1 / 2;
	}
	.check_sec .container .check dl dd.txt_lead_col p.txt_lead_s {
		padding-bottom: 12px;
	}
	.check_sec .container .check dl dd.optimal_col {
		grid-column: 1 / 3;
		grid-row: 2 / 3;
	}
	.check_sec .container .check dl dd.optimal_col .optimal_box {
		background-color: #fff;
		border-radius: 5px;
		padding: 20px;
	}
	.check_sec .container .check dl dd.optimal_col .optimal_box .ttl_hd06_optimal {
		color: #004ab2;
		font-size: 15px;
		font-weight: 700;
		padding-bottom: 16px;
	}
	.check_sec .container .check dl dd.optimal_col .optimal_box .optimal_list li {
		font-size: 13px;
		line-height: 1.5;
		position: relative;
		padding-left: 12px;
		padding-bottom: 8px;
	}
	.check_sec .container .check dl dd.optimal_col .optimal_box .optimal_list li:last-child {
		padding-bottom: 0;
	}
	.check_sec .container .check dl dd.optimal_col .optimal_box .optimal_list li::before {
		content: "";
		background-color: #004ab2;
		width: 8px;
		height: 8px;
		border-radius: 50%;
		position: absolute;
		left: 0;
		top: 7px;
	}
	/* 本当に減るのか */
	.check_sec .container .reduce_wrap {
		padding-left: 0;
		padding-right: 0;
	}
	.check_sec .container .reduce_wrap .top {
		font-size: clamp(28px, 7vw, 36px);
		padding-bottom: 0;
	}
	.check_sec .container .reduce_wrap .top span {
		border-radius: 3px;
		padding: 6px;
		margin-left: 4px;
		margin-right: 4px;
		margin-bottom: 8px;
	}
	.check_sec .container .reduce_wrap .btm {
		font-size: clamp(20px, 6.5vw, 36px);
	}
	.check_sec .container .reduce_wrap .btm strong {	
		left: 4px;
        top: 2px;
        display: inline-block;
        width: clamp(47px, 40%, 90px);
	}
	.check_sec .container .reduce_wrap .btm span {
		left: 1px;
        top: -2px;
        display: inline-flex;
        width: clamp(15px, 18%, 40px);
	}
	.check_sec .container .reduce_wrap .btm span img {
		width: 100%;
	}
}

/*==========================================
  店舗レイアウト
==========================================*/
.lay_sec {
	background: url(../images/top/bg_layout.jpg) no-repeat center top -70px / 2000px;
	position: relative;
	top: -26vw;
	margin-bottom: -26vw;
	max-width: 2000px;
	margin-inline: auto;
	padding-top: 30.5vw;
    z-index: 0;
}
.lay_sec .container {
	height: 100%;
	position: relative;
	z-index: 0;
	padding-bottom: 30vw;
}
.lay_sec .container .ttl_layout {
	max-width: 820px;
	margin-inline: auto;
	position: relative;
	padding-bottom: 70px;
}
.lay_sec .container .ttl_layout h3 picture {
	display: block;
	clip-path: inset(0 100% 0 0);
	transform: translateX(-10%);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), clip-path .5s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: .15s;
}
.lay_sec .container .ttl_layout h3 span {
	display: inline-block;
	position: absolute;
	top: 5px;
	right: clamp(5px, 1vw, 10px);
    max-width: clamp(220px, 36%, 294px);
	opacity: 0;
	transform: scale(2, 2);
	transition: transform .8s cubic-bezier(0.68, -0.6, 0.32, 1.6), opacity .5s ease;
	transition-delay: .6s;
}
/* move */
.lay_sec .container .ttl_layout h3.move picture {
	clip-path: inset(0);
	transform: translate(0);
}
.lay_sec .container .ttl_layout h3.move span {
	/* animation: pointSize 2s ease-out,pointPlace 2s ease-out; */
	transform: scale(1, 1);
	opacity: 1;
}

.lay_sec .container .support {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 60px;
	margin-bottom: 60px;
}
.lay_sec .container .support dt {
	font-family: "Anton", sans-serif;
	font-weight: 400;
	font-size: 30px;
	line-height: 1.1;
	text-align: center;
	padding-left: 20px;
	position: relative;
}
.lay_sec .container .support dt span {
	font-size: 40px;
	color: #d10017;
	display: block;
}
.lay_sec .container .support dd {
	position: relative;
}
.lay_sec .container .support dd::after {
	content: "";
	border-right: 5px solid #d10017;
	height: 100%;
	position: absolute;
	left: -32px;
	top: 0;
}
.lay_sec .container .support dd .ttl_hd05_layout {
	font-size: 24px;
	font-weight: 700;
	color: #004ab2;
	position: relative;
	padding-bottom: 15px;
	line-height: 1.5;
}
.lay_sec .container .support dd .ttl_hd05_layout span {
	background-color: #004ab2;
	color: #fff;
	font-size: 28px;
	display: inline-block;
	line-height: 1;
	padding: 3px 3px 5px;
}
.lay_sec .container .img_gmen {
	max-width: clamp(360px, 37%, 545px);
    position: absolute;
    right: 0;
    bottom: -100px;
	opacity: 0;
	transition: bottom .6s cubic-bezier(0.16, 1, 0.3, 1), opacity .4s;
}
/* move */
.lay_sec .container .img_gmen.move {
	bottom: clamp(20px, 4.5vw, 80px);
	opacity: 1;
}

/* SP */
@media (max-width: 799px) {
	.lay_sec {
		background: url(../images/top/sp/sp_bg_layout.jpg) no-repeat center top / contain;
		position: relative;
		top: -25vw;
        margin-bottom: -25vw;
        max-width: 800px;
        height: 100%;
        padding-top: 32vw;
	}
	.lay_sec .container {
		height: 100%;
		position: relative;
		z-index: 0;
		padding-bottom: clamp(36vw, 50%, calc(100% - 36vw));
	}
	.lay_sec .container .ttl_layout {
		max-width: 820px;
		margin-inline: auto;
		position: relative;
		padding-bottom: 10vw;
		padding-left: 3vw;
		padding-right: 3vw;
	}
	.lay_sec .container .ttl_layout span {
		display: block !important;
        position: absolute;
        top: 10.2vw !important;
        right: 0 !important;
        left: 0;
		max-width: clamp(200px, 56vw, 450px) !important;
        margin-inline: auto;
	}
	.lay_sec .container .ttl_layout span img {
		width: 100%;
	}
	.lay_sec .container .support {
		align-items: flex-start;
		flex-direction: column;
		column-gap: 0;
		margin-bottom: 30px;
		padding-left: 3vw;
		padding-right: 3vw;
	}
	.lay_sec .container .support dt {
		font-size: 23px;
		line-height: 1.1;
		text-align: center;
		padding-left: 0;
		padding-bottom: 8px;
	}
	.lay_sec .container .support dt span {
		font-size: 34px;
		color: #d10017;
		display: inline-block;
		padding-left: 6px;
	}
	.lay_sec .container .support dd {
		position: relative;
		padding-top: 12px;
	}
	.lay_sec .container .support dd::after {
		border-top: 3px solid #d10017;
		border-right: none;
		width: 100%;
		position: absolute;
		left: 0;
		top: 0;
	}
	.lay_sec .container .support dd .ttl_hd05_layout {
		font-size: 18px;
		line-height: 1.5;
		padding-bottom: 15px;
	}
	.lay_sec .container .support dd .ttl_hd05_layout span {
		font-size: 21px;
        padding: 2px 3px 3px;
        line-height: 1;
	}
	.lay_sec .container .support dd .txt_lead_m {
		font-size: 14px !important;
		font-weight: 400;
		line-height: 1.5;
	}
	.lay_sec .container .img_gmen {
		max-width: clamp(250px, 60%, 500px);
	}

}

/*==========================================
  対策例
==========================================*/
.case_sec {
	position: relative;
	max-width: 2000px;
	margin-inline: auto;
	top: -28vw;
	margin-bottom: -28vw;
	clip-path: polygon(0 0, 100% 24.28vw, 100% calc(100% - 24.28vw), 0 100%);
	padding-bottom: 20vw;
	z-index: 1;
}
.case_sec::after {
    content: "";
    background-color: #dce5f6;
	background-image: url(../images/top/pt_lead_line.png);
	background-size: 9px;
	background-repeat: repeat;
    clip-path: polygon(0 0, 100% 24.28vw, 100% calc(100% - 24.28vw), 0 100%);
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -1;
}
.case_sec .container {
	height: 100%;
	position: relative;
	padding-top: 13vw;
	z-index: 0;
}
.case_sec .container .ttl_hd03_case {
	max-width: 285px;
	position: relative;
	padding-bottom: 70px;
	width: 100%;
	z-index: 0;
}
.case_sec .container .ttl_hd03_case img {
	clip-path: inset(0 100% 0 0);
	transform: translateX(-5%);
    transition: transform .4s ease-out .3s, clip-path .3s ease-out .4s;

}
.case_sec .container .ttl_hd03_case::after {
	content: "";
	background: url(../images/top/case_txt_example.svg) no-repeat center center / contain;
	width: clamp(640px, 110vw, 840px);
    position: absolute;
    left: -100px;
    bottom: 60px;
    height: 100%;
	z-index: -1;
	opacity: 0;
	clip-path: inset(0 100% 0 0);
	transform: translateX(-5%);
    transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1), clip-path .5s cubic-bezier(0.16, 1, 0.3, 1), opacity .5s;
	transition-delay: .15s;
}
/* move */
.case_sec .container .ttl_hd03_case.move img {
	clip-path: inset(0);
	transform: translate(0);
}
.case_sec .container .ttl_hd03_case.move::after {
	clip-path: inset(0);
	transform: translate(0);
	opacity: 1;
}

.case_sec .container .case_wrap .case:first-child {
	padding-top: 0;
}
.case_sec .container .case_wrap .case:last-child {
	border: none;
}
.case_sec .container .case_wrap .case {
	border-bottom: 2px solid #1f1f1f;
	display: grid;
	grid-template-columns: 25vw 1fr;
	grid-template-rows: max-content 1fr max-content;
	column-gap: 50px;
	padding-top: 50px;
	padding-bottom: 50px;
}
.case_sec .container .case_wrap .case figure {
	aspect-ratio: 1 / 1;
	grid-column: 1 / 2;
	grid-row: 1 / 4;
	max-width: 300px;
	flex-shrink: 0;
}
.case_sec .container .case_wrap .case figure img {
	object-fit: cover;
	width: 100%;
	height: auto;
}
.case_sec .container .case_wrap .case .ttl_hd04_case {
	grid-column: 2 / 3;
	grid-row: 1 / 2;
}
.case_sec .container .case_wrap .case .ttl_hd04_case span.cate {
	background-color: #004ab2;
    border-radius: 20px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    height: 40px;
    display: inline-block;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 12px;
	margin-bottom: 15px;
	position: relative;
	left: -20px;
}
.case_sec .container .case_wrap .case .ttl_hd04_case h4.ttl_hd04_case {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.5;
	padding-bottom: 18px;
}
.case_sec .container .case_wrap .case .txt_case_price {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
}

.case_sec .container .case_wrap .case .txt_case_price .tbl_case {
	background-color: #fff;
	width: 80%;
}
.case_sec .container .case_wrap .case .txt_case_price .tbl_case tr {
	border-bottom: 1px solid #dfe7f7;
}
.case_sec .container .case_wrap .case .txt_case_price .tbl_case tr th {
	font-weight: 700;
	color: #004ab2;
	padding: 15px;
	white-space: nowrap;
	width: 20%;
}
.case_sec .container .case_wrap .case .txt_case_price .tbl_case tr td {
	font-weight: 700;
	padding: 15px 15px 15px 0;
}
.case_sec .container .case_wrap .case .txt_case_price .price_list {
	display: flex;
	justify-content: flex-start;
	align-items: baseline;
	column-gap: 40px;
	margin-bottom: 15px;
	position: relative;
	width: max-content;
	z-index: 0;
}
.case_sec .container .case_wrap .case .txt_case_price .price_list::after {
	content: "";
    background-color: #ffe400;
    height: 14px;
    clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
    width: 104%;
    position: absolute;
    bottom: 9px;
    left: -6px;
    z-index: -1;
}
.case_sec .container .case_wrap .case .txt_case_price .price_list li.txt_beforePrice {
	font-size: 20px;
	font-weight: 700;
	font-style: italic;
	position: relative;
}
.case_sec .container .case_wrap .case .txt_case_price .price_list li.txt_beforePrice::after {
	content: "";
	background: url(../images/top/arw_price.svg) no-repeat center center / contain;
	width: 30px;
    height: 16px;
    position: absolute;
    right: -40px;
    bottom: 24px;
}
.case_sec .container .case_wrap .case .txt_case_price .price_list li.txt_beforePrice span {
	font-size: 50px;
	font-family: "Barlow Semi Condensed", sans-serif;
	font-weight: 600;
	padding-left: 10px;
	position: relative;
    bottom: -3px;
}
.case_sec .container .case_wrap .case .txt_case_price .price_list li.txt_afterPrice {
	font-size: 28px;
	font-weight: 900;
	font-style: italic;
	color: #d10017;
	line-height: 1;
}
.case_sec .container .case_wrap .case .txt_case_price .price_list li.txt_afterPrice {
	transform: scale(1.3, 1.3);
	transition: transform 0.6s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.case_sec .container .case_wrap .case .txt_case_price .price_list li.txt_afterPrice span {
	font-size: 70px;
	font-family: "Barlow Semi Condensed", sans-serif;
	font-weight: 600;
	position: relative;
    bottom: -3px;
}
.case_sec .container .case_wrap .case .txt_case_lead {
	grid-column: 2 / 3;
	grid-row: 3 / 4;
}
/* move */
.case_sec .container .case_wrap .case .txt_case_price .price_list.move li.txt_afterPrice {
	transform: scale(1, 1);
}

/* TB */
@media (max-width: 840px) { 
	.case_sec .container .ttl_hd03_case::after {
		width: clamp(640px, 80vw, 840px);
		bottom: 46px;
	}
	.case_sec .container .case_wrap .case {
		column-gap: 25px;
	}
	.case_sec .container .case_wrap .case .ttl_hd04_case span.cate {
		left: 0;
	}
}

/* SP */
@media (max-width: 799px) { 
	.case_sec {
		background: none;
        position: relative;
        z-index: 1;
        overflow: visible;
        top: -40vw;
        height: 100%;
        margin-bottom: -40vw;
        padding-top: 20vw;
        padding-bottom: 18vw;
		clip-path: polygon(0 0, 100% 35.89vw, 100% calc(100% - 35.89vw), 0 100%);
	}
	.case_sec::after {
		content: "";
		background-color: #dce5f6;
		background-image: url(../images/top/pt_lead_line.png);
		background-size: 6px;
		background-repeat: repeat;
		clip-path: polygon(0 0, 100% 35.89vw, 100% calc(100% - 35.89vw), 0 100%);
		position: absolute;
		top: 0;
		width: 100%;
		height: 100%;
		display: block;
		z-index: -1;
	}
	.case_sec .container {
		height: 100%;
		position: relative;
		z-index: 0;
		padding-bottom: 18vw;
		padding-top: 0;
	}
	.case_sec .container .ttl_hd03_case {	
        position: relative;
        padding-bottom: 0;
        margin-bottom: 30px;
		max-width: 100%;
        width: 100%;
        z-index: 0;
	}
	.case_sec .container .ttl_hd03_case img {
		max-width: clamp(124px, 35%, 290px);
	}
	.case_sec .container .ttl_hd03_case::after {
        content: "";
        background: url(../images/top/case_txt_example.svg) no-repeat center center / contain;
        width: clamp(310px, 80vw, 700px);
        position: absolute;
        left: -15px;
        bottom: 0;
        height: 125%;
    }
	.case_sec .container .case_wrap .case:last-child {
		border: none;
	}
	.case_sec .container .case_wrap .case {
		border-bottom: 2px solid #1f1f1f;
		display: grid;
		grid-template-columns: minmax(120px, 240px) 1fr;
		grid-template-rows: max-content 1fr max-content;
		column-gap: 10px;
		padding-top: 25px;
		padding-bottom: 25px;
	}
	.case_sec .container .case_wrap .case figure {
		aspect-ratio: 1 / 1;
		grid-column: 1 / 2;
		grid-row: 2 / 3;
		max-width: 240px;
		padding-bottom: 15px;
	}
	.case_sec .container .case_wrap .case figure img {
		object-fit: cover;
		width: 100%;
		height: auto;
	}
	.case_sec .container .case_wrap .case .ttl_hd04_case {
		grid-column: 1 / 3;
		grid-row: 1 / 2;
	}
	.case_sec .container .case_wrap .case .ttl_hd04_case span.cate {
		background-color: #004ab2;
		border-radius: 20px;
		color: #ffffff;
		font-size: 11px;
		font-weight: 700;
		height: 30px;
		display: inline-block;
		padding-left: 10px;
		padding-right: 10px;
		padding-top: 10px;
		margin-bottom: 10px;
		position: relative;
		left: 0;
	}
	.case_sec .container .case_wrap .case .ttl_hd04_case h4.ttl_hd04_case {
		font-size: 18px;
		font-weight: 700;
		line-height: 1.5;
		padding-bottom: 18px;
	}
	.case_sec .container .case_wrap .case .txt_case_price {
		grid-column: 2 / 3;
		grid-row: 2 / 3;
	}
	
	.case_sec .container .case_wrap .case .txt_case_price .tbl_case {
		width: 100%;
		margin-bottom: 20px;
	}
	.case_sec .container .case_wrap .case .txt_case_price .tbl_case tr {
		border-bottom: 1px solid #dfe7f7;
	}
	.case_sec .container .case_wrap .case .txt_case_price .tbl_case tr th {
		font-size: 12px;
		padding: 10px;
		width: 20%;
	}
	.case_sec .container .case_wrap .case .txt_case_price .tbl_case tr td {
		font-size: 12px;
		font-weight: 500;
		padding: 10px 10px 10px 0;
		min-width: clamp(120px, 30vw, 240px);
	}
	.case_sec .container .case_wrap .case .txt_case_price .tbl_case tr td span {
		display: inline-block;
	}
	.case_sec .container .case_wrap .case .txt_case_price .price_list {
		align-items: flex-end;
		column-gap: 24px;
		margin-bottom: 0;
	}
	.case_sec .container .case_wrap .case .txt_case_price .price_list::after {
		height: 7px;
		bottom: -3px;
		left: -3px;
	}
	.case_sec .container .case_wrap .case .txt_case_price .price_list li.txt_beforePrice {
		font-size: 12px;
		font-weight: 700;
		font-style: italic;
		line-height: 1;
		position: relative;
	}
	.case_sec .container .case_wrap .case .txt_case_price .price_list li.txt_beforePrice::after {
		width: 18px;
        height: 10px;
        position: absolute;
        right: -20px;
        bottom: 4px;
	}
	.case_sec .container .case_wrap .case:nth-of-type(2) .txt_case_price .price_list li.txt_beforePrice::after {
        right: -24px;
	}
	.case_sec .container .case_wrap .case:nth-of-type(3) .txt_case_price .price_list li.txt_beforePrice::after {
        right: -17px;
	}
	.case_sec .container .case_wrap .case .txt_case_price .price_list li.txt_beforePrice span {
		font-size: clamp(24px, 10vw, 30px);
		padding-left: 0;
		bottom: -1px;
	}
	.case_sec .container .case_wrap .case .txt_case_price .price_list li.txt_beforePrice small {
		display: block;
		position: relative;
        left: 5px;
        top: 2px;
	}
	.case_sec .container .case_wrap .case .txt_case_price .price_list li.txt_afterPrice {
		font-size: 14px;
		color: #d10017;
		position: relative;
        top: 2px;
	}
	.case_sec .container .case_wrap .case .txt_case_price .price_list li.txt_afterPrice span {
		font-size: clamp(33px, 12vw, 45px);
		bottom: -2px;
	}
	.case_sec .container .case_wrap .case .txt_case_lead {
		grid-column: 1 / 3;
		grid-row: 3 / 4;
	}
	.case_sec .container .case_wrap .case .txt_case_lead .txt_lead_s {
		font-size: 14px;
	}
}


/*==========================================
  Privacy
==========================================*/

.policy {
	max-inline-size: max-content;
	margin-right: 0;
	margin-left: auto;
	margin-bottom: 20px;
	margin-top: -25px;
	font-size:14px;
  }
  
  .wh_sec {
	font-size:14px;
	padding-top: 65px;
  }
  .wh_sec .container {
	padding-left: 0;
	padding-right: 0;
  }
  .wh_sec .top_text {
	font-size:14px;
	padding-bottom: 10px;
  }
  .wh_sec .bar_ttl {
	font-size:14px;
	margin-bottom: 30px;
  }
  .wh_sec .wrap_p:not(:last-of-type) {
	margin-bottom: 40px;
  }
  .wh_sec .wrap_p p {
	line-height: 1.7;
	font-size:14px;
  }
  .wh_sec .wrap_p a {
	border-bottom: 1px solid transparent;
  }
  .wh_sec .wrap_p a:hover {
	opacity: 0.7;
	border-bottom: 1px solid #333;
  }
  .wh_sec .wrap_p.wrap2 .margin_s {
	padding-bottom: 10px;
  }
  .wh_sec .wrap_p .list_p > li::before {
	content: "■";
	margin-right: 5px;
  }
  .wh_sec .wrap_p .list02 {
	padding-left: 45px;
  }
  .wh_sec .wrap_p .list02 > li {
	text-indent: -1.3em;
	padding-left: 1.3em;
  }
  .wh_sec .wrap_p .list02 > li::before {
	content: "・";
	margin-right: 5px;
  }
  .wh_sec .wrap_p .list02_henkou {
	padding-left: 22px;
  }
  .wh_sec .wrap_p .list02_henkou > li {
	text-indent: -1.3em;
	padding-left: 1.3em;
  }
  .wh_sec .wrap_p .list02_henkou > li::before {
	content: "・";
	margin-right: 5px;
  }
  .wh_sec .wrap_p .list_num {
	padding-left: 20px;
	padding-bottom: 20px;
  }
  .wh_sec .wrap_p .list_num > li {
	text-indent: -1.3em;
	padding-left: 1.3em;
  }
  .wh_sec .wrap_p table {
	display: table;
	border: 1px solid #e3e3e3;
	margin-top: 10px;
	margin-bottom: 30px;
	margin-left: 15px;
	background: white;
  }
  .wh_sec .wrap_p table tbody {
	display: table-row-group;
  }
  .wh_sec .wrap_p table tr {
	display: table-row;
	border-bottom: 1px solid #e3e3e3;
  }
  .wh_sec .wrap_p table tr:first-child {
	line-height: 2;
  }
  .wh_sec .wrap_p table th {
	display: table-cell;
	width: auto;
	border-right: 1px solid #e3e3e3;
	border-bottom: 1px solid #e3e3e3;
	font-weight: 400;
	padding: 15px;
	vertical-align: middle;
	font-size:14px;
	color: #1f1f1f;
  }
  .wh_sec .wrap_p table td {
	display: table-cell;
	border-bottom: 1px solid #e3e3e3;
	padding: 15px;
	font-size:14px;
	color: #1f1f1f;
  }

  .wh_sec .wrap_p table td > ul li {
	font-size:14px;
  }
  .wh_sec .wrap_p .list {
	text-indent: 21px;
	margin-bottom: 10px;
  }
  .wh_sec .wrap_p h3 {
	padding-top: 15px;
	font-size: 18px;
  }
  .wh_sec .wrap_p .policy .bo_none {
	border-bottom: none;
  }
  .wh_sec .wrap_p .right {
	float: right;
	padding-top: 15px;
	padding-bottom: 45px;
  }
  .wh_sec .wrap_p .margin_s {
	padding-bottom: 10px;
  }
  .wh_sec .wrap_p .privacy_policy {
	text-indent: -1.25em;
    padding-left: 1.25em;
	padding-bottom: 10px;
	font-size:14px;
  }
  .wh_sec .wrap_p .privacy_policy2 {
	text-indent: -1.5em;
    padding-left: 1.5em;
	padding-bottom: 10px;
	font-size:14px;
  }
  .wh_sec .wrap_p .tel {
	cursor: default;
	pointer-events: none;
  }
  .wh_sec .wrap_p .margin_ss {
	margin-left: 20px;
	font-size:14px;	
  }
  .wh_sec .wrap_p .margin_ss li {
	font-size:14px;	
  }
  
  .contact_link {
	padding: 120px 0 100px;
  }

  /* SP */
@media (max-width: 799px) { 
	.policy {
		max-inline-size: max-content;
		margin-right: 0;
		margin-left: auto;
		margin-bottom: 20px;
		margin-top: 20px;
		font-size: 10px;
	  }
	.wh_sec .wrap_p:not(:last-of-type) {
		margin-bottom: 10px;
	}
	.wh_sec .bar_ttl {
		font-size: 12px;
		margin-bottom: 12px;
	  }
	.wh_sec .top_text {
		font-size: 10px;
		padding-bottom: 10px;
	}
	.wh_sec .wrap_p .privacy_policy2 {
		text-indent: -1.5em;
		padding-left: 1.5em;
		padding-bottom: 10px;
		font-size:10px;
	}
	.wh_sec .wrap_p table th {
		padding: 10px;
		font-size:10px;
	}
	.wh_sec .wrap_p table td {
		padding: 10px;
		font-size:10px;
	}
	.wh_sec .wrap_p table td > ul li {
		font-size:10px;
	}
	.wh_sec .wrap_p .margin_ss {
		font-size:10px;	
	}
	.wh_sec .wrap_p .privacy_policy {
		font-size:10px;
		padding-bottom: 5px;
		text-indent: -1.25em;
        padding-left: 1.25em;
	}
	.wh_sec .wrap_p p {
		font-size:10px;
	}

}