
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap');

/* mvArea
----------------------------------------------------------------------------*/

.mvArea {
	width: 100%;
    height: 900px;
    background: url(../img/mv_pc.jpg) no-repeat top center;
	background-size: cover;
	margin-bottom: 80px;
}
.mvArea .mvArea_inner {
	width: 1040px;
	margin: 0 auto;
	position: relative;
}

.mvArea .mvArea_inner .title,
.mvArea .mvArea_inner .sub-title{
	position: absolute;
}

.mvArea .mvArea_inner .title {
	width: 295px;
	height: 745px;
	top: 80px;
	left: 30px;
}
.mvArea .mvArea_inner .sub-title {
	width: 127px;
	height: 385px;
	top: 130px;
	right: 60px;
}


@media screen and (max-width: 768px) {
	.mvArea {
		width: 100%;
		height: auto;
		min-height: 575px;
		background: url(../img/mv_sp.jpg) no-repeat top center;
		background-size: cover;
		margin-bottom: 50px;
	}
	.mvArea .mvArea_inner {
		display: none;
	}
}

@media screen and (max-width: 320px) {
	.mvArea {
		min-height: 460px;
		background-size: contain;
	}
}



/* parts
----------------------------------------------------------------------------*/

a {
	transition: .3s;
}
a:hover {
	cursor: pointer;
	transition: .3s;
}


.linkBlock {
	margin: 50px 0 80px;
}
.linkBlock .linkList {
	width: 1200px;
	margin: 0 auto;
	display: flex;
}
.linkBlock .linkList .linkList_item {
	width: 300px;
	border-right: 1px solid rgba(0,62,109,.4);
}

.linkBlock .linkList .linkList_item:last-child {
	border-right: none;
}

.linkBlock .linkList .linkList_item a {
	display: block;
	padding: 0 30px 55px;
	position: relative;
}

.linkBlock .linkList .linkList_item a:hover {
	opacity: .7;
}

.linkBlock .linkList .linkList_item a::after {
	content: "";
	position: absolute;
	bottom: 20px;
	left: 50%;
	width: 30px;
	height: 30px;
	border-bottom: 2px solid #003e6d;
    border-right: 2px solid #003e6d;
	-webkit-transform: rotate(45deg);
    transform: rotate(45deg);
	margin-left: -15px;
}

.linkBlock .linkList .linkList_item .txt {
	color: #003e6d;
	text-align: center;
	font-size: 14px;
	font-weight: bold;
    line-height: 1.6;
    margin-bottom: 15px;
}


.pcOnly {
	display: block;
}
.spOnly {
	display: none;
}
.sp320-Only {
	display: none;
}

.fixedBtn {
	position: fixed;
    right: 0;
    bottom: 40px;
    z-index: 10;
	animation-duration: 0.5s;
	animation-name: fade-in;
	-moz-animation-duration: 0.5s;
	-moz-animation-name: fade-in;
	-webkit-animation-duration: 0.5s;
	-webkit-animation-name: fade-in;
	animation-fill-mode:forwards;
	-moz-animation-fill-mode:forwards;
	-webkit-animation-fill-mode:forwards;
}
.fixedBtn a {
	width: 450px;
    display: block;
    color: #fff;
    background: rgba(179,41,53,.6);
    font-size: 24px;
    position: relative;
    padding: 18px 60px;
    border-radius: 40px 0 0 40px;
	transform: .3s;
}
.fixedBtn a span {
	display: inline-block;
	vertical-align: middle;
}
.fixedBtn a::before {
	content: "";
	position: absolute;
	top: 50%;
    right: 25px;
    width: 15px;
    height: 15px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: .3s;
    margin-top: -7px;
}
.fixedBtn .icon {
	margin-right: 20px;
}
.fixedBtn a:hover {
	background: rgba(179,41,53,.4);
	transform: .3s;
}
.fixedBtn a:hover::before {
	right: 18px;
}

.fixedBtn.-active {
	animation-duration: 0.5s;
	animation-name: fade-out;
	-moz-animation-duration: 0.5s;
	-moz-animation-name: fade-out;
	-webkit-animation-duration: 0.5s;
	-webkit-animation-name: fade-out;
	animation-fill-mode:forwards;
	-moz-animation-fill-mode:forwards;
	-webkit-animation-fill-mode:forwards;
}

@keyframes fade-in {
  0% {
	visibility: hidden;
	opacity: 0;
  }
  100% {
	visibility: visible;
	opacity: 1;
  }
}
@-moz-keyframes fade-in {
  0% {
	visibility: hidden;
	opacity: 0;
  }
  100% {
	visibility: visible;
	opacity: 1;
  }
}
@-webkit-keyframes fade-in {
  0% {
	visibility: hidden;
	opacity: 0;
  }
  100% {
	visibility: visible;
	opacity: 1;
  }
}

