﻿@charset "utf-8";
/*
File: content.css
Author: 株式会社Genova Design
Author site: https://genovadesign.co.jp/
Developer: Antoine Turquois
Developer site: http://antoine.turquois.com/
*/

/*============== --- ===================
================ HOME ==================
===================================== */

/*--------------------------------------
  Home header
--------------------------------------*/
.home--search .header {
	background: #fff0;
	box-shadow: none;
}
.home--search .header .header__logo {
  display: none;
}
.home--search .header .header__menu,
.home--search .header .toggle-menu {
  margin-left: auto;
}

@media screen and (max-width: 767px) {
	.home--search .header {
		position: static;
		top: initial;
	}
	.home--search #wrapper {
		padding: 0;
	}
}


/*--------------------------------------
  General
--------------------------------------*/
.home__logo {
	max-width: 380px;
	margin: 0 auto;
}
.home__search {
	padding: 100px 0 75px;
}
.home #content {
  padding: 0;
}
.home--search .home--phase-2 {
	display: none;
}
.home--sitemap .home--phase-1 {
	display: none;
}
.home--sitemap .home--phase-2 {
	display: block;
}

@media screen and (max-width: 767px) {
	.home__logo {
		max-width: 250px;
	}
	.home__search {
		padding: 15px 0 25px;
	}
}


/*--------------------------------------
  Tab / pannel
--------------------------------------*/
.tab-group {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
}
.tab {
	width: 100%;
	padding: 6px 10px 2px;
	font-size: 15px;
	font-weight: bold;
	line-height: 1.6;
	color: #626461;
	text-align: center;
	letter-spacing: 0;
	list-style: none;
	cursor: pointer;
	background: #9EA09D;
	transition-timing-function: cubic-bezier(0.33, 1, 0.66, 1);
	transition-duration: 0.3s;
}
.tab:hover,
.tab.is-active {
	color: #fff;
	background: #333632;
}
.tab:first-child {
	margin-left: 0;
	border-radius: 5px 0 0 0;
}
.tab:last-child {
	border-radius: 0 5px 0 0;
}
.panel-group {
	background: #333632;
	border-radius: 5px;
}
.panel {
	display: none;
}
.panel.panel--show {
	display: block;
	height: 100%;
}
.panel__box {
	display: table;
	width: 100%;
	height: 100%;
}
.panel__box__inner {
	display: table-cell;
	padding: 4px 34px 1px;
	vertical-align: middle;
}
.panel__title {
	padding: 3px 0;
	font-size: 13px;
	line-height: 1.5;
	color: #9EA09D;
	text-align: center;
}
.panel__count {
	margin: 3px 0 0;
	font-size: 14px;
	color: #5BC4D1;
	text-align: center;
}
.panel__count span {
	font-weight: bold;
}

@media screen and (max-width: 767px) {
	.tab-group {
		max-width: 300px;
	}
	.tab {
		padding: 3px 0;
		font-size: 10px;
	}
	.panel__box__inner {
		padding: 3px 15px;
	}
	.panel__title {
		font-size: 10px;
	}
	.panel__count {
		font-size: 10px;
	}
}


/*--------------------------------------
  search bar
--------------------------------------*/
.home__search-box {
	position: relative;
	z-index: 4;
	width: 100%;
	max-width: 880px;
	margin: 60px auto 0;
}
.search-bar {
	display: flex;
	width: 100%;
	border-radius: 5px;
}
.search-bar.search-bar--vertical {
	display: block;
}
.search-bar li {
	position: relative;
	width: 100%;
	height: 60px;
	vertical-align: middle;
}
.search-bar:not(.search-bar--vertical) li:nth-child(1) {
	width: 22%;
	border-right: 1px solid #C9C9C9;
}
.search-bar:not(.search-bar--vertical) li:nth-child(2) {
	width: 52%;
}
.search-bar:not(.search-bar--vertical) li:nth-child(3) {
	width: 26%;
}
.search-bar.search-bar--vertical li:nth-child(2) {
	height: auto;
	margin: 10px 0 0;
}
.search-bar .category-select {
	display: block;
	width: 100%;
	height: 100%;
	padding: 3px 0 0 15px;
	font-size: 16px;
	color: #333632;
	background: url(../img/icon_select.png) no-repeat right center;
	background-color: #fff;
	background-size: auto;
	border: none;
	appearance: none;
	border-radius: 5px;
}
.search-bar .category-select:hover {
	cursor: pointer;
}
input.url-input {
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	padding: 0 0 0 20px;
	border: none;
}
.search-bar:not(.search-bar--vertical) .category-select {
	border-radius: 5px 0 0 5px;
}
.search-bar:not(.search-bar--vertical) .search-btn {
	border-radius: 0 5px 5px 0;
}
.search-bar--vertical .search-btn {
	max-width: 350px;
	margin: auto;
}
textarea.text-input {
	box-sizing: border-box;
	width: 100%;
	padding: 20px;
	resize: vertical;
	border-radius: 5px;
}

@media screen and (max-width: 767px) {
	.home__search-box {
		max-width: 600px;
		margin: 30px auto 0;
	}
	.search-bar {
		display: block;
	}
	.search-bar li:nth-child(1),
	.search-bar li:nth-child(2),
	.search-bar li:nth-child(3) {
		width: 100%!important;
	}
	.search-bar li:nth-child(1) {
		height: 40px;
		border-right: 0px!important;
	}
	.search-bar li:nth-child(2) {
		height: 40px;
		margin: 10px 0;
	}
	.search-bar li:nth-child(3) {
		height: 50px;
	}
	.search-bar .category-select,
	input.url-input,
	.search-bar .search-btn {
		border-radius: 5px!important;
	}
	.search-bar .category-select {
		font-size: 12px;
	}
	input.url-input {
		padding: 0 0 0 10px;
		font-size: 12px;
	}
	.search-bar .search-btn {
		max-width: 350px;
		margin: auto;
		font-size: 14px;
	}
}


/*--------------------------------------
  Home title
--------------------------------------*/
.home__title {
	margin: 55px 0 0;
	color: #333632;
	text-align: center;
}
.home__title h1 {
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.6;
}
.home__title p {
	margin: 7px 0 0;
	font-size: 14px;
	line-height: 1.8;
	color: #333632;
}
.home__title p + p {
	margin: 0;
	text-align: center;
}
.home__title a {
	font-weight: bold;
}

@media screen and (max-width: 767px) {
	.home__title {
		margin: 30px 0 0;
	}
	.home__title h1 {
		font-size: 18px;
		line-height: 1.4;
	}
	.home__title p {
		font-size: 12px;
	}
}


