﻿@charset "utf-8";
/*
Theme Name: theme_tatsumi
Description: theme_tatsumi
Version: 1.0
*/

/*　カスタムプロパティ
----------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");
:root {
  --color-text: #221e1a;
  --color-border: #ddd;
  /* ボタン */
  --color-btn: #d8b15a;
  --color-btn-hover: #fff;
  --color-btn-border: #d8b15a;
  --color-btn-text: #fff;
  --color-btn-text-hover: #d8b15a;
  /* リンク */
  --color-link: #999;
  --color-link-hover: #666;
  /* メインカラー em1 */
  --color-main: #f37465;
  --color-main-dark: #d35041;
  --color-main-light: #fef0ee;
  /* サブカラー em2 */
  --color-sub: #95c14f;
  --color-sub-dark: #6f982d;
  --color-sub-light: #f4f9ed;
  /* マーカー */
  --color-marker: #fff8b0;
  /* ベースカラー */
  --color-base-red: #b30f0f;
  --color-base-blue: #007bff;
  --color-base-green: #28a745;
  --color-base-yellow: #ffc107;
  --color-base-purple: #6f42c1;
  --color-base-pink: #e83e8c;
  /* フォント */
  --font-min: "Noto Serif JP", serif;
  --font-min-weight: 400;
  --font-min-style: normal;
  --font-en: "avenir-lt-pro", sans-serif;
  --font-en-weight: 300;
  --font-en-style: normal;
}

/*　body / html
----------------------------------------------- */
body {
  position: relative;
  overflow-x: hidden;
  word-wrap: break-word;
  color: var(--color-text);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}
