@charset "utf-8";

#color {
  color: #f06966;
  color: #f1ac9d;
  color: #dee2d1;
  color: #6abe83;
}

.grecaptcha-badge {
  visibility: hidden;
}

* {
  box-sizing: border-box;
}

/* -----------------------------------
  basic
 ----------------------------------- */
html {
  margin-top: 0px !important;
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  color: #333;
  ;
  background-color: #fff;
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Yu Gothic", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.85;
}

h2 {
  font-size: 2.5rem;
  font-weight: normal;
  padding: 0;
  display: table;
}

h2 span {
  display: block;
}

.jp {
  margin-bottom: 13px;
  letter-spacing: 0.14em;
}

.en {
  letter-spacing: 0.2em;
  font-size: 50%;
  font-family: Cormorant Garamond, "Noto Serif JP", serif;
  font-style: italic;
}

.com {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 60%;
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: #333;
  transition: .3s;
}

a:hover {
  color: #838182;
}

a.anchor {
  display: block;
  padding-top: 150px;
  margin-top: -70px;
}

p {
  margin: 0;
  margin-bottom: 10px;
  text-align: left;
}

img {
  width: 100%;
  height: auto;
  vertical-align: top;
  /* border-radius: 25px; */
  object-fit: cover;
}

nav {
  margin: 0 0 0 auto;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

li {
  font-size: 18px;
  color: #53585B;
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  width: 100%;
}

dl,
dt,
dd {
  margin: 0;
}


@media screen and (max-width: 768px) {
  p {
    font-size: 1.4rem;
  }
}

/* 改行
------------------------------------------------------------*/

/* PCのみ改行 <br class="brpc">　*/


@media screen and (max-width: 767px) {
  .brpc {
    display: none;
  }
}

/* SPのみ改行 <br class="brsp">　*/
.brsp {
  display: none;
}

@media screen and (max-width: 767px) {
  .brsp {
    display: inline;
  }
}

/* -----------------------------------
  header
 ----------------------------------- */
header {
  padding: 20px 5% 15px;
  position: fixed;
  top: 0%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  z-index: 99;
  background-color: rgba(250, 250, 250, 0.5);
}


header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

header h2 a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

header h2 a img {
  width: 75px;
  height: 75px;
  object-fit: contain;
}

header .hd-info-txt {
  display: block;
}

header .hd-info-txt span {
  display: block;
}

header .hd-info-txt span:nth-of-type(1) {
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: .12em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

header .hd-info-txt span:nth-of-type(2) {
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: .12em;
}

header .hd-info-txt02 {
  display: block;
  color: #f06966;
  font-size: 2.6rem;
}


.pc-nav ul {
  list-style: none;
  margin: 0;
  display: flex;
}

.pc-nav li {
  margin: 0 0 0 20px;
  font-size: 16px;
  position: relative;
  font-weight: 600;
}

.pc-nav span {
  display: block;
  font-size: 12px;
  padding-top: 5px;
  font-weight: 600;
  text-align: center;
  color: #f06966;
  font-family: Cormorant Garamond, "Noto Serif JP", serif;
  font-style: italic;
}

.pc-nav ul li.has-child::before {
  /* 矢印の調整 */
  content: '';
  position: absolute;
  left: 30px;
  top: 60px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(135deg);
}

.pc-nav ul ul li.has-child::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 17px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
}

.pc-nav li.has-child ul {
  position: absolute;
  left: 0px;
  top: 80px;
  z-index: 4;
  width: 230px;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
  display: table;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  background: #000;
  border-radius: 0 0 25px 25px;
  text-align: center;
}

.pc-nav li.has-child:hover>ul,
.pc-nav li.has-child ul li:hover>ul,
.pc-nav li.has-child:active>ul,
.pc-nav li.has-child ul li:active>ul {
  visibility: visible;
  opacity: 1;
}

.pc-nav li.has-child ul li {
  margin: 0;
  margin: 10px;
}

.pc-nav li.has-child ul li a {
  /* color: #000;	  */
  color: #fff;
}

.pc-nav li.has-child ul li a:hover,
.pc-nav li.has-child ul li a:active {
  background: #fff;
  border-radius: 25px;
}

.sp-nav {
  display: none;
}

.sns-nav {
  margin-left: 3%;
  display: none;
}

.sns-nav ul {
  display: flex;
  gap: 5px;
}

.sns-nav li {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #869DA4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sns-nav li a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4em;
  width: 100%;
  padding-left: 4.5px;
}


@media screen and (max-width: 767px) {
  header {
    padding: 10px 2.5%;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
  }

  header .h_img {
    width: 30px;
    height: auto;
    object-fit: contain;
    margin-right: 15px;
  }

  header h2 a {
    align-items: center;
    justify-content: center;
  }

  header h2 a img {
    width: 55px;
    height: 55px;
    object-fit: contain;
  }

  header .hd-info-txt span:nth-of-type(1) {
    line-height: 1.2;
  }

  header .hd-info-txt span:nth-of-type(2) {
    line-height: 1.5;
  }

  header .hd-info-txt span:nth-of-type(3) {
    line-height: 1.0;
  }

  #hamburger {
    position: relative;
    cursor: pointer;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    z-index: 99;
    color: #000;
    border: solid 3.5px #fff;
    background-color: #fff;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #hamburger span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 15px;
    height: 2.5px;
    border-radius: 5px;
    width: 50%;
    background-color: #000;
  }

  #hamburger span:nth-of-type(1) {
    top: 12px;
  }

  #hamburger span:nth-of-type(2) {
    top: 20px;
  }

  #hamburger span:nth-of-type(3) {
    top: 28px;
  }

  #hamburger span:nth-of-type(3)::after {
    content: "Menu";
    position: absolute;
    top: 10px;
    left: -5.5px;
    color: #000;
    font-size: 0.5rem;
    text-transform: uppercase;
  }

  #hamburger.active span:nth-of-type(1) {
    top: 14px;
    left: 20px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
    background-color: #000;
  }

  #hamburger.active span:nth-of-type(2) {
    opacity: 0;
  }

  #hamburger.active span:nth-of-type(3) {
    top: 26px;
    left: 20px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
    background-color: #000;
  }

  #hamburger.active span:nth-of-type(3)::after {
    content: "Close";
    transform: translateY(0) rotate(-45deg);
    top: 8px;
    left: 5px;
    color: #000;
  }

  .sp-nav {
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: block;
    width: 100%;
    background: rgba(0, 0, 0, .8);
    opacity: 0;
    transform: translateY(-100%);
    transition: all .2s ease-in-out;
    z-index: 99;
  }

  .sp-nav ul {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    padding-top: 30%;
  }

  .sp-nav li {
    margin: 0;
    padding: 0;
  }

  .sp-nav li span {
    font-size: 15px;
    color: #fff;
  }

  .sp-nav li a,
  .sp-nav li span {
    display: block;
    padding: 20px 0;
    color: #fff;
  }

  .sp-nav .close {
    position: relative;
    padding-left: 20px;
  }

  .sp-nav .close::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 16px;
    height: 1px;
    background: #fff;
    transform: rotate(45deg);
  }

  .sp-nav .close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 16px;
    height: 1px;
    background: #fff;
    transform: rotate(-45deg);
  }

  .toggle {
    transform: translateY(0);
    opacity: 1;
    z-index: 99;
  }

  .pc-nav {
    display: none;
  }

  .sns-nav {
    display: inline-block;
    position: fixed;
    bottom: 0%;
    left: 0%;
    width: 100%;
    margin: 0 auto;
    z-index: 99;
  }

  .sns-nav ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
  }

  .sns-nav li {
    width: 100%;
    height: 65px;
    border-radius: 0%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-color: #fff;
    border: solid 1px #f9cfd6;
  }

  .sns-nav li a {
    display: block;
    text-align: center;
    color: #333;
    font-size: 12px;
    width: 100%;
    padding: 0;
  }

  .sns-nav li i {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }

  .sns-nav li img {
    display: block;
    width: 28px;
    height: 28px;
    margin: 0 auto 5px;
    object-fit: cover;
  }

  #hamburger02 {
    position: relative;
    cursor: pointer;
    width: 100%;
    height: 65px;
    text-align: center;
    z-index: 99;
    color: #000;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #hamburger02 span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    height: 2.5px;
    border-radius: 5px;
    width: 30%;
    margin: 0 auto;
    background-color: #000;
  }

  #hamburger02 span:nth-of-type(1) {
    top: 12px;
  }

  #hamburger02 span:nth-of-type(2) {
    top: 20px;
  }

  #hamburger02 span:nth-of-type(3) {
    top: 28px;
  }

  #hamburger02 span:nth-of-type(3)::after {
    content: "menu";
    width: 100%;
    color: #000;
    font-size: 8px;
    text-transform: uppercase;
  }

  #hamburger02.active span:nth-of-type(1) {
    top: 14px;
    left: 0;
    right: 0;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
    background-color: #000;
  }

  #hamburger02.active span:nth-of-type(2) {
    opacity: 0;
  }

  #hamburger02.active span:nth-of-type(3) {
    top: 26px;
    left: 0;
    right: 0;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
    background-color: #000;
  }

  #hamburger02.active span:nth-of-type(3)::after {
    content: "Close";
    transform: translateY(0) rotate(-45deg);
    position: absolute;
    top: 18px;
    left: 16px;
    color: #000;
  }

}


