@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-width: 1280px;
  font-family: "Zen Maru Gothic", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul {
  list-style: none;
}

a {
  color: #ee731b;
  transition: 0.3s ease all;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

body main > section {
  padding: 140px 0;
}
body main > section .head {
  text-align: center;
  margin: 0 0 70px;
}

.container {
  position: relative;
  width: 1160px;
  margin: 0 auto;
}

.pcHide {
  display: none !important;
}
.spHide {
  display: initial !important;
}

/* Global Nav */
nav#global-nav ul {
  display: flex;
  align-items: center;
  gap: 35px;
}
nav#global-nav ul li a:hover {
  opacity: 1;
}
nav#global-nav ul li a span {
  position: relative;
  display: inline-block;
  padding: 0 0 0 18px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #633b17;
}
nav#global-nav ul li a:hover span {
  color: #ee731b;
}
nav#global-nav ul li a span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ee731b;
}
nav#global-nav ul li a.contact .dot {
  position: absolute;
}
nav#global-nav ul li a.contact span::before {
  content: none;
}

header {
  padding: 26px 0;
  background-color: #f8f2ee;
}
header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 -30px;
}
.el_humburger,
#uq_spNavi {
  display: none;
}

/* Footer */
footer {
  padding: 60px 0;
  background-color: #f8f2ee;
}
footer .footer-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 0 80px;
}
footer .footer-row .head .logo {
  margin: 0 0 34px;
}
footer .footer-row .head .info {
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
  color: #633b17;
}
footer .footer-row .main {
  width: 640px;
}
footer .footer-row .main .menu-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 0 80px;
}
footer .footer-row .main .menu-list .menu-item {
  width: 200px;
}
footer .footer-row .main .menu-list .menu-item ul li {
  margin: 0 0 24px;
}
footer .footer-row .main .menu-list .menu-item ul li a:hover {
  opacity: 1;
}
footer .footer-row .main .menu-list .menu-item ul li a span {
  position: relative;
  display: inline-block;
  padding: 0 0 0 18px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #633b17;
}
footer .footer-row .main .menu-list .menu-item ul li a:hover span {
  color: #ee731b;
}
footer .footer-row .main .menu-list .menu-item ul li a span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ee731b;
}
footer .footer-row .main .menu-list .menu-item ul li:last-child {
  margin: 0;
}
footer .footer-row .main .contact .head {
  display: inline-block;
  margin: 0 0 20px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: #633b17;
  background-color: #ffffff;
  border-radius: 50px;
}
footer .footer-row .main .contact .item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 20px;
  margin: 0 0 10px;
  padding: 0 0 0 18px;
}
footer .footer-row .main .contact .item span {
  line-height: 1;
  color: #633b17;
}
footer .footer-row .main .contact .item span.type {
  font-size: 16px;
  font-weight: 700;
}
footer .footer-row .main .contact .item span.tel {
  font-size: 20px;
  font-weight: 700;
}
footer .footer-row .main .contact .item span.tel a {
  color: #633b17;
}
footer .footer-row .main .contact .item span.small {
  font-size: 14px;
  font-weight: 400;
}
footer .footer-row .main .contact .item span.small::before {
  content: "/ ";
}
footer .footer-row .main .contact .item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #ee731b;
  border-radius: 50%;
}
footer .copyright {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: #633b17;
}

/* --------------------------------------------------
Components
---------------------------------------------------- */

/* Buttons */
.btn-link {
  display: inline-flex;
  align-items: center;
  transition: 0.3s ease all;
  border: 2px solid #ee731b;
  border-radius: 40px;
  position: relative;
}
.btn-link span {
  padding: 0 !important;
}
.btn-link .txt {
  font-weight: 700;
  line-height: 1;
}
.btn-link .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  right: 20px;
}
/* button - Type A */
.btn-link.btn-type-a {
  background-color: #ee731b;
}
.btn-link.btn-type-a .txt {
  color: #ffffff !important;
}
.btn-link.btn-type-a .dot {
  background-color: #ffffff !important;
}
.btn-link:hover.btn-type-a {
  background-color: #ffffff;
}
.btn-link:hover.btn-type-a .txt {
  color: #ee731b !important;
}
.btn-link:hover.btn-type-a .dot {
  background-color: #ee731b !important;
}

/* button - Type B  */
.btn-link.btn-type-b {
  background-color: #fff;
}
.btn-link.btn-type-b .txt {
  color: #ee731b !important;
}
.btn-link.btn-type-b .dot {
  background-color: #ee731b !important;
}
.btn-link:hover.btn-type-b {
  background-color: #ee731b;
}
.btn-link:hover.btn-type-b .txt {
  color: #fff !important;
}
.btn-link:hover.btn-type-b .dot {
  background-color: #fff !important;
}

.btn-link.btn-small {
  gap: 20px;
  height: 48px;
  padding: 0 46px 0 26px;
}
.btn-link.btn-small .txt {
  font-size: 16px;
}
.btn-link.btn-big {
  gap: 40px;
  height: 60px;
  padding: 0 62px 0 32px;
}
.btn-link.btn-big .txt {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
.btn-link.btn-big .dot {
  width: 8px;
  height: 8px;
  right: 30px;
}
.btn-link:hover {
  opacity: 1;
}

/* button-return */
.button-return {
  margin-bottom: 140px;
  display: flex;
  justify-content: center;
}

/* Components: Check List */
.check-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
}

.check-list .item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-list .item .icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
}
.check-list .item .text {
  color: #3b4043;
}

/* Components: Rect Vertical  */
.rect-vertical {
  position: relative;
  margin: 0 0 20px;
  padding: 6.5px 0 6.5px 21px;
}
.rect-vertical::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  border-radius: 20px;
  background-color: #ee731b;
}

.rect-vertical.rect-vertical-underline {
  border-bottom: 1px solid #ddd;
  padding: 6.5px 0 26.5px 21px;
}
.rect-vertical.rect-vertical-underline::before {
  height: 48px;
}

/* Typography */
.ttl-big {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  color: #633b17;
}

.ttl-mid {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  color: #633b17;
}

.ttl-small {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #633b17;
}

.ttl-eng {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #ee731b;
  font-family: "Josefin Sans", sans-serif;
}
.ttl-eng .num {
  font-size: 28px;
  font-family: "Josefin Sans", sans-serif;
}

.txt {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.6px;
  color: #3b4043;
}
.txt.txt-small {
  font-size: 14px;
  line-height: 1.8;
}

.sec-ttl {
  position: relative;
  margin: 0 0 40px;
}
.sec-ttl span {
  display: block;
  margin: 0 0 20px;
}
.sec-ttl .deco {
  position: absolute;
  margin: 0;
}

/* info-list(table) */
.info-list {
  border-top: 1px solid #d9d9d9;
}
.info-list .info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 25px 0;
  border-bottom: 1px solid #d9d9d9;
}
.info-list .info-item .info-head {
  width: 160px;
  margin: 0;
}
.info-list .info-item .info-head .txt {
  font-weight: 700;
  color: #ee731b;
  line-height: 1.5;
}
.info-list .info-item .info-body {
  width: calc(100% - 176px);
  margin: 0;
}
.info-list .info-item .info-body ul li {
  position: relative;
  padding: 0 0 0 24px;
}
.info-list .info-item .info-body ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color: #3b4043;
}
.info-list .info-item .info-body a .txt {
  color: #ee731b;
  text-decoration: underline;
}
.info-list.align-center .info-item {
  align-items: center;
}

/*deco-ttl*/
.deco-ttl img {
  width: 100%;
  height: auto;
}
.deco-ttl.deco-ttl-01 {
  width: 200px;
  height: 65px;
}
.deco-ttl.deco-ttl-02 {
  width: 174px;
  height: 53px;
}

/*download*/
.download-box {
  margin: 0 0 80px;
  padding: 30px;
  background-color: #f8f2ee;
  border-radius: 20px;
}
.download-box .download-ttl {
  position: relative;
  margin: 0 0 20px;
  padding: 6.5px 0 6.5px 21px;
}
.download-box .download-ttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  border-radius: 20px;
  background-color: #ee731b;
}
.download-box .download-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 30px;
  border-top: 1px solid #d9d9d9;
}
.download-box .download-list .download-item {
  width: 100%;
  padding: 26px 16px;
  border-bottom: 1px solid #d9d9d9;
}
.download-box .download-list .download-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.download-box .download-list .download-item a .text {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #ee731b;
}

.download-box .download-list .download-item a .text::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ee731b;
}
.download-box .download-list.col-2 .download-item {
  width: calc(50% - 15px);
}

/* ------------------------------------------------
Page General 
--------------------------------------------------- */
body.page main #main-visual,
body.archive main #main-visual,
body.single main #main-visual {
  position: relative;
  width: 100%;
  height: 340px;
  background-color: #f8f2ee;
  background-position: center !important;
  background-size: cover !important;
  padding: 0;
}

body.page main #main-visual .breadcrumb,
body.archive main #main-visual .breadcrumb,
body.single main #main-visual .breadcrumb {
  display: flex;
  gap: 45px;
  width: fit-content;
  margin: 0 0 0 auto;
}
body.page main #main-visual .breadcrumb li,
body.archive main #main-visual .breadcrumb li,
body.single main #main-visual .breadcrumb li {
  position: relative;
}
body.page main #main-visual .breadcrumb li span,
body.archive main #main-visual .breadcrumb li span,
body.single main #main-visual .breadcrumb li span {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 2.4;
  color: #000000;
}
body.page main #main-visual .breadcrumb li::after,
body.archive main #main-visual .breadcrumb li::after,
body.single main #main-visual .breadcrumb li::after {
  content: "";
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 12px;
  background: url("../img/common/icon-arrow-right.svg") no-repeat;
  background-position: center;
  background-size: contain;
}
body.page main #main-visual .breadcrumb li:last-child::after,
body.archive main #main-visual .breadcrumb li:last-child::after,
body.single main #main-visual .breadcrumb li:last-child::after {
  content: none;
}
body.page main #main-visual .mv-ttl,
body.archive main #main-visual .mv-ttl,
body.single main #main-visual .mv-ttl {
  padding: 40px 0 0 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.5;
  color: #633b17;
}
body.page main #main-visual .mv-ttl span,
body.archive main #main-visual .mv-ttl span,
body.single main #main-visual .mv-ttl span {
  margin: 0 0 10px;
}