/*--------------------------------------
	News section (top page preview)
--------------------------------------*/
.home__news {
	padding: 25px 0 20px;
	background: rgba(91, 196, 209, 0.2);
}
.top-news {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.top-news__list dl {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}
.top-news__list dl + dl {
	padding: 10px 0 0;
}
.top-news__list dl dt {
	font-size: 14px;
	line-height: 1.4;
	color: #333632;
}
.top-news__list .top-news__tag {
	box-sizing: border-box;
	display: inline-block;
	width: 37px;
	height: 13px;
	padding: 0;
	margin: -2px 0 0 10px;
	font-size: 9px;
	font-weight: bold;
	line-height: 14px;
	color: #fff;
	text-align: center;
	text-indent: 0;
	letter-spacing: 0;
	vertical-align: middle;
	background: #14B4C7;
}
.top-news__list dl dd {
	padding: 0 0 0 10px;
	font-size: 14px;
	line-height: 1.4;
}
.top-news__list dl dd a {
	color: #333632;
	text-decoration: underline;
}
.top-news__list dl dd a:hover {
	color: #14B4C7;
	text-decoration: underline;
}
.top-news__overview {
	margin-left: 20px;
	font-family: 'Spartan', sans-serif;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.4;
	color: #333632;
}
.top-news__overview a {
	color: #333632;
	text-decoration: underline;
}
.top-news__overview a:hover {
	color: #14B4C7;
	text-decoration: underline;
}

@media screen and (max-width: 767px) {
	.top-news {
		display: block;
		align-items: initial;
		justify-content: initial;
	}
	.top-news__list dl {
		display: block;
		align-items: initial;
		justify-content: initial;
	}
	.top-news__list dl + dl {
		margin: 5px 0 0;
	}
	.top-news__list dl dd {
		padding: 0;
		font-size: 12px;
	}
	.top-news__overview {
		margin: 10px 0 0;
		text-align: center;
	}
}


/*--------------------------------------
  STEPS
--------------------------------------*/
.home__steps {
	padding: 85px 0 110px;
	background: #FFFFFF;
}
.steps__title h2 {
	font-family: '游ゴシック体', 'Yu Gothic', YuGothic, sans-serif;
	font-size: 30px;
	font-weight: bold;
	line-height: 1.85;
	color: #333632;
}
.steps__title h2 span {
	display: block;
	margin-bottom: 30px;
	font-family: 'Spartan', sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #5BC4D1;
}
.steps__list {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin: 55px 0 0;
}
.steps__list > li {
	width: 100%;
}
.steps__list > li + li {
	margin: 0 0 0 2.75%;
}
.step__picture {
	position: relative;
}
.steps__list > li + li .step__picture::before {
	position: absolute;
	top: 50%;
	left: -25px;
	display: block;
	margin-top: -9px;
	content: '';
	border-top: 9px solid transparent;
	border-bottom: 9px solid transparent;
	border-left: 18px solid #333632;
}
.step__title {
	margin: 18px 0 10px;
	text-align: center;
}
.step__title h3 {
	font-family: '游ゴシック体', 'Yu Gothic', YuGothic, sans-serif;
	font-size: 21px;
	font-weight: bold;
	line-height: 1.6;
	color: #009EB1;
}
.step__text {
	line-height: 1.85;
}
.step__text strong {
	font-weight: bold;
}
.step__btn {
	height: 80px;
	margin: 100px 0 0;
}
.step__btn .search-btn {
	max-width: 800px;
	font-size: 20px;
}

@media screen and (max-width: 1040px) and (min-width: 768px) {
	.steps__list > li + li .step__picture::before {
		left: -16px;
		border-top: 7px solid transparent;
		border-bottom: 7px solid transparent;
		border-left: 14px solid #333632;
	}
	.step__title {
		font-size: 16px;
	}
}

@media screen and (max-width: 767px) {
	.home__steps {
		padding: 40px 0;
	}
	.steps__title h2 {
		font-size: 24px;
		line-height: 1.7;
	}
	.steps__title h2 span {
		margin-bottom: 10px;
	}
	.steps__list {
		display: block;
		margin: 25px 0 0;
		text-align: center;
	}
	.steps__list li + li {
		margin: 45px 0 0;
	}
	.steps__list > li + li .step__picture::before {
		position: absolute;
		top: -25px;
		left: 50%;
		display: block;
		margin-left: -9px;
		content: '';
		border-top: 18px solid #000;
		border-right: 9px solid transparent;
		border-left: 9px solid transparent;
	}
	.step__btn {
		margin: 40px 0 0;
	}
	.step__btn .search-btn {
		font-size: 16px;
	}
}


/*--------------------------------------
  Search Start
--------------------------------------*/
.home__sitemap {
	padding: 110px 0 0;
}
.sitemap-result {
	padding: 0 0 80px;
}
.sitemap-check {
	padding: 50px 30px 60px;
	background: transparent linear-gradient(103deg, #5BC4D1 0%, #6FA0D9 100%) 0% 0% no-repeat padding-box;
}
.sitemap-check__title {
	margin: 0 0 20px;
	font-family: '游ゴシック体', 'Yu Gothic', YuGothic, sans-serif;
	font-size: 25px;
	font-weight: bold;
	line-height: 1.4;
	color: #FFFFFF;
	text-align: center;
	letter-spacing: 0;
}
.sitemap-check__link {
	margin: 15px 0 0;
	text-align: center;
}
.sitemap-check__link  a {
	font-size: 12px;
	color: #FFFFFF;
	text-decoration: underline;
}
.sitemap-check__link a:hover {
	text-decoration: none;
}

@media screen and (max-width: 767px) {
	.home__sitemap {
		padding: 40px 0 0;
	}
	.sitemap-check {
		padding: 30px 10px 40px;
	}
	.sitemap-check__title {
		font-size: 20px;
	}
	.sitemap-check__btn .check-btn {
		font-size: 18px;
	}
}


/*--------------------------------------
  Info box
--------------------------------------*/
.site-info-box {
	display: table;
	width: 100%;
}
.site-info-box .site-info-box__picture,
.site-info-box .site-info-box__table {
	display: table-cell;
	vertical-align: middle;
}
.site-info-box .site-info-box__picture {
	width: 176px;
	padding: 10px;
	text-align: center;
	background: transparent linear-gradient(180deg, #F5F5F5 0%, #C7D1D1 100%) 0% 0% no-repeat padding-box;
	border-radius: 5px 0px 0px 5px;
}
.site-info-box .site-info-box__table {
	padding: 11px 21.5px 12px;
	background: #333632;
	border-radius: 0 5px 5px 0;
	box-shadow: 0px 0px 10px #5C97A35F;
}
.site-info-box .site-info-box__table th,
.site-info-box .site-info-box__table td {
	padding: 9px 0 11px;
	font-size: 19px;
	font-weight: bold;
	line-height: 1.8;
	letter-spacing: 0;
	word-break: break-all;
	border-bottom: 1px dashed #9EA09D;
}
.site-info-box .site-info-box__table tr:last-child th,
.site-info-box .site-info-box__table tr:last-child td {
	padding-bottom: 0;
	border-bottom: none;
}
.site-info-box .site-info-box__table tr:first-child th,
.site-info-box .site-info-box__table tr:first-child td {
	padding-top: 0;
}
.site-info-box .site-info-box__table th {
	width: 105px;
	color: #5BC4D1;
	vertical-align: top;
}
.site-info-box .site-info-box__table td {
	color: #FFFFFF;
}

@media screen and (max-width: 767px) {
	.site-info-box,
	.site-info-box .site-info-box__picture,
	.site-info-box .site-info-box__table {
		box-sizing: border-box;
		display: block;
		width: 100%;
	}
	.site-info-box .site-info-box__picture,
	.site-info-box .site-info-box__table {
		padding: 10px;
	}
	.site-info-box .site-info-box__picture {
		border-radius: 5px 5px 0 0;
	}
	.site-info-box .site-info-box__table {
		border-radius: 0 0 5px 5px;
	}
	.site-info-box .site-info-box__table table th,
	.site-info-box .site-info-box__table table td {
		font-size: 14px;
		letter-spacing: 0;
	}
	.site-info-box .site-info-box__table table th {
		width: 65px;
	}
}


/*--------------------------------------
  Site map result list
--------------------------------------*/
.sitemap-result__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin: 50px 0 0;
}
.sitemap-result__left {
	width: 100%;
  max-width: 47.5%;
}
.sitemap-result__right {
	position: relative;
	width: 100%;
	max-width: 52.5%;
	padding-left: 5%;
}
.sitemap-result__right::before {
	position: absolute;
	top: 30px;
	left: 0;
	display: block;
	width: 10%;
	height: 1px;
	content: '';
	background: #5BC4D1;
}
.sitemap-result__left__inner {
	padding: 22px 20px 14px;
	background: #FFFFFF;
	border-radius: 5px;
	box-shadow: 0px 0px 10px #5C97A35F;
}
.sitemap-result__left__title {
	padding-bottom: 13px;
	margin-bottom: 13px;
	font-size: 16px;
	line-height: 1.6;
	color: #009EB1;
	letter-spacing: 0;
	border-bottom: 1px dashed #9EA09D;
}
.sitemap-result__left__txt {
	font-size: 16px;
	color: #333632;
}
.sitemap-result__list > li {
	position: relative;
	margin-bottom: 7px;
}
.sitemap-result__list > li:last-child {
	margin-bottom: 0;
}
.sitemap-result__list > li::before {
	position: absolute;
	top: 30px;
	left: -21px;
	display: block;
	width: 21px;
	height: 68px;
	content: '';
	background: url(../img/icon_line_blue.png) no-repeat;
}
.sitemap-result__list > li:last-child::before {
	display: none;
}
.sitemap-result__item-input {
	box-sizing: border-box;
	width: 100%;
	padding: 20px 80px 18px 20px;
	overflow: hidden;
	font-size: 16px;
	line-height: 1.4;
	color: #333632;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	border: none;
	border-radius: 5px;
	box-shadow: 0px 0px 10px #5C97A35F;
}
/* delete btn */
.delete-btn--url {
	position: absolute;
	top: 50%;
	right: 15px;
	margin-top: -10px;
}
/* plus btn */
.plus-list {
	margin-top: 26px;
}
.plus-list li {
	position: relative;
	margin-bottom: 11px;
}
.plus-list li:last-child {
	margin-bottom: 0;
}
.plus-list li:before {
	position: absolute;
	top: 50%;
	left: -10px;
	z-index: 1;
	display: block;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	content: '';
	background: url(../img/icon_plus.png) no-repeat;
}
.plus-list__box {
	box-sizing: border-box;
	width: 100%;
	padding: 19px 80px 17px 20px;
	font-size: 15px;
	line-height: 1.5;
	background: #EFEFEF;
	border: 1px solid #9EA09D;
	border-radius: 5px;
	box-shadow: 0px 0px 10px #5C97A35F;
}
.plus-list__box:focus {
	border: 1px solid #5BC4D1;
}
@media screen and (max-width: 1040px) and (min-width: 768px) {
	.plus_box {
		font-size: 14px;
	}
}
@media screen and (max-width: 767px) {
	.sitemap-result__inner {
		display: block;
		align-items: initial;
		justify-content: initial;
		margin: 40px 0 0;
	}
	.sitemap-result__left {
		max-width: initial;
	}
	.sitemap-result__right {
		position: relative;
		width: calc(100% - 22px);
		max-width: initial;
		padding-left: 22px;
		margin: 30px 0 0
	}
}


/*============== --- ===================
============ RESULT PAGE===============
===================================== */

/*--------------------------------------
  General Layout
--------------------------------------*/
.result .page-title {
	padding: 100px 0 20px;
}
.ng_words_test_result {
	padding: 0;
	margin-top: 10px;
	background: white;
	border-radius: 0 0 5px 5px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.result-info-box {
	position: relative;
	z-index: 2;
}
@media screen and (max-width: 767px) {
	.result .page-title {
		padding: 40px 0 20px;
	}
}


/*--------------------------------------
  intro
--------------------------------------*/
.result-intro {
	padding: 101px 0 50px 0;
	margin: -55px 0 0;
	background: #fff;
	border-radius: 5px 5px 0 0;
	box-shadow: 0px 3px 6px #00000029;
}
.result-intro__txt {
	font-size: 13px;
	line-height: 1.54;
}
.result-intro__title {
	margin-bottom: 16px;
	font-family: '游ゴシック体', 'Yu Gothic', YuGothic, sans-serif;
	font-size: 22px;
	font-weight: bold;
	line-height: 1.5;
	color: #333632;
	text-align: center;
	letter-spacing: 0;
}


/*--------------------------------------
  derivation words result list
--------------------------------------*/
.derivation-result-list li {
	position: relative;
	margin-bottom: 5px;
}
.derivation-result-list li + li {
	margin: 5px 0 0;
}
.derivation-upper-group .derivation-upper-group__title {
	position: relative;
	padding: 6px 45px 2px;
	margin-bottom: 0;
	font-size: 20px;
	line-height: 1.6;
	text-align: center;
	letter-spacing: 0;
	background: #AFE3C5;
	border-radius: 5px;
	transition-duration: 0.4s;
}
.derivation-upper-group .derivation-upper-group__title:hover {
	cursor: pointer;
	opacity: 0.9;
}
.derivation-upper-group.derivation-upper-group--pink .derivation-upper-group__title {
	background: #F0B1B4;
}
.derivation-upper-group .derivation-upper-group__num {
	display: inline-block;
	width: 21px;
	height: 21px;
	margin: 4px 0 0 5px;
	font-size: 11px;
	line-height: 21px;
	text-align: center;
	vertical-align: top;
	background: #fff;
	border-radius: 50%;
}
.derivation-upper-group .accordeon__icon {
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 40px;
	cursor: pointer;
	transition-duration: 0.4s;
}
.derivation-upper-group .accordeon__icon:hover {
  background: rgba(255, 255, 255, 0.2);
}
.derivation-upper-group .accordeon__icon::before,
.derivation-upper-group .accordeon__icon::after {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	content: '';
	background: #fff;
}
.derivation-upper-group .accordeon__icon::before {
	width: 13px;
	height: 2px;
	margin-top: -1px;
	margin-left: -6.5px;
}
.derivation-upper-group .accordeon__icon::after {
	width: 2px;
	height: 13px;
	margin-top: -6.5px;
	margin-left: -1px;
}
.accordeon--open.derivation-upper-group .accordeon__icon::after {
  display: none;
}
.derivation-content {
	display: none;
	padding: 20px 20px 30px;
	background: #fff;
	border-radius: 0px 0px 5px 5px;
}
.derivation-content .accordeon__close {
	padding-top: 29px;
	margin-top: -1px;
	text-align: center;
	border-top: 1px solid #626461;
}
.derivation-content .accordeon__close span {
	display: inline-block;
	cursor: pointer;
}
.derivation-content__title {
	margin-bottom: 15px;
	font-size: 17px;
	font-weight: bold;
	line-height: 1.6;
	color: #EF565C;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.derivation-content__title {
		margin-bottom: 5px;
		font-size: 15px;
	}
}


/*--------------------------------------
  derivation words result table
--------------------------------------*/
table.derivation-table {
	font-size: 14px;
	line-height: 1;
	color: #333632;
	letter-spacing: 0;
}
table.derivation-table thead th,
table.derivation-table thead td {
	padding: 8px 15px 7px;
	color: #fff;
	vertical-align: top;
}
table.derivation-table thead th {
	width: 151px;
	font-weight: normal;
	background: #626461;
	border-right: 1px solid #FFFFFF;
}
table.derivation-table thead td {
	background: #333632;
}
table.derivation-table tbody td.td-row-span {
	padding: 10px 15px;
	padding-top: 20px;
	font-size: 20px;
	font-weight: normal;
	font-weight: 700;
	color: #14a0b1;
	text-align: center;
	vertical-align: top;
	vertical-align: top;
	background: #EFEFEF;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
table.derivation-table tbody th a:hover {
	color: #333;
	text-decoration: underline !important;
}
.derivation-table__lower-group {
	border-top: 2px solid #14a0b1;
}
table.derivation-table tbody td {
	padding: 6px 15px 6px 0px;
	background: #EFEFEF;
}
table.derivation-table tbody .td-correspondence {
	padding: 6px 0px 6px 17px;
}
table.derivation-table tbody .tr-first td {
	padding-top:16px;
}
table.derivation-table tbody .tr-last td {
	padding-bottom: 14px;
}
table.derivation-table tbody .tr-white td {
	background: #fff;
}

@media screen and (max-width: 767px) {
	table.derivation-table {
		width: 450px;
	}
}


/*--------------------------------------
  ng words result list
--------------------------------------*/
.ng-result-list > li {
	position: relative;
	background: #f0eded;
}
.ng-result-list > li + li {
	margin: 10px 0 0;
}
.ng-result-list .ng-title {
	padding: 0;
	padding: 12px 50px 10px 20px;
	font-size: 14px;
	text-align: left;
	cursor:pointer;
	background: #fff;
	border-radius: 5px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.ng-result-list .ng-title a {
	position: relative;
	color: #009EB1;
	text-decoration: underline;
	cursor:alias;
}
.ng-result-list .ng-title a:hover {
	color: #333;
	text-decoration: underline;
}
.ng-result-list .accordeon__icon {
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 50px;
	cursor: pointer;
	background: #9EA09D;
	border-radius: 0 5px 5px 0;
	transition-duration: 0.4s;
}
.ng-result-list .accordeon__icon::before,
.ng-result-list .accordeon__icon::after {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	content: '';
	background: #fff;
}
.ng-result-list .accordeon__icon::before {
	width: 13px;
	height: 2px;
	margin-top: -1px;
	margin-left: -6.5px;
}
.ng-result-list .accordeon__icon::after {
	width: 2px;
	height: 13px;
	margin-top: -6.5px;
	margin-left: -1px;
}
.ng-result-list .accordeon--open .accordeon__icon::after {
  display: none;
}
.ng-result-list .accordeon__icon:hover {
	opacity: 0.7;
}
.ng-content {
	display: none;
	margin-top: 10px;
	background: #fff;
	border-radius: 0 0 5px 5px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.ng-content .accordeon__close:hover {
	cursor: pointer;
}


/*--------------------------------------
  ng words result table
--------------------------------------*/
.ng-table {
	position: relative;
	padding: 17px 40px 15px;
	background: #fff;
	border-bottom: 1px solid #CEDED3;
}
.ng-table.prio1, .ng-table.prio2, .ng-table.prio3, .ng-table.prio4 {
	color: inherit;
}
.ng-table:before {
	position: absolute;
	top: 18px;
	left: 12px;
	display: block;
	width: 17px;
	height: 17px;
	content: '';
}
.ng-table table {
	font-size: 14px;
	line-height: 1.6;
}
.ng-table table th {
	width: 58px;
	font-weight: bold;
}
.ng-table table th,
.ng-table table td {
  padding-bottom: 4px;
}
.ng-content .accordeon__close {
	padding: 20px 40px;
	text-align: center;
}
.green-txt {
	font-weight: bold;
	color: #3EC376;
}
.yellow-txt-bg {
	font-weight: bold;
	color: #EF565C;
	background: #F5FF00;
}


/*--------------------------------------
  HTML ERROR LIST
--------------------------------------*/
.html-errors .html-errors__list {
	margin: 10px 0 0;
}
.html-errors .html-errors__list > li {
	padding: 10px 20px;
	background: #fff;
	border-radius: 1em;
}
.html-errors .html-errors__list > li + li {
	margin: 10px 0 0;
}
.html-errors .html-errors__list li span {
	padding: 0 20px 0 0;
}
.html-errors .html-errors__list li span:first-child{
	font-weight: bold;
	color: #ff0000;
}


/*--------------------------------------
 buttons
--------------------------------------*/
.result-button {
	margin: 50px 0 0;
}

@media screen and (max-width: 767px) {
	.result-button {
		margin: 30px 0 0;
	}	
}


/*--------------------------------------
  text result
--------------------------------------*/
#resultText textarea {
	width: 100%;
	max-width: 1025px;
	height: 400px;
	padding: 5px;
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
	font-size: 14px;
	font-weight: initial;
	resize: vertical;
}
.reCheck {
	max-width: 200px;
	height: 40px;
	margin: auto;
}
#reCheckBtn {
	border-radius: 5px;
}
.result-text .ng-table {
	position: relative;
	padding: 17px 10px 15px 40px;
	border-bottom: 1px solid #CEDED3;
}
.result-text .ng-table tr {
	vertical-align: top;
}
.proofReadingResult__container {
	overflow: auto;
}
.proofReadingResult {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.proofReadingCorrection, 
.proofReadingText {
	width: 49%;
	border: 1px solid #009eb1;
}
.proofReadingCorrection {
  margin-left: 2%;
}
.proofReadingCorrection #notice {
	position: relative;
	display: block;
	height: 710px;
	overflow-y: scroll;
	background: #fff;
}
.proofReadingText p {
	position: relative;
	display: block;
	width: auto;
	height: 700px;
	padding:5px;
	overflow-y: scroll;
	color: #333;
	white-space: pre-line;
	vertical-align: top;
	background: white;
}
.token1 {
	background: #EF565C;
}
.token2 {
	background: #C39D00;
}
.token3 {
	background: #009EB1;
}
.notice_scrollTo, .token_scrollTo {
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
}
.notice_scrollTo.active {
	border: 1px solid rgba(81, 203, 238, 1);
	box-shadow: 0 0 5px rgba(81, 203, 238, 1);
}
.token_scrollTo.active {
	border: 1px solid rgba(81, 203, 238, 1);
	box-shadow: 0 0 5px rgba(81, 203, 238, 1);
}
.noticelLoading .notice_scrollTo:last-child {
  position: relative;
}
.noticelLoading .notice_scrollTo:last-child:after {
	position: absolute;
	bottom: -50px;
	left: calc(50% - 20px);
	z-index: 1000;
	width: 40px;
	height: 40px;
	content: "";
	background: url(../img/loading.gif) 50% 50% no-repeat;
}

@media screen and (max-width: 767px) {
	.proofReadingResult {
		width: 800px;
	}
}


/*--------------------------------------
  tooltip
--------------------------------------*/
.tooltip {
  padding: 0 0 0 5px;
}
a.tooltip img {
	margin: 2px 0 0 2px;
	vertical-align: baseline;
}
#tooltip__title {
	position: absolute;
	min-width: 45px;
	min-height: 20px;
	padding: 2px 4px;
	font-size: 14px;
	line-height: 1.4;
	color: #ffffff;
	text-align: center;
	background: #5BC4D1;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
}
#tooltip__title:after {
	position: absolute;
	bottom: -5px;
	left: 50%;
	display: block;
	margin-left: -3px;
	content: '';
	border-top: 5px solid #5BC4D1;
	border-right: 3px solid transparent;
	border-left: 3px solid transparent;
}
.sharedTooltip img {
  max-height: 15px;
}


/*--------------------------------------
  Priorities
--------------------------------------*/
.prio1 {
	color: #EF565C;
}
.prio2 {
	color: #C39D00;
}
.prio3 {
	color: #009EB1;
}
.prio4 {
	color: #ff20a2;
}
.prio1:before {
	background: url(../img/icon_red.png) no-repeat;
}
.prio2:before {
	background: url(../img/icon_orange.png) no-repeat;
}
.prio3:before {
	background: url(../img/icon_blue.png) no-repeat;
}
.prio4:before {
	background: url(../img/icon_pink.png) no-repeat;
	background-size: 17px 17px;
}


/*============== --- ===================
============= CUSTOMIZE ================
===================================== */

/*--------------------------------------
  General
--------------------------------------*/
button.plus-button span {
  display: none;
}
button.plus-button {
	position: absolute;
	top: 50%;
	right: 45px;
	width: 15px;
	height: 15px;
	margin-top: -7.5px;
	background: url(../img/icon_pencil.png) no-repeat;
	border: none;
	border-radius: 0;
	box-shadow: none;
}
.customize .plus-button:hover{
	background: url(../img/icon_pencil_on.png) no-repeat;
}


/*--------------------------------------
  Buttons
--------------------------------------*/
.btn-group {
	position: relative;
}
/* edit btn */
.edit-btn {
	position: absolute;
	top: 5px;
	right: 45px;
	width: 15px;
	height: 15px;
	background: url(../img/icon_pencil.png) no-repeat;
	background-size: cover;
	border: none;
	border-radius: 0;
	transition-timing-function: cubic-bezier(0.33, 1, 0.66, 1);
	transition-duration: 0.3s;
}
.edit-btn:hover {
	cursor: pointer;
	background: url(../img/icon_pencil_on.png) no-repeat;
	background-size: cover;
}
/* trash */
.trash-btn {
	position: absolute;
	top: 5px;
	right: 23px;
	width: 14px;
	height: 15px;
	background: url(../img/icon_trash.png) no-repeat;
	background-size: cover;
	border: none;
	border-radius: 0;
	transition-timing-function: cubic-bezier(0.33, 1, 0.66, 1);
	transition-duration: 0.3s;
}
.trash-btn:hover {
	cursor: pointer;
	background: url(../img/icon_trash_on.png) no-repeat;
	background-size: cover;
}
/* less btn */
.less-btn {
	position: absolute;
	top: calc(50% - 8px);
	right: 7px;
	z-index: 2;
	width: 17px;
	height: 17px;
	background: url(../img/icon_less.png) no-repeat;
	background-size: cover;
	border: none;
	border-radius: 0;
	transition-timing-function: cubic-bezier(0.33, 1, 0.66, 1);
	transition-duration: 0.3s;
}
.less-btn:hover {
	cursor: pointer;
	background: url(../img/icon_less_on.png) no-repeat;
	background-size: cover;
}
/* accept btn */
.accept-btn {
	position: absolute;
	top: -7px;
	right: 0;
	z-index: 1;
	box-sizing: border-box;
	display: none;
	width: 89px;
	height: 40px;
	padding-left: 25px;
	font-weight: bold;
	line-height: 40px;
	color: #fff;
	background: #5BC4D1;
	border: none;
	box-shadow: none;
	transition-timing-function: cubic-bezier(0.33, 1, 0.66, 1);
	transition-duration: 0.3s;
}
.accept-btn::before {
	position: absolute;
	top: 12px;
	left: 14px;
	display: block;
	width: 16px;
	height: 16px;
	content: '';
	background: url(../img/icon_pencil_white.png) no-repeat;
}
.accept-btn:hover {
	cursor: pointer;
	background: #8dd6df;
}

@media screen and (max-width: 767px) {
	.accept-btn {
		top: -9px;
		height: 35px;
		line-height: 35px;
	}
}


/*--------------------------------------
  tables
--------------------------------------*/
.customize .title-table__container {
	padding: 20px 15px 13px;
	margin: 30px 0 20px;
	background: #626461;
	border-radius: 5px 5px 0 0;
}
.customize .title-table td {
	height: 40px;
	padding: 0 10px;
	font-size: 22px;
	color: #fff;
	border: none;
}
.customize .title-table td:first-child {
	font-weight: bold;
}
.customize .title-table td .btn-group {
	height: 40px;
}
.customize .title-table td .btn-group .trash-btn {
	right: 15px;
}
.customize .title-table td .btn-group .accept-btn {
	top: 0;
	right: -10px;
}
.customize .title-table #editing {
	border: none;
}
.customize .title-table #editing td {
	background: #333632
}
.customize .title-table #editing td input.form-control {
	color: #fff;
	background: #333632;
}
.ngWords-table tbody tr td:nth-child(1) {
	position: relative;
}


