@charset "UTF-8";
/* 除算math.divを使うのに必要な記述 */
html {
  font-size: 62.5%;
}

body {
  font-size: clamp(1.4rem, 1.3346938776rem + 0.2040816327vw, 1.6rem);
}
body a {
  color: #0f0f0f;
}
body a :hover {
  transition: 0.5s;
  -webkit-transition: 0.5s; /* Chrome、Safari用 */
  -moz-transition: 0.5s; /* Firefox用 */
  -o-transition: 0.5s; /* Opera用 */
  opacity: 0.8;
}
body img {
  max-width: 100%;
  height: auto;
}
body h3 {
  font-family: "Cinzel", serif, "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: clamp(5rem, 4.9346938776rem + 0.2040816327vw, 5.2rem);
  display: flex;
  align-items: center;
  letter-spacing: 0.05em;
}
body h3::before, body h3::after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #757575;
}
body h3::before {
  margin-right: 20px;
}
body h3::after {
  margin-left: 20px;
}
body h3.jp {
  font-size: clamp(3rem, 2.9346938776rem + 0.2040816327vw, 3.2rem);
}
@media screen and (max-width: 768px) {
  body h3 {
    font-size: clamp(3rem, 2.9346938776rem + 0.2040816327vw, 3.2rem);
    font-family: "Cinzel", serif, "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  }
  body h3::before, body h3::after {
    border: none;
    content: "";
    width: auto;
  }
  body h3.jp {
    font-size: clamp(2rem, 1.9346938776rem + 0.2040816327vw, 2.2rem);
  }
}
body .mincho {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: clamp(3rem, 2.9346938776rem + 0.2040816327vw, 3.2rem);
}
body .mainContents {
  background: rgb(246, 246, 246);
  background: linear-gradient(0deg, rgb(246, 246, 246) 0%, rgb(255, 255, 255) 100%);
}
body section {
  margin-bottom: 40px;
}
body .container {
  max-width: 768px !important;
}
body .button {
  border: 1px #0f0f0f solid;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f0f0f;
  width: 100%;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  letter-spacing: 10px;
  line-height: 50px;
  background-color: rgba(255, 255, 255, 0.7);
}
body .button a {
  display: block;
  text-align: center;
  width: 100%;
}
body .button a.linkArw:hover::after {
  border-color: white;
}
body .button:hover {
  transition: 0.5s;
  -webkit-transition: 0.5s; /* Chrome、Safari用 */
  -moz-transition: 0.5s; /* Firefox用 */
  -o-transition: 0.5s; /* Opera用 */
  background-color: #0f0f0f;
  opacity: 1;
  color: white;
  cursor: pointer;
}
body .button:hover a {
  transition: 0.5s;
  -webkit-transition: 0.5s; /* Chrome、Safari用 */
  -moz-transition: 0.5s; /* Firefox用 */
  -o-transition: 0.5s; /* Opera用 */
  opacity: 1;
  color: white;
}

/*========= スクロールダウンのためのCSS ===============*/
/*=== 9-1-2 丸が動いてスクロールを促す ====*/
/*スクロールダウン全体の場所*/
.scrolldown2 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 70px;
  left: 50%;
}
@media screen and (max-width: 576px) {
  .scrolldown2 {
    bottom: 5%;
  }
}

/*Scrollテキストの描写*/
.scrolldown2 span {
  /*描画位置*/
  position: absolute;
  left: 10px;
  bottom: 10px;
  /*テキストの形状*/
  color: white;
  font-size: 2rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  writing-mode: vertical-rl;
}
@media screen and (max-width: 576px) {
  .scrolldown2 span {
    color: black;
    font-size: 1rem;
  }
}

/* 丸の描写 */
.scrolldown2:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: white;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
@media screen and (max-width: 576px) {
  .scrolldown2:before {
    left: -4px;
    width: 10px;
    height: 10px;
    background-color: black;
  }
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: 40px;
  }
  100% {
    bottom: 0px;
  }
}
/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
/* 線の描写 */
.scrolldown2:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 2px;
  height: 70px;
  background: white;
}
@media screen and (max-width: 576px) {
  .scrolldown2:after {
    height: 50px;
    background-color: black;
  }
}

.linkArw {
  position: relative;
}
.linkArw::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg) translateY(-50%);
}

.pagination {
  justify-content: center;
  gap: 10px;
}

