@charset "utf-8";

/*
COLORS
================================================ */
:root {
  /* Color */
  --light-grey: #ccc;
  --grey: #666;
  --dark-grey: #707070;
  --green: #7bba93;
  --dark-blue: #39565C;
  --white: #fff;
  --pale-yellow: #F9F9F4;
  
  /* Font/Space Size */
  --font-sm: .75rem;
  --font-md: 1rem;
  --font-lg: 1.25rem;
  --font-xl: 1.625rem;

  /* Border Radius Size */
  --round-sm: 6px;
  --round-md: 10px;
  --round-lg: 50%;
}

/*
LAYOUT
================================================ */
.wrapper {
  max-width: 1000px;
  width: 100%;
  margin: 30px auto 40px;
  padding: 0 1rem;
}

/*
SINGLE / PAGE ARTICLE
POST LIST
================================================ */
.post-list {
  /* display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem; */
  margin-bottom: 3rem;
}

.post-item {
  background: var(--white);
  /* border-radius: var(--round-md); */
  /* position: relative; */
}

.post-item .wp-post-image {
  /* border-radius: var(--round-md) var(--round-md) 0 0; */
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.post-title {
  margin-bottom: .5rem;
  line-height: 1.5;
  word-break: break-word;
}

.post-date {
  font-size: var(--font-md);
}

.post-categories li {
  font-size: var(--font-md);
  /* padding: .5rem; */
}

/*
SINGLE / PAGE ARTICLE
================================================ */
.single .post-header h2,
.page .post-header h2 {
  position: relative;
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
  border-bottom: solid 1px #888;
  width: 1200px;
  max-width: 95%;
  margin: 0 auto 30px;
  padding: 0 0 15px 0;
}

.single .post-header h2::after,
.page .post-header h2::after {
  content: '';
  position: absolute;
  display: block;
  border-bottom: solid 3px #000000;
  bottom: -2px;
  width: 30px;
}

.single .post-header {
  padding: 4rem 1rem 2rem;
}

.page .post-header {
  padding: 1rem;
}

.single .wp-post-image+.post-header,
.page .wp-post-image+.post-header {
  padding-top: 1rem;
}

@media(min-width: 768px) {

  .post-item .wp-post-image {
    aspect-ratio: 4 / 3;
  }

  .single .post-item .wp-post-image,
  .page .post-item .wp-post-image {
    aspect-ratio: 16 / 9;
  }

  .single .post-item:hover,
  .page .post-item:hover {
    box-shadow: none;
  }

  .single .wp-post-image+.post-header,
  .page .wp-post-image+.post-header {
    padding-top: 2rem;
  }
}

/*
投稿部CSS
================================================ */
.post_content h2 {
  font-size: 1.6em;
  line-height: 1.6;
  position: relative;
  padding: 0 0 0.75em;
  margin: 0 auto 0.75em;
}
.post_content h2::before {
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  content: '';
  background: #000000;
  bottom: 0;
  z-index: 0;
}
.post_content h2::after {
  height: 3px;
  width: 100px;
  position: absolute;
  left: 0;
  content: '';
  background: #000000;
  bottom: 0;
  z-index: 2;
}
.post_content h3 {
  font-size: 1.25em;
  line-height: 1.6;
  background: #ffffff;
  padding: 0.5em 0.75em;
  margin-bottom: 0.5em;
  color: #000000;
}
.post_content h4 {
  border-bottom: 1px dotted #000000;
  line-height: 1.6;
  font-size: 1.1em;
  padding: 0 0 0.25em;
  margin-bottom: 0.75em;
  color: #000000;
}
.post_content h5 {
  line-height: 1.8;
  margin-bottom: 0.5em;
}
.post_content p {
  position: relative;
  font-family: "ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 500;
  line-height: 2.2;
  font-feature-settings: "palt";
}
.post_content th, .post_content td {
  line-height: 1.8;
  text-align: left;
  padding: 1em 0;
  vertical-align: top;
}
.post_content th {
  width: 25%;
  border-bottom: 1px solid #000000;
  font-weight: 500;
  padding-right: 1em;
}
.post_content td {
  border-bottom: 1px solid #000000;
}
.post_content li {
  line-height: 1.8;
  margin-bottom: 0.5em;
  position: relative;
}
.post_content li:last-of-type {
  margin-bottom: 0;
}
@media only screen and (max-width: 485px) {
  .post_content th, .post_content td {
    display: block;
    width: 100%;
  }
  .post_content th {
    padding: 0 0 0.5em;
    border-bottom: none;
    color: #000000;
  }
  .post_content td {
    padding: 0 0 1em;
    margin-bottom: 1em;
  }
}

.single .post_content h1 {
  font-size: 1.8em;
  border-bottom: 4px solid #000000;
  line-height: 1.6;
  padding-bottom: 0.25em;
  margin-bottom: 1em;
}
.single .post_content h2 {
  padding-bottom: 0.5em;
}
.single .post_content p {
  margin-bottom: 1.5em;
}
.single .post_content blockquote p {
  margin-bottom: 0;
}

/* alignment */
.post_content .alignright {
  float: right;
}
.post_content .alignleft {
  float: left;
}
.post_content .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 7px;
}
.post_content blockquote.alignleft, .post_content img.alignleft {
  margin: 7px 24px 7px 0;
}
.post_content .wp-caption.alignleft {
  margin: 7px 14px 7px 0;
}
.post_content blockquote.alignright, .post_content img.alignright {
  margin: 7px 0 7px 24px;
}
.post_content .wp-caption.alignright {
  margin: 7px 0 7px 14px;
}
.post_content blockquote.aligncenter, .post_content img.aligncenter, .post_content .wp-caption.aligncenter {
  margin-top: 7px;
  margin-bottom: 7px;
}
/* image */
.post_content img[class*="align"], .post_content img[class*="wp-image-"], .post_content img[class*="attachment-"], .post_content img.size-full, .post_content img.size-large, .post_content .wp-post-image, .post_content img {
  height: auto;
  max-width: 100%;
}
/* block quote */
.post_content blockquote {
  margin: 0 auto 1.5em;
  padding: 2em;
  border: 1px solid #000000;
  position: relative;
}
.post_content blockquote:before {
  content: '"';
  font-style: italic;
  font-size: 30px;
  font-weight: normal;
  line-height: 40px;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 5px;
  left: 10px;
  color: #000000;
}
.post_content blockquote:after {
  content: '"';
  font-style: italic;
  font-size: 30px;
  font-weight: normal;
  text-align: left;
  line-height: 60px;
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 7px;
  right: -2px;
  color: #000000;
}
.post_content blockquote cite {
  border-top: 1px dotted #aaa;
  display: block;
  padding: 20px 0 0 0;
  font-style: italic;
  text-align: right;
  font-size: 90%;
}
/* captions */
.post_content .wp-caption {
  margin-bottom: 24px;
  background: #f7f2f2;
  border: 1px solid #ccc;
  padding: 5px;
  max-width: 100%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.post_content .wp-caption-text {
  text-align: center;
  font-size: 12px;
  font-style: italic;
  line-height: 1.5;
  margin: 9px auto;
}
.post_content .wp-caption img[class*="wp-image-"] {
  display: block;
  margin: 0 auto;
}

/*
投稿ページ前後遷移ボタン
================================================ */
.prevNext {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%
}

.prevNext .prevNext_item {
  width: 50%
}

.prevNext .prevNext_item a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #000;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none
}