/*--------------------------------------
  Derivation datas table
--------------------------------------*/
.derivation-row__words {
	padding: 10px 0px;
}
.derivation-row__words .values {
	display: none; /*flex on show*/
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
}
#editing .derivation-row__words .values {
	display: flex; 
}
#editing .derivation-row__words .value {
	display: none;
}
.derivation-row__words .values input {
	width: 100%;
	height: 100%;
	height: 25px;
	padding: 1px 0px 1px 7px;
	margin-left: -7px;
	background: #f2f1ef;
	border-color: initial;
	border-style: none;
	border-width: initial;
	border-top: 1px solid #D0D1D0;
	border-right: 1px solid #D0D1D0;
	border-left: 1px solid #D0D1D0;
	border-image: initial;
}
.derivation-single {
	position: relative;
	width: 95%;
}

#editing .derivation-single:last-child .less-btn {
	display: none;
}


/*--------------------------------------
  NG words
--------------------------------------*/
.ng-group {
	background: #fff;
}
.ng-group:has(.striped-table) {
	padding: 0 0 30px;
}
.category-links {
	padding: 31px 20px 32px;
	text-align: center;
	background: #D1F1F5;
	border-radius: 5px;
}
.category-links li {
	display: inline-block;
	margin-right: 15px;
}
.category-links li a {
	color: #009EB1;
	text-decoration: underline;
}
.category-links li:last-child {
	margin-right: 0;
}