@keyframes fade-out {
  0% {
	visibility: visible;
	opacity: 1;
  }
  100% {
	visibility: hidden;
	opacity: 0;
  }
}
@-moz-keyframes fade-out {
  0% {
	visibility: visible;
	opacity: 1;
  }
  100% {
	visibility: hidden;
	opacity: 0;
  }
}
@-webkit-keyframes fade-out {
  0% {
	visibility: visible;
	opacity: 1;
  }
  100% {
	visibility: hidden;
	opacity: 0;
  }
}



#page_top {
  width: 80px;
  height: 80px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: rgba(0,62,109,.6);
  border-radius: 50%;
  z-index: 100;
}
#page_top a{
  display: block;
  width: 80px;
  height: 80px;
  text-decoration: none;
}







@media screen and (max-width: 768px) {
	
	.linkBlock {
		margin: 30px 0 60px;
	}
	
	.linkBlock .linkList {
		width: auto;
		flex-wrap: wrap;
	}
	
	.linkBlock .linkList .linkList_item {
		width: 50%;
		padding: 0 10px;
		border-right: none;
		position: relative;
	}
	
	.linkBlock .linkList .linkList_item:first-child::after,
	.linkBlock .linkList .linkList_item:nth-child(2)::after,
	.linkBlock .linkList .linkList_item:nth-child(3)::after,
	.linkBlock .linkList .linkList_item:nth-child(4)::after {
		content: "";
		position: absolute;
		background: rgba(0,62,109,.4);
	}
	
	.linkBlock .linkList .linkList_item:first-child::after,
	.linkBlock .linkList .linkList_item:nth-child(4)::after {
		width: 90%;
		height: 1px;
		bottom: 0;
		left: 5%;
	}
	
	.linkBlock .linkList .linkList_item:nth-child(4)::after {
		bottom: inherit;
		top: 0;
	}
	
	.linkBlock .linkList .linkList_item:nth-child(2)::after,
	.linkBlock .linkList .linkList_item:nth-child(3)::after {
		width: 1px;
		height: 95%;
		top: 2%;
		left: 0;
	}
	
	.linkBlock .linkList .linkList_item:nth-child(3)::after {
		left: inherit;
		right: 0;
	}
	
	.linkBlock .linkList .linkList_item:nth-child(2) {
		border-right: none;
	}
	
	
	.linkBlock .linkList .linkList_item a {
		padding: 15px 0 40px;
	}
	
	.linkBlock .linkList .linkList_item a::after {
		bottom: 20px;
		width: 18px;
		height: 18px;
		border-bottom: 2px solid #003e6d;
		margin-left: -9px;
	}

	.linkBlock .linkList .linkList_item .txt {
		font-size: 12px;
		margin-bottom: 10px;
	}
	
	.linkBlock .linkList .linkList_item:nth-child(4) .txt {
		margin: 10px 0 20px;
	}

	.linkBlock .linkBox li {
		float: none;
	}

	.linkBlock .linkBox .link {
		width: 100%;
		max-width: 240px;
		margin: 0 auto;
	}
	.linkBlock .linkBox .linkTxt {
		font-size: 12px;
		padding-top: 5px;
		text-align: center;
	}
	
	.pcOnly {
		display: none;
	}
	.spOnly {
		display: block;
	}
	.sp320-Only {
		display: none;
	}
	
	
	#page_top {
	  width: 50px;
	  height: 50px;
	  right: 20px;
	  bottom: 20px;
	}
	#page_top a{
	  width: 50px;
	  height: 50px;
	}
	
	
	.fixedBtn {
		bottom: 20px;
	}
	.fixedBtn a {
		width: 230px;
		font-size: 13px;
		font-weight: bold;
		padding: 10px 25px;
		transform: .3s;
	}
	.fixedBtn a span {
		display: inline-block;
		vertical-align: middle;
	}
	.fixedBtn a::before {
		right: 12px;
		width: 10px;
		height: 10px;
		margin-top: -5px;
	}
	.fixedBtn .icon {
		margin-right: 10px;
    	width: 43px;
	}

}

@media screen and (max-width: 320px) {
	.sp320-Only {
		display: block;
	}

	.linkBtn a {
		font-size: 14px;
	}
	.anclinkBlock .linkBtn a {
    	font-size: 12px;
	}
	.anclinkBlock .linkBtn a span {
		width: 25px;
		margin-right: 5px;
	}
	
	.fixedBtn a {
		width: 230px;
		font-size: 12px;
		padding: 15px 8px;
	}
	.fixedBtn .icon {
		margin-right: 5px;
		width: 35px;
	}
}

.fDAnime {
    -webkit-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1.5s;
    -ms-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-name: fDAnime;
    -ms-animation-name: fDAnime;
    animation-name: fDAnime;
    visibility: visible !important;
}
@-webkit-keyframes fDAnime {
     0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
    }
     100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}
@keyframes fDAnime {
     0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }
     100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}




/* pointArea
----------------------------------------------------------------------------*/

