@charset "UTF-8";

/*!
 * タイトルなど
 *
 * Copyright (C) ●●など
 */

/*********************************
	ヘッダーの設定
*********************************/

/*------　ヘッダーの設定 -------*/

/* ここにコメントを追記 */

/* ===========================================
 * MAIN
 * ======================================== */

/* sub */
/* ======================================== */

/* カラースキームの定義 */
:root {
  --primary-color: #113966;
  /* 濃い青色 */
  --secondary-color: #cde4ff;
  /* 明るい青色 */
  --text-color: #000;
  /* 文字色＝黒色 */
  --background-color: #fff;
  /* 背景＝白色 */
}

/* CSS変数を使用して色を指定 */
body {
  background-color: var(--primary-color);
  background-color: var(--secondary-color);
  background-color: var(--text-color);
  background-color: var(--background-color);

  color: var(--primary-color);
  color: var(--secondary-color);
  color: var(--text-color);
}

a {
  color: var(--text-color);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* スマホ揺らぎ確認用CSS */
/* *,
*::after,
*::before {
  outline: 1px solid rgb(234, 4, 234);
  opacity: 1 !important;
} */

body {
  background-color: #ffffff;
}

a {
  text-decoration: none;
}

img {
  width: 100%
}

ul, li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* ボタンCSSリセット */
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/* コピペ用コード */
.font-size-dummy {
  font-size: .75rem;
  /* 12px */
  font-size: .8125rem;
  /* 13px */
  font-size: .875rem;
  /* 14px */
  font-size: 1rem;
  /* 16px */
  font-size: 1.25rem;
  /* 20px */
  font-size: 1.75rem;
  /* 28px */
}

/* スマホ用コード */
.pc {
  display: none;
}

.sp {
  display: block;
}



/* コンテンツ */

.content {
  padding: 50px 0;
}

.content .inner {
  width: 95%;
  margin: 0 auto;
}

.table_design {
  text-align: left;
}

.table_design {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  max-width: 700px;
  text-align: center;
}

.table_design th, .table_design td {
  border: 2px solid rgb(201, 23, 30, 0.75);
  padding: 1em;
}

.table_design tbody th {
  font-weight: bold;
  text-align: center;
}

.table_design th, .table_design td {
  display: block;
  border: 0;
  border-bottom: 2px solid rgb(201, 23, 30, 0.75);
}

.table_design tbody th {
  background-color: rgb(201, 23, 30, 0.75);
  color: #fff;
}

/* H2 見出し */

.heading {
  position: relative;
  padding-top: 50px;
  padding-bottom: 20px;
  font-size: 26px;
  text-align: center;
}

.heading span {
  position: relative;
  z-index: 2;
}

.heading::before {
  content: attr(data-en);
  position: absolute;
  /* top: 0px; */
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  color: rgb(201, 23, 30, 0.2);
  font-size: 3vw;
  font-style: italic;
  width: 100%;
}


@media screen and (min-width:640px) {
  /* sm: min-width:640px; */
}

@media screen and (min-width:768px) {
  /* md: min-width:768px;
  iPad/mini/air */

  .pc {
    display: block;
  }

  .sp {
    display: none;
  }
}

@media screen and (min-width:1024px) {
  /* lg: min-width:1024px;
  iPad Pro 12.9*/

  /* コンテンツ */

  .content {
    padding: 50px 0;
  }

  .content .inner {
    width: 1000px;
    margin: 0 auto;
    text-align: center;
  }

  .content .inner .tableBox {
    margin-bottom: 50px;
  }

  .table_design {
    border-collapse: collapse;
    table-layout: fixed;
    width: 80%;
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
  }

  .table_design th, .table_design td {
    border: 1px solid rgb(201, 23, 30, 0.2);
    padding: 1em;
    font-size: 0.875vw;
  }

  .table_design tbody th {
    display: table-cell;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    width: 40%;

  }

  .table_design tbody td.h82 {
    height: 95px;
    line-height: 60px;
  }
}

@media screen and (min-width:1280px) {
  /* xl: min-width:1280px;
  Android Tablet　Fire HD 10 10インチ*/
}