@charset "UTF-8";
/*
コーディング規約
https://qiita.com/super-mana-chan/items/644c6827be954c8db2c0
*/
/*
「/src/sass/foundation」ディレクトリ内のscssファイルを読み込みます。
[例]/src/sass/foundation/base/_example.scss を読み込む場合
@forward "../../foundation/base/example";
*/
:root {
  --brown-thin: #CFC3B6;
  --white: #D9D9D9;
  --color-01: #7F674B;
  --color-02: #9F9A6D;
  --color-03: #DACCB3;
  --color-b-primary: #4E3206;
  --color-b-secondary: #F8F4EE;
  --gray-50: #F2F2F2;
  --gray-100: #E6E6E6;
  --gray-200: #CCCCCC;
  --gray-300: #B3B3B3;
  --gray-400: #949494;
  --gray-500: #7F7F7F;
  --gray-600: #666666;
  --gray-700: #4D4D4D;
  --gray-800: #333333;
  --gray-900: #1A1A1A;
}

/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: var(--color-b-secondary);
}

/*
「/src/sass/layout」ディレクトリ内のscssファイルを読み込みます。
[例]/src/sass/layout/_example.scss を読み込む場合
@forward "../../layout/example";
*/
/*
ヘッダー位置
*/
.l-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/*
フッター位置
*/
/*
メインエリア位置
*/
.l-main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/*
トピックス、これまでの取り組みなど
記事の一覧の配置
*/
.l-article {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  padding: 0 25px;
}

/*
左サイドにメニュー・右にコンテンツを配置
*/
.l-withSide {
  display: grid;
  grid-template-columns: 175px 1fr;
}
@media screen and (max-width: 768px) {
  .l-withSide {
    grid-template-columns: 1fr;
  }
}
.l-withSide__side {
  position: -webkit-sticky;
  position: sticky;
  top: 67px;
  -webkit-align-self: start;
      -ms-flex-item-align: start;
          align-self: start;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .l-withSide__side {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    position: static;
    width: 100%;
    padding-top: 32px;
    margin-bottom: 0;
  }
}
.l-withSide__main {
  padding-top: 30px;
  padding-left: 40px;
  border-left: solid 1px var(--brown-thin);
}
@media screen and (max-width: 768px) {
  .l-withSide__main {
    padding-left: 0;
    border-left: none;
    border-bottom: solid 1px var(--brown-thin);
  }
}

/*
各ページのタイトル・パンくずリストなどが入る箇所の位置
*/
.l-title {
  display: block;
  padding: 0 40px;
  margin: 100px 0 20px;
}
@media screen and (max-width: 768px) {
  .l-title {
    padding: 0 25px;
    margin: 40px 0 20px;
  }
}

/*
記事内容などメインコンテンツの配置
*/
.l-contents {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .l-contents {
    padding: 0 25px;
  }
}

