@charset "utf-8";

/*=====================================
layout.css
=====================================*/

/*-------------------------------------
 reset
-------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
	display: block;
}
body {
	line-height: 1;
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN" ,"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", sans-serif;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	max-width: 100%;
	line-height: 0;
	vertical-align: bottom;
}
iframe {
	vertical-align: bottom;
	border: 0;
}
table th,
table td {
	vertical-align: top;
}
input,
select,
textarea,
button {
}
select::-ms-expand {
	display: none;
}
*, :after, :before {
	box-sizing: border-box;
}

.anchorFix {
    margin-top: -104px;
    padding-top: 104px;
}

/*-------------------------------------
 setting
-------------------------------------*/
body {
	position: relative;
	color: #000;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	overflow-wrap: break-word;
	word-wrap: break-word;
	background: #fff;
}
a {
	color: #000;
	text-decoration: none;
}
a:hover{
	text-decoration: underline;
}
strong {
	font-weight: bold;
}
em {
	font-style: normal;
}


/*-------------------------------------
 layout
-------------------------------------*/
#wrapper {
	position: relative;
	padding-top: 84px;
	overflow: hidden;
}
.inner {
	position: relative;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
}
.inner:after {
	clear: both;
	display: block;
	content: "";
}


/*-------------------------------------
 header
-------------------------------------*/
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
	background: #fff;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.4s linear;
	backface-visibility: hidden;
}
.header.scrolled .headerPC .inner{
	height: 64px;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	backface-visibility: hidden;
	
}
.header.scrolled .headerPC .headerLogo {
    width: 282px;
    height: auto;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	backface-visibility: hidden;
}

.headerPC .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 84px;
	max-width: 1800px;
}
.headerPC .headerLogo {
	width: 372px;
	height: 84px;
	flex-shrink: 0;
}
.headerPC .headerLogo a {
	display: flex;
	align-items: center;
	height: 100%;
}
.headerPC .headerLogo img {
	width: 372px;
}
.headerPC .headerSearchbox {
	padding: 10px;
	text-align: center;
	background: #eee;
}
.headerPC .headerSearchbox .box {
	position: relative;
	display: inline-block;
	padding: 0 50px 0 15px;
	border-radius: 20px;
	background: #fff;
}
.headerPC .headerSearchbox input[type=text] {
	width: 100%;
	height: 37px;
	border: none;
	background: none;
}
.headerPC .headerSearchbox input[type=submit] {
	position: absolute;
	top: 0;
	right: 15px;
	width: 30px;
	height: 37px;
	text-indent: 200%;
	white-space: nowrap;
	border: none;
	background: url(../images/icn_search02.png) no-repeat center center / 19px auto;
	overflow: hidden;
}
.headerPC .headerSearchbox{
	display: none;
}


.headerPC .headerMenu {
	display: flex;
	align-items: center;
	height: 100%;
	margin-left: auto;
}
.headerPC .headerNav {
	height: 100%;
}
.headerPC .headerNav ul {
	display: flex;
	height: 100%;
	justify-content: space-around;
}
.headerPC .headerNav ul li {
	position: relative;
	height: 100%;
	padding: 0 20px;
}
.headerPC .headerNav ul li + li:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	display: inline-block;
	width: 1px;
	height: 15px;
	margin-top: -8px;
	background: #000;
}
.headerPC .headerNav ul li a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 8px 0 5px;
	text-decoration: none;
	border-bottom: 3px solid transparent;
}
.headerPC .headerSearch {
	padding: 0 0 0 20px;
}
.headerPC .headerSearch a {
	position: relative;
	display: block;
	padding: 7px 0 7px 46px;
}
.headerPC .headerSearch a:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: url(../images/icn_search01.png) no-repeat center center / 19px 18px #ff6600;
}
.headerSP {
	display: none;
}

.headerPC .headerSearch a:hover{
	opacity: 0.6;
}


/*-------------------------------------
 main
-------------------------------------*/
.main {
	min-height: 50vh;
}
p.etc_title{
	margin-bottom: 8px;
}


