@charset "utf-8";
/* 
 * 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,
input,
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,
:before,
:after {
	margin: 0;
	padding: 0;
	border: 0;
	font-style: normal;
	vertical-align: bottom;
	background-repeat: no-repeat;
	box-sizing: border-box;
	backface-visibility: hidden;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
	display: block;
}

html {
	font-size: 62.5%;
	background-color: #f4f4f4;
	overflow-y: scroll;
	overflow-x: hidden;
}

html::-webkit-scrollbar {
	width: 8px;
	background: #f1f1f1;
	box-shadow: inset 0 0 7px rgba(0,0,0,.2);
}

html::-webkit-scrollbar-thumb {
	background-color: #c3c3c3;
}

.g-body {
	color: #333;
	font-size: 1.6rem;
	font-family: 'Roboto', 'Noto Sans JP';
	font-weight: 400;
	font-feature-settings: 'pwid';
	-webkit-font-smoothing: subpixel-antialiased;
	-moz-osx-font-smoothing: unset;
	-webkit-text-size-adjust: 100%;
	line-height: 1;
	letter-spacing: .05em;
	width: 100%;
	margin: 0;
	padding: 0;
	background-color: #f4f4f4;
	cursor: default;
}

.g-body:lang(en) {
	font-family: 'Roboto', sans-serif;
	letter-spacing: 0;
}

input,
textarea,
button,
select,
option,
textarea {
	font-family: 'Roboto', 'Noto Sans JP';
	margin: 0;
	padding: 0;
	outline: none;
	border-radius: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}

ol,
ul {
	list-style: none;
}

table {
	border-collapse: separate;
	border-spacing: 0;
}

a:link,
a:before,
a:after,
a img,
input[type='image'],
input[type='submit'] {
	color: #333;
	text-decoration: none;
	transition: .3s cubic-bezier(.75,0,.35,1);
}

a:visited {
	color: #522077;
}

a:hover,
a:hover img,
input[type='image']:hover {
	color: #DC000C;
	text-decoration: none;
}

a:focus {
	outline: none;
}

.js-Link__invalid,
.js-Link__invalid:hover {
	color: #1e1e1e !important;
	opacity: 1 !important;
	cursor: default;
}

img {
	width: 100%;
	height: auto;
	image-rendering: -webkit-optimize-contrast;
}

button {
	margin:0;
	padding:0;
	border:0;
	background:transparent;
}

sup {
	font-size: 1.1rem;
	line-height: 1;
	letter-spacing: .1em;
	vertical-align: text-top;
}

sub {
	font-size: 1.1rem;
	line-height: 1;
	letter-spacing: .1em;
	vertical-align: 0;
}

strong,
em,
b {
	font-weight: 400;
}

::selection {
	color: #fff;
	background: #dc000c;
}

.js-scrollClass,
.js-scrollClass:before,
.js-scrollClass:after {
	transition: .6s cubic-bezier(.75,0,.35,1);
}

.u-scrollClass {
	opacity: 0;
	transform: translate(0,30px);
}

.u-scrollClass.is-stateScroll {
	opacity: 1;
	transform: translate(0,0);
}

/* 
* Utility
* ==================================================================================================== */
.u-contents {
	margin: 100px 0 0;
}

.u-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.u-inner--sub {
	padding-right: 105px;
	padding-left: 105px;
}

.u-show__mobile {
	display: none !important;
}

.u-hide__mobile {
	display: block !important;
}

.u-show__tablet {
	display: none !important;
}

.u-hide__tablet {
	display: block !important;
}

.u-cover {
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.3);
	position: fixed;
	top: 0;
	left: 0;
	visibility: hidden;
	opacity: 0;
	transition: .3s cubic-bezier(.75,0,.35,1);
	z-index: 100;
}

.u-transition {
	transition: .3s cubic-bezier(.75,0,.35,1);
}

.u-font__serif {
	font-family: 'Times New Roman', 'Noto Serif JP' !important;
}

.u-font__light {
	font-weight: 300 !important;
}

.u-font__normal {
	font-weight: 400 !important;
}

.u-font__middle {
	font-weight: 500 !important;
}

.u-font__bold {
	font-weight: 700 !important;
}

.u-font__italic {
	font-style: italic;
}

.u-font-size__16 {
	font-size: 1.6rem;
}

.u-font-size__12 {
	font-size: 1.2rem;
}

.u-lineheight__none {
	line-height: 1;
}

.u-lineheight__small {
	line-height: 1.35;
}

.u-align__right {
	text-align: right !important;
}

.u-align__center {
	text-align: center !important;
}

.u-align__left {
	text-align: left !important;
}

.u-vertical-align__top {
	vertical-align: top !important;
}

.u-float__right {
	float: right !important;
}

.u-float__left {
	float: left !important;
}

.u-display__block {
	display: block;
}

.u-display__inline-block {
	display: inline-block;
}

.u-display__none {
	display: none;
}

.u-color__white {
	color: #fff !important;
}

.u-color__black {
	color: #000 !important;
}

.u-color__gray {
	color: #666 !important;
}

.u-color__blue {
	color: #294197 !important;
}

.u-color__red {
	color: #dc000c !important;
}

.u-color__orange {
	color: #e1521b !important;
}

.u-image {
	margin-bottom: 1em;
}

.u-text {
	line-height: 2;
	margin-top: .6715em;
}

.u-text__indent {
	text-indent: 1em;
}

.u-textdeco__underline {
	text-decoration: underline !important;
}

a.u-textdeco__underline:hover {
	text-decoration: none !important;
}

.u-textdeco__none {
	text-decoration: none !important;
}

.u-text .u-icon__arrow-basic:before,
.u-text .u-icon__arrow-basic:after {
	margin-top: .4em;
}

.u-note > * {
	color: #666;
	font-size: 1.2rem;
	line-height: 1.75;
	margin: 0 0 .35em;
	position: relative;
}

.u-note > *:before {
	content: attr(data)'';
	color: #DC000C;
	letter-spacing: 0;
	position: absolute;
	top: 0;
	left: 0;
}

.u-note__indent {
	padding-left: 1.95em;
}

.u-note__indent:lang(en) {
	padding-left: .95em;
}

.u-note__indent--2half {
	text-indent: -3em;
	padding-left: 3em;
}

.u-note__indent--large:lang(en) {
	padding-left: 1.5em;
}

