@charset "utf-8";

/* common
-------------------------------------------------------*/
#wrapper {
	overflow: hidden;
}
.sp {
	display: none;
}
.tb {
	display: none;
}
.area {
	padding: 70px 20px;
	box-sizing: border-box;
}
.serif {
	font-family: 'Noto Serif JP', serif;
}
.roboto {
	font-family: "Roboto", sans-serif;
}
.inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
}
.red {
	color: #e6001b;
}
.yb {
	background: linear-gradient(transparent 65%, #ffff00 65%);
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	display: inline;
}
.ttl01 {
	font-size: 3.5rem;
	text-align: center;
	font-weight: 500;
	font-family: 'Noto Serif JP', serif;
	margin-bottom: 70px;
}
.ttl01 .size_l {
	font-size: 4.5rem;
}
.ttl_en {
	font-family: "Roboto", sans-serif;
	font-size: 3rem;
	font-weight: 300;
}
.ttl_en.ttl_bar {
	position: relative;
	text-align: center;
	padding-bottom: 30px;
	margin-bottom: 20px;
}
.ttl_en.ttl_bar::after {
	position: absolute;
	display: block;
	content: "";
	background: url(../img/ttl_bar.png)no-repeat center bottom/284px 14px;
	width: 284px;
	height: 14px;
	right: 50%;
	bottom: 0;
	transform: translate(50%,0);
}
.btn01 a {
	display: block;
	background: #e6001b;
	width: 100%;
	max-width: 615px;
	border-radius: 50px;
	height: 95px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	position: relative;
	color: #fff;
	margin: 0 auto;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3);
}
.btn01 a::after {
	position: absolute;
	display: block;
	content: "";
	background: url(../img/btn_arrow.png)no-repeat right center/23px 25px;
	width: 23px;
	height: 25px;
	right: 30px;
	top: 50%;
	transform: translate(0,-50%);
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	.tb {
		display: block;
	}
	.pc {
		display: none;
	}
}
@media screen and (max-width:768px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	.area {
		padding: 30px 20px;
	}
	.inner {
		max-width: 100%;
	}
	.ttl01 {
		font-size: 2rem;
		margin-bottom: 30px;
	}
	.ttl01 .size_l {
		font-size: 2.4rem;
	}
	.ttl_en {
		font-size: 2rem;
	}
	.ttl_en.ttl_bar {
		padding-bottom: 20px;
		margin-bottom: 15px;
	}
	.ttl_en.ttl_bar::after {
		background: url(../img/ttl_bar.png)no-repeat center bottom/198px 9px;
		width: 198px;
		height: 9px;
	}
	.btn01 a {
		height: 70px;
		font-size: 1.6rem;
	}
	.btn01 a::after {
		background: url(../img/btn_arrow.png)no-repeat right center/18px 20px;
		width: 18px;
		height: 20px;
		right: 15px;
	}
}


/* header
-------------------------------------------------------*/
#header.area {
	padding: 20px;
}
#header .inner {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
}
#header .logo img {
	max-width: 171px;
}
.nav_list {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-end;
	font-size: 1.5rem;
}
.nav_list li {
	margin-left: 50px;
}
.nav_list li.btn_book a {
	color: #fff;
	display: block;
	font-size: 1.6rem;
	background: #e6001b;
	padding: 10px 35px;
	border-radius: 50px;
	text-align: center;
}
.nav_list li.btn_book span {
	font-size: 1.2rem;
	color: #e6001b;
	background: #fff;
	padding: 2px 5px;
	border-radius: 3px;
	margin-right: 10px;
	position: relative;
}
.nav_list li.btn_book span::after {
	position: absolute;
	display: block;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 3px solid transparent;
	border-bottom: 3px solid transparent;
	border-left: 5px solid #fff;
	border-right: 0;
	right: -5px;
	top: 50%;
	transform: translate(0,-50%);
}
.hamburger {
	display: none;
}
@media screen and (max-width:900px) {
	.nav_list li {
		margin-left: 30px;
	}
}
@media screen and (max-width:768px) {
	#header.area {
		padding: 15px 20px;
	}
	.hamburger {
		width: 35px;
		height: 24px;
		position: fixed;
		top: 15px;
		right: 10px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		background: none;
		border: none;
		cursor: pointer;
		z-index: 1000;
	}
	.hamburger span {
		display: block;
		width: 100%;
		height: 2px;
		background: #767674;
		border-radius: 2px;
		transition: all 0.3s ease;
	}
	.hamburger.open span:nth-child(1) {
		transform: translateY(10px) rotate(45deg);
	}
	.hamburger.open span:nth-child(2) {
		opacity: 0;
	}
	.hamburger.open span:nth-child(3) {
		transform: translateY(-10px) rotate(-45deg);
	}
	#nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100vh;
		background: rgba(255,255,255,0.9);
		transition: right 0.7s ease;
		padding-top: 60px;
		z-index: 100;
		padding: 55px 30px 0;
	}
	#nav.open {
		right: 0;
	}
	.nav_list {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
		font-size: 1.5rem;
	}
	.nav_list li {
		margin-left: 0;
		font-size: 1.6rem;
		width: 100%;
	}
	.nav_list li:not(:last-child) {
		border-bottom: 1px solid #767674;
		padding-bottom: 20px;
		margin-bottom: 20px;
	}
	.nav_list li a {
		display: block;
		padding: 0 20px;
	}
	.nav_list li.btn_book a {
		font-size: 1.8rem;
		padding: 15px 20px;
	}
	.nav_list li.btn_book span {
		font-size: 1.4rem;
		color: #e6001b;
		background: #fff;
		padding: 2px 5px;
	}
}


