@charset "UTF-8";
/* CSS Document */

/* -------------------------------------
*     メインスタイル
* ------------------------------------- */
body {
	background-color: #fff;
	color: #3C3C3C;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-weight: lighter;
	/*min-width: 1280px;*/
}
@media screen and (max-width: 768px) {
  body {
    min-width: unset;
  }
}
img {
	max-width: 100%;
}
@media screen and (min-width: 769px) {
section {
	margin: 110px 0;
}
}
@media screen and (max-width: 768px) {
  section {
    margin: 60px 0;
  }
}
.noscroll {
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .main {
    padding-top: 168px;
  }
}
@media screen and (max-width: 768px) {
  .main {
    padding-top: 50px;
  }
}
a {
	-webkit-transition: 0.6s;
	transition: 0.6s;
}
a:hover {
	opacity: 0.7;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .sp-block {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  .pc-block {
    display: none !important;
  }
}

/* -------------------------------------
*     ヘッダー
* ------------------------------------- */
.header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 1000;
}
.header__logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	height: 100%;
	background-image: url(../img/nitto_header.svg);
	background-size: cover;
	padding: 15px 0;
}
@media screen and (max-width: 768px) {
  .header__logo {
    padding: 0;
  }
}
.header__logo h1 {
	text-align: center;
	width: 300px;
	margin: 0 auto;
	margin-left: 50px;
}
@media screen and (max-width: 768px) {
  .header__logo h1 {
    margin-left: 16px;
    width: 200px;
  }
}
.header__logo h1 img {
	width: 100%;
}
.header__inner {
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	position: relative;
	height: 100%;
	background-color: #fff;
	border-bottom: #eee solid 1px;
}
@media screen and (max-width: 768px) {
  .header__inner {
    height: 50px;
    position: relative;
  }
}
.header__list {
	padding: 10px 0;
	max-width: 1100px;
	width: 95%;
	margin: 0 auto;
	position: relative;
}
@media screen and (max-width: 768px) {
  .header__list {
    display: none;
  }
}
.header__list ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
}
.header__list ul li {
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	padding: 12px 40px;
}
@media screen and (max-width: 1024px) {
  .header__list ul li {
    padding: 8px 20px;
    font-size: 12pt;
  }
}
.header__list ul li:last-child {
	margin-right: 0;
	border-right: none;
}
.header__list ul li a {
	font-size: 20pt;
	-webkit-transition: 0.6s;
	transition: 0.6s;
	font-weight: normal;
	text-align: center;
	width: 100%;
	letter-spacing: 0.08em;
}
.header__list ul li a:hover {
	opacity: 0.8;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}
.header__list ul li a span {
	font-size: 14pt;
	font-weight: normal;
	margin-top: 6px;
	display: block;
}
.header__list .sns-btn {
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
			transform: translateY(-50%);
}

/* ドロップダウンメニュー */
.menu-item {
	border-right: 1px solid #DBDBDB;
}
.menu-item:hover .drop-menu-list {
  transform: scaleY(1); /* ドロップダウンメニューの表示 */
}
.drop-menu-item:hover {
  opacity: .8; /* ドロップダウンメニューアイテムのホバー時の不透明度 */
  transition: opacity .3s; /* 不透明度の変化をアニメーション化 */
}
.drop-menu {
  position: relative;
}
.drop-menu-list {
	left: 442px;
	position: absolute;
	top: 100%;
	transform: scaleY(0); /* ドロップダウンメニューの非表示 */
	transform-origin: center top; /* 変形を適応する基準を設定 */
	transition: transform .3s; /* 表示の変化をアニメーション化 */
	z-index: 1;
	font-size: 10pt;
	background: #fff;
	width: auto;
	padding: 10px 0;
	flex-direction: column;
	border-top: solid 1px #eee;
	border-bottom: solid 1px #eee;
}
@media screen and (max-width: 1024px) {
.drop-menu-list {
	left: 40%;
	position: absolute;
	top: 100%;
	transform: scaleY(0); /* ドロップダウンメニューの非表示 */
	transform-origin: center top; /* 変形を適応する基準を設定 */
	transition: transform .3s; /* 表示の変化をアニメーション化 */
	z-index: 1;
	font-size: 10pt;
	background: #fff;
	width: auto;
	padding: 10px 0;
	flex-direction: column;
	border-top: solid 1px #eee;
	border-bottom: solid 1px #eee;
}
}	
.drop-menu-item {
	background-color: #fff; /* ドロップダウンメニューの背景色 */
	transition: opacity .3s; /* 不透明度の変化をアニメーション化 */
}

