@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;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

/* アバウト */

.about {
  padding: 50px 0 20px;
  text-align: center;
  background-color: rgb(201, 23, 30, 0.1);
}

.about .inner {
  width: 95%;
  margin: 0 auto;
}

.about .inner .box h2 {}

.about .inner .box p {
  text-align: left;
}

.about .inner .box ul {
  display: flex;
  flex-direction: column;
}

.about .inner .box ul li {
  margin: 10px;
  padding: 10px;
  border: 1px solid #b8b8b8;
  text-align: left;
  background-color: #ffffff;
}

.about .inner .box ul.two li {
  text-align: left;
}

.about .inner .box ul.three li {
  text-align: center;
}

.about .inner .box ul.four li {
  text-align: center;
}

.about .inner .box ul.five li {
  text-align: center;
}

.about .inner .box ul.text-center li {
  text-align: center;
}

.about .inner .box ul.text-left li {
  text-align: left;
}




@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*/

  /* アバウト */

  .about {
    margin: 0px 0;
    text-align: center;
  }

  .about .inner {
    width: 1000px;
    margin: 0 auto;
  }

  .about .inner .box h2 {
    margin-bottom: 20px;
    font-size: 1.75vw;
  }

  .about .inner .box p {
    text-align: left;
    text-align: center;
    font-size: 0.875vw;
  }

  .about .inner .box ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .about .inner .box ul.three {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .about .inner .box ul.five {
    display: flex;
    flex-wrap: wrap;
  }

  .about .inner .box ul.six {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .about .inner .box ul li {
    margin: 10px;
    padding: 30px 5px;
    border: 1px solid #b8b8b8;
    width: 32%;
    font-size: 1.0vw;
    display: grid;
    place-items: center center;
    background-color: rgb(201, 23, 30, 0.75);
    color: #ffffff;
    font-weight: 700;
  }

  .about .inner .box ul.two li {
    width: 48%;
  }

  .about .inner .box ul.three li {
    margin: 10px;
    padding: 30px 20px;
    border: 1px solid #b8b8b8;
    width: 32%;
    font-size: 1.0vw;
    display: grid;
    place-items: center center;
    background-color: rgb(255, 255, 255, 0.75);
    color: #797979;
    font-weight: 700;
    width: 80%;
    margin: 0 auto 30px;
  }

  .about .inner .box ul.five li {
    width: 30%;
    font-size: 0.875vw;
  }

  .about .inner .box ul.six li {
    margin: 10px;
    padding: 30px 20px;
    border: 1px solid #b8b8b8;
    width: 32%;
    font-size: 1.0vw;
    display: grid;
    place-items: center center;
    background-color: rgb(255, 255, 255, 0.75);
    color: #797979;
    font-weight: 700;
    width: 80%;
    margin: 0 auto 30px;
    text-align: left;
  }


}

@media screen and (min-width:1280px) {
  /* xl: min-width:1280px;
  Android Tablet　Fire HD 10 10インチ*/
}