/* visual
-------------------------------------------------------*/
#visual {
	padding: 0;
	box-sizing: border-box;
	background: url(../img/visual_bg.png)no-repeat center right/cover;
	max-width: 1600px;
	margin: 0 auto;
	height: 600px;
}
#visual .inner {
	max-width: 1300px;
	padding: 0 20px 50px;
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
	position: relative;
	height: 100%;
}
#visual .txt img {
	max-width: 580px;
}
#visual .tokuten_box {
	text-align: center;
	position: absolute;
	bottom: 50px;
	right: 20px;
}
#visual .tokuten_box .icon {
	background: #2e3e55;
	width: 67px;
	height: 67px;
	min-width: 67px;
	font-size: 1.8rem;
	top: -45px;
}
#visual .tokuten_box .img {
	text-align: center;
}
#visual .tokuten_box .img img {
  max-width: 410px;
  margin-top: -15px;
}
#visual .tokuten_box .ttl_mid {
	font-size: 1.4rem;
	margin-bottom: 10px;
}
#visual .tokuten_box .btn01 a {
	font-size: 1.8rem;
	width: 100%;
	max-width: 375px;
	height: 58px;
}
#visual .tokuten_box .caution {
	font-size: 1.2rem;
	margin-top: 10px;
}
@media screen and (min-width:1080px) {
	#visual .txt {
		width: 50%;
	}
}
@media screen and (min-width:768px) {
	#visual .tokuten_box {
		padding: 0 20px 15px;
		bottom: 30px;
	}
	#visual .tokuten_box div {
		display: flex;
		flex-flow: row nowrap;
		align-items: center;
	}
	#visual .tokuten_box .img {
		margin-bottom: 10px;
		margin-right: 20px;
		text-align: left;
	}
	#visual .tokuten_box .img img {
		max-width: 340px;
		margin-top: -5px;
	}
	#visual .tokuten_box .ttl_mid {
		margin-bottom: 0;
	}
	#visual .tokuten_box .btn01 a {
		font-size: 1.6rem;
		min-width: 300px;
	}
	#visual .btn01 a::after {
		background: url(../img/btn_arrow.png)no-repeat right center/20px 22px;
		width: 20px;
		height: 22px;
		right: 15px;
		top: 50%;
		transform: translate(0,-50%);
	}
	#visual .pc {
		display: block;
	}
}
@media screen and (min-width:768px) and ( max-width:1080px) {
		#visual .txt img {
			width: 75%;
		}
		#visual .tb {
			display: block;
		}

}
@media screen and (max-width:768px) {
	#visual {
		background: url(../img/visual_sp.png)no-repeat center bottom/cover;
		height: auto;
	}
	#visual .inner {
		padding: 0 20px 20px;
		flex-flow: column;
		align-items: center;
		justify-content: space-between;
	}
	#visual .txt {
		margin-bottom: 70px;
		text-align: center;
	}
	#visual .txt img {
		width: 80%;
		margin: 0 auto;
		margin-top: 30px;
	}
	#visual .tokuten_box {
		text-align: center;
		position: inherit;
		bottom: inherit;
		right: inherit;
		background: rgba(255,255,255,0.8);
	}
	#visual .tokuten_box .icon {
		width: 55px;
		height: 55px;
		min-width: 55px;
		font-size: 1.6rem;
	}
	#visual .tokuten_box .img {
		margin-bottom: 10px;
	}
	#visual .tokuten_box .img img {
		margin-top: -5px;
	}
	#visual .tokuten_box .ttl_mid {
		font-size: 1.2rem;
		margin-bottom: 10px;
	}
	#visual .tokuten_box .btn01 a {
		font-size: 1.6rem;
		height: 50px;
	}
	#visual .tokuten_box .caution {
		font-size: 1rem;
	}
}

/* your_story
-------------------------------------------------------*/
#your_story .top_box {
	padding: 100px 20px 70px;
	text-align: center;
	max-width: 840px;
	margin: 0 auto 60px;
	font-weight: 500;
	background: url(../img/bt_yourstory.png)no-repeat center/cover;
}
#your_story .top_box .img {
	margin-bottom: 20px;
	text-align: center;
}
#your_story .top_box .img img {
	max-width: 385px;
}
#your_story .top_box .txt {
	font-size: 1.8rem;
	margin-bottom: 20px;
}
#your_story .top_box .ttl {
	font-size: 3.8rem;
}
.list_story {
	max-width: 1030px;
	margin: 0 0 50px auto;
	color: #333;
	position: relative;
}
.list_story::before {
	position: absolute;
	display: block;
	content: "";
	width: 10px;
	height: 80%;
	background: #cfcfcd;
	top: 20px;
	left: 45px;
}
.list_story li {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
.list_story li .time {
	width: 100px;
	height: 100px;
	min-width: 100px;
	background: #595757;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.7rem;
	font-weight: 700;
	border-radius: 50%;
	text-align: center;
	line-height: 1.2;
	position: relative;
	margin-right: 50px;
}
.list_story li .time span {
	position: absolute;
	width: 40px;
	min-width: 40px;
	height: 40px;
	background: #e6001b;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	left: 0;
	top: -5px;
}
.list_story li .txt_box {
	width: 100%;
}
.list_story li:not(:last-child) .txt_box {
	border-bottom: 1px solid #cfcfcd;
	padding-bottom: 40px;
	margin-bottom: 40px;
}
.list_story li .ttl {
	font-size: 2.4rem;
	font-weight: 500;
	margin-bottom: 15px;
	line-height: 1.4;
}
.list_story li .txt {
	font-weight: 300;
}
.list_story li .tag {
	margin-top: 20px;
}
.list_story li .tag span {
	color: #fff;
	background: #595757;
	font-weight: 400;
	font-size: 1.4rem;
	padding: 5px 10px;
	margin-right: 5px;
}
.list_story li .tag span.bg_red {
	background: #e6001b;
}
#your_story .ttl01 {
	margin-bottom: 0;
}
#your_story .ttl01 .size_s {
	display: block;
	font-size: 2.6rem;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
}
@media screen and (max-width:768px) {
	#your_story .top_box {
		padding: 40px 20px;
		margin: 0 auto 30px;
	}
	#your_story .top_box .img {
		margin-bottom: 20px;
		text-align: center;
	}
	#your_story .top_box .img img {
		max-width: 80%;
	}
	#your_story .top_box .txt {
		font-size: 1.6rem;
	}
	#your_story .top_box .ttl {
		font-size: 2.2rem;
	}
	.list_story {
		margin: 0 0 40px;
	}
	.list_story::before {
		width: 5px;
		height: 70%;
		top: 20px;
		left: 33px;
	}
	.list_story li .time {
		width: 70px;
		height: 70px;
		min-width: 70px;
		font-size: 1.2rem;
		margin-right: 20px;
	}
	.list_story li .time span {
		width: 20px;
		min-width: 20px;
		height: 20px;
		top: -3px;
	}
	.list_story li:not(:last-child) .txt_box {
		border-bottom: 1px solid #cfcfcd;
		padding-bottom: 30px;
		margin-bottom: 30px;
	}
	.list_story li .ttl {
		font-size: 1.8rem;
	}
	.list_story li .tag {
		margin-top: 5px;
	}
	.list_story li .tag span {
		font-size: 1.2rem;
		padding: 5px 10px;
		margin-right: 5px;
		display: inline-block;
		margin-top: 5px;
	}
	#your_story .ttl01 .size_s {
		font-size: 1.6rem;
		margin-bottom: 5px;
	}

}


