@charset "UTF-8";

/* ------------------------------------------- */
/* root */
/* ------------------------------------------- */
:root {
	--default-text-color: #000;
}

/* --------------------------------------------------------------- */
/* reset start */
/* --------------------------------------------------------------- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	background: transparent;
}

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

ul,
li,
ol,
dl {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

a {
	display: inline-block;
	margin: 0;
	padding: 0;
	color: var(--default-text-color);
}
@media (hover: hover) and (pointer: fine) {
	a:hover {
		text-decoration: none;
	}
}

del {
	text-decoration: line-through;
}

abbr[title],
dfn[title] {
	border-bottom: 0.1rem dotted;
	cursor: help;
}

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

*,
*:after,
*:before {
	-webkit-appearance: none;
	word-break: break-all;
	box-sizing: border-box;
}

video {
	filter: contrast(1);
}

/* --------------------------------------------------------------- */
/* reset end */
/* --------------------------------------------------------------- */

/* タブレット(1081px以上)のみ非表示 */
@media print,screen and (min-width: 1080.01px) {
	.tab-off {
		display: none !important;
	}
}
/* PC(768px以上)のみ非表示 */
@media print,screen and (min-width: 767.01px) {
	.pc-off {
		display: none !important;
	}
}
/* スマホのみ非表示 */
@media screen and (max-width: 767px) {
	.sp-off {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	a[href^="tel:"] {
		color: var(--default-text-color);
	}
}
@media screen and (min-width: 767.01px) {
	a[href^="tel:"] {
		pointer-events: none;
		text-decoration: none;
	}
}

html {
	font-size: 62.5%;
	letter-spacing: 0;
	font-family: "Noto Sans JP", sans-serif;
	-webkit-text-size-adjust: none;

	@media screen and (min-width: 1080.01px) and (max-width: 1919.99px) {
		font-size: calc(10 / 1919 * 100 * 1vw);
	}

	/* あまりにも文字サイズが小さくなった場合 */
	@media screen and (min-width: 767.01px) and (max-width: 1080px) {
		font-size: calc(12 / 1920 * 100 * 1vw);
	}

	/* スマホ用（デザインサイズが375の場合） */
	@media screen and (max-width: 767px) {
		font-size: calc(10 / 375 * 100 * 1vw);
	}
}

body {
	font-size: 1.6rem;
	line-height: 1;
	overflow: auto;

	@media screen and (max-width: 767px) {
		font-size: 1.4rem;
	}
}
img {
	display: block;
	max-width: 100%;
	height: auto;
	vertical-align: top;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;

	@media screen and (max-width: 767px) {
		/* スマホ画像長押し禁止対策 */
		pointer-events: none;
	}
}


/* ------------------------------------------- */
/* 印刷用の設定 */
/* ------------------------------------------- */
@media print {
	html {
		font-size: calc(10 / 1919 * 100 * 14px);
	}
	body {
		-webkit-print-color-adjust: exact;
		position: relative;
		width: 1400px;
		zoom: 70%;
	}
	header {
		display: none;
		opacity: 0;
	}
}
@page {
	size: A4;
	margin: 10mm;
}

/* ------------------------------------------- */
/* デバッグ用：スクロールバーを0pxに
/* ------------------------------------------- */
.deve body {
	--sb-track-color: #ddd;
	--sb-thumb-color: #000;
	--sb-size: 0;
	/* scrollbar-color: var(--sb-thumb-color) var(--sb-track-color); */
	overflow-x: hidden;
}
.deve body::-webkit-scrollbar {
	width: var(--sb-size);
}
.deve body::-webkit-scrollbar-track {
	background: var(--sb-track-color);
	border-radius: 1px;
}
.deve body::-webkit-scrollbar-thumb {
	background: var(--sb-thumb-color);
	border-radius: 1px;
}

/* --------------------------------------------------------------- */
/* wrapper */
/* --------------------------------------------------------------- */
#wrapper {
	overflow: clip;
}

.menu-active {
	overflow: hidden;
}


@media screen and (max-width: 767px) {
	
	.menu-active .links-header-container {
		/* display: block; */
		right: 0;
		display: flex;
		gap: 1.5rem;
		flex-direction: column;
	}
	
	.menu-active .sns-header-container {
		display: flex;
		gap: 1rem;
		margin-top: 1.5rem;
		margin-bottom: 2.5rem;
	}
	.menu-active .boutton-header-container {
		display: flex;
		margin-bottom: 4rem;
	}
}

/* .white-bk-sp {
	background-color: white;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
	display: none;
	z-index: -1;
	transition: 0.3s ease;
}

.menu-active .white-bk-sp {
	display: block;
	left: 0;
} */

/* --------------------------------------------------------------- */
/* header */
/* --------------------------------------------------------------- */
#header {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
	padding-top: 1.9rem;
    padding-left: 3.3rem;
    padding-right: 3.5rem;
	width: 100%;
	display: flex;
    align-items: center;
	background-color: rgba(255, 255, 255, 0.8);
	padding-bottom: 1rem;

	@media screen and (max-width: 767px) {
		padding-top: 9rem;
    	padding-left: 0rem;
		margin-left: 50rem;
		transition: all 0.3s;
		padding-right: 0;
		/* height: 100%; */
		padding-bottom: 0;
	}

	/* メニューボタン */
}
.menu-btn {
	position: fixed;
	display: none;
	top: 0.8rem;
	right: 0.7rem;
	z-index: 9999;

	@media screen and (max-width: 767px) {
		display: block;
	}

	&:after {
		/* content: "MENU"; */
		content: "";
		position: absolute;
		left: 50%;
		bottom: 1.1rem;
		color: #0033B3;
		font-weight: 500;
		letter-spacing: 0.05em;
		font-size: 1.1rem;
		transform: translateX(-50%);
		white-space: nowrap;
	}

	& a {
		position: relative;
		width: 10rem;
		height: 10rem;
		vertical-align: top;
		transition: ease 0.25s all;

		@media screen and (max-width: 767px) {
			width: 4rem;
			height: 4rem;
			border: 2px solid #0033B3;
			border-radius: 50%;
			background: white;
		}

		& span {
			position: absolute;
			left: 50%;
			top: 50%;
			display: block;
			margin-left: -1.8rem;
			width: 3.4rem;
			height: 0.2rem;
			background: #0033B3;
			border-radius: 0.3rem;

			@media screen and (max-width: 767px) {
				margin-left: -0.9rem;
				width: 1.6rem;
				height: 0.2rem;
			}

			&:before,
			&:after {
				content: "";
				position: absolute;
				left: 0;
				top: 0;
				width: 100%;
				height: 100%;
				background: #0033B3;
				border-radius: 0.3rem;
				transition: ease 0.25s all;
			}

			&:before {
				margin-top: -1.1rem;
			}
			@media screen and (max-width: 767px) {
				&:before {
					margin-top: -0.5rem;
				}
			}
			&:after {
				margin-top: 1.1rem;
			}
			@media screen and (max-width: 767px) {
				&:after {
					margin-top: 0.5rem;
				}
			}
		}
	}
}

