@charset "UTF-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/* ============================================
  reset
============================================  */

:where([hidden]:not([hidden=until-found])) {
  display: none !important; /* hiddenは非表示を意味します */
}

:where(html) {
  -webkit-text-size-adjust: none; /* iOSのランドスケープでテキストが調整されないようにする */
  color-scheme: dark light; /* ユーザーがダークテーマを好む場合、自動的にダークテーマになる */
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth; /* 何かにフォーカスがある場合のみスムーズスクロール */
  }
}
:where(body) {
  block-size: 100%; /* サファリ以外のブラウザのフォールバック */
  block-size: 100dvb; /* 1dvbは動的ビューポートの長さの1%、100dvbで高さいっぱいに */
  line-height: 1.5; /* アクセシブルな行の高さ */
  font-family: system-ui, sans-serif; /* timeの代わりにシステムフォントを使用 */
  -webkit-font-smoothing: antialiased; /* テキストのレンダリングを改善 */
}

:where(input, button, textarea, select) {
  font: inherit; /* フォーム コントロールは親フォントを継承 */
  color: inherit; /* カラーも継承 */
}

:where(textarea) {
  resize: vertical; /* テキストエリアの水平リサイズを無効に */
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer; /* インタラクティブなものにカーソルを合わせる */
}

:where(:disabled) {
  cursor: not-allowed; /* フォームコントロール無効時のカーソルを許可しない */
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed; /* ラベルにもカーソルを許可しない */
}

:where(button) {
  border-style: solid; /* ボタンのボーダーのスタイルを設定しやすくする */
}

:where(a) {
  text-underline-offset: 0.2ex; /* 下線の上にスペースを追加する */
}

:where(ul, ol) {
  list-style: none; /* ビュレットを削除、必要に応じて手動で追加する */
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block; /* 置換された要素をより予測可能にする */
}

:where(img, picture, svg) {
  max-inline-size: 100%; /* images should never overflow past the available space */
  block-size: auto; /* アスペクト比を保持 */
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word; /* 長い単語は改行 */
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem); /* 見出しの行の高さを減らす */
}

:where(hr) { /* より一貫性のある、スタイリッシュなhr */
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) { /* より一貫性のある、カスタマイズ可能なフォーカスのアウトライン */
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

/* .visually-hiddenは後のカスケードレイヤーを上書きするために!importantを使用 */
:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:root {
  --font-weight-medium: 500;
  --font-weight-bold: 600;
  --header-height-pc: 80px;
  --header-height-sp: 60px;
}

/* ============================================
  base
============================================  */


p {
  font-size: 1.6rem;
  line-height: 1.6;
}



/* ============================================
  section
============================================  */
.l-section {
  width: 1200px;
  margin: 0 auto;
  padding: 70px 0 100px;
}

.l-section.--headlinebox-line {
  padding-top: 26px;
  position: relative;
}
.l-section.--headlinebox-line:after, .l-section.--headlinebox-line:before {
  position: absolute;
  top: 0;
  height: 4px;
  -webkit-transform: skewX(-22deg);
          transform: skewX(-22deg);
  content: "";
}
.l-section.--headlinebox-line:before {
  left: 1px;
  width: 82px;
  background: #f47836;
}
.l-section.--headlinebox-line:after {
  left: 86px;
  width: calc(100% - 86px);
  background: #d2d3d2;
}

/* ============================================
  inner
============================================  */
.l-inner {
  width: 1200px;
  margin: 0 auto;
}
.inner {
  width: 800px;
  margin: 0 auto;
}


/* ============================================
  h
============================================  */

h1.sub {
	font-size: 3.0rem;
	font-weight: 600;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: solid 3px #dddddd;
	position: relative;
	background: none;
	width: auto;
}
h1.sub2 {
	margin-bottom: 40px;
}
h1.sub:after {
	position: absolute;
	content: " ";
	display: block;
	border-bottom: solid 3px #f47836;
	bottom: -3px;
	width: 20%;
}

h2.sub {
	font-size: 2.4rem;
	font-weight: 600;
	margin-bottom: 20px;
	text-align: left;
	border-left: solid 4px #f47836;
	padding-left: 20px;
}


/* ============================================
  パンくずリスト
============================================  */
/*-----パンくずリスト-----*/
.topicPath_wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
  background-color: #eee;
  border-bottom-width: 4px;
	border-bottom-style: solid;
	border-bottom-color: #b6b6b6;
}
.topicPath_renew {
  max-width: 970px;
	height: 24px;
	margin: 0 auto;
	padding-left: 10px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
    }  
.topicPath_renew li {
	display:inline;
	list-style-type:none;
	font-size: 90%;
	color: #ff3b00;
    }  