/* turning_point
-------------------------------------------------------*/
#turning_point {
	background: #2e3e55;
	position: relative;
	color: #fff;
}
#turning_point .inner {
	text-align: center;
}
#turning_point::before {
	position: absolute;
	display: block;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 42px solid transparent;
	border-left: 42px solid transparent;
	border-top: 33px solid #fff;
	border-bottom: 0;
	top: 0;
	right: 50%;
	transform: translate(50%,0);
}
#turning_point .ttl_en {
	margin-bottom: 20px;
}
#turning_point .ttl_en span {
	font-size: 1.6rem;
	margin-left: 30px;
}
#turning_point .ttl01 {
	text-align: center;
	font-size: 3rem;
	margin-bottom: 30px;
}
#turning_point .ttl01 .size_l {
	font-size: 4rem;
}
#turning_point .top_txt {
	font-weight: 300;
	margin-bottom: 50px;
}
.list_point {
	max-width: 1040px;
	margin: 0 auto;
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 50px;
}
.list_point li {
	width: calc((100% - 100px)/2);
}
.list_point li .img {
	margin-bottom: 20px;
}
.list_point li .img img {
	max-width: 145px;
}
.list_point li .ttl {
	margin-bottom: 20px;
	font-weight: 700;
	font-size: 2.2rem;
}
.list_point li .txt {
	font-weight: 300;
	text-align: left;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	.list_point {
		gap: 30px;
	}
	.list_point li {
		width: calc((100% - 60px)/2);
	}
	.list_point li .ttl {
		font-size: 2rem;
	}
}
@media screen and (max-width:768px) {
	#turning_point.area {
		padding: 50px 20px 30px;
	}
	#turning_point .ttl_en span {
		font-size: 1.4rem;
		margin-left: 20px;
	}
	#turning_point .ttl01 {
		font-size: 2rem;
	}
	#turning_point .ttl01 .size_l {
		font-size: 3rem;
	}
	.list_point {
		flex-flow: column;
		align-items: center;
		justify-content: center;
		gap: 30px;
	}
	.list_point li {
		width: 100%;
	}
	.list_point li .img {
		margin-bottom: 15px;
	}
	.list_point li .img img {
		max-width: 40%;
	}
	.list_point li .ttl {
		margin-bottom: 15px;
		font-size: 2rem;
	}
}

/* lisfestyle
-------------------------------------------------------*/
#lifestyle {
	background: #f6f6f4;
}
#lifestyle .ttl_en.ttl_bar::after {
  background: url(../img/ttl_bar_gray.png)no-repeat center bottom/284px 14px;
}
#lifestyle .ttl_en span {
	display: block;
	font-size: 1.6rem;
	font-weight: 300;
}
.list_lifestyle {
	display: flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: flex-start;
	gap: 80px;
}
.list_lifestyle li {
	width: calc((100% - 80px)/2);
	background: #fff;
	border-radius: 5px;
	padding: 30px;
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
}
.list_lifestyle li.row {
	width: 100%;
}
.list_lifestyle li .img {
	margin-bottom: 15px;
	position: relative;
}
.list_lifestyle li .img span {
	color: #fff;
	position: absolute;
	background: rgba(0,0,0,0.5);
	width: 100%;
	font-weight: 300;
	padding: 5px 10px;
	left: 0;
	bottom: 0;
}
.list_lifestyle li .tag {
	margin-bottom: 15px;
	color: #fff;
	font-weight: 700;
	font-family: "Roboto", sans-serif;
	padding: 5px 10px;
	display: inline-block;
	margin-bottom: 15px;
}
.list_lifestyle li .tag.color01 {
	background: #595757;
}
.list_lifestyle li .tag.color02 {
	background: #a39582;
}
.list_lifestyle li .tag.color03 {
	background: #939b9d;
}
.list_lifestyle li .tag.color04 {
	background: #7bc394;
}
.list_lifestyle li .tag.color05 {
	background: #a583b9;
}
.list_lifestyle li .ttl {
	font-weight: 700;
	font-size: 2.2rem;
	margin-bottom: 15px;
}
.list_lifestyle li .txt {
	font-weight: 300;
}
.list_lifestyle li.row {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
}
.list_lifestyle li.row .img {
	margin-bottom: 0;
	margin-right: 30px;
	width: 60%;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	.list_lifestyle {
		gap: 30px;
	}
	.list_lifestyle li {
		width: calc((100% - 30px)/2);
	}
}
@media screen and (max-width:768px) {
	#lifestyle .ttl_en.ttl_bar::after {
		background: url(../img/ttl_bar_gray.png)no-repeat center bottom/198px 9px;
		width: 198px;
		height: 9px;
	}
	#lifestyle .ttl_en span {
		font-size: 1.4rem;
	}
	.list_lifestyle {
		flex-flow: column;
		align-items: center;
		justify-content: center;
		gap: 30px;
	}
	.list_lifestyle li {
		width: 100%;
		padding: 20px;
	}
	.list_lifestyle li .img {
		margin-bottom: 15px;
		position: relative;
	}
	.list_lifestyle li .tag {
		margin-bottom: 10px;
		font-size: 1.2rem;
	}
	.list_lifestyle li .ttl {
		font-size: 2rem;
		margin-bottom: 15px;
	}
	.list_lifestyle li .txt {
		font-weight: 300;
	}
	.list_lifestyle li.row {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
	.list_lifestyle li.row .img {
		margin-bottom: 15px;
		margin-right: 0;
		width: 100%;
	}
}

