/* Y'S GEAR : function.css */


.contentsWidth {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.6;
}
.contentsWidth * {
	box-sizing: border-box;
}
.contentsWidth p {
	margin: 15px 0;
}
.contentsWidth figure {
	margin: 25px 0;
	text-align: center;
}
.contentsWidth figcaption {
	display: inline-block;
	margin-top: 10px;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.2;
}
.contentsWidth ul,
.contentsWidth ol {
	margin: 15px 0 15px 2em;
}
.contentsWidth li + li {
	margin-top: 10px;
}
.contentsWidth ul li {
	list-style-type: disc;
}
.contentsWidth ol li {
	list-style-type: decimal;
}
.contentsWidth a {
	-webkit-transition: background ease .3s, 
						color ease .3s, 
						border ease .3s, 
						opacity ease .3s; /* Safari */
	transition: background ease .3s, 
				color ease .3s, 
				border ease .3s, 
				opacity ease .3s;
}
.contentsWidth b, 
.contentsWidth span {
	display: inline-block;
}
.contentsWidth sup {
	font-size: 80%;
	vertical-align: top;
}

/* [ 大きな見出し ] */
.contentsWidth .bigttl {
	margin-bottom: -25px;
	font-size: 3.4rem;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
}
.contentsWidth section:has(.bigttl) {
	margin-top: 100px;
}

/* [ 注釈 ] */
.contentsWidth .note {
	padding-left: 1em;
	font-size: 1.2rem;
	text-indent: -1em;
}

@media screen and (max-width: 980px) {
	.contentsWidth {
		padding: 0 !important;
	}
} /* */

@media screen and (max-width: 568px) {
	/* .contentsWidth section section {
		margin: 40px 0;
	} */
	.contentsWidth figcaption {
		font-size: 1.4rem;
	}

	/* [ 大きな見出し ] */
	.contentsWidth .bigttl {
		margin-bottom: 0;
		font-size: 3rem;
	}
	.contentsWidth section:has(.bigttl) {
		margin-top: 50px;
	}
} /* */


/*==============================================*
 *  [ mainBox ] 
 *==============================================*/

.mainBox div {
	margin-bottom: 60px;
	padding-bottom: 30px;
	background: url(../img/bg.png) center bottom no-repeat;
	background-size: 100% auto;
}
.mainBox h2 {
	margin-bottom: 15px;
	padding: 0 20px;
	line-height: 1;
	text-align: center;
}
.mainBox h2 span {
	padding-bottom: 10px;
	font-size: 2.4rem;
}
.mainBox h2 b {
	padding-bottom: 5px;
	font-size: 3rem;
}
.mainBox figure {
	margin: 0;
}
.mainBox p {
	padding: 0 40px;
	color: #333;
	font-size: 1.8rem;
	font-weight: bold;
}

@media screen and (max-width: 568px) {
	.mainBox div {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}
	.mainBox h2 {
		margin-bottom: 10px;
		padding: 0 10px;
	}
	.mainBox h2 span {
		font-size: 1.6rem;
	}
	.mainBox h2 b {
		font-size: 2.2rem;
	}
	.mainBox p {
		padding: 0 10px;
		font-size: 1.6rem;
	}
} /* */


/*==============================================*
 *  [ navBox ] 
 *==============================================*/

.navBox {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 60px 0;
}
.navBox a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: calc(33.33% - 6.66px);
	height: 60px;
	padding: 0 30px;
	background: url(../img/naname_nav.png) left top / 138px auto no-repeat #2070ad;
	color: #fff;
	font-weight: bold;
	text-align: center;
	line-height: 1.2;
}
.navBox a:hover,
.navBox a:active {
	background-color: #4794CF;
	color: #fff !important;
}
.navBox a::after {
	position: absolute;
	top: calc(50% - 9px);
	right: 12px;
	width: 18px;
	height: 18px;
	background: #f3f3f0;
	mask: url(../img/arrow.svg) center center / contain no-repeat;
	transform: rotate(90deg);
	content: "";
}

@media screen and (max-width: 980px) {
	.navBox {
		padding: 0 20px;
	}
} /* */

@media screen and (max-width: 568px) {
	.navBox {
		margin: 30px 0;
		padding: 0 10px;
		gap: 5px;
	}
	.navBox a {
		width: calc(50% - 2.5px);
		background-size: 120px;
		font-size: 1.5rem;
	}
} /* */