.links-header-container {
	display: flex;
	/* gap: 4.7rem; */
	/* margin-left: 23.6rem; */
	margin-left: auto;
	margin-bottom: 1rem;
	@media screen and (max-width: 767px) {
		display: none;
		/* position: absolute; */
        right: 100%;
        margin-left: 0;
        transition: 0.3s ease;
    }
}

.links-header-container a {
  font-style: normal;
  font-weight: 500;
  font-size: 1.6rem;
  text-align: left;
  letter-spacing: 0.05em;
  color: #000000;
  text-decoration: none;
  transition: opacity 0.3s ease;
  position: relative;
  margin-right: 4.7rem;
  @media screen and (max-width: 1080px) {
      margin-right: 3rem;
	}
}

.links-header-container a:hover {
  opacity: 0.7;
}

.links-header-container a::after {
  content: "";
  position: absolute;
  right: -2.7rem;
  top: 3rem;
  z-index: 0;
  display: block;
  width: 100%;
  height: 0.3rem;
  background: #0033B3;
  transition: transform 0.3s ease;
  transform: scaleX(0);
  left: 0;
}

@media screen and (max-width: 767px) {
	.links-header-container a::after {
		display: none;
	}
}

.links-header-container a:hover::after {
  transform: scaleX(1);
}


.menu-item {
  position: relative;
  margin-right: 6.1rem;
  @media screen and (max-width:  1080px) {
		margin-right: 4rem;
    }
}

.submenu {
	display: none;
    position: absolute;
    top: 120%;
    left: 0;
    background-color: rgb(255 255 255 / 91%);
    border: 1px solid rgb(255 255 255 / 91%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 25rem;
    padding: 1rem 0;
    z-index: 1;
	@media screen and (max-width: 767px) {
		display: block;
        position: unset;
        border: unset;
        background-color: transparent;
        box-shadow: unset;
        width: inherit;
        padding: 0.5rem 0;
    }
}

.menu-item:hover .submenu {
  display: block;
}


.submenu a {
  display: block;
  font-size: 1.4rem;
  color: #333;
  padding: 0.8rem 2rem;
  margin-right: 0;
  text-decoration: none;
  	@media screen and (max-width: 767px) {
		position: relative;
	}
}

@media screen and (max-width: 767px) {
	.submenu a::before {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0.2rem;
		margin: auto;
		width: 0.8rem;
		height: 0.1rem;
		background-color: #333;

	}	
}
.sns-header-container {
	display: flex;
	gap: 2.2rem;
	margin-left: 4.5rem;
    margin-right: 6.1rem;
	margin-bottom: 1rem;
	@media screen and (max-width: 1080px) {
      margin-left: 2.5rem;
    	margin-right: 4.1rem;
    }
	@media screen and (max-width: 767px) {
		display: none;
	}
}

.parent-menu {
	font-style: normal;
    font-weight: 500;
    font-size: 1.6rem;
    text-align: left;
    letter-spacing: 0.05em;
    color: #000000;
    text-decoration: none;
    transition: opacity 0.3s ease;
    position: relative;
}

.parent-menu::before {
	content: "";
	position: absolute;
	width: 1.5rem;
	height: 1.4rem;
	background: url(../../common/img/header/plus-icon-nav.svg) no-repeat;
	background-size: 100%;
	right: -1.8rem;
	top: 0.2rem;
	bottom: 0;
}

@media screen and (max-width: 1080px) {
	.parent-menu::before {
		top: 0.2rem;
	}
}

@media screen and (max-width: 767px) {
	.parent-menu::before {
		display: none;
	}
}

.sns-header-container .insta-logo {
	width: 3.3rem;
	transition: opacity 0.3s ease;
}

.sns-header-container .insta-logo:hover {
	opacity: 0.7;
}

.sns-header-container .x-logo {
	width: 3.5rem;
	transition: opacity 0.3s ease;
}

.sns-header-container .x-logo:hover {
	opacity: 0.7;
}

.boutton-header-container {
	display: flex;
	gap: 0.9rem;
	margin-bottom: 0.9rem;
	@media screen and (max-width: 767px) {
		display: none;
    }
}

.boutton-header-container a {
	text-decoration: none;
}

.contact-button-blue {
	width: 12.5rem;
	height: 4.4rem;
	background: #0033B3;
	border-radius: 2.2rem;
	font-style: normal;
	font-weight: 700;
	font-size: 1.4rem;
	/* line-height: 17px; */
	text-align: center;
	letter-spacing: 0.05em;
	color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	border: transparent 0.1rem solid;
	transition: 0.3s ease;
}

.contact-button-blue:hover {
	background: white;
	color: #0033B3;
	border: #0033B3 0.1rem solid;
}

.contact-button-line {
	width: 19rem;
	height: 4.4rem;
	background: #0B0B0B;
	border-radius: 2.2rem;
	font-style: normal;
	font-weight: 700;
	font-size: 1.4rem;
	/* line-height: 17px; */
	text-align: center;
	letter-spacing: 0.05em;
	color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	border: transparent 0.1rem solid;
	transition: 0.3s ease;
}

.contact-button-line:hover {
	background: white;
	color: #0B0B0B;
	border: #0B0B0B 0.1rem solid;
}

@media screen and (max-width: 767px) {
	.nav {
		position: fixed;
		left: 100%;
		z-index: 999;
		width: 100%;
		pointer-events: none;
	}
}

.menu-active {
	.menu-btn {
		/* position: fixed; */
		& a {
			background-color: #fff;
			& span {
				background-color: transparent;
				&:before {
					margin-top: 0;
					transform: rotate(45deg);
					-webkit-transform: rotate(45deg);
				}
				&:after {
					margin-top: 0;
					transform: rotate(-45deg);
					-webkit-transform: rotate(-45deg);
				}
			}
		}
	}
	#header {

		@media screen and (max-width: 767px) {
			.nav {
				left: 0;
				pointer-events: auto;
			}
			flex-direction: column;
            background: #fff;
            padding-top: 9rem;
            margin-left: 0;
            padding-bottom: 0rem;
            height: 100%;
            margin-top: 0;
			transition: all 0.3s;
			overflow: auto;
		}
	}
}