body.page main #main-visual .mv-bottom,
body.archive main #main-visual .mv-bottom,
body.single main #main-visual .mv-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
body.page main #main-visual .mv-bottom img,
body.archive main #main-visual .mv-bottom img,
body.single main #main-visual .mv-bottom img {
  display: block;
  width: 100%;
  height: auto;
}

/* -------------------------------------------------
front Page 
----------------------------------------------------*/
.home .fixed-banner {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 10;
}
.home .fixed-banner a:hover {
  cursor: pointer;
  opacity: 1;
}
.home .fixed-banner a:hover img {
  filter: brightness(1.1);
}
.home .fixed-banner a img {
  width: 140px;
  height: auto;
}
body.home #main-visual {
  position: relative;
  overflow: hidden;
}
body.home #main-visual img {
  display: block;
}
body.home #main-visual .mv-inner {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  padding: 25px 50px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 30px rgba(255, 255, 255, 0.8);
}
body.home #main-visual .mv-inner .mv-title {
  position: relative;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: #633b17;
}
body.home #main-visual .mv-inner .mv-title::before,
body.home #main-visual .mv-inner .mv-title::after {
  content: "";
  display: block;
  position: absolute;
}
body.home #main-visual .mv-inner .mv-title::before {
  left: -217px;
  top: 4px;
  width: 204.5px;
  height: 183.5px;
  background: url(/assets/img/home/mv-deco-01.webp);
  background-size: cover;
}
body.home #main-visual .mv-inner .mv-title::after {
  right: -244px;
  top: -130px;
  width: 232px;
  height: 152.5px;
  background: url(/assets/img/home/mv-deco-02.webp);
  background-size: cover;
}
body.home #main-visual .mv-inner .mv-title .txt-orange {
  color: #ee731b;
}
body.home #news {
  padding: 140px 0;
  background-color: #ffffff;
}
body.home #news .news-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
body.home #news .news-row .head {
  position: relative;
  width: 320px;
  flex-shrink: 0;
}
body.home #news .news-row .head .news-ttl {
  margin: 0 0 40px;
}
body.home #news .news-row .head .news-deco {
  position: absolute;
  width: 200.5px;
  height: auto;
  top: -48px;
  right: 11px;
}
body.home #news .news-row .main {
  flex: 1;
  max-width: 70%;
}
body.home #news .news-row .main .news-list {
  border-top: 1px solid #d9d9d9;
}
body.home #news .news-row .main .news-list .news-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid #d9d9d9;
}
body.home #news .news-row .main .news-list .news-item .cat {
  flex-shrink: 0;
  width: 90px;
  padding: 6px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  color: #633b17;
  background-color: #f8f2ee;
  border-radius: 4px;
}
body.home #news .news-row .main .news-list .news-item .date {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: #3b4043;
  font-family: "Josefin Sans", sans-serif;
}
body.home #news .news-row .main .news-list .news-item .ttl {
  flex-shrink: 0;
  width: 72.5%;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #3b4043;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.home #news .news-row .main .news-list .news-item .ttl:hover {
  color: #ee731b;
  opacity: 1;
}

body.home #concept {
  position: relative;
  padding: 160px 0;
  background-color: #f8f2ee;
}
body.home #concept .concept-inner {
  width: 864px;
  margin: 0 auto;
  text-align: center;
}

body.home #concept .concept-inner .concept-img {
  width: 80px;
  height: auto;
}
body.home #concept .concept-ttl {
  margin: 0 0 60px;
}
body.home #concept .concept-txt {
  font-weight: 700;
  color: #633b17;
}
body.home #concept::before,
body.home #concept::after {
  content: "";
  position: absolute;
  width: 580px;
  height: 422px;
  background: url("../img/home/concept-deco.webp") no-repeat;
  background-size: contain;
  background-position: left top;
}
body.home #concept::before {
  left: 0;
  top: 0;
}
body.home #concept::after {
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
}
body.home #feature {
  padding: 140px 0;
  background-color: #ffffff;
}
body.home #feature .head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 0 0 100px;
}
body.home #feature .head .infos {
  width: 510px;
}
body.home #feature .head .infos .feature-ttl .ttl-eng {
  margin: 0 0 40px;
}
body.home #feature .head .infos .feature-ttl .deco {
  position: absolute;
  width: 200.5px;
  height: auto;
  top: -28px;
  right: 58px;
}
body.home #feature .head .image {
  position: relative;
  max-width: 610px;
}
body.home #feature .head .image img {
  border-radius: 20px;
}
body.home #feature .head .image .deco {
  position: absolute;
  right: -36px;
  bottom: -28px;
  width: 118px;
}
body.home #feature .main .list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
body.home #feature .main .list .item {
  width: calc(33.3333333333% - 26.66px);
}
body.home #feature .main .list .item .ttl {
  position: relative;
  width: fit-content;
  margin: 0 auto 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}
body.home #feature .main .list .item .ttl .num {
  position: relative;
  display: block;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.5;
  color: #ee731b;
  z-index: 1;
  font-family: "Josefin Sans", sans-serif;
}
body.home #feature .main .list .item .ttl .deco {
  position: absolute;
  left: 50%;
  top: -24px;
  transform: translateX(-50px);
  width: 52px;
  z-index: -1;
}
body.home #feature .main .list .item .fig {
  position: relative;
  margin: 0 0 20px;
  border-radius: 20px;
  overflow: hidden;
}
body.home #feature .main .list .item .txt {
  padding: 0 42px;
}
body.home #service {
  padding: 140px 0;
  background-color: #f8f2ee;
}
body.home #service .service-ttl {
  width: fit-content;
  margin: 0 auto 40px;
  text-align: center;
}
body.home #service .service-ttl .deco {
  position: absolute;
  width: 174px;
  height: auto;
  top: -10px;
  right: -220px;
  transform: rotate(180deg) scaleX(-1);
  margin: 0;
}
body.home #service .service-txt {
  margin: 40px 0 80px 0;
  text-align: center;
}
body.home #service .list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
body.home #service .list .item {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: calc(33.3333333333% - 26.66px);
}
body.home #service .list .item .fig {
  margin: 0 0 40px;
  border-radius: 20px;
  overflow: hidden;
}
body.home #service .list .item .item-ttl {
  position: relative;
  width: fit-content;
  margin: 0 auto 16px;
  z-index: 1;
}
body.home #service .list .item .item-ttl .deco {
  position: absolute;
  top: -24px;
  left: -30px;
  z-index: -1;
  width: 52px;
}
body.home #service .list .item .item-txt {
  margin: 0 0 16px;
  padding: 0 42px;
}
body.home #service .list .item .btn-link {
  width: fit-content;
  margin: 0 auto 40px;
}
body.home #contact {
  padding: 140px 0;
  background-color: #ffffff;
}
body.home #contact .contact-slide {
  margin: 0 0 100px;
}
body.home #contact .contact-inner {
  padding: 120px 80px;
  background-color: #f8f2ee;
  border-radius: 20px;
}
body.home #contact .contact-inner .contact-ttl {
  width: fit-content;
  margin: 0 auto 50px;
  text-align: center;
}
body.home #contact .contact-inner .contact-ttl .deco {
  position: absolute;
  margin: 0;
  width: 200.5px;
  height: auto;
  top: -25px;
  left: -170px;
}
body.home #contact .contact-inner .contact-list {
  display: flex;
  flex-wrap: wrap;
}
body.home #contact .contact-inner .contact-list .contact-item {
  width: 33.3333333333%;
  padding: 20px;
  text-align: center;
  border-right: 1px solid #dddddd;
}
body.home #contact .contact-inner .contact-list .contact-item .head {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 39px;
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #633b17;
  background-color: #ffffff;
  border-radius: 50px;
}
body.home #contact .contact-inner .contact-list .contact-item .tel {
  margin: 0 0 10px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  color: #ee731b;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
}
body.home #contact .contact-inner .contact-list .contact-item .tel a {
  color: #ee731b;
}
body.home #contact .contact-inner .contact-list .contact-item .desc span {
  display: block;
  font-weight: 700;
  color: #633b17;
}
body.home #contact .contact-inner .contact-list .contact-item:last-child {
  border-right: none;
}
body.home #contact .contact-inner hr {
  margin: 50px 0;
  width: 100%;
  height: 0px;
  border-top: 1px solid #dddddd;
}
body.home #contact .contact-inner .contact-link-row {
  display: flex;
  align-items: center;
  justify-content: center;
}
body.home #contact .contact-inner .contact-link-row .contact-link {
  margin: 0 auto;
}

/* ---------------------------------------------------
Service Page
----------------------------------------------------- */
body main.p-service #lead {
  padding: 140px 0;
}
body main.p-service #lead .head {
  position: relative;
  display: flex;
  align-items: center;
}
body main.p-service #lead .head .main {
  width: calc(50% - 40px);
}
body main.p-service #lead .head .main .head-ttl .deco {
  position: absolute;
  right: 0;
  top: -98px;
  margin: 0;
  width: 200px;
}
body main.p-service #lead .head .fig {
  position: absolute;
  right: -60px;
  top: 0;
  width: calc(50% + 60px);
  height: 100%;
  border-radius: 30px 0 0 30px;
  overflow: hidden;
}