/*--------------------------------------
  Terms Extensions
--------------------------------------*/
.customize .termsAndExtensions {
	position: absolute;
	top: 50%;
	right: 35px;
	display: inline-block;
	width: auto;
	height: 20px;
	margin-top: -12px;
	font-size: 8px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	cursor: pointer;
	border: none;
	border-radius: 11px;
	box-shadow: none;
}
.searchExtensionTooltip img, 
.searchConditionTooltip img {
    max-width: 15.5px;
}


/*--------------------------------------
  Editing mode
--------------------------------------*/
#editing .accept-btn {
	display: block;
}
input.form-control {
	box-sizing: border-box;
	width: 100%;
	padding: 0;
	border: none;
	box-shadow: none;
}
.ngWords-table .correction input.form-control {
	max-width: 85%;
	font-size: 11px;
	vertical-align: middle;
}
#editing {
	box-sizing: border-box;
	border: 2px solid #5BC4D1;
}
input.form-control:focus {
	caret-color: #5BC4D1;
}
#editing td {
	border: none !important;
}
#derivation_words #editing td {
	padding: 10px;
}
#derivation_words #editing td {
	padding:10px;
}
#editing .trash-btn {
  display: none;
}


/*--------------------------------------
  options
--------------------------------------*/
/*derivation */
.ngWords-table .options,
.derivation-single .options {
    position: absolute;
    top: calc(50% - 10px);
    left: -40px;
    width: 20px;
    height: 20px;
    background: url(/img/icon_plus.png);
    background-size: cover;
    border: none;
}
.ngWords-table .options:hover,
.derivation-single .options:hover {
  cursor: pointer;
}
.ngWords-table .options.options--on,
.derivation-single .options.options--on {
	background: url(/img/icon_plus_blue.png);
	background-size: cover;
}
.ngWords-table .options {
	top: calc(50% - 15px);
	left: -25px;
	display: none;
}
.ngWords-table #editing .options {
	display: block;
}
.modal.modal--option .label {
	font-weight: bold;
	color: #009eb1;
}
.modal.modal--option .select {
	max-width: 250px;
}
.searchExtensionsSelect {
	display: inline-block;
	vertical-align: top;
}
.terms-inputs {
	display: inline-block;
	max-width: 150px;
	margin: 0 0 0 10px;
	vertical-align: top;
}
.terms-inputs:empty {
	display: none;
}