.topicPath_renew li a {
	padding-right:10px;
	background:url(../../common/images/topicpath.gif) no-repeat right center;
	color: #333;
    } 
.topicPath_renew li a:hover {
	color: #333;
	text-decoration: underline;
    } 

/* ============================================
  メインビジュアル
============================================  */
.l-mainvisual {
  position: relative;
  width: 100%;
  height: 250px;
	background-color: #fff;
}

.l-mainvisual ._catchcopy {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);

  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}



.l-mainvisual ._catchcopy h1,
.l-mainvisual ._catchcopy p
{
  color: #F47836;
  font-size: 5rem;
  font-weight: 600;
  line-height: 1.6;
}

/* ============================================
  アンカーリンク
============================================  */
.pagelinkArea {
	background-color: #666666;
	padding: 20px 0px 0px;
	margin-bottom: 70px;
	color: #ffffff;
	font-weight: 600;
}
ul.pagelink {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 40px;
}
ul.pagelink li {
	font-size: 1.5rem;
	line-height: 1.5;
}
ul.pagelink li a {
	text-decoration: none;
	padding-bottom: 15px;
	color: #ffffff;
	text-decoration: none;
	border-bottom: solid 5px #666666;
}
ul.pagelink li a:hover {
	text-decoration: underline;
	color: #ffffff;
}


.home ul.pagelink li.home a,
.security-policy ul.pagelink li.security-policy a,
.vulnerability-policy ul.pagelink li.vulnerability-policy a,
.report-form ul.pagelink li.report-form a,
.advisories-notices ul.pagelink li.advisories-notices a
{
	border-bottom: solid 5px #F47836;
}


/* ============================================
  導入文
============================================  */
.intro p {
	margin-bottom: 1em;
}


/* ============================================
  ポリシー
============================================  */
dl.policy {
	font-size: 1.6rem;
	line-height: 1.6;
	margin-top: 40px;
}
dl.policy dt {
	font-size: 1.8rem;
	font-weight: 600;
	padding-bottom: 5px;
	margin-bottom: 5px;
	border-bottom: dotted 1px #999;
}
dl.policy dd {
	margin-bottom: 20px;
}


p.date {
	text-align: right;
	margin-bottom: 20px;
}

/* ============================================
  リスト
============================================  */
ul.list_dot {
	list-style: disc;
	padding-left: 20px;
	margin: 20px 0;
}






/* ===================================================================
CVボタン
=================================================================== */
.cvArea {
	background-color: #eeeeee;
	padding: 50px 5%;
	text-align: center;
	font-size: 2.0rem;
	margin-top: 80px;
	margin-bottom: 50px;
}
.cvArea p {
	font-size: 1.8rem;
	font-weight: 600;
} 
/* ボタン */
.linkBtn {
}
.arrowbutton {
    display:block;
    cursor:pointer;
    position: relative;
    text-decoration: none;
	box-shadow: 1px 1px 1px #ccc;
	background-color: #F47836;
	margin-top: 20px;
	text-align: center;
	border-radius: 2px;
	font-weight: 500;
}
a.arrowbutton {
	color: #fff;
	transition: 0.3s ease-in-out;
	text-decoration: none;
}
a.arrowbutton2 {
    display:inline-block;
	padding:20px 100px 20px 100px;
}
a.arrowbutton3 {
    display:inline-block;
	padding:20px 100px 20px 100px;
	background-color: #ffffff;
	color: #333333;
	margin-left: 20px;
}

.arrowbutton:hover {
	text-decoration: none;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}
.arrowbutton::after{
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 5px);
    right: 20px;
    width: 8px;
    height: 8px;
    border: 2px solid;
    border-color: transparent transparent #fff #fff;
    transform: rotate(-135deg);
    transition: .3s;
}
.arrowbutton3::after{
    border-color: transparent transparent #333 #333;
}
.arrowbutton:hover::after{
    right: 15px;
}


/* ===================================================================
言語切り替え
=================================================================== */

ul.lang {
	position: absolute;
	top: 25px;
	right: 100px;
	display: flex;
}
ul.lang li {
	margin-right: 20px;
	width: auto;
	text-align: center;
}
ul.lang li a {
	color: #666;
	text-decoration: none;
	padding-bottom: 3px;
	font-size: 1.5rem;
}
ul.lang li a:hover {
	text-decoration: none;
	color: #F47836;
}
.ja ul.lang li.ja a,
.en ul.lang li.en a
{
	color: #333333;
	border-bottom: solid 2px #F47836;
}




/* ============================================
  margin
============================================  */
.u-mt20 {margin-top: 20px;}
.mgt80 {
	margin-top: 80px;
}



section {
	margin: 0;
	padding: 0;
}