/* why_universal_home
-------------------------------------------------------*/
#why_universal_home .box {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
}
#why_universal_home .ttl01 {
	margin-bottom: 30px;
}
#why_universal_home .sub_ttl {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 500;
	margin-bottom: 50px;
}
#why_universal_home .img {
	width: 45%;
}
#why_universal_home .list_wuh {
	width: 50%;
}
.list_wuh {
	margin-bottom: 50px;
}
.list_wuh li:not(:last-child) {
	margin-bottom: 30px;
}
.list_wuh li {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
.list_wuh li .num {
	width: 65px;
	height: 65px;
	min-width: 65px;
	background: #333333;
	color: #fff;
	font-size: 3rem;
	font-weight: 300;
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	position: relative;
	line-height: 1;
}
.list_wuh li .num::after {
	position: absolute;
	display: block;
	content: "";
	background: url(../img/icon_triangle.png)no-repeat right bottom/9px 11px;
	width: 9px;
	height: 11px;
	right: 7px;
	bottom: 0;
}
.list_wuh li dt {
	font-size: 2.2rem;
	font-weight: 700;
}
.list_wuh li dd {
	font-weight: 300;
	margin-top: 15px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	.list_wuh li dt {
		font-size: 2rem;
	}
}
@media screen and (max-width:768px) {
	#why_universal_home .sub_ttl {
		font-size: 1.6rem;
		margin-bottom: 30px;
	}
	#why_universal_home .box {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#why_universal_home .img {
		width: 100%;
		margin-bottom: 20px;
	}
	#why_universal_home .list_wuh {
		width: 100%;
	}
	.list_wuh {
		margin-bottom: 30px;
	}
	.list_wuh li:not(:last-child) {
		margin-bottom: 20px;
	}
	.list_wuh li {
		display: flex;
		flex-flow: row nowrap;
		align-items: flex-start;
		justify-content: flex-start;
	}
	.list_wuh li .num {
		width: 50px;
		height: 50px;
		min-width: 50px;
		font-size: 2.4rem;
	}
	.list_wuh li dt {
		font-size: 1.8rem;
		line-height: 1.5;
	}
	.list_wuh li dd {
		margin-top: 10px;
	}
}

/* achievement
-------------------------------------------------------*/
#achievement {
	background: #d7c073;
	
	max-width: 1200px;
	border-radius: 10px;
	margin: 0 auto;
	margin-bottom: 100px;
	padding-bottom: 30px;
}
.list_achievement {
	display: flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: space-around;
	gap: 30px;
	max-width: 890px;
	margin: 0 auto 30px;
}
.list_achievement li {
	width: calc((100% - 90px) / 3);
	background: #fff;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
	border-radius: 20px;
	padding: 20px 10px;
}
.list_achievement li:last-child {
	width: 100%;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
}
.list_achievement li:last-child .in {
	margin: 0 7% 0 2%;
}
.list_achievement li .ttl {
	font-size: 2.2rem;
	text-align: center;
	font-weight: 700;
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 15px;
}
.list_achievement li .ttl::after {
	position: absolute;
	display: block;
	content: "";
	width: 40px;
	height: 2px;
	background: #ffc910;
	right: 50%;
	transform: translate(50%,0);
	bottom: 0;
}
.list_achievement li .ttl .roboto {
	font-size: 3.5rem;
}
.list_achievement li .txt {
	text-align: center;
	font-weight: 300;
}
.list_achievement li .txt span {
	font-size: 1rem;
	vertical-align: top;
}
.list_achievement li .deco {
	position: relative;
}
.list_achievement li .deco::before,.list_achievement li .deco::after {
	position: absolute;
	display: block;
	content: "";
	width: 36px;
	height: 46px;
	top: -8px;
}
.list_achievement li .deco::before {
	background: url(../img/icon_l.png)no-repeat left center/36px 46px;
	left: -40px;
}
.list_achievement li .deco::after  {
	background: url(../img/icon_r.png)no-repeat right center/36px 46px;
	right: -40px;
}
.list_achievement li .logo img {
	max-width: 461px;
}
#achievement .caution {
	text-align: right;
	font-size: 1.2rem;
	font-weight: 300;
	color: #fff;
	max-width: 890px;
	margin: 0 auto;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	.list_achievement {
		gap: 20px;
	}
	.list_achievement li {
		width: calc((100% - 40px) / 3);
	}
	.list_achievement li .ttl {
		font-size: 2rem;
	}
	.list_achievement li .ttl .roboto {
		font-size: 3rem;
	}
	.list_achievement li .txt {
		font-size: 1.4rem;
	}
	.list_achievement li .deco::before {
		background: url(../img/icon_l.png)no-repeat left center/25px 32px;
		left: -20px;
	}
	.list_achievement li .deco::after {
		background: url(../img/icon_r.png)no-repeat right center/25px 32px;
		right: -20px;
	}
}
@media screen and (max-width:768px) {
	#achievement {
		margin-bottom: 50px;
	}
	.list_achievement {
		flex-flow: column;
		align-items: center;
		justify-content: center;
		gap: 20px;
		margin-bottom: 20px;
	}
	.list_achievement li {
		width: 100%;
		padding: 10px;
	}
	.list_achievement li:last-child {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	.list_achievement li:last-child .in {
		margin: 0;
	}
	.list_achievement li .ttl {
		font-size: 2rem;
		margin-bottom: 15px;
		padding-bottom: 10px;
	}
	.list_achievement li .ttl::after {
		width: 30px;
	}
	.list_achievement li .ttl .roboto {
		font-size: 3.2rem;
	}
	.list_achievement li .deco::before,.list_achievement li .deco::after {
		width: 25px;
		height: 32px;
		top: -2px;
	}
	.list_achievement li .deco::before {
		background: url(../img/icon_l.png)no-repeat left center/25px 32px;
		left: -40px;
	}
	.list_achievement li .deco::after  {
		background: url(../img/icon_r.png)no-repeat right center/36px 32px;
		right: -40px;
	}
	.list_achievement li .logo {
		margin-top: 10px;
		text-align: center;
	}
	.list_achievement li .logo img {
		max-width: 80%;
	}
	#achievement .caution {
		text-align: right;
		font-size: 1rem;
		font-weight: 300;
	}
}