/* -----------------------------------
   main
 ----------------------------------- */
main {
  width: 100%;
  /* padding-bottom: 10%; */
  position: relative;
}

/* 
main:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  background:url(../images/bg/black_00025.jpg) no-repeat center;
   background-size:cover;
  filter: blur(2px);
} */

@media screen and (max-width: 767px) {
  main {
    max-width: 100%;
    padding-top: 0%;
    position: relative;
  }
}

/* -----------------------------------
   section
 ----------------------------------- */
section {
  width: 100%;
  margin-bottom: 30px;
}

.sec_ineer {
  width: 100%;
  margin: 0 auto;
  padding: 5%;
  z-index: -2;
}

.sec_flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
}

.sec_flex02 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.sec_img,
.sec_txt {
  width: 100%;
  position: relative;
  z-index: 1;
  text-align: center;
}

.sec_txt {
  padding: 2.5%;
}

.sec_ineer h2 {
  display: table;
  text-align: left;
}

.sec_ineer h2 span {
  display: block;
}


@media screen and (max-width: 767px) {
  section {
    width: 100%;
  }

  .sec_ineer {
    width: 100%;
    margin: 0 auto;
    padding: 0 3%;
    margin-bottom: 150px;
  }

  .sec_flex {
    display: block;
    text-align: center;
  }

  .sec_flex02 {
    display: block;
    text-align: center;
  }

  .sec_img,
  .sec_txt {
    width: 100%;
  }

  .sec_txt h2 {
    text-align: center;
  }

  .sec_txt .btn {
    float: inherit;
  }

  .sec_txt .btn {
    float: inherit;
  }

  .sec_ineer h2 {
    display: table;
    margin: 80px auto 30px;
    text-align: left;
    font-size: 2.0rem;
  }
}