/*--------------------------------------
 prios
--------------------------------------*/
.prio-container {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	height: 17px;
	padding: 4px 0px 0px 8px;
	line-height: 17px;
}
.prio-select dd, 
.prio-select dt, 
.prio-select ul {
	padding: 0px;
	margin: 0px;
}
.prio-select dd {
	position: absolute;
	z-index: 2;
}
.prio-select .selected_value:hover {
	color: #5d4617;
}
.prio-select dt .selected_value:hover {
	color: #5d4617;
	border: 1px solid #d0c9af;
}
.prio-select dt .selected_value {
	display: block;
	width: 40px;
	padding-right: 0px;
	background: #ffffff url(../img/select_arrow.png) no-repeat scroll right center;
	border: 1px solid #5bc4d1;
}
.prio-select dt .selected_value span {
	display: block;
	padding: 0 3px;
	cursor: pointer;
}
.prio-select dd ul {
	position: absolute;
	top: 2px;
	left: 0px;
	display: none;
	width: auto;
	min-width: 40px;
	padding: 5px 0px;
	color: #C5C0B0;
	list-style: none;
	background: #ffffff none repeat scroll 0 0;
	border: 1px solid #5bc4d1;
}
.prio-select .prio-select__img {
	text-align: center;
	cursor: pointer;
}
.prio-select span.prio-select__value {
	display: none !important;
}
.prio-select dd ul li .prio-select__img {
	display: block;
	padding: 5px;
}
.prio-select dd ul li a:hover {
	background-color: #d0c9af;
}
.prio-select img {
	vertical-align: middle;
}