/*lead 写真無しver.*/
body main.p-service #lead.lead-one-column .head {
  flex-direction: column;
  text-align: center;
  padding: 0;
  margin: 0;
  gap: 40px;
}
body main.p-service #lead.lead-one-column .head .main {
  width: 100%;
  max-width: 960px;
}
body main.p-service #lead.lead-one-column .head .main .txt {
  text-align: left;
}
body main.p-service #lead.lead-one-column .head .fig {
  width: 100%;
  max-width: 768px;
  border-radius: 30px;
  position: relative;
  position: relative;
  right: auto;
  top: auto;
  height: auto;
}
body main.p-service #lead.lead-one-column .head .fig img {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}

body main.p-service #lead .recreation {
  display: flex;
  align-items: flex-start;
  gap: 120px;
  margin: 140px 0 0;
}
body main.p-service #lead .recreation .main {
  width: 360px;
}
body main.p-service #lead .recreation .main .sec-ttl {
  position: relative;
}
body main.p-service #lead .recreation .main .sec-ttl::before {
  content: "";
  display: block;
  width: 150px;
  height: 53px;
  background: url(/assets/img/common/speech-bubble-01.webp) no-repeat;
  background-size: contain;
  position: absolute;
  top: -25px;
  right: 9px;
}
body main.p-service #lead .recreation .main .sec-ttl span {
  margin: 0 0 10px;
}
body main.p-service #lead .recreation .main > .txt {
  margin-bottom: 40px;
}
body main.p-service #lead .recreation .list {
  display: flex;
  gap: 40px;
  width: calc(100% - 480px);
}
body main.p-service #lead .recreation .list .item {
  width: 320px;
}
body
  main.p-service
  #lead
  .recreation
  .list
  .item
  .card.card-recreation
  .eyecatch {
  display: block;
  position: relative;
  margin: 0 0 30px;
  border-radius: 30px;
}
/**/
body
  main.p-service
  #lead
  .recreation
  .list
  .item
  .card.card-recreation
  .eyecatch::after {
  content: "";
  display: block;
  position: absolute;
  top: -50px;
  left: -15px;
  width: 100px;
  height: 89px;
  background: url(/assets/img/recreation/deco-item-01.webp) no-repeat;
  background-size: contain;
}
body
  main.p-service
  #lead
  .recreation
  .list
  .item:nth-of-type(2n)
  .card.card-recreation
  .eyecatch::after {
  background: url(/assets/img/recreation/deco-item-02.webp) no-repeat;
  background-size: contain;
  width: 100px;
  height: 81px;
  right: -19px;
  bottom: -28px;
  top: auto;
  left: auto;
}
body
  main.p-service
  #lead
  .recreation
  .list
  .item:nth-of-type(3n)
  .card.card-recreation
  .eyecatch::after {
  background: url(/assets/img/recreation/deco-item-03.webp) no-repeat;
  background-size: contain;
  width: 99px;
  height: 85.5px;
  top: -30px;
  right: -34px;
  left: auto;
}
body
  main.p-service
  #lead
  .recreation
  .list
  .item:nth-of-type(4n)
  .card.card-recreation
  .eyecatch::after {
  background: url(/assets/img/recreation/deco-item-04.webp) no-repeat;
  background-size: contain;
  width: 97.5px;
  height: 90.5px;
  right: 23px;
  bottom: -29px;
  left: auto;
  top: auto;
}
/**/
body
  main.p-service
  #lead
  .recreation
  .list
  .item
  .card.card-recreation
  .eyecatch
  img {
  display: block;
  border-radius: 20px;
}
body main.p-service #lead .recreation .list .item .card.card-recreation .ttl {
  margin: 0 0 20px;
}
body main.p-service #lead .recreation .list .item .card.card-recreation .ttl a {
  color: #633b17;
}
body main.p-service #lead .recreation .list .item .card.card-recreation .txt {
  margin: 0 0 20px;
}
body
  main.p-service
  #lead
  .recreation
  .list
  .item
  .card.card-recreation
  .tag-list {
  display: flex;
  gap: 10px;
}
body
  main.p-service
  #lead
  .recreation
  .list
  .item
  .card.card-recreation
  .tag-list
  .tag-item {
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  color: #633b17;
  background-color: #f8f2ee;
  border-radius: 4px;
}
body main.p-service #whatis {
  padding: 140px 0;
  background-color: #f8f2ee;
}
body main.p-service #whatis .head {
  text-align: center;
  margin: 0 0 70px;
}
body main.p-service #whatis .head .head-ttl {
  position: relative;
}
body main.p-service #whatis .head .head-ttl .deco {
  position: absolute;
  top: -52px;
  left: calc(50% + 138px);
}
body main.p-service #whatis .head .head-txt {
  margin: 0;
  text-align: center;
}
body main.p-service #whatis .main {
  padding: 40px 60px;
  background-color: #ffffff;
  border-radius: 20px;
}
body main.p-service #whatis .main .main-ttl {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0 0 60px;
  padding: 0 0 30px;
  border-bottom: 5px dotted #ddd;
}
body main.p-service #whatis .main .main-ttl .fig {
  width: 42px;
}
body main.p-service #whatis .main .main-ttl .txt {
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  color: #633b17;
}

body main.p-service #whatis .main .box {
  padding: 0 40px;
  position: relative;
}
body main.p-service #whatis .main .box::before {
  content: "";
  display: block;
  position: absolute;
  top: -38px;
  left: -26px;
  width: 120px;
  height: 126px;
  background: url(/assets/img/common/deco-dot-double-04.webp) no-repeat;
  background-size: contain;
}
body main.p-service #whatis .main .box .box-ttl {
  margin: 0 0 40px;
  position: relative;
}
body main.p-service #whatis .main .box .box-txt {
  position: relative;
}
body main.p-service #feature {
  padding: 140px 0;
  background-color: #ffffff;
}
body main.p-service #feature .head {
  margin: 0 0 100px;
  text-align: center;
}
body main.p-service #feature .head .head-ttl .deco {
  top: -28px;
  left: calc(50% - 380px);
}
body main.p-service #feature .head .head-txt {
  margin: 0;
}
body main.p-service #feature .feature-list .item {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 60px;
  margin: 0 0 60px;
}
body main.p-service #feature .feature-list .item .main {
  width: calc(50% - 30px);
}
body main.p-service #feature .feature-list .item .main .item-ttl {
  margin: 0 0 30px;
}
body main.p-service #feature .feature-list .item .main .item-ttl .ttl-eng {
  display: block;
  width: fit-content;
  margin: 0 0 30px;
  padding: 0 0 8px;
  border-bottom: 1px solid #ee731b;
}
body main.p-service #feature .feature-list .item .main .item-ttl .ttl-eng .num {
  font-weight: 500;
}
body main.p-service #feature .feature-list .item .fig {
  width: calc(50% - 30px);
  position: relative;
}
body main.p-service #feature .feature-list .item .fig::before {
  content: "";
  display: block;
  position: absolute;
  top: -38px;
  left: -26px;
  width: 114px;
  height: 100px;
  background: url(/assets/img/common/deco-dot-double-03.webp) no-repeat;
  background-size: contain;
}
body main.p-service #feature .feature-list .item:nth-of-type(2n) .fig::before {
  top: auto;
  left: auto;
  right: -22px;
  bottom: -14px;
  width: 125px;
  height: 100px;
  background: url(/assets/img/common/deco-dot-double-01.webp) no-repeat;
  background-size: contain;
}
body main.p-service #feature .feature-list .item:nth-of-type(3n) .fig::before {
  top: 40px;
  left: -64px;
  width: 119px;
  height: 119px;
  background: url(/assets/img/common/deco-dot-double-02.webp) no-repeat;
  background-size: contain;
}