.bread {
  padding: 10px 0px;
  font-size: clamp(1rem, 0.9346938776rem + 0.2040816327vw, 1.2rem);
  margin-bottom: 10px;
}

/* ローディング画面のスタイル */
.loading {
  display: flex;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: black; /* 背景色 */
  color: white; /* テキスト色 */
  justify-content: center;
  align-items: center;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 2em;
  z-index: 10500;
  top: 0;
  left: 0;
  transition: opacity 0.5s;
}

.loader {
  width: 30vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(farthest-side, goldenrod 94%, rgba(0, 0, 0, 0)) top/8px 8px no-repeat, conic-gradient(rgba(0, 0, 0, 0) 30%, goldenrod);
  -webkit-mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 8px), #000 0);
  animation: l13 2s infinite linear;
}

@keyframes l13 {
  100% {
    transform: rotate(1turn);
  }
}
/* イントロ画面のスタイル */
#intro {
  display: flex;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: black;
  color: white;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  top: 0;
}
#intro .wrap {
  background: url(../images/circle-opa.png) no-repeat center center/contain;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#intro .wrap span {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  opacity: 0;
  font-size: clamp(2rem, 1.9346938776rem + 0.2040816327vw, 2.2rem);
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
#intro .wrap .fadeInUp {
  animation: fadeInUp 1.5s forwards;
}

#main {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

h1 {
  margin: 0;
  padding: 0;
}

img {
  min-width: 0;
}

.grayOut {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0s 0.5s;
}
.grayOut.visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s;
}

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 10px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: auto;
  background-color: rgb(255, 255, 255);
  border-bottom: 2px goldenrod solid;
}
#site-header .openbtn {
  position: absolute;
  z-index: 999;
  top: 10px;
  right: 5px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
#site-header .openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  background-color: #333;
  width: 22px;
}
#site-header .openbtn span:nth-of-type(1) {
  top: 15px;
}
#site-header .openbtn span:nth-of-type(2) {
  top: 23px;
}
#site-header .openbtn span:nth-of-type(3) {
  top: 31px;
}
#site-header .openbtn.active span:nth-of-type(1) {
  top: 23px;
  transform: rotate(-45deg);
}
#site-header .openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
#site-header .openbtn.active span:nth-of-type(3) {
  top: 23px;
  transform: rotate(45deg);
}
#site-header #g-nav {
  padding-top: 70px;
  position: fixed;
  z-index: 998;
  top: 0;
  right: -100%;
  width: 50%;
  height: 100vh;
  background: white;
  transition: all 0.6s;
  box-shadow: -10px 0px 15px -5px #777777;
}
@media screen and (max-width: 576px) {
  #site-header #g-nav {
    width: 80%;
    padding-top: 55px;
  }
}
#site-header #g-nav.panelactive {
  right: 0;
}
#site-header #g-nav #g-nav-list {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

/* メインビジュアルのスタイル */
section.mainVisual {
  opacity: 0; /* 初期状態では透明 */
  transition: opacity 2s;
}

/* スクロールで表示するコンテンツのスタイル */
.hidden-content {
  opacity: 0;
  visibility: hidden;
  transition: opacity 2s, visibility 2s;
}

.visible-content {
  opacity: 1;
  visibility: visible;
}

.headerEffect_off {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.5s, opacity 0.5s ease-in-out; /* opacityが0になるのを待ってからvisibilityをhiddenに */
}

.headerEffect_on {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.5s ease-in-out; /* 透明度のみアニメーション */
}

.headerArea {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .headerArea {
    justify-content: start;
  }
}
.headerArea .logo {
  padding-left: 10px;
  align-items: flex-start;
}
.headerArea .logo a {
  display: block;
}
.headerArea .logo a img {
  width: auto;
  max-width: 100%;
  height: 50px;
}
@media screen and (max-width: 576px) {
  .headerArea .logo a img {
    height: 35px;
  }
}
.headerArea .hmbBtn {
  display: block;
}
@media screen and (max-width: 576px) {
  .headerArea .hmbBtn .openbtn {
    top: 4px !important;
  }
}

.mainBG {
  background: url(../images/circle-opa.png) no-repeat top center/cover;
}

.hPad {
  padding-top: 100px;
}
@media screen and (max-width: 576px) {
  .hPad {
    padding-top: 70px;
  }
}