.u-note__indent--note:lang(en) {
	padding-left: 2.75em;
}

.u-list__items {
	margin-top: 1.25em;
	counter-reset: count 0;
}

.u-list__item {
	line-height: 1.5;
	margin: 0 0 .5em;
	padding-left: 1em;
	position: relative;
}

.u-list__item:before {
	content: '';
	width: 6px;
	height: 6px;
	background: #333;
	border-radius: 50%;
	position: absolute;
	top: .525em;
	left: .15em;
}

.u-list__item--decimal {
	padding-left: 1.75em;
}

.u-list__item--decimal:before {
	content: counter(count) ". ";
	counter-increment: count 1;
	color: #000;
	font-weight: 700;
	width: auto;
	height: auto;
	background: transparent;
	top: 0;
	left: .15em;
}

.u-list__items--secondary .u-list__item {
	padding-left: 1.5em;
	counter-increment: number;
}

.u-list__items--secondary .u-list__item:before {
	content: counter(number)"）";
	width: auto;
	height: auto;
	background: transparent;
	border-radius: 0;
	top: 0;
	left: 0;
}

.u-list__item .u-icon:after {
	transform: translate(0,-.35em);
}

.u-list__item--line {
	padding-left: 1.5em;
}

.u-list__item--line:before {
	background-color: #707070;
	width: 12px;
	height: 1px;
	top: .65em;
}

.u-list__item.-disc_none {
	padding-left: 0;
}

.u-list__item.-disc_none:before {
	display: none;
}

.u-icon {
	display: inline-block;
	position: relative;
}

.u-icon:before {
	position: absolute;
	top: 0;
	left: 0;
}

.u-text .u-icon:after {
	vertical-align: -.225em;
}

.u-icon__arrow-basic {
	padding-left: 1.5em;
}

.u-icon__arrow-basic:before {
	content: '';
	line-height: inherit;
	width: 18px;
	height: 18px;
	margin: -.1em .35em 0 0;
	display: inline-block;
	transition: .3s cubic-bezier(.75,0,.35,1);
	background: url("/_assets/img/common/arrow-02@red.svg") no-repeat center / 100% 100%;
}

.u-icon__arrow-basic--down:before {
	transform: rotate(90deg);
}

.u-icon__arrow-basic--small {
	font-size: 1.4rem;
}

.u-icon__arrow-basic--small:before {
	content: '';
	width: 4px;
	height: 8px;
	margin-bottom: .275em;
	background: url("/_assets/img/common/arrow-01@red.svg") no-repeat center / 100% 100%;
	top: .2em;
	left: .6em;
}

.u-font-size__12 .u-icon__arrow-basic:before {
	width: 14px;
	height: 14px;
}

.u-icon__pdf {
	padding-left: 1.5em;
	display: inline-block;
}

.u-icon__pdf:before {
	content: '';
	line-height: inherit;
	width: 18px;
	height: 20px;
	margin: -.25em .35em 0 0;
	display: inline-block;
	transition: .3s cubic-bezier(.75,0,.35,1);
	background: url("/_assets/img/common/icon-pdf-01.svg") no-repeat center / 100% 100%;
}

.u-icon__pdf--singleunit {
	line-height: 1.5;
	padding-left: 1.75em;
	display: inline-block;
}

.u-icon__pdf--singleunit:before {
	margin-top: .05em;
	position: absolute;
	top: 0;
	left: 0;
}

.u-icon__window:after {
	content: '';
	line-height: inherit;
	width: 14px;
	height: 14px;
	margin: 0 0 .1em .35em;
	display: inline-block;
	transition: .3s cubic-bezier(.75,0,.35,1);
	background: url("/_assets/img/common/icon-window-01.svg") no-repeat center / 100% 100%;
}

.u-basicButton a {
	padding: .35em 2em;
	background: #fff;
}

.u-title__page {
	color: #000;
	font-size: 3.8rem;
	font-weight: 400;
	line-height: 1.35;
	letter-spacing: .075em;
	margin-bottom: 50px;
}

.u-title__page:lang(en) {
	letter-spacing: 0;
}

.u-title__hi {
	color: #000;
	font-size: 2.8rem;
	font-weight: 500;
	line-height: 1.75;
	margin-top: 3.605em;
	padding: 0 0 .1em;
	position: relative;
}

.u-title__hi:before {
	content: '';
	width: 50px;
	height: 1px;
	display: block;
	background: #DC000C;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 10;
}

.u-title__hi:after {
	content: '';
	width: 100%;
	height: 1px;
	display: block;
	background: #C2C7C7;
	position: absolute;
	bottom: 0;
	left: 0;
}

.u-title__hi small {
	font-size: 1.4rem;
	font-weight: 400;
	letter-spacing: 0;
	display: inline-block;
	transform: translate(1em,-.775em);
}

.u-title__hi + * {
	margin-top: 3.125em;
}

.u-title__mid {
	color: #000;
	font-size: 2.2rem;
	font-weight: 500;
	line-height: 1.5;
	margin-top: 2.275em;
}

.u-title__mid + * {
	margin-top: 1.5em;
}

.u-title__low {
	color: #000;
	font-weight: 700;
	line-height: 1.5;
	margin-top: 1.525em;
}

.u-contents .u-title__page:first-child,
.u-contents .u-title__hi:first-child,
.u-contents .u-title__mid:first-child,
.u-contents .u-title__low:first-child {
	margin-top: 0;
}

.u-position__center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.u-position__absolute {
	position: absolute;
}

.u-position__fixed {
	position: fixed;
}

.u-position__relative {
	position: relative;
}

.u-flex {
	display: flex;
	flex-wrap: wrap;
}

.u-flex__center {
	justify-content: center;
}

.u-flex__right {
	justify-content: flex-end;
}

.u-flex__middle {
	align-items: center;
}

.u-flex__bottom {
	align-items: flex-end;
}

.u-flex__reverse {
	flex-direction: row-reverse;
}

.u-flex__between {
	justify-content: space-between;
}

.u-flex__column--2 > * {
	width: calc(100% / 2);
}

.u-flex__column--2-1 > *:nth-child(1) {
	width: calc((100% / 3) * 2);
}

.u-flex__column--2-1 > *:nth-child(2) {
	width: calc(100% / 3);
}

.u-flex__column--3 > * {
	width: calc(100% / 3);
}