.logomark {
	width: 25rem;
	@media screen and (max-width: 767px) {
		width: 14rem;
		position: absolute;
        top: 1rem;
		left: 0.9rem;
		z-index: 9999;
		position: fixed;
    }
}

/* --------------------------------------------------------------- */
/* breadcrumbs */
/* --------------------------------------------------------------- */
#breadcrumbs {
	margin-top: 7rem;
	padding: 0rem 0;

	@media screen and (max-width: 767px) {
		display: none;
	}
	& ol {
		display: flex;
		flex-wrap: wrap;
	}
	& li {
		position: relative;
		margin-right: 3.7rem;
		font-weight: 500;
		font-size: 1.2rem;
		letter-spacing: 0.1em;
		
		&:last-child{
			margin-right: 0;
			&:after{
				display: none;
			}
		}

		&:after {
			content: "";
            position: absolute;
            right: -2.7rem;
            top: -0.1rem;
            z-index: 0;
            display: block;
            width: 1.5rem;
            height: 1.5rem;
            background: url(../../common/img/all/white-arrow.svg) no-repeat;
            background-size: 100%;
            filter: brightness(0.1);
			&:last-child:after {
				display: none;
			}
		}
	}
	& a {
		font-style: normal;
		font-weight: 400;
		font-size: 1.4rem;
		/* line-height: 17px; */
		letter-spacing: 0.05em;
		color: #000000;
		text-decoration: none;
		@media (hover: hover) and (pointer: fine) {
			&:hover {
				text-decoration: underline;
			}
		}
	}
	& span {
		font-style: normal;
		font-weight: 400;
		font-size: 1.4rem;
		/* line-height: 17px; */
		letter-spacing: 0.05em;
		color: #000000;
		text-decoration: none;
	}
}

.home-breadcrumbs {
	text-decoration: none;
	position: relative;
}

.home-breadcrumbs::before {
	content: "";
	position: absolute;
	left: -1.2rem;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 0.7rem;
	height: 0.7rem;
	border-radius: 50%;
	background: #E72D30;
}

/* --------------------------------------------------------------- */
/* container */
/* --------------------------------------------------------------- */
#container {
	margin-top: 8.6rem;
	@media screen and (max-width: 767px) {
		/* padding-top: 8.6rem; */
    	margin-top: 0;
    }
}

/* --------------------------------------------------------------- */
/* contents */
/* --------------------------------------------------------------- */
#contents {
	margin-top: 17rem;
	@media screen and (max-width: 767px) {
		margin-top: 10rem;
    }
}

/* --------------------------------------------------------------- */
/* footer */
/* --------------------------------------------------------------- */
#footer {
}

.footer-up {
	background: url("../../common/img/footer/footer-top-bk.jpg") no-repeat center;
	background-size: cover;
	height: 56.3rem;
	padding-top: 12.5rem;
	padding-bottom: 13.9rem;
	clip-path: ellipse(70% 50%);
    margin-top: 5rem;
	@media screen and (max-width: 767px) {
	    background-size: cover;
		height: 22.3rem;
		padding-top: 3rem;
		padding-bottom: 3rem;
		clip-path: ellipse(146% 50%);
		margin-top: 3rem;
    }
}

.footer-title-container {
    display: flex;
    gap: 4.2rem;
    align-items: flex-end;
	@media screen and (max-width: 767px) {
		gap: 0.5rem;
    	align-items: flex-start;
		flex-direction: column;
    }
}


.top-title-en-footer {
	font-family: 'Roboto';
    font-style: italic;
    font-weight: 700;
    font-size: 15rem;
    /* line-height: 176px; */
    letter-spacing: 0.04em;
    color: #ffffff;
    flex: none;
    order: 0;
    flex-grow: 0;
	@media screen and (max-width: 767px) {
		font-size: 4.6rem;
    }
}

.top-title-jp-footer {
	font-style: normal;
    font-weight: 700;
    font-size: 3rem;
    /* line-height: 30px; */
    letter-spacing: 0.04em;
    color: #ffffff;
    flex: none;
    order: 1;
    flex-grow: 0;
    margin-bottom: 2.5rem;
	@media screen and (max-width: 767px) {
		font-size: 1.4rem;
        margin-bottom: 0;
    }
}

.footer-top-two-button-container {
	display: flex;
	gap: 4.5rem;
	margin-top: 5.4rem;
	@media screen and (max-width: 767px) {
		gap: 0;
		margin-top: 3rem;
		justify-content: space-between;
    }
}

.footer-button {
	background: #FFFFFF;
	border-radius: 4rem;
	width: 43.3rem;
	height: 7.9rem;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: 0.3s ease;
	text-decoration: none;
	@media screen and (max-width: 767px) {
		width: 16.3rem;
    	height: 3.9rem;	
    }
}

.footer-button:hover {
	opacity: 0.7;
}

.footer-button::after {
	content: '';
    position: absolute;
    right: 3rem;
    bottom: 0;
    background: url(../../common/img/all/blue-arrow.svg) no-repeat;
    top: 0;
    width: 2.2rem;
    height: 2.2rem;
    transition: transform 0.3s ease;
    background-size: 100%;
    margin: auto;
}

@media screen and (max-width: 767px) {
	.footer-button::after {
		right: 0.7rem;
		width: 1.7rem;
		height: 1.7rem;
	}
}

.footer-button:hover::after {
	transform: translateX(0.5rem);
}

