@charset "utf-8";
:root {
  --blackColor: #000;
  --whiteColor: #fff;
  --grayColor: #eeede5;
  --redColor: #cf0f31;
  --yellowColor: #fef7e0;
  --pinkColor: #ffe8e8;
  --fontColor: #454545;
}
/*----------------------------------*/
/* 共通
/*----------------------------------*/
body {
  color: var(--fontColor);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
h1, h2, h3, h4, h5, p, li {
  color: var(--fontColor);
}
img {
  width: 100%;
  height: auto;
}
a {
  color: #015de8;
  text-decoration: underline;
}
.bold {
  font-weight: 600;
}
.break-keep {
  word-break: keep-all;
}
.red {
  color: var(--redColor);
}
.s_ta_l {
  text-align: left !important;
}
.s_ta_r {
  text-align: right !important;
}
.s_ta_c {
  text-align: center !important;
}
.s_pt_40 {
  padding-top: 40px !important;
}
.s_pt_10 {
  padding-top: 10px !important;
}
.s_mt_20_pc {
  margin-top: 20px !important;
}
@media screen and (max-width: 767px) {
  .s_mt_20_pc {
    margin-top: 0 !important;
  }
}

@media screen and (max-width: 767.9px) {
  .only_pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .only_sp {
    display: none !important;
  }
}

.sec_box .sec_inner {
  width: 100%;
  max-width: 700px;
  margin: auto;
  padding: 80px 0;
}
.sec_box .sec_title{
  line-height: 1.0;
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
}
.sec_btn {
  padding: 10px 0;
  background-color: var(--whiteColor);
}
@media screen and (max-width: 767px) {
  .sec_box .sec_inner {
    width: 100%;
    padding: 40px 3vw;
  }
  .sec_box .sec_title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 24px;
  }
}

ul.note .note_item {
  font-size: 12px;
  color: var(--fontColor);
  font-weight: 400;
  margin-top: 0;
  text-indent: -1em;
  padding-left: 1em;
}
ul.note .note_item::before {
  margin-right: 0;
}
ul.note .note_item.red {
  color: var(--redColor);
}
ul.note .note_item.red::before {
  color: var(--redColor);
}
ul.dot .dot_item {
  font-size: 12px;
  color: var(--fontColor);
  font-weight: 400;
  margin-top: 0;
  text-indent: -1em;
  padding-left: 1em;
}
ul.dot .dot_item::before {
  content: '・';
  font-size: inherit;
  margin-right: 0;
}
ol.note_order .note_order_item {
  font-size: 12px;
  color: var(--fontColor);
  font-weight: 400;
  margin-top: 0;
  text-indent: -2em;
  padding-left: 2em;
  counter-increment: num;
}
ol.note_order .note_order_item::before {
  font-size: inherit;
  margin-right: 0.5em;
  content: "※" counter(num);
}
a.txt_link {
  display: inline;
}
.note {
	font-size: 12px;
	line-height: 1.32;
}
@media screen and (max-width: 767px) {
	.note {
		font-size: 9px;
	}
}
.center {
	text-align: center;
}
/*----------------------------------*/
/* header
/*----------------------------------*/
.header {
  background-color: #ffffff;
}
.header .inner {
  max-width: 1280px;
  padding: 12px 10px;
  box-sizing: border-box;
  text-align: center;
}
.header img {
  width: 74.667vw;
  display: block;
  max-width: calc((486 / 750) * 100vw);
}
@media screen and (min-width: 768px) {
  .header img {
    width: 280px;
  }
}