/*==============================================*
 *  [ txtBox ] 
 *==============================================*/

.txtBox {
	padding: 0 40px;
	color: #333;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
}

@media screen and (max-width: 568px) {
	.txtBox {
		padding: 0 20px;
		font-size: 1.6rem;
	}
} /* */

/*==============================================*
 *  [ nanameBox ] 
 *==============================================*/

.nanameBox {
	position: relative;
	margin: 75px 0;
	padding: 40px;
}
.nanameBox > *:nth-last-child(1) {
	margin-bottom: 0;
}
.nanameBox.blue {
	background: #e4eff8;
}
.nanameBox.gray {
	background: #f3f3f0;
}
.nanameBox::before {
	position: absolute;
	top: -15px;
	width: 183px;
	height: 30px;
	background: url(../img/naname.png) left top / contain no-repeat;
	content: "";
}
.nanameBox.blue::before { right: 15px; }
.nanameBox.gray::before { left: 15px; }

.nanameBox > section {
	margin-top: 30px;
}
.nanameBox > section + section:not(.lineupBox) {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px dotted #4794CF;
}

/* [ 見出し1 ] */
.nanameBox .ttl {
	margin-bottom: 20px;
	color: #2c5d83;
	font-size: 2rem;
	line-height: 1.2;
}

/* [ 見出し2 ] */
/* .nanameBox .sttl {
	margin-bottom: 10px;
	color: #2c5d83;
	font-size: 1.6rem;
	line-height: 1.2;
}
.nanameBox .sttl + p {
	margin-top: 0;
	font-size: 1.4rem;
} */

/* [ 見出しロゴ ] */
.nanameBox .logo {
	text-align: center;
}
.nanameBox .logo + p {
	margin-bottom: 50px;
	font-weight: bold;
	text-align: center;
}

/* [ ポイント ] */
.nanameBox .point {
	margin-top: 30px;
	padding: 30px;
	background: #fff;
	font-size: 1.4rem;
} 
.nanameBox .point b {
	color: red;
}
.nanameBox .point a {
	text-decoration: underline;
}


@media screen and (max-width: 568px) {
	.nanameBox {
		position: relative;
		margin: 50px 0;
		padding: 40px 20px 20px;
	}
	.nanameBox::before {
		top: -12px;
		width: 146px;
		height: 24px;
	}
	.nanameBox h2, 
	.nanameBox h3 {
		margin-bottom: 15px;
		font-size: 1.8rem;
	}
	.nanameBox .logo {
		margin-bottom: 5px;
	}
	.nanameBox .logo img {
		max-width: 300px;
	}
	.nanameBox .logo + p {
		margin: 0 0 40px;
		font-size: 1.2rem;
		font-weight: normal;
	}
	.nanameBox .point {
		padding: 20px;
	}
} /* */



/*==============================================*
 *  [ supplBox ] 
 *==============================================*/

.supplBox {
	padding: 30px;
	background: rgba(255,255,255,0.5);
}
.supplBox > *:last-child {
	margin-bottom: 0;
}
.supplBox h3, 
.supplBox h4 {
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #4794CF;
	color: #4794CF;
	font-size: 1.8rem;
	line-height: 1.2;
}
.supplBox p + h4 { margin-top: 30px; }
.supplBox p {
	font-size: 1.5rem;
}
.supplBox a {
	display: block;
	position: relative;
	width: fit-content;
	/* margin: 0 auto; */
	padding: 15px 40px 15px 15px;
	border: 2px solid #4794cf;
	background: #fff;
	color: #4794cf;
	font-weight: bold;
	line-height: 1.2;
}
.supplBox a:hover, 
.supplBox a:active {
	background: rgba(255,255,255,.75);
}
.supplBox a::after {
	position: absolute;
	top: calc(50% - 8.5px);
	right: 20px;
	content: url(../img/arrow.svg);
}

@media screen and (max-width: 568px) {
	.supplBox {
		padding: 20px;
	}
} /* */


/*==============================================*
 *  [ lineupBox ] 
 *==============================================*/