/* standard_features
-------------------------------------------------------*/
#standard_features {
	border-top: 5px solid #2e3e55;
}
#standard_features .ttl_en.ttl_bar::after {
	background: url(../img/ttl_bar.png)no-repeat center bottom/284px 14px;
}
.list_features {
	display: flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: space-between;
	gap: 80px;
	margin-top: 100px;
}
.list_features li {
	width: calc((100% - 80px) / 2);
	background: #fff;
	padding: 20px;
	text-align: center;
	position: relative;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
}
.list_features li .num {
	text-align: center;
	font-size: 4rem;
	font-weight: 700;
	background: #ffc910;
	width: 80px;
	min-width: 80px;
	height: 80px;
	margin-bottom: 30px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: -40px;
	right: 50%;
	transform: translate(50%,0);
}
.list_features li img {
	margin-bottom: 20px;
}
.list_features li .ttl {
	font-weight: 700;
	font-size: 2.2rem;
}
.list_features li .sub_ttl {
	font-size: 700;
	font-size: 1.8rem;
	padding-left: 55px;
	position: relative;
	margin: 20px 0;
	font-weight: 700;
	text-align: left;
}
.list_features li .sub_ttl::before {
	position: absolute;
	display: block;
	content: "";
	width: 45px;
	height: 1px;
	background: #333333;
	left: 0;
	top: 15px;
}
.list_features li .txt {
	font-weight: 300;
	margin-bottom: 40px;
	text-align: left;
}
.list_features li .com {
	background: #f4f1e6;
	font-weight: 700;
	font-size: 1.8rem;
	padding: 30px 20px;
	position: relative;
}
.list_features li .com::before, .list_features li .com::after {
	position: absolute;
	display: block;
	content: "";
	width: 22px;
	height: 18px;
}
.list_features li .com::before {
	background: url(../img/icon_db01.png)no-repeat left top/22px 18px;
	left: 20px;
	top: -10px;
}
.list_features li .com::after {
	background: url(../img/icon_db02.png)no-repeat right bottom/22px 18px;
	right: 20px;
	bottom: -10px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {

}
@media screen and (max-width:768px) {
	#standard_features .ttl_en.ttl_bar::after {
		background: url(../img/ttl_bar_color.png)no-repeat center bottom/198px 9px;
	}
	.list_features {
		flex-flow: column;
		align-items: center;
		justify-content: center;
		gap: 50px;
		margin-top: 50px;
	}
	.list_features li {
		width: 100%;
	}
	.list_features li .num {
		font-size: 3rem;
		width: 70px;
		min-width: 70px;
		height: 70px;
		top: -30px;
	}
	.list_features li .ttl {
		font-size: 2rem;
	}
	.list_features li .sub_ttl {
		font-size: 1.6rem;
		padding-left: 40px;
	}
	.list_features li .sub_ttl::before {
		width: 30px;
		top: 14px;
	}
	.list_features li .txt {
		margin-bottom: 30px;
	}
	.list_features li .com {
		font-size: 1.6rem;
		padding: 20px;
	}
	.list_features li .com::before, .list_features li .com::after {
		width: 15px;
		height: 12px;
	}
	.list_features li .com::before {
		background: url(../img/icon_db01.png)no-repeat left top/15px 12px;
		left: 20px;
		top: -5px;
	}
	.list_features li .com::after {
		background: url(../img/icon_db02.png)no-repeat right bottom/15px 12px;
		right: 20px;
		bottom: -5px;
	}
}

/* loan
-------------------------------------------------------*/
#loan .icon_caution {
	text-align: center;
	margin-bottom: 20px;
}
#loan .icon_caution img {
	max-width: 60px;
}
#loan .txt {
	text-align: center;
	font-size: 2rem;
	font-weight: 300;
	margin-bottom: 30px;
}
#loan .table_box {
	max-width: 900px;
	margin: 0 auto 50px;
}
#loan .table_box table {
	width: 100%;
	border: 1px solid #d6d6d6;
	text-align: center;
	margin-bottom: 20px;
}
#loan .table_box table tr {
	border-bottom: 1px solid #d6d6d6;
}
#loan .table_box table th {
	border-right: 1px solid #d6d6d6;
	padding: 15px 10px;
	vertical-align: middle;
	width: 33.3%;
}
#loan .table_box table td {
	border-right: 1px solid #d6d6d6;
	padding: 15px 10px;
	vertical-align: middle;
	width: 33.3%;
}
#loan .table_box table .col01 {
	background: #f1f1f1;
}
#loan .table_box table .col02 {
	background: #5a5959;
	color: #fff;
}
#loan .table_box table .col03 {
	background: #2e3e55;
	color: #fff;
}
#loan .table_box table .col04 {
	background: #fcfaf1;
	color: #2e3e55;
}
#loan .table_box .caution_txt {
	text-align: right;
	font-size: 1.2rem;
	font-weight: 300;
}
#loan .btn_txt {
	text-align: center;
	font-size: 2rem;
	font-weight: 300;
	margin-bottom: 20px;
}
#loan .btn_txt .red {
	font-weight: 700;
}
#loan .btn01 {
	position: relative;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	.list_features {
		gap: 90px 30px;
	}
	.list_features li {
		width: calc((100% - 30px) / 2);
	}
	.list_features li .com {
		font-size: 1.6rem;
		padding: 15px;
	}
}
@media screen and (max-width:768px) {
	#loan.area {
		padding: 30px 20px 60px;
	}
	#loan .icon_caution {
		margin-bottom: 10px;
	}
	#loan .icon_caution img {
		max-width: 40px;
	}
	#loan .txt {
		font-size: 1.6rem;
	}
	#loan .table_box {
		margin: 0 auto 30px;
	}
	#loan .table_box table {
		font-size: 1.2rem;
		line-height: 1.4;
		margin-bottom: 10px;
	}
	#loan .table_box table th {
		padding: 10px 5px;
		width: 33.3%;
	}
	#loan .table_box table td {
		padding: 10px 5px;
		width: 33.3%;
	}
	#loan .table_box .caution_txt {
		font-size: 1rem;
	}
	#loan .btn_txt {
		font-size: 1.6rem;
	}
}