.u-flex__column--4 > * {
	width: calc(100% / 4);
}

.u-flex__column--5 > * {
	width: calc(100% / 5);
}

.u-flex__column--6 > * {
	width: calc(100% / 6);
}

.u-flex__column--7 > * {
	width: calc(100% / 7);
}

.u-flexChildWrap {
	margin-right: -12px;
	margin-left: -12px;
}

.u-flexChild {
	padding-right: 12px;
	padding-left: 12px;
}

.u-flexChild.u-flexChildWrap {
	margin-right: 0;
	margin-left: 0;
	padding-right: 0;
	padding-left: 0;
}

.u-mgt__125 { margin-top: 125px !important; }
.u-mgt__120 { margin-top: 120px !important; }
.u-mgt__115 { margin-top: 110px !important; }
.u-mgt__110 { margin-top: 110px !important; }
.u-mgt__105 { margin-top: 100px !important; }
.u-mgt__100 { margin-top: 100px !important; }
.u-mgt__95 { margin-top: 95px !important; }
.u-mgt__90 { margin-top: 90px !important; }
.u-mgt__85 { margin-top: 85px !important; }
.u-mgt__80 { margin-top: 80px !important; }
.u-mgt__75 { margin-top: 75px !important; }
.u-mgt__70 { margin-top: 70px !important; }
.u-mgt__65 { margin-top: 65px !important; }
.u-mgt__60 { margin-top: 60px !important; }
.u-mgt__55 { margin-top: 55px !important; }
.u-mgt__50 { margin-top: 50px !important; }
.u-mgt__45 { margin-top: 45px !important; }
.u-mgt__40 { margin-top: 40px !important; }
.u-mgt__35 { margin-top: 35px !important; }
.u-mgt__30 { margin-top: 30px !important; }
.u-mgt__25 { margin-top: 25px !important; }
.u-mgt__20 { margin-top: 20px !important; }
.u-mgt__15 { margin-top: 15px !important; }
.u-mgt__10 { margin-top: 10px !important; }
.u-mgt__5 { margin-top: 5px !important; }
.u-mgt__0 { margin-top: 0 !important; }
.u-mgt__-5 { margin-top: -5px !important; }
.u-mgt__-10 { margin-top: -10px !important; }
.u-mgt__-20 { margin-top: -20px !important; }
.u-mgt__-30 { margin-top: -30px !important; }

.u-pdl__1em { padding-left: 1em !important; }
.u-pdl__125em { padding-left: 1.25em !important; }
.u-pdl__15em { padding-left: 1.5em !important; }
.u-pdl__155em { padding-left: 1.55em !important; }
.u-pdl__165em { padding-left: 1.65em !important; }
.u-pdl__175em { padding-left: 1.75em !important; }


.u-pdt__large {
	padding-top: 50px !important;
}

.u-pdt__middle {
	padding-top: 25px !important;
}

.u-pdt__small {
	padding-top: 10px !important;
}

.u-imageCaption {
	font-size: 1.4rem;
	line-height: 1.75;
	margin-top: .65em;
}

.u-buttonBasic > * {
	color: #DC000C !important;
	line-height: 1.35;
	text-align: center;
	min-width: 317px;
	padding: 20px 40.1px;
	border-radius: 10em;
	background-color: #fff;
	display: inline-block;
	border: 1px solid #DC000C;
}

.u-buttonBasic--small > * {
	font-size: 1.4rem;
	min-width: 0;
	padding: 8px 45.1px;
}

.no-touch .u-buttonBasic > *:hover {
	color: #fff !important;
	background: #DC000C;
}

.is-loaddone .u-buttonBasic > * {
	padding: 20px 40px;
}

.is-loaddone .u-buttonBasic--small > * {
	padding: 8px 45px;
}

/* Template Table */
.u-table-corner table {
	width: 100%;
	border-bottom: 1px solid #C2C7C7;
}

.u-table-corner--widthauto table {
	width: auto;
}

.u-table-corner th {
	color: #000;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.75;
	text-align: left;
	vertical-align: top;
	padding: 1em 1em .95em 1.25em;
	border-top: 1px solid #C2C7C7;
	background: #e5f6f4;
	position: relative;
}

.u-table-corner td {
	font-size: 1.4rem;
	line-height: 1.75;
	vertical-align: middle;
	padding: 1em 1em .95em 1.25em;
	border-top: 1px solid #C2C7C7;
	border-left: 1px solid #C2C7C7;
}

.u-table-cornerHead th {
	text-align: center;
	background: #F4F4F4;
	border-left: 1px solid #C2C7C7;
}

.u-table-cornerHead th:first-child {
	border-left: 0;
}

/*
.u-table-corner td .u-icon:before,
.u-table-corner td .u-icon:after {
	transform: translateY(-.25em);
}
*/

.u-table-corner .u-icon:before,
.u-table-corner .u-icon:after {
	vertical-align: -.25em;
	margin-top: 0;
}

.u-table-corner .u-border-left {
	border-left: 1px solid #C2C7C7 !important;
}

.u-table-corner .u-vertical-align-mid {
	vertical-align: middle;
}

.u-newsList {
	border-bottom: 1px solid #E8E8E8;
}

.u-newsList__item {
	padding: 25px 0;
	border-top: 1px solid #E8E8E8;
	display: flex;
	align-items: center;
}




/*
.u-newsList__item.is-active:nth-child(n + 4) {
	opacity: .5;
}
*/

.u-newsList__data {
	line-height: 1;
	letter-spacing: 0;
	width: 330px;
	display: flex;
	align-items: center;
}

.u-newsList__data:lang(en) {
	width: 340px;
}

.u-newsList__data time {
	color: #777;
	font-size: 1.4rem;
	font-weight: 500;
	width: 140px;
}

.u-newsList__data time:lang(en) {
	width: 110px;
}

.u-newsList__data i {
	color: #fff;
	font-size: 1.2rem;
	font-weight: 500;
	text-align: center;
	min-width: 140px;
	padding: .5em 1em;
	background: #000;
	display: inline-block;
}

.u-newsList__data i:lang(en) {
	min-width: 230px;
	line-height: 1.35;
}

.u-newsList__text {
	line-height: 1.5;
	width: calc(100% - 330px);
	position: relative;
}

.u-newsList__text:lang(en) {
	padding-left: 20px;
}