.lineupBox {
	padding: 30px;
	border-top: 3px solid #fff;
	background: rgba(255,255,255,0.5);
}
.lineupBox h3 {
	font-size: 2.2rem;
	text-align: center;
}
.lineupBox h3 + p {
	margin-bottom: 30px;
	color: #666;
	font-weight: bold;
	text-align: center;
}
.lineupBox .list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}
.lineupBox .list section {
	display: flex;
	width: max(330px, calc(50% - 10px));
}
.lineupBox .list a {
	position: relative;
	padding: 0 20px 20px;
	border: 1px solid #4794cf;
	background: #fff;
	text-align: center;
	transition: transform ease .3s;
}
.lineupBox .list a:hover,
.lineupBox .list a:active {
	transform: translateY(-10px);
}
.lineupBox .list .new {
	position: absolute;
	top: 0;
	left: 0;
	background: red;
	color: #fff;
}
.lineupBox .list div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	gap: 10px;
	margin: 0 -20px 20px;
	padding: 15px 20px;
	background: #4794cf;
	color: #fff;
}
.lineupBox .list div::before {
	position: absolute;
	top: -1px;
	left: 15px;
	width: 164px;
	height: 11px;
	background: url(../img/naname_lineup.png) left top / contain no-repeat;
	content: "";
}
.lineupBox .list div h4 {
	margin-top: 3px;
	font-size: 2.4rem;
}
.lineupBox .list div p {
	margin: 0;
	font-size: 1.2rem;
	text-align: right;
	line-height: 1.2;
}
.lineupBox .list div p b {
	font-size: 2.2rem;
	font-weight: 500;
}
.lineupBox .list div p span {
	font-size: 1.2rem;
}
.lineupBox .list figure {
	position: relative;
	margin: 0 0 20px;
}
.lineupBox .list figure img {
	width: min(240px, 100%);
	opacity: 1 !important;
}
.lineupBox .list figure img + img {
	position: absolute;
	top: 0;
	left: 20px;
	max-width: min(75px, 30%);
}
.lineupBox .list ul {
	display: flex;
	flex-wrap: wrap;
	gap: 3px;
	margin: 0;
	font-size: 1.2rem;
	line-height: 1.2;
}
.lineupBox .list li {
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none !important;
	width: calc(33.33% - 2px);
	min-height: 36px;
	margin: 0;
	padding: 5px;
	border-radius: 3px;
	background: #6396be;
	color: #fff;
}
.lineupBox .list li span {
	display: block;
	font-size: 1rem;
	font-weight: 500;
}

@media screen and (max-width: 568px) {
	.lineupBox {
		padding: 20px;
	}
	.lineupBox .list section {
		width: min(330px, 100%);
	}
	.lineupBox .list ul {
		font-size: 1.1rem;
	}
	.lineupBox .list li {
		min-height: 30px;
	}
	.lineupBox .list a {
		padding: 0 10px 10px;
	}
	.lineupBox .list div {
		margin: 0 -10px 10px;
		padding: 10px;
	}
	.lineupBox .list div::before {
		left: 5px;
		width: 120px;
		height: 8px;
	}
	.lineupBox .list div h4 {
		font-size: 2.2rem;
	}
	.lineupBox .list div p,
	.lineupBox .list div p span {
		font-size: 1.1rem;
	}
	.lineupBox .list div p b {
		font-size: 2rem;
	}
	.lineupBox .list figure {
		margin-bottom: 10px;
	}
	.lineupBox .list figure img + img {
		left: 0;
	}
} /* */


/*==============================================*
 *  [ optionBox ] 
 *==============================================*/

.optionBox {
	margin: 75px 0;
	text-align: center;
}

@media screen and (max-width: 568px) {
	.optionBox {
		margin: 50px 0;
	}
} /* */


/*==============================================*
 *  [ downloadBox ] 
 *==============================================*/

.downloadBox h3 {
	margin-bottom: 30px;
	padding-bottom: 10px;
	border-bottom: 1px solid #999;
	font-size: 2.2rem;
}

.downloadBox section {
	padding: 0 30px;
}
.downloadBox section + section {
	margin-top: 50px;
}

.downloadBox .title {
	display: flex;
	gap: 20px;
	align-items: center;
}
.downloadBox .title .commonTitleH5, 
.downloadBox .title p {
	margin: 0;
}
.downloadBox .title p {
	background: #4794CF;
	color: #fff;
	font-size: 1.4rem;
	line-height: 1;
	padding: 5px 10px;
	border-radius: 5px;
	white-space: nowrap;
}