/*-------------------------------------
 footer
-------------------------------------*/
.footer {
	padding-top: 32px;
	padding-bottom: 65px;
	background: #f9f9f9;
}
.footerLink ul {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 0 0 30px 0;
}
.footerLink ul li {
	position: relative;
	padding: 0 18px;
}
.footerLink ul li + li:before {
	content: "";
	position: absolute;
	top: 3px;
	left: 0;
	display: inline-block;
	width: 1px;
	height: 15px;
	vertical-align: middle;
	background: #000;
}
.footerSns ul {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	margin: 0 0 23px 0;
}
.footerSns ul li {
	width: 34px;
	margin: 0 9px;
	flex-shrink: 0;
}
.footerCopyright {
	color: #555;
	font-size: 15px;
	text-align: center;
}
.pagetop a {
	position: absolute;
	top: 0;
	right: 10px;
	display: block;
	width: 60px;
	height: 60px;
	padding: 27px 0 0 0;
	color: #fff;
	text-align: center;
	text-decoration: none;
	border-radius: 50%;
	background: #ff6600;
}
.pagetop a:before {
	content: "";
	position: absolute;
	top: 20px;
	left: 50%;
	display: inline-block;
	width: 12px;
	height: 12px;
	margin-left: -6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(-45deg);
}

.pagetop{
    position: fixed;
    bottom: 90px;
    right: 20px;
}















.sidebar ul li .navArw01,
.sidebar ul li .navArw02 {
	position: relative;
	display: block;
}
.sidebar ul li .navArw01 {
	padding: 9px 10px 9px 30px;
	font-size: 16px;
	font-weight: bold;
}

.sidebar ul li .navArw01.open:before {
	transform: rotate(90deg);
}
.sidebar ul li .navArw02 {
	padding: 10px 10px 10px 30px;
}
.sidebar ul li .navArw02:before {
	content: "";
	position: absolute;
	top: 13px;
	left: 11px;
	width: 10px;
	height: 10px;
	background: url(../images/sp_nav_arw02.svg) no-repeat center center / 6px auto;
}
.sidebar ul li .navArw02.active:before{
	transform: rotate(90deg);
}

.sidebar ul li .navArw02.open:before {
	transform: rotate(90deg);
}
.sidebar ul.nav03 li a {
	position: relative;
	display: block;
	padding: 10px 10px 10px 34px;
	border-bottom: 1px solid #e6e6e6;
}
.sidebar ul.nav02 > li a{
	border-bottom: 1px solid #e6e6e6;
	margin-bottom: -1px;
}
.sidebar ul.nav02 > li .navNews a {
	position: relative;
	display: block;
	padding: 10px 10px 10px 34px;
	border-bottom: 1px solid #e6e6e6;
}
.sidebar ul.nav02 > li .navNews a:before {
    content: "";
    position: absolute;
    top: 21px;
    left: 15px;
    width: 10px;
    height: 1px;
    background: #ff6600;
}
#seminarIndexBtn{
	display: none;
}
.navNews li.current {
    background-color: #ffefe5;
}

.sidebar ul.nav03 li ul li a {
	padding-left: 57px;
}
.sidebar ul.nav03 li a:before {
	content: "";
	position: absolute;
	top: 21px;
	left: 15px;
	width: 10px;
	height: 1px;
	background: #ff6600;
}


.sidebar ul.nav03 li ul li a:before {
	left: 42px;
}
.sidebar h3 {
    padding: 13px;
    border-bottom: solid 1px #e6e6e6;
    margin-bottom: 15px;
    font-weight: bold;
    text-align: center;
}

.sidebar ul li ul li{
	border-bottom: 1px solid #e6e6e6;
}


.sidebar ul li ul li ul li{
	border-bottom: none;
	/* border-bottom: 1px solid #e6e6e6; */
}
.sidebar ul li ul li ul li.catChild{
	border-bottom: 1px solid #e6e6e6;
}
.sidebar ul li ul li ul li:last-child{
	border-bottom: none;
}



.nav01 .nav03{
	display: none;
}
.nav01 .nav03{
	display: none;
}

.nav01 .catChild .nav03 {
	display: none;
}

/* LIST CONTENTS*/

.listSection {
    margin-top: 40px;
    margin-bottom: 40px;
}
.listTTL {
	display: flex;
	justify-content: space-between;
	margin: 0 0 50px 0;
	border-bottom: 4px solid #ff6600;
	position: relative;
}
.listTTL ul {
	display: flex;
	margin: 0 0 -4px 0;
}
.listTTL ul li {
	position: relative;
    margin: 0 0 0 0;
    padding: 14px 32px 14px 18px;
    cursor: pointer;
    color: #fff;
    font-weight: bold;
    border-radius: 13px 13px 0 0;
    background: #ff6600;
}
.listTTL ul li:before {
	content: "";
    position: absolute;
    top: 0;
    right: -20px;
    display: block;
    width: 45px;
    height: 100%;
    border-radius: 0 13px 0 0;
    transform: skewX(30deg);
	background: #ff6600;
}