.footer-button p {
	font-style: normal;
	font-weight: 700;
	font-size: 3rem;
	/* line-height: 30px; */
	letter-spacing: 0.04em;
	color: #0033B3;
	@media screen and (max-width: 767px) {
		font-size: 1.8rem;
    }
}

.footer-down {
	background-color: #EEF1F4;
    margin-top: -9rem;
	z-index: -1;
	@media screen and (max-width: 767px) {
		/* position: relative; */
		    margin-top: -0.8rem;
    }
}

.footer-logo-container {
	margin-top: 2.5rem;
	width: 31.1rem;
	margin-bottom: 3rem;
	@media screen and (max-width: 767px) {
	    width: 20rem;
    	margin: 0.7rem auto 3rem;
    }
}

.footer-left-infos-title {
	font-style: normal;
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 2.2rem;
	letter-spacing: 0.1em;
	color: black;
}

.footer-left-infos-txt {
	font-style: normal;
	font-weight: 500;
	font-size: 1.2rem;
	line-height: 2.2rem;
	letter-spacing: 0.1em;
	color: black;
}

.footer-left-links-container {
	display: flex;
	gap: 3rem;
	margin-top: 2.4rem;
	@media screen and (max-width: 767px) {
		gap: 2rem;
    	margin-top: 1.4rem;
    }
}

.footer-left-links-container a {
	font-style: normal;
	font-weight: 700;
	font-size: 1.4rem;
	/* line-height: 14px; */
	letter-spacing: 0.1em;
	color: black;
}

.right-footer-container {
	display: flex;
	gap: 6.5rem;
	@media screen and (max-width: 767px) {
		display: none;
    }
}

.footer-link-list-master {
	margin-bottom: 3rem;
}

.footer-link-list-master li a {
	font-style: normal;
	font-weight: 700;
	font-size: 1.6rem;
	/* line-height: 16px; */
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: black;
	text-decoration: none;
}
.footer-link-list-master .non-link-parents {
	color: black;
	text-decoration: none;
	font-style: normal;
	font-weight: 700;
	font-size: 1.6rem;
	/* line-height: 16px; */
	letter-spacing: 0.1em;
}
.footer-link-list-sub {
	line-height: 3.4rem;
	margin-top: 1rem;
}

.footer-link-list-sub li a {
	font-style: normal;
	text-decoration: none;
	font-weight: 500;
	font-size: 1.4rem;
	letter-spacing: 0.1em;
	color: black;
	transition: all 0.3s ease;
}

.footer-link-list-sub li a:hover {
	opacity: 0.7;
}

.submenu-child {
	padding-left: 2.7rem !important;
    position: relative;
	@media screen and (max-width: 767px) {
		padding-left: 2rem;
		/* transform: translateX(0.7rem); */
    }
}

.submenu-child::before {
	content: "";
	position: absolute;
    top: 3.6px;
    bottom: 0;
    margin: auto;
    left: 2rem !important;
    background: #0033B3 !important;
    width: 0.3rem !important;
    height: 0.3rem !important;
    border-radius: 50%;
}

.footer-link-list-master .submenu-child {
	padding-left: 1rem !important;
}

.footer-link-list-master .submenu-child::before {
	left: 0.2rem !important;
}

.go-to-link {
	position: relative;
	@media screen and (max-width: 767px) {
        font-style: normal;
		font-weight: 700;
		font-size: 1.2rem;
		/* line-height: 16px; */
		letter-spacing: 0.1em;
		text-transform: uppercase;
		color: black;
		text-decoration: none;
		display: block;
        width: fit-content;
    }
}