/* ====================
drawer mneu
====================*/
.nav {
  display: none;
}
@media screen and (max-width: 768px) {
  .nav {
    background-color: #fff;
    display: block;
    position: fixed;
    left: 0;
    top: 50px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    width: 100%;
    height: 100vh;
    padding-top: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 2000;
    overflow-y: auto;
  }
}
@media screen and (max-width: 768px) {
  .nav__inner {
    margin: 0;
    padding: 0;
    list-style: none;
  }
}
@media screen and (max-width: 768px) {
  .nav__item {
    padding: 10px 0 10px 60px;
    font-size: 14pt;
    font-weight: normal;
    border-bottom: 1px solid #ddd;
    position: relative;
  }
  .nav__item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 30px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-image: url(../../assets/img/nitto_blue_arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 6px;
    height: 12px;
  }
  .nav__item span {
    font-size: 12pt;
    padding-left: 8px;
    font-weight: normal;
  }
  .nav__item a {
    display: block;
    padding: 8px 0;
  }
}
.nav__logo {
	margin-top: 50px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	width: 200px;
}
.nav .sns-btn {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin: 20px auto 0;
}

/* ====================
hamburger
====================*/
.hamburger {
	display: none;
}
@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
    position: absolute;
    right: 35px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 9999;
  }
  .hamburger__line {
    position: absolute;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .hamburger__line.active {
    background-color: #000;
  }
  .hamburger .border_black {
    background-color: #000;
  }
  .hamburger__line-1 {
    top: 0;
  }
  .hamburger__line-2 {
    top: 12px;
  }
  .hamburger__line-3 {
    bottom: 0;
  }
}

