@charset "UTF-8";
/* ---------------------------------------------------✁
	変数
------------------------------------------------------*/
/* ---------------------------------------------------✁
	基本
------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  font-style: normal;
  list-style: none;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
  font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 18px;
  line-height: 1.7em;
  text-align: left;
  -webkit-text-size-adjust: 100%;
  color: #FFF;
  background: #52000f;
}

body {
  font-size: 1rem;
}

#wrapper {
  text-align: left;
}

h1, h2, h3, h4, h5, dt, nav li a {
  font-weight: 900;
  line-height: 1.5em;
}

nav li a {
  font-weight: normal;
}

h1 a, h2 a, h3 a, h4 a, h5 a {
  line-height: 1.5em;
}

a {
  color: #FFF;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  text-decoration: none;
}

a:hover img:not(.over), a:active img:not(.over) {
  opacity: 0.8;
  transition: 0.3s;
}

li > a:hover {
  opacity: 0.8;
}

img {
  border: none;
  vertical-align: middle;
  max-width: 100%;
}

header, nav, section, hgroup, article, figure, figcaption, footer {
  display: block;
}

input {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

input[type=text],
input[type=password],
input[type=tel],
input[type=email],
input[type=url],
input[type=search],
textarea,
button {
  font-size: 1rem;
  line-height: normal;
  height: 3rem;
  padding: 0.2rem;
  color: #333;
  width: 100%;
  vertical-align: bottom;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  -webkit-user-select: element;
  -moz-user-select: element;
  -o-user-select: element;
  -ms-user-select: element;
  user-select: element;
  padding: 3px;
  border: 1px solid #bdbdbd;
}

input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  appearance: none;
  border-radius: 0;
  text-align: center;
  position: relative;
  padding: 10px 20px 8px;
  display: inline-block;
  transition: 0.3s;
  font-weight: bold;
  box-sizing: border-box;
  text-transform: uppercase;
  transition: all 0.3s;
  font-size: 15px;
  border: 1px solid #444;
  background: #FFF;
  cursor: pointer;
}

input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

textarea {
  min-height: 10em;
}

::placeholder {
  color: #CCC;
}

.clear {
  clear: both;
}

.is-pc {
  display: none;
}

.is-sp {
  display: block;
}

.button {
  text-align: center;
  position: relative;
  padding: 0.6rem 1.2rem;
  display: inline-block;
  transition: 0.3s;
  font-weight: bold;
  box-sizing: border-box;
  transition: all 0.3s;
  font-size: 1rem;
  color: #000;
  border: 1px solid #FFF;
  background: #FFF;
  cursor: pointer;
}
.button:hover {
  box-sizing: border-box;
  font-weight: bold;
  cursor: pointer;
  -webkit-appearance: none;
}
.button i {
  margin: 0 0 0 4px;
}

#wpstats {
  display: none !important;
}

/* ---------------------------------------------------✁
	ヘッダー
------------------------------------------------------*/
body.home #header {
  position: fixed;
}

#header {
  width: 100%;
  z-index: 100;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .logo {
  width: 5em;
  margin: 0;
}
#header .logo a {
  display: block;
}
#header .logo a img {
  display: block;
}
#header nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
#header nav ul li {
  margin: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#header nav ul li a {
  margin: 0 0.2rem;
}
#header nav ul li a span {
  font-size: 1.2rem;
  font-weight: bold;
  display: block;
}
#header nav ul li a img {
  width: 1.2rem;
  vertical-align: -4px;
}

/* ---------------------------------------------------✁
	ナビゲーション
------------------------------------------------------*/
.mask {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.9;
  z-index: 1000;
  cursor: pointer;
}

.modal-window {
  position: fixed;
  background: #FFF;
  padding: 30px 20px;
  z-index: 1001;
  left: 0;
  top: 10%;
  width: 100%;
  display: none;
  color: #000;
}

@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ---------------------------------------------------✁
	フッター
------------------------------------------------------*/
#footer {
  background: url(../images/footer-bg.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 6rem 0;
}
#footer:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.7;
}
#footer .content {
  position: relative;
  z-index: 1;
}
#footer .content .logo {
  width: 6rem;
  margin: 0 auto;
}
#footer .content .copyright {
  text-align: center;
  font-size: 0.6rem;
  display: block;
  margin: 1rem 0 0;
}

/* ---------------------------------------------------✁
	共通パーツ
------------------------------------------------------*/
.content {
  padding: 0 1.5rem;
  max-width: 1200px;
  margin: auto;
}