/*============ --- ================
============= HOST ================
===================================*/

/*--------------------------------------
  General
--------------------------------------*/
/* cols width */
.host-table {
	margin: 40px 0 0;
}
.host-table .host-check {
	width: 4%;
}
.host-table .host-ip {
	width: 30%;
}
.host-table .host-domain {
	width: 55%;
	border-right: 0px!important;
}
.host-table .host-delete {
	width: 10%;
}
.host-table .host-delete .host-delete__button {
	float: right;
}

/*--------------------------------------
  Add host
--------------------------------------*/
.add-host {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.add-host > li {
	width: 100%;
	max-width: 37.5%;
	margin-left: 1.5%;
}
.add-host > li:first-child {
	margin-left: 0;
}
.add-host > li:nth-child(2) {
	max-width: 49.5%;
}
.add-host > li:last-child {
	max-width: 10%;
}
.add-host > li .input {
	background-color: #EFEFEF;
}

@media screen and (max-width: 767px) {
	.add-host {
		flex-wrap: wrap;
	}
	.add-host > li {
		max-width: 55%;
		margin-left: 1.5%;
	}
	.add-host > li:first-child {
		margin-left: 0;
	}
	.add-host > li:nth-child(2) {
		width: 43.5%;
	}
	.add-host > li:last-child {
		width: 100%;
		max-width: 100px;
		margin: 2% auto 0;
	}
}


/*--------------------------------------
  checkbox
--------------------------------------*/
.control {
	position: relative;
	display: block;
	font-size: 18px;
	cursor: pointer;
}
.control input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.control__indicator {
	position: absolute;
	top: -10px;
	left: 0;
	width: 20px;
	height: 20px;
	background: #e6e6e6;
}
.control--radio .control__indicator {
	border-radius: 50%;
}
.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
	background: #ccc;
}
.control input:checked ~ .control__indicator {
	background: #5bc4d1;
}
.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
	background: #0e647d;
}
.control input:disabled ~ .control__indicator {
	pointer-events: none;
	background: #e6e6e6;
	opacity: 0.6;
}
.control__indicator:after {
	position: absolute;
	display: none;
	content: '';
}
.control input:checked ~ .control__indicator:after {
	display: block;
}
.control--checkbox .control__indicator:after {
	top: 4px;
	left: 8px;
	width: 3px;
	height: 8px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}