html {
  overflow-y: scroll;
}
.f-min {
  font-family: var(--font-min);
  font-weight: var(--font-min-weight);
  font-style: var(--font-min-style);
}
.f-en {
  font-family: var(--font-en);
  font-weight: var(--font-en-weight);
  font-style: var(--font-en-style);
}
p {
  margin-bottom: 1em;
  line-height: 2;
}
/* link
----------------------------------------------- */
a {
  color: var(--color-link);
  text-decoration: underline;
  word-break: break-all;
  cursor: pointer;
}
a:hover {
  color: var(--color-link-hover);
  text-decoration: none;
}
.link01 {
  padding-left: 1.2em;
  background: url(images/common/icon_arrow01.png) no-repeat left 0.3em;
  background-size: 1em;
}
.link02 {
  padding-left: 1.2em;
  background: url(images/common/icon_arrow02.png) no-repeat left 0.3em;
  background-size: 1em;
}
.link03 {
  padding-left: 1.2em;
  background: url(images/common/icon_arrow04.png) no-repeat left 0.3em;
  background-size: 1em;
}
.faqlist li {
  margin-bottom: 0.4em;
}
.faqlist li a {
  background: url(images/common/icon_arrow01.png) no-repeat left 0.15em;
  background-size: 5px;
  padding-left: 12px;
  color: var(--color-text);
  text-decoration: none;
}
.faqlist li a:hover {
  color: var(--color-link-hover);
  text-decoration: none;
}
/* clearfix
----------------------------------------------- */
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.clear {
  clear: both;
}
/* pageTitle
----------------------------------------------- */
.pageTitle {
  clear: both;
  position: relative;
  width: 100%;
  padding: 8vw 8% 16vw;
}
.pageTitle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  aspect-ratio: 2/1;
  background: url("images/common/bg_title.png") no-repeat center;
  background-size: contain;
}
.pageTitle__h1 {
  text-align: center;
}
.pageTitle__h1 span {
  position: relative;
  display: block;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.2em;
  font-weight: 400;
  letter-spacing: 2px;
  padding: 0 60px;
}
.pageTitle__h1 span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 50px;
  aspect-ratio: 1/1;
  background: url("images/contents/apple01.png") no-repeat center;
  background-size: contain;
}
.pageTitle__h1 span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 60px;
  aspect-ratio: 1/1;
  background: url("images/contents/fruit_grape2.png") no-repeat center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .pageTitle {
  }
  .pageTitle__h1 span {
    font-size: 2em;
  }
}
@media screen and (min-width: 992px) {
  .pageTitle {
  }
}
/* typography
----------------------------------------------- */
.post h2 {
  clear: both;
  margin: 2em 0px 1em;
  padding: 0 0.2em 0.8em;
  border-bottom: 4px double var(--color-sub);
  font-weight: 600;
  font-size: 1.3em;
}
.post h3 {
  clear: both;
  margin: 2em 0 1em;
  padding: 0.2em 0 0.2em 12px;
  border-left: solid 6px var(--color-sub);
  font-weight: 600;
  font-size: 1.15em;
}
.post h4 {
  clear: both;
  margin: 2em 0 1em;
  padding: 0 0 0 28px;
  background: url("images/common/icon_diamond02.png") no-repeat left 0.2em;
  background-size: 20px;
  font-weight: 600;
  font-size: 1.1em;
}
.post h2.imgtitle,
.post h3.imgtitle,
.post h4.imgtitle {
  padding: 0;
  border: none;
  background: none;
}
@media screen and (min-width: 768px) {
  .post h2 {
    font-size: 1.8em;
  }
  .post h3 {
    font-size: 1.4em;
  }
}
/* image-style
----------------------------------------------------------- */
img {
  max-width: 100%;
  height: auto;
}
img.border {
  border: 1px solid #ddd;
  padding: 4px;
}
img.frame {
  outline: 7px solid rgb(255 255 255 / 40%);
  outline-offset: -7px;
}
img.round {
  border-radius: 50%;
}
img.aligncenter,
img.center {
  display: block;
  margin: auto;
}
img.alignright {
  float: right;
  margin: 0 0 10px 20px;
  max-width: 50%;
}
img.alignleft {
  float: left;
  margin: 0 20px 10px 0;
  max-width: 50%;
}
/* img_switch
----------------------------------------------- */
.switch {
  visibility: hidden;
}
/* box-style
----------------------------------------------- */
[class^="box0"],
[class^="t-box0"],
[class^="boxcolor"] {
  clear: both;
  margin: 2.5em 0;
  padding: 1em 5% 0;
}
.box01 {
  border: 3px double #ddd;
  background: #fff;
}
.box02 {
  border: 3px solid #eee;
  background: #fff;
}
.box02.c-main {
  border-color: var(--color-main);
}
.box03 {
  box-shadow: 0px 0px 8px #ddd;
  -ms-box-shadow: 0px 0px 8px #ddd;
  -moz-box-shadow: 0px 0px 8px #ddd;
  -webkit-box-shadow: 0px 0px 8px #ddd;
  border: 1px solid #fff;
  background: #fff;
}
.box04 {
  border: 1px solid #ddd;
  box-shadow: 7px 7px 0px #ddd;
  -ms-box-shadow: 7px 7px 0px #ddd;
  -moz-box-shadow: 7px 7px 0px #ddd;
  -webkit-box-shadow: 7px 7px 0px #ddd;
  background: #fff;
}
.box05 {
  border: 1px solid #f7f7f7;
  background: #f7f7f7;
}
.box06 {
  border: 1px solid #fff;
  background: url("images/common/notebg.png");
}
.t-box01 {
  padding: 0;
}
.t-box01 .title {
  margin: 0;
  padding: 10px 5px 10px 14px;
  font-size: 1.1em;
  color: #fff;
  font-weight: 400;
  background: #666;
  border: 2px solid #666;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
}
.t-box01 .t-box01In {
  padding: 1em 15px 0.1em;
  border: 2px solid #666;
  border-radius: 0px 0px 4px 4px;
}
[class^="boxcolor"] {
  border-radius: 6px;
}
[class^="boxcolor"] h4 {
  border: none;
  padding: 0;
  margin: 0 0 10px 0;
  background: none;
}
.boxcolor-red {
  border: 1px solid var(--color-base-red);
  color: var(--color-base-red);
}
.boxcolor-yellow {
  border: 1px solid var(--color-base-yellow);
  color: var(--color-base-yellow);
}
.boxcolor-blue {
  border: 1px solid var(--color-base-blue);
  color: var(--color-base-blue);
}
.boxcolor-green {
  border: 1px solid var(--color-base-green);
  color: var(--color-base-green);
}
/* list-style
----------------------------------------------- */
.list01,
.list02,
.list03,
.checklist01,
.checklist02,
.checklist03,
.link-list {
  margin: 2em 0;
}
.list01 li {
  margin-bottom: 0.8em;
  padding-left: 1em;
  background: url(images/common/icon_circle02.png) no-repeat left 0.5em;
  background-size: 0.6em;
}
.list02 li {
  margin-bottom: 0.8em;
  padding-left: 0.8em;
  background: url(images/common/icon_circle01.png) no-repeat left 0.6em;
  background-size: 0.4em;
}
.list03 li {
  margin-bottom: 0.8em;
  padding-left: 1em;
  background: url(images/common/icon_diamond02.png) no-repeat left 0.5em;
  background-size: 0.6em;
}
.checklist01 li {
  margin-bottom: 0.8em;
  padding-left: 1.4em;
  background: url(images/common/icon_check01.png) no-repeat left 0.3em;
  background-size: 1em;
  font-size: 1.1em;
}
.checklist02 li {
  margin-bottom: 0.8em;
  padding-left: 1.4em;
  background: url(images/common/icon_check02.png) no-repeat left 0.3em;
  background-size: 1em;
  font-size: 1.1em;
}
.checklist01.style01 {
  border-top: 1px solid #eee;
}
.checklist01.style01 li,
.checklist02.style01 li {
  margin: 0;
  padding: 0.8em 0.2em 0.8em 1.4em;
  border-bottom: 1px solid #eee;
  background-position: left 1.1em;
}
.checklist01.style02 li,
.checklist02.style02 li {
  margin: 0;
  padding: 0.8em 0.5em 0.8em 1.8em;
  background-position: 0.3em 1.1em;
}
.checklist01.style02 li:nth-child(even),
.checklist02.style02 li:nth-child(even) {
  background-color: #eee;
}
.link_list li {
  margin-bottom: 0.8em;
}
.link_list li a {
  padding-left: 1.1em;
  background: url(images/common/icon_arrow01.png) no-repeat left 0.3em;
  background-size: 1em;
}
/* dl-style
----------------------------------------------- */
.dl01 {
  margin-bottom: 2em;
}
.dl01 dt {
  margin: 1.5em 0 1em;
  padding: 0 0 0.8em;
  border-bottom: 1px solid #eee;
  font-size: 1.1em;
  font-weight: 500;
}
.dl01 dt span {
  display: block;
}
.dl01 dd {
  margin: 0 0 1.5em;
}
.dl02 {
  margin-bottom: 2em;
}
.dl02 dt {
  margin: 1.5em 0 1em;
  padding: 0 0 0.5em 1.3em;
  border-bottom: 1px solid var(--color-border);
  background: url(images/common/icon_square01.png) no-repeat 0 0.35em;
  background-size: 1em;
  font-size: 1.2em;
  font-weight: 600;
}
.dl02 dd {
  margin: 0 0 25px;
}
.dl03 {
  margin-bottom: 2em;
}
.dl03 dt {
  margin: 1.5em 0 1em;
  padding: 0 0 0.5em 1.4em;
  border-bottom: 1px solid var(--color-border);
  background: url(images/common/icon_original.png) no-repeat 0 0.1em;
  background-size: 1.3em;
  font-size: 1.2em;
  font-weight: 600;
}
.dl03 dd {
  margin: 0 0 25px;
}
.dl04 {
  margin-bottom: 2em;
}
.dl04 dt {
  margin: 1.5em 0 1em;
  padding: 0 0 0.5em 1.4em;
  border-bottom: 1px solid var(--color-border);
  background: url(images/common/icon_original2.png) no-repeat 0 0.15em;
  background-size: 1.4em;
  font-size: 1.2em;
  font-weight: 600;
}
.dl04 dd {
  margin: 0 0 25px;
}
.faq {
  margin-bottom: 40px;
}
.faq dt {
  margin: 2em 0 1em;
  padding: 0 0 0.8em 1.6em;
  background: url(images/common/icon_faq_q.png) no-repeat 0px 0.1em;
  background-size: 1.3em;
  border-bottom: 1px solid #eee;
  font-size: 1.1em;
  font-weight: 500;
}
.faq dd {
  margin: 0 0 1.6em;
  padding: 0 0 0.6em 1.6em;
  background: url(images/common/icon_faq_a.png) no-repeat 0 0.15em;
  background-size: 1.3em;
}
@media screen and (min-width: 768px) {
  .dl02 dt {
    font-size: 1.5em;
  }
  .dl03 dt {
    font-size: 1.5em;
  }
  .dl04 dt {
    font-size: 1.5em;
  }
  .faq dd {
    background-position: left 0.2em;
  }
}
/* table-style
----------------------------------------------- */
table.table01,
table.table02 {
  width: 100%;
  margin: 0 0 2em;
  border-collapse: collapse;
}
table.table01 th,
table.table01 td,
table.table02 th,
table.table02 td {
  font-weight: normal;
  text-align: left;
  padding: 1em 1.2em;
}
table.table01 th,
table.table02 th {
  width: 23%;
}
table.table01 td,
table.table02 td {
  width: 77%;
}
table.table01 {
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}
table.table01 th,
table.table01 td {
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
table.table01 th {
  background: #f6f6f6;
}
table.table02 {
  border-collapse: separate;
  border-spacing: 3px;
}
table.table02 th {
  background: #f6f6f6;
}
@media screen and (max-width: 991px) {
  table.table01 th,
  table.table01 td,
  table.table02 th,
  table.table02 td {
    display: block;
    width: 100%;
  }
}
/* text-style
----------------------------------------------- */
.txt-right {
  text-align: right !important;
}
.txt-left {
  text-align: left !important;
}
.center {
  text-align: center !important;
}
.color-red {
  color: #dd0000;
}
.font12 {
  font-size: 12px;
}
.font10 {
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .pc-center {
    text-align: center;
  }
}
/* Emphasis
----------------------------------------------------------- */
.em1,
.em1 a {
  color: var(--color-main);
  font-weight: 700;
}
.em2,
.em2 a {
  color: var(--color-sub);
  font-weight: 700;
}
.em3 {
  font-weight: 700;
}
.em4l {
  font-size: 120%;
}
.em4xl {
  font-size: 150%;
}
.em5 {
  text-decoration: underline;
}
.em6 {
  padding: 0 3px;
  background: var(--color-marker);
  font-weight: 700;
}
.em7 {
  padding: 0 3px;
  background: linear-gradient(transparent 60%, var(--color-marker) 60%);
  font-weight: 700;
}
.em-red {
  color: var(--color-base-red);
}
.em-blue {
  color: var(--color-base-blue);
}
.em-green {
  color: var(--color-base-green);
}
.em-yellow {
  color: var(--color-base-yellow);
}
.em-purple {
  color: var(--color-base-purple);
}
.em-pink {
  color: var(--color-base-pink);
}
.lh16 {
  line-height: 1.6;
}
.lh18 {
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .em4xl {
    font-size: 180%;
  }
}
/* layout-style
----------------------------------------------- */
[class^="layout"] {
  margin-bottom: 1.5em;
  overflow: hidden;
}
[class^="layout"] img {
  margin-bottom: 1.5em;
}
/* submit-style
----------------------------------------------- */
.submitBtn__img {
  position: relative;
  z-index: 2;
  margin: 2.5em 0;
}
.submitBtn {
  display: flex;
  justify-content: center;
  margin: 2.5em 0;
}
.submitBtn a {
  display: inline-block;
  width: clamp(260px, 70%, 360px);
  padding: 1em 1.1em 1em;
  text-decoration: none;
  text-align: center;
  font-style: normal;
  background: url("images/common/bg_btn.jpg") no-repeat center;
  background-size: cover;
  color: var(--color-text);
  font-size: 1.15em;
  transition: all 0.3s ease;
}
.submitBtn a:hover {
  opacity: 0.4;
}
.submitBtn.is-small a {
  width: 160px;
  max-width: none;
  padding: 0.5em 1.5em 0.7em;
  font-size: 0.8em;
}
.submitBtn.is-round a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  width: 100px;
  height: 100px;
  padding: 0;
  border-radius: 50%;
  font-size: 0.9rem;
}
/* hr
----------------------------------------------- */
hr {
  clear: both;
  width: 80%;
  height: 1px;
  margin: 3em auto;
  border: none;
  background: var(--color-border);
}
hr.hr01 {
  border-top: dotted 1px #ddd;
  background: none;
}
hr.hr02 {
  height: 40px;
  background: url(images/common/ornament.png) no-repeat center center;
  background-size: contain;
}
/* 動画・地図
----------------------------------------------- */
.youtube-wrap,
.map-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 15px;
  text-align: center;
}
.youtube-wrap iframe,
.map-wrap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.inlineb {
  display: inline-block;
}
/* flowbox
----------------------------------------------- */
.flowbox {
  clear: both;
  display: block;
  padding-bottom: 25px;
  margin-bottom: 15px;
  background: url(images/common/u_arrow01.png) no-repeat 50% bottom;
}
.flowbox.last {
  background: none;
}
.flowbox .itemleft {
  text-align: center;
}
/* flowbox01 （左）写真（右）テキスト */
.flowbox01 {
  padding-bottom: 2em;
  background: url(images/common/u_arrow01.png) no-repeat center bottom 1.5em;
}
.flowbox01.last {
  background: none;
}
.flowbox01 .itemleft {
  margin-bottom: 1.5em;
  text-align: center;
}
.flowbox01 .itemright {
  margin-bottom: 1.5em;
}
/* flowbox02 （左）テキスト（右）写真 */
.flowbox02 {
  padding-bottom: 2em;
  background: url(images/common/u_arrow01.png) no-repeat center bottom 1.5em;
}
.flowbox02.last {
  background: none;
}
.flowbox02 .itemleft {
  margin-bottom: 1.5em;
  text-align: center;
}
.flowbox02 .itemright {
  margin-bottom: 1.5em;
}
@media screen and (min-width: 768px) {
  .flowbox01 {
    display: flex;
    align-items: center;
    gap: 2em;
    padding-bottom: 3em;
    background-position: left 18% bottom 1.1em;
  }
  .flowbox01 .itemleft {
    margin-bottom: 0;
    width: 40%;
  }
  .flowbox01 .itemright {
    margin-bottom: 0;
    width: calc(60% - 2em);
  }
}
/* photolist
----------------------------------------------- */
.photolist {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
.photolist li {
  width: calc((100% - 1em) / 2);
}
.photolist li figure figcaption {
  margin-top: 0.5em;
  font-size: 90%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .photolist {
    gap: 2em;
  }
  .photolist li {
    width: calc((100% - 2em) / 2);
  }
}
/* accordion
----------------------------------------------- */
.displayNone {
  display: none;
}
.contentWrap {
  margin: 10px;
}
.acswitch {
  cursor: pointer;
  font-weight: bold;
  padding: 12px 40px 12px 10px;
  text-align: center;
  font-size: 14px;
  position: relative;
  background-color: #c8b280;
  border: 1px solid #c8b280;
  color: #fff;
  border-radius: 30px;
}
.acswitch:after {
  content: ">";
  position: absolute;
  right: 10px;
  top: -100%;
  bottom: -100%;
  margin: auto;
  font-size: 16px;
  height: 16px;
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  font-family: sans-serif;
}
.acswitch.open:after {
  content: "x";
}
/* testimonials
----------------------------------------------- */
.testimonial {
  margin: 0 0 20px;
  padding: 15px 15px 5px;
  border: 3px solid #e6e6e6;
  background: url(images/common/testimonial_bg.png) no-repeat 98% 10px #ffffff;
  background-size: 120px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.testimonial .title {
  padding: 0 0 10px 0;
  border: none;
  border-bottom: 2px dotted #ccc;
  margin: 0 0 20px;
  background: none;
  font-weight: bold;
}

.testimonial .ph {
  display: block;
  margin: 0 auto 20px;
  float: none;
  max-width: 280px;
  text-align: center;
}

.testimonial .name {
  font-weight: bold;
}

.testimonial02 {
  margin: 15px 0px;
  padding: 15px 10px 1px;
  border-left: 5px solid #ef9b9b;
  background: url(images/common/fivestar.png) no-repeat 98% 10px #fbf7f1;
  box-shadow: 0px 1px 2px #cccccc;
}
/* 背景画像
----------------------------------------------- */
.bg_light {
  background: var(--color-main-light);
}
.bg_main {
  background: var(--color-main);
  color: #fff;
}
.bg_dark {
  background: var(--color-main-dark);
  color: #fff;
}
.bg_image {
  background: url(images/contents/bg01.jpg) no-repeat center center;
  background-size: cover;
}
.bg_image02 {
  background: url(images/contents/bg02.jpg) no-repeat center center;
  background-size: cover;
}
/* single
----------------------------------------------- */
h1.singlePost__title {
  margin: 0.2em 0 1.5em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #282828;
  font-weight: 400;
  font-size: 1.3em;
}
.singlePost__eyecatch {
  text-align: center;
}
.singlePost__eyecatch img {
  width: 800px;
  margin: 0 auto;
}
.singlePost_works h1 {
  margin: 0 0 1.5em;
  font-weight: 500;
  font-size: 1.3em;
}
.singlePost_works dl dt {
  position: relative;
  display: inline-block;
  padding: 0 40px;
  margin: 0.8em 0 0.8em;
  font-weight: 400;
  font-size: 1.15em;
}
.singlePost_works dl dt::before,
.singlePost_works dl dt::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: #333;
}
.singlePost_works dl dt::before {
  left: 0;
}
.singlePost_works dl dt::after {
  right: 0;
}
/* 投稿スタイル
----------------------------------------------- */
/* 投稿スタイル 01 */
.postList01 .postList__item {
  border-bottom: solid 1px #ddd;
}
.postList01 .postList__item:first-of-type {
  border-top: solid 1px #ddd;
}
.postList01 .postList__link {
  display: block;
  padding: 12px 20px 12px 2px;
  background: url("images/common/icon-arrow07.png") no-repeat right center;
  background-size: 15px;
  background-color: rgba(255, 255, 255, 0.85);
  color: #1a1a1a;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.postList01 .postList__date {
  display: block;
  opacity: 0.4;
  font-size: 12px;
}
.postList01 .postList__title {
  margin: 0;
}
.postList01 .postList__empty {
  text-align: center;
}
/* 投稿スタイル 02 */
.postList02 .postList__item {
  margin-bottom: 15px;
  overflow: hidden;
}
.postList02 .postList__itemLink {
  color: #282828;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.postList02 .postList__itemLink:hover {
  opacity: 0.6;
  text-decoration: underline;
}
.postList02 .postList__itemImg {
  aspect-ratio: 16/9;
  margin-bottom: 10px;
  overflow: hidden;
}
.postList02 .postList__itemImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.postList02 .postList__itemLink:hover .postList__itemImg img {
  transform: scale(1.1);
}
.postList02 .postList__itemDate {
  display: block;
  margin-bottom: 5px;
}
.postList02 .postList__itemTitle {
  display: -webkit-box;
  display: -moz-box;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  height: calc(1.5em * 2);
  margin: 0;
}
.postList02 .postList__empty {
  text-align: center;
}
.contactBox {
  margin: 3em auto;
}
.contactBox p {
  margin-bottom: 0;
}
.contactBox .submitBtn {
  margin: 1em auto 0 !important;
}
/* ～767px メディアクエリ開始 */
@media screen and (max-width: 767px) {
  .table01.block th,
  .table01.block td {
    display: block;
  }
  .sp_none {
    display: none;
  }
  .postList02 .postList__itemLink {
    display: flex;
  }
  .postList02 .postList__itemImg {
    width: 30%;
    margin-bottom: 0;
  }
  .postList02 .postList__itemText {
    width: 70%;
    padding-left: 15px;
  }
}
/* 768px〜 メディアクエリ開始 */
@media screen and (min-width: 768px) {
  .list02 li {
    padding-left: 12px;
  }
  [class^="box0"],
  [class^="boxcolor"] {
    clear: both;
    margin: 3em 0;
    padding: 2em 2em 0.5em;
  }
  .t-box01 .title {
    padding: 15px 20px;
  }
  .t-box01 .t-box01In {
    padding: 20px 20px 5px;
  }
  .dl01 dt {
    margin-top: 2em;
    font-size: 1.2em;
  }
  .dl01 dd {
    margin-bottom: 2em;
  }
  .searchform div {
    justify-content: space-between;
  }
  .searchform input[type="text"] {
    width: calc(100% - 150px) !important;
    height: 54px;
    padding-left: 10px;
  }
  #searchsubmit {
    width: 120px;
    min-width: none;
    margin: 0;
  }
  .postList01 .postList__link {
    padding: 15px 30px 15px 10px;
    background-position: right 5px center;
  }
  .postList01 .postList__link:hover {
    background-color: #f8f8f8;
    background-position: right 2px center;
  }
  .postList02 {
    display: flex;
  }
  .postList02 .postList__item {
    width: calc(94% / 3);
    margin: 0 0 0 3%;
  }
  .postList02 .postList__item:first-of-type {
    margin-left: 0;
  }
  .pc_none {
    display: none;
  }
  [class^="layout"] {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  .layout2 .itemleft,
  .layout2 .itemright {
    width: calc((100% - 20px) / 2);
  }
  .layout37 .itemleft {
    float: left;
    width: 30%;
  }
  .layout37 .itemright {
    float: right;
    width: 68%;
  }
  .layout73 .itemleft {
    float: left;
    width: 70%;
  }
  .layout73 .itemright {
    float: right;
    width: 30%;
  }
  .layout46 .itemleft {
    float: left;
    width: 40%;
  }
  .layout46 .itemright {
    float: right;
    width: 58%;
  }
  .layout64 {
    flex-direction: row-reverse;
  }
  .layout64 .itemleft {
    width: calc(55%);
  }
  .layout64 .itemright {
    width: calc(45% - 20px);
  }
  .testimonial {
    margin: 0 0 1.5em;
    padding: 25px 25px 5px;
    background: url(images/common/testimonial_bg.png) no-repeat 98% 10px #ffffff;
    background-size: 130px;
  }
  .testimonial .title {
    font-size: 1.3em;
  }
  .testimonial .ph {
    display: inline;
    margin: 0 0 10px 20px;
    float: right;
    max-width: 250px;
  }
  h1.singlePost__title {
    font-size: 1.5em;
  }
  .singlePost_works h1 {
    font-size: 1.5em;
  }
  .singlePost_works dl dt {
    font-size: 1.2em;
    padding: 0 50px;
  }
  .singlePost_works dl dt::before,
  .singlePost_works dl dt::after {
    width: 40px;
  }
  .submitBtn {
    margin: 3em 0 !important;
  }
}
/* 992px～ メディアクエリ開始 */
@media screen and (min-width: 992px) {
  img.alignright {
    margin: 0 0 10px 30px;
  }
  img.alignleft {
    margin: 0 30px 10px 0;
  }
  [class^="box0"],
  [class^="boxcolor"] {
    margin: 3.5em 0;
    padding: 2.5em 2.5em 1em;
  }
  [class^="box0"].-round {
    border-radius: 10px;
  }
  .t-box01 {
    clear: both;
    margin: 40px 0px;
  }
  .t-box01 .title {
    padding: 20px 5px 20px 20px;
    font-size: 1.2em;
    border-bottom: none;
  }
  .t-box01 .t-box01In {
    padding: 3% 3% 1.5%;
  }
  .submitBtn {
    margin: 3.5em 0;
  }
  .contactBox {
    margin: 5em auto;
  }
  .contactBox .submitBtn {
    margin-top: 1.5em !important;
  }
}
/* flow */
.flow__box {
  margin: 2.5em 0 2.5em 15px;
}
.flow__list {
  position: relative;
}
.flow__list::before {
  content: "";
  width: 1px;
  height: 99.5%;
  background: #eee;
  margin-left: -130px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 120px;
}
.flow__list > li {
  position: relative;
}
.flow__list > li:not(:last-child) {
  margin-bottom: 3.5em;
}
.flow__list .icon {
  position: absolute;
  top: -15.5px;
  left: -28px;
  z-index: 1;
  width: 25px;
  padding: 15px 0;
  background-color: #fff;
}
.flow__list dl {
  padding-left: 6px;
  position: relative;
}
.flow__list dl dt {
  position: relative;
  margin-bottom: 1.5em;
  font-size: 1.1em;
  font-weight: 500;
}
.flow__list dl dd img.alignright {
  margin-bottom: 0.6em;
}
.flow__list dl dd p {
  margin-bottom: 2em;
}
.flow__list dl dd::after {
  display: block;
  content: "";
  clear: both;
}
@media screen and (min-width: 768px) {
  .flow__box {
    margin-top: 3em;
    margin-bottom: 3em;
  }
  .flow__list > li:not(:last-child) {
    margin-bottom: 4em;
  }
  .flow__list .icon {
    top: -22px;
    left: -45px;
    width: 40px;
  }
  .flow__list dl {
    padding-left: 15px;
  }
  .flow__list dl dd img.alignright {
    width: 200px;
  }
}
/* 予約ボタン
----------------------------------------------- */
.linkBtn__list {
  text-align: center;
  margin: 2.5em 0;
}
.linkBtn__list li {
  margin-bottom: 1em;
}
.linkBtn__list a {
  margin: 0 auto;
  display: inline-block;
  justify-content: center;
  align-items: center;
  width: 240px;
  padding: 8px 20px 6px;
  text-decoration: none;
  text-align: center;
  font-family: "avenir-lt-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
  border: solid 1px var(--color-btn);
  background: var(--color-btn);
  color: #fff;
  transition: all 0.5s ease;
}
.linkBtn__list a:hover {
  background: #fff;
  color: var(--color-text);
}
.linkBtn__list.hpbBtn a {
  border-color: #991443;
  background-color: #991443;
}
.linkBtn__list.hpbBtn a:hover {
  background-color: #fff;
  color: #991443;
}
.linkBtn__list a span {
  position: relative;
  padding-left: 30px;
}
.linkBtn__list a span::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: -1px;
  left: 0px;
  background: url(images/common/icon_hpb.png) no-repeat;
  background-size: 20px;
  transition: 0.3s all;
}
.linkBtn__list a:hover span::before {
  background-image: url(images/common/icon_hpb_pk.png);
}
@media screen and (min-width: 768px) {
  .linkBtn__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
  }
  .linkBtn__list li {
    width: calc(50% - 0.5em);
    margin-bottom: 0;
  }
  .linkBtn__list a {
    width: 100%;
  }
}
@media screen and (min-width: 1300px) {
  .linkBtn__list li {
    width: calc(25% - 0.75em);
  }
}
/* other-style
----------------------------------------------- */
.MT0 {
  margin-top: 0px !important;
}
.MT10 {
  margin-top: 10px !important;
}
.MT20 {
  margin-top: 20px !important;
}
.MT30 {
  margin-top: 30px !important;
}
.MT40 {
  margin-top: 40px !important;
}
.MT50 {
  margin-top: 50px !important;
}
.MB0 {
  margin-bottom: 0px !important;
}
.MB5 {
  margin-bottom: 5px !important;
}
.MB10 {
  margin-bottom: 10px !important;
}
.MB20 {
  margin-bottom: 20px !important;
}
.MB30 {
  margin-bottom: 30px !important;
}
.MB40 {
  margin-bottom: 40px !important;
}
.MB50 {
  margin-bottom: 50px !important;
}
.MR0 {
  margin-right: 0 !important;
}
.MR10 {
  margin-right: 10px !important;
}
.MR20 {
  margin-right: 20px !important;
}
.MR30 {
  margin-right: 30px !important;
}
.ML0 {
  margin-left: 0 !important;
}
.ML10 {
  margin-left: 10px !important;
}
.ML20 {
  margin-left: 20px !important;
}
.ML30 {
  margin-left: 30px !important;
}
.ML100 {
  margin-left: 100px !important;
}
.MRL-20 {
  margin-left: -20px !important;
  margin-right: -20px !important;
}
.PT0 {
  padding-top: 0px !important;
}
.PT10 {
  padding-top: 10px !important;
}
.PT20 {
  padding-top: 20px !important;
}
.PT30 {
  padding-top: 30px !important;
}
.PB0 {
  padding-bottom: 0px !important;
}
.PB10 {
  padding-bottom: 10px !important;
}
.PB20 {
  padding-bottom: 20px !important;
}
.PB30 {
  padding-bottom: 30px !important;
}