.title {
  position: relative;
  margin: 0 0 2rem;
  text-align: center;
}
.title h2 {
  font-size: 3rem;
  font-family: serif, "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  transform: scaleY(0.85);
  line-height: 1em;
}
.title span {
  font-family: serif;
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 0.9em;
}

.thumbnail {
  overflow: hidden;
  position: relative;
  height: 0;
  padding-bottom: 125%;
  background: #FFF;
}
.thumbnail a, .thumbnail div {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.thumbnail a img, .thumbnail div img {
  width: 100%;
  height: auto;
  __object-fit: cover;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.thumbnail a:hover __img, .thumbnail div:hover __img {
  transform: translateY(-50%) scale(1.1);
  opacity: 1;
}
.thumbnail.square {
  padding-bottom: 100%;
}
.thumbnail.square img {
  object-fit: cover;
  height: 100% !important;
}
.thumbnail.vertical {
  padding-bottom: 125%;
  padding-bottom: 141.4%;
}
.thumbnail.vertical img {
  height: 100% !important;
  object-fit: cover;
}

/* ---------------------------------------------------✁
	トップページ
------------------------------------------------------*/
#top {
  max-width: 100%;
}
#top > section {
  padding: 6rem 0;
}
#top > section footer {
  margin: 2rem 0 0;
}
#top > section footer .button {
  display: block;
  max-width: 640px;
  margin: auto;
}
#top .visual {
  background: url(../images/visual.jpg) no-repeat center center;
  background-size: cover;
  height: 100svh;
  max-height: 75vw;
  position: relative;
  padding: 0;
}
#top .visual .content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /*
  flex-direction: row-reverse;
   */
}
#top .visual .content h2 {
  width: 28rem;
  margin-right: 3rem;
}
#top .visual .content p {
  /*
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  align-items: center;
  */
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 2em;
}
#top .visual .content p span {
  transform: scaleY(0.9);
}
#top .concept ul {
  display: flex;
  flex-wrap: wrap;
}
#top .concept ul li {
  width: 50%;
  padding: 1rem;
  margin: 0 0 2rem;
}
#top .concept ul li h3 {
  margin: 1.5rem 0 1rem;
  font-size: 1.6rem;
}
#top .concept ul li p {
  font-size: 0.9rem;
  line-height: 1.6rem;
}
#top .news ul li article a {
  display: flex;
  padding: 0.5rem 0;
}
#top .news ul li article a time {
  margin: 0 1rem 0 0;
  font-size: 0.8rem;
  opacity: 0.8;
}
#top .story {
  text-align: center;
}
#top .story h3 {
  font-size: 2rem;
  margin: 0 0 2rem;
}
#top .story p {
  font-weight: bold;
  line-height: 2.8rem;
}
#top .story img {
  display: block;
  margin: 6rem 0 0;
}
#top .store ul {
  display: flex;
  margin: 0 -0.5rem;
}
#top .store ul li {
  width: 50%;
  padding: 0.5rem;
}
#top .store ul li.sangubashi article a {
  background: url(../images/store-sangubashi.jpg) center center no-repeat;
  background-size: cover;
}
#top .store ul li.hatagaya article a {
  background: url(../images/store-hatagaya.jpg) center center no-repeat;
  background-size: cover;
}
#top .store ul li article a {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8rem 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#top .store ul li article a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
}
#top .store ul li article a div {
  position: relative;
  z-index: 1;
  text-align: left;
}
#top .store ul li article a div h3 {
  font-size: 2.5rem;
  transform: scaleY(0.8);
  line-height: 1em;
  margin: 0 0 1.5rem;
}
#top .store ul li article a div span {
  display: block;
  font-size: 0.8rem;
  font-family: serif;
}
#top .store ul li article a div p {
  display: block;
  font-size: 0.9rem;
  font-family: serif;
}

/* ---------------------------------------------------✁
	店舗情報
------------------------------------------------------*/
.page-store .store p {
  font-weight: bold;
  text-align: center;
  display: block;
  line-height: 2rem;
  margin: 4rem 0;
}
.page-store .store .detail {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
}
.page-store .store .detail .text {
  width: 50%;
  padding: 3rem;
}
.page-store .store .detail .text .button {
  font-size: 0.9rem;
  line-height: 1rem;
  margin: 1rem 0 0;
  color: #FFF;
  background: #df7100;
  border: 1px solid #df7100;
  padding: 1.2rem 1.5rem;
}
.page-store .store .detail .text dl {
  margin: 0.25rem 0;
  font-size: 0.9rem;
}
.page-store .store .detail .text dl dt {
  display: inline;
  font-weight: normal;
}
.page-store .store .detail .text dl dd {
  display: inline;
}
.page-store .store .detail .text dl dd img {
  width: 1.5rem;
}
.page-store .store .detail .map {
  width: 50%;
}
.page-store .store .detail .map iframe {
  width: 100%;
}