.listTTL ul li p {
	position: relative;
	z-index: 2;
}
.listTTL ul li em {
	font-size: 25px;
}


.listTTL h2{
    position: absolute;
    left: 300px;
    font-size: 28px;
    top: 10px;
}
.listSectionTTL{
    display: flex;
    align-items: center;
    justify-content: center;
	margin-bottom: 40px;
}
.listSectionTTL h3 {
    margin-left: 20px;
    font-size: 20px;
}
.listSectionTTL .imgBox{
	margin-right: 20px;
	display: flex;
	align-items: center;
}
.listSectionTTL .imgBox img {
    max-height: 100%;
    width: auto;
    max-width: 80px;
}

.listSectionTTL {
    display: grid;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    grid-template-columns: 70px 1fr;
	position: relative;
}
.listSectionTTL img{
	max-width: 70px;
	max-height: 100%;
}
.listSectionTTL .imgBox {
	height: 76px;
}
.categoryDetailLink{
	position: absolute;
	right: 0;
    display: inline-block;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    padding: 10px 50px;
    background-color: #FFFFFF;
    font-size: 17px;
	border: #ff6600 solid 2px;
}
.categoryDetailLink:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: 2px solid #ff6600;
    border-right: 2px solid #ff6600;
    transform: rotate(45deg);
}
.categorySearchList {
    display: grid;
    grid-template-columns: 31% 31% 31%;
    column-gap: 4.5%;
    row-gap: 30px;
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: solid 1px #dcdcdc;
}
.categorySearchListBox h4 {
    font-weight: bold;
    font-size: 17px;
    margin-bottom: 20px;
}
.categorySearchListBox ul li{
	margin-bottom: 10px;
}
.categorySearchListBox ul li a{
    display: inline-block;
    padding-left: 20px;
    position: relative;
}
.categorySearchListBox ul li a:before {
	content: "";
    position: absolute;
    top: 3px;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-top: 2px;
    border-top: 2px solid #ff6600;
    border-right: 2px solid #ff6600;
    transform: rotate(45deg);
    left: 0;
}
.listSection .categorySearchList:last-child {
	border-bottom: none;
}

.listSectionFieldTTL{
    position: relative;
	margin-bottom: 40px;
}
.listSectionFieldTTL h3 {
    position: absolute;
    top: calc(50% - 26px);
    color: #FFFFFF;
    font-size: 36px;
    padding-left: 30px;
}
.listSectionFieldTTL .fieldDetailLink{
	position: absolute;
	top: calc(50% - 14px);
	padding-right: 30px;
	right: 0;
}

.listSectionFieldTTL .fieldDetailLink a {
    position: relative;
    display: inline-block;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    padding: 10px 50px;
    background-color: #FFFFFF;
    font-size: 17px;
}
.listSectionFieldTTL .fieldDetailLink a:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: 2px solid #ff6600;
    border-right: 2px solid #ff6600;
    transform: rotate(45deg);
}


.pwInput{
	padding: 4%;
	text-align: center;
}

.bottomContents .pwInput h2 {
    padding: 0.25em 1em;
    background-color: #f4f6f8;
    border-left: none;
    margin: 0px 0 30px;
    font-size: 20px;
    font-weight: normal;
}

.pwInput p{
	margin-bottom: 40px;
}
.pwInput .inputBox input[type="text"]{
	width: 50%;
	min-width: 180px;
	border: 1px solid #cccccc;
    padding: 10px;
    border-radius: 3px;
}
.pwInput .inputBox{
	margin-bottom: 20px;
}


#pushPW {
    position: relative;
    display: inline-block;
    width: 252px;
    height: 50px;
    line-height: 46px;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    border: 2px solid #ff6600;
	cursor: pointer;
	background-color: #FFFFFF;
}
.inquiry-sbtn input[type="submit"]{
	position: relative;
    display: inline-block;
    width: 252px;
    height: 50px;
    line-height: 46px;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    border: 2px solid #ff6600;
	cursor: pointer;
	background-color: #FFFFFF;
}

.pwInputBox{
	min-height: 70vh;
}


/*-------------------------------------------------------------------
 Media Queries
-------------------------------------------------------------------*/

@media screen and (max-width: 1180px) {

body.hidden {
	overflow: hidden;
}


/*-------------------------------------
 layout
-------------------------------------*/
#wrapper {
	padding-top: 75px;
}


