<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* ============================================================ */
/* Foundation */
/* reset、基本スタイル、font、変数 */
/* ============================================================ */
/* ------------------------------
reset
------------------------------ */
/* ------------------------------
mixin
------------------------------ */
/*
media query

■使い方
@include if-medium-screen-upper {
  //768px以上で使うスタイル
}
@include if-large-screen-upper {
  //1024px以上で使うスタイル
}
*/
/* --------------------------
layout
-------------------------- */
@media screen and (min-width: 768px) {
  .content {
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .page-rules-top .content {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .main {
    flex: 1;
  }
}

@media screen and (min-width: 768px) {
  .side {
    width: 200px;
    margin-left: 40px;
  }
}

/* ----------
.colum1
---------- */
.colum1 {
  display: flex;
}
@media screen and (min-width: 768px) {
  .colum1 {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.colum1__main {
  flex: 1;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .colum1__main {
    width: 55%;
  }
}

.colum1__sub {
  text-align: right;
  width: 40%;
  max-width: 200px;
  margin-left: 5%;
}
@media screen and (min-width: 768px) {
  .colum1__sub {
    width: 40%;
  }
}

.colum1__sub-img {
  width: 300px;
}
@media screen and (min-width: 768px) {
  .colum1__sub-img {
    width: 100%;
  }
}

.colum1__sub-img--1 {
  width: 120px;
}
@media screen and (min-width: 768px) {
  .colum1__sub-img--1 {
    width: 150px;
  }
}

.colum1__sub-img--2 {
  width: 56px;
}
@media screen and (min-width: 768px) {
  .colum1__sub-img--2 {
    width: 73px;
  }
}

.colum1__sub-img--3 {
  width: 90px;
}
@media screen and (min-width: 768px) {
  .colum1__sub-img--3 {
    width: 130px;
  }
}

.colum1__sub-img--4 {
  width: 100px;
}
@media screen and (min-width: 768px) {
  .colum1__sub-img--4 {
    width: 100%;
  }
}

.colum1__sub-img--5 {
  width: 90px;
}
@media screen and (min-width: 768px) {
  .colum1__sub-img--5 {
    width: 123px;
  }
}

.colum1__sub-img--6 {
  width: 100px;
}
@media screen and (min-width: 768px) {
  .colum1__sub-img--6 {
    width: 140px;
  }
}

/* --------------------------
project
-------------------------- */
.outline {
  margin-bottom: 80px;
}

.outline__lead {
  margin-bottom: 0;
}
.outline__lead p {
  margin-bottom: 0;
  line-height: 2;
}

.outline--note-style {
  background: #f2f2f2;
  border: none;
}
.outline--note-style .outline__lead {
  background-color: #f2f2f2; /* 背景色 */
  background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #f2f2f2 50%, #f2f2f2 100%), linear-gradient(180deg, #a1a1a1 2px, transparent 2px); /* 点線2の色と太さ */
  background-size: 5px 100%, 100% 2em; /* 点線2のサイズ */
  line-height: 2em; /* 文字の高さ */
  padding-bottom: 2px; /* 最終行の下にも罫線を引く */
}

.outline__points {
  margin-top: 0;
}

.outline__chara-rules {
  width: 110px;
  left: auto;
  right: 10px;
  bottom: -70px;
}
@media screen and (min-width: 768px) {
  .outline__chara-rules {
    width: 150px;
    right: 0;
    bottom: -40px;
  }
}

.breadcrumb__list {
  max-width: 1100px;
}

.container__inner {
  max-width: 1100px;
}

.supervision {
  font-size: 13px;
  text-align: center;
}

/* ----------
.page-links
---------- */
.page-link {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .page-link {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.page-link__item {
  border-radius: 8px;
  width: 100%;
  margin-bottom: 3%;
  background: #e9fff4;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .page-link__item {
    width: 48.5%;
    margin-right: 3%;
  }
  .page-link__item:nth-child(even) {
    margin-right: 0;
  }
}

.page-link-a {
  display: block;
  padding: 20px;
  color: #000;
  text-decoration: none;
}
@media screen and (min-width: 1024px) {
  .page-link-a {
    padding: 30px;
  }
}

.page-link__title {
  margin: 0 0 0.7em;
  font-size: 17px;
  font-weight: bold;
  color: var(--main-color);
  position: relative;
  display: inline-block;
}
.page-link__title .small {
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .page-link__title .small {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .page-link__title {
    font-size: 18px;
  }
}

.page-link__summary {
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .page-link__summary {
    font-size: 16px;
  }
}
.page-link__summary .pc-only {
  display: none;
}
@media screen and (min-width: 1024px) {
  .page-link__summary .pc-only {
    display: block;
  }
}

.page-link__link-arrow {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 0.8em;
  height: 0.8em;
  border: 0.1em solid currentColor;
  background: currentColor;
  border-radius: 50%;
  box-sizing: content-box;
}
.page-link__link-arrow::after {
  content: "";
  color: #fff;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.27em 0.32em;
  border-left-color: currentColor;
  border-right: 0;
  transform: translateX(15%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.align-c {
  text-align: center;
}
/*# sourceMappingURL=style.css.map */</pre></body></html>