/* -----------------------------------
   secH4(news)
 ----------------------------------- */
.secH4 {
  margin-bottom: 0px;
  padding-bottom: 80px;
  text-align: center;
}

.secH4 .sec_ineer {
  width: 80%;
  padding: 0;
  margin: 0 auto;
  text-align: center;
}

.secH4 .sec_ineer h2 {
  text-align: center;
  margin: 0 auto;
}

.secH4 .sec_flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 4列 */
  grid-column-gap: 50px;
  /* 間隔 */
  grid-row-gap: 30px;
  /* 縦間隔 */
}

.item {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
}

.item .sec_img img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.item .sec_txt p {
  margin-bottom: 5px;
}

.item .sec_txt .category {
  display: flex;
  grid: 5px;
}

.item .sec_txt .category li {
  margin-bottom: 5px;
  font-size: 1.0rem;
  border: solid 1px #000;
  border-radius: 25px;
  padding: 5px;
  margin-right: 5px;
}

.item .sec_txt .date {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
  .secH4 .sec_flex {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /* 1列 */
    grid-row-gap: 30px;
    /* 縦間隔 */
  }

  .item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
  }

  .item .sec_img img {
    width: 100%;
    height: 100px;
    object-fit: cover;
  }

  .item .sec_txt p {
    margin-bottom: 5px;
    font-size: 1.2rem;
  }

  .item .sec_txt .title {
    font-size: 1.5rem;
  }

  .item .sec_txt .category {
    display: table;
    gap: 5px;
    margin-top: 10px;
  }

  .item .sec_txt .category li {
    display: none;
  }

  .item .sec_txt .date {
    margin-bottom: 15px;
    font-size: 1.2rem;
  }
}