/* ====================
drawer open
====================*/
@media screen and (max-width: 768px) {
  .nav_open .nav {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .nav_open .hamburger__line-1 {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 11px;
  }
  .nav_open .hamburger__line-2 {
    width: 0;
    opacity: 0;
  }
  .nav_open .hamburger__line-3 {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: 12px;
  }
}

/* -------------------------------------
*     ボタンスタイル
* ------------------------------------- */
@media screen and (min-width: 769px) {
.top-btn {
	position: fixed;
	right: 25px;
	bottom: 25px;
	z-index: 100;
}
}
@media screen and (max-width: 768px) {
  .top-btn {
	position: fixed;
	right: 2.5%;
	bottom: 1.5%;
	z-index: 100;
  }
}
.top-btn a {
	display: block;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	text-align: center;
	background-color: #000022;;
	border: 1px solid #F6F6F6;
}
.top-btn a img {
	width: 22px;
}
.top-btn a span {
	font-size: 10pt;
	color: #f0143c;
	margin-top: 4px;
	display: block;
}
.slick-list {
	overflow-y: hidden;
}
.slick-dots {
	display: none !important;
}
.slick-slide img {
	width: 100%;
}
.sns-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.sns-btn a {
	width: 36px;
	height: 36px;
	display: block;
}
.sns-btn a:first-child {
	margin-right: 10px;
}
.sns-btn a img {
	width: 100%;
}
@media screen and (max-width: 768px) {
.detail_btn{
	width: 50%;
}
.corp_detail_btn{
	width: 80%;
}
}
@media screen and (min-width: 767px) {
.detail_btn {
	width: 200px;
}
.corp_detail_btn {
	width: 300px;
}
}

/* ====================
dot-navi
====================*/
.dot {
	position: fixed;
	right: 36px;
	top: 50%;
	-webkit-transform: translateY(-50%);
			transform: translateY(-50%);
	z-index: 100;
	width: 12px;
}
@media screen and (max-width: 768px) {
.dot {
    right: 20px;
  }
}
.dot__list {
	height: 100%;
}
.dot__box {
	margin-bottom: 12px;
	width: 12px;
	height: 12px;
}
.dot__box:last-child {
	margin-bottom: 0;
}
.dot__link {
	display: block;
	width: 12px;
	height: 12px;
	border-radius: 6px;
	background-color: #007bc7;
	-webkit-transition: 0.25s;
	transition: 0.25s;
}
.dot__link.is-active {
	background-color: #000;
}

/* ====================
First-view
====================*/
section.top-fv {
	margin-bottom: 40px;
}

.top-fv {
	margin-top: 0;
}
.top-fv .section-content {
	margin-top: 0;
}
.top-fv__img img {
	-o-object-fit: cover;
	   object-fit: cover;
}
@media screen and (max-width: 768px) {
  .top-fv__img img {
    width: 100% !important;
  }
}

/* -------------------------------------
*     セクション
* ------------------------------------- */
.inner-block {
	max-width: 1280px;
	width: 90%;
	margin: 0 auto;
}
.section-title {
	font-size: 34pt;
	font-weight: normal;
	color: #f0143c;
	letter-spacing: 0.12em;
	text-align: center;
	margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 24pt;
  }
}
.section-sub-title {
	background-image: url(../img/nitto_subtitle.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom;
	font-size: 12pt;
	font-weight: normal;
	text-align: center;
	padding: 6px 0;
	color: #fff;
	letter-spacing: 0.04em;
}
.section-content {
	margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .section-content {
    margin-top: 40px;
  }
}
.section-contents-title {
	text-align: center;
	font-size: 18pt;
	letter-spacing: 0.04em;
	line-height: 1.75;
	margin-bottom: 46px;
}
@media screen and (max-width: 768px) {
  .section-contents-title {
    font-size: 14pt;
    margin-bottom: 40px;
  }
}

/* ====================
メッセージ
====================*/
.top-message .inner-block {
  max-width: 900px;
}
@media screen and (max-width: 768px) {
.top-message {
	z-index: 1;
}
.top-message__back  {
	background-position: center;
	background-image: url(../../assets/img/nitto_message_sp-bk.png);
    background-repeat: no-repeat;
    background-size: cover;
	position: relative;
	top: 0;
}
.top-message__tx {
	max-width: 90%;
	margin: 0 auto;
	position: relative;
	top: 50px;
}
.top-message__title {
	font-size: 34pt;
	color: #f0143c;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	position: relative;
	font-weight: normal;
	letter-spacing: 0.08em;
	-webkit-transform: translateY(9px);
			transform: translateY(9px);
	top: 20px;
}
.top-message__content {
	height: auto;
	margin: 0 auto 150px auto;
 	position: relative;
	top: 50px;
}
}
@media screen and (min-width: 767px) {
.top-message {
	z-index: 1;
}
.top-message__back {
	background-position: center;
	background-image: url(../../assets/img/nitto_message_bk.png);
    background-repeat: repeat;
    background-size: cover;
	position: relative;
	top: 0;
}
.top-message__tx {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	top: 100px;
}
.top-message__title {
	font-size: 34pt;
	color: #f0143c;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	position: relative;
	font-weight: normal;
	letter-spacing: 0.08em;
	-webkit-transform: translateY(9px);
			transform: translateY(9px);
	top: 290px;
}
.top-message__content {
	height: auto;
	margin: 0 auto 300px auto;
 	position: relative;
	top: 100px;
}
}

@media screen and (max-width: 768px) {
  .top-message__title {
    font-size: 30pt;
  }
}
.top-message__title span {
	font-size: 12pt;
	position: absolute;
	right: 0;
	top: -4px;
	letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .top-message__content img {
    height: 37.6vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.top-message p {
	letter-spacing: 0.04em;
	margin-top: 60px;
	font-size: 16pt;
	line-height: 32pt;
}
.top-message p:last-child {
  margin-top: 18px;
}
.top-message__sub-p {
	font-size: 32pt;
	line-height: 56pt;
}
@media screen and (max-width: 768px) {
	.top-message p {
	  font-size: 14pt;
	  line-height: 24pt;
	  letter-spacing: normal;
	}
	.top-message__sub-p {
		font-size: 18pt;
		line-height: 36pt;
	}
}

/* ====================
ニュース
====================*/
section.top-news {
	margin-top: -20px;
}
.top-news__wrap {
	max-width: 640px;
	width: 100%;
	margin: -20px auto 0 auto;
}
.top-news__list {
	position: relative;
	z-index: 10;
}
.top-news__list .tx_point {
	color: #f0143c;
}
.top-news__list::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-48.5%, -50%);
			transform: translate(-48.5%, -50%);
	width: 800px;
	height: 100px;
	z-index: -1;
}
@media screen and (max-width: 1024px) {
  .top-news__list::before {
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.top-news__list li {
	padding: 20px;
	border-top: 1px solid #DBDBDB;
}
.top-news__list li:last-child {
	border-bottom: 1px solid #DBDBDB;
}
.top-news__list li span {
	font-size: 12pt;
	display: block;
}
@media screen and (max-width: 768px) {
  .top-news__list li span {
    font-size: 10pt;
  }
}
.top-news__list li a {
	font-size: 14pt;
	display: block;
	font-weight: normal;
	text-decoration: underline;
	margin-top: 8px;
	letter-spacing: 0.04em;
    overflow-y: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
@media screen and (max-width: 768px) {
  .top-news__list li a {
	  font-size: 14pt;
	  line-height: 1.5;
	  overflow-y: hidden;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 1;
  }
}
.top-news .detail-box .detail-btn::before {
	right: unset;
	left: 20px;
	-webkit-transform: translateY(-50%) rotate(-90deg);
			transform: translateY(-50%) rotate(-90deg);
}

.detail-box {
	margin-top: 50px;
}
.detail-box .detail-btn {
	padding: 16px 0;
	background-color: #f0143c;
	display: block;
	font-weight: normal;
	letter-spacing: 0.04em;
	width: 300px;
	margin: 0 auto;
	position: relative;
	text-align: center;
	border-radius: 6px;
	cursor: pointer;
}
.detail-box .detail-btn::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	-webkit-transform: translateY(-50%);
			transform: translateY(-50%);
	width: 12px;
	height: 8px;
	background-image: url(../../assets/img/nitto_blue_arrow.svg);
	background-repeat: no-repeat;
	background-size: contain;
}

/* ====================
会社情報
====================*/
.top-corporate__wrap {
	max-width: 1000px;
	width: 90%;
	margin: 60px auto 0;
}
@media screen and (max-width: 768px) {
  .top-corporate__wrap {
    width: 100%;
  }
}
.top-corporate__wrap h3 {
	font-size: 18pt;
	font-weight: normal;
	margin-bottom: 16px;
	margin-left: -10px;
}
@media screen and (max-width: 768px) {
  .top-corporate__wrap h3 {
    font-size: 16pt;
  }
}
.top-corporate__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
@media screen and (max-width: 768px) {
  .top-corporate__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top-corporate__list {
	width: 50%;
	margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .top-corporate__list {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.top-corporate__list li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.top-corporate__list li p {
	line-height: 2;
	font-size: 12pt;
}
@media screen and (max-width: 768px) {
  .top-corporate__list li p {
	  line-height: 2;
	  font-size: 12pt;
  }
}
.top-corporate__list li .text-01 {
	min-width: 160px;
}
@media screen and (max-width: 768px) {
  .top-corporate__list li .text-01 {
    min-width: 70px;
  }
}
.top-corporate__map {
	width: 50%;
	height: 20vw;
}
@media screen and (max-width: 768px) {
  .top-corporate__map {
    width: 100%;
    height: 47vw;
  }
}
.top-corporate__map iframe {
	width: 100%;
	height: 100%;
}
.top-corporate__mission {
	background-color: #F6F6F6;
	padding: 45px 0;
	margin-top: 62px;
}
@media screen and (max-width: 768px) {
  .top-corporate__mission {
    padding: 38px 0;
    margin-top: 48px;
  }
}
.top-corporate__mission--head {
	padding: 20px 0 16px;
	background-color: #fff;
}
@media screen and (max-width: 768px) {
  .top-corporate__mission--head {
    padding: 18px 0 14px;
  }
}
.top-corporate__mission--head h4 {
	font-weight: normal;
	font-size: 30pt;
	text-align: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
	padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .top-corporate__mission--head h4 {
    font-size: 22pt;
    line-height: 1.5;
  }
}
.top-corporate__mission--head h4 .head-title {
	position: relative;
}
.top-corporate__mission--head h4 .head-title .ruby {
	font-size: 0.35em;
	position: absolute;
	top: -8px;
	right: 0;
}
@media screen and (max-width: 768px) {
  .top-corporate__mission--head h4 .head-title .ruby {
    left: 120px;
    top: -10px;
  }
}
.top-corporate__mission--head h4 .color-orange {
	color: #f0143c;
}
.top-corporate__mission--list {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin: 40px auto 0;
	font-weight: normal;
	padding: 0 20px;
}
.top-corporate__mission--list li {
	margin-top: 34px;
	padding-left: 24px;
}
@media screen and (max-width: 768px) {
  .top-corporate__mission--list li {
    padding-left: 18px;
  }
}
.top-corporate__mission--list li .title {
	color: #f0143c;
	font-size: 22pt;
	letter-spacing: 0.15em;
	position: relative;
	line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .top-corporate__mission--list li .title {
    font-size: 16pt;
  }
}
.top-corporate__mission--list li .title::before {
	content: "";
	position: absolute;
	top: 14px;
	left: -24px;
	width: 10px;
	height: 10px;
	background-color: #f0143c;
}
@media screen and (max-width: 768px) {
  .top-corporate__mission--list li .title::before {
    width: 8px;
    height: 8px;
    top: 10px;
    left: -18px;
  }
}
.top-corporate__mission--list li .title .font-small {
	font-size: 0.9em;
}
.top-corporate__mission--list li .text {
	margin-top: 4px;
	line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .top-corporate__mission--list li .text {
    font-size: 12pt;
  }
}
.top-corporate-aco__title {
	padding-top: 40px;
}

.detail-box {
	max-width: 1000px;
	margin: 50px auto 0;
}
@media screen and (max-width: 768px) {
  .detail-box {
    margin-top: 40px;
  }
}

.accordion {
	display: none;
}
.accordion__list li {
	padding: 22px 20px;
	padding-left: 20px;
	font-size: 12pt;
	border-top: 1px solid #DBDBDB;
}
@media screen and (max-width: 768px) {
  .accordion__list li {
    font-size: 10pt;
    padding: 16px 14px;
  }
}
.accordion__list li:last-child {
	border-bottom: 1px solid #DBDBDB;
}
.accordion__list li span {
	display: block;
	line-height: 2;
}
.accordion__list li p {
	line-height: 2;
}

.accordion02 {
	display: none;
}

.top-client__wrap {
	max-width: 1000px;
	width: 90%;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .top-client__wrap {
    width: 100%;
  }
}
.top-client__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
		-ms-flex-pack: justify;
			justify-content: space-between;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .top-client__list {
    width: 90%;
    margin: 0 auto;
  }
}
.top-client__list li {
	width: calc(25% - 20px);
	height: 50px;
	margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .top-client__list li {
    width: calc(50% - 15px);
    margin-bottom: 30px;
  }
}
.top-client__list li img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}
.top-client__company-name {
	line-height: 2;
	margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .top-client__company-name p {
    font-size: 10pt;
  }
}

.top-client__btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
		-ms-flex-pack: justify;
			justify-content: space-between;
	margin-top: 10px;
}
.top-client__btn a {
	width: calc(33.3333% - 6px);
	height: 150px;
	display: block;
	border-radius: 6px;
	border: 1px solid #004098;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	font-size: 18pt;
	font-weight: normal;
	letter-spacing: 0.1em;
	position: relative;
}
.top-client__btn2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
		-ms-flex-pack: justify;
			justify-content: space-between;
	margin-top: 10px;
}
.top-client__btn2 a {
	width: calc(50% - 4px);
	height: 150px;
	display: block;
	border-radius: 6px;
	border: 1px solid #004098;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	font-size: 18pt;
	font-weight: normal;
	letter-spacing: 0.1em;
	position: relative;
}

@media screen and (max-width: 768px) {
  .top-client__btn,
  .top-client__btn2{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 15px;
  }
}

@media screen and (max-width: 768px) {
  .top-client__btn a,
  .top-client__btn2 a{
    width: 100%;
    height: 80px;
    margin-bottom: 14px;
  }
  .top-client__btn a:last-child,
  .top-client__btn2 a:last-child{
    margin-bottom: 0;
  }
}
.top-client__btn a::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 20px;
	-webkit-transform: translateY(-50%);
			transform: translateY(-50%);
	width: 8px;
	height: 12px;
	background-repeat: no-repeat;
	background-size: contain;
}
.top-client__btn a .btn {
	color: #3C3C3C;
	position: relative;
}
.top-client__btn a .btn::after {
	content: "";
	position: absolute;
	top: 0;
	left: -24px;
	width: 16px;
	height: 20px;
	background-repeat: no-repeat;
	background-size: contain;
}
.top-client__btn a span {
	color: #f0143c;
}
.top-client__btn2 a {
	background-image: url(../../assets/img/nitto_blue_arrow.svg);
	background-repeat: no-repeat;
	background-position: 20px;
}
.top-client__btn a:first-child::before {
	background-image: url(../../assets/img/nitto_blue_arrow.svg);
}
.top-client__btn a:first-child .btn:after {
	background-image: url(../../assets/img/nitto_blue_arrow.svg);
}
.top-client__btn a:nth-child(2) .btn::after {
	background-image: url(../../assets/img/nitto_blue_arrow.svg);
}
.top-client__btn-01::before {
	background-image: url(../../assets/img/nitto_blue_arrow.svg);
}
.top-client__btn-02::before {
	background-image: url(../../assets/img/nitto_blue_arrow.svg);
}
.top-client__btn-03::before {
	background-image: url(../../assets/img/nitto_blue_arrow.svg);
}
.top-client__btn-03 img {
	width: 28px;
	margin-right: 8px;
}

.top-service__list {
	max-width: 900px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
		-ms-flex-pack: justify;
			justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .top-service__list {
	width: 100%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
		-ms-flex-direction: column;
			flex-direction: column;
  }
}
.top-service__list li {
	width: calc(50% - 10px);
}
@media screen and (max-width: 768px) {
  .top-service__list li {
    width: 100%;
  }
}
.top-service__list li:first-child {
	position: relative;
}
@media screen and (max-width: 768px) {
  .top-service__list li:first-child {
    margin-bottom: 40px;
  }
}
.top-service__list li:first-child::before {
	content: "";
	position: absolute;
	top: 6px;
	left: 6px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 20px 20px 0 0;
	border-color: #009600 transparent transparent transparent;
}
.top-service__list li:first-child .top-service__body a::after {
	background-image: url(../../assets/img/nitto_blue_arrow.svg);
	left: 73px;
}
.top-service__list li:first-child .top-service-thumbnail-img {
	border: 2px solid #009600;
}
.top-service__list li:last-child {
	position: relative;
}
.top-service__list li:last-child::before {
	content: "";
	position: absolute;
	top: 6px;
	left: 6px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 20px 20px 0 0;
	border-color: #0064B4 transparent transparent transparent;
}
.top-service__list li:last-child .top-service__body a::after {
	background-image: url(../../assets/img/nitto_blue_arrow.svg);
	left: 76px;
}
.top-service__list li:last-child .top-service-thumbnail-img {
	border: 2px solid #0064B4;
}
.top-service__list--img img {
	width: 100%;
}
.top-service__body {
	margin-top: 20px;
}
.top-service__body a {
	max-width: 300px;
	width: 100%;
	margin: 0 auto;
	display: block;
	height: 60px;
	font-size: 16pt;
	font-weight: normal;
	text-align: center;
	color: #595757;
	line-height: 60px;
	border-radius: 5px;
	border: 1px solid #DBDBDB;
	position: relative;
}
.top-service__body a::before {
	content: "";
	position: absolute;
	left: 16px;
	top: 50%;
	-webkit-transform: translateY(-50%);
			transform: translateY(-50%);
	width: 10px;
	height: 14px;
	background-repeat: no-repeat;
	background-size: contain;
}
.top-service__body a::after {
	content: "";
	position: absolute;
	top: 34%;
	width: 13px;
	height: 21px;
	background-repeat: no-repeat;
	background-size: contain;
}
.top-service__body a img {
	width: 180px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
}
.top-service__body p {
	text-align: center;
	letter-spacing: 0.04em;
	margin-top: 16pt;
	line-height: 22pt;
}
.top-service__body-01 a::before {
	background-image: url(../../assets/img/nitto_blue_arrow.svg);
}
.top-service__body-02 a::before {
	background-image: url(../../assets/img/nitto_blue_arrow.svg);
}

/* ====================
採用情報
====================*/
.top-recruit__btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
}
.top-recruit__btn .recruit-btn {
	display: block;
	width: 300px;
	text-align: center;
	padding: 30px 0 40px;
	border-radius: 8px;
	border: 1px solid #000000;
	cursor: pointer;
	position: relative;
	-webkit-transition: 0.6s;
	transition: 0.6s;
}
@media screen and (max-width: 768px) {
  .top-recruit__btn .recruit-btn {
    padding: 5vw 0;
  }
}
.top-recruit__btn .recruit-btn:hover {
	opacity: 0.7;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}