.corporate-site-link-sp {
	margin-bottom: 0.5rem;
    margin-top: 2rem;
	display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.go-to-link::after {
	position: absolute;
	content: "";
	width: 1.1rem;
    height: 1.1rem;
    background: url(../../common/img/footer/goto-icon.svg) no-repeat;
    background-size: 100%;
    top: 0;
    bottom: 0;
    right: -1.5rem;
    margin: auto;
	filter: brightness(0);
}

.inner-footer-bottom {
	padding-top: 19.6rem;
	padding-bottom: 6rem;
    display: flex;
    justify-content: space-between;
	@media screen and (max-width: 767px) {
		padding-top: 3rem;
		display: block;
		padding-bottom: 0;
    }
}

.footer-bottom-down-container {
	margin-top: -1rem;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding-bottom: 2.1rem;
	@media screen and (max-width: 767px) {
		display: block;
		margin-top: 0;
    }
}

.left-footer-en-txt {
	position: relative;
	font-family: 'Roboto';
	font-style: italic;
	font-weight: 700;
	font-size: 8rem;
	/* line-height: 94px; */
	letter-spacing: 0.04em;
	color: #0033B3;
	opacity: 0.2;
	white-space: nowrap;
	@media screen and (max-width: 767px) {
		font-size: 2rem;
		margin-top: 5rem;
    	margin-bottom: 1rem;
    }
}

.left-footer-en-txt::before {
	content: "ものづくりの世界で、突き抜けろ。";
    position: absolute;
    left: 0rem;
    top: -2.5rem;
    font-family: 'Zen Kaku Gothic New';
    font-style: normal;
    font-weight: 900;
    font-size: 2rem;
    /* line-height: 20px; */
    letter-spacing: 0.08em;
    color: #0033B3;
}

@media screen and (max-width: 767px) {
	.left-footer-en-txt::before {
		top: -1.5rem;
		font-size: 1rem;
	}
}

.copyright {
	display: inline-block;
	font-style: normal;
	font-weight: 400;
	font-size: 1.2rem;
	/* line-height: 12px; */
	letter-spacing: 0.1em;
	color: black;
}

/* ------------------------------------------- */
/* inner config */
/* ------------------------------------------- */
.inner {
	position: relative;
	z-index: 1;
	margin: 0 auto;

	@media screen and (max-width: 767px) {
		width: calc(100% - 3rem);
	}
}
.w465 {
	max-width: 46.5rem;
}
.w600 {
	max-width: 60rem;
}
.w800 {
	max-width: 80rem;
}
.w960 {
	max-width: 96rem;
}
.w900 {
	max-width: 90rem;
}
.w1080 {
	max-width: 108rem;
}
.w1200 {
	max-width: 120rem;
}
.w1260 {
	max-width: 126rem;
}
.w1264 {
	max-width: 126.4rem;
}
.w1440 {
	max-width: 144rem;
}
.w1960 {
	max-width: 196rem;
}

/* ------------------------------------------- */
/* align */
/* ------------------------------------------- */
.tar {
	text-align: right;
}
.tal {
	text-align: left;
}
.tac {
	text-align: center;
}

/* --------------------------------------------------------------- */
/* 404 */
/* --------------------------------------------------------------- */

.four404-container {
	width: 59.7rem;
	height: 21.2rem;
	padding-top: 7.3rem;
	padding-bottom: 6rem;
	padding-left: 8.6rem;
	background-color: #EEF1F4;
	@media screen and (max-width: 767px) {
		width: 100%;
		height: auto;
		padding: 1rem 2rem;
    }
}

.four404-container h2 { 
	font-style: normal;
	font-weight: 700;
	font-size: 4.8rem;
	/* line-height: 48px; */
	letter-spacing: 0.08em;
	color: #000000;
	margin-bottom: 0.9rem;
	@media screen and (max-width: 767px) {
		font-size: 2.5rem;
		text-align: center;
		margin-bottom: 0.8rem;
	}
}

.four404-container p {
	font-style: normal;
	font-weight: 700;
	font-size: 2.2rem;
	/* line-height: 22px; */
	letter-spacing: 0.08em;
	color: #0033B3;
	@media screen and (max-width: 767px) {
		font-size: 1.5rem;
		text-align: center;
	}
}

/* --------------------------------------------------------------- */
/* common parts */
/* --------------------------------------------------------------- */

.common-flex-page-top-container {
    display: flex;
    /* justify-content: space-between; */
    gap: 9rem;
    margin-bottom: 10rem;
	@media screen and (max-width: 767px) {
		gap: 2rem;
		flex-direction: column;
		margin-bottom: 7rem;
    }
}

.top-common-blue-title-en {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 700;
    font-size: 7rem;
    /* line-height: 7rem; */
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 0.9rem 2.3rem;
    background: #0033B3;
    width: fit-content;
    margin-bottom: 0.8rem;
	@media screen and (max-width: 767px) {
		font-size: 4rem;
		padding: 0.6rem 1rem;
		margin-bottom: 0.4rem;
    }
}

.left-page-top-common-blue-container {
    white-space: nowrap;
	display: flex;
    flex-direction: column;
    align-items: flex-end;
	@media screen and (max-width: 767px) {
		align-items: flex-start;
    }
}

.top-common-blue-title-jp {
    font-family: 'Zen Kaku Gothic New';
    font-style: normal;
    font-weight: 700;
    font-size: 2.4rem;
    /* line-height: 24px; */
	line-height: 3rem;
    letter-spacing: 0.04em;
    color: #FFFFFF;
    padding: 0.9rem 2.3rem;
    background: #0033B3;
    width: fit-content;
	@media screen and (max-width: 767px) {
		font-size: 1.6rem;
		padding: 0.6rem 1rem;
		line-height: 2.2rem;
    }
}

.right-page-top-common-presentations-container h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 2rem;
    line-height: 3rem;
    text-align: justify;
    letter-spacing: 0.1em;
    color: #000000;
    margin-bottom: 2rem;
	@media screen and (max-width: 767px) {
		font-size: 1.6rem;
		line-height: 2.2rem;
		margin-bottom: 1rem;
    }	
}

.right-page-top-common-presentations-container p {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 3rem;
    letter-spacing: 0.1em;
    color: #000000;
	@media screen and (max-width: 767px) {
		font-size: 1.4rem;
		line-height: 2rem;
    }
}


.title-bar-page-container {
    margin-bottom: 4rem;
    display: flex;
    gap: 4rem;
    align-items: center;
	@media screen and (max-width: 767px) {
		margin-bottom: 2rem;
		gap: 2rem;
    }
}

.title-bar-page-title {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 700;
    font-size: 4rem;
    /* line-height: 40px; */
    text-align: justify;
    letter-spacing: 0.1em;
    color: #000000;
    white-space: nowrap;
	@media screen and (max-width: 767px) {
		font-size: 2.2rem;
		letter-spacing: 0.01em;
		line-height: 2.6rem;
		white-space: inherit;
    }
}

.title-bar-page-bar {
    background-color: #000000;
    width: 100%;
    height: 0.3rem;
	@media screen and (max-width: 767px) {
		display: none;
    }
}

/* ------------------------------------------- */
/* common-area */
/* ------------------------------------------- */
.common-area {
}

/* ------------------------------------------- */
/* common-title */
/* ------------------------------------------- */
.common-title {
}
/* type01 */
.top-page-banner-container {
	padding-top: 12rem;
	position: relative;
	@media screen and (max-width: 767px) {
		/* padding-top: 6rem; */
    }
}

.top-page-banner-container::before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 127.5rem;
	height: 65.1rem;
	background: url(../../common/img/all/top-page-banner-bg.png) no-repeat;
	background-size: 100%;
	z-index: -1;
}
@media screen and (max-width: 767px) {
	.top-page-banner-container::before {
		width: 51.5rem;
	}
}
.common-title.type01 .title-main {
	font-style: normal;
	font-weight: 700;
	font-size: 2.4rem;
	/* line-height: 24px; */
	letter-spacing: 0.04em;
	color: #0033B3;
	margin-bottom: 3rem;
	@media screen and (max-width: 767px) {
		font-size: 1.4rem;
		margin-bottom: 0.5rem;
    }
}

.common-title.type01 .title-sub {
	font-family: 'Roboto';
	font-style: italic;
	font-weight: 700;
	font-size: 12rem;
	/* line-height: 120px; */
	letter-spacing: 0.04em;
	color: #000000;
	@media screen and (max-width: 767px) {
		font-size: 4rem;
    }
}

/* ------------------------------------------- */
/* common-btn */
/* ------------------------------------------- */
.common-btn {
}

/* ------------------------------------------- */
/* common-select */
/* ------------------------------------------- */
.common-select {
}

/* ------------------------------------------- */
/* common-list */
/* ------------------------------------------- */
.common-list {
}

/* ------------------------------------------- */
/* common-text */
/* ------------------------------------------- */
.common-text {
}