/* -----------------------------------
   secH5(base)
 ----------------------------------- */
.info-list {
  display: table;
}

.info-list li {
  margin-bottom: 15px;
}

.info-list a {
  display: inline-block;
  position: relative;
  padding-right: 35px;
  line-height: 1;
  transition: 0.3s;
}

.info-list a::before {
  content: "";
  position: absolute;
  top: 80%;
  right: -25px;
  width: 50px;
  height: 1px;
  background: #333;
  transition: all .2s linear;
}

.info-list a::after {
  content: "";
  position: absolute;
  top: 30%;
  right: -20px;
  width: 1px;
  height: 10px;
  background: #333;
  transform: skewX(45deg);
  transition: all .2s linear;
}

/* -----------------------------------
   sec_business(店舗概要)
 ----------------------------------- */
.sec_business {
  margin: 0px auto;
  font-size: 1.5rem;
}

.sec_business .sec_ineer {
  width: 100%;
  padding: 205px 10px 122px 10px;
  background: #fff;
  filter: none;
  position: relative;
  border-radius: 0;
  text-align: center;
  z-index: 1;
}

.sec_business .sec_ineer:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  max-height: 640px;
  background: url(../images/bg/bg07.jpeg) center no-repeat;
  background-size: 100%;
  z-index: -1;
}

.sec_business .sec_flex {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 75px 73px 59px 81px;
  background: rgba(250, 250, 250, 0.9);
  border-radius: 10px;
  margin-bottom: 80px;
}

.sec_business .sec_ineer h2 {
  display: table;
  margin: 0 auto 50px;
  text-align: center;
}

.sec_business .info {
  margin: 30px auto;
}

.sec_business img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.sec_business .info img {
  margin: 30px auto;
}

.sec_business .sns-nav {
  margin: 0;
}

.sec_business .sns-nav .line-link {
  display: block;
  padding: 10px 30px;
  border: solid 1px #f9cfd6;
  border-radius: 25px;
  color: #000;
  background-color: #fff;
  font-size: 1.4rem;
  width: auto;
  display: flex;
  align-items: center;
  margin-left: 15px;
}

.sec_business .sns-nav .line-link a {
  color: #291F23;
}

.info-txt {
  margin-top: 30px;
}

.business_time tr {
  border-bottom: solid 1px #d1d9de;
}

.business_time tr th,
.business_time tr td {
  text-align: center;
  /* border: none;  */
}