main {
  /*----------------------------
  scroll_up ｜下から上へ出現
  ----------------------------*/
}
main .headerVisual {
  background: url(../images/header.jpg) no-repeat center right/cover;
  height: 100vh;
  position: relative;
}
@media screen and (max-width: 768px) {
  main .headerVisual {
    height: 70vh;
    background-color: rgba(255, 255, 255, 0.8);
    background-blend-mode: lighten;
  }
}
main .headerVisual .wrap {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  color: #0f0f0f;
  height: 100%;
  text-shadow: 0px 0px 10px rgb(255, 255, 255);
}
@media screen and (max-width: 768px) {
  main .headerVisual .wrap {
    height: 100%;
    justify-content: center;
    align-items: center;
  }
}
main .headerVisual .wrap h1 {
  font-size: clamp(3rem, 2.9346938776rem + 0.2040816327vw, 3.2rem);
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  width: 100%;
  max-width: 400px;
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  main .headerVisual .wrap h1 {
    max-width: 90%;
  }
}
main .headerVisual .wrap h2 {
  font-size: clamp(2rem, 1.9346938776rem + 0.2040816327vw, 2.2rem);
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  letter-spacing: 5px;
}
@media screen and (max-width: 576px) {
  main .headerVisual .wrap h2 {
    font-size: clamp(1.8rem, 1.7346938776rem + 0.2040816327vw, 2rem);
  }
}
main #supporter .subtitle {
  font-size: clamp(2rem, 1.9346938776rem + 0.2040816327vw, 2.2rem);
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  text-align: center;
  margin: 40px auto;
}
@media screen and (max-width: 576px) {
  main #supporter .subtitle {
    font-size: clamp(1.6rem, 1.5346938776rem + 0.2040816327vw, 1.8rem);
  }
}
main p.index {
  text-align: center;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  line-height: 200%;
  margin: 40px auto;
}
main p.index.last {
  padding: 80px 0px;
}
main .slideArea {
  margin-bottom: 40px;
}
main .slideArea .slideBox {
  width: 30vw;
}
@media screen and (max-width: 576px) {
  main .slideArea .slideBox {
    width: 70vw;
  }
}
main .slideArea .slideBox img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
main .contArea {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 576px) {
  main .contArea {
    grid-template-columns: 1fr 1fr;
    gap: 5px 10px;
  }
}
main .contArea .contBox {
  position: relative;
}
main .contArea .contBox .tmb img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
main .contArea .contBox .tag {
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 10px;
  background-color: white;
  font-size: clamp(1rem, 0.9346938776rem + 0.2040816327vw, 1.2rem);
}
@media screen and (max-width: 576px) {
  main .contArea .contBox .title {
    font-size: clamp(1.2rem, 1.1346938776rem + 0.2040816327vw, 1.4rem);
  }
}
main .allSup .contArea {
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 576px) {
  main .allSup .contArea {
    grid-template-columns: 1fr 1fr;
    gap: 5px 10px;
  }
}
main .allSup .contArea .title {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  text-align: center;
}
main .allSup .contBox .tmb img {
  aspect-ratio: 16/9;
}
main #philosophy p, main #aboutus p {
  text-align: center;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  line-height: 200%;
  margin: 40px auto;
}
main #contact {
  margin-top: 40px;
}
main #contactForm {
  margin-top: 20px;
}
main #contactForm .wrap {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  main #contactForm .wrap {
    flex-direction: column;
  }
}
main #contactForm .wrap .head {
  width: 30%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  main #contactForm .wrap .head {
    justify-content: start;
    width: 100%;
    margin-bottom: 10px;
  }
}
main #contactForm .wrap .head label {
  font-weight: bold;
}
main #contactForm .wrap .head span {
  font-size: clamp(0.8rem, 0.7346938776rem + 0.2040816327vw, 1rem);
  background-color: #0f0f0f;
  padding: 5px 10px;
  color: white;
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  main #contactForm .wrap .head span {
    margin-left: 5px;
    margin-right: 0px;
  }
}
main #contactForm .wrap .contents {
  width: 100%;
}
main #contactForm .wrap .contents .form-control {
  background-color: whitesmoke;
  padding: 10px;
  border: none;
  box-shadow: none;
  font-size: clamp(1.6rem, 1.5346938776rem + 0.2040816327vw, 1.8rem);
}
main #contactForm .wrap .contents .wpcf7-select {
  width: 100%;
  background-color: whitesmoke;
  border: none;
  box-shadow: none;
  padding: 10px;
}
main #contactForm .btnArea {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
main #contactForm .btnArea button {
  flex-basis: 50%;
}
main #contactForm .btnArea button#confirmButton {
  flex-basis: 100%;
}
main #contactForm .btnArea input.button {
  background-color: white;
  padding: 0;
  margin: 0;
  flex-basis: 50%;
}
main #contactForm .btnArea input.button:hover {
  transition: 0.5s;
  -webkit-transition: 0.5s; /* Chrome、Safari用 */
  -moz-transition: 0.5s; /* Firefox用 */
  -o-transition: 0.5s; /* Opera用 */
  background-color: #0f0f0f;
  opacity: 1;
  color: white;
  cursor: pointer;
}
main #contactForm .wpcf7-spinner {
  display: none;
}
main #contactForm .wpcf7-select {
  appearance: none; /* デフォルトのスタイルをリセット */
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("../images/arrow.svg") no-repeat right 15px center;
  background-size: 10px 10px;
  border: 1px solid #ccc; /* 枠線の設定 */
  padding: 10px 38px 10px 10px;
  width: 100%; /* 幅を親要素に合わせる */
  cursor: pointer; /* カーソルをポインターに */
}
main .thanks {
  margin-top: 20px;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
main .thanks .title {
  text-align: center;
  font-size: clamp(2.5rem, 2.4346938776rem + 0.2040816327vw, 2.7rem);
  margin-bottom: 40px;
}
main .thanks .textArea {
  font-size: clamp(1.4rem, 1.3346938776rem + 0.2040816327vw, 1.6rem);
  font-family: system-ui;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 576px) {
  main .thanks .textArea {
    text-align: left;
  }
}
main .thanks .textArea .name {
  margin-bottom: 10px;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
main .thanks .textArea .name #customerName {
  font-size: clamp(2rem, 1.9346938776rem + 0.2040816327vw, 2.2rem);
  margin-right: 5px;
}
main .scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
main .scroll_up.on {
  transform: translateY(0);
  opacity: 1;
}

#g-nav-list .menu {
  font-size: clamp(1.4rem, 1.3346938776rem + 0.2040816327vw, 1.6rem);
}
#g-nav-list .menu .title {
  font-weight: bold;
  background-color: goldenrod;
  color: white;
  padding: 15px;
}
#g-nav-list .menu ul {
  list-style: none;
  padding: 0;
}
#g-nav-list .menu ul li {
  text-align: left;
  padding-left: 20px;
  border-bottom: 1px black dotted;
}
#g-nav-list .menu ul li a {
  display: block;
  padding: 10px;
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