.control--checkbox input:disabled ~ .control__indicator:after {
	border-color: #7b7b7b;
}


/*--------------------------------------
  host btn
--------------------------------------*/
.host-button {
	margin-top: 30px;
}


/*================ --- ===================
============= TERMS PAGES ================
=========================================*/

/*--------------------------------------
  links
--------------------------------------*/
.terms-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.terms-links > li {
	flex: 0 0 43%;
}
.terms-links > li:nth-child(n+3) {
	margin: 3% 0 0;
}
.terms-link {
	padding: 19px 20px 20px;
	border: 1px solid #5BC4D1;
	border-radius: 5px;
}
.terms-link__title {
  margin-bottom: 12px;
}
.terms-link__title a {
	position: relative;
	display: block;
	padding: 0 15px 6px 0;
	font-size: 17px;
	font-weight: bold;
	line-height: 1.6;
	color: #333632;
	border-bottom: 1px dashed #5BC4D1;
}
.terms-link__title a:before {
	position: absolute;
	top: 10px;
	right: 0;
	content: '';
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 8px solid #5BC4D1;
}
.terms-link__title  a:hover {
  color: #5BC4D1;
}
.terms-link__txt {
	font-size: 15px;
	line-height: 25px;
	color: #333632;
}

@media screen and (max-width: 767px) {
	.terms-links {
		display: block;
		flex-wrap: initial;
		justify-content: initial;
	}
	.terms-links > li {
		flex: initial;
		width: calc(100% - 16px);
		padding: 20px 8px;
		margin: 0 0 20px;
	}
	.terms-links > li + li {
		margin: 20px 0 0;
	}
	.terms-links > li:nth-child(n+3) {
		margin: 20px 0 0;
	}
	.terms-link__title a {
		font-size: 13px;
	}
	.terms-link__title a:before {
		top: 6px;
	}
}


/*--------------------------------------
  layout
--------------------------------------*/
.term-block {
	padding: 0 0 45px;
	border-bottom: 1px solid #D0D1D0;
}
.term-block + .term-block {
	margin: 20px 0 0;
}
.term-block p + .under-title__h3 {
	padding: 30px 0 0;
}
.term-block p + .circle-list {
	padding: 20px 0 0;
}
.term-block .circle-list + p {
	padding: 20px 0 0;
}
.term-block .style-table + .under-title__h3 {
	padding: 30px 0 0;
}

@media screen and (max-width:767px) {
	.term-block {
		padding: 0 0 35px;
	}
}


/*--------------------------------------
 circle list
--------------------------------------*/
.circle-list > li {
	position: relative;
	padding: 0 0 0 22px;
	margin-bottom: 18px;
}
.circle-list > li:last-child {
	margin-bottom: 0;
}
.circle-list > li:before {
	position: absolute;
	top: 7px;
	left: 0;
	width: 10px;
	height: 10px;
	content: "";
	background: #5BC4D1;
	border-radius: 50%;
}
.line-list {
	padding: 20px 0 0 30px;
}
.line-list li {
	position: relative;
	margin-bottom: 8px;
}
.line-list li:last-child {
	margin-bottom: 0;
}
.line-list li:before {
	position: absolute;
	top: 11px;
	left: -20px;
	width: 13px;
	height: 1px;
	content: '';
	background: #5BC4D1;
}


/*--------------------------------------
  term box
--------------------------------------*/
.term-box {
	padding: 40px;
	margin: 40px 0 0;
	background: #EFEFEF;
	border-radius: 5px;
}
.term-box .term-box__title {
	display: inline-block;
	font-size: 17px;
	font-weight: bold;
	text-decoration: underline;
}

.term-box .term-box__links a {
	position: relative;
	display: inline-block;
	padding-right: 16px;
	color: #009EB1;
	text-decoration: underline;
	transition-duration: 0.4s;
}
.term-box .term-box__links a::before {
	position: absolute;
	top: calc(50% - 4px);
	right: 0;
	content: '';
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 8px solid #5BC4D1;
	transition-duration: 0.4s;
}
.term-box .term-box__links a:hover {
	color: #333;
}
.term-box .term-box__links a:hover::before {
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 8px solid #333;
}

@media screen and (max-width:767px) {
	.term-box {
		padding: 25px;
		margin: 20px 0 0;
	}
	.term-box .term-box__links a {
		padding-right: 12px;
		font-size: 12px;
	}
}


/*============== --- ===================
================ NEWS ==================
===================================== */

/*--------------------------------------
  news page
--------------------------------------*/
.news__list > li {
	position: relative;
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #90b5d8;
}
.news__list > li:last-child {
	margin-bottom: 0;
}
.news__category .category {
	margin-bottom: 5px;
	line-height: 1.4;
}
.news__category a {
	display: inline-block;
	font-size: 12px;
	font-weight: bold;
	line-height: 23px;
	color: #009eb1;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0;
}
.news__title {
	margin: 0 0 5px;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.4;
	letter-spacing: 0;
}
.news__title a {
	color: #333632;
	text-decoration: none;
	transition-duration: 0.4s;
}
.news__title a:hover {
	color: #009eb1;
}
.news__date {
	font-size: 10px;
	color: #aaaba9;
	letter-spacing: 0;
}

@media screen and (max-width: 767px) {
	.news__list > li {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}
}