.business_time tr th {
  padding: 4px 7px;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.business_time tr th:last-child {
  padding: 4px 10px 4px 0;
  letter-spacing: 0;
}

.business_time tr td {
  padding: 10px 0;
  letter-spacing: 0.1em;
}

.business_time tr td:last-child {
  padding-right: 18px;
}

.business_time tr td:not(:first-child) {
  color: #60b630;
}

.business_time .note_time {
  margin-top: 7px;
  letter-spacing: 0.09em;
  font-size: 12px;
}

.business_time .note_time a {
  color: red;
}

.map iframe {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  border-radius: 10px;
  width: 100%;
}

.sec_business .sec_grid {
  width: 80%;
  margin: 0 auto;
}

.sec_business .sec_grid .g-item {
  border: solid 2px;
  border-bottom: 2px solid;
  border-image: linear-gradient(to bottom, #f06966 0%, #f1ac9d 100%);
  border-image-slice: 1;
}

.sec_business .sec_grid .g-item small {
  display: block;
  font-size: 10px;
  padding-top: 5;
}

@media screen and (max-width: 767px) {

  .sec_business {
    /* 変更NG */
    margin: 0px auto 0;
  }

  .sec_business .sec_ineer {
    width: 100%;
    padding: 100px 10px 122px 10px;
    background: #fff;
    filter: none;
    position: relative;
    border-radius: 0;
    text-align: center;
    margin-bottom: 50px;
  }

  .sec_business .sec_ineer:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 50%;
    max-height: 640px;
    background-size: cover;
    z-index: -1;
  }

  .sec_business .sec_flex {
    width: 100%;
    padding: 40px 20px;
  }

  .sec_business .sec_ineer h2 {
    display: table;
    margin: 0 auto 50px;
  }

  .sec_business .sec_img {
    margin-top: 0px;
    margin-bottom: 50px;
  }

  .sec_business .sec_img iframe {
    width: 100%;
    height: 350px;
  }

  .business_time tr th,
  .business_time tr td {
    font-size: 1.2rem;
  }

  .sec_business .sec_grid {
    width: 100%;
    margin: 0 auto;
    gap: 5px;
  }

  .sec_business .sns-nav .line-link {
    display: none;
  }

  .sec_business .sns-nav .line-link a {
    color: #fff;
  }
}

/* -----------------------------------
  footer
 ----------------------------------- */
footer {
  background-color: #fff;
}

footer ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding-top: 5%;
}

footer li a {
  font-size: 14px;
}

footer .footer-copyright {
  text-align: center;
  padding-top: 5%;
  padding-bottom: 3%;
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
  footer ul {
    display: block;
    padding: 0;
  }

  footer li {
    border-bottom: solid 1px #f9cfd6;
    text-align: center;
    padding: 5%;
  }

  footer li:last-child {
    margin-bottom: 10px;
  }

  footer .footer-copyright {
    padding: 10px auto;
    margin: 0;
  }
}

.Hero-inner-icon {
  position: absolute;
  bottom: 2vw;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
}

.fa-solid {
  color: #fff;
}

.fa-envelope,
.fa-mobile-screen-button {
  color: #000;
}

.top-Cta {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 99;
}

.top-Cta-Btn {
  border-radius: 4px 0 0 4px;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.top-Cta-Btn:nth-child(2) {
  margin-top: 20px;
}

.top-Cta-Btn-Ja {
  margin-top: 16px;
  font-weight: bold;
  font-size: 16px;
}

.top-Cta-Btn-En {
  margin-top: 8px;
  font-size: 10px;
}

@media screen and (max-width: 767px) {
  .top-Cta {
    display: none;
  }
}

/* -----------------------------------
  <div class="button"></button>
 ----------------------------------- */
.button {
  align-self: center;
  border-style: solid;
  border: solid 1px #f9cfd6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 1.6rem;
  line-height: 23px;
  padding: 2.0rem 2.5rem;
}

.button:hover {
  box-shadow: rgba(0, 0, 0, .3) 2px 8px 8px -5px;
  transform: translate3d(0, 2px, 0);
}

.button:focus {
  box-shadow: rgba(0, 0, 0, .3) 2px 8px 4px -6px;
}

.button img {
  width: 10%;
}

.button small {
  font-size: 1.0rem;
}

/* 下矢印 */
.dli-chevron-round-right {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 0.8;
  position: relative;
  width: 0.8em;
  height: 0.8em;
  transform: translateX(-25%) rotate(45deg);
}

.dli-chevron-round-right::before,
.dli-chevron-round-right::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}