.pointArea {
	position: relative;
	padding-bottom: 50px;
}
.pointArea::before,
.pointArea::after {
	position: absolute;
	width: 50%;
	height: 100%;
	content: "";
	top: 0;
	z-index: -1;
}
.pointArea::before {
	background: #003e6d;
	left: 0;
}
.pointArea::after {
	background: #b32935;
	right: 0;
}
.pointArea .block {
	padding: 90px 0 70px;
}
.pointArea .breroBox,
.pointArea .sicureBox {
	width: 50%;
	float: left;
}
.pointArea .pic {
	text-align: center;
}
.pointArea .linkArea {
	width: 330px;
	margin: 0 auto;
}
.pointArea .linkArea .linkBtn {
	margin: 15px 0 0;
}
.pointArea .txtBox {
	color: #fff;
	border: 1px solid #fff;
	text-align: center;
	width: 550px;
	margin: 0 auto;
	padding: 10px;
	font-size: 18px;
}


@media screen and (max-width: 768px) {
	.pointArea .block {
		padding: 45px 0 25px;
	}
	.pointArea .linkArea {
		width: auto;
		max-width: 140px;
		margin: 0;
	}
	.pointArea .txtBox {
		width: auto;
		font-size: 13px;
	}
	.pointArea .breroBox .pic {
		margin-left: -20px;
	}
	.pointArea .breroBox .linkArea {
		margin-right: 15px;
	}
	.pointArea .sicureBox .pic {
		margin-right: -20px;
	}
	.pointArea .sicureBox .linkArea {
		margin-left: 15px;
	}
}

@media screen and (max-width: 320px) {
	.pointArea .linkBtn a {
    	font-size: 12px;
	}
	.pointArea .linkBtn a span {
		width: 25px;
		margin-right: 5px;
	}
}



/* sec
----------------------------------------------------------------------------*/

.sec .secInner {
	padding: 80px 0;
}
.title {
	text-align: center;
    margin: 0 0 50px;
    font-size: 42px;
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    line-height: 1.2;
}
.title span {
	font-size: 54px;
	font-weight: 500;
}
.title span.blue {
	color: #003e6d;
}
.title span.red {
	color: #b32935;
}
.-vertical {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-align: left;
	display: inline-block;
}
.sec .sub-title {
	color: #fff;
	font-size: 36px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	text-align: center;
	margin: 0 0 65px;
}
.sec .secBox {
    background: #fff;
	width: 1040px;
    margin: 0 auto;
}

.sec .mainBlock {
	position: relative;
	min-height: 480px;
}
.sec .mainBlock .txtArea {
	position: absolute;
	top: 0;
	left: 0;
	width: 905px;
	height: 480px;
	color: #fff;
	text-align: center;
	padding: 55px 0;

}

