@charset "UTF-8";
/*
@media screen and (min-width:768px) {
  .wrap {
    position: relative;
    width: 90%;
    max-width: none;
    margin: 0 auto;
    padding: 0 calc(60px + 1em);
  }
}
*/
/*======================================
nav common
/*======================================*/
nav {
  position: relative;
}
header {
  position: relative;
}
header nav {
  background-color: var(--white);
}
/*======================================
logo
/*======================================*/
.logo-S, .logo-R {
  display: block;
  margin: 0 auto;
}
.logo-S a {
  padding-top: 73.75%;
  background: url(../img/logo-S.png) no-repeat center;
  background-size: cover;
}
.logo-R a {
  padding-top: 30.5%;
  background: url(../img/logo-R.png) no-repeat center;
  background-size: cover;
}
.active .logo-R {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.active .overlay .logo-R {
  opacity: 1;
}
/*======================================
nav-wrap
/*======================================*/
.nav-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 6em 0 1.5em;
}
.nav-wrap .logo-R {
  width: 10%;
  min-width: 130px;
  max-width: 150px;
}
/*======================================
nav-CMN
/*======================================*/
.nav-CMN {
  text-align: center;
  flex: 1;
  justify-content: flex-end;
  font-size: calc(100vw* 10 / 768);
}
@media screen and (min-width:1200px) {
  .nav-CMN {
    font-size: 90%;
  }
} /*END query*/
.nav-CMN > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-CMN > ul > li {
  width: auto;
  margin-left: 2.5%;
  padding: 1.5em 0;
  cursor: pointer;
}
.nav-CMN > ul > li > a {
  position: relative;
  display: inline-block;
  line-height: 1em;
  letter-spacing: 1px;
  padding: 1em;
}
/* hover時の下線（中央から伸びる） */
.nav-CMN > ul > li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: rgba(240, 110, 0, 1);
  transform: translateX(-50%);
  transition: width .22s ease;
}
.nav-CMN > ul > li > a:hover::after, .nav-CMN > ul > li > a:focus-visible::after {
  width: 100%;
}
.nav-CMN > ul > li.current > a::after {
  width: 100%;
  opacity: .7;
}
@media screen and (min-width:1240px) {
  .nav-CMN > ul > li > a {
    letter-spacing: 3px;
  }
} /*END query*/
.nav-CMN > ul > li > a:hover::before {
  transform: translateY(-3px);
}
/*======================================
sub-menu
/*======================================*/
/* sub-menu本体（初期：非表示） */
.nav-CMN > ul > li .sub-menu {
  position: absolute;
  left: 50%;
  bottom: 1em;
  width: 737px;
  padding: 2em;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .15), inset 0 1px 0 rgba(255, 255, 255, .4);
  text-align: left;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(calc(100% - 12px));
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
  will-change: transform, opacity;
}
.nav-CMN > ul > li:hover .sub-menu, .nav-CMN > ul > li:focus-within .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(100%);
  transition: opacity .22s ease, transform .22s ease, visibility 0s;
}
.nav-CMN > ul > li .sub-menu > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 250px auto auto;
  word-break: break-word;
  column-gap: 1em;
  row-gap: 1em;
  align-items: start;
  font-size: 90%;
}
.nav-CMN > ul > li .sub-menu > ul > li:first-child {
  grid-column: 1;
}
.nav-CMN > ul > li:nth-of-type(1) .sub-menu > ul > li:first-child {
  grid-row: 1 / span 2;
}
.nav-CMN > ul > li:nth-of-type(2) .sub-menu > ul > li:first-child {
  grid-row: 1 / span 3;
}
.nav-CMN > ul > li .sub-menu > ul > li {
  min-width: 0;
}
.nav-CMN > ul > li .sub-menu > ul > li:first-of-type div {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin-bottom: .5em;
  font-size: 110%;
  letter-spacing: 3px;
  color: rgba(240, 110, 0, 1);
}
.nav-CMN > ul > li .sub-menu > ul > li:first-of-type a {
  font-size: 120%;
  font-weight: 600;
}
.nav-CMN > ul > li .sub-menu > ul > li:not(:first-of-type) a {
  position: relative;
  font-weight: 400;
  line-height: 1.4em;
  transition: all .4s;
}
.nav-CMN > ul > li .sub-menu > ul > li:not(:first-of-type) a::before {
  position: absolute;
  content: "";
  margin-left: -1em;
  width: 6px;
  height: 6px;
  margin-top: .5em;
  background: rgba(240, 110, 0, 1);
  border-radius: 100%;
}
.nav-CMN > ul > li .sub-menu > ul > li:not(:first-of-type) a:hover {
  transform: translate(5px, 0);
  transition: all .4s;
}
/*======================================
nav-fixed
/*======================================*/
#nav-fixed {
  position: fixed;
  z-index: 999;
  top: -300px;
  left: 0;
  background: rgba(247, 246, 245, .6); /* 半透明が重要 */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari対策 */
}
#nav-fixed.fadeout {
  top: -300px;
  transition: all 1.5s ease-out;
}
#nav-fixed.fadein {
  top: 0;
  transition: all .7s ease-out;
}
/*======================================
Btn
/*======================================*/
.Btn {
  position: relative;
  display: block;
  text-align: center;
}
.Btn:not(:last-of-type) {
  margin: 0 1% .7em;
}
@media screen and (min-width:768px) {
  .Btn:not(:last-of-type) {
    margin: 0 1% 0 0;
  }
} /*END query*/
.Btn p {
  margin-bottom: 2em;
  text-align: center;
}
.Btn a {
  position: relative;
  display: inline-block;
  font-weight: 600;
  margin: 0 auto;
  border-radius: 100px;
}
.Btn a span {
  text-indent: 0;
  overflow: visible;
  display: block;
}
.Btn-M {
  line-height: 1.3em;
  padding-top: .7em;
  padding-bottom: .7em;
  max-width: 250px;
  margin: 0 auto;
}
.Btn-L {
  font-size: 130%;
  line-height: 1.3em;
  padding-top: 1em;
  padding-bottom: 1em;
}
.Btn-S {
  display: inline-block;
  font-size: 90%;
  line-height: 1em;
  padding: .7em 2em;
}
.Btn-SS {
  font-size: 80%;
  line-height: 1.3em;
  padding-top: .7em;
  padding-bottom: .7em;
}
.Btn-arrow {
  padding-left: 45px;
  padding-right: 45px;
}
.Btn-SS.Btn-arrow {
  padding-left: 35px;
  padding-right: 35px;
}
.Btn-SS.Btn-arrow:after {
  width: 35px;
}
.Btn-arrow:after {
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f054";
  right: 0;
  top: 50%;
  width: 3em;
  line-height: 0;
  font-size: .7em;
  opacity: .7;
  transition: all .3s ease;
}
.Btn-arrow:hover:after {
  right: -.2em;
  transition: all .3s ease;
}
.Btn-M.Btn-arrow {
  padding-left: 3em;
  padding-right: 3em;
}
.Btn-L.Btn-arrow {
  padding-left: 3em;
  padding-right: 3em;
}
.Btn.Btn-Neu-bg-navy {
  border-radius: 100px;
  background: #e0e0e0;
  box-shadow: inset 5px 5px 3px #b3b3b3, inset -5px -5px 3px var(--white), 0 5px 7px #001628;
}
.Btn.Btn-Neu-bg-white {
  border-radius: 100px;
  background: linear-gradient(145deg, #dde1e1 0%, var(--white) 50%, #dde1e1 100%);
  background-size: 300% 300%;
  background-position: 0% 50%;
  box-shadow:
    5px 5px 10px #d5dada, -5px -5px 10px var(--white);
  transition:
    background-position .6s ease, box-shadow .6s ease;
}
.Btn.Btn-Neu-bg-white:hover {
  background-position: 100% 50%;
  box-shadow:
    -5px -5px 10px #d5dada, 5px 5px 10px var(--white);
}
.Btn-line-glass {
  position: relative;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 8px 20px rgba(0, 0, 0, 0.05);
  transition:
    background 0.3s ease, box-shadow 0.3s ease;
}
.Btn-line-navy {
  border: 1px solid var(--navy);
}
.Btn-line-white {
  border: 1px solid var(--white);
}
.Btn-line-orange {
  border: 1px solid var(--orange);
}
.Btn-line-glass:hover {
  background: rgba(255, 255, 255, 0.32);
}
.Btn-line-glass:hover {
  background: rgba(255, 255, 255, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 10px 24px rgba(0, 0, 0, 0.08);
}
.Btn.EN {
  letter-spacing: 5px;
}
.Btn .flex a {
  flex: 1;
  width: 100%;
  max-width: 320px;
  margin: 0;
}
.Btn .flex a:first-of-type {
  margin-bottom: .5em;
}
@media (min-width: 768px) {
  .Btn .flex a:first-of-type {
    margin-bottom: 0;
    margin-right: 1em;
  }
} /*END query*/
/*======================================
.contact
/*======================================*/
.contact-CMN {
  position: relative;
  display: inline-block;
  width: 80%;
  max-width: 700px;
  opacity: 0;
  transform: translate3d(0, 150px, 0);
  transition:
    transform 1s ease, opacity 1s ease .5s;
  will-change: transform, opacity;
}
.contact-CMN.is-slideUp {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.contact-single .contact-CMN {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.contact-CMN a {
  display: block;
  padding: 3em 1.5em;
}
.contact-CMN h3 {
  text-align: center;
  font-size: 170%;
  letter-spacing: 5px;
  margin: 0 auto;
}
.contact-CMN h3 span {
  display: block;
  font-size: 80%;
}
.contact-CMN p {
  margin-top: 1em;
  letter-spacing: 2px;
}
@media (min-width: 768px) {
  .contact-CMN h1 {
    font-size: 150%;
    letter-spacing: 5px;
  }
  .contact-CMN a {
    display: block;
    padding: 3em 3em;
  }
} /*END 
/*======================================
search-CMN
/*======================================*/
.search-CMN {
  position: relative;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 1.5em;
  border-radius: 30px;
  background: rgba(251, 245, 239, 1);
}
.search-CMN .search-inner {
  position: relative;
  z-index: 2;
}
.search-CMN h1 {
  font-size: 160%;
  margin: .3em auto 0;
}
.search-CMN form {
  position: relative;
  width: 100%;
  max-width: 400px;
  overflow: hidden;
  border-radius: 100px;
  background: var(--white);
  box-shadow: 0 2px 0 rgba(10, 50, 10, .3);
  margin: 1em auto 1.3em;
}
.search-CMN form input {
  width: 100%;
  height: 50px;
  padding: 0 50px 0 1.5em;
  font-size: 105%;
  font-family: sans-serif !important;
  font-weight: bold;
  color: #555555;
}
.search-CMN form input::placeholder {
  color: rgba(0, 0, 0, .3);
}
.search-CMN form input:focus {
  background: rgba(235, 240, 235, 1);
}
.search-CMN form button {
  position: absolute;
  right: 0;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
}
.search-CMN form button::after {
  content: "\f179";
  font-family: "dashicons";
  width: 50px;
  height: 50px;
  font-size: 30px;
  color: rgba(85, 105, 85, .5);
  transition: all 0.3s ease;
}
.search-CMN form button:hover::after {
  color: rgba(85, 105, 85, 1);
  transition: all 0.3s ease;
}
.search-CMN .category ul {
  position: relative;
  align-items: stretch;
  font-size: calc(100vw * 15 / 375);
  margin: 1em auto;
  z-index: 1;
}
@media screen and (min-width:768px) {
  .search-CMN h1 {
    font-size: 190%;
  }
  .search-CMN .category ul {
    font-size: calc(100vw * 18 / 768);
  }
}
@media screen and (min-width:1024px) {
  .search-CMN .category ul {
    font-size: 110%;
  }
}
.search-CMN .category li {
  display: flex;
  align-items: stretch;
  width: calc((100% - .5em*2)/3);
  margin-bottom: .5em;
}
.search-CMN .category li a {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 100%;
  flex-grow: 1;
  padding: .6em .3em;
  background: var(--white);
  border-radius: 10px;
  border: 3px solid rgba(85, 105, 85, .8);
  line-height: 1.2em;
}
/*======================================
snsNav
/*======================================*/
.snsNav {
  margin: 0 auto;
}
.snsNav li {
  margin: 0;
  line-height: 0;
}
.snsNav a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px; /* 1em = 16px */
  line-height: 1;
  color: rgb(var(--white-rgb));
}
.snsNav a::before {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  content: "";
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 20px;
  line-height: 1;
}
/* X (Twitter) */
.icon-X a::before {
  content: "\e61b";
}
/* Facebook */
.icon-Facebook a::before {
  content: "\f39e";
}
/* Threads */
.icon-Threads a::before {
  content: "\e618";
}
/* Instagram */
.icon-Instagram a::before {
  content: "\f16d";
}
/* TikTok */
.icon-TikTok a::before {
  content: "\e07b";
}
/* LINE */
.icon-LINE a::before {
  /*background: url(../img/icon-LINE.png) no-repeat center / contain;*/
  content: "\f3c0"; /* fa-line */
}
/* YouTube */
.icon-Youtube a::before {
  content: "\f167"; /* fa-youtube */
}
/* Voicy */
.icon-Voicy a::before {
  content: "";
  width: 1em;
  height: 1em;
  background-color: currentColor;
  -webkit-mask: url("../img/icon-Voicy.svg") no-repeat center / contain;
  mask: url("../img/icon-Voicy.svg") no-repeat center / contain;
  transition: background-color .3s ease;
}
/*======================================
pageTop
/*======================================*/
.overlay .pageTop-wrap {
  display: none;
}
.pageTop-wrap {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(240, 110, 0, 1);
  border-radius: 50%;
  opacity: 1;
  transition: all .3s ease;
}
.pageTop-wrap a {
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35em;
  text-decoration: none;
}
.pageTop-wrap:hover {
  opacity: .7;
  transition: all .3s ease;
}
.pageTop-wrap i {
  font-size: 18px;
  transform: translateY(-3px);
  transition: transform .3s ease;
  animation: fuwafuwa .6s ease-in-out infinite alternate-reverse;
}
.pageTop-wrap span {
  font-size: 13px;
  letter-spacing: 2px;
  text-indent: 1px;
}
@keyframes fuwafuwa {
  0% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}
/* pageTop-fixed ==============*/
#pageTop-fixed {
  position: fixed;
  right: 1em;
  bottom: -200px;
  transition: all .5s ease-out;
  z-index: 1;
}
#pageTo @media screen and (min-width:768px) {} /*END query*/
@media screen and (min-width:1024px) {} /*END query*/
/*======================================
breadcrumbs
/*======================================*/
header {
  position: relative;
}
.bread_crumb {
  display: block;
  width: 100%;
  padding: 1.5em 2em;
  line-height: 1.4em;
  font-size: 12px;
}
.bread_crumb a span {
  text-indent: 0;
  white-space: unset;
  overflow: visible;
  display: block;
}
.bread_crumb i {
  margin: 0 .7em;
  font-size: 100%;
  vertical-align: .1em;
  color: var(--navy);
}
.bread_crumb i:after {}
.bread_crumb i.fa-home {
  margin: 0;
  font-size: 100%;
  vertical-align: inherit;
}
.bread_crumb br {
  display: none;
}
.bread_crumb .current-item {
  color: var(--navy);
  opacity: .5;
}
/*
.breadcrumbs span[property="name"] {
  display: inline-block;
  padding: 0;
  margin-top: -3px;
  vertical-align: middle;
  max-width: 60px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
*/
@media screen and (min-width:768px) {
  .bread_crumb {
    font-size: 13px;
  }
} /*END query*/
/*======================================
pagenation
/*======================================*/
/*smooth scroll jump*/
.smooth-scroll {
  padding-top: 3em !important;
  margin-top: -3em !important;
}
/* archive page ----------------------*/
.wp-pagenavi {
  text-align: center;
  font-weight: bold;
  margin: 0 auto;
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi a, .wp-pagenavi span.current {
  display: inline-block;
  color: var(--navy);
  text-decoration: none;
  vertical-align: middle;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 0 5px;
  border-radius: 50%;
  border-radius: 50%;
  background: linear-gradient(145deg, #cacaca, #f0f0f0);
  box-shadow: 5px 5px 13px #bababa, -5px -5px 13px #ffffff;
}
.wp-pagenavi span.current {
  width: 48px;
  height: 48px;
  line-height: 48px;
  margin: 0 5px;
  opacity: .7;
}
.wp-pagenavi a:hover {
  opacity: 0.7;
  transition: all 0.3s ease;
  transform: scale(1.1);
}
.wp-pagenavi a.first, .wp-pagenavi a.last {
  text-indent: 100%;
  white-space: nowrap;
  position: relative;
}
.wp-pagenavi a.first:after, .wp-pagenavi a.last:after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  margin-top: -4px;
}
.wp-pagenavi a.first:after {
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  left: 50%;
  margin-left: -2px;
}
.wp-pagenavi a.last:after {
  border-right: 2px solid var(--white);
  border-top: 2px solid var(--white);
  right: 50%;
  margin-right: -2px;
}
.wp-pagenavi a.previouspostslink, .wp-pagenavi a.nextpostslink {
  background: transparent;
  width: auto;
  color: var(--navy);
  transition: all 0.3s ease;
  box-shadow: none;
  opacity: .7;
  width: 1.5rem;
}
.wp-pagenavi a.previouspostslink:hover, .wp-pagenavi a.nextpostslink:hover {
  opacity: 0.7;
  transition: all 0.3s ease;
  transform: scale(1.2);
}
/*======================================
contact-block
/*======================================*/
.contact-block .CTA-flex {
  padding: 0 0 1.5em;
}
.CTA-flex p {
  text-align: center;
  font-size: 100%;
  letter-spacing: 2px;
  margin-bottom: 2em;
}
.contact-block .CTA-flex a {
  display: block;
  width: 80%;
  min-width: 100px;
  font-size: 100%;
  border-radius: 100px;
  padding-left: 4em;
  padding-right: 4em;
}
.contact-block .CTA-flex a:not(:first-of-type) {
  margin-top: 1em;
  margin-left: 0;
}
.contact-block .TEL-CMN {
  text-align: center;
}
.contact-block .TEL-CMN > div {
  margin: 0 auto 2em;
}
.contact-block .TEL-CMN p {
  position: relative;
  display: inline-block;
  padding: .7em 3em;
  border: 4px solid rgba(240, 200, 170, 1);
  border-radius: 10px;
  font-size: 110%;
  line-height: 1em;
  letter-spacing: 5px;
  text-indent: 5px;
  margin-bottom: 1.3em;
}
.contact-block .TEL-CMN p:before, .contact-block .TEL-CMN p:after {
  position: absolute;
  top: 100%;
  left: 30px;
  height: 0;
  width: 0;
  border: solid transparent;
  content: "";
}
.contact-block .TEL-CMN p:before {
  left: calc(50% - 12px);
  border-color: rgba(240, 200, 170, 1) transparent;
  border-style: solid;
  border-width: 18px 10px 0px 10px;
}
.contact-block .TEL-CMN p:after {
  left: calc(50% - 8px);
  border-color: var(--white) transparent;
  border-style: solid;
  border-width: 12px 6px 0px 6px;
}
.contact-block .TEL-CMN > div:nth-of-type(2) p {
  border-color: rgba(205, 225, 200, 1);
}
.contact-block .TEL-CMN > div:nth-of-type(2) p:before {
  border-color: rgba(205, 225, 200, 1) transparent;
}
.contact-block .TEL-CMN a {
  font-size: 160%;
  padding-left: 2.5em;
  letter-spacing: 2px;
}
.contact-block .TEL-CMN a.tel::before, .contact-block .TEL-CMN a.tel::after {
  width: 2em;
  height: 2em;
  top: -.5em;
}
.contact-block .TEL-CMN > div:first-of-type a.tel::before {
  background: rgba(225, 145, 85, 1);
}
.contact-block aside p {
  text-align: center;
}
@media screen and (min-width:768px) {
  .contact-block .CTA-flex aside {
    font-size: 130%;
  }
  .contact-block .CTA-flex a {
    width: auto;
    font-size: 120%;
  }
  .contact-block .CTA-flex a:not(:first-of-type) {
    margin-top: 0;
    margin-left: 1em;
  }
  .contact-block .TEL-CMN > div {
    width: calc((100% - 2em)/2);
  }
  .contact-block .TEL-CMN > div:not(:last-of-type) {
    margin-right: 2em;
  }
  .contact-block .TEL-CMN p {
    position: relative;
    display: inline-block;
    padding: .7em 3em;
    border: 4px solid rgba(240, 200, 170, 1);
    border-radius: 10px;
    font-size: 140%;
    line-height: 1em;
    letter-spacing: 5px;
    text-indent: 5px;
    margin-bottom: 1.3em;
  }
  .contact-block .TEL-CMN p:before, .contact-block .TEL-CMN p:after {
    position: absolute;
    top: 100%;
    left: 30px;
    height: 0;
    width: 0;
    border: solid transparent;
    content: "";
  }
  .contact-block .TEL-CMN p:before {
    left: calc(50% - 12px);
    border-color: rgba(240, 200, 170, 1) transparent;
    border-style: solid;
    border-width: 18px 10px 0px 10px;
  }
  .contact-block .TEL-CMN p:after {
    left: calc(50% - 8px);
    border-color: var(--white) transparent;
    border-style: solid;
    border-width: 12px 6px 0px 6px;
  }
  .contact-block .TEL-CMN > div:nth-of-type(2) p {
    border-color: rgba(205, 225, 200, 1);
  }
  .contact-block .TEL-CMN > div:nth-of-type(2) p:before {
    border-color: rgba(205, 225, 200, 1) transparent;
  }
  .contact-block .TEL-CMN a {
    font-size: 200%;
    padding-left: 2.5em;
    letter-spacing: 2px;
  }
  .contact-block .TEL-CMN a.tel::before, .contact-block .TEL-CMN a.tel::after {
    width: 2em;
    height: 2em;
    top: -.5em;
  }
  .contact-block aside p {
    text-align: center;
    margin-top: 1em;
  }
} /*END query*/
/*======================================
layout
/*======================================*/ ::root {
  --doc__margin: 3%;
}
.grid-wrap {
  width: 100%;
}
.doc__side {
  display: none;
}
@media (min-width: 768px) {
  .grid-wrap {
    width: auto;
    display: grid;
    grid-template-columns: 20% 1fr;
    gap: 3%;
    min-height: 2000px;
  }
  .doc__side {
    display: block;
    position: sticky;
    top: calc(5em + 80px);
    left: 3%;
    z-index: 10;
    height: 100vh;
  }
  .doc__side.is-sticky {
    position: sticky;
    top: calc(5em + 80px);
  }
  .doc__side ul {
    width: calc(100% - 12%);
    max-height: calc(100vh - 4rem);
    overflow: auto;
    padding: 1.5em;
  }
  .doc__side ul li {
    font-size: 130%;
    line-height: 1em;
  }
  .doc__side ul li:not(:last-of-type) {
    margin-bottom: 1em;
  }
} /*END query*/