.dli-chevron-round-right::before {
  top: 0;
  left: 0;
  right: 0;
  height: 0.11em;
}

.dli-chevron-round-right::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.1em;
}

@media screen and (max-width: 767px) {
  .button {
    align-self: center;
    border-style: solid;
    border-width: 1px;
    box-shadow: rgba(0, 0, 0, .2) 15px 28px 25px -18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    font-size: 1.2rem;
    line-height: 23px;
    padding: 2.0rem 2.5rem;
  }

  .button img {
    width: 15%;
    padding-left: 5px;
  }

}


/*メニューをページ下部に固定*/
#sp-fixed-menu {
  position: fixed;
  width: 100%;
  bottom: 0px;
  opacity: 0.9;
  z-index: 99;
}

/*メニューを横並びにする*/
#sp-fixed-menu ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  gap: 0px;
}

#sp-fixed-menu li {
  justify-content: center;
  align-items: center;
  width: 50%;
  padding: 0;
  margin: 10px;
  font-size: 12px;
  border-right: 1px solid #fff;
  border-radius: 30% 70% 35% 65% / 50% 50% 50% 50%;
}

/*左側メニューを緑色に*/
#sp-fixed-menu li:first-child {
  padding: 10px;
  color: #fff;
  font-weight: 800;
  background: #06c755;
}


/*左側メニューをオレンジ色に*/
#sp-fixed-menu li:last-child {
  padding: 10px;
  color: #fff;
  font-weight: 900;
  background: #263AA2;
}


/*ボタンを調整*/
#sp-fixed-menu li a {
  color: #fff;
  text-align: center;
  display: block;
  padding: 20px;
}

/* PCの場合は非表示 */
@media screen and (min-width:767px) {
  #sp-fixed-menu {
    display: none;
  }
}

/* 投稿ページ（記事） */
/* blogページ */
/* single_container */

.single_container {
  width: 100%;
  height: auto;
  background: #fff;
}

.single_ineer {
  width: 80%;
  padding: 0 5%;
  margin: 0 auto;
  padding-top: 30px;
}

.single_name {
  width: 100%;
  height: 20vh;
  position: relative;
  margin: 0;
}

.single_name:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
}

.page_content {
  padding-left: 0;
  padding-right: 10px;
  padding-bottom: 30px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .single_ineer {
    width: 100%;
  }

  .single_name {
    width: 100%;
    height: 20vh;
    position: relative;
  }

  .page_content {
    padding: 0px;
  }
}

.page_single {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}

.page_single h2 {
  position: relative;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 2px solid #000;
  background: #fff;
  width: 100%;
}

.page_single h2:before,
.page_single h2:after {
  position: absolute;
  content: '';
}

.page_single h2:before {
  top: -40px;
  left: calc(50% - 40px);
  width: 80px;
  height: 80px;
  border: 2px solid #000;
  border-radius: 50%;
  background: #fff;
}

.page_single h2:after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}

.page_single h2 i {
  font-size: 30px;
  font-size: 3rem;
  line-height: 60px;
  position: absolute;
  z-index: 1;
  top: -40px;
  left: calc(50% - 40px);
  width: 80px;
  height: 60px;
  text-align: center;
}

.page_single h2 span {
  position: relative;
  z-index: 1;
}

.page_single h3 {
  position: relative;
  padding: 1.5rem;
  text-align: center;
}

.page_single h3:before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 5px;
  content: '';
  border-radius: 3px;
  background: #60b630;
}


@media screen and (max-width: 480px) {
  .page_single {
    display: block;
    margin-bottom: 130px;
  }

  .blog-content p {
    font-size: 1.4rem;
  }
}