/* component project utilityをまとめる */
/*
「/src/sass/object/component」ディレクトリ内のscssファイルを読み込みます。
[例]/src/sass/object/component/_example.scss を読み込む場合
@forward "../../object/component/example";
*/
/*
メニューを開閉するボタン
*/
.c-menuToggle {
  display: none;
  background: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  border: solid 1px #fff;
  background-color: var(--color-b-primary);
  border-radius: 50%;
  width: 42px;
  height: 42px;
}
@media screen and (max-width: 768px) {
  .c-menuToggle {
    display: block;
  }
}
.c-menuToggle__icon {
  width: 19px;
  height: 19px;
  position: relative;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.c-menuToggle__icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 3px;
  opacity: 1;
  left: 3px;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.c-menuToggle__icon span:nth-child(1) {
  top: 2px;
}
.c-menuToggle__icon span:nth-child(2) {
  top: 8px;
}
.c-menuToggle__icon span:nth-child(3) {
  top: 14px;
}
.c-menuToggle.active .c-menuToggle__icon span:nth-child(1) {
  top: 8px;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}
.c-menuToggle.active .c-menuToggle__icon span:nth-child(2) {
  opacity: 0;
}
.c-menuToggle.active .c-menuToggle__icon span:nth-child(3) {
  top: 8px;
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

/*
リストのマーカーやマージンを削除
*/
.c-resetList {
  margin: 0;
  padding: 0;
}
.c-resetList li {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

/*
パンくずリスト
*/
.c-breadcrumb {
  margin: 0 auto 40px;
  width: 100%;
  border-bottom: solid 1px var(--brown-thin);
  padding-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .c-breadcrumb {
    margin: 0;
  }
}
.c-breadcrumb ul {
  margin: 0 auto;
  padding: 0 5px 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 2em;
  font-size: 12px;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.c-breadcrumb ul::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-breadcrumb ul {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 0;
  }
}
.c-breadcrumb ul li {
  list-style: none;
  position: relative;
  white-space: nowrap;
}
.c-breadcrumb ul li a {
  color: var(--color-01);
  text-decoration: none;
}
.c-breadcrumb ul li::after {
  color: var(--color-01);
  content: "/";
  position: absolute;
  right: -1.1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-breadcrumb ul li:last-child {
  color: var(--color-b-primary);
}
.c-breadcrumb ul li:last-child::after {
  display: none;
}

/*
各ページのセクションごとのタイトル
*/
.c-sectionTitle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  width: 100%;
  color: var(--color-b-primary);
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .c-sectionTitle {
    margin-bottom: 20px;
  }
}
.c-sectionTitle__sub {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .c-sectionTitle__sub {
    font-size: 14px;
  }
}
.c-sectionTitle__main {
  font-family: "Zen Kaku Gothic New", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .c-sectionTitle__main {
    font-size: 28px;
  }
}

/*
記事一覧などに表示するタグ・カテゴリー
*/
.c-tags {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
}
.c-tags li {
  list-style: none;
}
.c-tags li a,
.c-tags li label {
  text-decoration: none;
  color: var(--color-b-primary);
  display: block;
  padding: 5px 15px 5px 25px;
  text-align: center;
  border-radius: 50px;
  position: relative;
  background-color: var(--color-b-secondary);
  font-size: 16px;
  border: solid 1px var(--color-b-secondary);
}
@media screen and (max-width: 768px) {
  .c-tags li a,
  .c-tags li label {
    font-size: 12px;
    padding: 3px 10px 3px 20px;
  }
}
.c-tags li a::before,
.c-tags li label::before {
  content: "#";
  position: absolute;
  left: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .c-tags li a::before,
  .c-tags li label::before {
    left: 7px;
  }
}
.c-tags--small li a,
.c-tags--small li label {
  border-radius: 5px;
  padding: 4px 12px;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
}
.c-tags--small li a::before,
.c-tags--small li label::before {
  content: "";
}

/*
これまでの取り組みなどにある記事の検索フォーム
*/
.c-searchForm {
  max-width: 1280px;
  margin: 0 auto 60px;
  border-radius: 12px;
  padding: 40px;
  background: #fff;
}
@media screen and (max-width: 960px) {
  .c-searchForm {
    padding: 20px;
  }
}
.c-searchForm > dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 25px;
}
@media screen and (max-width: 960px) {
  .c-searchForm > dl {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .c-searchForm > dl {
    margin-bottom: 20px;
  }
}
.c-searchForm > dl dt {
  width: 15%;
  font-weight: 700;
  font-size: 18px;
  color: var(--color-b-primary);
}
@media screen and (max-width: 960px) {
  .c-searchForm > dl dt {
    width: 100%;
    margin-bottom: 5px;
  }
}
.c-searchForm > dl dd {
  width: 84%;
}
@media screen and (max-width: 960px) {
  .c-searchForm > dl dd {
    width: 100%;
  }
}
.c-searchForm__cats {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 5px;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 960px) {
  .c-searchForm__cats {
    gap: 10px;
  }
}
.c-searchForm__cats li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-searchForm__cat {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 100px;
  border: solid 1px var(--color-b-primary);
  background-color: #fff;
  color: var(--color-b-primary);
  padding: 4px 20px;
  cursor: pointer;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.c-searchForm__cat:hover {
  background-color: var(--color-b-secondary);
}
.c-searchForm__cat:has(:checked) {
  background-color: var(--color-b-primary);
  color: #fff;
}
.c-searchForm__catsText {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
}
@media screen and (max-width: 768px) {
  .c-searchForm__catsText {
    font-size: 12px;
  }
}
.c-searchForm__tags label {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  cursor: pointer;
}
.c-searchForm__tags label:has(:checked) {
  background-color: var(--color-b-primary);
  border: solid 1px var(--color-b-primary);
  color: #fff;
}
.c-searchForm__tags label:has(:checked)::before {
  color: #fff;
}
.c-searchForm__tags label,
.c-searchForm__tags label a {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.c-searchForm__tags label:hover,
.c-searchForm__tags label a:hover {
  border-color: var(--color-b-primary);
}
.c-searchForm__keyword {
  border-top: solid 1px var(--brown-thin);
  padding-top: 24px;
}
.c-searchForm__keyword dt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-searchForm__keywordInput {
  background: var(--color-b-secondary);
  border-radius: 12px;
  padding: 14px 30px;
  width: 100%;
  color: var(--color-b-primary);
  border: none;
}
.c-searchForm__keywordInput::-webkit-input-placeholder {
  color: var(--color-01);
}
.c-searchForm__keywordInput::-moz-placeholder {
  color: var(--color-01);
}
.c-searchForm__keywordInput:-ms-input-placeholder {
  color: var(--color-01);
}
.c-searchForm__keywordInput::-ms-input-placeholder {
  color: var(--color-01);
}
.c-searchForm__keywordInput::placeholder {
  color: var(--color-01);
}
.c-searchForm__btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px 20px;
}
@media screen and (max-width: 960px) {
  .c-searchForm__btns {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .c-searchForm__btns {
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .c-searchForm__btns button,
  .c-searchForm__btns a {
    width: 100%;
    max-width: none;
  }
}
.c-searchForm__hidebox {
  display: none;
}

/*
記事一覧のページネーション
*/
.c-pagenavi {
  margin-top: 40px;
  margin-bottom: 10px;
  padding: 0 15px;
}
.c-pagenavi .wp-pagenavi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  font-size: 18px;
  font-family: "Instrument Sans", sans-serif;
}
.c-pagenavi .wp-pagenavi span,
.c-pagenavi .wp-pagenavi a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  background-color: #fff;
  color: var(--color-01);
  text-decoration: none;
  padding: 5px;
  width: 42px;
  height: 42px;
  line-height: 1;
  border-radius: 50%;
  border: solid 1px #fff;
}
.c-pagenavi .wp-pagenavi span.extend,
.c-pagenavi .wp-pagenavi a.extend {
  background-color: transparent;
  padding: 0;
  min-width: auto;
}
.c-pagenavi .wp-pagenavi span.current,
.c-pagenavi .wp-pagenavi a.current {
  background-color: var(--color-01);
  color: #fff;
  border-color: var(--color-01);
}
.c-pagenavi .wp-pagenavi a {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.c-pagenavi .wp-pagenavi a:hover {
  background-color: var(--color-01);
  color: #fff;
}

/*
アイコン付きのボタン
*/
.c-btnLink {
  cursor: pointer;
  display: inline-block;
  border: solid 1px var(--color-b-primary);
  background-color: var(--color-b-primary);
  color: #FFF;
  text-decoration: none;
  padding: 10px 40px;
  border-radius: 100px;
  font-size: 12px;
  position: relative;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  text-decoration: none !important;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-btnLink {
    padding: 10px 25px;
  }
}
.c-btnLink i::after {
  color: #FFF !important;
}
.c-btnLink::after {
  content: "→";
  margin-left: 5px;
  margin-right: 5px;
}
.c-btnLink:hover {
  background-color: #FFF;
  color: var(--color-b-primary);
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.c-btnLink:hover i::after {
  color: var(--color-b-primary) !important;
}
.c-btnLink--iconabs {
  padding: 10px 50px 10px 40px;
}
.c-btnLink--iconabs::after {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-btnLink--white {
  background-color: #FFF;
  color: var(--color-b-primary);
}
.c-btnLink--white:hover {
  background-color: var(--color-b-primary);
  color: #FFF;
}
.c-btnLink--circle {
  padding: 15px 13px;
}
.c-btnLink--circle::after {
  top: 50%;
  left: 50%;
  right: auto;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-btnLink--noarrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.c-btnLink--noarrow::after {
  display: none;
}
.c-btnLink--long {
  width: 100%;
  max-width: 280px;
  font-size: 16px;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .c-btnLink--long {
    padding: 7px 10px;
  }
}
.c-btnLink--big {
  padding: 20px 60px;
}
.c-btnLink--thin {
  border: solid 1px var(--brown-thin);
  background-color: var(--brown-thin);
}
.c-btnLink--nobd {
  border: none;
}
@media screen and (max-width: 768px) {
  .c-btnLink--minsp {
    padding: 10px 16px;
  }
}
@media screen and (max-width: 768px) {
  .c-btnLink--minsp::after {
    margin-right: 0;
  }
}

/*
フロントページの伸びる線
*/
@media screen and (max-width: 768px) {
  .c-line__pc {
    display: none;
  }
}
.c-line__sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-line__sp {
    display: block;
  }
}

/*
スクロール量に応じて伸びていくSVGのスタイル
*/
.c-svgDrawOnScroll {
  width: 100%;
  height: auto;
  display: block;
}
.c-svgDrawOnScroll path {
  fill: none;
  stroke: var(--color-b-primary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  /* 拡大縮小時も線幅維持 */
  /* vector-effect: non-scaling-stroke; */
}
@media screen and (max-width: 768px) {
  .c-svgDrawOnScroll path {
    stroke-width: 1;
  }
}

/*
トピックスなどに使用する
サムネイルを左、テキストなどを右側に配置するリスト
*/
.c-topicsArticle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  padding: 20px 0;
  border-bottom: solid 1px #F9F4ED;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
@media screen and (max-width: 768px) {
  .c-topicsArticle {
    padding: 12px 0;
  }
}
.c-topicsArticle:hover {
  background-color: var(--color-b-secondary);
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.c-topicsArticle--secondary {
  border-bottom: solid 1px var(--brown-thin);
}
.c-topicsArticle--secondary:hover {
  background-color: #FFF;
}
.c-topicsArticle h3 {
  color: var(--color-b-primary);
}
@media screen and (max-width: 768px) {
  .c-topicsArticle h3 {
    font-size: 14px;
  }
}
.c-topicsArticle h3 a {
  text-decoration: none;
  color: var(--color-b-primary);
}
.c-topicsArticle h3 a:hover {
  text-decoration: underline;
}
.c-topicsArticle__pdf {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
}
@media screen and (max-width: 768px) {
  .c-topicsArticle__pdf {
    width: 20px;
  }
}
.c-topicsArticle__meta {
  margin-bottom: 5px;
}
.c-topicsArticle__thumb {
  width: 120px;
  height: 120px;
  overflow: hidden;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .c-topicsArticle__thumb {
    width: 50px;
    height: 50px;
    margin-left: 0;
  }
}
.c-topicsArticle__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.c-topicsArticle__thumb img:hover {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.c-topicsArticle__contents {
  padding-left: 20px;
  padding-right: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .c-topicsArticle__contents {
    width: calc(100% - 50px);
    padding-right: 25px;
    padding-left: 12px;
  }
}
.c-topicsArticle__date {
  font-size: 12px;
  color: var(--color-b-primary);
}
.c-topicsArticle__cat {
  text-decoration: none;
  display: inline-block;
  padding: 2px 5px;
  font-size: 12px;
  color: var(--color-b-primary);
  background-color: var(--color-b-secondary);
  border-radius: 3px;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.c-topicsArticle__cat--white {
  background-color: #FFF;
}
.c-topicsArticle__cat:hover {
  background-color: var(--color-b-primary);
  color: var(--color-b-secondary);
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

/*
上にサムネイル・下にタイトルなどを表示する記事のリスト
「これまでの取り組み」などに使用
*/
.c-activityCard figure {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 12px;
  overflow: hidden;
}
.c-activityCard figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  border-radius: 4px;
}
.c-activityCard figure img:hover {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.c-activityCard h3 {
  font-size: 16px;
  line-height: 1.6em;
  color: var(--color-b-primary);
}
.c-activityCard h3 a {
  text-decoration: none;
  color: var(--color-b-primary);
  display: block;
}
.c-activityCard h3 a:hover {
  text-decoration: underline;
}
.c-activityCard__meta {
  margin-bottom: 6px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  gap: 6px;
}
.c-activityCard__meta.is-activity {
  gap: 2px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.c-activityCard__date {
  font-size: 12px;
  display: inline-block;
  padding: 2px 0;
  color: var(--color-b-primary);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
.c-activityCard__catList {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  gap: 5px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.c-activityCard__catList li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.c-activityCard__catList li a, .c-activityCard__catList li span {
  font-size: 12px;
  display: block;
  padding: 2px 8px;
  background-color: #FFF;
  text-decoration: none;
  border-radius: 5px;
  color: var(--color-b-primary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 1em;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}
.c-activityCard__catList li:only-child a, .c-activityCard__catList li:only-child span {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.c-activityCard__eventTitle {
  font-size: 12px;
  display: block;
  text-decoration: none;
  color: var(--color-b-primary);
  border-top: solid 1px var(--color-b-primary);
  padding-top: 0.4rem;
  margin-top: 1rem;
  font-weight: bold;
}

/*
左側にタイトル名・右側にリンクボタンを表示するタイトル
*/
.c-linkTitle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.c-linkTitle__title {
  font-size: 32px;
  font-weight: bold;
  color: var(--color-b-primary);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 960px) {
  .c-linkTitle__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .c-linkTitle__title {
    font-size: 22px;
  }
}
.c-linkTitle__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

/*
左メニュー
*/
.c-sidemenu .scrollspy-current {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 14px;
  gap: 15px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-sidemenu .scrollspy-current {
    gap: 10px;
  }
}
.c-sidemenu .scrollspy-current a {
  color: var(--color-b-primary);
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .c-sidemenu .scrollspy-current a {
    color: var(--color-b-primary) !important;
    font-weight: bold !important;
  }
}
.c-sidemenu .scrollspy-current span {
  padding-left: 14px;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
@media screen and (max-width: 768px) {
  .c-sidemenu .scrollspy-current span {
    border-bottom: solid 1px var(--brown-thin);
    padding-bottom: 0.6rem;
  }
}
.c-sidemenu .scrollspy-active {
  position: relative;
}
.c-sidemenu .scrollspy-active a {
  color: var(--brown-thin);
}
.c-sidemenu .scrollspy-active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--color-02);
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .c-sidemenu .scrollspy-active::before {
    display: none;
  }
}

/*
フェードインで表示
*/
.c-fadeIn {
  opacity: 0;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
  will-change: opacity, transform;
}
.c-fadeIn--fadeOnly {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.c-fadeIn--visible {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

/*
「/src/sass/object/project」ディレクトリ内のscssファイルを読み込みます。
[例]/src/sass/object/project/_example.scss を読み込む場合
@forward "../../object/project/example";
*/
/*
ページ表示時に表示されるローディングアニメーション
*/
.p-loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-b-secondary);
  display: grid;
  place-items: center;
  opacity: 1;
}
.p-loading__center {
  width: 100%;
  height: 100%;
  position: relative;
}
.p-loading__line {
  width: 100%;
  max-width: 700px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 0 5px;
}
.p-loading__svg {
  display: block;
  width: 100%;
}
.p-loading__svg path {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  /* stroke: var(--color-b-primary); */
  /* strokeはJSで指定する */
  /* vector-effect: non-scaling-stroke; */
  /* 初期状態では JS で dasharray/offset をセットする */
}
.p-loading__logo {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(50% - 50px);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 480px) {
  .p-loading__logo {
    top: calc(50% - 35px);
  }
}
.p-loading__logoSub, .p-loading__logoMain {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  /* 初期は透明状態 */
  opacity: 0;
}
@media screen and (max-width: 960px) {
  .p-loading__logoSub, .p-loading__logoMain {
    max-width: 300px;
  }
}
@media screen and (max-width: 768px) {
  .p-loading__logoSub, .p-loading__logoMain {
    max-width: 250px;
  }
}
@media screen and (max-height: 500px) {
  .p-loading__logoSub, .p-loading__logoMain {
    max-width: 200px;
  }
}
.p-loading__logoSub img, .p-loading__logoMain img {
  width: 100%;
}
.p-loading__logoSub {
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .p-loading__logoSub {
    margin-bottom: 10px;
  }
}
@media screen and (max-height: 500px) {
  .p-loading__logoSub {
    margin-bottom: 5px;
  }
}
.p-loading__text {
  position: absolute;
  left: 0;
  right: 0;
  top: 40%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-height: 700px) {
  .p-loading__text {
    top: 38%;
  }
}
.p-loading__textWrapper {
  max-width: 960px;
  padding: 0 15px;
  margin: 0 auto;
  color: var(--color-b-primary);
}
.p-loading__textWrapper p {
  text-align: center;
  line-height: 1.8em;
  margin: 1em 0;
  font-size: 20px;
  /* 初期は透明状態 */
  opacity: 0;
}
@media screen and (max-width: 960px) {
  .p-loading__textWrapper p {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-loading__textWrapper p {
    font-size: 14px;
    line-height: 1.8em;
  }
}
@media screen and (max-height: 700px) {
  .p-loading__textWrapper p {
    font-size: 16px;
  }
}
@media screen and (max-height: 500px) {
  .p-loading__textWrapper p {
    font-size: 14px;
    line-height: 1.4em;
    margin: 0.5em 0;
  }
}
.p-loading__skip {
  position: absolute;
  right: 40px;
  bottom: 40px;
}
@media screen and (max-width: 960px) {
  .p-loading__skip {
    right: 20px;
    bottom: 20px;
  }
}
.p-loading .is-drawing path {
  -webkit-transition: stroke-dashoffset 2500ms ease-in-out;
  transition: stroke-dashoffset 2500ms ease-in-out;
}
.p-loading .is-fade-out, .p-loading.is-fade-out {
  -webkit-transition: opacity 1200ms ease;
  transition: opacity 1200ms ease;
  opacity: 0;
}
.p-loading .is-fade-in {
  -webkit-transition: opacity 1500ms ease;
  transition: opacity 1500ms ease;
  opacity: 1;
}
.p-loading .is-bottom {
  -webkit-transition: top 1450ms ease;
  transition: top 1450ms ease;
  top: calc(50% + 275px);
}
@media screen and (max-width: 960px) {
  .p-loading .is-bottom {
    top: calc(50% + 200px);
  }
}
@media screen and (max-width: 768px) {
  .p-loading .is-bottom {
    top: calc(50% + 250px);
  }
}
@media screen and (max-width: 480px) {
  .p-loading .is-bottom {
    top: calc(100% - 120px) !important;
  }
}
@media screen and (max-height: 680px) {
  .p-loading .is-bottom {
    top: 85%;
  }
}

/*
ヘッダー部分
*/
.p-header {
  background-color: var(--color-b-secondary);
  padding: 1rem 2rem;
}
@media screen and (max-width: 768px) {
  .p-header {
    padding: 1rem;
  }
}
.p-header__container {
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-header__logo h1 {
  margin: 0;
  width: 140px;
  height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-header__logo a {
  color: var(--text-color);
  text-decoration: none;
}
.p-header__logo img {
  height: 35px;
  width: auto;
  vertical-align: bottom;
}
.p-header__navMenu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  gap: 3rem;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 960px) {
  .p-header__navMenu {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-header__navMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-b-primary);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0rem;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  .p-header__navMenu.active {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
}
@media screen and (max-width: 768px) {
  .p-header__navMenuItem {
    width: 100%;
  }
}
.p-header__navMenuItem a {
  color: var(--color-b-primary);
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.p-header__navMenuItem a:hover {
  color: var(--brown-thin);
}
@media screen and (max-width: 768px) {
  .p-header__navMenuItem a {
    padding: 1rem 2rem;
    color: white;
    display: block;
    font-size: 20px;
    font-weight: 500;
  }
}
.p-header__navMenuItem--active a {
  color: var(--brown-thin);
}

/*
フッター部分
*/
.p-footer {
  background-color: var(--bg-color);
  padding: 80px 35px;
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .p-footer {
    padding: 60px 35px 35px;
  }
}
.p-footer__container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .p-footer__container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-footer__profile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.p-footer__logo {
  width: 280px;
}
@media screen and (max-width: 768px) {
  .p-footer__logo {
    width: 120px;
  }
}
.p-footer__logo img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-footer__logo img {
    margin: 0 auto;
  }
}
.p-footer__address {
  line-height: 1.6;
  font-style: normal;
  color: var(--color-b-primary);
}
.p-footer__address dt {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-footer__address dt {
    font-size: 16px;
  }
}
.p-footer__address dd {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .p-footer__address dd {
    font-size: 12px;
  }
}
.p-footer__address a {
  text-decoration: none;
  color: var(--color-b-primary);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.p-footer__address a:hover {
  opacity: 0.7;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.p-footer__menu {
  list-style: none;
  font-size: 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .p-footer__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.p-footer__menu ul {
  font-weight: bold;
}
.p-footer__menu ul li {
  margin-bottom: 1.5em;
  text-align: right;
}
.p-footer__menu ul li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-footer__menu ul li {
    text-align: left;
    margin-bottom: 0.5em;
  }
}
.p-footer__menu ul li a {
  color: var(--color-b-primary);
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.p-footer__menu ul li a:hover {
  color: var(--brown-thin);
}
.p-footer__copyright {
  color: var(--color-b-primary);
  text-align: center;
  font-size: 12px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-footer__copyright {
    text-align: left;
  }
}

/*
wordpressに表示する記事のパーツ
*/
.p-post {
  --p-font-size: 16px;
}
.p-post--topic {
  --p-font-size: 18px;
}
.p-post h2,
.p-post h3,
.p-post h4,
.p-post h5 {
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  color: var(--color-b-primary);
  margin: 2em 0 1.5em;
}
.p-post h2 {
  font-size: 26px;
  padding: 12px 0 12px 16px;
  border-left: solid 8px var(--color-b-primary);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-post h2 {
    font-size: 22px;
    padding: 6px 0 6px 16px;
    margin-bottom: 24px;
  }
}
.p-post h3 {
  font-size: 22px;
  padding: 6px 0 12px 12px;
  border-bottom: solid 1px var(--color-b-primary);
}
@media screen and (max-width: 768px) {
  .p-post h3 {
    font-size: 18px;
    padding: 6px 0 6px 8px;
  }
}
.p-post h4 {
  font-size: 20px;
  color: #8f5a2b;
}
@media screen and (max-width: 768px) {
  .p-post h4 {
    font-size: 18px;
  }
}
.p-post h5 {
  font-weight: bold;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .p-post h5 {
    font-size: 14px;
  }
}
.p-post figure {
  overflow: hidden;
  width: 100%;
  margin: 2em 0;
}
.p-post figure img {
  border-radius: 12px;
  width: 100%;
  height: auto;
}
.p-post figcaption,
.p-post .wp-caption-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 2em;
  letter-spacing: 0.005em;
  color: var(--color-b-primary);
}
.p-post p {
  color: var(--color-b-primary);
  line-height: 2em;
  letter-spacing: 0.05em;
  font-size: var(--p-font-size);
  margin: 2em 0;
}
.p-post a {
  font-size: var(--p-font-size);
  color: var(--color-b-primary);
  text-decoration: underline;
  -webkit-text-decoration-color: var(--color-b-primary);
          text-decoration-color: var(--color-b-primary);
}
.p-post ul,
.p-post ol {
  color: var(--color-b-primary);
  margin: 2em 0;
}
.p-post ul li,
.p-post ol li {
  padding-left: 2em;
  text-indent: -1.5em;
  list-style-position: inside;
}
.p-post table,
.p-post th,
.p-post td {
  border: solid 1px var(--color-b-primary);
  border-collapse: collapse;
  margin: 1.5em 0;
  color: var(--color-b-primary);
}
.p-post th,
.p-post td {
  padding: 15px;
}
.p-post dl {
  color: var(--color-b-primary);
  margin: 2em 0;
  line-height: 1.8em;
}
.p-post dl dt {
  font-weight: bold;
  margin-bottom: 0.5em;
}
.p-post dl dd {
  padding-left: 1em;
}
.p-post__voice {
  background-color: #FFF;
  padding: 20px;
  border-radius: 10px;
  color: var(--color-b-primary);
  margin: 1em 0 !important;
}
.p-post__center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .p-post__center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-post__narrowSpace {
  margin-top: 0.2em !important;
  margin-bottom: 0.2em !important;
}
.p-post__compactTable {
  border: none !important;
}
.p-post__compactTable th, .p-post__compactTable td {
  border: none !important;
  padding: 0 !important;
}
.p-post__external {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  text-decoration: none !important;
  display: inline-block;
  text-align: center;
  padding: 20px 40px;
  background: #fff;
  border-radius: 100px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.p-post__external::after {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  content: "\ea01";
  font-family: "myfont";
  font-size: 14px;
  color: var(--color-b-primary);
  margin-left: 5px;
}
.p-post__external:hover {
  color: #fff;
  background: var(--color-b-primary);
}
.p-post__external:hover::after {
  color: #fff;
}
.p-post__pdf {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  text-decoration: none !important;
  display: inline-block;
  text-align: center;
  padding: 20px 40px;
  background: #fff;
  border-radius: 100px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.p-post__pdf::after {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  content: "\ea02";
  font-family: "myfont";
  font-size: 14px;
  color: var(--color-b-primary);
  margin-left: 5px;
}
.p-post__pdf:hover {
  color: #fff;
  background: var(--color-b-primary);
}
.p-post__pdf:hover::after {
  color: #fff;
}

/*
「/src/sass/object/utility」ディレクトリ内のscssファイルを読み込みます。
[例]/src/sass/object/utility/_example.scss を読み込む場合
@forward "../../object/utility/example";
*/
/*
表示幅によって有効・無効にする改行
*/
.u-br {
  /*
  PCのみ
  */
}
.u-br__pc {
  display: none;
}
@media screen and (max-width: 960px) {
  .u-br__pc {
    display: inline;
  }
}
.u-br {
  /*
  タブレット・スマホ
  */
}
.u-br__tb {
  display: none;
}
@media screen and (max-width: 960px) {
  .u-br__tb {
    display: inline;
  }
}
.u-br__notb {
  display: none;
}
@media screen and (min-width: 960px) {
  .u-br__notb {
    display: inline;
  }
}
.u-br {
  /*
  スマホ
  */
}
.u-br__sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-br__sp {
    display: inline;
  }
}
.u-br__minsp {
  display: none;
}
@media screen and (max-width: 480px) {
  .u-br__minsp {
    display: inline;
  }
}
.u-br__nosp {
  display: inline;
}
@media screen and (max-width: 768px) {
  .u-br__nosp {
    display: none;
  }
}

/*
「/src/sass/pages」ディレクトリ内のscssファイルを読み込みます。
[例]/src/sass/pages/_example.scss を読み込む場合
@forward "../../pages/example";
*/
/*
フロントページ固有のスタイル
*/
.page-front__title h2 {
  font-weight: bold;
  font-size: 32px;
  color: var(--color-b-primary);
  line-height: 1.4em;
  margin-bottom: 5px;
}
@media screen and (max-width: 960px) {
  .page-front__title h2 {
    font-size: 27px;
  }
}
@media screen and (max-width: 768px) {
  .page-front__title h2 {
    font-size: 24px;
  }
}
.page-front__titleEn {
  font-size: 12px;
  color: var(--color-b-primary);
  font-weight: bold;
}
.page-front {
  /*
  ファーストビュー
  */
}
.page-front__fv {
  padding: 15px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .page-front__fv--full {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .page-front__fv--full .page-front__fvWrapper {
    max-width: none;
  }
}
@media screen and (max-width: 768px) {
  .page-front__fv--full .page-front__fvSlide {
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .page-front__fv--full .page-front__fvSlide img {
    border-radius: 0;
    width: 100%;
    height: auto;
  }
}
.page-front__fvWrapper {
  max-width: 1440px;
  margin: 0 auto;
}
.page-front__fvSlide {
  display: block;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-front__fvSlide {
    height: calc(90svh - 50px);
  }
}
.page-front__fvSlide img {
  vertical-align: bottom;
  border-radius: 10px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page-front__fvSlide img {
    width: auto;
    height: 100%;
  }
}
.page-front {
  /*
  リード文
  */
}
.page-front__lead {
  position: relative;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .page-front__lead {
    margin-bottom: 130px;
  }
}
.page-front__leadMain {
  position: relative;
}
.page-front__leadMainWrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  max-width: 1150px;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1280px) {
  .page-front__leadMainWrapper {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .page-front__leadMainWrapper {
    display: block;
  }
}
.page-front__leadIllust {
  width: 100%;
  max-width: 440px;
}
@media screen and (max-width: 1280px) {
  .page-front__leadIllust {
    max-width: 350px;
  }
}
@media screen and (max-width: 960px) {
  .page-front__leadIllust {
    max-width: 300px;
  }
}
@media screen and (max-width: 768px) {
  .page-front__leadIllust {
    margin: 60px auto 0;
    max-width: 300px;
  }
}
.page-front__leadIllust img {
  width: 100%;
}
.page-front__leadText {
  min-width: 500px;
}
@media screen and (max-width: 960px) {
  .page-front__leadText {
    min-width: auto;
  }
}
@media screen and (max-width: 768px) {
  .page-front__leadText {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.page-front__leadText h2 {
  color: var(--color-b-primary);
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: bold;
}
@media screen and (max-width: 960px) {
  .page-front__leadText h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .page-front__leadText h2 {
    font-size: 24px;
  }
}
.page-front__leadText p {
  color: var(--color-b-primary);
  font-size: 18px;
  font-weight: bold;
  line-height: 2em;
}
@media screen and (max-width: 960px) {
  .page-front__leadText p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .page-front__leadText p {
    font-size: 14px;
  }
}
.page-front__leadLink {
  margin-top: 60px;
}
.page-front__leadBand {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  .page-front__leadBand {
    bottom: -30px;
  }
}
@media screen and (max-width: 960px) {
  .page-front__leadBand {
    bottom: 40px;
  }
}
.page-front__leadBandWrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.page-front__leadBandList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-animation: infinity-scroll-left 30s infinite linear 0s both;
          animation: infinity-scroll-left 30s infinite linear 0s both;
}
.page-front__leadBandItem {
  width: 3445px;
  padding: 5px 70px 7px !important;
}
@media screen and (max-width: 1280px) {
  .page-front__leadBandItem {
    width: 3000px;
  }
}
@media screen and (max-width: 960px) {
  .page-front__leadBandItem {
    width: 2000px;
  }
}
.page-front__leadBandItem img {
  width: 100%;
  vertical-align: bottom;
}
.page-front__leadConnect {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: -120px auto 0;
}
.page-front__leadDeco {
  position: absolute;
  top: 180px;
}
@media screen and (max-width: 1280px) {
  .page-front__leadDeco {
    top: 115px;
  }
}
@media screen and (max-width: 960px) {
  .page-front__leadDeco {
    left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .page-front__leadDeco {
    left: 18%;
    top: 130px;
  }
}
.page-front__leadLine {
  width: 100%;
  position: relative;
  left: 120px;
  top: 95px;
  max-width: 540px;
}
@media screen and (max-width: 1280px) {
  .page-front__leadLine {
    max-width: 440px;
    left: 210px;
    top: 100px;
  }
}
@media screen and (max-width: 960px) {
  .page-front__leadLine {
    max-width: 340px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  .page-front__leadLine {
    max-width: 180px;
    top: 105px;
    left: 70%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.page-front {
  /*
  テーマ
  */
}
.page-front__theme {
  padding: 0 15px;
  position: relative;
  overflow-x: clip;
}
@media screen and (max-width: 768px) {
  .page-front__theme {
    margin-top: -60px;
    margin-bottom: 30px;
  }
}
.page-front__themeDeco {
  width: 370px;
  position: absolute;
  z-index: 2;
  top: -50px;
  right: -50px;
}
@media screen and (max-width: 1280px) {
  .page-front__themeDeco {
    width: 300px;
    top: -10px;
    right: 10px;
  }
}
@media screen and (max-width: 960px) {
  .page-front__themeDeco {
    right: -30px;
    width: 270px;
  }
}
@media screen and (max-width: 768px) {
  .page-front__themeDeco {
    width: 180px;
    top: 45px;
    right: 20px;
  }
}
.page-front__themeTitle {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .page-front__themeTitle {
    margin-bottom: 20px;
  }
}
.page-front__themeSection {
  margin: 0 auto 60px;
  max-width: 998px;
  position: -webkit-sticky;
  position: sticky;
}
@media screen and (max-width: 768px) {
  .page-front__themeSection {
    position: static;
    margin: 0 auto;
  }
}
.page-front__themeSection h3 {
  background-color: var(--color-03);
  color: var(--color-b-primary);
  width: 10em;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  padding: 7px 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.page-front__themeSection--first {
  top: 110px;
  z-index: 1;
}
.page-front__themeSection--second {
  top: 293px;
  z-index: 2;
}
@media screen and (max-width: 960px) {
  .page-front__themeSection--second {
    top: 279px;
  }
}
@media screen and (max-width: 768px) {
  .page-front__themeSection--second {
    margin-top: -60px;
  }
}
.page-front__themeSection--second h3 {
  background-color: var(--color-02);
  color: #FFF;
}
.page-front__themeSection--second .page-front__themeFolderContents {
  background-color: var(--color-02);
}
.page-front__themeSection--second .page-front__themeFolderTitleSub {
  color: #FFF;
}
.page-front__themeSection--second .page-front__themeFolderContentsText h4 {
  color: #FFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-front__themeSection--second .page-front__themeFolderContentsText p {
  color: #FFF;
}
.page-front__themeSection--third {
  padding-bottom: 60px;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .page-front__themeSection--third {
    margin-top: -60px;
  }
}
.page-front__themeSection--third h3 {
  background-color: var(--color-01);
  color: #FFF;
}
.page-front__themeSection--third .page-front__themeFolderContents {
  background-color: var(--color-01);
}
.page-front__themeSection--third .page-front__themeFolderTitleSub {
  color: #FFF;
}
.page-front__themeSection--third .page-front__themeFolderContentsText h4 {
  color: #FFF;
}
.page-front__themeSection--third .page-front__themeFolderContentsText p {
  color: #FFF;
}
.page-front__themeFolder {
  position: relative;
  z-index: 3;
  margin: 0 auto;
}
.page-front__themeFolderContents {
  background-color: var(--color-03);
  padding: 20px 20px 20px 40px;
  border-radius: 10px;
  border-top-left-radius: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page-front__themeFolderContents {
    display: block;
    padding: 15px 15px 80px 15px;
  }
}
@media screen and (max-width: 768px) {
  .page-front__themeFolderContents--third {
    padding-bottom: 25px;
  }
}
.page-front__themeFolderContentsText {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  width: calc(100% - 370px);
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .page-front__themeFolderContentsText {
    margin-bottom: 40px;
    display: block;
    width: 100%;
  }
}
.page-front__themeFolderContentsText h4 {
  font-size: 42px;
  color: var(--color-b-primary);
  margin-bottom: 20px;
  line-height: 1.4em;
  min-height: 2.5em;
}
@media screen and (max-width: 960px) {
  .page-front__themeFolderContentsText h4 {
    font-size: 38px;
  }
}
@media screen and (max-width: 768px) {
  .page-front__themeFolderContentsText h4 {
    font-size: 24px;
    min-height: auto;
  }
}
.page-front__themeFolderContentsText p {
  line-height: 1.8em;
  color: var(--color-b-primary);
}
@media screen and (max-width: 960px) {
  .page-front__themeFolderContentsText p {
    font-size: 14px;
  }
}
.page-front__themeFolderTitleSub {
  color: var(--color-b-primary);
  font-weight: bold;
  margin: 15px 0;
  font-size: 20px;
}
@media screen and (max-width: 960px) {
  .page-front__themeFolderTitleSub {
    font-size: 16px;
  }
}
.page-front__themeFolderContentsImage {
  width: 370px;
}
.page-front__themeFolderContentsImage a {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 10px;
}
.page-front__themeFolderContentsImage a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.page-front__themeFolderContentsImage a:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .page-front__themeFolderContentsImage {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .page-front__themeFolderLink {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .page-front__themeFolderLink a {
    width: 100%;
    text-align: center;
  }
}
.page-front {
  /*
  User Voice
  */
}
.page-front__voice {
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-front__voice {
    margin-bottom: 60px;
  }
}
.page-front__voice .swiper {
  overflow-y: visible;
}
.page-front__voice .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}
.page-front__voice .swiper-slide {
  height: auto;
}
.page-front__voice .swiper-slide-item {
  height: 100%;
}
.page-front__voiceDecos {
  max-width: 998px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-front__voiceDecos {
    display: none;
  }
}
.page-front__voiceTitle {
  max-width: 998px;
  padding: 0 15px;
  margin: 0 auto;
}
.page-front__voiceListItem {
  position: relative;
}
.page-front__voiceListItem::after {
  content: "";
  display: block;
  position: absolute;
  width: 23%;
  aspect-ratio: 1/1;
  background-color: #FFF;
  right: 20%;
  bottom: -13%;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.page-front__voiceListItem--1 {
  translate: 0 -50px;
}
@media screen and (max-width: 768px) {
  .page-front__voiceListItem--1 {
    translate: 0;
  }
}
.page-front__voiceListItem--0 {
  translate: 0 50px;
}
@media screen and (max-width: 768px) {
  .page-front__voiceListItem--0 {
    translate: 0;
  }
}
.page-front__voiceListWrapper {
  padding: 100px 0 200px;
  background-image: url(../img/front/voice_deco_03_2.svg);
  background-repeat: no-repeat;
  background-position: left calc(50% - 400px) bottom 10px;
}
@media screen and (max-width: 1280px) {
  .page-front__voiceListWrapper {
    background-position: left 10% bottom 10px;
  }
}
@media screen and (max-width: 960px) {
  .page-front__voiceListWrapper {
    background-size: 250px auto;
  }
}
@media screen and (max-width: 768px) {
  .page-front__voiceListWrapper {
    padding: 50px 0 180px;
    background-size: 210px;
    background-position: 20px bottom;
  }
}
.page-front .page-front__voiceListContent {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #FFF;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 2;
  text-decoration: none;
  color: inherit;
}
@media screen and (max-width: 768px) {
  .page-front .page-front__voiceListContent {
    padding: 35px;
  }
}
@media screen and (max-width: 480px) {
  .page-front .page-front__voiceListContent {
    padding: 15px;
  }
}
.page-front .page-front__voiceListContent figure {
  width: 60px;
  height: 60px;
  position: absolute;
  left: 0px;
  top: 0px;
  border-radius: 50%;
  overflow: hidden;
}
.page-front .page-front__voiceListContent figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-front .page-front__voiceListContent:hover .page-front__voiceListContentLink .c-btnLink {
  background-color: var(--color-b-primary);
  color: #FFF;
}
.page-front__voiceListContentInner {
  padding: 0 50px;
}
.page-front__voiceListContentText {
  font-size: 12px;
  color: var(--color-b-primary);
  font-weight: bold;
  margin-top: -30px;
  line-height: 1.8em;
}
.page-front__voiceListContentText p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 6;
}
.page-front__voiceListContentLink {
  text-align: center;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 30px;
}
@media screen and (max-width: 960px) {
  .page-front__voiceListContentLink {
    bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  .page-front__voiceListContentLink {
    bottom: 30px;
  }
}
.page-front__voiceListContentLink .c-btnLink {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.page-front__voiceLine01 {
  width: 165px;
  position: absolute;
  top: -90px;
  left: 48%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 1280px) {
  .page-front__voiceLine01 {
    width: 140px;
  }
}
@media screen and (max-width: 768px) {
  .page-front__voiceLine01 {
    width: 180px;
    right: 30%;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
.page-front__voiceLine02 {
  position: absolute;
  width: 70px;
  left: -80px;
  top: -40px;
}
@media screen and (max-width: 960px) {
  .page-front__voiceLine02 {
    top: 30px;
    left: 10px;
  }
}
@media screen and (max-width: 1280px) {
  .page-front__voiceLine02 {
    width: 50px;
  }
}
.page-front__voiceDeco01 {
  display: none;
}
@media screen and (max-width: 768px) {
  .page-front__voiceDeco01 {
    display: block;
    position: absolute;
    left: 90%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    top: -80px;
  }
}
.page-front__voiceDeco02 {
  position: absolute;
  left: -30px;
  top: 20px;
  width: 80px;
}
@media screen and (max-width: 960px) {
  .page-front__voiceDeco02 {
    left: 50px;
  }
}
.page-front {
  /*
  記事一覧（イベント・これまでの活動）
  */
}
.page-front__article {
  overflow-x: clip;
  overflow-y: visible;
  margin-bottom: 80px;
  padding: 0 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-front__article {
    margin-bottom: 60px;
  }
}
.page-front__article .swiper {
  overflow: visible;
}
.page-front__articleTitle {
  max-width: 998px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  .page-front__articleTitle {
    margin: 0 auto 20px;
  }
}
.page-front__articleListWrapper {
  max-width: 998px;
  margin: 0 auto;
}
.page-front {
  /*
  イベント
  */
}
.page-front__event {
  position: relative;
}
.page-front__eventLine {
  width: 610px;
  position: relative;
  left: 55%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-bottom: 10px;
}
@media screen and (max-width: 1280px) {
  .page-front__eventLine {
    width: 510px;
    left: 640px;
    bottom: 10px;
  }
}
@media screen and (max-width: 960px) {
  .page-front__eventLine {
    width: 390px;
    left: 490px;
  }
}
@media screen and (max-width: 768px) {
  .page-front__eventLine {
    width: 205px;
    position: absolute;
    left: auto;
    right: -10px;
    top: -55px;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
.page-front__eventDeco01 {
  position: absolute;
  top: -30px;
  left: 40%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 1280px) {
  .page-front__eventDeco01 {
    left: 45%;
  }
}
@media screen and (max-width: 960px) {
  .page-front__eventDeco01 {
    width: 30px;
  }
}
@media screen and (max-width: 768px) {
  .page-front__eventDeco01 {
    display: none;
  }
}
.page-front__eventDeco02 {
  display: none;
}
@media screen and (max-width: 768px) {
  .page-front__eventDeco02 {
    display: block;
    position: absolute;
    left: 72%;
    top: -110px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.page-front {
  /*
  これまでの活動
  */
}
.page-front__activity {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .page-front__activity {
    margin-bottom: 60px;
  }
}
.page-front__activityLine01 {
  display: none;
}
@media screen and (max-width: 768px) {
  .page-front__activityLine01 {
    display: block;
    position: absolute;
    top: 190px;
    left: -25px;
    width: 100px;
  }
}
.page-front__activityDeco01 {
  display: none;
  width: 44px;
}
@media screen and (max-width: 768px) {
  .page-front__activityDeco01 {
    display: block;
    position: absolute;
    bottom: -65px;
    left: 10px;
    width: 20px;
  }
}
.page-front {
  /*
  トピックス
  */
}
.page-front__topics {
  padding: 0 20px;
  margin-bottom: 110px;
  overflow-x: clip;
}
@media screen and (max-width: 768px) {
  .page-front__topics {
    margin-bottom: 60px;
  }
}
.page-front__topicsWrapper {
  max-width: 988px;
  margin: 0 auto;
  position: relative;
}
.page-front__topicsContents {
  background-color: #FFF;
  border-radius: 12px;
  border-radius: 10px;
  padding: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page-front__topicsContents {
    padding: 20px;
    display: block;
  }
}
.page-front__topicsTitle {
  width: 200px;
}
@media screen and (max-width: 768px) {
  .page-front__topicsTitle {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 20px;
  }
}
.page-front__topicsTitleLink {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .page-front__topicsTitleLink {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0;
  }
}
.page-front__topicsArticles {
  width: calc(100% - 220px);
  border-top: solid 1px #F9F4ED;
}
@media screen and (max-width: 768px) {
  .page-front__topicsArticles {
    width: 100%;
  }
}
.page-front__topicsLine01 {
  width: 200px;
  position: absolute;
  right: -20px;
  bottom: -118px;
}
@media screen and (max-width: 1280px) {
  .page-front__topicsLine01 {
    width: 120px;
    right: 50px;
  }
}
@media screen and (max-width: 960px) {
  .page-front__topicsLine01 {
    width: 100px;
  }
}
@media screen and (max-width: 768px) {
  .page-front__topicsLine01 {
    width: auto;
    right: -25px;
    bottom: -250px;
  }
}
.page-front__topicsDeco01 {
  position: absolute;
  right: -105px;
  bottom: -50px;
  width: 80px;
}
@media screen and (max-width: 1280px) {
  .page-front__topicsDeco01 {
    right: 0px;
    bottom: -150px;
    width: 60px;
  }
}
@media screen and (max-width: 960px) {
  .page-front__topicsDeco01 {
    width: 50px;
    bottom: -90px;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .page-front__topicsDeco01 {
    display: none;
  }
}
.page-front {
  /*
  参加・支援の方法
  */
}
.page-front__support {
  padding: 0 20px;
  margin-bottom: 80px;
  overflow-x: clip;
  overflow-y: visible;
}
.page-front__support h2 {
  text-align: center;
  font-size: 32px;
  color: var(--color-b-primary);
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .page-front__support h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .page-front__support h2 {
    font-size: 24px;
  }
}
.page-front__supportWrapper {
  max-width: 988px;
  margin: 0 auto 0;
  position: relative;
}
.page-front__supportBtn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 790px;
  margin: 0 auto;
  gap: 10px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: var(--color-b-primary);
  padding: 40px;
  border-radius: 12px;
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .page-front__supportBtn {
    padding: 20px;
  }
}
.page-front__supportBtn:hover {
  background-color: #FFF;
  color: var(--color-b-primary);
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.page-front__supportBtn:hover line {
  stroke: var(--color-b-primary);
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.page-front__supportBtnText h3 {
  font-size: 26px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .page-front__supportBtnText h3 {
    font-size: 22px;
  }
}
.page-front__supportBtnText p {
  line-height: 1.8em;
}
@media screen and (max-width: 768px) {
  .page-front__supportBtnText p {
    font-size: 12px;
  }
}
.page-front__supportBtnArrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page-front__supportLine01 {
  position: absolute;
  top: 210px;
  left: -140px;
}
@media screen and (max-width: 960px) {
  .page-front__supportLine01 {
    width: 55px;
    top: 165px;
    left: 129px;
  }
}
@media screen and (max-width: 768px) {
  .page-front__supportLine01 {
    width: 75px;
    top: 133px;
    left: 127px;
  }
}
.page-front__supportDeco01 {
  position: absolute;
  top: 90px;
  left: -100px;
}
@media screen and (max-width: 960px) {
  .page-front__supportDeco01 {
    top: auto;
    width: 150px;
    bottom: -95px;
    left: -25px;
  }
}

/*
「ACROS LABについて」ページ固有のスタイル
*/
.page-about__contentsInner {
  container-type: inline-size;
  container-name: about-contents;
}
.page-about__section {
  scroll-margin-top: 87px;
  padding-bottom: 67px;
  border-bottom: solid 1px var(--brown-thin);
  margin-bottom: 67px;
}
@media screen and (max-width: 768px) {
  .page-about__section {
    scroll-margin-top: 94px;
    padding-bottom: 32px;
    margin-bottom: 32px;
  }
}
.page-about__section:last-child {
  border-bottom: none;
  padding-bottom: 40px;
  margin-bottom: 0;
}
.page-about__about {
  color: var(--color-b-primary);
}
.page-about__about h2 {
  font-size: 32px;
  font-weight: 700;
  padding-bottom: 5px;
  border-bottom: solid 1px var(--brown-thin);
  margin-bottom: 28px;
}
@media screen and (max-width: 768px) {
  .page-about__about h2 {
    font-size: 24px;
  }
}
.page-about__about p {
  margin: 2em 0;
  line-height: 1.8em;
}
@media screen and (max-width: 768px) {
  .page-about__about p {
    margin: 1em 0;
  }
}
.page-about__about figure,
.page-about__about picture {
  border-radius: 12px;
  overflow: hidden;
  margin: 2em 0;
}
.page-about__about figure img,
.page-about__about picture img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}
.page-about__articleTitle {
  margin-bottom: 20px;
}
.page-about__theme {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1280px) {
  .page-about__theme {
    gap: 15px;
  }
}
@media screen and (max-width: 960px) {
  .page-about__theme {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .page-about__theme {
    gap: 10px 40px;
  }
}
.page-about__themeImage {
  width: 37%;
}
@media screen and (max-width: 1280px) {
  .page-about__themeImage {
    width: 50%;
  }
}
@media screen and (max-width: 960px) {
  .page-about__themeImage {
    width: 100%;
    margin-bottom: 20px;
  }
}
.page-about__themeImage figure,
.page-about__themeImage picture {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .page-about__themeImage figure,
  .page-about__themeImage picture {
    height: auto;
    aspect-ratio: 18/13;
  }
}
.page-about__themeImage figure img,
.page-about__themeImage picture img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-about__themeText {
  width: 63%;
  color: var(--color-b-primary);
}
@media screen and (max-width: 960px) {
  .page-about__themeText {
    width: 100%;
  }
}
.page-about__themeNumber {
  font-size: 12px;
  font-weight: 700;
  font-family: "Instrument Sans", sans-serif;
  color: var(--color-01);
  display: inline-block;
  margin-bottom: 35px;
}
@media screen and (max-width: 960px) {
  .page-about__themeNumber {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .page-about__themeNumber {
    margin-bottom: 20px;
  }
}
.page-about__themeMainTitle {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
@media screen and (max-width: 1280px) {
  .page-about__themeMainTitle {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .page-about__themeMainTitle {
    font-size: 24px;
  }
}
.page-about__themeSubTitle {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}
@media screen and (max-width: 1280px) {
  .page-about__themeSubTitle {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .page-about__themeSubTitle {
    font-size: 20px;
  }
}
.page-about__themeContent {
  font-weight: 500;
}
.page-about__themeContent p {
  margin: 1.8em 0;
  line-height: 1.8em;
}
.page-about__themeContent p:last-child {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .page-about__themeContent {
    font-size: 14px;
  }
}
@media screen and (min-width: 1060px) {
  .page-about__articleList.swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/*
記事一覧ページ（これまでの取り組み・トピックスなど）固有のスタイル
*/
.page-achieve__wrapper {
  width: 100%;
  max-width: 990px;
  margin: 0 auto;
}
.page-achieve__articleList > ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
}
@media screen and (max-width: 960px) {
  .page-achieve__articleList > ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .page-achieve__articleList > ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

/*
詳細ページ（これまでの取り組み・トピックスなど）固有のスタイル
*/
.page-article__header {
  border-bottom: solid 1px var(--brown-thin);
  padding-bottom: 25px;
  max-width: 990px;
  margin: 0 auto 25px;
}
.page-article__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.page-article__date {
  font-size: 12px;
  font-weight: 500;
  font-family: "Instrument Sans", sans-serif;
  color: var(--color-b-primary);
  padding: 10px 0;
}
.page-article__taxonomy ul li {
  margin: 0;
  padding: 0;
}
.page-article__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  color: var(--color-b-primary);
}
@media screen and (max-width: 768px) {
  .page-article__title {
    font-size: 24px;
    padding: 6px 0 6px 16px;
    margin-bottom: 0;
  }
}
.page-article__content {
  max-width: 990px;
  margin: 0 auto;
}
.page-article__backBtn {
  text-align: center;
  margin: 3em 0;
}

/*
「参加・支援の方法」ページ固有のスタイル
*/
.page-support__contentsInner {
  container-type: inline-size;
  container-name: about-contents;
}
.page-support__section {
  scroll-margin-top: 64px;
  padding-bottom: 60px;
  border-bottom: solid 1px var(--brown-thin);
  margin-bottom: 80px;
  color: var(--color-b-primary);
}
@media screen and (max-width: 768px) {
  .page-support__section {
    scroll-margin-top: 74px;
    padding-bottom: 30px;
    margin-bottom: 50px;
  }
}
.page-support__section:last-child {
  border-bottom: none;
  padding-bottom: 40px;
  margin-bottom: 0;
}
.page-support__section h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 1.5em;
  padding-bottom: 10px;
  border-bottom: solid 1px var(--brown-thin);
}
@media screen and (max-width: 768px) {
  .page-support__section h2 {
    font-size: 24px;
  }
}
.page-support__section h3 {
  font-size: 26px;
  margin: 1.5em 0 0.5em;
}
@media screen and (max-width: 768px) {
  .page-support__section h3 {
    font-size: 22px;
  }
}
.page-support__section p {
  margin: 2em 0;
}
@media screen and (max-width: 768px) {
  .page-support__section p {
    margin: 1.5em 0;
  }
}
.page-support__section p:last-child {
  margin-bottom: 0;
}
.page-support__section figure {
  margin: 2em 0;
}
.page-support__flow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.page-support__flowItem {
  padding-right: 10px;
  width: 20%;
  margin-bottom: 20px;
}
@media screen and (max-width: 1280px) {
  .page-support__flowItem {
    font-size: 12px;
  }
}
@media screen and (max-width: 960px) {
  .page-support__flowItem {
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 768px) {
  .page-support__flowItem {
    width: 100%;
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.page-support__flowItem dl {
  background-color: #FFF;
  width: 100%;
  height: 100%;
  padding: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
          clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
}
@media screen and (max-width: 768px) {
  .page-support__flowItem dl {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(50% + 10px) calc(100% - 10px), 50% 100%, calc(50% - 10px) calc(100% - 10px), 0 calc(100% - 10px));
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(50% + 10px) calc(100% - 10px), 50% 100%, calc(50% - 10px) calc(100% - 10px), 0 calc(100% - 10px));
    padding-bottom: 20px;
  }
}
.page-support__flowItem dl dt {
  font-weight: bold;
}
.page-support__flowItem:last-child {
  margin-right: 0;
}
.page-support__flowItem:last-child dl {
  -webkit-clip-path: none;
          clip-path: none;
}
@media screen and (max-width: 768px) {
  .page-support__flowItem:last-child dl {
    padding-bottom: 15px;
  }
}
.page-support__note {
  font-size: 14px;
}
.page-support__inquiry {
  background-color: #FFF;
  border-radius: 10px;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .page-support__inquiry {
    padding: 15px;
  }
}
.page-support__inquiry dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .page-support__inquiry dl {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.page-support__inquiry dl dt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8em;
  border-right: solid 1px var(--brown-thin);
  padding-right: 20px;
  margin-right: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 960px) {
  .page-support__inquiry dl dt {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .page-support__inquiry dl dt {
    width: 100%;
    border-right: none;
    border-bottom: solid 1px var(--brown-thin);
    padding-right: 0;
    margin-right: 0;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
.page-support__inquiry dl dd {
  font-weight: bold;
  font-size: 42px;
  line-height: 1em;
  font-family: "Instrument Sans", sans-serif;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 0.25em;
}
@media screen and (max-width: 960px) {
  .page-support__inquiry dl dd {
    font-size: 36px;
  }
}
@media screen and (max-width: 768px) {
  .page-support__inquiry dl dd {
    width: 100%;
  }
}
.page-support__inquiry dl dd a {
  text-decoration: none;
  color: var(--color-b-primary);
}
.page-support__inquiry dl dd small {
  display: block;
  font-weight: normal;
  font-size: 20px;
}
.page-support__pictures {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 20px;
}
@media screen and (max-width: 768px) {
  .page-support__pictures {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page-support__picture figure {
  margin: 0;
  margin-bottom: 10px;
}
.page-support__picture figure img {
  border-radius: 4px;
}
.page-support__picture h3 {
  margin: 0;
  margin-bottom: 5px;
  font-size: 18px;
}
@media screen and (max-width: 960px) {
  .page-support__picture h3 {
    font-size: 16px;
  }
}
.page-support__picture p {
  margin: 0;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .page-support__picture p {
    font-size: 14px;
  }
}
/*# sourceMappingURL=style.css.map */