/* plans
-------------------------------------------------------*/
#plans {
	background: #f4f1e6;
}
#plans .ttl_en.ttl_bar::after {
	background: url(../img/ttl_bar_color.png)no-repeat center bottom/284px 14px;
}
.list_plans {
	display: flex;
	flex-flow: row nowrap;
	align-items: stretch;
	justify-content: space-between;
	gap: 50px;
	margin-bottom: 50px;
}
.list_plans>li {
	width: calc((100% - 100px) / 3);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
	border-radius: 5px;
	background: #fff;
	position: relative;
}
.list_plans>li.recommend::after {
	position: absolute;
	display: block;
	content: "";
	background: url(../img/icon_recommend1.png)no-repeat right top/115px 115px;
	width: 115px;
	height: 115px;
	right: -30px;
	top: -50px;
}
.list_plans>li.recommend02::after{
	background: url(../img/icon_recommend2.png)no-repeat right top/115px 115px;
	width: 115px;
	height: 115px;

}
.list_plans>li.recommend03::after{
	background: url(../img/icon_recommend3.png)no-repeat right top/115px 115px;
	width: 115px;
	height: 115px;

}
.list_plans>li .img {
	position: relative;
}
.list_plans>li .img span {
	color: #fff;
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	font-weight: 500;
	background: rgba(0,0,0,0.3);
	padding: 10px;
}
.list_plans .txt_box {
	padding: 20px;
}
.list_plans .ttl {
	text-align: center;
	margin-bottom: 5px;
	font-size: 2.8rem;
	font-weight: 500;
}
.list_plans .ttl_s {
	text-align: center;
	margin-bottom: 20px;
	color: #eb9103;
}
.list_plans dl {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
}
.list_plans dl:not(:last-child) {
	margin-bottom: 10px;
}
.list_plans dl dt {
	width: 48%;
}
.list_plans dl dd {
	width: 48%;
	font-size: 1.3rem;
}
.list_plans dl span {
	background: #f4f1e6;
	font-size: 1.2rem;
	padding: 2px 5px;
	display: inline-block;
	margin-bottom: 5px;
}
#plans .mid_ttl {
	text-align: center;
	border: 3px solid #ffc910;
	background: #fff;
	padding: 20px;
	font-size: 2rem;
	margin-bottom: 30px;
}
#plans .mid_ttl span {
	font-weight: 700;
}
#plans .caution {
	font-size: 1.2rem;
	font-weight: 300;
	text-align: right;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	.list_plans {
		gap: 20px;
	}
	.list_plans > li {
		width: calc((100% - 40px) / 3);
	}
	.list_plans > li.recommend::after {
		background-size: 100%;
		width: 70px;
		height: 70px;
		right: -10px;
		top: -20px;
	}
	.list_plans .ttl {
		font-size: 2.2rem;
	}
	.list_plans > li .img span {
		font-size: 1.4rem;
	}
}
@media screen and (max-width:768px) {
	#plans .ttl_en.ttl_bar::after {
		background: url(../img/ttl_bar_color.png)no-repeat center bottom/198px 9px;
	}
	.list_plans {
		flex-flow: column;
		align-items: center;
		justify-content: center;
		gap: 30px;
		margin-bottom: 20px;
	}
	.list_plans>li {
		width: 100%;
	}
	.list_plans>li.recommend::after {
		background-size: 100%;
		width: 100px;
		height: 100px;
		right: -10px;
		top: -10px;
	}
	.list_plans .txt_box {
		padding: 20px;
	}
	.list_plans .ttl {
		font-size: 2.4rem;
	}
	#plans .mid_ttl {
		padding: 20px;
		font-size: 1.4rem;
		margin-bottom: 20px;
	}
	#plans .caution {
		font-size: 1rem;
	}
}