.prevNext .prevNext_item a i {
  color: #45C6E5;
  font-size: 28px
}

.prevNext .prevNext_item a span {
  display: inline-block;
  padding: 0 10px
}

.prevNext .prevNext_item a:hover span {
  text-decoration: underline
}

.prevNext .prevNext_item-prev {
  border-right: 1px solid #224163;
  margin-right: auto
}

.prevNext .prevNext_item-next {
  text-align: right;
  margin-left: auto
}

@media only screen and (max-width: 768px) {
  .prevNext .prevNext_item a {
    font-size: 12px
  }

  .prevNext .prevNext_item a i {
    font-size: 18px
  }
}

/*
お問い合わせFORM
================================================ */
.form {
  max-width: 800px;
  width: 85%;
  margin: auto
}

.form_group {
  padding: 30px 0;
  border-bottom: 1px dotted #ccc
}

.form_group:last-child {
  border-bottom: 0;
  padding-bottom: 0
}

.form_group label {
  font-weight: bold;
  font-size: 16px
}

.form_group label span {
  font-size: 12px;
  font-weight: bold;
  color: #D93B00
}

.form_group>div input,
.form_group>div textarea {
  padding: 10px;
  font-size: 16px;
  width: 100%
}

.form_btn {
  margin: auto;
  max-width: 80%
}

.form_btn input {
  color: #fff;
  background-color: #000;
  border-color: #000
}

.form_btn-back {
  margin: auto;
  max-width: 80%;
  padding-top: 30px
}

.form_btn-back input {
  color: #000;
  background-color: #fff;
  border-color: #ccc
}

/*
お問い合わせ・Calendar TOP画像
================================================ */
/* .title {
  height: 310px;
  background-image: url(../img/price/price-top.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  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: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000000;
}

.title h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: bold;
}

.title p {
  font-size: 14px;
  margin-top: 15px;
} */

/*
予約calendar
================================================ */
.calendar iframe {
  display: block;
  width: 100%;
  height: 1000px;
}

@media (max-width: 768px) {
  .calendar iframe {
    height: 800px;
  }
}