body main.p-service #feature .feature-list .item .fig img {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}
body main.p-service #feature .feature-content {
  padding: 80px 60px;
  background-color: #f8f2ee;
  border-radius: 30px;
}
body main.p-service #feature .feature-content .content-ttl {
  position: relative;
  margin: 0 0 50px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #ee731b;
}
body main.p-service #feature .feature-content .content-ttl span {
  font-size: 26px;
}
body main.p-service #feature .feature-content .content-ttl .deco {
  position: absolute;
  right: 130px;
  bottom: 0;
  transform: scaleX(-1);
}
body main.p-service #feature .feature-content .content-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 60px;
}
body main.p-service #feature .feature-content .content-list .item {
  width: calc(33.3333333333% - 26.6666666667px);
}
body main.p-service #feature .feature-content .content-list .item .fig {
  margin: 0 0 30px;
  border-radius: 20px;
  overflow: hidden;
}
body main.p-service #feature .feature-content .content-list .item .main {
  padding: 0 30px;
}
body main.p-service #feature .feature-content .content-list .item .main .ttl {
  margin: 0 0 16px;
  text-align: center;
}
body main.p-service #target {
  padding: 140px 0;
  background-color: #f8f2ee;
}
body main.p-service #target .head {
  text-align: center;
  margin: 0 0 70px;
}
body main.p-service #target .head .head-ttl .deco {
  top: -28px;
  left: calc(50% - 380px);
}
body main.p-service #target .main {
  padding: 80px 70px;
  background-color: #ffffff;
  border-radius: 20px;
}
body main.p-service #target .main .main-ttl {
  text-align: center;
  color: #ee731b;
}
body main.p-service #target .main hr.orange {
  width: 50px;
  height: 0px;
  margin: 40px auto;
  border: 1px solid #ee731b;
}
body main.p-service #target .main hr.full {
  width: 100%;
  margin: 60px 0;
  height: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #ddd;
}
body main.p-service #target .main .main-txt {
  text-align: center;
}
body main.p-service #target .main .list-ttl {
  margin: 0 0 40px;
  position: relative;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  background-color: #f8f2ee;
  text-align: left;
  color: #ee731b;
}
body main.p-service #target .main .list-ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15%;
  border-style: solid;
  border-width: 15px 0 0 15px;
  border-color: #f8f2ee transparent transparent;
  translate: calc(-50% + 0.4px) 100%;
}
body main.p-service #target .main .check-list {
  flex-direction: row;
}
body main.p-service #target .main .check-list .item {
  width: calc(50% - 10px);
}
body main.p-service #target .area {
  display: flex;
  align-items: center;
  gap: 60px;
}
body main.p-service #target .area .info {
  width: 536px;
}
body main.p-service #target .area .info .area-ttl {
  margin: 0 0 30px;
}
body main.p-service #target .area .info .area-ttl .ttl-mid {
  color: #ee731b;
}
body main.p-service #target .area .info .area-ttl .deco {
  width: 174px;
  left: 131px;
  top: -32px;
  transform: rotate(180deg) scaleY(-1);
}
body main.p-service #target .area .map {
  width: 564px;
  border-radius: 20px;
  overflow: hidden;
}
body main.p-service #flow {
  padding: 140px 0;
  background-color: #ffffff;
}
body main.p-service #flow .head {
  margin: 0 0 42px;
  text-align: center;
}
body main.p-service #flow .head .head-ttl .deco {
  top: -28px;
  left: calc(50% - 380px);
}
body main.p-service #flow .list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
body main.p-service #flow .list .item {
  width: calc(25% - 30px);
}
body main.p-service #flow .list .item .fig {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  margin: 0 auto 40px;
  background-color: #f8f2ee;
  border-radius: 100%;
}
body main.p-service #flow .list .item.flow-01 .fig img {
  width: 72.225%;
  height: auto;
}
body main.p-service #flow .list .item.flow-02 .fig img {
  width: 85.5%;
  height: auto;
}
body main.p-service #flow .list .item.flow-03 .fig img {
  width: 50%;
  height: auto;
}
body main.p-service #flow .list .item.flow-04 .fig img {
  width: 60%;
  height: auto;
}
body main.p-service #flow .list .item .ttl {
  text-align: center;
  margin: 0 0 16px;
}
body main.p-service #outline {
  padding: 140px 0;
  background-color: #f8f2ee;
}
body main.p-service #outline .outline-ttl {
  margin: 0 0 70px;
  text-align: center;
}
body main.p-service #outline .outline-ttl .deco {
  top: -52px;
  left: calc(50% + 138px);
}
body main.p-service #outline .main {
  width: 800px;
  margin: 0 auto;
}

body main.p-service #outline .main .list .item .body a:hover {
  opacity: 1;
}
body main.p-service #outline .main .list .item .body a:hover .txt {
  text-decoration: none;
  color: #3b4043;
}

body main.p-service #faq {
  padding: 140px 0;
  background-color: #ffffff;
}
body main.p-service #faq .faq-ttl {
  margin: 0 0 70px;
  text-align: center;
}
body main.p-service #faq .faq-ttl .deco {
  top: -28px;
  left: calc(50% - 380px);
}
body main.p-service #faq .main {
  width: 920px;
  margin: 0 auto;
}
body main.p-service #faq .main .list {
  border-top: 1px solid #d9d9d9;
}
body main.p-service #faq .main .list .item {
  padding: 50px 0;
  border-bottom: 1px solid #d9d9d9;
}
body main.p-service #faq .main .list .item dl {
  display: flex;
  align-items: flex-start;
}
body main.p-service #faq .main .list .item dl dt {
  width: 40px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  font-family: "Josefin Sans", sans-serif;
}
body main.p-service #faq .main .list .item dl dd {
  width: calc(100% - 40px);
}
body main.p-service #faq .main .list .item dl.q {
  margin: 0 0 30px;
}
body main.p-service #faq .main .list .item dl.q dt {
  margin-top: 2px;
  color: #ee731b;
}
body main.p-service #faq .main .list .item dl.q dd {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #3b4043;
}
body main.p-service #faq .main .list .item dl.a dt {
  margin-top: 5px;
  color: #633b17;
}
body main.p-service #faq .main .list .item dl.a dd {
  padding: 15px 20px;
  background-color: #f8f2ee;
  border-radius: 5px;
}
body main.p-service #faq .main .list .item dl.a dd a {
  color: #ee731b;
  text-decoration: underline;
}
body main.p-service #faq .main .list .item dl.a dd a:hover {
  opacity: 1;
  text-decoration: none;
}

/* --------------------------------------------------
to medical
----------------------------------------------------- */

body main.p-service #lead .head .main .contact {
  padding: 30px 20px;
  background-color: #f8f2ee;
  border-radius: 20px;
  margin-top: 40px;
}
body main.p-service #lead .head .main .contact .contact-ttl-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
body main.p-service #lead .head .main .contact .contact-ttl-row .contact-ttl {
  position: relative;
  padding: 0 10px;
  background-color: #f8f2ee;
}
body main.p-service #lead .head .main .contact .contact-ttl-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background-color: #d9d9d9;
  z-index: 0;
}
body main.p-service #lead .head .main .contact .contact-list {
  display: flex;
  flex-wrap: wrap;
  margin: 20px -20px 0;
}
body main.p-service #lead .head .main .contact .contact-list .contact-item {
  position: relative;
  width: calc(50% - 40px);
  margin: 0 20px;
  padding: 0;
  text-align: center;
}
body
  main.p-service
  #lead
  .head
  .main
  .contact
  .contact-list
  .contact-item
  .head {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 39px;
  margin: 0 0 10px;
  padding: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: #633b17;
  background-color: #ffffff;
  border-radius: 50px;
}
body
  main.p-service
  #lead
  .head
  .main
  .contact
  .contact-list
  .contact-item
  .tel {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #ee731b;
}
body
  main.p-service
  #lead
  .head
  .main
  .contact
  .contact-list
  .contact-item
  .tel
  span {
  font-size: 25px;
}
body
  main.p-service
  #lead
  .head
  .main
  .contact
  .contact-list
  .contact-item
  .desc {
  font-size: 12px;
}
body
  main.p-service
  #lead
  .head
  .main
  .contact
  .contact-list
  .contact-item
  .desc
  span {
  display: block;
  font-weight: 700;
  color: #633b17;
}
body
  main.p-service
  #lead
  .head
  .main
  .contact
  .contact-list
  .contact-item:first-child::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #d9d9d9;
}
body main.p-service #avail {
  background-color: #f8f2ee;
}
body main.p-service #avail .head .head-ttl {
  position: relative;
}
body main.p-service #avail .head .head-ttl .deco {
  position: absolute;
  top: -52px;
  left: calc(50% + 138px);
}
body main.p-service #avail .main {
  display: flex;
  gap: 40px;
}
body main.p-service #avail .main .box {
  padding: 30px 36px;
  background-color: #ffffff;
  border-radius: 20px;
}
body main.p-service #avail .main .box .box-ttl {
  text-align: center;
  margin: 0 0 30px;
  padding: 0 0 20px;
  border-bottom: 2px solid #dddddd;
}
body main.p-service #avail .main .box .box-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
body main.p-service #avail .main .box .box-row .box-col .box-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 18px;
}
body main.p-service #avail .main .box .box-row .box-col .box-head .ttl {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #633b17;
}
body main.p-service #avail .main .box .box-row .box-col .box-head .date {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #000000;
}
body main.p-service #avail .main .box .box-row .box-col .box-list {
  display: flex;
  gap: 7px;
  margin: 0 0 20px;
}
body main.p-service #avail .main .box .box-row .box-col .box-list .box-item {
  width: 50px;
  height: 60px;
  text-align: center;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
}
body
  main.p-service
  #avail
  .main
  .box
  .box-row
  .box-col
  .box-list
  .box-item
  .day {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #000000;
}
body
  main.p-service
  #avail
  .main
  .box
  .box-row
  .box-col
  .box-list
  .box-item
  .dot {
  display: block;
  width: 10px;
  height: 10px;
  margin: 10px auto 0;
  background-color: #ee731b;
  border: 1px solid #ee731b;
  border-radius: 50%;
}
body
  main.p-service
  #avail
  .main
  .box
  .box-row
  .box-col
  .box-list
  .box-item
  .dot.none {
  background-color: transparent;
}
body main.p-service #avail .main .box .box-comment {
  display: inline-block;
  padding: 10px 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #ee731b;
  background-color: #fcf7e6;
  border-radius: 40px;
}
body main.p-service #avail .main .box:last-child {
  flex: 1;
}
body main.p-service #overview {
  background-color: #ffffff;
}
body main.p-service #overview .head .head-ttl .deco {
  top: -28px;
  left: calc(50% - 380px);
}
body main.p-service #overview .head .tag-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 0 40px;
}
body main.p-service #overview .head .tag-list .tag-item {
  padding: 6px 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #633b17;
  background-color: #f8f2ee;
  border-radius: 4px;
}
body main.p-service #overview .head .head-txt {
  margin: 0;
}
body main.p-service #overview .main {
  width: 800px;
  margin: 0 auto;
}
body main.p-service #overview .info-list {
  margin-bottom: 80px;
}
body main.p-service #overview .contact {
  padding: 80px;
  background-color: #f8f2ee;
  border-radius: 20px;
}
body main.p-service #overview .contact .contact-ttl {
  position: relative;
  margin: 0 0 50px;
  text-align: center;
}
body main.p-service #overview .contact .contact-ttl .deco {
  top: -27px;
  left: 109px;
}
body main.p-service #overview .contact .tel-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0 0 20px;
}
body main.p-service #overview .contact .tel-row .tel-col {
  position: relative;
  width: calc(50% - 20px);
  padding: 20px 0;
  text-align: center;
}
body main.p-service #overview .contact .tel-row .tel-col .tel {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #ee731b;
}
body main.p-service #overview .contact .tel-row .tel-col .tel span {
  display: block;
  margin: 10px 0 0;
  font-size: 42px;
}
body main.p-service #overview .contact .tel-row .tel-col:first-child::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #dddddd;
}
body main.p-service #overview .contact .time {
  text-align: center;
}
body main.p-service #overview .contact .time span {
  display: block;
  font-weight: 700;
  color: #633b17;
}
body main.p-service #overview hr {
  margin: 140px 0;
  background-color: transparent;
  border: 0.5px solid #d9d9d9;
}
body main.p-service #overview .overview .overview-ttl {
  text-align: center;
}
body main.p-service #overview .overview .overview-ttl .deco {
  top: -28px;
  left: calc(50% - 380px);
}

