@charset "utf-8";
/* CSS Document */
:root {
  /* 欧文＝Cormorant Garamond、和文＝Zen Old 明朝。
     欧文を先に置くと、欧文・数字は Cormorant、和文は Zen Old 明朝へ自動で振り分かる。
     Webフォント読込前・非対応環境は端末の明朝へ。 */
  --font-base: "Cormorant Garamond", "Zen Old Mincho", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;
  --txt: #4F4F4A;        /* 本文：明朝の細い横画でも沈まない濃さ */
  --txt-strong: #2F2F2B; /* 見出し・強調 */

  /* 余白スケール（8px 基準）。縦のリズムはすべてここから取る */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 40px;
  --sp-5: 64px;
  --sp-6: 96px;   /* セクション間 */
  --gutter: 24px; /* 画面左右の最小余白 */

  /* ボタン */
  --btn-py: 16px;    /* 上下の余白 */
  --btn-px: 44px;    /* 左右の余白 */
  --btn-min: 220px;  /* 最小幅 */
  --btn-fs: 15px;

  /* 字送り */
  --ls-display: 0.2em;  /* 大見出しの欧文 */
  --ls-sub: 0.15em;     /* 副題・ラベル */
  --ls-body: 0.06em;    /* 本文 */
}
@media (max-width: 768px) {
  :root {
    --sp-4: 28px;
    --sp-5: 40px;
    --sp-6: 56px;
    --gutter: 20px;
    --btn-py: 14px;
    --btn-px: 32px;
    --btn-min: 180px;
  }
}
html, body {
  font-size: 100%;
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: var(--font-base);
  /* palt=和文の詰め、lnum=ライニング数字。
     Cormorant の既定はオールドスタイル数字で、x ハイトまでしかなく
     3・5・7・9 が下に落ちるため和文と並ぶと小さく不揃いに見える。 */
  font-feature-settings: "palt" 1, "lnum" 1;
  color: var(--txt);
}
.mincho{
    font-family: var(--font-base);
}
@font-face {
  font-family: 'din';
  src: url('./fonts/D-DIN-PRO-400-Regular.otf');
  font-weight: 400;
}
a:link {
  text-decoration: none;
  color: #000;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a:visited, a:active, a:hover {
  text-decoration: none;
  color: #000;
}
p, ul li, ol li, table, dt, dd {
  font-size: 90%;
  letter-spacing: var(--ls-body);
  line-height: 2.0em;
  text-align: left;
}
hr {
  margin: 100px 0;
}
img {
  max-width: 100%;
  height: auto;
}
.wrapper {
  width: 100%;
}
.wrap {
  box-sizing: border-box;
  max-width: calc(1100px + var(--gutter) * 2);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
h1 {
  width: 240px;
  height: 96px;
  z-index: 3;
  top: 10px;
  left: 20px;
  position: absolute;
  margin: 0;
}
h1 a {
  width: 200px;
  height: 130px;
  display: block;
  background: url("../image/logo.svg");
  background-size: 210px 130px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.slickwrap {
  width: 100%;
  position: relative;
  top: 0;
  height: 100vh;
}
.slick .fade::before {
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  z-index: 2;
}
.slick img {
  bottom: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 100px;
  z-index: 3;
}
@media (max-width: 1000px) {
  .slick img {
    bottom: 0;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 80%;
    width: auto;
    right: auto;
  }
}
.slickwrap div.fade {
  outline: none;
  height: 100vh;
}
.slick div.fade:nth-child(1) {
  background: url("../image/slide1.jpg") no-repeat center center;
  background-size: cover;
}
.slick div.fade:nth-child(2) {
  background: url("../image/slide2-2.jpg") no-repeat center center;
  background-size: cover;
}
.slick div.fade:nth-child(3) {
  background: url("../image/slide3.jpg") no-repeat center center;
  background-size: cover;
}
section {
  padding: var(--sp-5) 0px;
  background: #fff;
}
.about .box:nth-child(1)::after {
  content: "";
  position: absolute;
  right: 0px;
  top: -10px;
  width: 60px;
  height: 140px;
  background: url("../image/flower.png") center center/cover no-repeat;
}
@media (max-width: 1000px) {
  .about .box:nth-child(1)::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 40px;
    width: 60px;
    height: 140px;
    background: url("../image/flower.png") center center/cover no-repeat;
  }
}
.about .box:nth-child(1) {
  padding: 50px 0px;
}
.about .box:nth-child(1) p:nth-of-type(1) {
  font-size: 140%;
}
.about .box:nth-child(2) {
  background: url("../image/about1.jpg") center center/cover no-repeat;
  aspect-ratio: 1;
}
.about .box:nth-child(3) {
  background: url("../image/about2.jpg") center center/cover no-repeat;
  aspect-ratio: 1;
}
/* セクション先頭以外に現れる大見出しには上余白を足す */
* + .sec_ttl {
  margin-top: var(--sp-5);
}
.sec_ttl {
  text-align: center;
  font-weight: normal;
  letter-spacing: var(--ls-display);
  font-size: clamp(28px, 4vw, 45px);
  line-height: 1.4;
  margin: 0 0 var(--sp-4);
  font-family: var(--font-base);
}
.grey_bg {
  background: #eeede9;
  padding: var(--sp-5) 0px;
}
a.btn {
  text-decoration: none;
  display: inline-block;
  box-sizing: border-box;
  padding: var(--btn-py) var(--btn-px);
  min-width: var(--btn-min);
  font-size: var(--btn-fs);
  letter-spacing: var(--ls-display);
  line-height: 1;
  color: #AFAFAF;
  background: transparent;
  position: relative;
  text-align: center;
  max-width: 100%;
  border: 1px solid #AFAFAF;
  margin: var(--sp-2) 0px;
  transition: 0.3s ease-in-out;
}
a.btn:hover {
  background: #AFAFAF;
  color: #fff;
}
.mt_space{
	margin-top: var(--sp-5);
}
.voice {
  padding: 0px;
}
.voice .viewmore {
  float: right;
  padding-right: 10px;
  font-size: 90%;
}
.voice .flexbox .box p:nth-of-type(1) {
  font-weight: normal;
  letter-spacing: 0.1em;
  color: var(--txt-strong);
  margin: 0px;
  color: #74692A
}
.voice .flexbox .box p:nth-of-type(2) {
  font-family: var(--font-base);
  margin: 0px;
}
.voice .flexbox .box {
  padding: 10px;
}
.bridal_ring .flexbox {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}
.bridal_ring .flexbox .box {
  display: flex;
  flex-direction: column;
  padding-bottom: var(--sp-5);
}
/* 説明文が伸びる余白として使い、ボタンを下端に固定する */
.bridal_ring .flexbox .box p:nth-of-type(3) {
  margin-bottom: var(--sp-3);
}
.bridal_ring .flexbox .box img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.bridal_ring .flexbox .box:nth-child(1) {
  background: #B5B4A1;
}
.bridal_ring .flexbox .box:nth-child(2) {
  background: #A7A6B2;
}
.bridal_ring .flexbox .box:nth-child(3) {
  background: #AFAFAF;
}
.bridal_ring .flexbox .box p {
  color: #fff;
  padding: 0px 40px;
}
.bridal_ring .flexbox .box p:nth-of-type(1) {
  letter-spacing: 0.2em;
  font-size: 150%;
  margin: 20px 0px;
}
.bridal_ring .flexbox .box p:nth-of-type(2) {
  margin: 0px 0px var(--sp-3);
  font-size: 120%;
  letter-spacing: var(--ls-sub);
}
.bridal_ring .flexbox .box a.btn {
  background: transparent;
  color: #fff;
  margin: auto 40px 0px 40px;   /* margin-top:auto で下端へ */
  align-self: flex-start;
  border: 1px solid #FFF;
}
/* ホバーで白塗り＋パネル色の文字に反転 */
.bridal_ring .flexbox .box a.btn:hover {
  background: #fff;
}
.bridal_ring .flexbox .box:nth-child(1) a.btn:hover {
  color: #B5B4A1;
}
.bridal_ring .flexbox .box:nth-child(2) a.btn:hover {
  color: #A7A6B2;
}
.bridal_ring .flexbox .box:nth-child(3) a.btn:hover {
  color: #AFAFAF;
}
.column {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: stretch;
  background: #eeede9;
}
.owner_box {
  background: url("../image/takehiro2.jpg")top center/cover;
  color: #fff;
  box-sizing: border-box;
  width: 40%;
  position: relative;
}
.owner_box p {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
}
.column_box {
  box-sizing: border-box;
  padding: var(--sp-3);
  gap: var(--sp-3);
}
/* .flexbox の align-items:center を上書きするため詳細度を上げる */
.flexbox.column_box {
  align-items: stretch;   /* 同じ行のカードを同じ高さに */
}
.column_box .box {
  background: #fff;
  width: calc(50% - var(--sp-3) / 2);
  margin: 0;
  box-sizing: border-box;
  padding: var(--sp-3);
  box-shadow: 0px 0px 5px #ccc;
  /* 左に画像、右に日付・タイトル・ボタン。ボタンは行の下端へ */
  display: grid;
  grid-template-columns: 120px 1fr;
  grid-template-rows: auto auto 1fr;
  column-gap: var(--sp-3);
}
.column_box .box img {
  max-width: 120px;
  width: 120px;
  vertical-align: bottom;
  float: none;
  margin: 0;
  grid-column: 1;
  grid-row: 1 / -1;
  align-self: start;
}
.column_box .box p {
  margin: 0px;
  grid-column: 2;
}
.column_box .box a.btn {
  margin: var(--sp-3) 0px 0px 0px;
  grid-column: 2;
  align-self: end;
  justify-self: start;
}
.column_box .box p:nth-of-type(1) {
  font-weight: normal;
  letter-spacing: 0.1em;
  margin: 0px 0px var(--sp-2);
  color: #74692A;
}
.column_box a.viewmore {
  width: 100%;
  text-align: right;
  padding: 0px;
  box-sizing: border-box;
  font-size: 90%;
}
@media (max-width: 1000px) {
  .column {
    flex-wrap: wrap;
  }
  .owner_box {
    width: 100% !important;
    aspect-ratio: 2;
  }
  .owner_box {
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .column_box .box {
    width: 100%;
  }
}
.map {
  width: 100%;
  height: 300px;
}
.address {
  max-width: 800px;
  margin: 30px auto;
  flex-wrap: wrap;
  display: flex;
}
.logo {
  width: 20%;
}
.address p {
  width: 80%;
  padding: 0px 30px;
  box-sizing: border-box;
}
.logo img {
  filter: invert(100%) sepia(6%) saturate(7500%) hue-rotate(331deg) brightness(106%) contrast(107%);
  max-width: 200px;
}
@media (max-width: 768px) {
  .logo {
    width: 100%;
    text-align: center
  }
  .address p {
    width: 100%;
    padding: 0px 15px;
    box-sizing: border-box;
    text-align: center
  }
}
.page_head {
  height: 300px;
  width: 100%;
  position: relative;
}
.page_head:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  top: 0;
}
.page_head_engagement {
  background: url("../image/page_head_engagement.jpg") center center/cover no-repeat;
}
.page_head_marriage {
  background: url("../image/page_head_marriage.jpg") center center/cover no-repeat;
}
.page_head_set {
  background: url("../image/page_head_set.jpg") center center/cover no-repeat;
}
.page_head_customervoice {
  background: url("../image/page_head_customervoice.jpg") center center/cover no-repeat;
}
.page_head_about {
  background: url("../image/page_head_about.jpg") center center/cover no-repeat;
}
.page_head_column {
  background: url("../image/page_head_column.jpg") center center/cover no-repeat;
}
.page_head h2 {
  position: absolute;
  font-weight: normal;
  color: #fff;
  z-index: 2;
  top: 120px;
  transform: translateX(-50%);
  left: 50%;
  text-align: center;
  letter-spacing: 0.2em;
  font-size: 250%;
  font-family: var(--font-base);
}
.page_head h2 span {
  display: block;
  font-size: 13px;
  font-family: var(--font-base);
  font-weight: normal;
  letter-spacing: 0.24em;
}
h2.page_ttl {
  text-align: center;
  font-weight: normal;
  letter-spacing: var(--ls-sub);
  line-height: 1.9;
  margin: var(--sp-5) 0 var(--sp-4);
  font-family: var(--font-base);
  font-feature-settings: "palt" 1;
  color: var(--txt-strong);
  font-size: 32px;
}
.cat_head .flexbox {
  align-items: stretch;
  max-width: 1600px;
  margin: 0 auto;
}
.cat_head .flexbox .box {
  padding: 10px 20px;
  box-sizing: border-box;
}
.cat_head .engagement .box:nth-child(1) {
  background: url("../image/cat_head_engagement.jpg") center center/cover no-repeat;
}
.cat_head .marriage .box:nth-child(1) {
  background: url("../image/cat_head_marriage.jpg") center center/cover no-repeat;
}
.cat_head .set .box:nth-child(1) {
  background: url("../image/cat_head_set.jpg") center center/cover no-repeat;
}
@media (max-width: 1000px) {
  h2.page_ttl {
    font-weight: normal;
    letter-spacing: 0.1em;
    font-size: 120%;
  }
  .cat_head .box:nth-child(1) {
    aspect-ratio: 3/1;
  }
  .cat_head .box br {
    display: none;
  }
}
h2.cat_ttl {
  color: #A7A6B2;
  font-weight: normal;
  letter-spacing: var(--ls-sub);
  line-height: 1.5;
  position: relative;
  margin: var(--sp-5) 0px var(--sp-4);
	font-family: var(--font-base);
}
h2.cat_ttl:after {
  content: "";
  width: 40px;
  height: 2px;
  background: #A7A6B2;
  position: absolute;
  left: 0;
  bottom: -14px;
}
.item {
  justify-content: flex-start !important;
}
.item .box {
  padding: var(--sp-2) var(--sp-1) var(--sp-4);
}
.item .box p:nth-of-type(1) {
  font-weight: normal;
  letter-spacing: 0.1em;
  color: var(--txt-strong);
  margin: 0px;
  color: #74692A
}
.item .box p:nth-of-type(2) {
  margin: 0px;
  font-size: 70%;
}
.cat_select {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 0px;
}
.cat_select a {
  width: 48%;
  display: block;
  color: #fff;
  position: relative;
  box-sizing: border-box;
  padding: 30px;
  font-size: 120%;
}
.cat_select a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  transition: 0.3s ease-in-out;
}
.cat_select a:hover:after {
  background: rgba(0, 0, 0, 0.8);
}
.cat_select a p {
  z-index: 1;
  position: relative;
  font-family: var(--font-base);
}
.cat_select a.cat_marriage {
  background: url("../image/page_head_marriage.jpg") center center/cover no-repeat;
}
.cat_select a.cat_engagement {
  background: url("../image/page_head_engagement.jpg") center center/cover no-repeat;
}
.cat_select a.cat_set {
  background: url("../image/page_head_set.jpg") center center/cover no-repeat;
}
@media (max-width: 768px) {
  .cat_select a {
    width: 100%;
  }
}
.cat_select a span {
  display: block;
  font-size: 80%;
}
.cat_select a span.more {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
  padding: 12px 28px;
  font-size: var(--btn-fs);
  letter-spacing: var(--ls-sub);
  line-height: 1;
  border: 1px solid #fff;
  z-index: 1;
  transition: 0.3s ease-in-out;
}
.grey_bg + .reservation {
  margin: 0 !important;
}
.reservation {
  margin-top: 80px;
}
.reservation a {
  color: #fff!important;
  text-align: center;
  padding: 50px;
  position: relative;
	display:block;
	background: url("../image/reservation_bg.jpg") center center/cover no-repeat!important;
}
.reservation a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  transition: 0.3s ease-in-out;
}
.reservation a:hover:after {
  background: rgba(0, 0, 0, 0.8);
}
.reservation a h2 {
  text-align: center;
  font-weight: normal;
  letter-spacing: 0.2em;
  position: relative;
  z-index: 1;
	font-family: var(--font-base);
}
.reservation a h2 span {
  display: block;
  font-size: 70%;
}
.reservation a p {
  text-align: center;
  position: relative;
  z-index: 1;
}