#footer {
  background-color: whitesmoke;
  padding-top: 100px;
}
#footer a {
  color: #0f0f0f;
}
#footer p {
  margin: 0;
}
#footer .cr {
  margin-top: 20px;
  text-align: center;
  padding-top: 100px;
}
#footer section {
  margin-bottom: 0px;
}
#footer .sitemap {
  display: flex;
  flex-direction: row;
  justify-content: start;
  gap: 20px;
}
@media screen and (max-width: 576px) {
  #footer .sitemap {
    flex-direction: column;
  }
}
#footer .sitemap .menu {
  flex-basis: 30%;
}
@media screen and (max-width: 576px) {
  #footer .sitemap .menu {
    flex-basis: auto;
  }
}
#footer .sitemap .menu .title {
  font-weight: bold;
  margin-bottom: 10px;
}
#footer .sitemap .menu ul li {
  padding-left: 10px;
}
#footer .sitemap .menu ul li a.linkArw::after {
  border: none;
}

#customPost, #pages, #post, #archive {
  margin-bottom: 20px;
}
#customPost.container, #pages.container, #post.container, #archive.container {
  background-color: white;
}
#customPost .mainVisual, #pages .mainVisual, #post .mainVisual, #archive .mainVisual {
  margin-bottom: 20px;
  text-align: center;
}
#customPost .nameArea, #pages .nameArea, #post .nameArea, #archive .nameArea {
  display: flex;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 10px;
  margin: 40px auto;
}
@media screen and (max-width: 768px) {
  #customPost .nameArea, #pages .nameArea, #post .nameArea, #archive .nameArea {
    flex-direction: column;
    justify-content: center;
    align-items: start;
  }
}
#customPost .nameArea .cName, #pages .nameArea .cName, #post .nameArea .cName, #archive .nameArea .cName {
  font-size: clamp(3rem, 2.9346938776rem + 0.2040816327vw, 3.2rem);
}
#customPost .nameArea .subName, #pages .nameArea .subName, #post .nameArea .subName, #archive .nameArea .subName {
  font-size: clamp(1.8rem, 1.7346938776rem + 0.2040816327vw, 2rem);
}
#customPost h1, #pages h1, #post h1, #archive h1 {
  font-size: clamp(2.5rem, 2.4346938776rem + 0.2040816327vw, 2.7rem);
  margin-bottom: 20px;
}
#customPost h2, #pages h2, #post h2, #archive h2 {
  font-size: clamp(2rem, 1.9346938776rem + 0.2040816327vw, 2.2rem);
  margin-top: 30px;
  margin-bottom: 20px;
}
#customPost p, #pages p, #post p, #archive p {
  margin-bottom: 20px;
}
#customPost .images, #pages .images, #post .images, #archive .images {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  align-items: flex-start;
  margin: 20px auto;
}
#customPost .list ul, #pages .list ul, #post .list ul, #archive .list ul {
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 576px) {
  #customPost .list ul, #pages .list ul, #post .list ul, #archive .list ul {
    flex-direction: column;
  }
}
#customPost .list ul li, #pages .list ul li, #post .list ul li, #archive .list ul li {
  margin-bottom: 10px;
}
#customPost .list ul li:first-child, #pages .list ul li:first-child, #post .list ul li:first-child, #archive .list ul li:first-child {
  flex-basis: 20%;
  font-weight: bold;
}
#customPost .list ul li:last-child, #pages .list ul li:last-child, #post .list ul li:last-child, #archive .list ul li:last-child {
  flex-basis: 80%;
}
#customPost .list .title, #pages .list .title, #post .list .title, #archive .list .title {
  padding: 10px;
  background-color: whitesmoke;
  font-size: clamp(2rem, 1.9346938776rem + 0.2040816327vw, 2.2rem);
  font-weight: bold;
  padding-left: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}