/* --------------------------------------------------
post-type - news / recreation
----------------------------------------------------- */

/* common */
.category-search-inner {
  background: #f8f2ee;
  border-radius: 20px;
  width: 100%;
  padding: 30px;
  margin: 140px 0 120px 0;
}

.category-search-inner .category-keyword {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.category-search-inner .category-keyword .category-buttons {
  background: #fff;
  border-radius: 8px;
  border: 2px solid #ddd;
  padding: 10px 15px;
}

.category-search-inner .category-keyword .category-buttons .category-text {
  line-height: 1;
  color: #633b17;
  font-size: 14px;
  font-weight: bold;
}
.category-search-inner .category-keyword .category-buttons:hover,
.category-search-inner .category-keyword .category-buttons.active {
  background: #ee731b;
  border: 2px solid #ee731b;
  opacity: 1;
  cursor: pointer;
}
.category-search-inner .category-keyword .category-buttons:hover .category-text,
.category-search-inner
  .category-keyword
  .category-buttons.active
  .category-text {
  color: #ffffff;
}

body #category_search .list {
  display: flex;
  flex-wrap: wrap;
  gap: 120px 4.31%;
}
body #category_search .list .item {
  width: 30.46%;
  position: relative;
}

body #category_search .list .item .card.card-recreation .eyecatch {
  display: block;
  position: relative;
  margin: 0 0 30px;
}

body #category_search .list .item .card.card-recreation .eyecatch::after {
  content: "";
  display: block;
  position: absolute;
  top: -50px;
  left: -15px;
  width: 100px;
  height: 89px;
  background: url(/assets/img/recreation/deco-item-01.webp) no-repeat;
  background-size: contain;
}
body
  #category_search
  .list
  .item:nth-of-type(2n)
  .card.card-recreation
  .eyecatch::after {
  background: url(/assets/img/recreation/deco-item-02.webp) no-repeat;
  background-size: contain;
  width: 100px;
  height: 81px;
  right: -19px;
  bottom: -28px;
  top: auto;
  left: auto;
}
body
  #category_search
  .list
  .item:nth-of-type(3n)
  .card.card-recreation
  .eyecatch::after {
  background: url(/assets/img/recreation/deco-item-03.webp) no-repeat;
  background-size: contain;
  width: 99px;
  height: 85.5px;
  top: -30px;
  right: -34px;
  left: auto;
}
body
  #category_search
  .list
  .item:nth-of-type(4n)
  .card.card-recreation
  .eyecatch::after {
  background: url(/assets/img/recreation/deco-item-04.webp) no-repeat;
  background-size: contain;
  width: 97.5px;
  height: 90.5px;
  right: 23px;
  bottom: -29px;
  left: auto;
  top: auto;
}

body #category_search .list .item .card.card-recreation .eyecatch img {
  display: block;
  border-radius: 30px;
}

body #category_search .list .item .card.card-recreation .ttl {
  margin: 0 0 20px;
}

body #category_search .list .item .card.card-recreation .ttl a {
  color: #633b17;
}

body #category_search .list .item .card.card-recreation .txt {
  margin: 0 0 20px;
}

body #category_search .list .item .card.card-recreation .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body #category_search .list .item .card.card-recreation .tag-list .tag-item {
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  color: #633b17;
  background-color: #f8f2ee;
  border-radius: 4px;
}
body #category_search {
  padding: 0;
}
body #category_search .container {
  margin-bottom: 140px;
}

/* recreation Single */
.recreation-detail .container {
  width: 1000px;
  margin: 140px auto;
  display: flex;
  flex-direction: column;
  gap: 140px;
}
.recreation-detail .container .recreation-contents {
  display: flex;
  gap: 40px;
}
.recreation-detail .container .recreation-contents .recreation-item {
  display: flex;
  gap: 30px;
  flex-direction: column;
  flex-basis: 500px;
}
.recreation-detail
  .container
  .recreation-contents
  .recreation-item
  .recreation-title {
  color: #633b17;
  position: relative;
}
.recreation-detail
  .container
  .recreation-contents
  .recreation-item
  .recreation-title::after {
  content: "";
  width: 100px;
  height: 89px;
  background: url(/assets/img/recreation/deco-item-01.webp) no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: -55px;
  left: -81px;
}
.recreation-detail
  .container
  .recreation-contents
  .recreation-item
  .recreation-text {
  line-height: 2;
}
.recreation-detail .container .recreation-contents .recreation-item .category {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.recreation-detail
  .container
  .recreation-contents
  .recreation-item
  .category
  .category-buttons {
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  color: #633b17;
  background-color: #f8f2ee;
  border-radius: 4px;
}
.recreation-detail .container .recreation-contents .recreation-image {
  flex-basis: 460px;
}
.recreation-detail .container .recreation-contents .recreation-image img {
  border-radius: 30px;
}

.recreation-detail .container .recreation-effects .rect-vertical {
  margin-bottom: 40px;
}

.recreation-detail .container .recreation-effects .check-list {
  flex-direction: row;
}
.recreation-detail .container .recreation-effects .check-list .item {
  width: calc(50% - 10px);
}

.recreation-detail .swiper-wrap {
  max-width: 720px;
  margin: 60px auto 0 auto;
  overflow: hidden;
}
.recreation-detail .swiper-slide img {
  width: 100%;
}
.recreation-detail .slider {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}
.recreation-detail .slider .swiper-slide img {
  border-radius: 20px;
}

.recreation-detail .thumbnail {
  padding: 0 30px;
}

.recreation-detail .thumbnail .swiper-slide img {
  border-radius: 10px;
  border: 3px solid #fff;
}

.recreation-detail .thumbnail .swiper-slide-thumb-active {
  opacity: 1;
}
.recreation-detail .thumbnail .swiper-slide-thumb-active img {
  opacity: 1;
  border: 3px solid #ee731b;
}

/* News Archive  */
body #category_search .list .item .card.card-news .eyecatch {
  display: block;
  position: relative;
  margin: 0 0 30px;
  border-radius: 30px;
  overflow: hidden;
}

body #category_search .list .item .card.card-news .eyecatch img {
  display: block;
}

body #category_search .list .item .card.card-news .ttl {
  margin: 0 0 20px;
}

body #category_search .list .item .card.card-news .ttl a {
  color: #633b17;
}

body #category_search .list .item .card.card-news .txt {
  margin: 0 0 20px;
}

body #category_search .list .item .card.card-news .tag-list {
  display: flex;
  gap: 10px;
}

body #category_search .list .item .card.card-news .tag-list .tag-item {
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  color: #633b17;
  background-color: #f8f2ee;
  border-radius: 4px;
}

/* News Single */
.news-detail .container {
  width: 840px;
  margin: 140px auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.news-detail .container .news-head {
  border-bottom: 5px dotted #ddd;
}
.news-detail .container .news-head .news-title {
  margin-bottom: 20px;
}
.news-detail .container .news-head .news-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}
.news-detail .container .news-head .news-info .category {
  display: flex;
  gap: 10px;
}
.news-detail .container .news-head .news-info .category .category-buttons {
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  color: #633b17;
  background-color: #f8f2ee;
  border-radius: 4px;
}
.news-detail .container .news-head .news-info .date {
  font-family: "Josefin Sans", sans-serif;
  color: #633b17;
}
.news-detail .container .news-image img {
  border-radius: 30px;
}

.news-detail .container .news-article-main {
  line-height: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 40px;
}
.news-detail .container .news-article-main a {
  text-decoration: underline;
  color: #ee731b;
}
.news-detail .container .news-article-main a:hover {
  opacity: 1;
  text-decoration: none;
}
.news-detail .container .news-article-main h2,
.news-detail .container .news-article-main h3 {
  color: #633b17;
}

