@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";
*/
/* 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%;
  display: block;
}

/* 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;
  }
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-padding-top: 100px;
}
@media screen and (max-width: 960px) {
  html {
    scroll-padding-top: 0;
  }
}

body {
  font-size: 16px;
  font-family: var(--gothic);
  background-color: var(--bg-color);
}

img {
  width: 100%;
}

ol, ul, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.6;
}

/* lityプラグイン */
.lity {
  background: rgba(0, 0, 0, 0.6);
  z-index: 99999 !important;
}

.lity-content::after {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.lity-container video {
  width: 90vw;
  height: auto;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .lity-container video {
    width: 95vw;
  }
}

:root {
  --gothic:
    "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic",
    "Meiryo", sans-serif;
  --mincho: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  --poppins:"Poppins", sans-serif;
}

:root {
  --main-color: #466bc8;
  --sub-color: #c8a346;
  --bg-color: #dde7ee;
  --middle-blue-color: #c3d7e4;
  --gray-color: #5879cd;
}

/*
「/src/sass/layout」ディレクトリ内のscssファイルを読み込みます。
[例]/src/sass/layout/_example.scss を読み込む場合
@forward "../../layout/example";
*/
/*
メニュー・コンテンツ表示エリア
*/
.l-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media screen and (max-width: 960px) {
  .l-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-main__side {
  width: 280px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-right: -280px;
}
@media screen and (max-width: 960px) {
  .l-main__side {
    width: 100%;
  }
}
.l-main__contents {
  width: calc(100% - 280px);
  margin-left: 280px;
}
@media screen and (max-width: 960px) {
  .l-main__contents {
    width: 100%;
  }
}

/* component project utilityをまとめる */
/*
「/src/sass/object/component」ディレクトリ内のscssファイルを読み込みます。
[例]/src/sass/object/component/_example.scss を読み込む場合
@forward "../../object/component/example";
*/
/*
各ページやグローバルナビゲーションにあるタイトル
*/
.c-mainTitle {
  display: inline-block;
  width: 100%;
  z-index: 2;
}
.c-mainTitle dt {
  padding: 0 10px 16px;
}
.c-mainTitle dd {
  font-size: 10px;
  line-height: 2em;
  letter-spacing: 0.19em;
  text-align: center;
}
.c-mainTitle--hero, .c-mainTitle--globalNav, .c-mainTitle--spTitle {
  max-width: 280px;
  position: absolute;
  top: 0;
  left: 0;
  padding: 25px 15px 25px 20px;
}
.c-mainTitle--hero dt > h1, .c-mainTitle--globalNav dt > h1, .c-mainTitle--spTitle dt > h1 {
  width: 100%;
  aspect-ratio: 7/2.3;
  background: var(--main-color);
}
.c-mainTitle--hero, .c-mainTitle--globalNav, .c-mainTitle--spTitle {
  color: #FFF;
  background: var(--main-color);
}
.c-mainTitle--hero dd, .c-mainTitle--globalNav dd, .c-mainTitle--spTitle dd {
  border-top: solid 1px #FFF;
  border-bottom: solid 1px #FFF;
}
@media screen and (max-width: 960px) {
  .c-mainTitle--hero, .c-mainTitle--globalNav, .c-mainTitle--spTitle {
    width: 50%;
    min-width: 170px;
    padding: 20px 12px 15px;
  }
  .c-mainTitle--hero dt, .c-mainTitle--globalNav dt, .c-mainTitle--spTitle dt {
    padding-bottom: 8px;
  }
  .c-mainTitle--hero dd, .c-mainTitle--globalNav dd, .c-mainTitle--spTitle dd {
    font-size: clamp(7px, 1.6vw, 12px);
    letter-spacing: 0.3px;
  }
}
.c-mainTitle--spTitle {
  position: static;
  display: none;
}
@media screen and (max-width: 960px) {
  .c-mainTitle--spTitle {
    display: block;
  }
}
.c-mainTitle--globalNav {
  position: static;
  padding: 0;
  margin-bottom: 30px;
}
.c-mainTitle--side {
  padding: 30px 20px 25px 20px;
}
@media screen and (max-width: 960px) {
  .c-mainTitle--side {
    display: none;
  }
}
.c-mainTitle--side {
  color: var(--main-color);
  background: var(--bg-color);
  border-top: solid 1px var(--main-color);
  border-bottom: solid 1px var(--main-color);
}
.c-mainTitle--side dd {
  border-top: solid 1px var(--main-color);
  border-bottom: solid 1px var(--main-color);
}

/*
「view more」ボタン
*/
.c-viewMore {
  display: grid;
  place-items: center;
  border: solid 1px var(--main-color);
  border-radius: 100px;
  font-family: var(--poppins);
  font-weight: 400;
  color: var(--main-color);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 26px;
  font-size: 16px;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  text-align: center;
}
.c-viewMore:hover {
  opacity: 1;
  background-color: var(--main-color);
  color: var(--bg-color);
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.c-viewMore--mini {
  padding: 5px 10px;
}
@container (max-width: 768px) {
  .c-viewMore--spSmall {
    padding: 4px 12px;
    font-size: 12px;
  }
}
@container (max-width: 768px) {
  .c-viewMore--spShrink {
    font-size: clamp(10px, 2.5vw, 14px);
    padding: 1vw 2.5vw;
  }
}
.c-viewMore--reverseColor {
  color: var(--bg-color);
  border-color: var(--bg-color);
}
.c-viewMore--reverseColor:hover {
  background-color: var(--bg-color);
  color: var(--main-color);
}
.c-viewMore--side {
  padding: 0 10px;
  font-size: 10px;
}

/*
各ページ・セクションのタイトル
ナビゲーションとページタイトル・英語のページタイトルのセット
*/
.c-sectionTitle {
  padding: 85px 40px 30px;
  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: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 5px 0;
  color: var(--main-color);
  border-bottom: solid 1px var(--main-color);
}
.c-sectionTitle--reverseColor {
  color: #FFF;
  border-color: var(--bg-color);
}
@container section-block (max-width: 768px) {
  .c-sectionTitle--front100Reason > * {
    display: block;
    width: 100%;
  }
}
@container section-block (max-width: 768px) {
  .c-sectionTitle--front100Reason span {
    display: block;
    text-align: right;
  }
}
@container section-block (max-width: 768px) {
  .c-sectionTitle--front100Reason span a {
    display: inline-block;
  }
}
@container section-block (max-width: 768px) {
  .c-sectionTitle {
    padding: 42px 24px 16px;
  }
}
.c-sectionTitle dt {
  font-size: 42px;
  font-weight: 600;
  line-height: 1em;
  letter-spacing: 0.8px;
  padding-bottom: 10px;
}
@container section-block (max-width: 1024px) {
  .c-sectionTitle dt {
    font-size: clamp(24px, 4.2vw, 42px);
  }
}
@container section-block (max-width: 768px) {
  .c-sectionTitle dt {
    font-size: clamp(24px, 7.5vw, 42px);
    letter-spacing: 0;
  }
}
@container section-block (max-width: 500px) {
  .c-sectionTitle dt {
    font-size: clamp(24px, 7vw, 30px);
    letter-spacing: 0;
  }
}
.c-sectionTitle dd {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--poppins);
  letter-spacing: 0.05em;
}
@container section-block (max-width: 1024px) {
  .c-sectionTitle dd {
    font-size: clamp(14px, 1.7vw, 18px);
  }
}
@container section-block (max-width: 768px) {
  .c-sectionTitle dd {
    font-size: clamp(14px, 1.7vw, 18px);
  }
}
.c-sectionTitle--pageIndex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
}
@container section-block (max-width: 768px) {
  .c-sectionTitle--pageIndex {
    padding: 0;
  }
}
.c-sectionTitle--pageIndex nav {
  padding-bottom: 16px;
  width: 100%;
  overflow-x: scroll;
  padding: 30px 30px 0;
  scrollbar-width: none;
}
@container section-block (max-width: 768px) {
  .c-sectionTitle--pageIndex nav {
    padding: 10px 12px 0;
  }
}
.c-sectionTitle--pageIndex nav::-webkit-scrollbar {
  display: none;
}
.c-sectionTitle--pageIndex nav ol {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-sectionTitle--pageIndex nav ol li {
  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;
  white-space: nowrap;
  color: var(--main-color);
  font-size: 16px;
}
@container section-block (max-width: 768px) {
  .c-sectionTitle--pageIndex nav ol li {
    font-size: 12px;
  }
}
.c-sectionTitle--pageIndex nav ol li a {
  color: var(--main-color);
}
.c-sectionTitle--pageIndex nav ol li::before {
  content: "/";
  padding: 0 7px;
}
.c-sectionTitle--pageIndex nav ol li:first-child::before {
  content: none;
}
.c-sectionTitle--pageIndex dl {
  padding: 30px 30px 40px;
}
@container section-block (max-width: 768px) {
  .c-sectionTitle--pageIndex dl {
    padding: 32px 24px 24px;
  }
}
.c-sectionTitle--subIndex p {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4em;
}
.c-sectionTitle--bgblue {
  background-color: var(--main-color);
  color: #FFF;
  border-bottom: solid 1px var(--bg-color);
}
.c-sectionTitle--bgblue nav ol li {
  color: #FFF;
}
.c-sectionTitle--bgblue nav ol li a {
  color: #FFF;
}

/*
横並びに配置するリスト cardと一緒に使用する
お知らせなどの記事の一覧
*/
.c-generalCardList {
  justify-items: stretch;
  display: grid;
}
.c-generalCardList--1column {
  grid-template-columns: repeat(1, 1fr);
}
.c-generalCardList--1column > li {
  border-bottom: solid 1px var(--main-color);
}
.c-generalCardList--2column {
  grid-template-columns: calc(50% + 1px) 50%;
}
@container section-block (max-width: 768px) {
  .c-generalCardList--2column {
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-generalCardList--2column > li {
  border-right: solid 1px var(--main-color);
  border-bottom: solid 1px var(--main-color);
}
.c-generalCardList--2column > li:nth-child(2n) {
  border-right: none;
}
@container section-block (max-width: 768px) {
  .c-generalCardList--2column > li {
    border-right: none;
  }
}
.c-generalCardList--3column {
  grid-template-columns: repeat(3, 1fr);
}
@container section-block (max-width: 960px) {
  .c-generalCardList--3column {
    grid-template-columns: repeat(2, 1fr);
  }
}
@container section-block (max-width: 768px) {
  .c-generalCardList--3column {
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-generalCardList--3column > li {
  border-right: solid 1px var(--main-color);
  border-bottom: solid 1px var(--main-color);
}
.c-generalCardList--3column > li:nth-child(3n) {
  border-right: none;
}
@container section-block (max-width: 960px) {
  .c-generalCardList--3column > li:nth-child(3n) {
    border-right: solid 1px var(--main-color);
  }
}
@container section-block (max-width: 960px) {
  .c-generalCardList--3column > li:nth-child(2n) {
    border-right: none;
  }
}
@container section-block (max-width: 768px) {
  .c-generalCardList--3column > li {
    border-right: none;
  }
}
.c-generalCardList--4column {
  grid-template-columns: repeat(4, 1fr);
}
.c-generalCardList--4column:nth-child(4n) {
  border-right: none;
}
@container section-block (max-width: 960px) {
  .c-generalCardList--4column {
    grid-template-columns: repeat(2, 1fr);
  }
}
@container section-block (max-width: 768px) {
  .c-generalCardList--4column {
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-generalCardList--4column > li {
  border-right: solid 1px var(--main-color);
  border-bottom: solid 1px var(--main-color);
}
.c-generalCardList--4column > li:nth-child(4n) {
  border-right: none;
}
@container section-block (max-width: 960px) {
  .c-generalCardList--4column > li:nth-child(2n) {
    border-right: none;
  }
}
@container section-block (max-width: 768px) {
  .c-generalCardList--4column > li {
    border-right: none;
  }
}
.c-generalCardList__title {
  padding: 30px 40px;
  color: var(--main-color);
  font-family: var(--poppins);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  border-bottom: solid 1px var(--main-color);
}
@container section-block (max-width: 768px) {
  .c-generalCardList__title {
    padding: 24px;
    font-size: 16px;
  }
}

/*
右から左に流れるアニメーション
/assets/js/reason_loop.js で要素の複製などを行う
*/
.c-loop__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.c-loop__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  -webkit-animation-name: infinity-scroll;
          animation-name: infinity-scroll;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.c-loop__list--reasonSlide {
  -webkit-animation-duration: 80s !important;
          animation-duration: 80s !important;
}
@container section-block (max-width: 768px) {
  .c-loop__list--reasonSlide {
    -webkit-animation-duration: 72s !important;
            animation-duration: 72s !important;
  }
}
.c-loop__list--text {
  -webkit-animation-duration: 15s !important;
          animation-duration: 15s !important;
}
@container section-block (max-width: 768px) {
  .c-loop__list--text {
    -webkit-animation-duration: 30s !important;
            animation-duration: 30s !important;
  }
}
.c-loop__item {
  white-space: nowrap;
}
.c-loop__item--reasonSlide {
  width: 9000px;
}
@container section-block (max-width: 768px) {
  .c-loop__item--reasonSlide {
    width: 5500px;
  }
}

@-webkit-keyframes infinity-scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes infinity-scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
/*
下から浮き出るアニメーション
*/
.c-fadeInAnimation {
  opacity: 0;
}
.c-fadeInAnimation__done {
  -webkit-animation-name: fadeInAnimation;
          animation-name: fadeInAnimation;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.c-fadeInAnimation__done[data-fadeinorder="1"] {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
@media screen and (max-width: 768px) {
  .c-fadeInAnimation__done[data-fadeinorder="1"] {
    -webkit-animation-delay: 0;
            animation-delay: 0;
  }
}
.c-fadeInAnimation__done[data-fadeinorder="2"] {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
@media screen and (max-width: 768px) {
  .c-fadeInAnimation__done[data-fadeinorder="2"] {
    -webkit-animation-delay: 0;
            animation-delay: 0;
  }
}
.c-fadeInAnimation__done[data-fadeinorder="3"] {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
@media screen and (max-width: 768px) {
  .c-fadeInAnimation__done[data-fadeinorder="3"] {
    -webkit-animation-delay: 0;
            animation-delay: 0;
  }
}

@-webkit-keyframes fadeInAnimation {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInAnimation {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*
サムネイルとその下にタイトルがあるリストの単体
お知らせに使用
*/
.c-newsCard a {
  width: 100%;
  padding: 40px 40px 24px;
  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;
  color: var(--main-color);
  gap: 16px;
}
@container section-block (max-width: 768px) {
  .c-newsCard a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px;
  }
}
.c-newsCard a figure {
  aspect-ratio: 7/6;
  -webkit-align-self: start;
      -ms-flex-item-align: start;
          align-self: start;
  width: 100%;
  overflow: hidden;
}
@container section-block (max-width: 768px) {
  .c-newsCard a figure {
    aspect-ratio: 1/1;
    width: 80px;
  }
}
.c-newsCard a figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-newsCard a dl {
  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;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5px;
}
@container section-block (max-width: 768px) {
  .c-newsCard a dl {
    width: calc(100% - 90px);
  }
}
.c-newsCard a dl dt {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@container section-block (max-width: 768px) {
  .c-newsCard a dl dt {
    font-size: 12px;
  }
}
.c-newsCard a dl dd {
  font-family: var(--poppins);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.c-newsCard a:hover {
  opacity: 1;
}
.c-newsCard a:hover figure img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.c-newsCard__tag {
  margin-top: 10px;
}

/*
サムネイルを横、文章を左に配置するリストの単体
100の理由、住むページに使用
*/
.c-generalCard > a, .c-generalCard > span {
  width: 100%;
  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;
  gap: 20px;
  color: var(--main-color);
}
@container section-block (max-width: 768px) {
  .c-generalCard > a, .c-generalCard > span {
    padding: 15px;
    gap: 10px;
  }
}
@container section-block (max-width: 768px) {
  .c-generalCard--mbFull > a, .c-generalCard--mbFull > span {
    display: block;
    padding: 0;
  }
}
.c-generalCard > a {
  opacity: 1;
}
.c-generalCard > a figure {
  overflow: hidden;
}
.c-generalCard > a:hover figure img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.c-generalCard__image {
  aspect-ratio: 17/12;
  width: 260px;
}
@container section-block (max-width: 768px) {
  .c-generalCard__image {
    width: 80px;
  }
}
@container section-block (max-width: 768px) {
  .c-generalCard__image--mbFull {
    width: 100%;
    padding: 20px;
  }
}
@container section-block (max-width: 768px) {
  .c-generalCard__image--mbNoPadding {
    aspect-ratio: 39/20;
    padding: 0;
    margin-bottom: 20px;
  }
}
.c-generalCard__image--square {
  aspect-ratio: 1/1;
  width: 200px;
}
@container section-block (max-width: 768px) {
  .c-generalCard__image--square {
    width: 80px;
  }
}
.c-generalCard__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-generalCard__text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  font-size: 16px;
  line-height: 1.8em;
}
@container section-block (max-width: 768px) {
  .c-generalCard__text {
    line-height: 1.4em;
    gap: 4px;
  }
}
.c-generalCard__text h2 {
  font-size: 26px;
  margin-bottom: 24px;
  line-height: 1.4em;
}
@container section-block (max-width: 768px) {
  .c-generalCard__text h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
.c-generalCard__text p {
  margin: 1em 0;
  line-height: 2;
}
@container section-block (max-width: 768px) {
  .c-generalCard__text p {
    line-height: 1.8;
  }
}
.c-generalCard__text ul {
  margin-left: 2em;
  margin: 0.2em 0 1em 1.4em;
}
.c-generalCard__text ul li {
  list-style: disc;
}
@container section-block (max-width: 768px) {
  .c-generalCard__text ul li {
    line-height: 1.8;
    margin-bottom: 4px;
  }
}
.c-generalCard__text dl {
  line-height: 1.8;
  margin-top: 24px;
}
@container section-block (max-width: 768px) {
  .c-generalCard__text dl {
    margin-top: 0;
  }
}
.c-generalCard__text dl dt {
  font-weight: bold;
}
@container section-block (max-width: 768px) {
  .c-generalCard__text--mbFull {
    padding: 0 20px 40px;
    width: 100%;
  }
}
.c-generalCard__text--noJustify {
  display: block;
}
.c-generalCard__textInfo {
  line-height: 1.8;
}
.c-generalCard__profile dl dt {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
  font-weight: 700;
  line-height: 1.5;
}
@container section-block (max-width: 768px) {
  .c-generalCard__profile dl dt {
    font-size: 16px;
    margin-bottom: 12px;
  }
}
.c-generalCard__profile dl dt.is-name {
  font-size: 18px;
}
@container section-block (max-width: 768px) {
  .c-generalCard__profile dl dt.is-name {
    font-size: 12px;
    margin-bottom: 4px;
  }
}
.c-generalCard__profile dl dd {
  font-family: var(--poppins);
  font-size: 16px;
  letter-spacing: 0.08em;
}
@container section-block (max-width: 768px) {
  .c-generalCard__profile dl dd {
    font-size: 10px;
  }
}
@container section-block (max-width: 768px) {
  .c-generalCard__profile--mbFull dl dt {
    font-size: 16px;
  }
}
.c-generalCard__link {
  margin-top: 40px;
}
@container section-block (max-width: 768px) {
  .c-generalCard__link {
    margin-top: 20px;
  }
}

/*
サムネイルを幅いっぱいに表示するリストの単体
基本データ・遊ぶページに使用
*/
.c-columnCard {
  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;
  color: var(--main-color);
}
.c-columnCard__image {
  aspect-ratio: 19/12;
}
@container section-block (max-width: 768px) {
  .c-columnCard__image {
    aspect-ratio: 39/20;
  }
}
.c-columnCard__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}
.c-columnCard__text {
  padding: 40px 40px 20px 40px;
}
@container section-block (max-width: 768px) {
  .c-columnCard__text {
    padding: 24px 24px 12px 24px;
  }
}
.c-columnCard__text dl dt {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-bottom: 10px;
}
@container section-block (max-width: 768px) {
  .c-columnCard__text dl dt {
    font-size: 20px;
    margin-bottom: 4px;
  }
}
.c-columnCard__text dl dd {
  line-height: 2;
  font-size: 16px;
}
.c-columnCard__title dl dt {
  min-height: 3em;
}
.c-columnCard__link {
  padding: 0px 40px 40px 40px;
  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: 10px;
}
@container section-block (max-width: 768px) {
  .c-columnCard__link {
    padding-bottom: 20px;
  }
}
.c-columnCard__link a {
  width: 100%;
}
.c-columnCard__number {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4em;
}
.c-columnCard__number span {
  display: inline-block;
  font-family: var(--poppins);
  font-size: 66px;
  line-height: 1em;
}

/*
記事一覧内のタグ
*/
.c-tagList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  color: var(--gray-color);
  gap: 10px;
  margin: 0 !important;
}
.c-tagList li {
  font-size: 16px;
  margin-top: 24px;
  list-style: none !important;
}
@container section-block (max-width: 768px) {
  .c-tagList li {
    font-size: 12px;
    margin-top: 0px;
  }
}

.c-loading {
  background-color: var(--main-color);
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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;
  opacity: 1;
  -webkit-transition: opacity 300ms ease, display 0s 300ms;
  transition: opacity 300ms ease, display 0s 300ms;
  transition-behavior: allow-discrete;
}
.c-loading--faded {
  opacity: 0;
  display: none;
}
.c-loading__dots {
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-loading__dot {
  width: 15px;
  height: 15px;
  margin: 0 5px;
  background-color: #FFF;
  border-radius: 50%;
  -webkit-animation: loading-dot-pulse 1.5s ease-in-out infinite;
          animation: loading-dot-pulse 1.5s ease-in-out infinite;
}
.c-loading__dot:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.c-loading__dot:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.c-loading__dot:nth-child(3) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.c-loading__illust {
  max-width: 160px;
  margin: 0 auto;
}
.c-loading__texts {
  font-family: var(--poppins);
  text-align: center;
  font-size: 60px;
  color: #FFF;
}
.c-loading__texts span {
  opacity: 0;
  -webkit-animation: loading-dots 1.6s infinite;
          animation: loading-dots 1.6s infinite;
}
.c-loading__texts span:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.c-loading__texts span:nth-child(2) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.c-loading__texts span:nth-child(3) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

@-webkit-keyframes loading-dots {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes loading-dots {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes loading-periodo-1 {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes loading-periodo-1 {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes loading-periodo-2 {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes loading-periodo-2 {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes loading-periodo-3 {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes loading-periodo-3 {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes loading-dot-pulse {
  0%, 100% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes loading-dot-pulse {
  0%, 100% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
/*
「/src/sass/object/project」ディレクトリ内のscssファイルを読み込みます。
[例]/src/sass/object/project/_example.scss を読み込む場合
@forward "../../object/project/example";
*/
/*
フッター
*/
.p-footer {
  background: var(--main-color);
  color: #fff;
  container-name: footer;
  container-type: inline-size;
}
@media screen and (max-width: 960px) {
  .p-footer {
    padding-bottom: 70px;
  }
}
.p-footer a {
  color: #fff;
}
.p-footer__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@container footer (max-width: 768px) {
  .p-footer__content {
    display: block;
  }
}
.p-footer__image {
  width: 50%;
  max-height: 466px;
  position: relative;
}
@container footer (max-width: 768px) {
  .p-footer__image {
    width: 100%;
    height: 200px;
  }
}
.p-footer__image figure {
  height: 100%;
}
.p-footer__image figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-footer__imageText {
  position: absolute;
  left: 30px;
  bottom: 30px;
  width: 210px;
}
@container footer (max-width: 768px) {
  .p-footer__imageText {
    width: 150px;
    left: 20px;
    bottom: 20px;
  }
}
.p-footer__links {
  width: 50%;
  padding: 40px;
  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: 32px;
}
@container footer (max-width: 960px) {
  .p-footer__links {
    padding: 25px;
  }
}
@container footer (max-width: 768px) {
  .p-footer__links {
    padding: 60px 24px 32px;
    width: 100%;
  }
}
.p-footer__linkArea {
  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: 8px;
}
@container footer (max-width: 768px) {
  .p-footer__linkArea {
    margin-bottom: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-footer__linkArea--top {
  gap: 30px 8px;
}
@container footer (max-width: 768px) {
  .p-footer__linkArea--top {
    gap: 24px 8px;
  }
}
.p-footer__pageLink {
  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: 32px;
}
.p-footer__pageLink dt {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1em;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-bottom: 2px;
}
.p-footer__pageLink dd {
  font-size: 12px;
}
.p-footer__pageLink dd > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.p-footer__pageLink > li > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5px;
  gap: 12px;
}
.p-footer__pageLink > li > ul > li {
  font-size: 12px;
}
.p-footer__pageLink > li > ul > li a {
  color: var(--bg-color);
}
.p-footer__externalLink {
  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: 6px;
  text-align: right;
  font-size: 12px;
}
.p-footer__externalLink a {
  color: var(--bg-color);
}
@container footer (max-width: 768px) {
  .p-footer__externalLink {
    text-align: left;
    margin-bottom: 40px;
    gap: 8px;
    font-size: 12px;
    margin-bottom: 12px;
  }
}
.p-footer__snsLink {
  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;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 12px;
}
.p-footer__snsLink figure {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
}
.p-footer__copyright {
  color: var(--bg-color);
  font-size: 12px;
  font-weight: 400;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@container footer (max-width: 768px) {
  .p-footer__copyright {
    display: block;
  }
}

/*
ヘッダー
*/
.p-header {
  position: fixed;
  top: 0;
  right: 0;
  width: calc(100% - 280px);
  z-index: 9999;
  background-color: #dde7ee;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 960px) {
  .p-header {
    width: auto;
  }
}
.p-header__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.p-header__list {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-top: solid 1px var(--main-color);
  border-bottom: solid 1px var(--main-color);
  border-left: solid 1px var(--main-color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 960px) {
  .p-header__list {
    display: none;
  }
}
.p-header__list > li {
  position: relative;
  height: 100%;
  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__list > li > a {
  font-size: 14px;
  font-weight: 700;
  color: var(--main-color);
  position: relative;
}
.p-header__list > li > a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--main-color);
  bottom: -5px;
  left: 0;
  visibility: hidden;
}
.p-header__list > li > ul {
  position: absolute;
  top: 4.8em;
  left: 0;
  width: 12em;
  border: solid 1px var(--main-color);
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s, display 0.3s allow-discrete;
  transition: opacity 0.3s, display 0.3s allow-discrete;
}
.p-header__list > li > ul > li {
  border-bottom: solid 1px var(--main-color);
}
.p-header__list > li > ul > li:last-child {
  border-bottom: none;
}
.p-header__list > li > ul > li > a {
  display: block;
  background-color: #FFF;
  color: var(--main-color);
  padding: 10px;
  font-size: 14px;
  font-weight: bold;
}
.p-header__list > li > ul > li > a:hover {
  opacity: 1;
  background-color: var(--bg-color);
}
.p-header__list > li:hover > a {
  opacity: 1;
}
.p-header__list > li:hover > a::after {
  visibility: visible;
}
.p-header__list > li:hover > ul {
  display: block;
  opacity: 1;
}
@starting-style {
  .p-header__list > li:hover > ul {
    opacity: 0;
  }
}
.p-header__main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.p-header__main-button a,
.p-header__main-button button {
  width: 100px;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  background: var(--main-color);
  color: #FFF;
  border: solid 1px var(--main-color);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px;
  border-radius: 0;
  cursor: pointer;
}
.p-header__main-button a:hover,
.p-header__main-button button:hover {
  opacity: 1;
}
@media screen and (max-width: 960px) {
  .p-header__main-button a,
  .p-header__main-button button {
    width: 80px;
    font-size: 10.5px;
  }
}
@media screen and (max-width: 768px) {
  .p-header__main-button a,
  .p-header__main-button button {
    width: 64px;
    font-size: 10.5px;
  }
}
.p-header__main-button--contact a {
  background: var(--bg-color);
  color: var(--main-color);
}
.p-header__main-button--contact a:hover {
  background: var(--main-color);
  color: var(--bg-color);
}
.p-header__main-button--active button {
  border-bottom: solid 1px #FFF;
}
@media screen and (max-width: 960px) {
  .p-header__main-button--active button {
    border-bottom: solid 1px var(--main-color);
  }
}
.p-header--front {
  background-color: rgba(221, 231, 238, 0);
}
.p-header--front .p-header__list {
  border-bottom: none;
  border-top: none;
  border-left: none;
}
.p-header--front .p-header__list > li > a {
  color: #FFF;
}

/*
左側のメニュー
*/
.p-sideArea {
  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;
  border-left: solid 1px var(--main-color);
}
@media screen and (max-width: 960px) {
  .p-sideArea {
    position: static;
    border: none;
  }
}
.p-sideArea--sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  overflow-y: visible;
}
.p-sideArea--sticky::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 960px) {
  .p-sideArea--sticky {
    height: auto;
    position: static;
  }
}
.p-sideArea__event {
  padding: 20px 20px;
  border-bottom: solid 1px var(--main-color);
}
@media screen and (max-width: 960px) {
  .p-sideArea__event {
    padding: 24px 20px;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    display: none;
    border-bottom: none;
  }
}
@media screen and (max-width: 960px) {
  .p-sideArea__event--front {
    display: block;
  }
}
.p-sideArea__eventTitle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 12px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .p-sideArea__eventTitle {
    padding-bottom: 16px;
    border-bottom: solid 1px var(--main-color);
  }
}
.p-sideArea__eventTitle p {
  color: var(--main-color);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.p-sideArea__eventList {
  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: 12px;
}
.p-sideArea__eventList > li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.p-sideArea__eventList > li figure {
  width: 60px;
  height: 60px;
}
.p-sideArea__eventList > li dl {
  width: calc(100% - 68px);
}
.p-sideArea__eventList > li dt {
  font-size: 14px;
  margin-top: 2px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #000;
}
@media screen and (max-width: 960px) {
  .p-sideArea__eventList > li dt {
    font-size: 14px;
  }
}
.p-sideArea__eventList > li dd {
  font-size: 12px;
  margin-bottom: 2px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--main-color);
}
@media screen and (max-width: 960px) {
  .p-sideArea__eventList > li dd {
    font-size: 12px;
  }
}
.p-sideArea__links {
  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(--bg-color);
}
@media screen and (max-width: 960px) {
  .p-sideArea__links {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
    z-index: 9;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
  }
}
.p-sideArea__linksTitle {
  padding: 12px 20px 12px;
  border-bottom: solid 1px var(--main-color);
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 960px) {
  .p-sideArea__linksTitle {
    padding: 0;
  }
}
.p-sideArea__linksTitle p {
  padding: 6px 16px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.28em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #fff;
  background: var(--main-color);
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-sideArea__linksTitle p {
    display: none;
  }
}
.p-sideArea__linksTitle p::before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 22px;
  display: inline-block;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
  width: 18px;
  height: 8px;
  background: var(--main-color);
}
@media screen and (max-width: 960px) {
  .p-sideArea__linksTitle p::before {
    content: none;
  }
}
.p-sideArea__linksTitleDeco {
  position: absolute;
  bottom: -5px;
  right: 15px;
  z-index: 10;
  width: 52px;
  height: 80px;
}
.p-sideArea__linksTitleDeco img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-sideArea__linksList {
  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;
}
@media screen and (max-width: 960px) {
  .p-sideArea__linksList {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.p-sideArea__linksList > li {
  border-bottom: solid 1px var(--main-color);
}
@media screen and (max-width: 960px) {
  .p-sideArea__linksList > li {
    width: 25%;
    border-right: solid 1px var(--main-color);
  }
  .p-sideArea__linksList > li:nth-child(4) {
    border-right: none;
  }
}
.p-sideArea__linksList > li a {
  padding: 12px 20px;
  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;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--main-color);
}
@media screen and (max-width: 960px) {
  .p-sideArea__linksList > li a {
    padding: 8px 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 12px;
    gap: 5px;
  }
}
.p-sideArea__linksList > li a figure,
.p-sideArea__linksList > li a div {
  width: 28px;
  height: 32px;
  display: grid;
  place-items: center;
  background-color: var(--main-color);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media screen and (max-width: 960px) {
  .p-sideArea__linksList > li a figure,
  .p-sideArea__linksList > li a div {
    width: 24px;
  }
}
.p-sideArea__linksList > li a:hover {
  opacity: 1;
  background-color: var(--main-color);
  color: var(--bg-color);
}
.p-sideArea__linksList > li a:hover div {
  background-color: var(--bg-color);
}
.p-sideArea__linksIcon--live {
  -webkit-mask-image: url(../img/common/sideicon-live.svg);
          mask-image: url(../img/common/sideicon-live.svg);
}
.p-sideArea__linksIcon--raising {
  -webkit-mask-image: url(../img/common/sideicon-raising.svg);
          mask-image: url(../img/common/sideicon-raising.svg);
}
.p-sideArea__linksIcon--work {
  -webkit-mask-image: url(../img/common/sideicon-work.svg);
          mask-image: url(../img/common/sideicon-work.svg);
}
.p-sideArea__linksIcon--enjoy {
  -webkit-mask-image: url(../img/common/sideicon-enjoy.svg);
          mask-image: url(../img/common/sideicon-enjoy.svg);
}

/*
ナビゲーションからフッターまでのコンテンツエリア
*/
.p-mainArea {
  margin-top: 100px;
  border-left: solid 1px var(--main-color);
}
@media screen and (max-width: 960px) {
  .p-mainArea {
    margin-top: 0;
    margin-left: 0;
    border-left: none;
  }
}
.p-mainArea--top {
  border-top: solid 1px var(--main-color);
  margin-top: 0;
}
.p-mainArea__spTitle--bgblue {
  background-color: var(--main-color);
}

/*
フロントページ ファーストビュー
*/
.p-heroArea {
  background: var(--main-color);
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
}
@media screen and (max-width: 960px) {
  .p-heroArea {
    height: calc(100vh - 70px);
    height: calc(100svh - 70px);
  }
}
.p-heroArea__main {
  height: 100%;
  position: relative;
  border: solid 12px var(--main-color);
}
.p-heroArea__main picture {
  width: 100%;
  height: 100%;
}
.p-heroArea__main picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-heroArea__title {
  position: absolute;
  bottom: 8%;
  left: 4%;
  z-index: 5;
  width: 36%;
}
@media screen and (max-width: 768px) {
  .p-heroArea__title {
    width: 90%;
    max-width: 325px;
  }
}
.p-heroArea__video {
  position: relative;
  width: 100%;
  height: 100%;
}
.p-heroArea__video::before {
  content: "";
  background-color: #000;
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.p-heroArea__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}

/*
フロントページのコンテンツ
*/
.p-top__layout--pc {
  display: block;
}
@container section-block (max-width: 768px) {
  .p-top__layout--pc {
    display: none;
  }
}
.p-top__layout--sp {
  display: none;
}
@container section-block (max-width: 768px) {
  .p-top__layout--sp {
    display: block;
  }
}
.p-top__about {
  padding: 40px;
  border-bottom: solid 1px var(--main-color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 40px;
  border-left: none;
  border-right: none;
}
@container section-block (max-width: 768px) {
  .p-top__about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
    gap: 24px;
  }
  .p-top__about figure,
  .p-top__about picture {
    max-width: none;
  }
}
.p-top__aboutImage {
  max-width: 385px;
}
@container section-block (max-width: 768px) {
  .p-top__aboutImage {
    max-width: none;
  }
}
.p-top__aboutImagePC {
  display: inline;
}
@container section-block (max-width: 768px) {
  .p-top__aboutImagePC {
    display: none;
  }
}
.p-top__aboutImageSP {
  display: none;
}
@container section-block (max-width: 768px) {
  .p-top__aboutImageSP {
    display: inline;
  }
}
.p-top__aboutText {
  padding-bottom: 24px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.p-top__aboutText span {
  display: inline-block;
}
.p-top__aboutText {
  font-size: 16px;
  line-height: 2.5em;
  letter-spacing: 0.05em;
  color: var(--main-color);
  font-weight: 500;
}
.p-top__aboutText dt {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}
@container section-block (max-width: 768px) {
  .p-top__aboutText dt {
    font-size: 16px;
    margin-bottom: 12px;
  }
}
@container section-block (max-width: 768px) {
  .p-top__aboutText dd {
    font-size: 14px;
    line-height: 2em;
  }
}
.p-top figure,
.p-top picture {
  max-width: 385px;
  width: 100%;
  height: 100%;
}
.p-top figure img,
.p-top picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top__card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
  border-bottom: solid 1px var(--main-color);
}
.p-top__card a {
  color: var(--main-color);
}
.p-top__card a dl {
  height: 100%;
  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;
}
.p-top__card a dt {
  padding: 20px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-right: solid 1px var(--main-color);
  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;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@container section-block (max-width: 768px) {
  .p-top__card a dt {
    border-right: none;
    padding: 12px;
    font-size: 14px;
  }
}
.p-top__card a dt span {
  display: inline-block;
}
.p-top__card a dd {
  height: 100%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-height: 0;
}
.p-top__card a dd figure {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-top__card a dd figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top__card a:hover {
  opacity: 1;
}
.p-top__card a:hover dd figure img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.p-top__card--movie dd {
  position: relative;
}
.p-top__card--movie dd::before {
  content: "";
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-block;
  width: clamp(64px, 17%, 100px);
  height: auto;
  aspect-ratio: 1/1;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%22100%22%20height%3D%22100%22%20viewBox%3D%220%200%20100%20100%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ccircle%20cx%3D%2250%22%20cy%3D%2250%22%20r%3D%2250%22%20fill%3D%22%23456AC8%22%2F%3E%3Cpath%20d%3D%22M73.7778%2047.8855C75.4074%2048.8253%2075.4074%2051.1747%2073.7778%2052.1145L34.6667%2074.6692C33.037%2075.609%2031%2074.4343%2031%2072.5547V27.4453C31%2025.5657%2033.037%2024.391%2034.6667%2025.3308L73.7778%2047.8855Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.p-top__cardList {
  display: grid;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.p-top__cardList--2column {
  grid-template-columns: repeat(2, 1fr);
}
@container section-block (max-width: 768px) {
  .p-top__cardList--2column {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-top__cardList--2column > *:nth-child(2n) a dt {
  border-right: none;
}
.p-top__cardList--4column {
  grid-template-columns: repeat(4, 1fr);
}
@container section-block (max-width: 960px) {
  .p-top__cardList--4column {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-top__cardList--4column > *:nth-child(4n) a dt {
  border-right: none;
}
@container section-block (max-width: 768px) {
  .p-top__cardList--sp-row a dl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .p-top__cardList--sp-row a dt {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .p-top__cardList--sp-row a dd {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    width: clamp(80px, 20%, 120px);
    aspect-ratio: 1/1;
  }
}

/*
タイトル下のリード文
*/
.p-archiveIndex {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  border-bottom: solid 1px var(--main-color);
  position: relative;
}
@container section-block (max-width: 768px) {
  .p-archiveIndex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-archiveIndex:has(.p-archiveIndex__deco) {
  padding-right: 110px;
}
@container section-block (max-width: 768px) {
  .p-archiveIndex:has(.p-archiveIndex__deco) {
    padding-right: 40px;
  }
}
.p-archiveIndex__text {
  width: 54%;
  padding: 40px;
  color: var(--main-color);
}
@container section-block (max-width: 768px) {
  .p-archiveIndex__text {
    padding: 20px;
  }
}
.p-archiveIndex__text h1 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4em;
  margin-bottom: 30px;
}
@container section-block (max-width: 768px) {
  .p-archiveIndex__text h1 {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
.p-archiveIndex__text h1 span {
  display: inline-block;
}
.p-archiveIndex__text p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2em;
}
.p-archiveIndex__text p span {
  display: inline-block;
}
@container section-block (max-width: 768px) {
  .p-archiveIndex__text p {
    font-size: 14px;
  }
}
@container section-block (max-width: 768px) {
  .p-archiveIndex__text {
    width: 100%;
  }
}
.p-archiveIndex__image {
  width: 46%;
  position: relative;
}
@container section-block (max-width: 768px) {
  .p-archiveIndex__image {
    width: 100%;
    max-height: 320px;
  }
}
.p-archiveIndex__image figure {
  width: 100%;
  height: 100%;
}
.p-archiveIndex__image figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@container section-block (max-width: 768px) {
  .p-archiveIndex__image figure img {
    max-height: 320px;
    -o-object-position: bottom;
       object-position: bottom;
  }
}
.p-archiveIndex__imageDeco {
  position: absolute;
  z-index: 2;
  width: 250px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@container section-block (max-width: 1280px) {
  .p-archiveIndex__imageDeco {
    width: 180px;
  }
}
@container section-block (max-width: 1024px) {
  .p-archiveIndex__imageDeco {
    left: 60%;
  }
}
@container section-block (max-width: 768px) {
  .p-archiveIndex__imageDeco {
    width: 150px;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    left: auto;
    right: 5px;
    top: 35%;
  }
}
@container section-block (max-width: 768px) {
  .p-archiveIndex__imageDecoPC {
    display: none;
  }
}
.p-archiveIndex__imageDecoSP {
  display: none;
}
@container section-block (max-width: 768px) {
  .p-archiveIndex__imageDecoSP {
    display: inline-block;
  }
}

/*
タイトル下のリード文
基本データページ用
*/
.p-archiveIndexData {
  color: var(--main-color);
  width: 100%;
}
.p-archiveIndexData__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: solid 1px var(--main-color);
}
@container section-block (max-width: 960px) {
  .p-archiveIndexData__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-archiveIndexData__left {
  width: 55%;
  padding: 50px 20px 50px 40px;
  border-right: solid 1px var(--main-color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@container section-block (max-width: 960px) {
  .p-archiveIndexData__left {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    border-right: none;
    border-bottom: solid 1px var(--main-color);
    padding: 24px;
  }
}
.p-archiveIndexData__left dl {
  width: 55%;
  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: 22px;
}
@container section-block (max-width: 768px) {
  .p-archiveIndexData__left dl {
    width: 100%;
    gap: 0px;
  }
}
.p-archiveIndexData__left dl dt {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@container section-block (max-width: 768px) {
  .p-archiveIndexData__left dl dt {
    font-size: 24px;
  }
}
.p-archiveIndexData__left dl dt span {
  background: var(--main-color);
  color: #FFF;
  margin-right: 2px;
}
.p-archiveIndexData__left dl dd:nth-child(2) {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 2em;
}
.p-archiveIndexData__left dl dd:nth-child(2) span {
  font-weight: 700;
  font-size: 26px;
}
.p-archiveIndexData__left dl dd:nth-child(3) {
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2em;
}
@container section-block (max-width: 768px) {
  .p-archiveIndexData__left dl dd:nth-child(3) {
    line-height: 1.8em;
  }
}
.p-archiveIndexData__left dl dd:nth-child(3) span {
  display: inline-block;
}
@container section-block (max-width: 768px) {
  .p-archiveIndexData__left dl dd:nth-child(3) span {
    font-size: 14px;
  }
}
.p-archiveIndexData__imagePC {
  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;
  position: relative;
  width: 45%;
}
@container section-block (max-width: 500px) {
  .p-archiveIndexData__imagePC {
    display: none;
  }
}
.p-archiveIndexData__imagePC figure {
  max-width: 330px;
}
.p-archiveIndexData__imageSP {
  display: none;
}
@container section-block (max-width: 500px) {
  .p-archiveIndexData__imageSP {
    display: block;
  }
}
.p-archiveIndexData__imageSP figure {
  max-width: 180px;
  margin: 16px auto;
}
.p-archiveIndexData__right {
  width: 45%;
  padding: 40px;
  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: 24px;
}
@container section-block (max-width: 960px) {
  .p-archiveIndexData__right {
    width: 100%;
  }
}
@container section-block (max-width: 768px) {
  .p-archiveIndexData__right {
    padding: 24px;
  }
}
.p-archiveIndexData__right dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px 24px;
}
@container section-block (max-width: 500px) {
  .p-archiveIndexData__right dl {
    gap: 12px;
  }
}
.p-archiveIndexData__right dt {
  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;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4em;
}
@container section-block (max-width: 768px) {
  .p-archiveIndexData__right dt {
    font-size: 14px;
  }
}
.p-archiveIndexData__right dd {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2em;
}
.p-archiveIndexData__right dd span {
  display: inline-block;
}
@container section-block (max-width: 768px) {
  .p-archiveIndexData__right dd {
    font-size: 14px;
  }
}
.p-archiveIndexData__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-archiveIndexData__title {
  padding-bottom: 24px;
  border-bottom: solid 1px var(--main-color);
  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;
}
.p-archiveIndexData__title p {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4em;
}

/*
「遊ぶ」「お知らせ」ページのタブ
*/
.p-tab {
  background: var(--main-color);
  padding-bottom: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.p-tab--news {
  padding: 40px 30px 30px;
  background: var(--bg-color);
  border-bottom: solid 1px var(--main-color);
  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-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px;
}
@container section-block (max-width: 768px) {
  .p-tab--news {
    padding: 16px 24px;
    gap: 12px;
  }
}
.p-tab__tab-item button {
  border: none;
  background: none;
  padding: 0;
  border-radius: 0;
  cursor: pointer;
  gap: 0;
  font-size: 17px;
}
@container section-block (max-width: 960px) {
  .p-tab__tab-item button {
    font-size: 14px;
  }
}
@container section-block (max-width: 768px) {
  .p-tab__tab-item button {
    font-size: 10px;
  }
}
.p-tab__tab-item--enjoy {
  width: 20%;
  border-right: solid 1px var(--main-color);
}
.p-tab__tab-item--enjoy:last-child {
  border-right: none;
}
.p-tab__tab-item--enjoy button {
  width: 100%;
  height: 100%;
  padding: 30px 10px;
  color: var(--main-color);
  background: var(--bg-color);
  font-weight: 700;
  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-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@container section-block (max-width: 768px) {
  .p-tab__tab-item--enjoy button {
    padding: 15px 0px;
  }
}
.p-tab__tab-item--enjoy.current-tab {
  border-top: solid 1px var(--bg-color);
}
.p-tab__tab-item--enjoy.current-tab button {
  background: var(--main-color);
  color: var(--bg-color);
}
.p-tab__tab-item--enjoy span {
  display: inline-block;
}
.p-tab__tab-item--news {
  border-bottom: solid 2px var(--bg-color);
}
.p-tab__tab-item--news button {
  color: var(--main-color);
  letter-spacing: 0.8px;
  padding-bottom: 8px;
}
@container section-block (max-width: 960px) {
  .p-tab__tab-item--news button {
    font-size: 16px;
  }
}
@container section-block (max-width: 768px) {
  .p-tab__tab-item--news button {
    font-size: 16px;
  }
}
.p-tab__tab-item--news.current-tab {
  border-bottom: solid 2px var(--main-color);
}
.p-tab__content {
  display: none;
}
.p-tab__content.current-content {
  display: block;
}

/*
上部メニューから下のコンテンツエリア
コンテナクエリを定義
*/
.p-sectionBlock {
  container-type: inline-size;
  container-name: section-block;
}
.p-sectionBlock--reverseColor {
  background: var(--main-color);
}

/*
ページネーション用 ページ数リスト
*/
.p-pager {
  padding: 30px;
}
.p-pager__list,
.p-pager .page-numbers {
  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;
  font-size: 24px;
  gap: 0.3em;
  font-weight: 700;
  font-family: var(--poppins);
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-pager__list a,
.p-pager__list span,
.p-pager .page-numbers a,
.p-pager .page-numbers span {
  color: var(--main-color);
}

/*
数字で見る大野城ページ
データ画像の配置など
*/
.p-number__lead {
  color: var(--main-color);
  font-size: 18px;
  padding: 40px;
}
@container section-block (max-width: 960px) {
  .p-number__lead {
    padding: 24px;
  }
}
@container section-block (max-width: 768px) {
  .p-number__lead {
    padding: 20px;
    font-size: 14px;
  }
}
.p-number__list {
  background: var(--main-color);
  display: grid;
  gap: 10px;
  border: solid var(--main-color) 10px;
  margin-bottom: 20px;
}
@container section-block (max-width: 768px) {
  .p-number__list {
    display: block;
  }
}
.p-number__list:last-child {
  margin-bottom: 0;
}
.p-number__list--about {
  grid-template-columns: calc((100svw - 280px - 50px) / 4) calc((100svw - 280px - 20px) / 3) 1fr;
  grid-template-rows: repeat(2, calc((100svw - 280px - 20px) / 3 / 2));
}
@media screen and (max-width: 960px) {
  .p-number__list--about {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
.p-number__list--raising {
  grid-template-columns: repeat(4, calc((100svw - 280px - 50px) / 4));
  grid-template-rows: repeat(3, calc((100svw - 280px - 50px) / 4));
}
@media screen and (max-width: 960px) {
  .p-number__list--raising {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
.p-number__list--cnv {
  grid-template-columns: repeat(4, calc((100svw - 280px - 50px) / 4));
  grid-template-rows: repeat(2, calc((100svw - 280px - 50px) / 4));
}
@media screen and (max-width: 960px) {
  .p-number__list--cnv {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
.p-number__item {
  background: var(--bg-color);
  padding: 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;
  text-align: center;
}
@container section-block (max-width: 768px) {
  .p-number__item {
    margin-bottom: 10px;
  }
}
.p-number__item figure {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
@container section-block (max-width: 768px) {
  .p-number__item figure {
    max-width: 350px;
    margin: 0 auto;
  }
}
.p-number__item figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-number__item--title {
  color: #FFF;
  background: var(--main-color);
  position: relative;
  z-index: 3;
}
@container section-block (max-width: 768px) {
  .p-number__item--title {
    padding: 10px !important;
  }
}
.p-number__item--title p {
  font-size: 32px;
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: left;
}
@container section-block (max-width: 960px) {
  .p-number__item--title p {
    font-size: 26px;
  }
}
@container section-block (max-width: 768px) {
  .p-number__item--title p {
    font-size: 24px;
  }
}
@container section-block (max-width: 768px) {
  .p-number__item--title p br {
    display: none;
  }
}
.p-number__item--aboutTitle {
  grid-row: 1/3;
  grid-column: 1/2;
}
.p-number__item--aboutRanking {
  grid-row: 1/3;
  grid-column: 2/3;
  padding: 30px;
}
.p-number__item--aboutHome {
  grid-row: 1/2;
  grid-column: 3/4;
  padding: 25px;
}
.p-number__item--aboutBirth {
  grid-row: 2/3;
  grid-column: 3/4;
  padding: 25px;
}
.p-number__item--aboutBirth figure {
  max-width: 425px;
}
.p-number__item--raisingChild {
  grid-row: 2/4;
  grid-column: 4/5;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.p-number__item--raisingChild figure {
  max-height: 650px;
}
@container section-block (max-width: 768px) {
  .p-number__item--raisingChild figure {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-height: none;
  }
}
.p-number__item--raisingMedical {
  grid-column: 2/4;
}
.p-number__item--raisngEdu {
  grid-column: 1/4;
}
.p-number__item--raisngEdu figure {
  margin: 0 0;
  max-width: 960px;
}
.p-number__item--cnvAccess {
  grid-column: 2/5;
}
.p-number__itemPC {
  display: block;
}
@container section-block (max-width: 768px) {
  .p-number__itemPC {
    display: none;
  }
}
.p-number__itemSP {
  display: none;
}
@container section-block (max-width: 768px) {
  .p-number__itemSP {
    display: block;
  }
}
.p-number__titleIllust {
  position: absolute;
  height: auto !important;
  width: auto !important;
}
.p-number__titleIllust--illust01 {
  width: 120px !important;
  left: 5px;
  bottom: 5px;
}
@container section-block (max-width: 960px) {
  .p-number__titleIllust--illust01 {
    width: 70px !important;
    left: -5px;
    bottom: -5px;
  }
}
@container section-block (max-width: 768px) {
  .p-number__titleIllust--illust01 {
    left: auto;
    right: -5px;
  }
}
.p-number__titleIllust--illust02 {
  width: 115px !important;
  left: 2px;
  bottom: -20px;
}
@container section-block (max-width: 960px) {
  .p-number__titleIllust--illust02 {
    width: 70px !important;
  }
}
@container section-block (max-width: 768px) {
  .p-number__titleIllust--illust02 {
    width: 100px !important;
  }
}
.p-number__titleIllust--illust03 {
  width: 100px !important;
  right: 5px;
  bottom: -20px;
}
@container section-block (max-width: 960px) {
  .p-number__titleIllust--illust03 {
    width: 70px !important;
  }
}
@container section-block (max-width: 768px) {
  .p-number__titleIllust--illust03 {
    width: 90px !important;
  }
}
.p-number__titleIllust--illust04 {
  width: 100px !important;
  right: -15px;
  bottom: -20px;
}
@container section-block (max-width: 960px) {
  .p-number__titleIllust--illust04 {
    width: 70px !important;
  }
}
@container section-block (max-width: 768px) {
  .p-number__titleIllust--illust04 {
    width: 70px !important;
    right: auto;
    left: 5px;
  }
}

/*
お問い合わせページ
フォーム、確認画面など
*/
.p-contact {
  padding: 0 15px;
}
.p-contact__wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 0 70px;
}
.p-contact__form {
  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: 32px;
  margin-bottom: 72px;
}
.p-contact__formItem {
  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: 16px;
  font-size: 14px;
  color: var(--main-color);
}
.p-contact__formItem input,
.p-contact__formItem textarea {
  padding: 30px;
  background: var(--bg-color);
  border: solid 1px var(--main-color);
  border-radius: 5px;
}
.p-contact__formItem--pulldown {
  position: relative;
}
.p-contact__formItem--pulldown::after {
  content: "▽";
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-contact__formItem--pulldown select {
  padding: 30px;
  color: var(--main-color);
  background: var(--bg-color);
  border: solid 1px var(--main-color);
  border-radius: 5px;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.p-contact__formItem--area textarea {
  min-height: 210px;
}
.p-contact__formButton {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -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;
}
.p-contact__formButton button,
.p-contact__formButton a, .p-contact__formButton input {
  display: grid;
  place-items: center;
  width: 250px;
  padding: 8px 15px;
  border: solid 1px var(--main-color);
  color: var(--main-color);
  background: var(--bg-color);
  border-radius: 34px;
  font-size: 20px;
  font-weight: 700;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-contact__formButton button:hover,
.p-contact__formButton a:hover, .p-contact__formButton input:hover {
  opacity: 1;
  color: var(--bg-color);
  background: var(--main-color);
}
@media screen and (max-width: 768px) {
  .p-contact__formButtonDouble button {
    width: 48%;
  }
}
.p-contact__formButtonTop {
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
}
@media screen and (max-width: 768px) {
  .p-contact__formButtonTop {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-contact__note {
  text-align: justify;
  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: 24px;
}
.p-contact__noteItem {
  font-size: 14px;
  color: var(--main-color);
  line-height: 2em;
  letter-spacing: 0.05em;
  font-weight: 400;
}
.p-contact__confirmItem {
  font-size: 14px;
}
.p-contact__confirmItem dt {
  color: var(--main-color);
  margin-bottom: 16px;
}
.p-contact__complete {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .p-contact__complete {
    display: block;
  }
}
.p-contact__completeLeft {
  width: 72%;
  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: 32px;
}
@media screen and (max-width: 768px) {
  .p-contact__completeLeft {
    width: 100%;
  }
}
.p-contact__completeLeft dt {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5em;
  color: var(--main-color);
}
.p-contact__completeLeft dt span {
  display: inline-block;
}
.p-contact__completeLeft dd {
  line-height: 2em;
  letter-spacing: 0.05em;
  text-align: justify;
  color: var(--main-color);
}
.p-contact__completeLeft dd span {
  display: inline-block;
}
.p-contact__completeRight {
  width: 27%;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 768px) {
  .p-contact__completeRight {
    margin: 0 auto 40px;
  }
}
.p-contact__completeRight figure img {
  max-width: 140px;
}

.cf-turnstile div {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center !important;
  -webkit-justify-content: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.wpcf7-spinner {
  display: none !important;
}

.p-contact__formItem--required {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: var(--main-color);
  color: white;
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  margin-left: 20px;
}

/*
contact-form
*/
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea {
  width: 100%;
}

/*
メニューボタンを押すと表示されるナビゲーション
*/
.p-globalNav {
  position: fixed;
  top: 100px;
  right: 0px;
  width: 400px;
  height: calc(100vh - 100px);
  background-color: var(--main-color);
  z-index: 9998;
  -webkit-transform: translateX(400px);
      -ms-transform: translateX(400px);
          transform: translateX(400px);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  padding: 30px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  color: #FFF;
}
.p-globalNav::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 960px) {
  .p-globalNav {
    width: 100vw;
    height: 100vh;
    top: 0;
    -webkit-transform: translateX(100vw);
        -ms-transform: translateX(100vw);
            transform: translateX(100vw);
    padding: 15px;
  }
}
.p-globalNav--active {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.p-globalNav a {
  color: #FFF;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .p-globalNav > ul {
    padding: 10px;
  }
}
.p-globalNav > ul > li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: solid 1px #FFF;
}
.p-globalNav > ul > li:nth-last-child(2), .p-globalNav > ul > li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
  margin-top: 24px;
}
@media screen and (max-width: 960px) {
  .p-globalNav > ul > li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
    -webkit-justify-content: left;
        -ms-flex-pack: left;
            justify-content: left;
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .p-globalNav > ul > li {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: unset;
  }
}
.p-globalNav > ul > li > ul {
  margin-top: 10px;
}
@media screen and (max-width: 960px) {
  .p-globalNav > ul > li > ul {
    width: 10em;
    margin-top: 0;
  }
}
.p-globalNav > ul > li > ul > li {
  font-size: 16px;
  margin: 0.4em;
}
@media screen and (max-width: 960px) {
  .p-globalNav > ul > li > ul > li {
    font-size: 12px;
    font-weight: 500;
  }
}
.p-globalNav__logo {
  display: none;
}
@media screen and (max-width: 960px) {
  .p-globalNav__logo {
    display: block;
  }
}
.p-globalNav__title {
  font-size: 20px;
  font-weight: bold !important;
  display: block;
}
@media screen and (max-width: 960px) {
  .p-globalNav__title {
    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;
    min-width: 14em;
  }
}
@media screen and (max-width: 768px) {
  .p-globalNav__title {
    min-width: auto;
    font-size: 16px;
  }
}
.p-globalNav__titleEn {
  font-size: 12px !important;
  font-weight: normal;
  display: block;
}
.p-globalNav__sub {
  width: 100% !important;
}
.p-globalNav__sub > li {
  font-size: 12px !important;
}
.p-globalNav__sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  padding-top: 10px;
}
.p-globalNav__sns > li {
  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-topics {
  padding: 80px 15px;
}
@container section-block (max-width: 768px) {
  .p-topics {
    padding: 40px 15px;
  }
}
.p-topics__wrap {
  max-width: 700px;
  margin: 0 auto;
}
.p-topics__headStats {
  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;
  gap: 10px;
}
.p-topics__headDate {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--main-color);
}
.p-topics__headTags {
  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: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
  font-size: 10.5px;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: var(--gray-color);
}
.p-topics__mainTitle {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  color: var(--main-color);
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: solid 1px var(--main-color);
}
.p-topics h4,
.p-topics h5,
.p-topics h6 {
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  color: var(--main-color);
  margin: 0;
  margin-bottom: 24px;
}
.p-topics h4 {
  font-size: 22px;
  background: var(--middle-blue-color);
  padding: 12px;
}
.p-topics h5 {
  font-size: 20px;
  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;
}
.p-topics h5::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 30px;
  background: var(--main-color);
  margin-right: 8px;
}
.p-topics h6 {
  font-size: 18px;
}
.p-topics__bottom {
  border-top: solid 1px var(--main-color);
  padding-top: 24px;
}
.p-topics__bottom a {
  display: grid;
  place-items: center;
  width: 250px;
  padding: 8px 15px;
  margin: 0 auto;
  border: solid 1px var(--main-color);
  color: var(--main-color);
  background: var(--bg-color);
  border-radius: 34px;
  font-size: 20px;
  font-weight: 700;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-topics__bottom a:hover {
  color: var(--bg-color);
  background: var(--main-color);
  opacity: 1;
}
.p-topics__column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 24px 0;
}
@container section-block (max-width: 768px) {
  .p-topics__column {
    grid-template-columns: 1fr;
  }
}
.p-topics p {
  color: var(--main-color);
  line-height: 2em;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin-bottom: 80px;
}
@container section-block (max-width: 768px) {
  .p-topics p {
    margin-bottom: 40px;
  }
}
.p-topics figure {
  margin-bottom: 24px;
}

/*
100の理由 シングルページ用
タイトル、記事部分
*/
.p-reason__hero {
  position: relative;
}
.p-reason__heroIndex {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 68%;
  border: solid 1px var(--main-color);
  border-left: none;
  padding: 30px 40px;
  background: var(--bg-color);
}
@container section-block (max-width: 768px) {
  .p-reason__heroIndex {
    position: static;
    width: 100%;
    border-right: none;
  }
}
@container section-block (max-width: 600px) {
  .p-reason__heroIndex {
    padding: 30px 20px;
  }
}
.p-reason__heroImage {
  height: 600px;
}
@container section-block (max-width: 768px) {
  .p-reason__heroImage {
    height: 250px;
  }
}
.p-reason__heroImage figure {
  width: 100%;
  height: 100%;
}
.p-reason__heroImage figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.p-reason__heroTags {
  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;
  gap: 10px;
  margin-bottom: 8px;
}
.p-reason__heroTags a {
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.08em;
  color: var(--gray-color);
}
.p-reason__heroTitle {
  font-weight: 700;
  font-size: clamp(22px, 2.8vw, 24px);
  line-height: 1.5em;
  letter-spacing: 0.05em;
  color: var(--main-color);
  margin-bottom: 24px;
}
.p-reason__heroTitle span {
  display: inline-block;
}
.p-reason__heroProf {
  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;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0 10px;
  color: var(--main-color);
}
@container section-block (max-width: 768px) {
  .p-reason__heroProf {
    display: block;
  }
}
.p-reason__heroSubTitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 2em;
  letter-spacing: 0.05em;
}
.p-reason__heroName {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
.p-reason__heroName span {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}
.p-reason__contentWrap {
  max-width: 700px;
  margin: 0 auto 40px;
}
.p-reason__content {
  padding: 80px 15px 110px;
  color: var(--main-color);
}
@container section-block (max-width: 768px) {
  .p-reason__content {
    padding: 40px 24px;
  }
}
.p-reason__content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 2em;
  letter-spacing: 0.05em;
  text-align: justify;
  margin-bottom: 24px;
}
@container section-block (max-width: 768px) {
  .p-reason__content p {
    font-size: 14px;
  }
}
.p-reason__contentTitle {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  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;
}
.p-reason__contentTitle::before {
  content: "";
  display: inline-block;
  width: 60px;
  height: 1px;
  background: var(--main-color);
  margin-right: 12px;
}
@container section-block (max-width: 768px) {
  .p-reason__contentTitle::before {
    width: 20px;
    margin-right: 6px;
  }
}
.p-reason__img img {
  min-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

/*
100の理由ループ（テキスト）
左側のタイトル部分など
*/
.p-reasonLoop {
  background-color: var(--main-color);
}
.p-reasonLoop a {
  color: #FFF;
}
.p-reasonLoop--text {
  color: #FFF;
  padding: 10px;
}
.p-reasonLoop--text li {
  padding: 0 10px;
}
@container section-block (max-width: 768px) {
  .p-reasonLoop--text li {
    padding: 0;
  }
}
.p-reasonLoop__inner {
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.p-reasonLoop__title span {
  display: block;
  white-space: nowrap;
  background-color: #FFF;
  color: var(--main-color);
  font-size: 11px;
  border-radius: 20px;
  padding: 2px 5px;
  font-weight: bold;
}

/*
「住む」ページの地図と写真のセット
*/
.p-areaMap {
  padding: 40px;
}
@container section-block (max-width: 768px) {
  .p-areaMap {
    padding: 15px;
  }
}
.p-areaMap__imageSP {
  max-width: 320px;
  margin: 0 auto 40px;
  display: none;
}
@container section-block (max-width: 768px) {
  .p-areaMap__imageSP {
    display: block;
  }
}
.p-areaMap__points {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 32px;
}
@container section-block (max-width: 768px) {
  .p-areaMap__points {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
.p-areaMap__points figure {
  margin-bottom: 12px;
}
.p-areaMap__points h2 {
  font-size: 18px;
  color: var(--main-color);
  line-height: 1.2em;
  margin-bottom: 5px;
}
@container section-block (max-width: 768px) {
  .p-areaMap__points h2 {
    font-size: 16px;
    margin-top: 4px;
    margin-bottom: 4px;
  }
}
.p-areaMap__points h2 small {
  display: inline-block;
  font-size: 80%;
  margin-left: 2px;
}
.p-areaMap__points p {
  font-size: 14px;
  color: var(--main-color);
  line-height: 1.8em;
}
.p-areaMap__point {
  position: relative;
}
@container section-block (max-width: 768px) {
  .p-areaMap__point:nth-child(1) {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
@container section-block (max-width: 768px) {
  .p-areaMap__point:nth-child(3) {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
}
@container section-block (max-width: 768px) {
  .p-areaMap__point:nth-child(4) {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
@container section-block (max-width: 768px) {
  .p-areaMap__point:nth-child(5) {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
}
.p-areaMap__pointDeco {
  position: absolute;
  top: -30px;
  left: -10px;
  width: 110px;
}
@container section-block (max-width: 960px) {
  .p-areaMap__pointDeco {
    width: 90px;
  }
}
@container section-block (max-width: 768px) {
  .p-areaMap__pointDeco--pc {
    display: none;
  }
}
.p-areaMap__pointDeco--sp {
  display: none;
}
@container section-block (max-width: 768px) {
  .p-areaMap__pointDeco--sp {
    display: block;
  }
}
.p-areaMap__image {
  grid-column: 2/3;
  grid-row: 1/3;
  text-align: center;
  padding-right: 50px;
  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-areaMap__image img {
  display: inline-block;
  width: auto;
  max-height: 580px;
}
@container section-block (max-width: 768px) {
  .p-areaMap__image {
    display: none;
  }
}
.p-areaMap__link {
  margin-top: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
  -webkit-justify-content: right;
      -ms-flex-pack: right;
          justify-content: right;
}

/*
プライバシーポリシーなど
*/
.p-docs {
  padding: 60px;
  margin: 0 auto;
  line-height: 1.8em;
}
@container section-block (max-width: 768px) {
  .p-docs {
    padding: 40px 15px;
    padding: 24px;
    font-size: 16px;
  }
}
.p-docs h1 {
  background-color: var(--main-color);
  font-size: 26px;
  padding: 10px 20px 8px;
  color: #FFF;
  margin: 1em 0;
}
.p-docs h1:first-child {
  margin-top: 0;
}
.p-docs h2 {
  font-size: 20px;
  border-left: solid 5px var(--main-color);
  padding-left: 20px;
  margin: 2em 0;
}
@container section-block (max-width: 768px) {
  .p-docs h2 {
    margin: 2rem 0 0;
  }
}
.p-docs p {
  margin: 1em 0;
}
.p-docs p a {
  color: var(--main-color);
  text-decoration: underline;
  font-weight: bold;
}
.p-docs > ul li {
  list-style: disc;
  margin-left: 1.5em;
}
.p-docs > ol li {
  list-style: decimal;
  margin-left: 1.5em;
}
.p-docs > ol > li > ol {
  font-size: 90%;
  color: #3f4550;
  margin: 0.5em 0;
}
.p-docs address {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 10px;
  font-style: normal;
}
.p-docs address dt {
  font-weight: bold;
}
.p-docs address dd {
  margin-left: 1em;
}
.p-docs address dd span {
  display: inline-block;
  margin-right: 0.5em;
}
.p-docs__links {
  margin-top: 30px;
  padding-top: 30px;
  border-top: solid 1px #bbc4da;
}
.p-docs__links ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: solid 1px var(--main-color);
}
@container section-block (max-width: 960px) {
  .p-docs__links ul {
    grid-template-columns: repeat(2, 1fr);
    font-size: 16px;
    border: none;
    border-top: solid 1px var(--main-color);
    border-left: solid 1px var(--main-color);
  }
}
.p-docs__links ul li a {
  display: block;
  text-align: center;
  border-right: solid 1px var(--main-color);
  color: var(--main-color);
  font-weight: bold;
  padding: 10px;
}
@container section-block (max-width: 960px) {
  .p-docs__links ul li a {
    padding: 5px;
    border-bottom: solid 1px var(--main-color);
  }
}
.p-docs__links ul li a:hover {
  opacity: 1;
  background-color: var(--main-color) !important;
  color: #FFF !important;
}
.p-docs__links ul li:last-child a {
  border-right: none;
}
@container section-block (max-width: 960px) {
  .p-docs__links ul li:last-child a {
    border-right: solid 1px var(--main-color);
  }
}
.p-docs__activeLink {
  background-color: var(--main-color) !important;
  color: #FFF !important;
}
.p-docs__strongList {
  font-weight: bold;
}
.p-docs__banners {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -webkit-justify-content: left;
      -ms-flex-pack: left;
          justify-content: left;
  gap: 10px;
  margin: 1em 0;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.p-docs__banners figure a {
  display: block;
  position: relative;
}
.p-docs__banners figure a > i {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: #FFF;
  border-radius: 50%;
  text-align: 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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-docs__banners figure a > i img {
  width: auto;
  height: 15px;
  display: inline-block;
}

/*
利用規約
*/
.p-terms {
  padding: 60px;
  margin: 0 auto;
  line-height: 1.8em;
}
@container section-block (max-width: 768px) {
  .p-terms {
    padding: 40px 15px;
  }
}
.p-terms h1 {
  background-color: var(--main-color);
  font-size: 26px;
  padding: 10px 20px 12px;
  color: #FFF;
  margin: 3em 0 1em;
}
@container section-block (max-width: 960px) {
  .p-terms h1 {
    font-weight: 500;
  }
}
@container section-block (max-width: 600px) {
  .p-terms h1 {
    font-size: 20px;
    margin: 1.5em 0 0.4em;
    line-height: 1.5;
  }
}
.p-terms h1:first-child {
  margin-top: 0;
}
.p-terms h2 {
  font-size: 20px;
  border-left: solid 5px var(--main-color);
  padding-left: 20px;
  margin: 2em 0;
}
.p-terms h3 {
  font-size: 18px;
  font-weight: bold;
  color: var(--main-color);
  margin: 1em 0;
}
@container section-block (max-width: 600px) {
  .p-terms h3 {
    font-size: 16px;
    margin: 0.5em 0 0;
  }
}
.p-terms 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: 1em 0;
}
@container section-block (max-width: 600px) {
  .p-terms dl {
    display: block;
  }
}
.p-terms dl dt {
  width: 5em;
  font-weight: bold;
}
.p-terms dl dd {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-terms__history {
  text-align: right;
  font-size: 12px;
  line-height: 1.8;
}
.p-terms__innerList {
  font-size: 16px;
  margin: 0.5em 0;
  line-height: 1.8;
}
.p-terms__innerList--top {
  margin-top: 0.2em;
}
.p-terms__innerList--top > li {
  font-size: 16px;
}
.p-terms__numberList {
  padding: 0;
}
.p-terms__numberList > li {
  list-style: none;
  position: relative;
  padding-left: 1.2em;
  line-height: 1.8;
}
.p-terms__numberList > li .num {
  position: absolute;
  left: 0;
  width: 2.4em;
  display: inline-block;
  text-align: left;
}
.p-terms__parNumberList > li {
  list-style-type: none;
  counter-increment: cnt;
  position: relative;
  margin-left: 2em;
}
.p-terms__parNumberList > li::before {
  content: "（" counter(cnt) "）";
  position: absolute;
  left: -2.5rem;
}
.p-terms__kanaList {
  counter-reset: kana;
}
.p-terms__kanaList > li {
  list-style: none;
  counter-increment: kana;
  margin-left: 2em;
  position: relative;
}
.p-terms__kanaList > li::before {
  content: counter(kana, katakana);
  position: absolute;
  left: -2em;
}

/*
「/src/sass/object/utility」ディレクトリ内のscssファイルを読み込みます。
[例]/src/sass/object/utility/_example.scss を読み込む場合
@forward "../../object/utility/example";
*/
.u-br {
  /*
  PCのみ
  */
}
.u-br__pc {
  display: none;
}
@container section-block (max-width: 960px) {
  .u-br__pc {
    display: inline;
  }
}
.u-br {
  /*
  タブレット・スマホ
  */
}
.u-br__tb {
  display: none;
}
@container section-block (max-width: 960px) {
  .u-br__tb {
    display: inline;
  }
}
.u-br {
  /*
  スマホ
  */
}
.u-br__sp {
  display: none;
}
@container section-block (max-width: 768px) {
  .u-br__sp {
    display: inline;
  }
}
.u-br__nosp {
  display: inline;
}
@container section-block (max-width: 768px) {
  .u-br__nosp {
    display: none;
  }
}

/*
「/src/sass/pages」ディレクトリ内のscssファイルを読み込みます。
[例]/src/sass/pages/_example.scss を読み込む場合
@forward "../../pages/example";
*/
/*# sourceMappingURL=style.css.map */
