@charset "UTF-8";
@import url("base.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Outfit:wght@100..900&display=swap");
@import url("https://use.fontawesome.com/releases/v6.4.2/css/all.css");
/*-------------------------------
ディフォルト設定
---------------------------------*/
html {
  width: 100%; }

body {
  background: #f9f9f9;
  margin: 0px;
  padding: 0px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--main_font_color);
  font-family: "Nunito Sans", "Noto Sans JP", serif;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none; }
  @media screen and (max-width: 767px) {
    body {
      font-size: 0.9rem;
      line-height: 1.4; } }

/*text link（サイト全体のメイン文字カラー）
-------------------------------- */
a:link {
  color: var(--main_font_color); }

a:visited {
  color: var(--main_font_color); }

a:hover {
  color: var(--main_font_color); }

a:active {
  color: var(--main_font_color); }

/*mb
------------------------*/
.mb10 {
  margin-bottom: 10px; }

.mb20 {
  margin-bottom: 20px; }

.mb30 {
  margin-bottom: 30px; }

.mb40 {
  margin-bottom: 40px; }

/*img
------------------------*/
* img {
  border: none;
  margin: 0px;
  padding: 0px;
  vertical-align: bottom;
  max-width: 100%;
  height: auto; }

* {
  box-sizing: border-box; }

* .row {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -webkit-align-content: space-between;
  align-content: space-between;
  align-items: flex-start;
  -webkit-align-items: flex-start; }

* .pc {
  display: block; }
  @media screen and (max-width: 767px) {
    * .pc {
      display: none; } }

* .sp {
  display: none; }
  @media screen and (max-width: 767px) {
    * .sp {
      display: block; } }

.breadcrumbs {
  width: 1200px;
  margin: 10px auto; }
  @media screen and (max-width: 767px) {
    .breadcrumbs {
      display: none; } }
  .breadcrumbs ul {
    list-style: none; }
    .breadcrumbs ul li {
      float: left; }
      .breadcrumbs ul li:nth-child(even) {
        margin: 0 10px; }
      .breadcrumbs ul li a {
        text-decoration: none; }
        .breadcrumbs ul li a:hover {
          text-decoration: underline; }
  .breadcrumbs .cf::before,
  .breadcrumbs .cf::after {
    content: "";
    display: table; }
  .breadcrumbs .cf::after {
    clear: both; }
  .breadcrumbs .cf {
    *zoom: 1; }