/* ------------------------------------------- */
/* common-table */
/* ------------------------------------------- */
.common-table {
	table-layout: fixed;
	width: 100%;
	border-collapse: collapse;

	& p {
		margin-bottom: 2rem;
		&:last-child {
			margin-bottom: 0;
		}
	}
}
/* table-scroll */
@media screen and (max-width: 767px) {
	.table-scroll {
		position: relative;
		padding-bottom: 2rem;
		overflow-x: scroll;
		&:after {
			content: "←";
			position: absolute;
			right: 0;
			bottom: 0;
			z-index: 1;
			margin-left: -1.5rem;
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			align-items: center;
			width: 3rem;
			height: 3rem;
			border-radius: 1.5rem;
			border: 0.1rem solid #000;
			animation: arrowtable 2s infinite forwards;
		}
		.common-table {
			width: 80rem;
		}
	}
}
@keyframes arrowtable {
	50% {
		opacity: 1;
		right: 0;
	}
	100% {
		opacity: 0;
		right: 100%;
	}
}

/* ------------------------------------------- */
/* アニメーション用 */
/* ------------------------------------------- */
/*
.moveFlag {
	position: relative;
	top: -5rem;
	opacity: 0;
	transition: ease 0.5s top, ease 0.5s opacity;
}
.moveFlag.on {
	top: 0;
	opacity: 1;
}
@media print {
	.moveFlag {
		top: 0;
		opacity: 1;
	}
}
*/

/* --------------------------------------------------------------- */
/*  margin padding */
/* --------------------------------------------------------------- */
.mb0 {
	margin-bottom: 0rem !important;
}
.mb10 {
	margin-bottom: 1rem !important;
}
.mb20 {
	margin-bottom: 2rem !important;
}
.mb30 {
	margin-bottom: 3rem !important;
}
.mb40 {
	margin-bottom: 4rem !important;
}
.mb50 {
	margin-bottom: 5rem !important;
}
.mb60 {
	margin-bottom: 6rem !important;
}
.mb70 {
	margin-bottom: 7rem !important;
}
.mb80 {
	margin-bottom: 8rem !important;
}
.mb90 {
	margin-bottom: 9rem !important;
}
.mb100 {
	margin-bottom: 10rem !important;
}

@media screen and (max-width: 767px) {
	.mb10 {
		margin-bottom: 0.5rem !important;
	}
	.mb20 {
		margin-bottom: 1rem !important;
	}
	.mb30 {
		margin-bottom: 1.5rem !important;
	}
	.mb40 {
		margin-bottom: 2rem !important;
	}
	.mb50 {
		margin-bottom: 2.5rem !important;
	}
	.mb60 {
		margin-bottom: 3rem !important;
	}
	.mb70 {
		margin-bottom: 3.5rem !important;
	}
	.mb80 {
		margin-bottom: 4rem !important;
	}
	.mb90 {
		margin-bottom: 4.5rem !important;
	}
	.mb100 {
		margin-bottom: 5rem !important;
	}
}

.mt0 {
	margin-top: 0rem !important;
}
.mt10 {
	margin-top: 1rem !important;
}
.mt20 {
	margin-top: 2rem !important;
}
.mt30 {
	margin-top: 3rem !important;
}
.mt40 {
	margin-top: 4rem !important;
}
.mt50 {
	margin-top: 5rem !important;
}
.mt60 {
	margin-top: 6rem !important;
}
.mt70 {
	margin-top: 7rem !important;
}
.mt80 {
	margin-top: 8rem !important;
}
.mt90 {
	margin-top: 9rem !important;
}

@media screen and (max-width: 767px) {
	.mt10 {
		margin-top: 0.5rem !important;
	}
	.mt20 {
		margin-top: 1rem !important;
	}
	.mt30 {
		margin-top: 1.5rem !important;
	}
	.mt40 {
		margin-top: 2rem !important;
	}
	.mt50 {
		margin-top: 2.5rem !important;
	}
	.mt60 {
		margin-top: 3rem !important;
	}
	.mt70 {
		margin-top: 3.5rem !important;
	}
	.mt80 {
		margin-top: 4rem !important;
	}
	.mt90 {
		margin-top: 4.5rem !important;
	}
	.mt100 {
		margin-top: 5rem !important;
	}
}

.pb0 {
	padding-bottom: 0 !important;
}
.pb10 {
	padding-bottom: 1rem !important;
}
.pb20 {
	padding-bottom: 2rem !important;
}
.pb30 {
	padding-bottom: 3rem !important;
}
.pb40 {
	padding-bottom: 4rem !important;
}
.pb50 {
	padding-bottom: 5rem !important;
}
.pb60 {
	padding-bottom: 6rem !important;
}
.pb70 {
	padding-bottom: 7rem !important;
}
.pb80 {
	padding-bottom: 8rem !important;
}
.pb90 {
	padding-bottom: 9rem !important;
}
.pb100 {
	padding-bottom: 10rem !important;
}
@media screen and (max-width: 767px) {
	.pb10 {
		padding-bottom: 0.5rem !important;
	}
	.pb20 {
		padding-bottom: 1rem !important;
	}
	.pb30 {
		padding-bottom: 1.5rem !important;
	}
	.pb40 {
		padding-bottom: 2rem !important;
	}
	.pb50 {
		padding-bottom: 2.5rem !important;
	}
	.pb60 {
		padding-bottom: 3rem !important;
	}
	.pb70 {
		padding-bottom: 3.5rem !important;
	}
	.pb80 {
		padding-bottom: 4rem !important;
	}
	.pb90 {
		padding-bottom: 4.5rem !important;
	}
	.pb100 {
		padding-bottom: 5rem !important;
	}
}