.-amazon {
	background: -moz-linear-gradient(top, #2c2953, #5a7599);
    background: -webkit-linear-gradient(top, #2c2953, #5a7599);
    background: linear-gradient(to bottom, #2c2953, #5a7599);
	border: 1px solid #242f3e;
    
}

.-rakuten {
	background: -moz-linear-gradient(top, #bf0000, #bf7373);
    background: -webkit-linear-gradient(top, #bf0000, #bf7373);
    background: linear-gradient(to bottom, #bf0000, #bf7373);
	border: 1px solid #bf0000;
}

.-other {
	background: -moz-linear-gradient(top, #c68c03, #f4bf43);
    background: -webkit-linear-gradient(top, #c68c03, #f4bf43);
    background: linear-gradient(to bottom, #c68c03, #f4bf43);
    border: 1px solid #c68c03;
}

@media screen and (max-width: 768px) {
	.sec .secInner {
		padding: 30px 30px 50px;
	}
	.title {
		margin: 0 0 20px;
		font-size: 20px;
		font-weight: 400;
	}
	.title span {
		font-size: 30px;
		line-height: 1.3;
	}
	.sec .sub-title {
		font-size: 18px;
		margin: 0 0 20px;
		line-height: 1.4;
	}
	.sec .secBox {
		width: auto;
	}
	.sec .mainBlock {
		min-height: auto;
	}
	.sec .mainBlock .txtArea {
		position: relative;
		top: 0;
		left: 0;
		width: auto;
		height: auto;
		padding: 50px 0;
	}
}

@media screen and (max-width: 320px) {
	.title {
		font-size: 18px;
	}
	.title span {
    	font-size: 26px;
	}
}



/* sec03
----------------------------------------------------------------------------*/

.sec03 {
	background: #f9f8f4;
}

.sec.sec03 .titArea {
    text-align: center;
	margin: 0 0 80px;
}
.sec.sec03 .titArea h3 {
	color: #000;
	font-size: 50px;
	font-family: 'Noto Serif JP', serif;
    font-weight: 500;
	line-height: 1.4;
}


.sec03 .secBox .secBox_inner {
	padding: 0 120px;
}
.sec03 .secBox.-first .secBox_inner {
	padding-top: 35px;
}
.sec03 .secBox.-detail01 .secBox_inner {
	padding-top: 75px;
}
.sec03 .secBox.-detail02 .secBox_inner {
	padding-top: 90px;
	padding-bottom: 80px;
}
.sec03 .secBox_tit {
	font-size: 20px;
	text-align: center;
	line-height: 1.4;
}
.sec03 .secBox_tit + .text {
	text-align: center;
    padding: 5px 0 0;
    font-size: 13px;
	margin: 0 0 65px
}
.sec03 .secBox.-detail02 .secBox_tit {
	margin: 0 0 65px
}
.sec03 .secBox .secBox_tit .point {
	display: inline-block;
}
.sec03 .secBox .secBox_tit span {
	font-size: 40px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
}
.sec03 .secBox_tit span.red {
	color: #d6312b;
}




.sec03 .secBox .secBox_subtit {
	font-size: 24px;
    border-bottom: 1px solid #000;
    text-align: center;
	line-height: 1.4;
    padding: 0 0 5px;
    margin: 0 0 25px;
}
.sec03 .secBox .dataImg {
	position: relative;
	height: 325px;
}
.sec03 .secBox .dataImg .img {
	position: absolute;
	width: 854px;
	height: 280px;
	top: 45px;
    left: 0;
}
.sec03 .secBox .dataList {
	overflow: hidden;
	margin: 50px 0 0;
}
.sec03 .secBox .dataList li {
	width: 355px;
	float: left;
}
.sec03 .secBox .dataList li.data01 {
	margin-right: 90px;
}
.sec03 .secBox .dataList li.data03 {
	width: 100%;
	float: none;
	clear: both;
	padding: 60px 0 0;
}
.sec03 .secBox .dataList .dataList_tit {
	border-bottom: 1px solid #333;
	margin: 0 0 20px;
}
.sec03 .secBox .dataList .dataList_subtit {
	font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
    margin: 0 0 10px;
}
.sec03 .secBox .dataList .dataList_subtit span {
	font-size: 16px;
	line-height: 1.8;
    display: block;
}
.sec03 .secBox .dataList li.data03 .dataBox,
.sec03 .secBox .dataList li.data03 .dataList_img {
	float: left;
}
.sec03 .secBox .dataList li.data03 .dataBox {
	width: 290px;
    margin-right: 24px;
}
.sec03 .secBox .dataList li .dataList_img {
	margin: 15px 0 0;
}
.sec03 .secBox .dataList li.data03 .dataList_img {
	margin: 0 0 20px;
}
.sec03 .secBox .dataList .data_note {
	font-size: 13px;
	margin: 3px 0 0;
}
.sec03 .secBox .dataList .dataList_point {
	background: #d6312b;
    padding: 20px;
    clear: both;
	z-index: 10;
    position: relative;
}
.sec03 .secBox .dataList .dataList_point p {
	color: #fff;
	font-size: 24px;
	text-align: center;
}

.sec03 .secBox.-detail01 .imgBox02 .tit {
	font-size: 20px;
	font-weight: bold;
	padding: 15px 0 0;
	margin-bottom: 10px;
	line-height: 1.4;
}
.sec03 .secBox.-detail01 .imgBox02 .imgBox02_col01 .tit {
	color: #999;
}
.sec03 .secBox.-detail01 .imgBox02 .imgBox02_col02 .tit {
	color: #003c96;
}
.sec03 .secBox.-detail02 .colBox {
	overflow: hidden;
}
.sec03 .secBox.-detail02 .colBox .imgArea,
.sec03 .secBox.-detail02 .colBox .txtArea {
	display: inline-block;
	vertical-align: top;
}
.sec03 .secBox.-detail02 .colBox .imgArea {
	width: 147px;
    margin-right: 47px;
}
.sec03 .secBox.-detail02 .colBox .txtArea {
	width: 600px;
}

.sec03 .secBox.-detail02 .note {
	font-weight: normal;
    text-align: center;
    margin-top: 35px;
}

@media screen and (max-width: 768px) {
	.sec03 {
		padding: 20px 0 10px;
	}
	.sec.sec03 .titArea {
		margin: 0 0 60px;
	}
	.sec.sec03 .titArea .icon {
		max-width: 56px;
		margin: 0 auto;
	}
	.sec.sec03 .titArea h3 {
		font-size: 24px;
	}
	.sec03 .secBox.-first {
		margin: 0;
	}
	.sec03 .secBox_tit {
    	font-size: 14px;
		margin: 30px 0 15px;
	}
	.sec03 .secBox_tit span {
		font-size: 25px;
		font-family: 'Noto Serif JP', serif;
	}
	.sec03 .secBox_tit .point {
		margin: 0 auto 5px;
	}
	.sec03 .secBox_tit .point.-spSize01 {
		width: 120px;
	}
	.sec03 .secBox_tit .point.-spSize02 {
		width: 175px;
	}
	.sec03 .secBox_tit .point.-spSize03 {
		width: 153px;
	}
	.sec03 .secBox .secBox_inner {
		padding: 40px 35px;
	}
	.sec03 .secBox.-first .secBox_inner {
		padding-top: 40px;
	}
	.sec03 .secBox .secBox_subtit {
		font-size: 16px;
		line-height: 1.6;
		margin: 0 0 15px;
	}
	.sec03 .secBox .dataImg {
		height: auto;
	}
	.sec03 .secBox .dataImg .img {
		position: relative;
		width: 230px;
		height: 433px;
		top: inherit;
		left: inherit;
		margin: 0 auto;
	}
	.sec03 .secBox .dataList {
		margin: 40px 0 0;
	}
	.sec03 .secBox .dataList li {
		width: 100%;
		float: none;
	}
	.sec03 .secBox .dataList li p {
		font-size: 13px;
	}
	.sec03 .secBox .dataList li.data01 {
		margin-right: 0;
		margin-bottom: 40px;
	}
	.sec03 .secBox .dataList li.data03 {
		padding: 40px 0 0;
	}
	.sec03 .secBox .dataList li.data03 .dataBox,
	.sec03 .secBox .dataList li.data03 .dataList_img {
		float: none;
	}
	.sec03 .secBox .dataList li.data03 .dataBox {
		width: auto;
		margin-right: 0;
	}
	.sec03 .secBox .dataList .dataList_tit {
    	margin: 0 0 10px;
	}
	.sec03 .secBox .dataList .dataList_tit img {
		width: 62px;
		vertical-align: bottom;
    	padding-bottom: 5px;
	}
	.sec03 .secBox .dataList .dataList_subtit {
		font-size: 16px;
		margin: 0 0 5px;
	}
	.sec03 .secBox .dataList li.data01 .dataList_img {
		width: 230px;
		margin: 5px auto 0;
	}
	.sec03 .secBox .dataList li.data02 .dataList_img {
		width: 230px;
		margin: 10px auto 0;
	}
	.sec03 .secBox .dataList li.data03 .dataList_img {
		width: 230px;
		margin: 15px auto 20px;
	}
	.sec03 .secBox .dataList .dataList_subtit span {
    	font-size: 13px;
	}
	.sec03 .secBox .dataList .data_note {
    	font-size: 10px;
	}
	.sec03 .secBox .dataList .dataList_point {
		padding: 15px 10px;
	}
	.sec03 .secBox .dataList .dataList_point p {
		font-size: 16px;
		line-height: 1.4;
	}
	
	.sec03 .secBox.-detail01 .secBox_inner {
		padding-top: 40px;
	}
	
	.secBlock .text {
		font-size: 10px;
    	margin-top: 5px;
	}
	
	.sec03 .secBox.-detail01 .imgBox01 {
		margin: 0;
	}
	.sec03 .secBox.-detail01 .imgBox01 .imgBox01_col01,
	.sec03 .secBox.-detail01 .imgBox01 .imgBox01_col02 {
		float: none;
	}
	.sec03 .secBox.-detail01 .imgBox01 .imgBox01_col01 {
		margin-right: 0;
	}
	.sec03 .secBox.-detail01 .imgBox01 .imgBox01_col01 .img {
		width: 230px;
		margin: 0 auto 20px;
	}
	.sec03 .secBox.-detail01 .imgBox01 .imgBox01_col02 .img {
		width: 230px;
		margin: 0 auto;
	}
	
	.sec03 .secBox.-detail02 .secBox_inner {
		padding: 40px;
	}
	.sec03 .secBox.-detail02 .colBox .imgArea {
		width: 96px;
		margin: 0 auto 15px;
		display: block;
	}
	.sec03 .secBox.-detail02 .colBox .txtArea {
		width: auto;
	}
}
@media screen and (max-width: 320px) {
	.sec03 .secBox .secBox_inner,
	.sec03 .secBox.-detail02 .secBox_inner {
		padding: 25px;
	}
	.sec03 .secBox.-detail01 .secBox_inner {
		padding-top: 25px;
	}
	.sec03 .secBox .dataImg .img {
		width: 100%;
		height: auto;
	}
	.sec03 .secBox .dataList li.data01 .dataList_img,
	.sec03 .secBox .dataList li.data02 .dataList_img,
	.sec03 .secBox .dataList li.data03 .dataList_img,
	.sec03 .secBox.-detail01 .imgBox01 .imgBox01_col01 .img,
	.sec03 .secBox.-detail01 .imgBox01 .imgBox01_col02 .img {
		width: 100%;
	}
	.sec03 .secBox .dataList .dataList_point br {
		display: none;
	}
}





/* prArea
----------------------------------------------------------------------------*/

.prArea {
	padding: 100px 0;
	background: rgba(0,62,109,.15);
}

.prAreaBlock .box01 {
	margin-bottom: 40px;
}
.prArea .box01 {
	min-height: 450px;
}
.prAreaBlock .box01 .txt,
.prAreaBlock .box01 .pic,
.prAreaBlock .box02 .txt,
.prAreaBlock .box02 .pic {
	float: left;
}
.prAreaBlock .box01 .txt {
	padding: 40px 80px 0 0;
}
.prAreaBlock .box01 .txt p {
	display: none;
}
.prAreaBlock .box01 .pic {
	width: 845px;
}

.prArea .box02 {
	min-height: 360px;
}
.prAreaBlock .box02 .txt {
	font-size: 18px;
    padding: 40px 0 0 80px;
}
.prAreaBlock .box02 .pic {
	width: 755px;
    margin-top: -55px;
}


.prArea .pointBlock_tit {
	color: #003e6d;
	font-size: 50px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	text-align: center;
	margin: 80px 0 40px;
}
.prArea .pointBlock_tit.-mgb {
	margin-bottom: 0;
}
.prArea.-brero .pointBlock_tit {
	color: #003e6d;
}


.prArea .pointBlock + .pointBlock_tit {
	margin-top: 95px;
}

.prArea .pointBlock {
	background: #fff;
	padding: 65px 70px;
	width: 1040px;
    margin: 0 auto;
	clear: both;
	overflow: hidden;
}
.prArea .pointBlock .pointList {
	padding-right: 50px;
}
.prArea .pointBlock .pointList li {
	width: 425px;
	margin: 0 50px 35px 0;
	float: left;
}
.prArea .pointBlock .pointList li:nth-child(2n) {
	margin-right: -50px;
}
.prArea .pointBlock .pointList li:nth-child(n+2) {
	margin-bottom: 0;
}
.prArea .pointBlock .pointList .itemImg {
	margin: 0 0 15px;
	position: relative;
}
.prArea .pointBlock .pointList .itemImg .picup {
	position: absolute;
	width: 120px;
	height: 180px;
	bottom: -30px;
    right: -30px;
}

.prArea .pointBlock .pointList .tit {
	color: #003e6d;
	font-size: 22px;
	font-family: 'Noto Serif JP', serif;
	margin: 0 0 5px;
}

.prArea .pointBlock .pointList p {
	text-align: center;
}

.prArea .text {
	font-size: 18px;
    text-align: center;
    margin: 0 0 35px;
}
.prArea .pointBlock .variationImg {
	margin-left: -30px;
}


@media screen and (max-width: 768px) {

	.prArea {
		padding: 45px 0 60px;
	}
	
	.prAreaBlock .box01 .pic,
	.prAreaBlock .box02 .txt,
	.prAreaBlock .box02 .pic {
		float: none;
	}
	.prArea .box01,
	.prArea .box02 {
		min-height: 200px;
	}
	.prAreaBlock .box01 {
		margin-bottom: 30px;
	}
	.prAreaBlock .box01 .pic {
		margin-right: -30px;
		margin-right: -10px;
		width: auto;
	}
	.prAreaBlock .box01 .txt {
		width: auto;
		padding: 0 50px;
		margin: 0 0 30px;
		
	}
	.prAreaBlock .box01 .txt h3,
	.prAreaBlock .box01 .txt p {
		float: left;
	}
	.prAreaBlock .box01 .txt p {
		display: block;
		margin-right: 15px;
	}
	
	.prAreaBlock .box02 {
		margin-bottom: 40px;
		overflow: inherit;
	}
	.prAreaBlock .box02 .pic {
		margin-right: -30px;
		margin-left: -10px;
		margin-top: 0;
		width: auto;
	}
	.prAreaBlock .box02 .txt,
	.pointBlock .box04 .txt {
		display: none;
	}
	
	
	.prArea .pointBlock {
		width: auto;
    	padding: 40px 45px;
		overflow: inherit;
	}
	.prArea .pointBlock.-pd {
		padding: 40px 20px;
	}
	.prArea .pointBlock_tit {
		font-size: 24px;
		margin: 0 0 15px;
	}
	.prArea .pointBlock_tit.-mgb {
		margin-bottom: 5px;
	}
	.prArea .pointBlock .pointBlock_tit span {
		padding: 0 0 5px;
		letter-spacing: -1px;
	}
	.prArea .pointBlock .pointList {
    	padding-right: 0;
		margin: 0;
	}
	.prArea .pointBlock .pointList li {
		width: 100%;
		margin: 0 0 35px;
		float: none;
	}
	.prArea .pointBlock .pointList li:nth-child(n+2) {
		margin-bottom: 35px;
	}
	.prArea .pointBlock .pointList li:nth-child(2n) {
		margin-right: 0;
	}
	.prArea .pointBlock .pointList li:last-child {
		margin-bottom: 0;
	}
	.prArea .pointBlock .pointList .itemImg {
		margin: 0 auto 10px;
		max-width: 230px;
	}
	.prArea .pointBlock .pointList .itemImg .picup {
		width: 70px;
		height: 105px;
		bottom: -20px;
		right: -20px;
	}
	.prArea .pointBlock .pointList p {
		text-align: left;
	}
	.prArea .pointBlock .pointList .tit {
		font-size: 16px;
		margin: 0;
		text-align: center;
	}
		
	.prArea .pointBlock + .pointBlock_tit {
		margin-top: 35px;
		line-height: 1.4;
	}
	.prArea .text {
		font-size: 14px;
		margin: 0 0 15px;
	}
	
}

@media screen and (max-width: 320px) {
	.prArea .pointBlock {
		padding: 35px 25px;
	}
	
	.prAreaBlock .box01 .txt {
		padding: 0 30px;
	}
	.prArea .box03 .txt {
		padding: 0 10px;
	}
}




/* productArea
----------------------------------------------------------------------------*/

.productArea {
	margin: 100px 0;
}

.mainBlock {
	position: relative;
	padding: 70px 0;
	margin-bottom: 60px;
}

.mainBlock::after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 35px 35px 0 35px;
	border-color: #003e6d transparent transparent transparent;
	bottom: -35px;
	left: 50%;
	transform: translateX(-50%);
}

.productArea.-gray .mainBlock::after {
	border-color: #e1e1e1 transparent transparent transparent;
}

.mainBlock .secInner {
	position: relative;
}

.mainBlock .txtArea,
.mainBlock .pic {
	width: 50%;
}

.mainBlock .pic {
	position: absolute;
    right: -160px;
    top: 0;
	width: 610px;
}

.productArea.-blue .mainBlock {
	background: #003e6d;
}

.productArea.-gray .mainBlock {
	background: #e1e1e1;
}

.productArea.-blue .txtArea {
	color: #fff;
}

.productArea.-gray .txtArea {
	color: #000;
}

.mainBlock .txtArea .subheading {
	font-size: 18px;
	text-align: center;
	margin: 0 0 30px;
}

.mainBlock .txtArea .text {
	font-size: 18px;
}

.mainBlock .txtArea .point {
	border-top: 2px solid #fff;
	margin-top: 30px;
}

.productArea.-gray .mainBlock  .txtArea .point {
	border-top: 2px solid #000;
}

.mainBlock .txtArea .point li {
	font-size: 20px;
	font-weight: bold;
	border-bottom: 2px solid #fff;
	background: url(../img/icon_ck_w.png) no-repeat top 15px left;
    background-size: 14px 19px;
    padding: 10px 0 10px 20px;
    line-height: 1.4;
}

.productArea.-gray .mainBlock  .txtArea .point li {
	border-bottom: 2px solid #000;
	background: url(../img/icon_ck_b.png) no-repeat top 15px left;
	background-size: 14px 19px;
}

.mainBlock .logo {
	margin: 0 auto;
}

.mainBlock .logo.-brero {
	width: 500px;
	margin-bottom: 35px;
}

.mainBlock .logo.-cs1 {
	width: 360px;
	margin-bottom: 30px;
}

.mainBlock .logo.-sc {
	width: 400px;
	margin-bottom: 25px;
}

.mainBlock .logo.-days {
	width: 320px;
	margin-bottom: 30px;
    margin-top: -10px;
}

.productArea .sub-title {
	color: #003e6d;
	font-size: 38px;
    font-family: 'Noto Serif JP', serif;
	font-weight: 400;
	margin-bottom: 40px;
	text-align: center;
}

.productArea.-gray .sub-title {
	color: #666;
}

.productArea .colorList {
	text-align: center;
	display: flex;
	justify-content: center;
	margin-bottom: 70px;
}

.productArea .colorList.-brero .colorList_item {
	width: 260px;
}

.productArea .colorList.-brero .colorList_item:first-child {
	margin-right: 110px;
}

.productArea .colorList.-cs1 .colorList_item {
	width: 260px;
}

.productArea .colorList.-sc .colorList_item {
	width: 280px;
	margin-right: 40px;
}

.productArea .colorList.-sc .colorList_item:last-child {
	margin-right: 0;
}

.productArea .colorList.-days .colorList_item {
	width: 300px;
}

.productArea .colorList.-days .colorList_item:first-child {
	margin-right: 70px;
}

.productArea .linkList {
	width: 700px;
	margin: 0 auto 35px;
	padding-right: 40px;
	overflow: hidden;
}

.productArea .linkList .linkList_item {
	width: 50%;
	float: left;
	margin-right: 40px;
	text-align: center;
}

.productArea .linkList .linkList_item:last-child {
	margin-right: -40px;
}

.productArea .linkList.-col1 {
	padding-right: 0;
}
.productArea .linkList.-col1 .linkList_item {
	float: none;
	margin: 0 auto;
}


.productArea .linkList .linkList_item a {
	color: #fff;
	display: block;
	position: relative;
	font-size: 24px;
	font-weight: bold;
	border-radius: 7px;
    padding: 8px 10px;
}

.productArea .linkList .linkList_item a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 10px;
    height: 10px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: .3s;
    margin-top: -5px;
}

.productArea .linkList .linkList_item a:hover {
	opacity: .6;
}

.productArea .giftBox {
	width: 700px;
	margin: 0 auto;
	border: 1px solid #333;
	color: #333;
	text-align: center;
	padding: 10px;
}


@media screen and (max-width: 768px) {
	
	.productArea {
		margin: 60px 0;
	}

	.mainBlock {
		padding: 60px 0 40px;
		margin-bottom: 30px;
	}

	.mainBlock::after {
		border-width: 25px 25px 0 25px;
		bottom: -25px;
	}

	.mainBlock .txtArea,
	.mainBlock .pic {
		width: auto;
	}

	.mainBlock .pic {
		position: inherit;
		right: inherit;
		top: inherit;
		width: auto;
		margin-bottom: 30px;
	}

	.mainBlock .txtArea .subheading {
		font-size: 18px;
		margin: 0 0 20px;
		line-height: 1.4;
	}

	.mainBlock .txtArea .text {
		font-size: 14px;
	}

	.mainBlock .txtArea .point li {
		font-size: 16px;
		background-position: 0 10px;
		background-size: 10px 15px;
		padding: 8px 0 8px 20px;
	}

	.productArea.-gray .mainBlock  .txtArea .point li {
		background-position: 0 10px;
		background-size: 10px 15px;
	}
	
	.mainBlock .logo.-brero,
	.mainBlock .logo.-cs1,
	.mainBlock .logo.-sc,
	.mainBlock .logo.-days {
		width: auto;
		margin-bottom: 25px;
	}

	.mainBlock .logo.-brero {
		max-width: 300px;
	}

	.mainBlock .logo.-cs1 {
		max-width: 300px;
	}

	.mainBlock .logo.-sc {
		max-width: 292px;
	}

	.mainBlock .logo.-days {
		max-width: 242px;
		margin-top: 0;
	}

	.productArea .sub-title {
		font-size: 23px;
		font-weight: 500;
		margin-bottom: 20px;
	}

	.productArea.-gray .sub-title {
		color: #666;
	}

	.productArea .colorList {
		display: block;
		justify-content: inherit;
		margin-bottom: 30px;
	}
	
	.productArea .colorList.-brero .colorList_item,
	.productArea .colorList.-cs1 .colorList_item,
	.productArea .colorList.-sc .colorList_item,
	.productArea .colorList.-days .colorList_item {
		width: auto;
		max-width: 230px;
		margin: 0 auto;
	}

	.productArea .colorList.-brero .colorList_item:first-child,
	.productArea .colorList.-sc .colorList_item,
	.productArea .colorList.-sc .colorList_item:last-child,
	.productArea .colorList.-days .colorList_item:first-child {
		margin-right: auto;
	}
	
	.productArea .colorList .colorList_item:nth-child(n+2) {
		margin-top: 30px;
	}


	.productArea .linkList {
		width: auto;
		margin: 0 30px 20px;
		padding-right: 0;
		overflow: hidden;
	}

	.productArea .linkList .linkList_item {
		margin: 0 auto;
		width: 80%;
		float: none;
	}

	.productArea .linkList .linkList_item:last-child {
		margin-right: auto;
		margin-top: 10px;
	}
	
	.productArea .linkList.-col1 .linkList_item {
		margin-right: auto;
	}

	.productArea .linkList .linkList_item a {
		font-size: 14px;
	}

	.productArea .linkList .linkList_item a::before {
		right: 10px;
		width: 8px;
		height: 8px;
		margin-top: -4px;
	}
	
	.productArea .giftBox {
		width: auto;
		margin: 0 30px;
		padding: 5px;
	}

}




/* btmlinkArea
----------------------------------------------------------------------------*/

.btmlinkArea {
	margin: 80px 0 100px;
}

.btmlinkArea .linkBlock .linkList .linkList_item {
	padding: 10px 30px 30px;
}

.btmlinkArea .linkBlock .linkList .linkList_item a::after {
	display: none;
}

.btmlinkArea .linkBtn {
	margin-top: 20px;
}

.btmlinkArea .linkBtn + .linkBtn {
	margin-top: 10px;
}

.btmlinkArea .linkBlock .linkList .linkList_item .linkBtn a {
	display: block;
	color: #fff;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	position: relative;
	border-radius: 7px;
    padding: 8px 10px;
}

.btmlinkArea .linkBtn a::before {
	content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 10px;
    height: 10px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: .3s;
    margin-top: -5px;
}


@media screen and (max-width: 768px) {
	
	.btmlinkArea {
		margin: 50px 0 80px;
	}
	
	.btmlinkArea .linkBlock .linkList .linkList_item {
		padding: 10px 15px 25px;
	}
	
	.btmlinkArea .linkBlock .linkList .linkList_item .linkBtn a {
		font-size: 14px;
	}
	
	.btmlinkArea .linkBtn a::before {
		right: 10px;
		width: 8px;
		height: 8px;
		margin-top: -4px;
	}

}