/*--------------------------------------
  Signle news
--------------------------------------*/
.single-news__header {
	padding: 0 0 30px;
	border-bottom: 1px solid #333632;
}
.single-news__meta .date {
	font-size: 10px;
	color: #aaaba9;
	letter-spacing: 0;
}
.single-news__meta .category {
	box-sizing: border-box;
	font-size: 12px;
	font-weight: bold;
	line-height: 23px;
	color: #009eb1;
	text-transform: uppercase;
	letter-spacing: 0;
}
.single-news__content {
	padding: 15px 0 0;
}
.single-news__title {
	margin: 0 0 20px;
}
.single-news__title h2 {
	position: relative;
	padding: 0 0 0 15px;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.2;
	color: #333632;
}
.single-news__title h2:before {
	position: absolute;
	left: 0;
	display: block;
	width: 3px;
	height: 18px;
	content: '';
	background: #5bc4d1;
}
.single-news__text p h2,
.single-news__text p h3,
.single-news__text p h4,
.single-news__text p h5,
.single-news__text p h6 {
	padding: 0 0 1.5em;
	font-weight: bold;
}

.single-news__text img,
.single-news__text p {
	padding: 0 0 1em;
}
.single-news__text img:last-child,
.single-news__text p:last-child {
	padding: 0;
}


/*============== --- ===================
=============== OTHERS ================
===================================== */

/*--------------------------------------
  error
--------------------------------------*/
.error h1 {
	font-size: 24px;
	font-weight: bold;
}
.error pre {
  padding: 30px 0 0;
}
.error__button {
	padding: 40px 0 0;
}


/*--------------------------------------
  Sitemap (page)
--------------------------------------*/
.erroe_txt {
	text-align: center;
}
.sitemap-list {
	margin: 10px 0 0;
}
.sitemap-list li {
	position: relative;
	margin: 0;
	line-height: 1.4;
}
.sitemap_list li:first-child {
	border-top: 1px solid #d3d4d3;
}
.sitemap-list li::before {
	position: absolute;
	top: calc(50% - 5px);
	left: 0;
	display: block;
	content: '';
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 10px solid #5bc4d1;
}
.sitemap-list li a {
	position: relative;
	box-sizing: border-box;
	display: inline-block;
	padding: 10px 0 10px 20px;
	color: #5bc4d1;
	text-decoration: underline;
}
.sitemap-list li a:hover {
  color: #333;
}

/*--------------------------------------
  login / logout
--------------------------------------*/
.login .header__inner {
	display: none;
}
.login-box {
	width: 100%;
	max-width: 560px;
	min-height: calc(100vh - 260px);
	padding: 115px 0 0;
	margin: auto;
}
.login-box__inner {
	padding: 0 30px 30px 30px;
}
.login-logo {
	text-align: center;
}
.login-form {
	padding: 35px 50px 40px;
	margin: 45px 0 0;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	border-radius: 5px;
	box-shadow: 0px 3px 6px #00000029;
}
.login-form__field + .login-form__field {
	margin: 30px 0 0;
}
.login-form__field label {
	margin-bottom: 6px;
	font-size: 13px;
	font-weight: bold;
	color: #333632;
	letter-spacing: 0.05em;
}
.login-form__field__input {
	position: relative;
}
.login input[type="email"],
.login input[type="text"],
.login input[type="password"] {
	width: 100%;
	padding: 0 0 10px 0;
	margin: 5px 0 0;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
	font-size: 15px;
	letter-spacing: 0.05em;
	background: #fff;
	border: none;
	border-bottom: 1px solid #9EA09D;
	box-shadow: 0 0 0 1000px white inset;
	transition: none;
	caret-color: #5BC4D1;
}
.login input[type="email"]:focus,
.login input[type="text"]:focus,
.login input[type="password"]:focus {
  border-bottom: 1px solid #5BC4D1;
}
.login-form__submit {
	margin: 35px 0 0;
}
.login-form__submit input[type="submit"] {
	position: relative;
	width: 100%;
	padding: 14px 20px 11px 44px;
	font-size: 17px;
	font-weight: bold;
	color: #fff;
	cursor: pointer;
	background: #5BC4D1 url(../img/icon_login_white.png) no-repeat 40% center;
	border: none;
	border-radius: 5px;
	box-shadow: 0px 3px 6px #00000029;
	transition-timing-function: cubic-bezier(0.33, 1, 0.66, 1);
	transition-duration: 0.3s;
}
.login-form__submit input[type="submit"]:hover {
	opacity: 0.7;
}

/*disable saffari icons*/
input::-webkit-caps-lock-indicator {
	position: absolute;
	right: 0;
	display: none !important;
	pointer-events: none;
	visibility: hidden;
	content: none;
}
input::-webkit-contacts-auto-fill-button {
	position: absolute;
	right: 0;
	display: none !important;
	pointer-events: none;
	visibility: hidden;
}

/*login footer */
.login-footer {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px 30px;
	margin: 95px 0 0;
	background: none;
}
.login-footer__copyright, 
.login-footer__links {
	font-size: 10px;
	color: #333632;
	letter-spacing: 0.05em;
}
.login-footer__links {
	margin: 0 0 0 60px;
}
.login-footer__links > ul {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.login-footer__links > ul > li + li {
	margin: 0 0 0 20px;
}
.login-footer__links > ul > li > a {
	color: #333632;
  text-decoration: underline;
}
.login-footer__links > ul > li > a:hover {
	opacity: .8;
}
/* eyeball */
.psd_show,
.psd_hide,
button#eyeball {
	position: absolute;
	right: 0;
	width: 27px;
	height: 21px;
	cursor: pointer;
}
.psd_show {
	bottom: 43px;
	background: url(../img/icon_eye_on.png) no-repeat;
}
.psd_hide {
	top: 0;
	background: url(../img/icon_eye_off.png) no-repeat;
}
.psd_show:hover,
.psd_hide:hover,
button#eyeball:hover {
  opacity: 0.7;
}
button#eyeball {
	bottom: 10px;
	background: url(../img/icon_eye_on.png) no-repeat;
	border: none;
	box-shadow: none;
}
.show-password button#eyeball {
  background: url(../img/icon_eye_off.png) no-repeat;
}

@media screen and (max-width: 767px) {
	.login-box {
		min-height: calc(100vh - 210px);
		padding: 0;
	}
	.login-box__inner {
		padding: 0 20px 20px 20px;
	}
	.login-form {
		padding: 30px 20px 25px;
		margin: 45px 0 0;
	}
	.login-form__submit input[type="submit"] {
		background: #5BC4D1 url(../img/icon_login_white.png) no-repeat 35% center;
	}
	.login-footer {
		display: block;
		align-items: initial;
		justify-content: initial;
		margin: 50px 0 0;
		text-align: center;
	}
	.login-footer__links {
		margin: 20px 0 0;
	}
	.login-footer__links > ul {
		justify-content: center;
	}
}