.u-newsList__text a {
	padding-right: 55px;
	display: block;
}

.u-newsList__text a:after {
	content: '';
	width: 32px;
	height: 32px;
	border: 1px solid #DC000C;
	background: url(/_assets/img/common/arrow-01@red.svg) no-repeat center / 6px 10px;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translate(0,-50%) rotate(.005deg);
	transition: .3s cubic-bezier(.75,0,.35,1);
}

.u-newsList__text a:hover:after {
	background-color: #DC000C;
	background-image: url(/_assets/img/common/arrow-01@white.svg);
}

.c-newsCategoryList__items {
	display: flex;
	position: relative;
}

.c-newsCategoryList__item {
	color: #555;
	line-height: 1;
	letter-spacing: 0;
	white-space: nowrap;
	padding: 0 .75em;
	position: relative;
	cursor: pointer;
	transition: .3s cubic-bezier(.75,0,.35,1);
}

.c-newsCategoryList__item:hover {
	color: #DC000C;
}

.c-newsCategoryList__item:after,
.c-newsCategoryList__items:before {
	content: '';
	width: 1px;
	height: 1em;
	background: #ccc;
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
}

.c-newsCategoryList__items:before {
	right: auto;
	left: 0;
}

.c-newsCategoryList__item:before {
	content: '';
	width: calc(100% - 6px);
	height: 4px;
	background: #DC000C;
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translate(-50%,0);
	display: none;
}

.c-newsCategoryList__item.is-active:before {
	display: block;
}


.c-news .u-newsList {
	margin-top: 50px;
}

.c-news .u-newsList:lang(en) {
	margin-top: 20px;
}

.u-newsList__item.is-hide {
	display: none;
}


.u-box {
	padding: 35px 40px 40px;
	background: #e5f6f4;
}

.u-box__title {
	color: #000;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.35;
	padding: 0 0 .55em;
	position: relative;
}

.u-box__title:after {
	content: '';
	width: 100px;
	height: 3px;
	display: block;
	background: #89703C;
	position: absolute;
	bottom: 0;
	left: 0;
}

.u-box--grayBorder {
	padding: 32px;
	background: transparent;
	border: 8px solid #F4F4F4;
}

.u-box--adobeAcrobat {
	display: flex;
	align-items: center;
}

.u-box--adobeAcrobat figure {
	width: 158px;
}

.u-box--adobeAcrobat p {
	width: calc(100% - 158px);
	margin: -.25em 0 0;
	padding: 0 0 0 30px;
}

.u-anchormenu__items {
	display: flex;
	flex-wrap: wrap;
}

.u-anchormenu__item {
	line-height: 1.5;
	white-space: nowrap;
	margin: 1.5em 40px 0 0;
}

.u-anchormenu__item .u-icon__arrow-basic:before {
	margin-top: .1em;
}

/* TabPanel */
.u-tab__group {
	position: relative;
}

.u-tab__panel {
	display: none;
}

.u-tab__panel.is-show {
	display: block;
}

.u-tabButton {
	width: 100%;
}

.u-tabButton__item {
	background: #f1f1f1;
	transition: .3s cubic-bezier(0.75, 0, 0.35, 1);
	cursor: pointer;
}

.u-tabButton__item:last-child {
}

.u-tabButton__item.is-activeTab,
.no-touch .u-tabButton__item:hover {
	color: #fff;
	background: #DC000C;
}

.u-acpanel__item {
	margin: 10px 0 0;
	background: #f7f7f7;
}

.u-acpanel__title {
	color: #000;
	font-size: 1.6rem;
	font-weight: 500;
	width: 100%;
	padding: 20px 150px 20px 20px;
	display: flex;
	align-items: center;
	position: relative;
	cursor: pointer;
	transition: .3s cubic-bezier(.75,0,.35,1);
}

.u-acpanel__title:hover {
	background: rgba(255,255,255,.5);
}

.u-acpanel__image {
	width: 110px;
}

.u-acpanel__name {
	padding: 0 0 0 50px;
	display: flex;
	align-items: center;
}

.u-acpanel__name h2 {
	color: #000;
	font-size: 2.2rem;
	font-weight: 500;
	min-width: 150px;
}

.u-acpanel__name h2:before {
	content: attr(data-name)'';
	color: #333;
	font-size: 1.6rem;
	font-weight: 500;
	margin: 0 0 10px;
	display: block;
}

.u-acpanel__name p {
	font-size: 1.4rem;
	line-height: 1.5;
}

.u-acpanel__title span {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	position: absolute;
	top: 50%;
	right: 22px;
	transform: translate(0,-50%);
}

.u-acpanel__title span:before {
	content: '詳しく見る';
	color: #333;
	font-weight: 400;
	letter-spacing: 0;
}

.u-acpanel__title span:lang(en):before {
	content: 'SHOW MORE';
}

.u-acpanel__title.is-active span:before {
	content: '閉じる';
}

.u-acpanel__title.is-active span:lang(en):before {
	content: 'CLOSE';
}

.u-acpanel__title span i {
	width: 20px;
	height: 20px;
	margin: 0 0 0 12px;
	background: #dc000c;
	display: block;
	position: relative;
}

.u-acpanel__title span i:before,
.u-acpanel__title span i:after {
	content: '';
	width: 11px;
	height: 3px;
	border-radius: 1em;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	transition: .3s cubic-bezier(.75,0,.35,1);
	
}

.u-acpanel__title span i:after {
	transform: translate(-50%,-50%) rotate(90deg);
}

.u-acpanel__title.is-active span i:after {
	transform: translate(-50%,-50%) rotate(180deg);
}

.u-acpanel__panel {
	position: relative;
	display: none;
}

.u-acpanel__panelInner {
	padding: 25px 20px;
}

.u-acpanel__panelInner > .u-text:first-child {
	margin-top: 0;
}

.u-acpanel__panelInner .u-text {
	line-height: 1.75;
}

.u-acpanel__panel:after {
	content: '';
	width: 100%;
	height: 1px;
	display: block;
	background: #d1d4d4;
	position: absolute;
	top: 0;
	left: 0;
}

.u-searchBox .gsib_a {
	padding: 7px 10px 10px;
}



























/*
 * Layout
 * ==================================================================================================== */
.g-wrapper {
	padding: 140px 30px 240px;
	background: #fff;
}

.g-container {
}

.g-main {
}