.top-recruit__btn .recruit-btn::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 20px;
	-webkit-transform: translateX(-50%);
			transform: translateX(-50%);
	width: 12px;
	height: 8px;
	background-image: url(../../assets/img/nitto_blue_arrow.svg);
	background-repeat: no-repeat;
	background-size: contain;
}
@media screen and (max-width: 768px) {
  .top-recruit__btn .recruit-btn::before {
    bottom: 2vw;
  }
}
.top-recruit__btn .recruit-btn:first-child {
	margin-right: 28px;
}
@media screen and (max-width: 768px) {
  .top-recruit__btn .recruit-btn:first-child {
    margin-right: 16px;
  }
}
.top-recruit__btn .recruit-btn:first-child img {
	width: 33px;
}
@media screen and (max-width: 768px) {
  .top-recruit__btn .recruit-btn:first-child img {
    width: 26px;
  }
}
.top-recruit__btn .recruit-btn:last-child img {
	width: 40px;
}
@media screen and (max-width: 768px) {
  .top-recruit__btn .recruit-btn:last-child img {
    width: 33px;
  }
}
.top-recruit__btn .recruit-btn:last-child::before {
	left: 2vw;
	bottom: unset;
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(-90deg);
			transform: translateY(-50%) rotate(-90deg);
}
@media screen and (max-width: 768px) {
  .top-recruit__btn .recruit-btn p {
    font-size: 10pt;
    margin-top: 8px;
  }
}
.top-recruit__btn--inner {
	height: 76px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
		-ms-flex-direction: column;
			flex-direction: column;
	-webkit-box-pack: justify;
		-ms-flex-pack: justify;
			justify-content: space-between;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
}
@media screen and (max-width: 768px) {
  .top-recruit__btn--inner {
    height: auto;
  }
}
.top-recruit__btn--img {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
}
.top-recruit__list {
	max-width: 1000px;
	width: 90%;
	margin: 70px auto 0;
}
@media screen and (max-width: 768px) {
  .top-recruit__list {
    width: 100%;
    margin-top: 54px;
  }
}
.top-recruit__list--img {
	width: 250px;
	height: 250px;
	margin-right: 46px;
}
@media screen and (max-width: 768px) {
  .top-recruit__list--img {
    width: 100%;
    height: 44vw;
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.top-recruit__list--img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}
.top-recruit__box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .top-recruit__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top-recruit__box:last-child {
	margin-bottom: 0;
}
.top-recruit__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
		-ms-flex-direction: column;
			flex-direction: column;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
}
@media screen and (max-width: 768px) {
  .top-recruit__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top-recruit__body--title {
	font-size: 18pt;
	font-weight: normal;
	margin-bottom: 16px;
	margin-left: -10px;
}
.top-recruit__body--title a {
	text-decoration: underline;
}
.top-recruit__body--title a:hover {
	text-decoration: none;
}

@media screen and (max-width: 768px) {
.top-recruit__body--title {
	font-size: 16pt;
}
.top-recruit__body--title a {
	text-decoration: underline;
}
.top-recruit__body--title a:hover {
	text-decoration: none;
}
}
.top-recruit__detail--text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 16px;
	line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .top-recruit__detail--text {
    font-size: 10pt;
  }
}
.top-recruit__detail--text:last-child {
	margin-bottom: 0;
}
.top-recruit__detail--text .text-01 {
	width: 200px;
}
@media screen and (max-width: 768px) {
  .top-recruit__detail--text .text-01 {
    width: 180px;
    margin-right: 10px;
  }
}