.blog-detail__category {
  text-align: center;
  font-size: 1.0rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.blog-detail__category {
  border-bottom: solid 3px skyblue;
  position: relative;
}

.blog-detail__category:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #ffc778;
  bottom: -3px;
  width: 30%;
}



/* -----------------------------------
   投稿一覧(archive / index)
  ----------------------------------- */
.post-categories {
  display: flex;
  justify-content: center;
}

.page_archive {
  /* 全体 */
  width: 100%;
  padding-top: 50px;
  padding-left: 35vh;
  padding-bottom: 30px;
  background-color: #fff;
  z-index: -2;
  display: flex;
  gap: 50px;
}

.blog-content a {
  color: red;
}

.archive_ineer {
  /* 記事 */
  width: 60%;
}

.sidebar {
  /* サイド */
  width: 35%;
  background: #fff;
  border-left: solid 1px #333;
  padding: 30px 25px;
  text-align: center;
}

.sidebar .archive {
  padding: 0;
}

.author {
  margin-bottom: 30px;
  padding: 0;

}

.author .profile {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background: #fff;
  box-shadow: none;
  text-align: left;
}

.archive_blog {
  /* 投稿 */
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
  width: 100%;
  margin: 0 auto;
  padding-left: 30px;
  margin-bottom: 50px;
}

.archive_img {
  width: 30%;
  padding: 3%;
  padding-top: 0;
}

.archive_img img {
  border-radius: 0;
}

.archive_txt {
  width: 70%;
}

.archive_txt h3 {
  margin: 10px auto;
  font-size: 1.8rem;
}

.archive_txt a,
.archive_txt .date,
.post-categories li a {
  color: #5A4E3F;
}

