@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 {
  max-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;
}

.table-style-type01 ul {
  display: flex;
  flex-wrap: wrap;
}

.table-style-type01 ul li {
  width: 48%;
  margin: 1%;
}

.table-style-type01 ul li:first-child {
  width: 98%;
  margin: 1%;
  position: relative;
}

.table-style-type01 ul li p {
  width: 100%;
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 10px 0px;
  text-align: center;
  background-color: rgb(0, 0, 0, 0.6);
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}


@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*/

  .table-style-type01 ul {
    display: flex;
    flex-wrap: wrap;
  }

  .table-style-type01 ul li {
    width: 48%;
    margin: 1%;
  }

  .table-style-type01 ul li:first-child {
    width: 98%;
    margin: 1%;
    position: relative;
  }

  .table-style-type01 ul li p {
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 15px 50px;
    background-color: rgb(0, 0, 0, 0.6);
    position: absolute;
    top: 95.5%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
  }
}

@media screen and (min-width:1280px) {
  /* xl: min-width:1280px;
  Android Tablet　Fire HD 10 10インチ*/
}