/* ====================
メンバー情報
====================*/
.top-member__wrap {
	max-width: 1000px;
	width: 90%;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .top-member__wrap {
    width: 100%;
  }
}
.top-member__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
		  -ms-flex-pack: justify;
		justify-content: space-between;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
}

/* 2列左寄せ調整 */
 .top-member__list::before {
	content: "";
	display: block;
	width: 22%;
	-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
			order: 1;
}
@media screen and (max-width: 768px) {
  .top-member__list::before {
    width: calc(50% - 20px);
  }
} 
 .top-member__list::after {
	content: "";
	display: block;
	width: 22%;
}
@media screen and (max-width: 768px) {
  .top-member__list::after {
    width: calc(50% - 20px);
  }
} 
.top-member__list li {
	width: 22%;
}
.top-member__list li:nth-child(5), .top-member__list li:nth-child(6), .top-member__list li:nth-child(7) {
	margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .top-member__list li:nth-child(5), .top-member__list li:nth-child(6), .top-member__list li:nth-child(7) {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .top-member__list li {
    width: calc(50% - 20px);
  }
  .top-member__list li:first-child, .top-member__list li:nth-child(2) {
    margin-bottom: 60px;
  }
}
.top-member__list li:hover .top-member__profile {
	opacity: 1;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.top-member__list li img {
	width: 100%;
	border-radius: 50%;
}
.top-member__img {
	position: relative;
}
.top-member__body {
	text-align: center;
}
.top-member__body h3 {
	margin-top: 14px;
	letter-spacing: 0.04em;
	font-size: 12pt;
	white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .top-member__body h3 {
    font-size: 12px;
  }
}
.top-member__body h3 span {
	margin-top: 10px;
	display: block;
}
@media screen and (max-width: 768px) {
  .top-member__body h3 span {
    font-size: 10pt;
    margin-top: 8px;
  }
}
.top-member__profile {
	position: absolute;
	top: 0;
	left: 0;
	height: 140%;
	background-color: rgba(255, 255, 255, 0.8);
	padding-top: 40px;
	opacity: 0;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .top-member__profile {
    position: static;
    height: auto;
    padding: 0;
    opacity: 1;
  }
}
.top-member__profile span {
	margin-bottom: 12px;
	font-weight: normal;
	display: block;
}
@media screen and (max-width: 768px) {
  .top-member__profile span {
    margin: 14px 0 10px;
  }
}
.top-member__profile p {
  line-height: 1.6;
  font-size: 12pt;
}
@media screen and (max-width: 768px) {
  .top-member__profile p {
    font-size: 10pt;
    text-align: left;
  }
}

/* -------------------------------------
*     フッター
* ------------------------------------- */
.footer {
	background-color: #004098;
	color: #fff;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    width: 100%;
  }
}
.footer__list {
	padding: 15px 0;
	max-width: 1100px;
	margin: 0 auto;
	position: relative;
}
@media screen and (max-width: 768px) {
  .footer__list {
    padding-top: 0;
  }
}
.footer__list ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
}
@media screen and (max-width: 768px) {
  .footer__list ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__list ul li {
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	padding: 8px 20px;
	border-right: 1px solid #DBDBDB;
}
@media screen and (max-width: 1024px) {
  .footer__list ul li {
    padding: 4px 10px;
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .footer__list ul li {
    padding: 10px 0 10px 60px;
    font-size: 14pt;
    font-weight: normal;
    border-top: 1px solid #ddd;
    border-right: none;
    position: relative;
  }
  .footer__list ul li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 30px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-image: url(../../assets/img/nitto_blue_arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 6px;
    height: 12px;
  }
  .footer__list ul li span {
    font-size: 12pt;
    padding-left: 8px;
    font-weight: normal;
  }
  .footer__list ul li a {
    display: block;
    padding: 8px 0;
  }
}
.footer__list ul li:last-child {
	margin-right: 0;
	border-right: none;
}
.footer__list ul li a {
	-webkit-transition: 0.6s;
	transition: 0.6s;
	font-weight: normal;
	text-align: center;
	width: 100%;
	letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .footer__list ul li a {
    text-align: left;
  }
}
.footer__list ul li a:hover {
	opacity: 0.8;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}
.footer__list ul li a span {
	font-size: 8pt;
	font-weight: normal;
	margin-top: 6px;
	display: block;
}
@media screen and (max-width: 768px) {
  .footer__list ul li a span {
    display: inline-block;
    font-size: 10pt;
  }
}
.footer__list .sns-btn {
	position: absolute;
	top: 46px;
	right: 0;
}
@media screen and (max-width: 1024px) {
  .footer__list .sns-btn {
    position: static;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 20px auto 0;
  }
}
@media screen and (max-width: 768px) {
.footer__logo {
	text-align: center;
	margin: 0 auto;
	padding: 40px 0;
	width: 50%;
}
.footer__bottom {
	padding: 20px 0;
	background-color: #000022;
	color: #fff;
}
.footer__bottom--inner {
	max-width: 100%;
	margin: 0 auto;
	position: relative;
}
}
@media screen and (min-width: 767px) {
.footer__logo {
	text-align: center;
	margin: 15px 0 0 0;
	width: 200px;
	float: left;
}
.footer__bottom {
	padding: 20px 0 30px 0;
	background-color: #000022;
	color: #fff;
}
.footer__bottom--inner {
	max-width: 1100px;
	margin: 0 auto;
	position: relative;
}
}

@media screen and (max-width: 768px) {
.footer__bottom--inner p {
	text-align: center;
	font-size: 8pt;
	line-height: 12pt;
	letter-spacing: 0.5pt;
}
.footer__bottom--inner a {
	display: none;
}
}
@media screen and (min-width: 767px) {
.footer__bottom--inner p {
	float: left;
	text-align: left;
	font-size: 8pt;
	line-height: 12pt;
	letter-spacing: 0.5pt;
}
.footer__bottom--inner a {
	margin: 0 10px;
	float: right;
	font-size: 10pt;
}
}

/* ====================
追加更新（20260707）
====================*/
/* トップページ */

@media screen and (min-width: 767px) {
	.omoi_cube,
	.omoi_cube img {
		width: 60px;
		height: 60px;
		margin: 20px auto;
	}
	.omoi_arrow,
	.omoi_arrow img {
		width: 120px;
		height: 120px;
		margin: 0 auto -50px auto;
	}
}
@media screen and (min-width: 1000px) {
	.wide_omoi,
	.wide_omoi img {
		max-width: 1000px;
		height: auto;
		clear: both;
		float: none;
		margin: 0 auto;
		padding: 0;
	}
}
@media screen and (max-width: 768px) {
	.omoi_cube,
	.omoi_cube img {
		width: 40px;
		height: 40px;
		margin: 20px auto;
	}
	.omoi_arrow,
	.omoi_arrow img {
		width: 80px;
		height: 80px;
		margin: 0 auto -50px auto;
	}
}
@media screen and (max-width: 1001px) {
	.wide_omoi,
	.wide_omoi img {
		width: 100%;
		height: auto;
		clear: both;
		float: none;
		margin: 0 auto;
		padding: 0;
	}
}

/* ====================
追加更新（20260424）
====================*/
/* ニューストピックス */
u {
    text-underline-offset: 10px;
    text-decoration: underline 0.5px;
}
.top-news__list,
.top-news__list li a {
	line-height: normal;
}
.news_number {
    width: 300px;
    display: flex;
    gap: 50px;
    flex-flow: wrap;
    justify-content: space-around;
    align-items: center;
    margin: 20px auto;
    font-size: 12pt;
    line-height: 22pt;
    text-align: center;
    color: #000;
}
.news-more{
	text-align: center;
	color: #000;
	font-size: 12pt;
	line-height: 22pt;
	text-underline-offset: 10px;
    text-decoration: underline 0.5px;
	margin-top: 50px;
}

/* 404 */
.notfound__box {
	width: 100%;
}
.notfound__heading {
	font-size: max(20px, min(4.6875vw, 30px));
	padding: 16px 0;
}
.notfound__info {
	margin-top: 20px;
}
.notfound__text {
	color: #3c3c3c;
	font-size: 16px;
	line-height: 1.8;
}