@charset "UTF-8";
/*==================================
      レスポンシブ設定 マップ型変数breakpointsを定義
      =================================*/
/*==================================
      # 色、フォントファミリー
      =================================*/
/*==================================
      common(一般) - 全体に共通するスタイル
      =================================*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}
.single-column2 h2 {
  background: #bb3333;
  color: #fff;
  font-weight: 400;
  padding: 10px;
  line-height: 1.3;
  border-radius: 4px;
}
.single-column2 .main-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: visible;
  /* ←これが必要 */
}
@media screen and (max-width: 767px) {
  .single-column2 .main-flex {
    display: block;
  }
}
.single-column2 .main-flex .single-main-box {
  width: calc(100% - 350px);
}
@media screen and (max-width: 767px) {
  .single-column2 .main-flex .single-main-box {
    width: 100%;
    margin-bottom: 20px;
  }
}
.single-column2 .main-flex .sidebar {
  width: 300px;
}
@media screen and (max-width: 767px) {
  .single-column2 .main-flex .sidebar {
    width: 100%;
  }
}
.single-column2 .main-flex .sidebar .banner a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.single-column2 .main-flex .sidebar .banner a:hover {
  opacity: 0.6;
}
.single-column2 h1 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .single-column2 h1 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.single-column2 .contents table td {
  border: 0.5px solid #bb3333;
  padding: 10px;
}
.single-column2 .contents ul {
  padding-left: 30px;
  background: #fcf3f3;
  padding-top: 10px;
  padding-bottom: 15px;
  padding-right: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
}
.single-column2 .contents ul li {
  list-style: disc;
  padding-bottom: 5px;
  padding-top: 5px;
}
.single-column2 h3 {
  background: #f3f2f2;
  border-left: 5px solid #bb3333;
  padding: 10px;
}
.single-column2 h4 {
  border-bottom: 1px solid #bb3333;
  color: #bb3333;
  padding-bottom: 4px;
}
.single-column2 .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 10px;
}
.single-column2 .category .category-item {
  color: #bb3333;
  background: #fcf3f3;
  border-radius: 30px;
  line-height: 1;
  padding: 5px 10px;
  display: inline-block;
  margin-right: 5px;
}
.single-column2 .row1 {
  font-size: 13px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .single-column2 .row1 {
    display: block;
  }
}
.single-column2 .row1 .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .single-column2 .row1 .left {
    display: block;
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .single-column2 .row1 .right {
    text-align: right;
  }
}
.single-column2 .img img {
  height: auto;
}
.single-column2 #toc_container {
  background: #f1f0f0 !important;
}
.single-column2 #toc_container .toc_list li {
  border-bottom: 1px solid #707070;
  padding-bottom: 5px;
  padding-top: 5px;
}
.single-column2 #toc_container .toc_list li a {
  border-bottom: none !important;
}
.single-column2 #toc_container .toc_list li ul li {
  border-bottom: none !important;
}

.sidebar {
  position: sticky;
  top: 100px;
  /* 上からの固定位置 */
  -ms-flex-item-align: start;
      align-self: start;
  /* Flexアイテムで必要な場合 */
  z-index: 10;
}

body.active {
  overflow: visible;
}

.header .inner {
  position: relative;
}
.header .inner .sub-area {
  position: absolute;
  top: 115%;
  left: 50%;
  width: 100%;
  background: #eee;
  padding: 50px 60px;
  max-width: 800px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .header .inner .sub-area {
    display: none;
  }
}
.header .inner .sub-area::after {
  position: absolute;
  top: -100px;
  left: 50%;
  width: 200px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  height: 100px;
}
.header .inner .sub-area .title {
  margin-bottom: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .inner .sub-area .title.active {
  color: #bb3333;
}
.header .inner .sub-area .title a {
  display: inline-block;
  font-size: 19px;
  color: #222;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 700;
}
.header .inner .sub-area .title a:hover {
  color: #bb3333;
}
.header .inner .sub-area .title a .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .inner .sub-area .title a .flex .arrow {
  width: 20px;
  min-width: 20px;
  margin-left: 14px;
}
.header .inner .sub-area .title a .flex .arrow img {
  vertical-align: sub;
}
.header .inner .sub-area .sub-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  flex-wrap: wrap;
}
.header .inner .sub-area .sub-ul li {
  width: calc(50% - 20px);
  margin-right: 40px;
}
.header .inner .sub-area .sub-ul li:nth-child(2n) {
  margin-right: 0;
}
.header .inner .sub-area .sub-ul li a {
  font-size: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
  padding: 10px 0;
  border-bottom: 0.7px solid #222;
  color: #222;
}
.header .inner .sub-area .sub-ul li a:hover {
  color: #bb3333;
}
.header .inner .sub-area .sub-ul li a .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header .inner .sub-area .sub-ul li a .flex .arrow {
  width: 15px;
  min-width: 15px;
  margin-left: 14px;
}
.header .inner .sub-area .sub-ul li a .flex .arrow img {
  vertical-align: sub;
}
.header .inner .parent {
  position: relative;
}
.header .inner .parent.active::before {
  opacity: 1 !important;
  visibility: visible !important;
}
.header .inner .parent.active::after {
  opacity: 1 !important;
  visibility: visible !important;
}
.header .inner .parent::after {
  position: absolute;
  top: 254%;
  content: "";
  background: #bb3333;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .header .inner .parent::after {
    display: none;
  }
}
.header .inner .parent::before {
  position: absolute;
  top: 150%;
  content: "";
  background: #bb3333;
  width: 1px;
  height: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .header .inner .parent::before {
    display: none;
  }
}

.privacy-policy {
  position: relative;
  z-index: 1;
  background: #f6f6f6;
}
.privacy-policy a {
  color: #222;
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.privacy-policy a:hover {
  opacity: 0.6;
}

.privacy-policy h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

.privacy-policy h2 {
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 10px;
  border-left: 4px solid #bb3333;
  padding-left: 10px;
}

.privacy-policy p, .privacy-policy ul {
  margin-bottom: 15px;
}

.privacy-policy ul {
  padding-left: 20px;
}

.privacy-policy ul li {
  list-style-type: disc;
}

.privacy-policy address {
  font-style: normal;
  background: #f8f8f8;
  padding: 15px;
  border-left: 3px solid #ccc;
}