/* タイムラインスタイル
----------------------------------------------- */
.dl_timeline {
  position: relative;
  margin: 2em 0;
}
.dl_timeline::before {
  content: "";
  position: absolute;
  left: 63px;
  top: 13px;
  bottom: 0;
  z-index: 2;
  width: 2px;
  height: calc(100% - 40px);
  background: #ae6a85;
}
.dl_timeline dt {
  position: relative;
  margin: 0;
  padding: 0.5em 0;
  font-weight: 600;
  color: #ae6a85;
  text-align: right;
  width: 50px;
  font-size: 0.7em;
  float: left;
  clear: both;
}
.dl_timeline dt::before {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #ae6a85;
  border-radius: 50%;
}
.dl_timeline dd {
  position: relative;
  margin: 0 0 0 80px;
  padding: 0.1em 0 1em 0;
  line-height: 1.6;
  min-height: 2.5em;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .dl_timeline::before {
    left: 103px;
    top: 22px;
    height: calc(100% - 55px);
  }
  .dl_timeline dt::before {
    right: -30px;
  }
  .dl_timeline dt {
    font-size: 1.1em;
    width: 80px;
  }
  .dl_timeline dd {
    margin-left: 120px;
    padding-top: 0.3em;
    font-size: 1.2em;
  }
}

.lineBnr {
  margin-top: 3em;
  text-align: center;
}
.lineBnr a {
  display: inline-block;
}
.lineBnr a img {
  width: 100%;
}