/*-------------------------------------
 header
-------------------------------------*/
.headerSP {
	display: block;
}
.headerSP .inner {
	padding: 0 100px 0 20px;
}
.headerSP .headerLogo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 95%;
	max-width: 288px;
	height: 75px;
}
.headerSP .headerSearch a {
	position: absolute;
	top: 50%;
	right: 68px;
	display: block;
	width: 32px;
	height: 32px;
	margin-top: -16px;
	text-indent: 200%;
	white-space: nowrap;
	overflow: hidden;
}
.headerSP .headerSearch a:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: url(../images/icn_search01.png) no-repeat center center / 16px auto #ff6600;
}
.headerBtn {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	z-index: 105;
	width: 52px;
	cursor: pointer;
}
.headerBtn span {
	position: absolute;
	top: 50%;
	left: 10px;
	display: inline-block;
	width: 32px;
	height: 4px;
	background-color: #797979;
	transition: all .2s;
	box-sizing: border-box;
}
.headerBtn span:nth-of-type(1) {
	margin-top: -10px;
}
.headerBtn span:nth-of-type(2) {
}
.headerBtn span:nth-of-type(3) {
	margin-top: 10px;
}
.headerBtn span:nth-of-type(2)::after {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 4px;
	background-color: #797979;
	transition: all .2s;
}
.headerBtn.open span:nth-of-type(2),
.headerBtn.open span:nth-of-type(2)::after {
	height: 3px;
}
.headerBtn.open span:nth-of-type(1) {
	transform: translateY(20px) scale(0);
}
.headerBtn.open span:nth-of-type(2) {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.headerBtn.open span:nth-of-type(2)::after {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}
.headerBtn.open span:nth-of-type(3) {
	transform: translateY(-20px) scale(0);
}

.headerPanel {
	display: none;
	position: fixed;
	top: 75px;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100;
	padding: 0 0 0 30px;
	text-align: center;
	overflow-x: hidden;
	overflow-y: auto;
	background: rgba(0,0,0,0.2);
}
.headerSP .headerSearchbox {
	padding: 10px;
	text-align: center;
	background: #eee;
	display: none;
}
.headerSP .headerSearchbox .box {
	position: relative;
	display: inline-block;
	padding: 0 50px 0 15px;
	border-radius: 20px;
	background: #fff;
}
.headerSP .headerSearchbox input[type=text] {
	width: 100%;
	height: 37px;
	border: none;
	background: none;
}
.headerSP .headerSearchbox input[type=submit] {
	position: absolute;
	top: 0;
	right: 15px;
	width: 30px;
	height: 37px;
	text-indent: 200%;
	white-space: nowrap;
	border: none;
	background: url(../images/icn_search02.png) no-repeat center center / 19px auto;
	overflow: hidden;
	font-size: 0;
}
.headerSP .headerMenu {
	text-align: left;
	background: #fff;
}
.headerSP .headerNav{
	display: none;
}
.headerSP .headerNav ul li {
	font-size: 14px;
	border-top: 1px solid #e6e6e6;
}
.headerSP .headerNav ul li a {
	position: relative;
	display: block;
}

.headerSP .headerNav ul li .navArw01,
.headerSP .headerNav ul li .navArw02 {
	position: relative;
	display: block;
}
.headerSP .headerNav ul li .navArw01 {
	padding: 9px 10px 9px 30px;
	font-size: 16px;
	font-weight: bold;
}
.headerSP .headerNav ul li .navArw01:before {
	content: "";
	position: absolute;
	top: 9px;
	left: 6px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: url(../images/sp_nav_arw01.svg) no-repeat center center / 6px auto #ff6600;
}
.headerSP .headerNav ul li .navArw01.open:before {
	transform: rotate(90deg);
}
.headerSP .headerNav ul li .navArw02 {
	padding: 10px 10px 10px 30px;
}
.headerSP .headerNav ul li .navArw02:before {
	content: "";
	position: absolute;
	top: 13px;
	left: 11px;
	width: 10px;
	height: 10px;
	background: url(../images/sp_nav_arw02.svg) no-repeat center center / 6px auto;
}
.headerSP .headerNav ul li .navArw02.open:before {
	transform: rotate(90deg);
}
.headerSP .headerNav ul.nav03 li a {
	position: relative;
	display: block;
	padding: 10px 10px 10px 44px;
}
.headerSP .headerNav ul.nav03 li ul li a {
	padding-left: 57px;
}
.headerSP .headerNav ul.nav03 li a:before {
	content: "";
	position: absolute;
	top: 18px;
	left: 29px;
	width: 10px;
	height: 1px;
	background: #ff6600;
}
.headerSP .headerNav ul.nav03 li ul li a:before {
	left: 42px;
}





.headerPC {
	display: none;
}



}