/* voice
-------------------------------------------------------*/
#voice {
  margin-bottom: 180px;
}
#voice .inner {
	position: relative;
}
#voice .inner::before {
	position: absolute;
	display: block;
	content: "";
	background: url(../img/icon_voice.png)no-repeat left top/307px 114px;
	width: 307px;
	height: 114px;
	left: -10px;
	top: -80px;
}
.list_voice {
	display: flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: space-between;
	gap: 50px 80px;
}
.list_voice>li {
	width: calc((100% - 80px)/2);
	border: 1px solid #767674;
	padding: 20px;
	box-shadow: 0 5px 0 rgba(0,0,0,0.1);
	border-radius: 5px;
}
.list_voice li .top_box {
	margin-bottom: 20px;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
}
.list_voice li .top_box .img {
	margin-right: 20px;
}
.list_voice li .top_box .img img {
	max-width: 109px;
}
.list_voice li .top_box dt {
	font-weight: 700;
	font-size: 2.2rem;
	margin-bottom: 5px;
}
.list_voice li .top_box dd img {
	max-width: 80px;
}
.list_voice li .ttl {
	font-size: 2rem;
	border-bottom: 5px solid #f4f1e6;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.list_voice li .sub_ttl {
	font-weight: 700;
	margin-bottom: 15px;
}
.list_voice li .txt {
	margin-bottom: 20px;
}
.list_voice .list_tag {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: flex-start;
	font-size: 1.4rem;
}
.list_voice .list_tag li {
	color: #fff;
	border-radius: 3px;
	line-height: 1;
	padding: 7px 10px;
	margin-right: 5px;
	background: #888787;
}
/*
.list_voice .list_tag li.col01 {
	background: #a49d82;
}
.list_voice .list_tag li.col02 {
	background: #939b9d;
}
.list_voice .list_tag li.col03 {
	background: #b190b2;
}
.list_voice .list_tag li.col04 {
	background: #a68964;
}
.list_voice .list_tag li.col05 {
	background: #e5931e;
}
.list_voice .list_tag li.col06 {
	background: #7fb2d9;
}
.list_voice .list_tag li.col07 {
	background: #cbb640;
}
.list_voice .list_tag li.col08 {
	background: #95cb65;
}
.list_voice .list_tag li.col09 {
	background: #ba888a;
}
.list_voice .list_tag li.col10 {
	background: #6fa4a7;
}
.list_voice .list_tag li.col11 {
	background: #9f6da0;
}
.list_voice .list_tag li.col12 {
	background: #c7b1cd;
}*/
@media screen and (min-width:768px) and ( max-width:1080px) {
	#voice .inner::before {
		background: url(../img/icon_voice.png)no-repeat left top/153px 57px;
		width:153px;
		height: 57px;
		top: -40px;
	}
	.list_voice {
		gap: 50px 30px;
	}
	.list_voice > li {
		width: calc((100% - 30px)/2);
	}
}
@media screen and (max-width:768px) {
	#voice {
		margin-bottom: 90px;
	}
	#voice .inner::before {
		background: url(../img/icon_voice.png)no-repeat left top/153px 57px;
		width:153px;
		height: 57px;
		top: -55px;
	}
	.list_voice {
		flex-flow: column;
		align-items: center;
		justify-content: center;
		gap: 30px;
	}
	.list_voice>li {
		width: 100%;
	}
	.list_voice li .top_box dt {
		font-size: 2rem;
	}
	.list_voice li .ttl {
		font-size: 1.6rem;
		border-bottom: 3px solid #f4f1e6;
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
	.list_voice li .txt {
		margin-bottom: 20px;
	}
	.list_voice .list_tag {
		font-size: 1.2rem;
	}
}

/* staff
-----------------------------------------------
#staff {
	background: #f4f1e6;
}
#staff.area {
	padding: 70px 20px 180px;
}
#staff .inner {
	position: relative;
}
#staff .inner::before {
	position: absolute;
	display: block;
	content: "";
	background: url(../img/icon_staff.png)no-repeat left top/307px 114px;
	width: 307px;
	height: 114px;
	top: -100px;
}
.list_staff {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 60px;
}
.list_staff li {
	width: calc((100% - 120px) / 3);
	text-align: center;
}
.list_staff li .img {
	position: relative;
	margin-bottom: 20px;
}
.list_staff li .img span {
	position: absolute;
	left: 0;
	bottom: 0;
	background: #333333;
	color: #fff;
	font-weight: 500;
	padding: 7px 10px;
	line-height: 1;
}
.list_staff li .ttl {
	text-align: center;
	font-size: 2.6rem;
	font-weight: 500;
	margin-bottom: 15px;
}
.list_staff li .txt {
	text-align: center;
	font-weight: 300;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	#staff .inner::before {
		background: url(../img/icon_staff.png)no-repeat left top/153px 57px;
		width: 153px;
		height: 57px;
		top: -45px;
	}
	.list_staff li .img span {
		font-size: 1.4rem;
	}
}
@media screen and (max-width:768px) {
	#staff.area {
		padding: 30px 20px 90px;
	}
	#staff .inner::before {
		background: url(../img/icon_staff.png)no-repeat left top/153px 57px;
		width: 153px;
		height: 57px;
		top: -45px;
	}
	.list_staff {
		flex-flow: row wrap;
		align-items: flex-start;
		justify-content: center;
		gap: 20px;
	}
	.list_staff li {
		width: calc((100% - 20px)/2);
	}
	.list_staff li .img {
		margin-bottom: 10px;
	}
	.list_staff li .img span {
		font-size: 1.2rem;
	}
	.list_staff li .ttl {
		font-size: 2rem;
		margin-bottom: 10px;
	}
}
--------*/