.downloadBox .text {
	font-size: 1.4rem;
}

.downloadBox .button {
	display: flex;
	margin: 15px 0 0;
	gap: 15px 20px;
}
.downloadBox .button li {
	list-style: none;
 	width: calc(50% - 10px);
	margin: 0;
}
.downloadBox .button a {
	display: block;
	position: relative;
	padding: 12px 10px 12px 40px;
	border: 3px solid #4794CF;
	background: #fff;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.2;
}
.downloadBox .button a::before {
	position: absolute;
	top: 50%;
	left: 10px;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	background: url(/shared/svg/icon_download_marine.svg) center center no-repeat;
	background-size: contain;
	content: "";
}
.downloadBox .button span {
	font-size: 1.2rem;
	font-weight: normal;
}

.downloadBox .note {
	margin: 30px 0 0 30px;
}

@media screen and (max-width: 568px) {
	.downloadBox section {
		padding: 0;
	}
	
	.downloadBox .title {
		justify-content: space-between;
	}
	.downloadBox .title p {
		padding: 5px;
		font-size: 1.3rem;
	}

	.downloadBox .button {
		flex-direction: column;
		align-items: center;
	}
	.downloadBox .button li {
		width: min(330px, 100%);
	}

	.downloadBox .note {
		margin: 30px 0 0 0;
	}
} /* */

/*==============================================*
 *  [ lineupLink ] 
 *==============================================*/

/* .lineupLink {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-around;
	justify-content: space-around;
	-webkit-align-items: flex-end;
	align-items: flex-end;
	margin: 0 !important;
	text-align: center;
}
.lineupLink li {
	list-style-type: none !important;
	width: 50%;
	max-width: 350px;
}
.lineupLink li + li {
	margin-left: 20px;
}
.lineupLink a {
	display: block;
	position: relative;
	max-width: 330px;
	margin: 0 auto;
	padding: 15px 30px 15px 15px;
	border: 2px solid #4794cf;
	background: #fff;
	color: #4794cf;
	font-weight: bold;
	line-height: 1.2;
}
.lineupLink a:hover, 
.lineupLink a:active {
	background: rgba(255,255,255,.75);
}
.lineupLink a::after {
	position: absolute;
	top: calc(50% - 8.5px);
	right: 20px;
	content: url(../img/arrow.svg);
} */

@media screen and (max-width: 568px) {
	/* .lineupLink {
		display: block;
	}
	.lineupLink li {
		width: 100%;
		max-width: 100%;
	}
	.lineupLink li + li {
		margin: 40px 0 20px;
	} */
} /* */

/*==============================================*
 *  [ howtoBox ] 
 *==============================================*/

.howtoBox {
	padding: 0 40px;
}
.howtoBox section {
	margin: 50px 0;
}
.howtoBox h2 {
	margin: 0 -40px 30px;
	padding: 15px 40px;
	background: #4794cf;
	color: #fff;
	font-size: 2.4rem;
	line-height: 1.2;
	text-align: center;
}
.howtoBox h3 {
	margin-bottom: 15px;
	padding: 2px 0 2px 5px;
	border-left: 5px solid #4794cf;
	font-size: 2rem;
	line-height: 1.2;
}
.howtoBox a {
	display: block;
	position: relative;
	max-width: 370px;
	margin: 0 auto;
	padding: 15px 45px 15px 15px;
	border: 2px solid #4794cf;
	background: #fff;
	color: #4794cf;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
}
.howtoBox a:hover, 
.howtoBox a:active {
	background: #f8fbfd;
}
.howtoBox a::after {
	position: absolute;
	top: calc(50% - 13px);
	right: 19px;
	content: url(../img/manual.svg);
}

@media screen and (max-width: 568px) {
	.howtoBox {
		padding: 0 20px;
	}
	.howtoBox section {
		margin: 40px 0;
	}
	.howtoBox h2 {
		margin: 0 -20px 20px;
		padding: 15px 20px;
		background: #4794cf;
		color: #fff;
		font-size: 2rem;
	}
	.howtoBox h3 {
		margin-bottom: 15px;
		font-size: 1.8rem;
	}
} /* */