/*----------------------------------*/
/* fv
/*----------------------------------*/
.fv {
  background-color: rgb(252, 245, 224);
  padding-bottom: 35px;
}
.fv img {
  display: block;
}
.fv_img {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.fv h1 {
  max-width: 700px;
  margin: 0 auto;
}

/* animation */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fv .note {
	margin: 20px auto 0;
	font-size: 12px;
	width: 700px;
}
/* 767px対策 */
@media screen and (max-width: 767.9px) {
  .fv {
    background-color: rgb(252, 245, 224);
    padding-bottom: 24px;
  }
  .fv h1 {
    margin: 0 auto;
  }
  .fv .note {
	font-size: 9px;
	width: 100%;
    background-color: rgb(252, 245, 224);
    padding: 0 3vw;
  }
}

.app {
  background: var(--whiteColor);
  padding: 20px 0;
}
.app_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.app_01 {
  width: fit-content;
  margin: auto;
}
.app_01_img {
  display: flex;
}
.app_01_img > img {
  width: 114px;
  height: 114px;
}
.app_bg {
  background-color: var(--grayColor);
  padding: 8px;
  width: 114px;
  height: 114px;
  margin-right: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}
.app_bg > img {
  width: 26px;
  height: 40px;
  margin: auto;
  display: block;
}
.app_bg > p {
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}
.campaign_bnr {
	margin-top: 25px;
}
.campaign_bnr .bnr + .bnr {
	margin-top: 20px;
}
.sec_bnr {
	display: flex;
    justify-content: center;
}
.sec_bnr img {
	width: 650px;
	margin: 0 auto;
	border-radius: 8px;
}
@media screen and (max-width: 767px) {
	.campaign_bnr {
		margin-top: 20px;
	}
	.campaign_bnr .bnr + .bnr {
		margin-top: 15px;
	}
	.sec_bnr {
		padding: 0 3vw;
	}
	.sec_bnr img {
		width: 100%;
	}
}

/*----------------------------------*/
/* sec01
/*----------------------------------*/
.sec01 {
  background-color: #F0EEEC;
}
.merit_box {
  margin-top: 32px;
}
.merit_box li .bg_white {
  background-color: #FFF;
  border-radius: 16px;
}
.merit_box>li+li {
  margin-top: 16px;
}
.merit_box>li .list_h3 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background-color: #FACB32;
  border-radius: 16px 16px 0 0;
  padding: 40px 16px;
}
.merit_box li .list_h3 h3 {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.318;
  padding-left: 12px;
}
.merit_box li .list_h3 img {
  width: 48px;
  height: 48px;
}
.merit_box li .box_wrap {
    padding: 40px 0;
    max-width: 400px;
    margin: auto;
}
.merit_box li .box_wrap .text_box {
    margin-bottom: 35px;
}
.merit_box li .box_wrap .text-xs {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}
.merit_box li .box_wrap .text-sm {
    font-size: 20px;
    line-height: 1.48;
    text-align: center;
}
.merit_box li .box_wrap .text-md {
    font-size: 24px;
	line-height: 1.48;
    text-align: center;
}
.merit_box li .box_wrap .text-lg {
    font-size: 32px;
	font-weight: 600;
	line-height: 1.48;
    text-align: center;
}
.merit_box li .box_wrap .text-xl {
    font-size: 40px;
	font-weight: 600;
	line-height: 1.48;
    text-align: center;
}
.merit_box li .box_wrap .note {
   margin-top: 20px;
}
.short {
    font-weight: bold;
    font-size: 20px;
    margin: 0 0 0 8px;
}
.three {
	font-size: 40px;
    font-family: "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 700;
}
.min {
    font-weight: 600;
    font-size: 20px;
}
.step_container {
  background-color: #F7F5F3;
  padding: 30px 16px 24px;
  border-radius: 10px;
  align-items: center;
}
.step_container .step_area {
	display: flex;
    flex-direction: column;
    gap: 40px;
}
.step_container .step_item {
  position: relative;
  border-radius: 6px;
  padding: 10px 20px;
  width: 100%;
  max-width: 420px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  text-align: left;
}
.step_container .step_item::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid #ccc3b2;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.step_container .step_item:last-of-type::after {
  display: none;
}
.step_container h4 {
  background: #706B61;
  color: #fff;
  border-radius: 9999px;
  padding: 0.1rem 1.6rem;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  min-width: 90px;
  text-align: center;
  letter-spacing: 0.05em;
}
.step_container .step_text {
  font-size: 20px;
  font-weight: bold;
  flex: 1;
  line-height: 1.3;
}
.step_container .card_box {
  background: #fff;
  border-radius: 16px;
  padding: 6px 20px;
  margin-top: 15px;
  width: 100%;
  max-width: 480px;
  text-align: left;
}
.step_container .card_box .card_box_inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
.step_container .card_box .card_box_inner img {
  width: 80px;
  height: auto;
  object-fit: contain;
}
.step_container .card_box .card_box_inner p {
	font-size: 20px;
	font-weight: 400;
	line-height: 132%;
	margin: 0;
}