#customPost .fc header div, #pages .fc header div, #post .fc header div, #archive .fc header div {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: clamp(2.5rem, 2.4346938776rem + 0.2040816327vw, 2.7rem);
  margin-bottom: 20px;
}

.customPost__header .pHeader {
  display: flex;
  align-items: center;
  background: url(../images/circle-half.png) no-repeat center right/contain;
  height: 50vmax;
  background-color: white;
}
.customPost__header .pHeader .bg .title {
  font-size: clamp(5rem, 4.9346938776rem + 0.2040816327vw, 5.2rem);
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
@media screen and (max-width: 576px) {
  .customPost__header .pHeader .bg .title {
    font-size: clamp(3rem, 2.9346938776rem + 0.2040816327vw, 3.2rem);
  }
}

#post .entry-content {
  margin-bottom: 40px;
  border-bottom: 1px #757575 solid;
  padding-bottom: 40px;
}
#post .post-pagenation .pn-links {
  display: flex;
  justify-content: space-between;
}
#post .post-pagenation .pn-links .pn {
  flex-basis: 20%;
}
@media screen and (max-width: 768px) {
  #post .post-pagenation .pn-links .pn {
    flex-basis: 40%;
  }
}
#post .post-pagenation .pn-links .pn .title {
  font-weight: bold;
  position: relative;
}
#post .post-pagenation .pn-links .pn img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
#post .post-pagenation .pn-links .previous .title {
  text-align: right;
}
#post .post-pagenation .pn-links .previous .title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px; /* 矢印の位置を調整 */
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #000; /* 下側の線 */
  border-left: 2px solid #000; /* 左側の線 */
  transform: translateY(-50%) rotate(45deg); /* 中央揃えと回転 */
}
#post .post-pagenation .pn-links .next .title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px; /* 矢印の位置を調整 */
  width: 10px;
  height: 10px;
  border-top: 2px solid #000; /* 上側の線 */
  border-right: 2px solid #000; /* 右側の線 */
  transform: translateY(-50%) rotate(45deg); /* 中央揃えと回転 */
}

.page-header {
  margin-bottom: 20px;
}

.page-title {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  text-align: center;
}

#archive .girdArea {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 576px) {
  #archive .girdArea {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
#archive .girdArea .wrap {
  flex-basis: 25%;
}
#archive .girdArea .wrap .title {
  font-weight: bold;
}
#archive .girdArea .wrap img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}/*# sourceMappingURL=original.css.map */