.reservation span.more {
  background: transparent;
  box-sizing: border-box;
  padding: var(--btn-py) var(--btn-px);
  min-width: var(--btn-min);
  font-size: var(--btn-fs);
  letter-spacing: var(--ls-display);
  line-height: 1;
  color: #fff;
  display: inline-block;
  margin: var(--sp-3) auto var(--sp-2);
  border: 1px solid #fff;
  position: relative;
  z-index: 1;
  transition: 0.3s ease-in-out;
}
.reservation a:hover span.more {
  background: #fff;
  color: #afafaf;
}
.single {
  align-items: flex-start !important;
}
.single .box {
  padding: 10px;
}
.main_img img {
  width: 100%;
  vertical-align: bottom;
}
.thumb_img {
  list-style: none;
  margin: 20px 0px;
  padding: 0px;
  display: flex;
  justify-content: space-between
}
.current img {
  border: 2px solid #000;
  margin: -2px;
}
.thumb_img li {
  width: 48%;
  cursor: pointer;
}
.single .box:nth-child(2) p.ttl {
  font-weight: normal;
  letter-spacing: 0.1em;
  color: var(--txt-strong);
  margin: 0px;
  color: #74692A;
  line-height: 1em;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 20px;
  font-size: 140%;
	font-family: var(--font-base);
}
.single .box:nth-child(2) p.ttl span {
  display: block;
  font-size: 60%;
  color: #6A6A6A;
}
.single .box:nth-child(2) .catchy {
  border-bottom: 1px solid #ccc;
  padding-top: 50px;
  padding-right: 0px;
  padding-bottom: 50px;
  padding-left: 20px;
  font-size: 140%;
}
.single .box:nth-child(2) .desc {
  padding-top: 20px;
  padding-right: 0px;
  padding-bottom: 50px;
  padding-left: 20px;
}
.single .box:nth-child(2) dl {
  margin: 20px 0px;
	display:flex;
	flex-wrap:nowrap;
}
.single .box:nth-child(2) dl dt {
  background: #afafaf;
  padding: 5px 15px !important;
  color: #fff;
}
.single .box:nth-child(2) dl dd {
  padding: 5px 10px!important;
}
a.to_cat_top {
  background: transparent;
  color: #afafaf;
  transition: 0.3s ease-in-out;
  box-sizing: border-box;
  padding: var(--btn-py) var(--btn-px);
  min-width: var(--btn-min);
  font-size: var(--btn-fs);
  letter-spacing: var(--ls-display);
  line-height: 1;
  text-align: center;
  display: inline-block;
  margin: var(--sp-4) auto;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid #afafaf;
	font-family: var(--font-base);
}
a.to_cat_top:hover {
  background: #afafaf;
  color: #fff;
}
.concept .box {
  padding: 10px;
}