/*
 * Breadcrumb
 * ------------------------------------------------------------------------------------------------ */
.g-breadcrumb {
	padding: 15px 6px 0;
	position: relative;
	z-index: 10;
}

.g-breadcrumb + * {
	margin-top: 70px;
}

.g-breadcrumb__items {
	display: flex;
	align-items: center;
}

.g-breadcrumb__item {
	white-space: nowrap;
}

.g-breadcrumb__item:after {
	content: '';
	width: 5px;
	height: 8px;
	margin: 0 12px 0 8px;
	display: inline-block;
	background: url("/_assets/img/common/arrow-01@black.svg") no-repeat center / 100% 100%;
	transform: translate(0,-.15em);
}

.g-breadcrumb__item:last-child {
	padding-right: 30px;
}

.g-breadcrumb__item:last-child:after {
	display: none;
}

.g-breadcrumb__item a {
	color: #999;
}

.g-breadcrumb__item:last-child a {
	color: #333;
}

.no-touch .g-breadcrumb__item a:hover {
	color: #DC000C;
}

.g-breadcrumb__name {
	font-size: 1.2rem;
	line-height: 1;
}

.g-breadcrumb--white .g-breadcrumb__item:after {
	background-image: url("/_assets/img/common/arrow-01@white.svg");
}

.g-breadcrumb--white .g-breadcrumb__item,
.g-breadcrumb--white .g-breadcrumb__item a {
	color: #fff;
}

.g-breadcrumb--white .g-breadcrumb__item a:hover {
	color: #fff;
	opacity: .8;
}


/*
* Header
* ==================================================================================================== */
.g-header {
	width: 100%;
	height: 140px;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 200;
	transition: .6s cubic-bezier(0.75, 0, 0.35, 1);
}

.is-scroll .g-header {
	height: 60px;
}

.g-header:after {
	content: '';
	width: 100%;
	height: 1px;
	background: rgba(0,0,0,.1);
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
}

.g-headerLogo {
	width: 200px;
	position: absolute;
	top: 30px;
	left: 30px;
	transition: .6s cubic-bezier(0.75, 0, 0.35, 1);
}

.g-headerLogo:lang(en) {
	width: 256.5px;
}

.g-headerLogo img {
	position: absolute;
}

.g-headerLogo .g-headerLogo__logo--white {
	opacity: 0;
}

.is-scroll .g-headerLogo {
	width: 178px;
	top: 17px;
	left: 24px;
}

.is-scroll .g-headerLogo:lang(en) {
	width: 208px;
}

.no-touch .g-headerLogo a:hover {
	opacity: .6;
}

.g-headerMenu {
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
}

.g-headerMenu__items {
	height: 100%;
	display: flex;
	justify-content: flex-end;
}

.g-headerMenu__item {
	position: relative;
}

.g-headerMenu__item:after {
	content: '';
	width: 100%;
	height: 5px;
	display: block;
	background: #DC000C;
	position: absolute;
	bottom: 0;
	left: 0;
	transform-origin: left bottom;
	transform: scaleX(0);
	transition: .3s cubic-bezier(.75,0,.35,1);
	transition-delay: .25s;
}

.no-touch .g-headerMenu__item:hover:after {
	transform: scaleX(1);
}

.g-headerMenu__item > * {
	width: 70px;
	height: 70px;
	background-size: 18px auto;
	background-position: center;
	display: block;
	position: relative;
	transition: .3s cubic-bezier(0.75, 0, 0.35, 1);
	cursor: pointer;
}

.is-scroll .g-headerMenu__item > * {
	width: 60px;
	height: 60px;
}

.g-headerMenu__item--global > * {
	background-color: #727272;
}

.g-headerMenu__item--search > * {
	background-color: #000;
}

.g-headerMenu__item--inquiry > * {
	background-color: #DC000C;
	transition: .6s cubic-bezier(0.75, 0, 0.35, 1);
}

.g-headerMenu__item > *:after {
	transition: .3s cubic-bezier(.75,0,.35,1);
}

.g-headerMenu__item--search > *:after {
	background-image: url("/_assets/img/common/icon-search-01.svg");
}

.g-headerMenu__item--inquiry > *:after {
	background-image: url("/_assets/img/common/icon-inquiry-01.svg");
}