.pt0 {
	padding-top: 0 !important;
}
.pt10 {
	padding-top: 1rem !important;
}
.pt20 {
	padding-top: 2rem !important;
}
.pt30 {
	padding-top: 3rem !important;
}
.pt40 {
	padding-top: 4rem !important;
}
.pt50 {
	padding-top: 5rem !important;
}
.pt60 {
	padding-top: 6rem !important;
}
.pt70 {
	padding-top: 7rem !important;
}
.pt80 {
	padding-top: 8rem !important;
}
.pt90 {
	padding-top: 9rem !important;
}
.pt100 {
	padding-top: 10rem !important;
}
@media screen and (max-width: 767px) {
	.pt10 {
		padding-top: 0.5rem !important;
	}
	.pt20 {
		padding-top: 1rem !important;
	}
	.pt30 {
		padding-top: 1.5rem !important;
	}
	.pt40 {
		padding-top: 2rem !important;
	}
	.pt50 {
		padding-top: 2.5rem !important;
	}
	.pt60 {
		padding-top: 3rem !important;
	}
	.pt70 {
		padding-top: 3.5rem !important;
	}
	.pt80 {
		padding-top: 4rem !important;
	}
	.pt90 {
		padding-top: 4.5rem !important;
	}
	.pt100 {
		padding-top: 5rem !important;
	}
}

/* ------------------------------------------- */
/* pagination */
/* ------------------------------------------- */
.single-post-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-top: 7rem;

	@media screen and (max-width: 767px) {
		margin-top: 3.5rem;
	}

	.back {
		margin: 0 8.3rem;
		@media screen and (max-width: 767px) {
			margin: 0 1rem;
		}
	}

	.prev,
	.next {
		width: 14rem;
		@media screen and (max-width: 767px) {
			width: 4.6rem;
		}
		& a {
			position: relative;
			display: flex;
			flex-wrap: wrap;
			align-items: center;
			width: 100%;
			height: 4.6rem;
			font-weight: 500;
			text-decoration: underline;
			letter-spacing: 0.08rem;
			color: #000;
			box-sizing: border-box;

			@media screen and (max-width: 767px) {
				padding: 0;
				font-size: 0;
				color: transparent;
			}

			@media (hover: hover) and (pointer: fine) {
				&:hover {
					text-decoration: none;
				}
			}

			&:after {
				content: "";
				position: absolute;
				top: 50%;
				margin-top: -2.3rem;
				display: block;
				width: 4.6rem;
				height: 4.6rem;
				border-radius: 2.3rem;
				background-color: #2987d9;
			}
			@media (hover: hover) and (pointer: fine) {
				&:hover:after {
					background-color: #2987d9;
				}
			}
			@media screen and (max-width: 767px) {
				.&:after {
					width: 4.8rem;
					height: 4.8rem;
					margin-top: -2.4rem;
					border-radius: 0;
				}
			}

			&:before {
				content: "";
				position: absolute;
				top: 50%;
				z-index: 1;
				margin-top: -0.4rem;
				display: block;
				width: 0.8rem;
				height: 0.8rem;
				border-top: 0.2rem solid #fff;
				box-sizing: border-box;
				transition: ease 0.25s border;
			}
		}
	}

	.prev {
		& a {
			padding-left: 7.3rem;
			&:after {
				left: 0;
			}
			&:before {
				left: 2.2rem;
				border-left: 0.2rem solid #fff;
				-webkit-transform: rotate(-45deg);
				transform: rotate(-45deg);
			}
			@media (hover: hover) and (pointer: fine) {
				&:hover:before {
					border-left-color: #fff;
				}
			}
		}
	}
	.next {
		& a {
			padding-right: 7.3rem;
			&:after {
				right: 0;
			}
			&:before {
				right: 2.2rem;
				border-right: 0.2rem solid #fff;
				-webkit-transform: rotate(45deg);
				transform: rotate(45deg);
			}
		}
	}
}

/* navigation pagination */
.navigation.pagination {
	margin: 7rem 0 0;

	@media screen and (max-width: 767px) {
		margin: 3rem 0 0;
	}

	.disable {
		display: none;
	}

	.nav-links {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;

		@media screen and (max-width: 767px) {
			position: relative;
			padding-bottom: 5rem;
		}
	}

	.pager {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		margin: 0 0.45rem;
		width: 5.6rem;
		height: 5.6rem;
		font-family: "Roboto", sans-serif;
		font-weight: bold;
		letter-spacing: 0.08em;
		color: #0033B3;
		background: #fff;
		text-decoration: none;
		transition: ease 0.25s all;
		/* border-radius: 0.4em; */
		border: 0.1rem solid #0033B3;
		border-radius: 50%;

		@media screen and (max-width: 767px) {
			width: 3rem;
			height: 3rem;
			font-size: 1.2rem;
		}

		@media (hover: hover) and (pointer: fine) {
			&:hover {
				color: #fff;
				background: #0033B3;
				border-color: #0033B3;
			}
		}
	}

	.pager.current {
		color: #fff;
		font-weight: bold;
		background: #0033B3;
		border-color: #0033B3;
	}

	.next,
	.prev {
		@media screen and (max-width: 767px) {
			/*position: absolute;*/
			/*bottom: 0;*/
			/*width: 48%;*/
			/*height: 4rem;*/
		}

		& a {
			position: relative;
			display: flex;
			flex-wrap: wrap;
			align-items: center;
			justify-content: center;
			width: 5.6rem;
			height: 5.6rem;
			background: url(../../common/img/all/pagination-arrow.svg) no-repeat;
			background-size: 100%;
			transition: opacity 0.3s ease;

			@media screen and (max-width: 767px) {
				width: 2.8rem;
				height: 2.8rem;
			}

			@media (hover: hover) and (pointer: fine) {
				&:hover {
					opacity: 0.7;
				}
			}
		}
	}

	.prev {
		@media screen and (min-width: 767.01px) {
			margin-right: 0.8rem;
		}
		@media screen and (max-width: 767px) {
			margin-right: 0.5rem;
		}
		& a {
			&:after {
				left: 50%;
				margin-left: -0.2rem;
				border-left: 0.1rem solid #2987d9;
				-webkit-transform: rotate(-45deg);
				transform: rotate(-45deg);
			}
			@media (hover: hover) and (pointer: fine) {
				&:hover:after {
					border-left-color: #fff;
				}
			}
		}
	}
	.next {
		transform: rotate(180deg);
		@media screen and (min-width: 767.01px) {
			margin-left: 0.8rem;
		}
		@media screen and (max-width: 767px) {
			margin-left: 0.5rem;
			/*right: 0;*/
		}
		& a {
			&:after {
				right: 50%;
				margin-right: -0.2rem;
				border-right: 0.1rem solid #2987d9;
				-webkit-transform: rotate(45deg);
				transform: rotate(45deg);
			}
			@media (hover: hover) and (pointer: fine) {
				&:hover:after {
					border-right-color: #fff;
				}
			}
		}
	}
}