.store-photo {
  margin: 4rem 0;
}
.store-photo ul li {
  width: 100%;
  height: 56.25vw;
  position: relative;
}
.store-photo ul li img {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.store-photo ul li article {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}
.store-photo ul li article h3 {
  margin: 0 0 0.5rem;
}
.store-photo ul li article p {
  font-size: 0.8rem;
}

.menu-list section {
  padding: 3rem 0;
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  flex-wrap: wrap;
}
.menu-list section .image {
  width: 40%;
  padding-right: 2rem;
}
.menu-list section .image img {
  width: 100%;
}
.menu-list section .text {
  width: 60%;
}
.menu-list section .text h3 {
  margin: 0 0 1rem;
  font-size: 1.6rem;
}
.menu-list section .text ul li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.menu-list section .text ul li h4 {
  font-weight: normal;
  font-size: 1rem;
}
.menu-list section .text ul li span {
  font-size: 1.2rem;
}
.menu-list section .text ul li:last-child {
  border: none;
}
.menu-list section .text.category-20 {
  display: none;
}

.page-store.sangubashi .title {
  background: url(../images/store-sangubashi.jpg) center center no-repeat;
  background-size: cover;
}
.page-store.hatagaya .title {
  background: url(../images/store-hatagaya.jpg) center center no-repeat;
  background-size: cover;
}
.page-store .title {
  padding: 15vw 0;
  text-align: center;
  color: #FFF;
}
.page-store .title::before {
  content: "";
  background: #000;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.page-store .title h1 {
  font-size: 3rem;
  transform: scaleY(0.8);
  line-height: 1em;
  position: relative;
  z-index: 2;
}
.page-store .title span {
  font-size: 0.8rem;
  font-family: serif;
  position: relative;
  z-index: 2;
}

/* ---------------------------------------------------✁
	ページ送り
------------------------------------------------------*/
.wp-pagenavi {
  font-size: 0.9rem;
  margin: 2rem 0;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.wp-pagenavi a, .wp-pagenavi span {
  border: none;
  line-height: 2.7rem;
  width: 3rem;
  height: 3rem;
  text-align: center;
  padding: 0 5px;
  box-sizing: border-box;
  font-size: 1rem;
  border: none !important;
  font-weight: bold;
}
.wp-pagenavi a {
  background: #FFF;
  border: 1px solid #000 !important;
  color: #444;
  border-radius: 0.3rem;
}
.wp-pagenavi a.last {
  display: none;
}
.wp-pagenavi a:hover {
  text-decoration: none;
  background: #000;
  color: #FFF;
}
.wp-pagenavi .first {
  font-size: 0.7rem;
}
.wp-pagenavi .pages {
  width: auto;
}
.wp-pagenavi .current {
  background: #000;
  color: #FFF;
  border: 1px solid #000 !important;
  border-radius: 0.3rem;
}

/* ---------------------------------------------------✁
	記事詳細
------------------------------------------------------*/
main > article {
  overflow: hidden;
}

.post {
  padding-bottom: 0;
  overflow: hidden;
  position: relative;
}
.post #ez-toc-container {
  width: 100%;
  padding: 1.2rem 1.2rem 0.5rem;
  border: 1px solid #FFF;
  border-radius: 1rem;
  background: none;
  margin: 1rem 0 2rem;
}
.post #ez-toc-container p {
  font-size: 1rem;
  padding: 0 0 1rem;
  display: block !important;
}
.post #ez-toc-container ul li {
  border-top: 1px solid #5b5b5b;
}
.post #ez-toc-container ul li a {
  color: #FFF;
  display: block;
  padding: 0.7rem 0;
  font-size: 0.9rem;
}
.post .post-header {
  margin: 0.5rem 0 1.5rem;
}
.post .post-header .meta {
  display: flex;
  flex-wrap: wrap;
}
.post .post-header .meta .category {
  margin: 0 0.5rem 0.5rem 0;
}
.post .post-header .meta .category a {
  font-size: 0.7rem;
  font-weight: bold;
  color: #FFF;
  background: #000;
  display: inline-block;
}
.post .post-header .meta .tags {
  display: flex;
  align-items: center;
}
.post .post-header .meta .tags ul {
  display: flex;
  flex-wrap: wrap;
}
.post .post-header .meta .tags ul li {
  margin: 0 0.5rem 0.3rem 0;
  line-height: 1.5em;
}
.post .post-header .meta .tags ul li a {
  color: #000;
  font-size: 0.7rem;
  font-weight: bold;
  line-height: 1.5em;
  display: block;
}
.post .post-header .meta .tags ul li a:before {
  content: "#";
}
.post .post-header h1 {
  font-size: 1.5rem;
  margin: 0.5rem 0;
  width: 125%;
  transform: scaleX(0.8);
  transform-origin: left;
}
.post .post-header time {
  font-size: 0.7rem;
  font-family: serif;
}
.post .eyecatch {
  margin: auto;
  width: 100%;
  max-width: 1200px;
}
.post .eyecatch img {
  width: 100%;
  height: auto;
  max-width: 1200px;
  margin: auto;
  display: block;
}
.post .share {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 2rem;
}
.post .share h3 {
  margin: 0 1rem;
  color: #FFF;
}
.post .share ul {
  display: flex;
}
.post .share ul li {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.post .share ul li a {
  margin: 0 0.5rem;
  font-size: 0.7rem;
  border: 1px solid #FFF;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.post .share ul li a img {
  width: 1.2rem;
  line-height: 2.5rem;
}
.post .post-aside {
  width: 100%;
  padding: 0 1rem;
}
.post .post-aside section {
  margin: 0 0 1.5rem;
  border: 1px solid #FFF;
  border-radius: 0.5rem;
}
.post .post-aside section.ad, .post .post-aside section.ad-half {
  border: none;
}
.post .post-aside section header h3 {
  font-size: 1rem;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #000;
  text-align: center;
}
.post .post-aside section .main-content {
  padding: 1rem;
}
.post .post-aside .description #ez-toc-container {
  display: none;
}
.post .post-aside .gallery ul {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 0.2rem);
  margin: 0 -0.2rem;
}
.post .post-aside .gallery ul li {
  width: 25%;
  padding: 0.2rem;
}
.post .post-aside .gallery ul li .thumbnail {
  padding-bottom: 100%;
}
.post .post-aside .gallery ul li .thumbnail a {
  border: 1px solid #000;
}
.post .post-aside .gallery ul li .thumbnail a img {
  height: 100% !important;
  object-fit: cover;
}
.post .post-aside .author .image {
  max-width: 8rem;
  border-radius: 50%;
  border: 1px solid #000;
  overflow: hidden;
  margin: auto;
  font-size: 0;
}
.post .post-aside .author .image br {
  display: none;
}
.post .post-aside .author .image img {
  height: 100%;
}
.post .post-aside .author h4 {
  font-size: 1rem;
  margin: 1rem 0 0.5rem;
  text-align: center;
}
.post .post-aside .author p {
  display: block;
  line-height: 1.7em;
  font-size: 0.8rem;
}
.post .post-aside .author ul {
  display: flex;
  margin: 0.8rem 0 0;
  align-items: center;
  position: relative;
}
.post .post-aside .author ul li {
  margin: 0 0.2rem 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.post .post-aside .author ul li a {
  font-size: 0.7rem;
  background: #000;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.post .post-aside .author ul li a img {
  display: block;
  width: 1rem;
  line-height: 2rem;
}
.post .post-aside .keyword .tags-list li {
  display: inline-block;
  margin: 0 0.3rem 0.3rem 0;
}
.post .post-aside .keyword .tags-list li a {
  font-size: 0.7rem;
  font-weight: bold;
  color: #FFF;
  background: #000;
  display: inline-block;
  border-radius: 9999px;
  padding: 0 0.8rem;
}
.post .post-aside .keyword .tags-list li a::before {
  content: "#";
}

.copy-success {
  display: none;
  position: fixed;
  width: 20rem;
  height: 3rem;
  line-height: 3rem;
  background: #FFF;
  color: #000;
  top: calc(50vh - 3rem);
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  border-radius: 0.5rem;
  z-index: 10;
  font-weight: bold;
}

.recommend {
  background: #ffee2b;
}
.recommend .yarpp-related {
  margin: 0;
}

/* ---------------------------------------------------✁
	記事本文
------------------------------------------------------*/
.entry-content {
  line-height: 1.7em;
  padding-top: 1rem;
}
.entry-content p {
  margin: 1rem 0;
  line-height: 1.7em;
  overflow: hidden;
  font-size: 1rem;
}
.entry-content a {
  text-decoration: underline;
  color: #005B8B;
}
.entry-content a:hover {
  text-decoration: none;
}
.entry-content h2 {
  font-size: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  margin: 4rem 0 0;
  width: 125%;
  transform: scaleX(0.8);
  transform-origin: left;
}
.entry-content h3 {
  font-size: 1.2rem;
  padding: 0.25rem 0;
  margin: 3rem 0 0;
}
.entry-content h4, .entry-content h5, .entry-content h6 {
  font-size: 1rem;
  padding: 0.5rem 0;
}
.entry-content img {
  width: auto;
  height: auto;
  margin: 1rem 0;
  display: block;
  margin: auto;
  border: 1px solid #000;
}
.entry-content .wp-caption {
  width: 100% !important;
  background: #FFF;
  border: 1px solid #000;
  margin: 1rem 0;
}
.entry-content .wp-caption img {
  margin: 0;
  width: 100%;
  border: none;
}
.entry-content .wp-caption p, .entry-content .wp-caption wp-caption-text {
  padding: 0.5rem;
  font-size: 0.9rem;
  margin: 0;
}
.entry-content .wp-block-table {
  overflow-x: scroll;
}
.entry-content .wp-block-table table {
  max-width: 640px;
  width: max-content;
}
.entry-content ul li {
  margin-left: 1.6rem;
  list-style: disc;
}
.entry-content table {
  border-collapse: collapse;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  margin: 1em 0;
  background: #FFF;
  width: 100%;
}
.entry-content table tr th, .entry-content table tr td {
  border: none;
  padding: 0.7rem;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  font-size: 0.9em;
  line-height: 1.6em;
  word-break: break-all;
  width: auto !important;
  height: auto !important;
  vertical-align: top;
  text-align: left;
}
.entry-content table tr th, .entry-content table tr td:first-child {
  vertical-align: top;
  font-weight: normal;
  font-weight: bold;
  min-width: 7rem;
}
.entry-content pre {
  white-space: normal;
  background: #FFF;
  padding: 1rem;
  border: 1px solid #000;
  font-weight: normal;
}
.entry-content blockquote {
  padding: 2rem;
  background: #FFF;
  position: relative;
  margin: 1rem 0;
  border: 1px solid #000;
}
.entry-content blockquote:before {
  display: inline-block;
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  color: #cfcfcf;
  font-size: 1rem;
  line-height: 1;
  font-weight: 900;
}
.entry-content blockquote p {
  margin-bottom: 1rem;
  font-size: 15px;
  font-style: italic;
}
.entry-content .wp-block-group .wp-block-image {
  margin: 0.25rem 0;
}
.entry-content .wp-block-image {
  margin: 2rem 0;
}
.entry-content .wp-block-image img {
  width: auto;
  max-width: 100%;
  max-height: 1200px;
}
.entry-content .wp-block-image .wp-element-caption {
  background: #FFF;
  padding: 0.5rem;
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.5em;
  border: 1px solid #000;
  border-top: none;
}
.entry-content iframe {
  width: 100%;
}
.entry-content .wpap-tpl-with-detail {
  border: 1px solid #000 !important;
  border-radius: 0.5rem;
  width: 100%;
  max-width: 100%;
}

.wp-block-embed-youtube .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 1.5rem 0;
}
.wp-block-embed-youtube .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.youtube-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 1.5rem 0;
}
.youtube-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wp-block-spacer {
  height: 1.7rem !important;
}