/* campaign
-------------------------------------------------------*/
#campaign {
	background: url(../img/btm_bg.png)no-repeat center/cover;
	text-align: center;
}
#campaign .monitor {
	background: #fff;
	border-radius: 20px;
	max-width: 860px;
	margin: 0 auto;
	padding: 30px;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
	margin-top: -180px;
	margin-bottom: 100px;
}
#campaign .monitor .icon {
	width: 145px;
	height: 145px;
	min-width: 145px;
	background: #2e3e55;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 5.7rem;
	font-weight: 500;
	border-radius: 100%;
	margin-right: 30px;
}
#campaign .monitor dl {
	text-align: left;
}
#campaign .monitor dt {
	font-size: 3rem;
	font-weight: 500;
	margin-bottom: 15px;
}
#campaign .monitor dd {
	font-size: 2rem;
	font-weight: 300;
}
#campaign .sub_ttl {
	color: #fff;
	text-align: center;
	font-size: 3rem;
	font-weight: 500;
	margin-bottom: 30px;
}
#campaign .sub_ttl span {
	position: relative;
}
#campaign .sub_ttl span::before,#campaign .sub_ttl span::after {
	position: absolute;
	display: block;
	content: "";
	width: 150px;
	height: 1px;
	background: #fff;
	top: 50%;
	transform: translate(0,50%);
}
#campaign .sub_ttl span::before {
	left: -180px;
}
#campaign .sub_ttl span::after {
	right: -180px;
}
#campaign .main_ttl {
	color: #fff;
	font-size: 5rem;
	font-weight: 500;
	margin-bottom: 30px;
}
#campaign .main_ttl .yellow {
	color: #ffff00;
}
#campaign .top_txt {
	text-align: center;
	color: #fff;
	font-size: 2rem;
	font-weight: 300;
	margin-bottom: 130px;
}
.tokuten_box {
	background: #fff;
	border-radius: 10px;
	max-width: 860px;
	margin: 0 auto;
	padding: 0 20px 20px;
	position: relative;
}
.tokuten_box .icon {
	font-size: 3rem;
	width: 110px;
	height: 110px;
	min-width: 110px;
	background: #ffc910;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1.2;
	border-radius: 100%;
	position: absolute;
	right: 50%;
	transform: translate(50%,0);
	top: -60px;
}
.tokuten_box .img {
	margin-bottom: 20px;
}
.tokuten_box .img img {
	max-width: 677px;
	margin-top: -15px;
}
.tokuten_box .ttl_mid {
	text-align: center;
	font-size: 2.2rem;
	margin-bottom: 20px;
}
.tokuten_box .caution {
	text-align: center;
	color: #666666;
	font-size: 1.9rem;
	margin-top: 20px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	#campaign .monitor dt {
		font-size: 2.4rem;
	}
	#campaign .monitor dd {
		font-size: 1.8rem;
	}
	#campaign .main_ttl {
		font-size: 3rem;
	}
	#campaign .sub_ttl {
		font-size: 2rem;
		margin-bottom: 20px;
	}
	#campaign .sub_ttl span::before,#campaign .sub_ttl span::after {
		width: 80px;
	}
	#campaign .sub_ttl span::before {
		left: -100px;
	}
	#campaign .sub_ttl span::after {
		right: -100px;
	}

}
@media screen and (max-width:768px) {
	#campaign .monitor {
		padding: 20px;
		flex-flow: column;
		align-items: center;
		justify-content: center;
		margin-top: -90px;
		margin-bottom: 50px;
	}
	#campaign .monitor .icon {
		width: 90px;
		height: 90px;
		min-width: 90px;
		font-size: 3rem;
		margin-bottom: 15px;
		margin-right: 0;
	}
	#campaign .monitor dl {
		text-align: center;
	}
	#campaign .monitor dt {
		font-size: 1.8rem;
		text-align: center;
		margin-bottom: 10px;
	}
	#campaign .monitor dd {
		font-size: 1.4rem;
	}
	#campaign .sub_ttl {
		font-size: 1.6rem;
		margin-bottom: 20px;
	}
	#campaign .sub_ttl span::before,#campaign .sub_ttl span::after {
		width: 50px;
	}
	#campaign .sub_ttl span::before {
		left: -60px;
	}
	#campaign .sub_ttl span::after {
		right: -60px;
	}
	#campaign .main_ttl {
		font-size: 1.6rem;
		margin-bottom: 20px;
	}
	#campaign .top_txt {
		font-size: 1.4rem;
		margin-bottom: 80px;
	}
	.tokuten_box .icon {
		font-size: 2rem;
		width: 80px;
		height: 80px;
		min-width: 80px;
		top: -30px;
	}
	.tokuten_box .img img {
		margin-top: 40px;
	}
	.tokuten_box .ttl_mid {
		font-size: 1.6rem;
	}
	.tokuten_box .caution {
		font-size: 1.2rem;
		margin-top: 10px;
	}
}

/* footer
-------------------------------------------------------*/
#footer {
	text-align: center;
}
#footer.area {
	padding: 100px 20px;
}
#footer .logo {
    margin: 0 0 40px;
}
#footer .logo img {
	max-width: 171px;
}
#footer .copy {
	font-size: 1.2rem;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	#footer.area {
		padding: 50px 20px;
	}
	#footer .logo {
		margin: 0 0 20px;
	}
}

#campaign .caution_btm {
	color: #fff;
	font-size: 1.2rem;
	font-weight: 300;
	text-align: left;
	max-width: 860px;
	margin: 20px auto 0;
	line-height: 1.8;
}

/* --- プラン価格：完全修正版 --- */

.price_outer_container {
    width: 100%;
    max-width: 1200px;
    margin: 80px auto 60px;
    display: flex;
    justify-content: flex-end; /* PCは右寄せ */
    padding: 0 20px;
}

.price_info_block {
    text-align: right;
    color: #333;
    padding-left: 40px;
    border-left: 1px solid #eee;
}

.price_info_block .size {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.price_info_block .price_flex {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 20px;
    margin-bottom: 15px;
}

.price_info_block .label {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* 金額の塊 */
.price_info_block .price {
    line-height: 1;
    white-space: nowrap;
}

.price_info_block .price_main_wrap {
    display: inline-flex;
    align-items: flex-end;
}

.price_info_block .price .num {
    font-size: 8rem; /* PC特大 */
    letter-spacing: -0.05em;
    margin-right: 5px;
}

.price_info_block .price .unit {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.price_info_block .price .tax {
    font-size: 1.4rem;
    font-family: 'Noto Sans JP', sans-serif;
    margin-left: 5px;
    margin-bottom: 1.5rem;
}

.price_info_block .price_caution {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
}

/* --- レスポンシブ(SP) --- */
@media screen and (max-width: 768px) {
    .price_outer_container {
        justify-content: center; /* SPは中央 */
        margin: 40px auto 30px;
    }
    
    .price_info_block {
        padding-left: 0;
        border-left: none;
        text-align: center; /* SPは中央揃え */
        width: 100%;
    }

    .price_info_block .price_flex {
        display: block; /* 横並び解除 */
        margin-bottom: 10px;
    }

    .price_info_block .label {
        font-size: 1.8rem;
        margin-bottom: 10px;
        display: block;
    }

    /* 金額：スマホでハッキリ見えるサイズに固定 */
    .price_info_block .price .num {
        font-size: 5.5rem; /* スマホでのメインタイトル級サイズ */
    }

    .price_info_block .price .unit {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .price_info_block .price .tax {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .price_info_block .size {
        font-size: 1.6rem;
    }

    .price_info_block .price_caution {
        font-size: 1.1rem;
        display: inline-block;
        text-align: left; /* 注釈だけは左揃えの方が見やすい */
    }
}