/*600px以下
----------------------------------------------*/
@media screen and (max-width: 600px) {
  html {
    overflow-y: scroll;
    overflow-x: hidden;
  }
  body {
    min-width: 100%;
  }
  .container {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
  body main > section {
    padding: 80px 0;
  }
  body main > section .main {
    width: 100%;
    margin: 0 auto 50px;
  }
  body main > section .head {
    margin: 0 0 50px;
  }
  body main > section .head .head-txt {
    text-align: left;
  }

  .pcHide {
    display: initial !important;
  }
  .spHide {
    display: none !important;
  }
  body.page main #main-visual .breadcrumb,
  body.archive main #main-visual .breadcrumb,
  body.single main #main-visual .breadcrumb {
    display: none;
  }

  /* Typography */
  .ttl-big {
    font-size: 28px;
  }

  .ttl-mid {
    font-size: 23px;
  }

  .ttl-small {
    font-size: 16px;
  }
  .ttl-eng {
    font-size: 12px;
  }

  /* Components: Buttons */
  .btn-link.btn-small {
    height: 42px;
    padding: 0 40px 0 20px;
  }
  .btn-link.btn-small .txt {
    font-size: 14px;
  }
  .btn-link.btn-big {
    gap: 40px;
    height: 64px;
    padding: 0 60px 0 30px;
  }
  /* button-return */
  .button-return {
    margin-bottom: 80px;
  }
  /* Components:info-list (table) - sp */
  .info-list {
  }
  .info-list .info-item {
    flex-direction: column;
    gap: 6px;
    padding-left: 5px;
  }
  .info-list .info-item .info-head,
  .info-list .info-item .info-body {
    width: 100%;
  }
  .info-list .info-item .info-head .txt {
    line-height: 1.5;
  }

  /*deco-ttl*/
  .deco-ttl.deco-ttl-01 {
    width: 160px;
    height: 53px;
  }
  .deco-ttl.deco-ttl-02 {
    width: 138px;
    height: 42px;
  }

  /*download*/
  .download-box {
    margin: 0 0 40px;
  }
  .download-box .download-list {
    flex-direction: column;
  }
  .download-box .download-list.col-2 .download-item {
    width: 100%;
    padding: 20px 16px;
  }

  /*------header -sp ------*/
  header .container {
    padding: 0;
  }
  #global-nav {
    display: none;
  }

  header {
    padding: 0;
  }
  header .header-inner {
    margin: 0;
    padding-left: 20px;
  }
  header .header-inner .logo a {
    display: flex;
  }
  header .header-inner .logo a img {
    width: 180px;
    height: auto;
  }
  /*spmenu*/
  .js_humburgerOpen #uq_spNavi {
    display: block;
  }
  .el_humburger {
    background: #633b17;
    display: block;
    position: relative;
    top: 0;
    right: 0;
    width: 60px;
    height: auto;
    padding: 15px 16px 27px 16px;
    box-sizing: border-box;
    z-index: 10000;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    pointer-events: auto;
  }
  .el_humburger::after {
    display: block;
    font-size: 11px;
    font-weight: bold;
    color: #fff;
    content: "MENU";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .js_humburgerOpen .el_humburger::after {
    content: "CLOSE";
  }

  .el_humburger > span {
    display: block;
    width: 100%;
    margin: 0 auto 6px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: all 0.2s ease-in-out;
  }
  .el_humburger > span:last-child {
    margin-bottom: 0;
  }
  .js_humburgerOpen .el_humburger {
    padding: 15px 14px 27px 14px;
  }
  .js_humburgerOpen .el_humburger > span {
    background: #fff;
  }

  .js_humburgerOpen .el_humburger > span.top {
    transform: translateY(9px) rotate(-29.74deg);
  }

  .js_humburgerOpen .el_humburger > span.middle {
    opacity: 0;
  }

  .js_humburgerOpen .el_humburger > span.bottom {
    transform: translateY(-7px) rotate(29.74deg);
  }
  .js_humburgerOpen .logo {
    position: relative;
    z-index: 10000;
  }

  .el_humburgerButton.el_humburgerButton__close {
    top: 2%;
    right: 2%;
  }

  .el_humburgerButton__close > span {
    display: block;
    width: 35px;
    margin: 0 auto;
    height: 4px;
    background: #fff;
  }

  .el_humburgerButton__close > span.el_humburgerLineTop {
    transform: translateY(5px) rotate(-28deg);
  }

  .el_humburgerButton__close > span.el_humburgerLineBottom {
    transform: translateY(-6px) rotate(28deg);
  }

  .uq_spNavi {
    display: none;
  }
  .uq_spNavi.js_appear {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    z-index: 9999;
  }

  .uq_spNavi_screen {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #f8f2ee;
    z-index: 0;
    margin-top: 0px;
    padding-top: 0px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .navigation {
    padding: 70px 10px 10px 10px;
  }
  .navigation ul {
    background: #fff;
    border-radius: 20px;
    padding: 0 30px 30px 30px;
  }

  .navigation_item {
    font-size: 16px;
  }

  .navigation_item > a {
    color: #633b17;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 1px solid #ddd;
    padding: 35px 0 35px 18px;
    position: relative;
    display: block;
  }
  .navigation_item > a::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: #ee731b;
    border-radius: 4px;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .navigation_item > a.btn-link.btn-type-a {
    display: inline-flex;
    border: 2px solid #ee731b;
    margin: 35px auto 0 auto;
    width: 96%;
    height: 64px;
    justify-content: space-between;
  }
  .navigation_item > a.btn-link.btn-type-a::before {
    display: none;
  }

  .js_fixed {
    position: fixed;
    width: 100%;
    height: 100%;
  }

  /*------footer------*/
  footer {
    padding: 80px 0;
  }
  footer .footer-row {
    display: block;
    text-align: center;
  }
  footer .footer-row .head .logo img {
    width: 240px;
  }
  footer .footer-row .main .menu-list {
    gap: 24px 30px;
    margin: 60px 0;
  }
  footer .footer-row .main {
    width: 100%;
  }
  footer .footer-row .main .menu-list .menu-item {
    text-align: left;
    width: calc(50% - 15px);
  }
  footer .footer-row .main .menu-list .menu-item:first-of-type {
    width: 100%;
  }
  footer .footer-row .main .contact .head {
    width: 100%;
  }
  footer .footer-row .main .contact .item {
    flex-wrap: wrap;
    text-align: left;
    height: auto;
    margin: 0 0 22px;
  }
  footer .footer-row .main .contact .item .item-wrap {
    width: 100%;
  }
  footer .footer-row .main .contact .item::before {
    top: 0.5em;
    transform: none;
  }
  footer .footer-row .main .contact .item span.small::before {
    content: "";
  }

  /*---- 下層ページタイトル  ----*/
  body.page main #main-visual,
  body.archive main #main-visual,
  body.single main #main-visual {
    height: 66.667vw;
    display: flex;
    align-items: center;
  }
  body.page main #main-visual .mv-ttl,
  body.archive main #main-visual .mv-ttl,
  body.single main #main-visual .mv-ttl {
    font-size: 8.142vw;
    padding: 0;
    margin-bottom: 9.4148vw;
  }
  body.page main #main-visual .mv-ttl .ttl-eng,
  body.archive main #main-visual .mv-ttl .ttl-eng,
  body.single main #main-visual .mv-ttl .ttl-eng {
    font-size: 3.0534vw;
  }

  /*------------------------------------------------------
  frontpage 
  --------------------------------------------------------*/
  .home .fixed-banner {
    right: 15px;
    bottom: 15px;
  }
  .home .fixed-banner a img {
    width: 116px;
  }
  body.home #main-visual {
  }
  body.home #main-visual .mv-inner {
    background: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    top: 14.504vw;
    left: auto;
    box-shadow: none;
    width: 100%;
    display: flex;
    justify-content: center;
    transform: translateX(0%);
  }
  body.home #main-visual .mv-inner .mv-title {
    writing-mode: vertical-rl;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    letter-spacing: 0.1em;
  }
  body.home #main-visual .mv-inner .mv-title {
    font-size: 5.09vw;
  }
  body.home #main-visual .mv-inner .mv-title::before {
    left: -32.57vw;
    top: auto;
    bottom: -5.852vw;
    z-index: 1;
    width: 36.132vw;
    height: 36.768vw;
    background: url(/assets/img/home/mv-deco-01-sp.webp);
    background-size: cover;
  }
  body.home #main-visual .mv-inner .mv-title::after {
    right: -36.387vw;
    top: -2.799vw;
    z-index: 1;
    width: 41.221vw;
    height: 33.588vw;
    background: url(/assets/img/home/mv-deco-02-sp.webp);
    background-size: cover;
  }
  body.home #main-visual .mv-inner .mv-title .mv-title-01,
  body.home #main-visual .mv-inner .mv-title .mv-title-02 {
    position: relative;
    display: block;
    background: #fff;
    padding: 5.089vw 3.817vw 5.089vw 3.817vw;
    box-shadow: 0 4px 30px rgba(255, 255, 255, 0.8);
  }
  body.home #main-visual .mv-inner .mv-title .mv-title-01 {
    border-radius: 5.089vw 5.089vw 5.089vw 0;
    padding-bottom: 2.5445vw;
  }
  body.home #main-visual .mv-inner .mv-title .mv-title-02 {
    border-radius: 5.089vw 0 5.089vw 5.089vw;
    margin-top: 13.232vw;
    margin-right: -2.036vw;
  }
  body.home #main-visual .mv-inner .mv-title .mv-title-01::after,
  body.home #main-visual .mv-inner .mv-title .mv-title-02::before {
    content: "";
    display: block;
    width: 2.5445vw;
    height: 2.5445vw;
    position: absolute;
  }
  body.home #main-visual .mv-inner .mv-title .mv-title-01::after {
    bottom: -2.5445vw;
    left: 1.9vw;
    background: url(/assets/img/home/mv-05-sp.svg);
    background-size: cover;
  }
  body.home #main-visual .mv-inner .mv-title .mv-title-02::before {
    top: -2.4vw;
    right: 1.8vw;
    background: url(/assets/img/home/mv-06-sp.svg);
    background-size: cover;
  }

  /*frontpage - news - sp*/
  body.home #news {
    padding: 80px 0;
  }
  body.home #news .news-row {
    flex-direction: column;
  }
  body.home #news .news-row .head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  body.home #news .news-row .head .news-deco {
    width: 159px;
  }
  body.home #news .news-row .head .news-ttl {
    margin: 0;
  }
  body.home #news .news-row .main {
    max-width: 100%;
  }
  body.home #news .news-row .main .news-list .news-item {
    flex-wrap: wrap;
    gap: 15px 20px;
  }
  body.home #news .news-row .main .news-list .news-item .ttl {
    width: 100%;
  }
  /*frontpage - concept - sp*/
  body.home #concept {
    padding: 100px 0;
  }
  body.home #concept::before,
  body.home #concept::after {
    width: 196.5px;
    height: 142.89px;
  }
  body.home #concept .concept-inner {
    width: 100%;
  }
  body.home #concept .concept-inner img {
    width: 60px;
    height: auto;
  }
  body.home #concept .concept-txt {
    text-align: left;
  }
  /*frontpage - feature - sp*/
  body.home #feature {
    padding: 80px 0;
  }
  body.home #feature .head {
    flex-direction: column;
    gap: 20px;
  }
  body.home #feature .head .infos .feature-ttl .deco {
    width: 159px;
  }
  body.home #feature .head .infos {
    width: 100%;
  }
  body.home #feature .head .image .deco {
    width: 70px;
    right: 0;
    bottom: -8.9058vw;
  }
  body.home #feature .main .list {
    flex-direction: column;
  }
  body.home #feature .main .list .item {
    width: 100%;
  }
  body.home #feature .main .list .item .fig {
    width: 82%;
    margin: 0 auto 20px;
  }
  body.home #feature .main .list .item .fig img {
    width: 100%;
    max-width: auto;
  }
  body.home #feature .main .list .item .txt {
    padding: 0;
  }
  body.home #feature .main .list .item .ttl .num {
    font-size: 30px;
  }
  body.home #feature .main .list .item .ttl .deco {
    left: 20px;
    top: 26px;
    width: 48px;
  }
  body.home #feature .main .list .item:nth-child(2) .ttl .deco {
    left: 35px;
  }
  body.home #feature .main .list .item:nth-child(3) .ttl .deco {
    left: 70px;
  }
  /* frontpage - service - sp */
  body.home #service {
    padding: 80px 0;
  }
  body.home #service .service-txt {
    text-align: left;
  }
  body.home #service .service-ttl .deco {
    width: 138px;
    top: -50px;
    right: -90px;
  }
  body.home #service .list {
    flex-direction: column;
    gap: 80px;
  }
  body.home #service .list .item {
    width: 100%;
  }
  body.home #service .list .item .fig {
    width: 100%;
  }
  body.home #service .list .item .fig img {
    width: 100%;
  }
  body.home #service .list .item .item-txt {
    padding: 0;
  }
  body.home #service .list .item .btn-link {
    width: 300px;
    height: 64px;
    padding: 0 30px;
    margin-bottom: 0;
  }
  .btn-link.btn-small .txt {
    font-size: 16px;
  }
  /* frontpage - contact - sp */
  body.home #contact {
    padding: 80px 0;
    width: 100%;
  }
  body.home #contact .contact-inner {
    padding: 80px 30px;
  }
  body.home #contact .contact-inner .contact-ttl {
    font-size: 23px;
  }
  body.home #contact .contact-inner .contact-ttl .deco {
    width: 159px;
    top: -95px;
    left: auto;
    right: -40px;
  }
  body.home #contact .contact-inner .contact-list {
    flex-direction: column;
    gap: 40px;
  }
  body.home #contact .contact-inner .contact-list .contact-item {
    width: 100%;
    border-right: none;
    padding: 0;
  }
  body.home #contact .contact-inner .contact-list .contact-item .head {
    font-size: 14px;
  }
  body.home #contact .contact-inner .contact-list .contact-item .tel {
    font-size: 36px;
  }
  body.home #contact .contact-inner .contact-link-row .contact-link {
    width: 100%;
  }
  /*---------------------------------------------------------
   page|service 
   ---------------------------------------------------------*/
  /*service - lead - sp*/
  body main.p-service #lead {
    padding: 80px 0;
  }
  body main.p-service #lead .head {
    flex-direction: column;
    padding: 0;
    margin: 0;
  }
  body main.p-service #lead .head .head-ttl {
    text-align: left;
  }
  body main.p-service #lead .head .main {
    width: 100%;
  }
  body main.p-service #lead .head .fig {
    margin: 40px -30px 0 -30px;
    position: relative;
    width: 100vw;
    height: 66.666vw;
    right: initial;
    top: initial;
    border-radius: 0;
  }
  body main.p-service #lead .head .main .head-ttl .deco {
    width: 160px;
    right: 7px;
    top: -58px;
  }
  /* lead 1column ver. */
  body main.p-service #lead.lead-one-column .head .fig {
    margin: 0 -30px 0 -30px;
    width: 100vw;
    border-radius: 0;
  }
  /*service - recreation - sp*/
  body main.p-service #lead .recreation {
    gap: 24px;
    flex-direction: column;
    margin-top: 80px;
    margin-bottom: -30px;
  }
  body main.p-service #lead .recreation .main {
    width: 100%;
  }
  body main.p-service #lead .recreation .main .sec-ttl::before {
    width: 136px;
    height: 48px;
    top: -28px;
    right: auto;
    left: 147px;
  }
  body main.p-service #lead .recreation .main .head-ttl .ttl-eng {
    margin-bottom: 10px;
  }
  body main.p-service #lead .recreation .list {
    width: 100vw;
    margin: 0 -30px;
    padding: 26px 30px 30px 30px;
    gap: 30px;
    overflow: scroll;
  }
  body main.p-service #lead .recreation .list .item {
    min-width: 266px;
  }
  body
    main.p-service
    #lead
    .recreation
    .list
    .item
    .card.card-recreation
    .eyecatch {
    border-radius: 20px;
    margin: 0 0 20px;
  }
  /**/
  body
    main.p-service
    #lead
    .recreation
    .list
    .item
    .card.card-recreation
    .eyecatch::after {
    top: -26px;
    left: -19px;
    width: 72px;
    height: 63.6px;
  }
  body
    main.p-service
    #lead
    .recreation
    .list
    .item:nth-of-type(2n)
    .card.card-recreation
    .eyecatch::after {
    width: 72px;
    height: 59px;
    right: -15px;
    bottom: -23px;
  }
  body
    main.p-service
    #lead
    .recreation
    .list
    .item:nth-of-type(3n)
    .card.card-recreation
    .eyecatch::after {
    width: 72px;
    height: 62.4px;
    top: -26px;
    right: -19px;
  }
  body
    main.p-service
    #lead
    .recreation
    .list
    .item:nth-of-type(4n)
    .card.card-recreation
    .eyecatch::after {
    width: 70.2px;
    height: 65.16px;
    right: 15px;
    bottom: -23px;
  }
  /**/
  body main.p-service #lead .recreation .list .item .card.card-recreation .ttl {
    font-size: 16px;
    margin: 0 0 15px;
  }
  /*service - whatis - sp*/
  body main.p-service #whatis {
    padding: 80px 0;
  }
  body main.p-service #whatis .head .head-txt {
    text-align: left;
  }
  body main.p-service #whatis .head .head-ttl .ttl-eng {
    margin-bottom: 10px;
  }
  body main.p-service #whatis .head .head-ttl .deco {
    width: 138px;
    left: auto;
    top: -52px;
    right: -12px;
  }
  body main.p-service #whatis .main {
    padding: 30px;
    margin: 0 -20px;
    width: auto;
  }
  body main.p-service #whatis .main .box {
    padding: 0;
  }
  body main.p-service #whatis .main .box::before {
    top: -62px;
    left: auto;
    right: -10px;
  }
  body main.p-service #whatis .main .main-ttl {
    margin: 0 0 40px;
    justify-content: left;
  }
  body main.p-service #whatis .main .main-ttl .txt {
    font-size: 18px;
  }
  /*service - feature - sp*/
  body main.p-service #feature {
    padding: 80px 0;
  }
  body main.p-service #feature .head .head-txt {
    text-align: left;
  }
  body main.p-service #feature .head .head-ttl .ttl-eng {
    margin-bottom: 10px;
  }
  body main.p-service #feature .head .head-ttl .deco {
    width: 138px;
    top: -38px;
    left: calc(50% - 170px);
  }
  body main.p-service #feature .feature-list .item {
    flex-direction: column;
    gap: 25px;
  }
  body main.p-service #feature .feature-list .item .fig,
  body main.p-service #feature .feature-list .item .main {
    width: 100%;
  }
  body main.p-service #feature .feature-list .item .fig::before {
    top: -26px;
    left: -17px;
    width: 80px;
    height: 70px;
  }
  body
    main.p-service
    #feature
    .feature-list
    .item:nth-of-type(2n)
    .fig::before {
    right: -20px;
    bottom: -20px;
    width: 88px;
    height: 70px;
  }
  body
    main.p-service
    #feature
    .feature-list
    .item:nth-of-type(3n)
    .fig::before {
    top: 40px;
    left: -15px;
    width: 71px;
    height: 70px;
  }
  body main.p-service #feature .feature-list .item .main .item-ttl {
    margin-bottom: 25px;
  }
  body main.p-service #feature .feature-list .item .main .item-ttl .ttl-eng {
    margin-bottom: 15px;
  }
  body
    main.p-service
    #feature
    .feature-list
    .item
    .main
    .item-ttl
    .ttl-eng
    .num {
    font-size: 21px;
  }
  body main.p-service #feature .feature-content {
    padding: 60px 30px;
    margin: 0 -20px;
    width: auto;
  }
  body main.p-service #feature .feature-content .content-ttl {
    font-size: 16px;
  }
  body main.p-service #feature .feature-content .content-ttl span {
    font-size: 23px;
  }
  body main.p-service #feature .feature-content .content-ttl .deco {
    width: 138px;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
  }
  body main.p-service #feature .feature-content .content-list {
    gap: 30px 20px;
  }
  body main.p-service #feature .feature-content .content-list .item {
    width: calc(50% - 10px);
  }
  body main.p-service #feature .feature-content .content-list .item .fig {
    margin-bottom: 15px;
    border-radius: 10px;
  }
  body main.p-service #feature .feature-content .content-list .item .main {
    padding: 0;
  }
  body main.p-service #feature .feature-content .content-list .item .main .ttl {
    font-size: 14px;
    margin: 0;
  }
  body main.p-service #feature .feature-content .content-list .item .main .txt {
    display: none;
  }
  /*service - target - sp*/
  body main.p-service #target {
    padding: 80px 0;
  }
  body main.p-service #target .head .head-ttl .ttl-eng {
    margin-bottom: 10px;
  }
  body main.p-service #target .head {
    margin-bottom: 40px;
  }
  body main.p-service #target .head .head-ttl .deco {
    width: 138px;
    top: -38px;
    left: calc(50% - 170px);
  }
  body main.p-service #target .main {
    margin: 0 -20px;
    padding: 60px 30px;
    width: auto;
  }
  body main.p-service #target .main .main-txt {
    text-align: left;
  }
  body main.p-service #target .main hr.full {
    margin: 40px 0;
  }
  body main.p-service #target .main .check-list {
    flex-direction: column;
  }
  body main.p-service #target .main .check-list .item {
    width: 100%;
  }
  body main.p-service #target .area {
    flex-direction: column;
    gap: 40px;
  }
  body main.p-service #target .area .info {
    width: 100%;
  }
  body main.p-service #target .area .info .area-ttl .ttl-mid {
    font-size: 18px;
    margin-bottom: 30px;
  }
  body main.p-service #target .area .map {
    width: auto;
    margin: 0 -20px;
  }
  body main.p-service #target .area .info .area-ttl .deco {
    width: 138px;
    right: 26px;
    top: -5px;
    left: auto;
  }
  /* service - flow - sp */
  body main.p-service #flow {
    padding: 80px 0;
  }
  body main.p-service #flow .head {
    margin-bottom: 52px;
  }
  body main.p-service #flow .head .head-ttl .ttl-eng {
    margin-bottom: 10px;
  }
  body main.p-service #flow .head .head-ttl .deco {
    width: 138px;
    top: -38px;
    left: calc(50% - 170px);
  }
  body main.p-service #flow .list {
    flex-direction: column;
  }
  body main.p-service #flow .list .item {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
  }
  body main.p-service #flow .list .item .fig {
    min-width: 100px;
    max-width: 100px;
    min-height: 100px;
    max-height: 100px;
    margin: 0;
  }
  body main.p-service #flow .list .item .ttl {
    text-align: left;
    font-size: 16px;
  }
  body main.p-service #flow .list .item .txt {
    font-size: 14px;
  }
  /* service - outline - sp */
  body main.p-service #outline {
    padding: 80px 0;
  }
  body main.p-service #outline .outline-ttl .deco {
    width: 138px;
    top: -38px;
    right: calc(50% - 190px);
    left: auto;
  }
  body main.p-service #outline .sec-ttl .ttl-eng {
    margin-bottom: 10px;
  }
  body main.p-service #outline .main {
    width: 100%;
  }
  /* service - outline - sp */
  body main.p-service #faq {
    padding: 80px 0;
  }
  body main.p-service #faq .sec-ttl .ttl-eng {
    margin-bottom: 10px;
  }
  body main.p-service #faq .faq-ttl .deco {
    width: 138px;
    top: -33px;
    left: calc(50% - 170px);
  }
  body main.p-service #faq .main {
    width: 100%;
  }
  /* --------------------------------------------------
to medical
----------------------------------------------------- */
  body main.p-service #avail .main {
    flex-direction: column;
    margin: 0 -20px 50px -20px;
    width: auto;
    gap: 10px;
  }
  body main.p-service #lead .head .main .contact .contact-ttl-row .contact-ttl {
    font-size: 16px;
  }
  body main.p-service #lead .head .main .contact .contact-list {
    flex-direction: column;
    margin: 30px 0 0 0;
    gap: 30px;
  }
  body main.p-service #lead .head .main .contact .contact-list .contact-item {
    width: 100%;
    margin: 0;
  }
  body
    main.p-service
    #lead
    .head
    .main
    .contact
    .contact-list
    .contact-item:first-child::after {
    display: none;
  }
  body
    main.p-service
    #lead
    .head
    .main
    .contact
    .contact-list
    .contact-item:first-child {
    border-bottom: 1px solid #ddd;
    padding-bottom: 30px;
  }
  body
    main.p-service
    #lead
    .head
    .main
    .contact
    .contact-list
    .contact-item
    .tel
    span {
    display: block;
  }
  body main.p-service #avail .head .head-ttl .deco {
    top: -50px;
    left: auto;
    right: 0;
  }
  body main.p-service #overview .head .head-ttl .deco {
    top: -50px;
    left: 0;
  }
  body main.p-service #avail .main .box {
    padding: 30px;
  }
  body main.p-service #avail .main .box .box-comment {
    line-height: 1.6;
    border-radius: 10px;
  }
  body main.p-service #avail .main .box .box-row {
    flex-direction: column;
  }
  body main.p-service #avail .main .box .box-row .box-col {
    width: 100%;
  }
  body main.p-service #avail .main .box .box-row .box-col .box-list {
    justify-content: center;
  }
  body main.p-service #avail .main .box .box-row .box-col .box-list .box-item {
    width: 100%;
    max-width: 68px;
  }
  body main.p-service #overview .main {
    width: 100%;
  }
  body main.p-service #overview .info-list {
    margin-bottom: 50px;
  }
  body main.p-service #overview .head .tag-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  body main.p-service #overview .head .tag-list .tag-item {
    font-size: 14px;
  }

  body main.p-service #overview .contact {
    padding: 50px 40px;
  }
  body main.p-service #overview .contact .contact-ttl {
    margin-bottom: 40px;
    font-size: 23px;
  }
  body main.p-service #overview .contact .contact-ttl .deco {
    top: -60px;
    left: -50px;
  }
  body main.p-service #overview .contact .tel-row {
    flex-direction: column;
    gap: 30px;
  }
  body main.p-service #overview .contact .tel-row .tel-col {
    width: 100%;
    padding: 0;
  }
  body main.p-service #overview .contact .tel-row .tel-col:first-child::after {
    display: none;
  }
  body main.p-service #overview .contact .tel-row .tel-col:first-child {
    border-bottom: 1px solid #ddd;
    padding-bottom: 30px;
  }
  body main.p-service #overview .contact .tel-row .tel-col .tel span {
    font-size: 28px;
  }
  body main.p-service #overview hr {
    margin: 80px 0;
  }

  /* --------------------------------------------------
post-type - news / recreation
----------------------------------------------------- */

  /* common */
  .category-search-inner {
    margin: 80px 0 80px 0;
  }
  .category-search-inner .category-keyword .category-buttons {
    padding: 6px 15px;
  }
  .category-search-inner .category-keyword .category-buttons .category-text {
    font-size: 12px;
  }
  body #category_search .list {
    flex-direction: column;
    gap: 50px;
  }
  body #category_search .list .item {
    width: 100%;
  }
  body #category_search .list .item .card.card-news .ttl {
    font-size: 18px;
  }
  body #category_search .list .item .card.card-news .txt {
    font-size: 14px;
  }
  body #category_search .list .item .card.card-recreation .eyecatch::after {
    top: -26px;
    left: -19px;
    width: 72px;
    height: 63.6px;
  }
  body
    #category_search
    .list
    .item:nth-of-type(2n)
    .card.card-recreation
    .eyecatch::after {
    width: 72px;
    height: 59px;
    right: -15px;
    bottom: -23px;
  }
  body
    #category_search
    .list
    .item:nth-of-type(3n)
    .card.card-recreation
    .eyecatch::after {
    width: 72px;
    height: 62.4px;
    top: -26px;
    right: -19px;
  }
  body
    #category_search
    .list
    .item:nth-of-type(4n)
    .card.card-recreation
    .eyecatch::after {
    width: 70.2px;
    height: 65.16px;
    right: 15px;
    bottom: -23px;
  }

  /* news Single  */
  .news-detail .container {
    width: 100%;
    margin: 80px 0;
    gap: 40px;
  }
  .news-detail .container .news-article-main {
    padding: 0;
    gap: 20px;
  }
  /* recreation Single */
  .recreation-detail .container {
    width: 100%;
    margin: 80px 0;
    gap: 80px;
  }
  .recreation-detail .container .recreation-contents {
    flex-direction: column-reverse;
  }
  .recreation-detail .container .recreation-contents .recreation-item,
  .recreation-detail .container .recreation-contents .recreation-image {
    flex-basis: auto;
  }
  .recreation-detail
    .container
    .recreation-contents
    .recreation-item
    .recreation-title::after {
    left: -20px;
    width: 64px;
    height: 57px;
  }
  .recreation-detail .container .recreation-effects .rect-vertical {
    margin-bottom: 30px;
  }
  .recreation-detail .container .recreation-effects .check-list {
    flex-direction: column;
  }
  .recreation-detail .container .recreation-effects .check-list .item {
    width: 100%;
  }
  .recreation-detail .swiper-wrap {
    margin: 30px auto 0 auto;
  }
  .recreation-detail .thumbnail {
    padding: 0;
  }
}