/* SP layout
-------------------------------------------------------------------*/
@media screen and (max-width: 768px) {

.forPC { display: none !important; }
.forSP { display: block; }
img.forSP, br.forSP, span.forSP { display: inline-block }


/*-------------------------------------
 layout
-------------------------------------*/


/*-------------------------------------
 main
-------------------------------------*/


/*-------------------------------------
 footer
-------------------------------------*/
.footer {
	padding-top: 18px;
	padding-bottom: 90px;
}

.footerLink ul {
	flex-wrap: wrap;
	margin: 0 -8px;
	padding: 0 0 17px 0;
}
.footerLink ul li {
	position: relative;
	padding: 0 8px;
}
.footerLink ul li + li:before {
	width: 1px;
	height: 15px;
}
.footerSns ul {
	margin: 0 0 8px 0;
}

.pagetop a {
	position: absolute;
	top: auto;
	right: 10px;
	bottom: 20px;
	display: block;
	width: 48px;
	height: 48px;
	padding: 22px 0 0 0;
	font-size: 13px;
}
.pagetop a:before {
	top: 16px;
	width: 10px;
	height: 10px;
	margin-left: -5px;
}





.topicpath ul {
    margin: 0 auto;
    width: 91%;
    max-width: 1200px;
    padding: 0.5em 0;
}
.topicpath {
    background-color: #f4f6f8;
    font-size: 11px;
}

.listTTL ul li {
    position: relative;
    margin: 0 0 0 0;
    padding: 14px 6px 14px 18px;
    cursor: pointer;
    color: #fff;
    font-weight: bold;
    border-radius: 13px 13px 0 0;
    background: #ff6600;
}

.listTTL h2 {
    position: absolute;
    left: 60%;
    font-size: 16px;
    top: 11px;
}
.categorySearchList{
	grid-template-columns: 100%;
	padding-bottom: 20px;
    margin-bottom: 20px;
	clear: both;
}

.listSectionFieldTTL h3 {
    position: absolute;
    top: calc(50% - 11px);
    color: #FFFFFF;
    font-size: 16px;
    padding-left: 14px;
}
.listTTL{
	margin-bottom: 20px;
}

.listSection {
    margin-top: 20px;
    margin-bottom: 40px;
}
.listSectionFieldTTL .fieldDetailLink a {
    position: relative;
    display: inline-block;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    padding: 8px 30px;
    background-color: #FFFFFF;
    font-size: 10px;
}
.listSectionFieldTTL h3 {
    position: absolute;
    top: calc(50% - 9px);
    color: #FFFFFF;
    font-size: 14px;
    padding-left: 13px;
}
.listSectionFieldTTL .fieldDetailLink{
	padding-right: 10px;
}
.listTTL ul li em {
    font-size: 16px;
}
.categoryDetailLink{
	font-size: 12px;
	float: right;
	display: inline-block;
	margin-bottom: 30px;
	position: relative;
}
.categoryDetailLink.forSP{
	display: inline-block !important;
}
.listSectionTTL {
    display: grid;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    grid-template-columns: 70px 1fr;
    position: relative;
}
.categoryDetailLink{
	padding: 7px 40px;
}

}


/* PC layout
-------------------------------------------------------------------*/

@media screen and (min-width: 769px) {

.forPC { display: block; }
.forSP { display: none !important; }
img.forPC, br.forPC, span.forPC { display: inline-block }

a img,
.hover,
.btn a,
.pagetop a,
.headerPC .headerSearch a {
	text-decoration: none;
	transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	backface-visibility: hidden;
}
a:hover img,
.hover:hover,
.btn a:hover,
.pagetop a:hover {
	opacity: 0.7;
}

.topCategoryList .item a img:hover{
	opacity: 0.5;
}


.headerPC .headerNav ul li a:hover {
	border-bottom-color: #ff6600;
}

.headerPC .headerNav ul li.current a {
	border-bottom-color: #ff6600;
    color: #ff6600;
}


a[href^="tel:"] {
	pointer-events: none;
}

.pwBlock{
	display: none;
}




}

/* gNav */

@media screen and (max-width: 1260px) {
	.headerPC .headerNav ul li {
		font-size: 14px;
	}
	.headerPC .headerNav {
		width: calc(100% - 100px);
	}
	header nav > ul {
		width: 100%;
	}
	.headerPC .headerMenu{
		width: 100%;
	}
}