.g-headerMenu__item > *:after {
	content: '';
	width: 17px;
	height: 17px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.g-headerMenu__item--global > *:after {
/*	background-image: url("/_assets/img/common/icon-global-01.svg");*/
	content: 'ENG';
	color: #fff;
	font-size: 1.5rem;
	font-weight: 500;
	width: auto;
	height: auto;
}

.g-headerMenu__item--global > *:lang(en):after {
	content: 'JPN';
}

.no-touch .g-headerMenu__item > *:hover:after {
	opacity: .6;
}

.g-navi {
	position: fixed;
	top: 140px;
	left: 0;
	transform: translate(0,-100%);
	z-index: 300;
}

.is-scroll .g-navi {
	animation: anim-navi 1s both;
}

@keyframes anim-navi {
	0% {
		opacity: 1;
	}
	25% {
		opacity: 0;
	}
	50% {
		top: 120px;
		left: 0;
		opacity: 0;
	}
	75% {
		top: 60px;
		opacity: 0;
	}
	100% {
		width: calc(100% - 485px);
		top: 60px;
		left: auto;
		right: 200px;
		opacity: 1;
	}
}

.g-naviMenu__items {
	display: flex;
	padding: 0 0 0 20px;
	transition: .6s cubic-bezier(0.75, 0, 0.35, 1);
}

.is-scroll .g-naviMenu__items {
	padding-left: 0;
	justify-content: flex-end;
}

.g-naviMenu__item {
	padding: 0 21px;
	transition: .6s cubic-bezier(0.75, 0, 0.35, 1);
}

.is-scroll .g-naviMenu__item {
	padding-right: 15px;
	padding-left: 15px;
}

.g-naviMenu__item a {
	color: #000;
	padding: 0 0 20px;
	display: block;
	position: relative;
	z-index: 10;
}

.g-naviMenu__item a:after {
	content: '';
	width: 100%;
	height: 5px;
	display: block;
	background: #DC000C;
	position: absolute;
	bottom: 0;
	left: 0;
	transform-origin: left bottom;
	transform: scaleX(0);
	transition-delay: .25s;
}

.g-naviMenu__item a.is-focusActive:after,
.no-touch .g-naviMenu__item a:hover:after {
	transform: scaleX(1);
}

.g-naviMenu__name {
	font-size: 1.5rem;
	white-space: nowrap;
	transition: .6s cubic-bezier(0.75, 0, 0.35, 1);
}

.g-naviPullDown {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	transform: translate(0,140px);
	z-index: 150;
	transition: .6s cubic-bezier(0.75, 0, 0.35, 1);
}

.is-scroll .g-naviPullDown {
	transform: translate(0,60px);
}

.g-naviPullDown a {
	color: #000;
}

.g-naviPullDown__inner {
	width: 100%;
	max-width: 1260px;
	padding: 0 30px 60px;
	position: absolute;
	top: 0;
	left: 50%;
	visibility: hidden;
	opacity: 0;
	transform: translate(-50%,0);
	transition: .6s cubic-bezier(0.75, 0, 0.35, 1);
}

.g-naviPullDown__inner.is-active {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.g-naviBase {
	width: 100%;
	background: #F4F4F4;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 120;
	transform-origin: top center;
	translate: 0 120px;
	transition:
		padding-top .6s cubic-bezier(0.75, 0, 0.35, 1),
		translate .6s cubic-bezier(0.75, 0, 0.35, 1)
	;
	will-change:
		padding-top,
		translate
	;
}

.is-scroll .g-naviBase {
	translate: 0 40px;
}

.is-gnaviPullDown-active .u-cover {
	opacity: 1;
	visibility: visible;
}

.g-menu__title {
	margin: 60px 0 0;
	position: relative;
}

.g-menu__titleName > * {
	font-size: 2.4rem;
	position: relative;
}

.no-touch .g-menu__titleName > *:hover {
	color: #DC000C;
}

.g-menu__titleName > *:after {
	content: '';
	width: 32px;
	height: 32px;
	border: 1px solid #DC000C;
	background: url("/_assets/img/common/arrow-01@red.svg") no-repeat center / 6px 10px;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	right: -12px;
	transform: translate(100%,-50%) rotate(.005deg);
}

.no-touch .g-menu__titleName > *:hover:after {
	background-color: #DC000C;
	background-image: url("/_assets/img/common/arrow-01@white.svg");
}

.g-menu__title br {
	display: none;
}

.g-menu__inner {
	margin: 20px 0 0;
	display: flex;
}

.g-menu_wrap {
	width: calc(100% - 245px);
	display: flex;
	flex-wrap: wrap;
}

.g-menu__items {
	width: calc(100% / 4);
	padding: 0 0 0 18px;
}

.g-menu__item {
	margin: 30px 0 0;
	position: relative;
}

.g-navi__name {
	font-size: 1.4rem;
	line-height: 1.5;
}

.g-menuChild__items {
	margin: 20px 0 0;
}

.g-menuChild__item {
	margin: 12px 0 0;
}

.g-menuChild__item a {
	color: #696969;
	font-size: 1.2rem;
	line-height: 1.35;
	padding: 0 0 0 13px;
	display: inline-block;
	position: relative;
}

.g-menuChild__item a:before {
	content: '';
	width: 8px;
	height: 1px;
	background: #696969;
	display: block;
	position: absolute;
	top: .55em;
	left: 1px;
}

.no-touch .g-menuChild__item a:hover:before {
	background: #DC000C;
}

.g-menuBanner {
	width: 245px;
	margin: 27px 0 0;
	padding: 0 0 0 20px;
	border-left: 1px solid #C2C7C7;
}

.g-menuBanner__item:not(:first-child) {
	margin: 12px 0 0;
}

.no-touch .g-menuBanner__item a:hover,
.no-touch .g-menuBanner__item a:hover img{
	opacity: .6;
}

.no-touch .g-menuBanner__item--tbt a {
	display: block;
	background: url("/_assets/img/common/banner-tbt-01@hover.png") no-repeat center / 100% auto;
}

.no-touch .g-menuBanner__item--tbt a:lang(en) {
	background-image: url("/_assets/img/common/banner-tbt-01@hover@global.png");
}

.no-touch .g-menuBanner__item--tbt a:hover {
	opacity: 1;
}

.no-touch .g-menuBanner__item--tbt a:hover img {
	opacity: 0;
}

/* グローバル プルダウン内 */
.g-naviPullDownGlobal__title {
	color: #000;
	font-size: 2.4rem;
	text-align: center;
	margin: 50px 0 0;
	display: block;
}

.g-naviPullDownGlobal__list {
	max-width: 850px;
	margin: 50px auto 0;
	display: flex;
	justify-content: center;
}

.g-naviPullDownGlobal__items {
	width: calc(100% / 6);
}

.g-naviPullDownGlobal__items:nth-child(3),
.g-naviPullDownGlobal__items:nth-child(5) {
	width: calc((100% / 6) + 30px);
}

.g-naviPullDownGlobal__items > p {
	color: #000;
	font-size: 1.4rem;
}

.g-naviPullDownGlobal__items > ul {
	padding: 5px 0 0;
}

.g-naviPullDownGlobal__items > ul li {
	margin: 10px 0 0;
}

.g-naviPullDownGlobal__items > ul li a {
	font-size: 1.2rem;
}

.g-naviPullDownGlobal__items > ul li a.u-icon__window {
	margin-top: .1em;
	margin-bottom: 0;
}

.g-naviPullDownGlobal__items > p em {
	padding: 0 0 4px;
	display: inline-block;
	border-bottom: 5px solid transparent;
	position: relative;
}

.jp .g-naviPullDownGlobal__items:nth-child(6) > p em {
	border-bottom-color: #DC000C;
}



/* 検索 プルダウン内 */
.g-naviPullDownSearch__title {
	color: #000;
	font-size: 2.4rem;
	text-align: center;
	margin: 50px 0 0;
	display: block;
}

.g-naviPullDownSearch__inner {
	max-width: 850px;
	margin: 50px auto 0;
	position: relative;
}

.g-naviPullDownSearch .mt-site-search-form {
	position: relative;
}

.g-naviPullDownSearch .mt-site-search {
	width: 100%;
}

.g-naviPullDownSearch .mt-site-search-form__query {
	width: 100%;
	padding: 1.25em;
	-webkit-appearance: none;
}

.g-naviPullDownSearch .mt-site-search-form__query:focus {
	cursor: text;
}

.g-naviPullDownSearch .mt-site-search-form__button {
	color: transparent;
	font-size: 0;
	width: 50px;
	height: 100%;
	background: url("/_assets/img/common/icon-search-01@black.svg") no-repeat center / 17px auto;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 10;
	transition: .3s cubic-bezier(.75,0,.35,1);
}

.no-touch .g-naviPullDownSearch .mt-site-search-form__button:hover {
	opacity: .6;
}

.gstl_50.gssb_c {
	display: none !important;
	max-width: 30% !important;
}

.gssb_a img {
	width: auto;
	max-width: 100%;
}


/*
* Footer
* ==================================================================================================== */
.g-footer {
	padding: 0 30px 60px;
	position: relative;
	overflow: hidden;
}
/*

.g-footer:lang(en):after {
	content: '';
	width: 150%;
	height: 5px;
	background: rgba(0,0,0,.5);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) rotate(-25deg);
	z-index: 10;
}

*/
.g-breadcrumb--footer {
	margin: 0 -30px;
	padding: 15px 30px;
}

.g-footerMenu {
	margin: 80px 0 0;
}

.g-footerMenu .g-menu__title {
	margin-top: 0;
}

.g-footerMenu__inner {
	width: calc(100% + 24px);
	margin: 0 -12px;
	display: flex;
}

.g-footerMenu__inner:lang(en) {
	width: calc(100% + 22px);
	margin-right: -11px;
	margin-left: -11px;
}

.g-footerMenu__inner:nth-child(1) {
	padding-left: 0;
}

.g-footerMenu__inner:nth-child(2) {
	width: 240px;
	display: block;
	border-left: 1px solid #C2C7C7;
}

.g-footerMenu__items {
	width: calc(100% / 7);
	padding: 0 12px;
}

.g-footerMenu__items:lang(en) {
	padding-right: 11px;
	padding-left: 11px;
}

.g-footerMenu .g-menu__inner {
	margin-top: 18px;
	display: block;
}

.g-footerMenu .g-menu_wrap {
	width: 100%;
	display: block;
}

.g-footerMenu .g-menu__items {
	width: 100%;
	padding-left: 0;
}

.g-footerMenu__inner:nth-child(2) .g-menu__items {
	margin-top: 30px;
}

.g-footerMenu .g-menuChild__items {
	display: none;
}

.g-footerMenu .g-menu__item {
	margin-top: 14px;
}

.g-footerMenu .g-menu__item .u-icon__window:after {
	width: 12px;
	height: 12px;
	margin-left: 0;
	margin-bottom: -.035em;
}

.g-footerMenu .g-navi__name {
	font-size: 1.1rem;
	letter-spacing: 0;
}

.g-footerMenu__items .g-menuBanner {
	display: none;
}

.g-footerMenu .g-menu__titleName {
	padding: 0 0 7px;
	border-bottom: 1px solid #C2C7C7;
}

.g-footerMenu .g-menu__titleName a {
	font-size: 1.5rem;
	letter-spacing: 0;
}

.g-footerMenu .g-menu__titleName a:lang(en) {
	font-size: 1.4rem;
}

.g-footerMenu .g-menu__titleName a:after {
	display: none;
}

.g-footerMenu .g-menu__title .show-footer {
	display: inline-block;
}

.g-footerBanner {
	display: flex;
	flex-wrap: wrap;
}

.g-footerBanner > div {
	width: calc(100% / 3);
	padding: 10px 15px;
}

.g-footerBanner > div img {
/*	max-width: 335px;*/
}

.g-footerBanner > div:not(.g-footerMenuTeambreakthroughBanner) a:hover {
	opacity: .6;
}

.g-footerMenuTeambreakthroughBanner a {
	display: block;
	background: url("/_assets/img/common/banner-tbt-01@mobile@hover.png") no-repeat top left / 100% auto;
}

.g-footerMenuTeambreakthroughBanner a:lang(en) {
	background-image: url("/_assets/img/common/banner-tbt-01@mobile@hover@global.png");
}

.g-footerMenuTeambreakthroughBanner a:hover img {
	opacity: 0;
}

.g-footerMenu__inner--sub {
	padding: 40px 15px 0;
	display: flex;
	align-items: center;
}

.g-footerMenu__inner--sub .g-menu__item {
	margin-top: 0;
	margin-right: 1.5em;
}

.g-footerMenu .g-footerMenu__inner--sub .g-navi__name {
	font-size: 1.1rem;
}

.g-footer__copyright {
	font-size: 1rem;
	white-space: nowrap;
}

.g-footerSns__items {
	margin: 40px 0 0;
	display: flex;
	justify-content: center;
}

.g-footerSns__item {
	padding: 0 0 0 50px;
}

.g-footerSns__item a {
	display: flex;
	align-items: center;
}

.g-footerSns__item a:hover {
	opacity: .7;
}

.g-footerSns__item span img {
	width: 38px;
}

.g-footerSns__item em {
	font-size: 1.1rem;
	white-space: nowrap;
	padding: 0 0 0 1em;
}

.g-pagetop {
	right: 14px;
	z-index: 110;
	opacity: 0;
	transform: translate(0,-20px);
	transition: .3s cubic-bezier(.75,0,.35,1);
}

.g-pagetop.is-active {
	opacity: 1;
}

.g-pagetop a {
	width: 51px;
	height: 51px;
	background: #dc000c;
	border: 1px solid rgba(255,255,255,.25);
	border-radius: 50%;
	display: block;
	position: relative;
}

.no-touch .g-pagetop a:hover {
	opacity: .6;
}

.g-pagetop a:after {
	content: '';
	width: 8px;
	height: 16px;
	display: block;
	background: url("/_assets/img/common/arrow-01@white.svg") no-repeat center / 100% 100%;
	position: absolute;
	top: calc(50% - 2px);
	left: 50%;
	transform: translate(-50%,-50%) rotate(-90deg);
}

/*
* Parts
* ==================================================================================================== */


/* カテゴリートップ MV */
.u-indexmv {
	margin-top: -101px;
	margin-right: -30px;
	margin-left: -30px;
	position: relative;
}

.u-indexmv .u-title__page {
	position: absolute;
	top: 50%;
	left: 80px;
	transform: translate(0,-50%);
	z-index: 10;
}

.u-indexmv .u-title__page--white {
	color: #fff;
}

.u-indexmv + * {
	margin-top: 60px;
}



.u-indexcorner {
	margin-right: -30px;
	margin-left: -30px;
}

.u-indexcorner__image {
	padding: 50% 0 0;
	position: relative;
	overflow: hidden;
}

.u-indexcorner--laerge .u-indexcorner__image {
	padding-top: 34%;
}

.u-indexcorner__image img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	transition: .6s cubic-bezier(.75,0,.35,1);
}

.u-indexcorner__image img:hover {
	transform: translate(-50%,-50%) scale(1.05);
}

.u-indexcorner__inner {
	display: flex;
	flex-wrap: wrap;
}

.u-indexcorner__inner--sub {
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
}

.u-indexcorner--medium .u-indexcorner__child {
	width: calc(100% / 2);
}

.u-indexcorner--minimum .u-indexcorner__child {
	width: calc(100% / 3);
}

.u-indexcorner__title {
	font-size: 2rem;
	padding: 20px 0 20px 50px;
	position: relative;
}

.u-indexcorner__title:lang(en) {
	line-height: 1.35;
}

.u-indexcorner--medium + .u-indexcorner--medium {
	margin-top: 20px;
}

.u-indexcornerlist {
	margin: 0 30px;
	padding: 0 0 50px;
	border-top: 1px solid #E6E6E6;
}

.u-indexcornerlist__wrap {
	margin-right: -10px;
	margin-left: -10px;
	display: flex;
	flex-wrap: wrap;
}

.u-indexcornerlist__items {
	width: calc(100% / 2);
}

.u-indexcornerlist__item {
	padding: 0 10px;
}

.u-indexcornerlist__item a {
	line-height: 1.5;
	padding: 1.15em 3.25em 1.15em 1.15em;
	border-bottom: 1px solid #E6E6E6;
	display: block;
	position: relative;
}

.u-indexcorner__title:after,
.u-indexcornerlist__item a:after {
	content: '';
	width: 32px;
	height: 32px;
	border: 1px solid #DC000C;
	background: url(/_assets/img/common/arrow-01@red.svg) no-repeat center / 6px 10px;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	right: 50px;
	transform: translate(0,-50%) rotate(.005deg);
	transition: .3s cubic-bezier(.75,0,.35,1);
}

.u-indexcornerlist__item a:after {
	width: 18px;
	height: 18px;
	right: 27px;
	background-size: 4px 6px;
}

.u-indexcornerlist__item a.u-icon__window:after {
	border: 0;
	background-image: url("/_assets/img/common/icon-window-01.svg");
	background-size: 14px 14px;
}

.u-indexcorner a:hover .u-indexcorner__title:after {
	background-color: #DC000C;
	background-image: url(/_assets/img/common/arrow-01@white.svg);
}

.u-indexcornerlist__item a.u-icon__pdf:before {
	display: none;
}

.u-indexcornerlist__item a.u-icon__pdf:after {
	border: 0;
	background-image: url("/_assets/img/common/icon-pdf-01.svg");
	background-size: 14px 14px;
}

/* アンカー */
.u-title__mid + .u-categoryIndexList {
	margin-top: 0;
}

.u-categoryIndexList__items {
	margin: 0 -12px;
}

.u-categoryIndexList__item {
	width: calc(100% / 3);
	padding: 24px 12px 0;
}

.u-categoryIndexList__item a {
	min-height: 160px;
	display: block;
	border: 1px solid #d3d3d3;
	position: relative;
}

.u-categoryIndexList__item a:after {
	content: '';
	width: 32px;
	height: 32px;
	border: 1px solid #DC000C;
	background: url(/_assets/img/common/arrow-01@red.svg) no-repeat center / 6px 10px;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	right: 26px;
	transform: translate(0,-50%) rotate(.005deg);
}

.u-categoryIndexList__item--window a:after {
	border: 0;
	background-image: url("/_assets/img/common/icon-window-01.svg");
	background-size: 18px auto;
}

.u-categoryIndexList__item a:hover {
	color: #DC000C;
	border-color: #DC000C;
}

.u-categoryIndexList__item small {
	font-size: 1.4rem;
	line-height: 1.5;
	padding: 1em 1em 0;
	display: block;
}

.u-categoryIndexList__name {
	font-size: 1.8rem;
	line-height: 1.35;
	padding: 0 80px 0 0;
	position: absolute;
	top: 50%;
	left: 30px;
	transform: translate(0,-50%);
}

.u-categoryIndexList__name small {
	font-size: 1.2rem;
	line-height: 1.5;
	margin: .75em 0 0;
	display: block;
}

.u-indexcorner--minimum {
	margin-right: 80px;
	margin-left: 80px;
}

.u-indexcorner--minimum .u-indexcorner__title {
	padding-left: 30px;
}

.u-indexcorner--minimum .u-indexcorner__title:after {
	right: 30px;
}






/*
* Slick Plugin - Reset
* ==================================================================================================== */
.slick-dots {
	position: absolute;
	bottom: 0;
	z-index: 10;
}


































/*
* !Template用 スタイル
* ==================================================================================================== */

.c-tempBox figure {
	width: 15%;
}

.c-tempBox div {
	width: 85%;
	padding: 0 0 0 30px;
}

.c-tempBox .u-text {
	margin-top: -.5em;
}

.c-tempBox ul {
	margin: 1.25em 0 0;
}

.c-tempBox ul li {
	line-height: 1.5;
	margin: .5em 0 0;
}

.c-tempBox ul li a {
	line-height: 1.35;
	padding-left: 1.5em;
	display: inline-block;
	position: relative;
}

.c-tempBox ul li a:before {
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(0,.15em);
}

.c-tempBox ul li .u-list__items {
	margin-top: 0;
	margin-left: 1em;
}

.c-tempBox ul li .u-list__item {
	font-size: 1.3rem;
}

.c-tempBox ul li .u-list__item > ul {
	margin: 0 0 1.25em .15em;
}

.c-tempBoxList li {
	margin: 1em 0 0;
}

.c-tempFlexA > * {
	width: calc((100% / 3) * 2);
}

.c-tempFlexA > div {
	width: calc(100% / 3);
}

.c-tempFlexB > p {
	width: calc(100% / 3);
}

.c-tempFlexB > div {
	width: calc((100% / 3) * 2);
}