/* ------------------------------------------- */
/* wordpress パスワードフォーム調整用 */
/* ------------------------------------------- */

.post-password-form {
	padding: 100px 30px;
	line-height: 1.8;
	text-align: center;
}


/* ------------------------------------------- */
/* staff list summoning
/* ------------------------------------------- */

.staff-list {
    display: flex;
    gap: 5.5rem;
}

.staff-img-container {
    width: 38.2rem;
	height: 40.8rem;
    margin-bottom: 2.1rem;
	@media screen and (max-width: 767px) {
		width: 24.9rem;
		height: 26.6rem;
		margin-bottom: 1.8rem;
    }
}

.list-title {
    font-style: normal;
    font-weight: 700;
    font-size: 2rem;
    line-height: 3rem;
    letter-spacing: 0.06em;
    color: #000000;
    margin-bottom: 1.3rem;
    max-width: 38.2rem;
    height: 5.4rem;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
	@media screen and (max-width: 767px) {
		font-size: 1.6rem;
		line-height: 2.4rem;
		-webkit-line-clamp: 3;
		height: 7.2rem;
		margin-bottom: 1.6rem;
		max-width: 24.9rem;
    }
}

.staff-job-title {
    background: #0033B3;
    font-style: normal;
    font-weight: 700;
    font-size: 1.6rem;
    /* line-height: 16px; */
    letter-spacing: 0.06em;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
	width: fit-content;
	@media screen and (max-width: 767px) {
		font-size: 1.4rem;
		padding: 0.3rem 0.6rem;
    }
}

.staff-year-name-container {
    display: flex;
    gap: 2.9rem;
	margin-top: 0.8rem;
	@media screen and (max-width: 767px) {
		margin-top: 1rem;
		gap: 0.7rem;
    }
}

.staff-name {
    font-style: normal;
    font-weight: 700;
    font-size: 1.6rem;
    /* line-height: 16px; */
    letter-spacing: 0.06em;
    color: #000000;
}

.staff-year {
    font-style: normal;
    font-weight: 700;
    font-size: 1.6rem;
    /* line-height: 16px; */
    letter-spacing: 0.06em;
    color: #0033B3;
}

.staff-link-decoration {
    text-decoration: none;
	transition: opacity 0.3s ease;
}

.staff-link-decoration:hover {
	opacity: 0.7;
}

/* ------------------------------------------- */
/* cross list summoning
/* ------------------------------------------- */

.cross-container {
	padding: 4.2rem 6.2rem;
	display: flex;
	gap: 6rem;
	text-decoration: none;
	background-color: white;
}

.txt-button-cross-container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 65.4rem;
}

.cross-job-title {
	font-style: normal;
	font-weight: 700;
	font-size: 2.6rem;
	line-height: 3.6rem;
	letter-spacing: 0.06em;
	color: #000000;
}

.cross-button {
    width: 30.7rem;
    height: 6.9rem;
    display: flex;
    border: #0033B3 2px solid;
    border-radius: 4.5rem;
    align-items: center;
    padding-left: 2.8rem;
    text-decoration: none;
	background-color: #0033B3;
	margin-left: auto;
}

.cross-button p {
    font-style: normal;
    font-weight: 700;
    font-size: 1.6rem;
    /* line-height: 40px; */
    letter-spacing: 0.05em;
    color: #FFFFFF;
    position: relative;
}

.cross-button p::after {
    content: '';
    position: absolute;
    right: -17rem;
    bottom: 0;
    background: url(../../common/img/all/white-arrow.svg) no-repeat;
    top: 0;
    width: 1.6rem;
    height: 1.6rem;
    transition: transform 0.3s ease;
    background-size: 100%;
}

.cross-button:hover p::after {
    transform: translateX(0.5rem);
}

.cross-img-container {
	width: 60.2rem;
}


.common-button-type2 {
    width: 30.7rem;
    height: 6.9rem;
    border: 2px solid #0033B3;
    border-radius: 4.5rem;
    position: relative;
    font-style: normal;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 4rem;
    letter-spacing: 0.05em;
    color: #0033B3;
    padding: 1.6rem 0 1.6rem 2.1rem;
	display: flex;
    align-items: center;
	text-decoration: none;
	transition: 0.3s ease;
	@media screen and (max-width: 767px) {
		width: 22.1rem;
		height: 5rem;
		font-size: 1.2rem;
		padding: 1.6rem 0 1.6rem 1.5rem;
    }
}

.common-button-type2::after {
    content: "";
    position: absolute;
    background: url("../../common/img/all/blue-arrow.svg") no-repeat;
    width: 1.6rem;
    height: 1.6rem;
    background-size: 100%;
    top: 0;
    bottom: 0;
    right: 2rem;
    margin: auto;
	transition: 0.3s ease;
}

@media screen and (max-width: 767px) {
	.common-button-type2::after {
		width: 1.4rem;
		height: 1.4rem;
		right: 1.4rem;
	}
}

.common-button-type2:hover::after {
	transform: translateX(0.5rem);
}

.center-this-button {
	display: flex;
    justify-content: center;
}


.article .date-catego-container-article {
    display: flex;
    gap: 3.1rem;
    margin-bottom: 2rem;
    align-items: center;
	@media screen and (max-width: 767px) {
		gap: 1rem;
		margin-bottom: 1rem;
    }
}

.article .list-category-article {
    display: flex;
    align-items: center;
    background: #0033B3;
    border-radius: 1.5rem;
    padding: 0.4rem 1.1rem;
    font-style: normal;
    font-weight: 700;
    font-size: 1.4rem;
    /* line-height: 14px; */
    letter-spacing: 0.05em;
    color: #FFFFFF;
}

.article .list-date-article {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 1.6rem;
    /* line-height: 26px; */
    letter-spacing: 0.05em;
    color: #0033B3;
}

.article .list-title-article {
    font-style: normal;
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 1.8rem;
    letter-spacing: 0.08em;
    color: #000000;
    max-width: 144rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
	@media screen and (max-width: 767px) {
		font-size: 1.5rem;
		line-height: 1.8rem;
		max-width: 100%;
    }
}