.archive_txt p {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.archive ul {
  display: table;
}

.archive li {
  margin-bottom: 5px;
  text-align: left;
}

.archive li a {
  color: #000;
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.wp-block-table td {
  /* width: 50%; */
}

.wp-block-columns {
  margin-bottom: 30px;
  margin-top: 30px;
}

.wp-element-caption {
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {

  /* 投稿一覧 */
  .page_archive {
    display: block;
    width: 90%;
    margin: 0 auto;
    padding: 5%;
    margin-bottom: 50px;
  }

  .archive_ineer {
    width: 100%;
  }

  .sidebar {
    width: 100%;
    margin-top: 80px;
    border-top: solid 1px #333;
    border-left: none;
  }

  #sidebar {
    width: 100%;
  }

  .page_flex {
    display: flex;
    gap: 30px;
  }

  .page_txt,
  .page_img {
    width: 100%;
  }

  .page_ineer {
    width: 100%;
    margin: 0 auto;
    padding: 5%;

  }

  .post-categories {
    /* display: none; */
  }

  .archive_blog {
    /* 投稿 */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 0;
    padding-top: 30px;
    padding-bottom: 30px;
    width: 100%;
    border-bottom: dotted 1px #5A4E3F;
    margin-bottom: 0px;
  }

  .archive_img {
    width: 100%;
  }

  .archive_txt {
    width: 100%;
  }

  /* ブログテーブル */
  .wp-block-table table {}

  .wp-block-table table th,
  .wp-block-table table td {
    padding: 10px;
    border: solid 1px #ccc;
    text-align: center;
    box-sizing: border-box;
  }

  .wp-block-table table th {
    background: #ff7bac;
    color: #fff;

  }

  .wp-block-table table .head {
    display: none;
  }

  .wp-block-table table {
    width: 100%;
  }

  .wp-block-table table td {
    display: block;
    width: 100%;
    border-bottom: none;
  }

  .wp-block-table table td:first-child {
    background: #ccc;
    color: #333;
    font-weight: bold;
    text-align: center;
  }

  .wp-block-table table tr:last-child {
    border-bottom: solid 1px #ccc;
  }
}

.wp-block-post-template.wp-block-post-template {
  display: block;
}

.wp-block-post {
  /* border-bottom: solid 1px #333; */
}

.btn_link {
  text-align: center;
  margin: 50px auto;
}

.btn_link a {
  border-bottom: solid 1px #333;
}

a.btn--yellow {
  color: #000;
  background-color: #fff100;
  border-bottom: 5px solid #ccc100;
}

a.btn--yellow:hover {
  margin-top: 3px;
  color: #000;
  background: #fff20a;
  border-bottom: 2px solid #ccc100;
}

@media screen and (max-width: 767px) {
  .wp-block-media-text .wp-block-media-text__content {
    padding: 0;
    padding-top: 30px;
  }
}

/* カテゴリー */
.page_archive_c {
  /* 全体 */
  width: 80%;
  margin: 0 auto;
  padding-top: 50px;
  background-color: #fff;
}

.archive_ineer_c {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 50px;
  grid-row-gap: 30px;
}

.archive_blog_c {
  display: block;
  text-align: center;
}

.archive_img_c {
  width: 100%;
}

.archive_img_c img {
  width: 200px;
  height: 150px;
  object-fit: cover;
}

.archive_txt_c {
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 767px) {

  /* 投稿一覧 */
  .page_archive_c {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 5%;
    margin-bottom: 120px;
  }

  .archive_ineer_c {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 50px;
    grid-row-gap: 30px;
  }
}

.blog-detail__image {
  margin-bottom: 15px;
}



/* ふわっと */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-delay: 0.5s;
  /*開始時間 */
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 桜 */
.sakura {
  position: fixed;
  top: 0;
  padding: 0;
  margin: 0;
  max-width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
}

.sakura li {
  width: 18px;
  position: absolute;
  list-style: none;
  top: -50px;
  animation: fall 4s linear infinite, rotate1 2s ease-in-out infinite alternate;
}

@keyframes fall {
  to {
    top: 120%;
  }
}

@keyframes rotate1 {
  from {
    transform: translateX(0px) rotate(0deg);
  }

  to {
    transform: translateX(200px) rotate(-80deg) rotateX(180deg);
  }
}

@keyframes rotate2 {
  from {
    transform: translateX(200px) rotate(-45deg);
  }

  to {
    transform: translateX(0px) rotate(0deg);
  }
}

.sakura li:nth-child(1) {
  left: 0;
  animation: fall 10s linear infinite, rotate1 3s ease-in-out infinite alternate;
}

.sakura li:nth-child(2) {
  left: 5vw;
  animation: fall 15s linear infinite, rotate1 2s ease-in-out infinite alternate;
}

.sakura li:nth-child(3) {
  left: 15vw;
  animation: fall 9s linear infinite, rotate1 3.5s ease-in-out infinite alternate;
}

.sakura li:nth-child(4) {
  left: 30vw;
  animation: fall 8s linear infinite, rotate2 4s ease-in-out infinite alternate;
}

.sakura li:nth-child(5) {
  left: 40vw;
  animation: fall 10s linear infinite, rotate1 4s ease-in-out infinite alternate;
}

.sakura li:nth-child(6) {
  left: 55vw;
  animation: fall 11s linear infinite, rotate2 3s ease-in-out infinite alternate;
}

.sakura li:nth-child(7) {
  left: 65vw;
  animation: fall 7s linear infinite, rotate2 3.5s ease-in-out infinite alternate;
}

.sakura li:nth-child(8) {
  left: 50vw;
  animation: fall 7s linear infinite, rotate1 3s ease-in-out infinite alternate;
}

@keyframes fall {
  to {
    top: 120%;
  }
}

@keyframes rotate1 {
  from {
    transform: translateX(0px) rotate(0deg);
  }

  to {
    transform: translateX(200px) rotate(-80deg) rotateX(180deg);
  }
}

@keyframes rotate2 {
  from {
    transform: translateX(200px) rotate(-45deg);
  }

  to {
    transform: translateX(0px) rotate(0deg);
  }
}