.post .post-main .entry-content.photo-only {
  padding-top: 0;
}
.post .post-main .entry-content.photo-only h2, .post .post-main .entry-content.photo-only h3, .post .post-main .entry-content.photo-only h4, .post .post-main .entry-content.photo-only p, .post .post-main .entry-content.photo-only table {
  display: none;
}

.entry-content.text-only {
  padding: 0;
}
.entry-content.text-only .wp-block-image {
  display: none;
}

/* ---------------------------------------------------✁
	一覧
------------------------------------------------------*/
#archive .content > header {
  padding: 1rem 0;
}
#archive .content > header h2 {
  font-family: serif;
}
#archive .content > header p {
  font-size: 0.8rem;
  margin: 0.5rem 0 0;
  line-height: 1.5rem;
}
#archive .content > header .searchform {
  margin: 0.5rem 0 0;
}
#archive .content .message {
  padding: 3rem 0 6rem;
  font-weight: bold;
  font-size: 1.2rem;
}
#archive .content .message .emoji {
  font-size: 1.5rem;
}

/* ---------------------------------------------------✁
	固定ページ
------------------------------------------------------*/
/* ---------------------------------------------------✁
	404
------------------------------------------------------*/
#page-404 {
  padding: 12rem 0;
}
#page-404 .title {
  margin: 0 auto;
}
#page-404 .title h2 {
  margin: 0 0 1rem;
  font-size: 5rem;
}
#page-404 p {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: bold;
}

/*# sourceMappingURL=common.css.map */