dl.about dt {
  width: 200px;
  margin-right: 10px;
  border-bottom: 1px solid #ccc;
}
dl.about dd {
  border-bottom: 1px solid #ccc;
  width: calc(100% - 210px)
}
@media (max-width: 768px) {
  dl.about dt {
    width: 100%;
    margin-right: 0px;
    border-bottom: none;
  }
  dl.about dd {
    border-bottom: 1px solid #ccc;
    width: 100%;
  }
}
.txleft {
  text-align: left;
}
.txright {
  text-align: right;
}
.txcenter {
  text-align: center;
    padding-top: 0px;
    padding-right: 5%;
    padding-bottom: 15px;
    padding-left: 5%
}
.note-list {
  font-size: 13px !important;
  color: #555;
  line-height: 1.6;
  margin-top: 1em;
  padding-left: 10px;
}
.footer-copy {
  font-size: 12px;
  color: #fff;
  text-align: center;
  margin: 20px 0;
}
.flexbox {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row;
  align-items: center;
}
.flex-start {
  align-items: flex-start !important;
}
.space-between {
  justify-content: space-between;
}
.stretch {
  align-items: stretch;
}
.flexbox .box20 {
  width: 20%;
}
.flexbox .box25 {
  width: 25%;
}
.flexbox .box30 {
  width: 30%;
}
.flexbox .box32 {
  width: 32%;
}
.flexbox .box33 {
  width: 33.333%;
}
.flexbox .box40 {
  width: 40%;
}
.flexbox .box50 {
  width: 50%;
}
.flexbox .box60 {
  width: 60%;
}
.flexbox .box70 {
  width: 70%;
}
.flexbox .box75 {
  width: 75%;
}
.flexbox .box80 {
  width: 80%;
}
.flexbox .box {
  box-sizing: border-box;
  position: relative;
}
footer {
  text-align: center;
  background: #afafaf;
  position: relative;
  padding: 50px 0px;
  color: #fff;
}
footer .flexbox {
  align-items: flex-start;
}
footer .box {
  display: flex;
}
footer .box p {
  font-weight: normal;
  letter-spacing: 0.12em;
}
footer .box a {
  color: #fff;
  ;
}
footer .box p, footer .box ul {
  width: 50%;
  padding: 5px;
  box-sizing: border-box;
  margin: 0px;
}
footer ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
footer .box ul li a i {
  padding: 0px 10px;
}
footer h3 {
  width: 200px;
  height: 80px;
  margin: 30px auto;
}
footer h3 a {
  width: 200px;
  height: 80px;
  display: block;
  background: url("../image/logo.svg") center center/cover no-repeat;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
dl dt {
  padding: 10px;
  box-sizing: border-box;
  margin: 0;
  font-weight: normal;
}
dl dd {
  padding: 10px;
  box-sizing: border-box;
  margin: 0;
}
#navTgl {
  display: none;
}
label.open, label.close {
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
}
label.open {
  mix-blend-mode: difference;
}
.open {
  z-index: 3;
  width: 70px;
  height: 70px;
  margin: 10px;
  -webkit-transition: background-color .6s, -webkit-transform .6s;
  transition: background-color .6s, transform .6s;
}
.open span {
  position: absolute;
  left: 10px;
  height: 1px;
  width: 30px;
  display: inline-block;
  box-sizing: border-box;
  transition: background-color .6s, transform .6s;
  z-index: 999;
  background-color: #fff;
}
.open span:nth-of-type(1) {
  top: 20px;
}
.open span:nth-of-type(2) {
  top: 30px;
}
.open span:nth-of-type(3) {
  top: 40px;
}
#navTgl:checked + .open {
  -webkit-transform: translate(-240px, 0px);
  transform: translateX(-240px, 0px);
  background-color: transparent;
  mix-blend-mode: normal;
  z-index: 99;
}
#navTgl:checked + .open span:nth-of-type(1) {
  -webkit-transform: translate(0px, 10px)rotate(45deg);
  transform: translateX(0px, 10px) rotate(45deg);
  background-color: #000 !important;
}
#navTgl:checked + .open span:nth-of-type(2) {
  -webkit-transform: translate(0px, 0px)rotate(45deg);
  transform: translateX(0px, 0px) rotate(45deg);
  background-color: #000 !important;
}
#navTgl:checked + .open span:nth-of-type(3) {
  -webkit-transform: translate(0px, -10px)rotate(-45deg);
  transform: translateX(0px, -10px) rotate(-45deg);
  background-color: #000 !important;
}
.close {
  pointer-events: none;
  z-index: 6;
  width: 100%;
  height: 100%;
  transition: background-color .6s;
}
#navTgl:checked ~ .close {
  pointer-events: auto;
  background-color: rgba(255, 255, 255, 0.6);
}
.menu {
  z-index: 9999;
  position: fixed;
  top: 0;
  right: 0;
  width: 240px;
  height: 100%;
  background-color: #fff;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform .6s;
  transition: transform .6s;
}
#navTgl:checked ~ .menu {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.menu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  width: 100%;
  margin-top: 20px;
}
.menu li ul {
  padding: 0;
  margin: 0;
  float: left;
  display: block;
}
.menu li {
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
  width: 100%;
}
.menu li a {
  display: block;
  text-align: left;
  padding: 10px;
  text-decoration: none;
  transition: background-color .6s;
}
.menu li a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
ul.h_top {
  position: absolute;
  top: 10px;
  z-index: 3;
  list-style: none;
  display: flex;
  right: 100px;
}
ul.h_top li:nth-child(1) a {
  background: #fff;
  padding: 8px 40px;
  border-radius: 15px;
  color: #000;
  font-size: 14px;
  margin-right: 20px;
}
ul.h_top li a {
  padding: 5px 20px;
  font-size: 18px;
  color: #fff;
}
@media (max-width: 768px) {
  .spbox100 {
    width: 100% !important;
  }
  .spbox50 {
    width: 50% !important;
  }
}
@media (max-width: 1000px) {
  .onlypc {
    display: none;
  }
  ul.h_top {
    display: none;
  }
  .wrap {
    width: 100%;
      box-sizing: border-box;
    padding: 0 5%;
  }
}
@media (min-width: 1000px) {
  .onlysp {
    display: none;
  }
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* editor */
.entry {
  text-align: left;
  padding: 20px 5px;
  box-sizing: border-box;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.entry .entrytitle {
  border-bottom: 1px solid #1a1a1a;
  padding: 10px 0px
}
.entry .entrytitle span {
  font-size: 60%;
  float: right;
  font-weight: normal;
  color: #1a1a1a;
}
.entry strong {
  font-weight: normal;
  color: var(--txt-strong);
}
.entry em {
  font-style: italic;
}
.entry h2 {
  font-size: 20px;
  color: #fff;
  background-color: #ccc;
  padding: 5px;
  margin: 30px 0 15px;
  line-height: 1.4;
}
.entry h3 {
  font-size: 18px;
  color: #474747;
  border-bottom: 1px solid #ccc;
  padding: 5px;
  margin: 30px 0 15px;
  line-height: 1.4;
}
.entry h4 {
  font-size: 17px;
  padding: 5px;
  margin: 15px 0 10px;
  line-height: 1.3;
}
.entry h5 {
  font-size: 17px;
  padding: 5px;
  margin: 10px 0 5px;
  line-height: 1.2;
}
.entry h6 {
  font-size: 17px;
  padding: 5px;
  margin: 5px 0 5px;
  line-height: 1.1;
}
.entry small {
  font-size: 80%;
}
.entry code, .entry kbd, .entry pre, .entry samp {
  font-family: monospace, monospace;
}
.entry b, .entry strong {
  font-weight: normal;
  color: var(--txt-strong);
}
.entry em {
  font-style: italic;
}
.entry pre {
  margin: 1em 0;
  padding: 1em;
  border-radius: 5px;
  background: #e4f8f8;
  color: #474747;
  white-space: pre-wrap;
}
.entry blockquote {
  position: relative;
  margin: 1em 0;
  padding: 10px 15px 10px 50px;
  box-sizing: border-box;
  font-style: italic;
  background: #efefef;
  color: #555;
}
.entry blockquote:before {
  display: inline-block;
  position: absolute;
  top: 10px;
  left: -3px;
  content: "“";
  font-family: sans-serif;
  color: #cfcfcf;
  font-size: 90px;
  line-height: 1;
}
.entry blockquote p {
  padding: 0;
  margin: 10px 0;
  line-height: 1.7;
}
.entry blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}
.entry code {
  display: inline-block;
  padding: 0.1em 0.25em;
  color: #444;
  background-color: #efefef;
  border-radius: 3px;
}
.entry textarea {
  overflow: auto;
  resize: vertical;
}
.entry ul, .entry ol {
  background: #fcfcfc;
  padding: 0.5em 0.5em 0.5em 2em;
  border: solid 1px #efefef;
  margin: 1em 0;
}
.entry ul li, .entry ol li {
  line-height: 1.5; /*文の行高*/
  padding: 0.5em 0; /*前後の文との余白*/
}
.entry ul li {
  list-style-type: disc;
}
.entry ol li {
  list-style-type: decimal;
}
/* img */
.entry .aligncenter {
  display: block;
  margin: 0 auto;
}
.entry .alignright {
  float: right;
}
.entry .alignleft {
  float: left;
}
.entry img[class*="wp-image-"], .entry img[class*="attachment-"] {
  height: auto;
  max-width: 100%;
}
/* clearfix */
.entry .clearfix {
  overflow: hidden;
  zoom: 1;
}
.entry .clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.navPage {
  padding: 30px 10px;
  width: 100%;
  margin: 5px 0px;
  box-sizing: border-box;
}
.navPage a {
  background-color: transparent;
  color: #AFAFAF;
  border: 1px solid #AFAFAF;
  transition: 0.3s ease-in-out;
  box-sizing: border-box;
  padding: 14px 28px;
  min-width: 140px;
  font-size: var(--btn-fs);
  letter-spacing: var(--ls-sub);
  line-height: 1;
  text-align: center;
  display: block;
}
.navPage a:hover {
  background-color: #AFAFAF;
  color: #FFF;
}
.prev {
  max-width: 48%;
  float: left;
  text-align: left;
}
.next {
  max-width: 48%;
  float: right;
  text-align: right;
}
.wpcf7 span.wpcf7-not-valid-tip {
  font-size: 80%;
}
input[type="text"], input[type="email"], input[type="url"], input[type="tel"], select, textarea {
  background-color: #afafaf;
  width: 100%;
  color: #fff !important;
  border: none !important;
  font-size: 100%;
  padding: 0.5em;
  border-radius: 4px;
  box-sizing: border-box;
}
.is--must {
  background: #be003f;
  color: #fff;
  padding: 2px 3px;
  margin: 0px 0px 0px 10px;
  font-size: 80%;
}
.wpcf7c-conf, .wpcf7c-conf:focus {
  background-color: transparent !important;
  border: 1px solid #fff !important;
  box-sizing: border-box;
}
.wpcf7-text:-webkit-autofill {
  box-shadow: 0 0 0 1000px #fff inset;
}
input[type="submit"], input[type="button"] {
  -webkit-appearance: none;
  position: relative !important;
  font-size: var(--btn-fs) !important;
  line-height: 1 !important;
  font-family: var(--font-base) !important;
  letter-spacing: 0.3em !important;
  border: 1px solid #383838 !important;
  color: #383838 !important;
  padding: var(--btn-py) 0px !important;
  margin: var(--sp-3) auto !important;
  width: 280px !important;
  box-shadow: none !important;
  border-radius: 0px !important;
  background: transparent !important;
  cursor: pointer !important;
  transition: 0.3s ease-in-out;
	display:block;
}
input[type="submit"]:hover, input[type="button"]:hover {
  background: #383838 !important;
  color: #fff !important;
}
@media screen and (max-width: 768px) {
  input[type="submit"], input[type="button"] {
    margin: 10px 10% !important;
    width: 80% !important;
  }
}
.child-cat {
  display: inline-block;
  font-size: 0.75em;        /* 少し小さめ */
  color: #555;              /* 文字色 */
  background: #eee;         /* グレー背景 */
  padding: 4px 10px;        /* 余白 */
  border-radius: 999px;     /* 丸っぽく（完全ピル型） */
  line-height: 1;
}
.child-cat a {
  color: inherit;
  text-decoration: none;
}

.child-cat a:hover {
  opacity: 0.7;
}
/* スクリーンリーダー専用テキスト（アイコンのみのリンクにラベルを与える） */
.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