.dpoint {
    width: 50%;
    margin: auto 100px;
}

@media screen and (max-width: 767px) {
	.sec01 {
		background-color: #F0EEEC;
	}
	.merit_box {
		margin-top: 8.53vw;
	}
	.merit_box li .bg_white {
		background-color: #FFF;
		border-radius: 4.27vw;
	}
	.merit_box>li+li {
		margin-top: 4.27vw;
	}
	.merit_box>li .list_h3 {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		background-color: #FACB32;
		border-radius: 4.27vw 4.27vw 0 0;
		padding: 4.27vw;
	}
	.merit_box li .list_h3 img {
		width: 12.8vw;
		height: 12.8vw;
	}
	.merit_box li .list_h3 h3 {
		font-weight: 600;
		font-size: 5.87vw;
		line-height: 1.318;
		padding-left: 3.2vw;
	}
	.merit_box li:not(:nth-of-type(1)) .box_wrap {
		padding: 8.53vw 4.267vw;
		max-width: 100%;
	}
	.merit_box li:nth-of-type(1) .box_wrap {
		padding: 8.53vw 4.267vw;
		max-width: 100%;
	}
	.merit_box li .box_wrap .text_box {
		margin-bottom: 6vw;
	}
	.merit_box li .box_wrap .text-xs {
		font-weight: bold;
		font-size: 18px;
		text-align: center;
	}
	.merit_box li .box_wrap .text-sm {
		font-size: 16px;
		line-height: 1.48;
		text-align: center;
	}
	.merit_box li .box_wrap .text-md {
		font-size: 5.27vw;
		line-height: 1.48;
		text-align: center;
	}
	.merit_box li .box_wrap .text-lg {
		font-size: 7.27vw;
		font-weight: 600;
		line-height: 1.48;
		text-align: center;
	}
	.merit_box li .box_wrap .text-xl {
		font-size: 7.27vw;
		font-weight: 600;
		line-height: 1.48;
		text-align: center;
	}

	.merit_box li .box_wrap>img {
		display: block;
		margin: auto;
	}
	.merit_box li:nth-of-type(1) .box_wrap .dpoint {
		width: 50%;
	}
	.step_container {
		padding: 20px;
		border-radius: 2.5vw;
		gap: 25px;
	  }
	.step_container .step_area {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
	.step_container .step_item {
		padding: 8px;
		max-width: 100%;
	}
	.step_container .step_item::after {
		content: "";
		position: absolute;
		bottom: -15px;
		left: 50%;
		transform: translateX(-50%);
		width: 0;
		height: 0;
		border-top: 10px solid #ccc3b2;
		border-left: 10px solid transparent;
		border-right: 10px solid transparent;
	}
	.step_container h4 {
		font-size: 14px;
		min-width: 80px;
		padding: 0.2rem 1.2rem;
	}
	.step_container .step_text {
		font-size: 18px;
		font-weight: 600;
		margin-top: 3.2vw;
		margin-bottom: 3.2vw;
	}
	.step_container .card_box {
		padding: 8px 12px;
		margin-top: 0;
		margin-bottom: 0.6rem;
	}
	.step_container .card_box .card_box_inner img {
		width: 70px;
	}
	.step_container .card_box .card_box_inner p {
		font-size: 16px;
	}
}

/*----------------------------------*/
/* sec02
/*----------------------------------*/
.sec02 {
  background-color: #EBEAE6;
}
.feature_wrap {
    background-color: #FFF;
    padding: 24px;
    border-radius: 8px;
}
.feature_wrap ul li {
    align-items: baseline;
    border-bottom: dashed 1px #E0DFDD;
    display: flex;
    padding: 20px 0 20px 0;
}
.feature_wrap ul li:first-of-type {
    padding: 0 0 20px 0;
}
.feature_wrap ul li:last-of-type {
    border-bottom: none;
    padding: 20px 0 0 0;
}
.feature_wrap h3 {
    color: #4D4639;
    background-color: #FCF5E0;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.48;
    margin: 2px 10px;
    padding: 2px 8px 2px 8px;
	min-width: 104px;
}
.feature_wrap .feature_text {
    font-size: 18px;
    font-weight: 600;
	line-height: 1;
}
/* 画面サイズ375以上の時、改行しない */
.line {
  display: none;
}
.check_icon {
	width: 18px;
	height: 18px;
	margin-right: 6px;
	vertical-align: middle;
	position: relative;
	top: -2px;
	object-fit: contain;
}
.sup_text {
	font-size: 0.6em;
	vertical-align: top;
}
.sec02_note {
	margin-top: 20px;
}
.sec02_note .note_item {
	font-size: 12px;
	color: var(--fontColor);
	font-weight: 400;
	margin-top: 0;
	text-indent: -1em;
	padding-left: 1em;
}
.sec02_note .note_item + .note_item {
	margin-top: 10px;
}
.sec02_note .note_item::before {
    content: '※';
    font-size: inherit;
    margin-right: 0;
}

@media screen and (max-width: 767px) {
	.feature_wrap {
		background-color: #FFF;
		padding: 20px;
		border-radius: 2.13vw;
	}
	.feature_wrap ul li {
		align-items: baseline;
		border-bottom: dashed 1px #E0DFDD;
		display: flex;
		padding: 20px 0 20px 0;
	}
	.feature_wrap ul li:first-of-type {
		padding: 0 0 20px 0;
	}
	.feature_wrap ul li:last-of-type {
		border-bottom: none;
		padding: 20px 0 0 0;
	}
	.feature_wrap h3 {
		color: #4D4639;
		background-color: #FCF5E0;
		border-radius: 9999px;
		font-size: 16px;
		font-weight: bold;
		line-height: 1.48;
		margin: 2px 8px;
		padding: 2px 8px 2px 8px;
		min-width: 104px;
	}
	.feature_wrap .feature_text {
		font-size: 18px;
		font-weight: 600;
		line-height: 1;
	}
	/* 画面サイズ375以上の時、改行しない */
	.line {
		display: none;
	}
	.check_icon {
		width: 14px;
		height: 14px;
		margin-right: 4px;
		vertical-align: middle;
		position: relative;
		top: -1px; 
		object-fit: contain;
	}
	.sup_text {
		font-size: 0.6em;
		vertical-align: top;
	}
}

/*----------------------------------*/
/* sec03
/*----------------------------------*/
.sec03 {
  background-color: #f0eeec;
}
.sec03 .sec_inner {
  max-width: 860px;
}
.sec03 h3 {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.sec03 h3::before {
  content: "";
  display: inline-block;
  background-color: #facb32;
  width: 10px;
  height: 23px;
  margin-right: 10px;
}
.sec03 .faq+.faq {
  margin-top: 40px;
}
.faq-list>.accordion+.accordion {
  margin-top: 10px;
}
.accordion {
  border-radius: 10px;
  line-height: 1.4;
}
/* accordion */
.accordion_head {
  cursor: pointer;
  padding: 10px 20px;
  position: relative;
  background-color: var(--whiteColor);
  display: flex;
  align-items: center;
  border-radius: 10px;
}
.accordion_head.active {
  border-radius: 10px 10px 0 0;
}
.accordion_head > span {
  font-size: 18px;
  font-weight: 600;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-right: 15px;
}
.accordion_head > p {
  font-size: 16px;
  font-weight: 600;
  padding-left: 14px;
  color: var(--fontColor);
  border-left: solid 2px var(--grayColor);
}
.accordion_head::after,
.accordion_head::before {
  content: '';
  display: block;
  position: absolute;
  width: 2px;
  height: 12px;
  background-color: var(--fontColor);
  right: 24px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.5s;
}
.accordion_head::before {
  transform: rotate(90deg);
}
.accordion_head.active::before {
  transform: rotate(270deg);
}
.accordion_head.active::after {
  transform: rotate(90deg);
}
.accordion_content {
  display: none;
  background-color: var(--whiteColor);
  border-radius: 0 0 10px 10px;
  padding: 0 10px 0 10px;
}
.accordion_inner {
  border-top: 3px var(--grayColor) solid;
  padding: 12px 10px 20px 10px;
}
.accordion_inner_txt {
  width: 100%;
  overflow: hidden;
  font-size: 16px;
  font-weight: 400;
}
.accordion_inner > img{
  display: block;
  max-width: 300px;
}
.accordion_inner ul, .accordion_inner ol {
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
	.accordion_head {
		padding: 10px 32px 10px 12px;
	}
	.accordion_head > span {
		font-size: 16px;
		padding-right: 12px;
	}
	.accordion_head::after,
	.accordion_head::before {
		height: 12px;
		right: 20px;
	}
	.accordion_head > p {
		font-size: 14px;
		font-weight: 600;
		padding-left: 14px;
		color: var(--fontColor);
		border-left: solid 2px var(--grayColor);
	}
	.accordion_inner_txt {
		width: 100%;
		overflow: hidden;
		font-size: 14px;
		font-weight: 400;
	}
	.accordion_inner {
		border-top: 3px var(--grayColor) solid;
		padding: 10px 10px 20px 10px;
	}
}
/* link */
.text-link {
  margin-top: 40px;
}
.text-link a {
  color: #CC0000;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}
.text-link .link_icon {
  height: 12px;
  width: 12px;
  margin-left: 5px;
}
@media screen and (max-width: 767px) {
	.text-link {
	  margin-top: 30px;
	}
	.text-link a {
	  color: #CC0000;
	  font-size: 14px;
	  font-weight: 600;
	  line-height: 1.2;
	}
	.text-link .link_icon {
	  height: 12px;
	  width: 12px;
	  margin-left: 5px;
	}
}

/*----------------------------------*/
/* sec04
/*----------------------------------*/
.sec04 {
  background-color: #EBEAE6;
}
.sec04 .sec_inner {
  max-width: 860px;
}
.campaign {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}
.campaign > img{
  display: block;
  width: 600px;
  margin-bottom: 40px;
}
.campaign > ul {
  width: 700px;
}
.campaign > .dot .dot_item {
  font-weight: 600;
}
.campaign_list > .campaign_list_item + .campaign_list_item {
  margin-top: 30px;
}
.campaign_list_item > section {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.campaign_list_item_detail {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.campaign_list_item_content > div {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .campaign_list_item > section > div {
    flex-direction: column;
  }
}
.campaign_list_item {
  padding: 30px;
  position: relative;
}
.campaign_list_item:nth-of-type(2) {
  background-color: var(--whiteColor);
}
@media screen and (min-width: 768px) {
  .campaign_list_item {
    background-color: var(--whiteColor);
  }
}
.campaign_list_item_bnr {
  display: block;
  width: 50%;
}
.campaign_list_item_bnr.bg_green {
  background-color: #daf6e3;
}
.campaign_list_item_bnr .campaign_condition_label.wide {
  margin-bottom: 10px;
  line-height: 1.2;
  font-weight: 600;
  font-size: 18px;
  padding-left: 10px;
  padding-top: 10px;
}
.campaign_list_item > img {
  display: block;
  width: 100%;
}
.campaign_list_item > p {
  font-size: 16px;
  text-align: center;
}
.campaign_condition {
  width: 50%;
  padding-left: 20px;
}
.campaign_condition > li {
  display: flex;
  min-height: 116px;
}
.campaign_condition > li + li {
  margin-top: 10px;
}
.campaign_condition_label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  border-radius: 4px;
  width: 34px;
  font-size: 12px;
  margin-right: 20px;
}
.campaign_condition_label .fb {
  font-size: 28px;
}
.campaign_condition_label.bg_gray {
  background-color: #d9d9d9;
  color: var(--fontColor);
}
.campaign_condition_label.bg_red {
  background: var(--redColor);
  color: var(--whiteColor);
}
.campaign_condition_label.wide {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin-right: 0;
  margin-bottom: 8px;
  width: 100%;
}
.campaign_condition_txt {
  width: calc(100% - (34px + 20px));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.campaign_condition_txt > p {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
}
.campaign_condition_txt.wide {
  width: 100%;
}
.campaign_condition_txt.wide > p {
  margin-bottom: 10px;
}
.campaign_condition_txt.wide img {
  max-width: 320px;
}
.campaign_condition .note {
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .sec04 .sec_inner {
    width: 100%;
  }
  .campaign {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  }
  .campaign > div{
    padding: 10px;
  }
  .campaign > img{
    width: 100%;
    margin-bottom: 20px;
  }
  .campaign > ul > li {
    font-size: 12px;
  }
  .campaign_list_item {
    padding: 0;
  }
  .campaign_list_item_bnr {
    width: 100%;
  }
  .campaign_condition {
    width: 100%;
    padding: 10px;
  }
  .campaign_condition > li {
    min-height: 70px;
  }
  .campaign_condition_label {
    margin-right: 10px;
  }
  .campaign_condition_txt {
    padding: 8px 0;
  }
  .campaign_condition_txt.wide {
    padding: 0;
  }
  .campaign_condition_txt.wide img {
    margin: auto;
    width: 300px;
    max-width: 100%;
  }
  .campaign_condition_txt > p {
    font-size: 14px;
  }
  .campaign_list_item_bnr .campaign_condition_label.wide {
    font-size: 14px;
  }
  .campaign > ul {
    width: 100%;
  }
  .campaign_list_item > p {
    font-size: 12px;
  }
}

/* modal */
.modal_btn_area {
  margin: 0 auto;
  padding-top: 20px;
  width: 100%;
}
.modal_btn {
  width: 100%;
  background-color: #d9d9d9;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 50px;
  border: solid 1px #454545;
}
.modal_btn::before {
  content: "";
  background-image: url(../images/icon_arrow03.png);
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  right: 15px;
  display: block;
  width: 28px;
  height: 28px;
  top: 50%;
  transform: translateY(-50%);
}
.modal_btn_text {
  font-size: 16px;
  font-weight: 600;
}
.modal {
  width: 100%;
  height: 100%;
  display: none;
}
.modal_item {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 90%;
  max-width: 90vw;
  border-radius: 10px;
  padding: 4vw 5vw;
  height: min-content;
  max-height: 80vh;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: clip;
  background-color: var(--whiteColor);
}
.modal_close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
  background-image: url(/assets/images/icon-cross.png);
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}
.modal_item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.modal_content {
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
  font-size: 12px;
  line-height: 1.2;
  height: 400px;
  overflow-y: scroll;
  padding: 0 10px;
}
.modal_content p {
  font-size: 12px;
  line-height: 1.2;
}
.modal_content dt {
  margin-top: 10px;
}
.modal_content dd {
  margin-bottom: 10px;
}
.modal_content img {
  margin-top: 5px;
  display: block;
  max-width: 400px;
}
.modal table {
  border-collapse: collapse;
  border-left: solid 1px #a6a6a6;
  border-top: solid 1px #a6a6a6;
  font-weight: 400;
  margin-top: 10px;
}
.modal table th {
  background-color: #e8e8e8;
  text-align: center;
  border-right: solid 1px #a6a6a6;
  border-bottom: solid 1px #a6a6a6;
  width: 25%;
  padding: 10px;
  font-weight: 400;
  vertical-align: top;
}
.modal table td {
  font-size: 12px;
  border-right: solid 1px #a6a6a6;
  border-bottom: solid 1px #a6a6a6;
  padding: 10px;
}

@media screen and (max-width: 767px) {
  .modal_btn_area {
    padding: 10px;
  }
  .modal_btn {
    padding: 10px 30px 10px 10px;
  }
  .modal_btn::before {
    right: 8px;
    width: 16px;
    height: 16px;
  }
  .modal_btn_text {
    font-size: 12px;
  }
  .modal_content {
    padding: 0 3vw;
  }
  .modal_content p {
    font-size: 12px;
  }
  .modal table th {
    font-size: 12px;
    width: 30%;
    padding: 4px;
  }
  .modal table td {
    font-size: 12px;
    padding: 4px;
  }
  .modal_close {
    top: 14px;
    right: 14px;
    width: 20px;
    height: 20px;
  }
  .modal_item {
    width: 92%;
    max-width: 92vw;
    padding: 6.4vw;
    max-height: 80vh;
  }
}

/* half-modal */
.modalLock {
  position: fixed;
  width: 100%;
}
.half-modal-bg-cp {
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.24);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
}
.half-modal-main-cp._slideUp {
  opacity: 1;
  transform: translateY(0);
}
.half-modal-main-cp._slideDown {
  opacity: 0;
  transform: translateY(100%);
}
.half-modal_main iframe {
  width: 100%;
  height: calc(100% - 50px);
  border: none;
}
.half_modal_bnr {
	display: flex;
	justify-content: center;
}
.half-modal-banner-img {
	width: 650px;
	border-radius: 8px;
}
.half-modal-banner-img:hover {
	opacity: 0.8;
	cursor: pointer;
}
.half-modal-btn-cp{
  margin: auto;
  display: block;
}
@media (max-width: 767px) {
  .half-modal-btn-cp{
    background-color:##EBEAE6;
  }
}
.half-modal-main-cp {
  right: 0;
  bottom: 0;
  left: 0;
  width: 700px;
  height: calc(100vh - 32px);
  margin: auto;
  background: #F0EEEC;
  border-radius: 24px 24px 0 0;
  position: fixed;
  opacity: 0;
  overflow: hidden;
  transform: translateY(100%);
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}
.half-modal-header-area h2 {
  font-weight: 600;
  font-size: 18px;
  line-height: 132%;
  padding: 17.5px 0;
  text-align: center;
}
.half-modal-content-area {
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  margin-bottom: 32px;
}
.half-modal-content {
    padding: 0 24px calc(140px + env(safe-area-inset-bottom));
}
.half-modal-content a {
	color: #CC0000!important;
	text-decoration: none!important;
}
.half-modal-content h3 {
    margin-top: 24px;
    color: #3D3D3D;
    font-weight: 600;
    font-size: 18px;
    line-height: 132%;
}
.half-modal-content .note01 {
	margin-top: 8px;
	font-weight: 300;
    font-size: 12px;
    line-height: 148%;
}
.half-modal-content .note02 {
	margin-top: 8px;
	font-weight: 300;
    font-size: 14px;
    line-height: 148%;
	padding-left: 1em;
    text-indent: -1em;
}
.campaign_detail {
	margin-top: 24px;
}
.campaign_detail_item {
	margin-top: 24px;
}
.campaign_detail_item:first-of-type {
	margin-top: 16px;
}
.campaign_detail h4 {
	color: #3D3D3D;
    font-weight: 600;
    font-size: 17px;
    line-height: 132%;
}
.campaign_detail h5 {
	color: #3D3D3D;
    font-weight: 600;
    font-size: 16px;
    line-height: 132%;
}
.campaign_detail_text {
	font-weight: 300;
    font-size: 16px;
    line-height: 148%;
	margin-top: 8px;
}
.campaign_detail_item .image_container {
	position: relative;
    width: 500px;
    margin: 10px auto;
}
.campaign_detail_item .image_container_white {
    background-color: #FFFFFF;
    border-radius: 12px;
    opacity: 1;
    margin-top: 8px;
    padding: 16px 12px;
}
.image_container_white p {
	font-weight: 600;
	font-size: 18px;
    line-height: 132%;
    margin: 12px 0;
    text-align: center;
}
.image_container_white .not-entry {
	width: 130px;
    height: 29px;
    position: relative;
    margin: 0 auto;
}
.half-modal-btn-close-fix-cp {
  color: #4D4639;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  border-radius: 50%;
  height: 28px;
  margin: 12px 0 0 0;
  position: absolute;
  top: 2px;
  right: 0;
  width: 80px;
  z-index: 82;
}
.half-modal-btn-close-fix-cp:before,
.half-modal-btn-close-fix-cp:after {
  border-radius: 25px;
  content: "";
  height: 20px;
  left: 50%;
  position: absolute;
  top: 54%;
  width: 3px;
  background: #4D4639;
}
.half-modal-btn-close-fix-cp:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.half-modal-btn-close-fix-cp:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 767px) {
	.half_modal_bnr {
		padding: 0 3vw;
	}
	.half-modal-banner-img {
		width: 100%;
		border-radius: 8px;
	}
	.half-modal-main-cp {
		right: 0;
		width: 100%;
		height: calc(100vh - 32px);
		bottom: 0;
		background: #F0EEEC;
		border-radius: 24px 24px 0 0;
		position: fixed;
		opacity: 0;
		overflow: hidden;
		transform: translateY(100%);
		transition: transform 0.5s ease-out, opacity 0.5s ease-out;
		max-height: 100%;
	}
	.half-modal-content {
		padding: 0 24px calc(100px + env(safe-area-inset-bottom));
	}
	.campaign_detail_item .image_container {
		position: relative;
		width: 100%;
		margin: 10px auto;
	}
}
/* 対応ブラウザ動的高さに上書き */
@supports (height: 100dvh) {
  @media (max-width: 767px) {
    .half-modal-main-cp {
      height: calc(100dvh - 32px);
    }
  }
}

/*----------------------------------*/
/* footer
/*----------------------------------*/
.footer .copy {
  text-align: center;
  background-color: rgba(247, 245, 243, 0.94);
  padding: 40px 0;
}
.footer .notes p,
.footer .notes ul.dot li {
    font-weight: normal;
	color: #454545;
}
@media (max-width: 767px) {
  .footer .copy {
    padding: 8.52878vw 0;
  }
}
.footer .copy p {
  font-size: 12px;
}
@media (max-width: 767px) {
  .footer .copy p {
    font-size: 3.2vw;
  }
}

/*----------------------------------*/
/* float
/*----------------------------------*/
.float {
	height: 119px;
	background: rgba(247, 245, 243, 0.94);
}
.float-area {
	bottom: 0;
	background: rgba(247, 245, 243, 0.94);
	padding: 12px 28px;
	position: fixed;
	width: 100%;
	z-index: 100;
}
.float .monex {
	font-size: 12px;
	text-align: center;
}
.red-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 600px;
	height: 52px;
	margin: 0 auto;
	background-color: #CC0000;
	color: #FCFCFC;
	font-size: 20px;
	font-weight: 600;
	border-radius: 100px;
	text-decoration: none;
}
.monex-link {
	text-align: center;
	padding: 16px 20px;
	font-weight: 600;
	font-size: 16px;
}
.monex-link a {
	color: #CC0000;
	text-decoration: none;
}
@media screen and (max-width: 767px) {
	 .red-btn {
		align-items: center;
		display: flex;
		background-color: #CC0000;
		border-radius: 100px;
		color: #FCFCFC;
		font-size: 16px;
		font-weight: 600;
		height: 50px;
		justify-content: center;
		margin: 0 auto;
		width: 75.47vw;
	}
	.monex-link {
		text-align: center;
		padding: 14px 20px;
		font-weight: 600;
		font-size: 14px;
	}
}
/* 最小画面 320px */
@media screen and (max-width: 320px) {
  .line {
    display: block; /* SPを改行する */
  }
}
