@charset "UTF-8";
/* color */
/* gradient（ボタン・バッジのブランドグラデーション統一） */
@property --gradient-stop-start {
  syntax: "<color>";
  inherits: false;
  initial-value: #ff9866;
}
@property --gradient-stop-end {
  syntax: "<color>";
  inherits: false;
  initial-value: #ff6e36;
}
/* common */
@media (max-width: 767px) {
  .onlyPC {
    display: none;
  }
}
@media (min-width: 1300px) {
  .onlySP {
    display: none;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
@media (min-width: 1300px) {
  html {
    scroll-padding-top: 100px;
  }
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 60px;
  }
}

body {
  font-size: 16px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6875;
  letter-spacing: 0.13px;
  overflow-x: hidden;
  position: relative;
  animation: pageFadeIn 0.15s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* ページ遷移フェード：JS で is-fading-out クラスを付与すると次ページに遷移前にフェードアウト */
body.is-fading-out {
  animation: none;
  opacity: 0;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
img {
  width: 100%;
  height: auto;
}

.inner {
  width: 1300px;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1299px) {
  .inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 767px) {
  .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.inner-1000 {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1299px) {
  .inner-1000 {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 767px) {
  .inner-1000 {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.inner-800 {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1299px) {
  .inner-800 {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 767px) {
  .inner-800 {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*========================================================================================
# common
========================================================================================*/
.util-link {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #fff;
  position: relative;
  z-index: 0;
  background: linear-gradient(135deg, #ff9866 0%, #ff6e36 100%);
}
.util-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, #ff6e36 0%, #ff9866 100%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.util-link:hover::before {
  opacity: 1;
}
.util-link {
  border: none;
  border-radius: 40px;
  padding: 15px 48px;
  transition: color 0.35s ease;
}
.util-link span {
  position: relative;
}
.util-link span::before {
  position: absolute;
  content: "";
  right: -30px;
  top: calc(50% + 1px);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 10px solid #ffffff;
  border-right: 0;
  transition: all 0.4s ease 0.2s;
}
.util-link:hover {
  opacity: 1;
  color: #fff;
}
.util-link:hover span::before {
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 10px solid #ffffff;
}
.util-link.-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.section-title {
  font-size: 32px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  letter-spacing: 0.28px;
  line-height: 1;
  display: flex;
  flex-direction: column-reverse;
}
.section-title span.ja {
  margin-top: 10px;
}
.section-title span.en {
  font-family: "Nothing You Could Do", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #ff844e;
}

/* header
-----------------------------------------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 110px;
  background: #f7f6f4;
  box-shadow: 2px 6px 20px rgba(0, 0, 0, 0.05);
}
@media (min-width: 1300px) {
  .header {
    background: #fff;
    height: 100px;
  }
}
@media (max-width: 767px) {
  .header {
    height: 60px;
    background: #fff;
    box-shadow: none;
  }
}
.header .drawer-hamburger {
  padding-top: 25px;
}
@media (max-width: 767px) {
  .header .drawer-hamburger {
    padding-top: 19px;
  }
}
.drawer--right .header .drawer-hamburger {
  right: 3px;
}
.header .drawer-hamburger-icon {
  background: #000;
}
.drawer-open .header .drawer-hamburger-icon {
  background: transparent;
}
.header .drawer-hamburger-icon::before, .header .drawer-hamburger-icon::after {
  background: #000;
}

.header__inner {
  display: flex;
  width: 1300px;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1299px) {
  .header__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 767px) {
  .header__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.header__inner .tel {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-left: 20px;
  padding-left: 27px;
}
.header__inner .tel .txt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 11px;
  color: #ff844e;
  line-height: 1;
}
.header__inner .tel .tel_num {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 30px;
  color: #ff844e;
  line-height: 1;
  padding: 8px 0 8px 25px;
  position: relative;
  text-decoration: none;
}
.header__inner .tel .tel_num::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 18px;
  height: 29px;
  background: url(../img/deco_tel01.png) no-repeat center center/contain;
}
.header__inner .tel .tel_time {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 11px;
  color: #000;
  line-height: 1;
}
@media (max-width: 767px) {
  .header__inner .tel {
    display: none;
  }
}

.header-logo {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: #ff844e;
  display: flex;
  align-items: center;
}
.header-logo a {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.header-logo a:visited, .header-logo a:hover, .header-logo a:focus, .header-logo a:active {
  color: inherit;
  text-decoration: none;
}
.header-logo img {
  width: 55px;
  height: auto;
}
@media (max-width: 767px) {
  .header-logo img {
    width: 45px;
  }
}
.header-logo span.ja {
  padding-left: 10px;
}
@media (max-width: 767px) {
  .header-logo span.ja {
    font-size: 20px;
  }
}
@media (min-width: 1300px) {
  .header-logo {
    line-height: 60px;
  }
}

.header__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .header__nav {
    display: none;
  }
}

.drawer-nav {
  z-index: 1000;
  background: #fff;
  overflow-y: auto;
}
@media (max-width: 767px) {
  .drawer-nav {
    width: 100vw;
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .drawer-nav {
    width: 100vw;
  }
}
@media (min-width: 1300px) {
  .drawer-nav {
    display: none;
  }
}

@media (max-width: 767px) {
  .drawer--right .drawer-nav {
    right: -100vw;
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .drawer--right .drawer-nav {
    right: -100vw;
  }
}

.sp-drawer__header {
  height: 60px;
  padding: 0 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sp-drawer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sp-drawer__logo img {
  width: 40px;
}

.sp-drawer__logo-text {
  font-size: 16px;
  font-weight: 700;
  color: #ff844e;
}

.sp-drawer__close {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}

.sp-drawer__body {
  padding: 20px;
}

.sp-drawer__cta {
  position: relative;
  z-index: 0;
  background: linear-gradient(135deg, #ff9866 0%, #ff6e36 100%);
}
.sp-drawer__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, #ff6e36 0%, #ff9866 100%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.sp-drawer__cta:hover::before {
  opacity: 1;
}
.sp-drawer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  text-align: center;
  height: 70px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
}
.sp-drawer__cta .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #fff;
}
.sp-drawer__cta:hover {
  opacity: 1;
}

.sp-drawer__menu {
  margin-top: 0;
}

.sp-drawer__menu-item {
  border-bottom: 1px solid #e6b8a4;
}
.sp-drawer__menu-item:first-child {
  border-top: 1px solid #e6b8a4;
}

.sp-drawer__menu-link {
  display: block;
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #ff844e;
}

.sp-drawer__line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #4cc764;
  color: #fff;
  height: 70px;
  border-radius: 5px;
  font-size: 16px;
  margin-top: 20px;
}
.sp-drawer__line-btn .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.drawer-open {
  overflow: hidden;
}

.drawer--top.drawer-open .drawer-nav {
  top: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer--left.drawer-open .drawer-nav,
.drawer--left .drawer-hamburger,
.drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
  left: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 1300px) {
  .header__nav__items {
    display: flex;
  }
}

@media (min-width: 1300px) {
  .header__nav__item + .header__nav__item .header__nav__item__link {
    margin-left: 24px;
  }
}

.header__nav__item__link {
  display: block;
  text-align: left;
  color: #333;
  font-weight: 700;
  position: relative;
}
@media (max-width: 767px) {
  .header__nav__item__link {
    display: block;
    text-align: left;
    padding: 25px 20px;
    background: #f7f6f4;
    border-bottom: 1px solid #d3cbc1;
    position: relative;
  }
  .header__nav__item__link:first-child {
    border-top: 1px solid #d3cbc1;
  }
  .header__nav__item__link::before {
    content: "";
    position: absolute;
    right: 27px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg) translateY(-50%);
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .header__nav__item__link {
    display: block;
    text-align: left;
    padding: 25px 20px;
    background: #f7f6f4;
    border-bottom: 1px solid #d3cbc1;
  }
  .header__nav__item__link:first-child {
    border-top: 1px solid #d3cbc1;
  }
  .header__nav__item__link::before {
    content: "";
    position: absolute;
    right: 27px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg) translateY(-50%);
  }
}
@media (min-width: 1300px) {
  .header__nav__item__link.drawer_only {
    display: none;
  }
}
@media (max-width: 767px) {
  .header__nav__item__link.drawer_only {
    padding: 25px 20px 25px 40px;
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .header__nav__item__link.drawer_only {
    padding: 25px 20px 25px 40px;
  }
}
.header__nav__item__link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background: transparent;
  transition: all 0.3s ease 0s;
}
.header__nav__item__link:hover::after, .header__nav__item__link.is-active::after {
  background: #ff844e;
}
.header__nav__item__link img {
  width: 24px;
}
.header__nav__item__link span {
  display: block;
  font-size: 14px;
}
@media (max-width: 767px) {
  .header__nav__item__link span {
    font-size: 16px;
  }
}

/* news-top
-----------------------------------------------------------------------------------------*/
.news-top {
  margin-top: 60px;
  height: 50px;
  width: 100%;
  background: #ff844e;
}
.news-top a {
  display: block;
  height: 100%;
}
.news-top a span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-weight: 400;
  color: #fff;
  text-align: center;
  padding: 13px;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .news-top a span {
    padding: 12px;
  }
}

/* main
-----------------------------------------------------------------------------------------*/
.main {
  padding-top: 110px;
}
.main.bg_white {
  background: #fff;
}
@media (max-width: 767px) {
  .main {
    padding-top: 50px;
  }
}

/* top
-----------------------------------------------------------------------------------------*/
.top {
  position: relative;
}

.main-visual {
  position: relative;
}
@media (min-width: 768px) and (max-width: 1299px) {
  .main-visual {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 120px;
  }
}
@media (max-width: 767px) {
  .main-visual {
    padding: 0 20px 30px;
  }
}
.main-visual .subpageTit {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  letter-spacing: 0.24px;
}
@media (max-width: 767px) {
  .main-visual .subpageTit {
    margin-top: 10px;
  }
}

.bg_main-visual {
  position: absolute;
  top: 230px;
  left: 0;
  height: 500px;
  width: 100%;
  max-width: 1920px;
  background: rgba(255, 242, 194, 0.7);
  z-index: -1;
}
@media (min-width: 768px) and (max-width: 1299px) {
  .bg_main-visual {
    height: auto;
    bottom: 0;
  }
}
@media (max-width: 767px) {
  .bg_main-visual {
    top: 120px;
    height: auto;
    bottom: 0;
  }
}

.main-visual__content {
  margin: 93px auto 0;
  width: 1300px;
  max-width: 100%;
  min-height: 1000px;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 768px) and (max-width: 1299px) {
  .main-visual__content {
    gap: 32px;
    min-height: 0;
  }
}
@media (max-width: 767px) {
  .main-visual__content {
    margin: 0 auto;
    min-height: 0;
  }
}
@media (min-width: 1300px) {
  .main-visual__content .layout01 {
    min-width: 550px;
    flex: 0 0 auto;
    margin-right: 2.5384%;
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .main-visual__content .layout01 {
    flex: 1 1 auto;
    min-width: 0;
    position: relative;
  }
}
@media (max-width: 767px) {
  .main-visual__content .layout01 {
    display: flex;
    flex-direction: column;
  }
}
.main-visual__content .layout01 .main-visual__title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .main-visual__content .layout01 .main-visual__title {
    order: 1;
    flex-basis: auto;
    flex-grow: 0;
  }
}
.main-visual__content .layout01 .main-visual__title .ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 45px;
  color: #333;
  letter-spacing: 3.1px;
  line-height: 1.3870967742;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.08);
  flex-basis: auto;
}
@media (max-width: 767px) {
  .main-visual__content .layout01 .main-visual__title .ja {
    font-size: 31px;
  }
}
.main-visual__content .layout01 .main-visual__title .pre-title {
  position: absolute;
  top: -39px;
  right: -106px;
  color: #fff;
  text-shadow: none;
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0;
}
.main-visual__content .layout01 .main-visual__title .pre-title::before {
  position: absolute;
  content: "";
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9866 0%, #ff6e36 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 767px) {
  .main-visual__content .layout01 .main-visual__title .pre-title {
    text-align: center;
    font-weight: 400;
    font-size: 12px;
    top: -20px;
    right: 10px;
  }
  .main-visual__content .layout01 .main-visual__title .pre-title::before {
    width: 61px;
    height: 61px;
  }
}
@media (max-width: 767px) {
  .main-visual__content .layout01 .main-visual__title {
    font-size: 31px;
    letter-spacing: 3.1px;
    line-height: 1.3870967742;
  }
}
.main-visual__content .layout01 .main-visual__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .main-visual__content .layout01 .main-visual__body {
    order: 3;
    align-items: stretch;
  }
}
.main-visual__content .layout01 .main-visual__body .PR {
  margin-top: 70px;
}
@media (max-width: 767px) {
  .main-visual__content .layout01 .main-visual__body .PR {
    margin-top: 60px;
    width: 100%;
  }
}
.main-visual__content .layout01 .main-visual__body .PR .pr_content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media (max-width: 767px) {
  .main-visual__content .layout01 .main-visual__body .PR .pr_content {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.main-visual__content .layout01 .main-visual__body .PR .pr_content .pr_tit {
  border-radius: 2px;
  padding: 20px 24px;
  text-align: center;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  word-break: keep-all;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
}
.main-visual__content .layout01 .main-visual__body .PR .pr_content .pr_tit span {
  color: #ff844e;
  font-size: 22px;
}
@media (max-width: 767px) {
  .main-visual__content .layout01 .main-visual__body .PR .pr_content .pr_tit {
    padding: 8px 16px;
    font-size: 13px;
  }
  .main-visual__content .layout01 .main-visual__body .PR .pr_content .pr_tit span {
    font-size: 18px;
  }
}
.main-visual__content .layout01 .main-visual__body .deco_img {
  margin-top: 44px;
  display: flex;
}
@media (max-width: 767px) {
  .main-visual__content .layout01 .main-visual__body .deco_img {
    margin-top: 30px;
    padding: 0;
    max-width: 100%;
  }
}
.main-visual__content .layout01 .main-visual__body .deco_img > span {
  display: block;
  overflow: hidden;
  border-radius: 25px;
}
@media (max-width: 767px) {
  .main-visual__content .layout01 .main-visual__body .deco_img > span {
    flex: 1 1 0;
    max-width: calc(50% - 5px);
    border-radius: 16px;
  }
}
.main-visual__content .layout01 .main-visual__body .deco_img > span:not(:first-child) {
  margin-left: 16px;
}
.main-visual__content .layout01 .main-visual__body .deco_img > span picture {
  display: block;
}
.main-visual__content .layout01 .main-visual__body .deco_img > span img {
  width: 267px;
  max-width: 100%;
  height: auto;
  display: block;
  transform: scale(1.08);
  border-radius: 0;
}
@media (max-width: 767px) {
  .main-visual__content .layout01 .main-visual__body .deco_img > span img {
    width: 100%;
    max-width: 100%;
  }
}
.main-visual__content .layout01 .main-visual__btn {
  margin-top: 30px;
}
@media (min-width: 768px) and (max-width: 1299px) {
  .main-visual__content .layout01 .main-visual__btn {
    position: absolute;
    top: 100%;
    left: 0;
  }
}
@media (max-width: 767px) {
  .main-visual__content .layout01 .main-visual__btn {
    order: 2;
  }
}
.main-visual__content .layout01 .main-visual__btn > a {
  font-size: 18px;
  letter-spacing: 0.54px;
  display: inline-block;
  font-weight: 700;
  color: #333;
  padding: 10px 60px 10px 0;
  position: relative;
  transition: all 0.4s ease 0s;
}
.main-visual__content .layout01 .main-visual__btn > a:hover {
  color: #ff844e;
  transition: all 0.4s ease 0s;
}
.main-visual__content .layout01 .main-visual__btn > a:hover::before {
  --gradient-stop-start: #ff6e36;
  --gradient-stop-end: #ff9866;
}
.main-visual__content .layout01 .main-visual__btn > a:hover::after {
  border-color: #fff;
  transition: all 0.4s ease 0s;
}
.main-visual__content .layout01 .main-visual__btn > a::before, .main-visual__content .layout01 .main-visual__btn > a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.main-visual__content .layout01 .main-visual__btn > a::before {
  right: 0;
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  --gradient-stop-start: #ff9866;
  --gradient-stop-end: #ff6e36;
  background: linear-gradient(135deg, var(--gradient-stop-start) 0%, var(--gradient-stop-end) 100%);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: none;
  transition: --gradient-stop-start 0.35s cubic-bezier(0.4, 0, 0.2, 1), --gradient-stop-end 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-visual__content .layout01 .main-visual__btn > a::after {
  right: 22px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media (max-width: 767px) {
  .main-visual__content .layout01 .main-visual__btn > a {
    font-size: 14px;
  }
}
.main-visual__content .layout02 {
  flex: 0 1 auto;
}
@media (min-width: 768px) and (max-width: 1299px) {
  .main-visual__content .layout02 {
    flex: 0 1 40%;
    min-width: 0;
    display: flex;
    align-items: flex-end;
  }
}
.main-visual__content .layout02 .main-visual_img {
  max-width: 716px;
}
@media (min-width: 768px) and (max-width: 1299px) {
  .main-visual__content .layout02 .main-visual_img {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .main-visual__content .layout02 .main-visual_img {
    display: none;
  }
}
.main-visual__content .layout02 .main-visual_img img {
  border-radius: 24px;
  height: auto;
}
@media (min-width: 768px) and (max-width: 1299px) {
  .main-visual__content .layout02 .main-visual_img img {
    border-radius: 20px;
  }
}

.reserve-btn {
  position: relative;
  z-index: 0;
  background: linear-gradient(135deg, #ff9866 0%, #ff6e36 100%);
}
.reserve-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, #ff6e36 0%, #ff9866 100%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.reserve-btn:hover::before {
  opacity: 1;
}
.reserve-btn {
  position: fixed;
  display: block;
  right: 0;
  top: 223px;
  width: 80px;
  height: 145px;
  border-radius: 15px 0 0 15px;
  z-index: 2;
  display: flex;
  align-items: center;
  text-align: center;
  box-shadow: 2px 6px 20px rgba(0, 0, 0, 0.2);
}
.reserve-btn:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .reserve-btn {
    display: none;
  }
}
.reserve-btn span {
  display: block;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #fff;
  position: relative;
  padding-top: 35px;
}
.reserve-btn span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 35px;
  height: 31px;
  background: url(../img/deco_mail01.png) no-repeat center center/contain;
}

.line-btn {
  position: fixed;
  right: 0;
  top: 368px;
  width: 80px;
  height: 145px;
  display: block;
  border-radius: 0 0 0 15px;
  box-shadow: 2px 6px 20px rgba(0, 0, 0, 0.2);
  z-index: 2;
  overflow: hidden;
  background: #4cc764;
  display: flex;
  align-items: center;
  text-align: center;
}
.line-btn span {
  padding-top: 38px;
  display: block;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #fff;
  position: relative;
}
.line-btn span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 33px;
  height: 33px;
  background: url(../img/deco_line01.png) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .line-btn {
    height: 60px;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    border-radius: 5px;
    display: flex;
    flex-direction: row-reverse;
    box-shadow: none;
    overflow: visible;
    top: auto;
    bottom: 0;
    width: 100%;
    padding: 0;
  }
  .line-btn span {
    padding: 0;
    display: inline-block;
    width: auto;
    margin-right: -25px;
  }
  .line-btn span::after {
    top: -4px;
    left: -25px;
  }
}

/* pickUp
-----------------------------------------------------------------------------------------*/
.pickUp {
  padding: 80px 0 100px;
}
@media (max-width: 767px) {
  .pickUp {
    margin-top: 20px;
    padding: 60px 0;
  }
}
.pickUp .section-title > span > span {
  display: inline-block;
}
.pickUp .section-title > span.ja > span {
  position: relative;
}
.pickUp .section-title > span.ja > span::before {
  position: absolute;
  content: "";
  top: -80px;
  left: -70px;
  background: url(../img/ico_gensen.png) no-repeat center center/contain;
  width: 109px;
  height: 94px;
}
.pickUp .entries {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .pickUp .entries {
    margin-top: 40px;
  }
}
.pickUp .pickUp-footer {
  margin-top: 70px;
  text-align: center;
}

/* entries
-----------------------------------------------------------------------------------------*/
.entries {
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .entries {
    margin-top: 30px;
  }
}

.entry-item {
  border-radius: 20px;
  box-shadow: 2px 6px 20px rgba(0, 0, 0, 0.05);
}
@media (min-width: 1300px) {
  .entry-item {
    width: calc(33.3% - 33.3333333333px);
  }
  .entry-item:not(:nth-child(3n+1)) {
    margin-left: 50px;
  }
  .entry-item:nth-child(n+4) {
    margin-top: 50px;
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .entry-item {
    width: calc(50% - 15px);
  }
  .entry-item:not(:nth-child(2n+1)) {
    margin-left: 30px;
  }
  .entry-item:nth-child(n+3) {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .entry-item {
    width: 100%;
    margin-left: 0;
    display: flex;
    align-items: center;
    border-radius: 0;
    box-shadow: none;
  }
  .entry-item:nth-child(n+2) {
    margin-top: 10px;
  }
}
.entry-item:hover .entry-item-title {
  color: #ff844e;
}
.entry-item:hover .entry-item-img > img {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .entry-item:hover .entry-item-img > img {
    transform: translate(-50%, -50%) scale(1.05);
  }
}
.entry-item.is-new {
  position: relative;
}
.entry-item.is-new::after {
  position: absolute;
  content: "New";
  top: -19px;
  left: -13px;
  width: 60px;
  height: 60px;
  background-color: rgba(255, 211, 102, 0.8509803922);
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media (max-width: 767px) {
  .entry-item.is-new::after {
    width: 40px;
    height: 40px;
    top: -8px;
    left: -8px;
    font-size: 10px;
    line-height: 40px;
  }
}

@media (max-width: 767px) {
  .entry-item-header {
    flex: 0 0 40%;
  }
}

.entry-item-img {
  overflow: hidden;
}
@media (min-width: 1300px) {
  .entry-item-img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .entry-item-img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}
@media (max-width: 767px) {
  .entry-item-img {
    padding-top: 75.9398%;
    overflow: hidden;
    position: relative;
  }
}
.entry-item-img > img {
  transition: all 0.4s ease 0s;
}
@media (max-width: 767px) {
  .entry-item-img > img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
  }
}

.entry-item-body {
  position: relative;
  padding: 24px 24px 10px 24px;
  background: #fff;
}
@media (min-width: 1300px) {
  .entry-item-body {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .entry-item-body {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}
@media (max-width: 767px) {
  .entry-item-body {
    flex: 0 0 60%;
    padding: 8px 10px;
  }
}

.entry-item-tag {
  font-size: 11px;
  color: #fff;
  background: #ff844e;
  display: inline-block;
  line-height: 1;
  padding: 7px 12px;
  border-radius: 14px;
  position: absolute;
  left: 24px;
  top: -14px;
}
@media (max-width: 767px) {
  .entry-item-tag {
    font-size: 10px;
    position: static;
    padding: 4px 8px;
  }
}

.entry-item-title {
  line-height: 1.5;
  color: #333;
  font-weight: 500;
  transition: all 0.4s ease 0s;
}
@media (max-width: 767px) {
  .entry-item-title {
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.4285714286;
  }
}

.entry-item-published {
  font-size: 11px;
  color: #888888;
}

.blog__footer {
  margin-top: 60px;
  text-align: center;
}
@media (max-width: 767px) {
  .blog__footer {
    margin-top: 40px;
  }
}

/* About
-----------------------------------------------------------------------------------------*/
.about {
  background: rgba(250, 246, 245, 0.6);
}
.about .about__inner {
  padding: 120px 0 180px;
}
@media (min-width: 768px) and (max-width: 1299px) {
  .about .about__inner {
    padding: 70px 24px;
  }
}
@media (max-width: 767px) {
  .about .about__inner {
    padding: 60px 0;
  }
}
.about .section-title {
  text-align-last: left;
}
@media (max-width: 767px) {
  .about .section-title {
    padding: 0 40px;
  }
}

.about__inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .about__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.about__content {
  margin-top: 50px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .about__content {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.about__image {
  width: 42.3076923077%;
  height: auto;
}
.about__image img {
  border-radius: 10px;
}
@media (max-width: 767px) {
  .about__image {
    width: 100%;
  }
}

.about__message {
  width: 51.5384615385%;
  margin-left: 6.1538461538%;
}
@media (max-width: 767px) {
  .about__message {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
  }
}

.about__message__title img {
  width: 108px;
  height: auto;
}
.about__message__text {
  margin-top: 40px;
  font-size: 19px;
  line-height: 2.2105263158;
}
@media (max-width: 767px) {
  .about__message__text {
    margin-top: 30px;
    font-size: 16px;
  }
}

.about__message__footer {
  margin-top: 50px;
  text-align: right;
}
@media (max-width: 767px) {
  .about__message__footer {
    text-align: right;
  }
}

/* feature
-----------------------------------------------------------------------------------------*/
.feature {
  background-color: rgba(255, 242, 194, 0.5);
  padding: 50px 0 70px;
}
@media (max-width: 767px) {
  .feature {
    padding: 50px 0;
  }
}

.feature__inner .section-title > span.ja span {
  font-size: 70px;
  color: #ff844e;
  padding: 0 5px;
}

.feature__boxes {
  margin: 80px auto 0;
}
@media (max-width: 767px) {
  .feature__boxes {
    margin: 40px 0 0;
  }
}

.feature-box {
  padding: 50px 100px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 30px;
}
.feature-box:nth-child(n+2) {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .feature-box:nth-child(n+2) {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .feature-box {
    padding: 30px 20px;
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .feature-box {
    padding: 50px;
  }
}

.feature-box__content {
  margin: 0 auto;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.feature-box__content.is-reverse {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .feature-box__content {
    flex-direction: column;
  }
  .feature-box__content.is-reverse {
    flex-direction: column;
  }
}

.feature-box__image {
  width: calc((100% - 50px) / 2);
}
@media (min-width: 768px) and (max-width: 1299px) {
  .feature-box__image {
    width: 50%;
  }
}
.feature-box__image img {
  border-radius: 8px;
}
@media (max-width: 767px) {
  .feature-box__image {
    width: 100%;
    margin-top: 24px;
  }
}

@media (min-width: 1300px) {
  .feature-box__body {
    width: calc((100% - 50px) / 2);
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .feature-box__body {
    width: 50%;
  }
}

.feature-box__head {
  display: flex;
  align-items: center;
  color: #ff844e;
  position: relative;
}
.feature-box__head .feature-box__number {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  font-size: 60px;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .feature-box__head .feature-box__number {
    font-size: 28px;
    position: absolute;
    top: -20px;
    left: 0px;
  }
}
.feature-box__head .feature-box__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  padding-left: 50px;
  letter-spacing: 0.08em;
  position: relative;
}
.feature-box__head .feature-box__title::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 23px;
  width: 3px;
  height: calc(100% - 30px);
  border-radius: 2px;
  background: #ff844e;
}
@media (max-width: 767px) {
  .feature-box__head .feature-box__title {
    padding-left: 0;
    text-align: center;
    display: block;
    width: 100%;
  }
  .feature-box__head .feature-box__title::after {
    content: none;
  }
}

.feature-box__text {
  margin-top: 30px;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) and (max-width: 1299px) {
  .feature-box__text {
    padding: 0 20px;
  }
}

.feature-box__btn {
  display: block;
  width: 100%;
  text-align: left;
  margin-top: 40px;
  background: none;
}
.feature-box__btn .util-link {
  border: none;
  padding: 10px 40px;
}
.feature-box__btn .util-link:hover {
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .feature-box__btn {
    display: none;
  }
}

/* works
-----------------------------------------------------------------------------------------*/
.works {
  padding: 110px 0 70px;
}
@media (max-width: 767px) {
  .works {
    padding: 50px 0;
  }
}

.works-inner .entries {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .works-inner .entries {
    margin-top: 30px;
  }
}
.works-inner .entry-item {
  border-radius: 20px;
  box-shadow: 2px 6px 20px rgba(0, 0, 0, 0.05);
}
@media (min-width: 1300px) {
  .works-inner .entry-item {
    width: calc(33.3% - 33.3333333333px);
  }
  .works-inner .entry-item:not(:nth-child(3n+1)) {
    margin-left: 50px;
  }
  .works-inner .entry-item:nth-child(n+4) {
    margin-top: 50px;
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .works-inner .entry-item {
    width: calc(50% - 15px);
  }
  .works-inner .entry-item:not(:nth-child(2n+1)) {
    margin-left: 30px;
  }
  .works-inner .entry-item:nth-child(n+3) {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .works-inner .entry-item {
    width: 100%;
    margin-left: 0;
    display: flex;
    align-items: center;
    border-radius: 0;
    box-shadow: none;
  }
  .works-inner .entry-item:nth-child(n+2) {
    margin-top: 10px;
  }
}
.works-inner .entry-item:hover .entry-item-title {
  color: #ff844e;
}
.works-inner .entry-item:hover .entry-item-img > img {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .works-inner .entry-item:hover .entry-item-img > img {
    transform: translate(-50%, -50%) scale(1.05);
  }
}
.works-inner .entry-item.is-new {
  position: relative;
}
.works-inner .entry-item.is-new::after {
  position: absolute;
  content: "NEW";
  top: -19px;
  left: -13px;
  width: 60px;
  height: 60px;
  background-color: rgba(255, 211, 102, 0.85);
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
}
@media (max-width: 767px) {
  .works-inner .entry-item.is-new::after {
    width: 40px;
    height: 40px;
    top: -8px;
    left: -8px;
    font-size: 10px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .works-inner .entry-item-header {
    flex: 0 0 40%;
  }
}
.works-inner .entry-item-img {
  overflow: hidden;
}
@media (min-width: 1300px) {
  .works-inner .entry-item-img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .works-inner .entry-item-img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}
@media (max-width: 767px) {
  .works-inner .entry-item-img {
    padding-top: 75.9398%;
    overflow: hidden;
    position: relative;
  }
}
.works-inner .entry-item-img > img {
  transition: all 0.4s ease 0s;
}
@media (max-width: 767px) {
  .works-inner .entry-item-img > img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
  }
}
.works-inner .entry-item-body {
  position: relative;
  padding: 24px 24px 10px 24px;
  background: #fff;
}
@media (min-width: 1300px) {
  .works-inner .entry-item-body {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .works-inner .entry-item-body {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}
@media (max-width: 767px) {
  .works-inner .entry-item-body {
    flex: 0 0 60%;
    padding: 8px 10px;
  }
}
.works-inner .entry-item-tag {
  font-size: 11px;
  color: #fff;
  background: #ff844e;
  display: inline-block;
  line-height: 1;
  padding: 7px 12px;
  border-radius: 14px;
  position: absolute;
  left: 24px;
  top: -14px;
}
@media (max-width: 767px) {
  .works-inner .entry-item-tag {
    font-size: 10px;
    position: static;
    padding: 4px 8px;
  }
}
.works-inner .entry-item-title {
  line-height: 1.5;
  color: #333;
  font-weight: 500;
  transition: all 0.4s ease 0s;
}
@media (max-width: 767px) {
  .works-inner .entry-item-title {
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.4285714286;
  }
}
.works-inner .entry-item-published {
  font-size: 11px;
  color: #888888;
}
.works-inner .works__footer {
  margin-top: 60px;
  text-align: center;
}
@media (max-width: 767px) {
  .works-inner .works__footer {
    margin-top: 40px;
  }
}

/* article
-----------------------------------------------------------------------------------------*/
.article {
  padding: 120px 0 164px;
  background-color: rgba(255, 242, 194, 0.5);
}
@media (max-width: 767px) {
  .article {
    padding: 50px 0 60px;
  }
}

.article-inner {
  position: relative;
  background: #fff;
  padding: 50px 0 60px 60px;
  border-radius: 25px 0 0 25px;
}
@media (max-width: 767px) {
  .article-inner {
    padding: 40px 20px 50px;
    border-radius: 0;
  }
}
.article-inner::after {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  width: 50vw;
  height: 100%;
  background: #fff;
}
@media (max-width: 767px) {
  .article-inner::after {
    content: none;
  }
}
.article-inner .article__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .article-inner .article__header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
  }
}
.article-inner .section-title {
  flex-direction: row;
  align-items: baseline;
}
.article-inner .section-title .ja {
  margin-top: 0;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .article-inner .section-title {
    margin-bottom: 30px;
  }
}

.article__item {
  max-width: 300px;
}
.article__item:hover .article__txt {
  opacity: 0.7;
  cursor: pointer;
}
.article__item:hover .article__txt {
  opacity: 0.7;
  cursor: pointer;
}
.article__item:hover .article__image > img {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .article__item:hover .article__image > img {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.article__image {
  padding-top: 71%;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.article__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease 0s;
}

.article_type {
  margin-top: 11px;
}
.article_type span {
  display: inline-block;
  color: #ff844e;
  border: 2px solid #ff844e;
  border-radius: 18px;
  padding: 1px 28px;
}

.article__txt {
  margin-top: 25px;
  min-height: 80px;
  color: #333;
}
.article__txt .tit {
  font-size: 17px;
  font-weight: 700;
}
.article__txt .txt {
  margin-top: 10px;
  font-size: 15px;
}

.article__footer {
  text-align: center;
  z-index: 1;
}

/* swiper
-----------------------------------------------------------------------------------------*/
.swiper {
  position: relative;
}

.swiper-slide {
  width: 300px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .swiper-slide {
    width: 340px;
    height: 191px;
  }
}
.swiper-slide img.videoThumb {
  cursor: pointer;
}
.swiper-slide img.videoThumb:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .swiper-slide img {
    top: -32px;
  }
}

.modalContent {
  background-color: #fefefe;
  margin: 54px auto 0;
  padding: 0;
  border: 1px solid #888;
  animation: fadeIn 0.7s ease 0s 1 normal;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  aspect-ratio: 180/101;
  max-width: 900px;
}

.modalContent iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}

button.closeBtn {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 34px;
  height: 3px;
  background: currentColor;
  border-radius: 0.1rem;
  position: absolute;
  transform: rotate(45deg);
  border: none;
  right: 0;
  top: -37px;
  opacity: 1;
  transition: 0.2s ease-in-out;
}

button.closeBtn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}

button.closeBtn:hover {
  opacity: 0.7;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(60px);
  }
}
.swiper-button-prev {
  position: absolute;
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
  left: calc(50% - 600px - 30px);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
}
.swiper-button-prev::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 28px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: translateY(-50%) rotate(-135deg);
}
@media (min-width: 768px) and (max-width: 1299px) {
  .swiper-button-prev {
    left: 10px;
  }
}
@media (max-width: 767px) {
  .swiper-button-prev {
    left: 10px;
  }
}

.swiper-button-next {
  position: absolute;
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
  right: calc(50% - 600px - 30px);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
}
.swiper-button-next::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: translateY(-50%) rotate(45deg);
}
@media (min-width: 768px) and (max-width: 1299px) {
  .swiper-button-next {
    right: 10px;
  }
}
@media (max-width: 767px) {
  .swiper-button-next {
    right: 10px;
  }
}

.about-items {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .about-items {
    display: block;
    margin-top: 40px;
  }
}

.about-item {
  width: 276px;
}
@media (max-width: 767px) {
  .about-item {
    margin: 0 auto;
  }
  .about-item:nth-child(n+2) {
    margin-top: 60px;
  }
}

.about-item__recommend {
  width: 177px;
  margin: 0 auto;
}

.about-item__img {
  margin-top: 15px;
}

.about-item__text {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.7142857143;
  font-weight: 500;
}
.about-item__text span {
  color: #ef956e;
}

/* medical
-----------------------------------------------------------------------------------------*/
.medical {
  padding: 90px 0 100px;
  position: relative;
}
@media (max-width: 767px) {
  .medical {
    padding: 50px 0 60px;
  }
}

.medical-inner {
  width: 1000px;
  margin: 0 auto;
  max-width: 100%;
}

.medical-items {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
}
.medical-items.mt-0 {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .medical-items {
    margin-top: 30px;
  }
}

.medical-item {
  width: calc(50% - 30px);
  height: 300px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  z-index: 0;
  position: relative;
}
.medical-item:not(:nth-child(2n+1)) {
  margin-left: 60px;
}
@media (max-width: 767px) {
  .medical-item:not(:nth-child(2n+1)) {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .medical-item {
    width: 100%;
    height: 249px;
  }
  .medical-item:nth-child(n+2) {
    margin-top: 30px;
  }
}
.medical-item .medical-item__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  letter-spacing: 0.18px;
  position: absolute;
  left: 40px;
  bottom: 46px;
  text-align: left;
}
@media (max-width: 767px) {
  .medical-item .medical-item__title {
    left: 30px;
    bottom: 30px;
  }
}
.medical-item .arrow {
  display: inline-block;
  position: absolute;
  bottom: 34px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
}
@media (max-width: 767px) {
  .medical-item .arrow {
    bottom: 20px;
  }
}
.medical-item .arrow::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
  right: 25px;
}

.medical-item-bg1 {
  background: url(../img/sr02.png) no-repeat center center/cover;
  position: relative;
}
.medical-item-bg1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 175px;
  background: transparent linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  border-radius: 10px;
  z-index: -1;
}

.medical-item-bg2 {
  background: url(../img/sr01.png) no-repeat center center/cover;
  position: relative;
}
.medical-item-bg2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 175px;
  background: transparent linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  border-radius: 10px;
  z-index: -1;
}
@media (max-width: 767px) {
  .medical-item-bg2::after {
    height: 145px;
  }
}

/* medical-info
-----------------------------------------------------------------------------------------*/
.medical-info {
  padding: 30px 0 125px;
}
@media (max-width: 767px) {
  .medical-info {
    padding: 30px 0 60px;
  }
}
.medical-info .medical-info__inner .container .medical-content {
  display: flex;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .medical-info .medical-info__inner .container .medical-content {
    display: block;
    margin-bottom: 60px;
  }
}
.medical-info .medical-info__inner .container .medical-content:last-child {
  margin-bottom: 0;
}
.medical-info .medical-info__inner .container .medical-content .pic img {
  width: 260px;
  height: auto;
  border-radius: 10px;
}
.medical-info .medical-info__inner .container .medical-content .boxIn {
  flex-grow: 1;
  margin-left: 60px;
}
@media (max-width: 767px) {
  .medical-info .medical-info__inner .container .medical-content .boxIn {
    margin-left: 0;
    margin-top: 30px;
  }
}
.medical-info .medical-info__inner .container .medical-content .boxIn .txt .tit {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  letter-spacing: 0.18px;
}
.medical-info .medical-info__inner .container .medical-content .boxIn .txt p {
  margin-top: 20px;
  font-size: 13px;
  line-height: 2.1538461538;
}
.medical-info .medical-info__inner .container .medical-content .boxIn .medical-content__footer {
  margin-top: 30px;
  display: flex;
}
@media (max-width: 767px) {
  .medical-info .medical-info__inner .container .medical-content .boxIn .medical-content__footer {
    text-align: right;
    flex-direction: column;
    margin-top: 40px;
  }
}
.medical-info .medical-info__inner .container .medical-content .boxIn .medical-content__footer .util-link:nth-child(2) {
  margin-left: 40px;
}
@media (max-width: 767px) {
  .medical-info .medical-info__inner .container .medical-content .boxIn .medical-content__footer .util-link:nth-child(2) {
    margin-left: 0;
    margin-top: 30px;
  }
}
.medical-info .medical-info__inner .container .facility-info__tit {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  letter-spacing: 0.24px;
  line-height: 1.6666666667;
  margin-bottom: 30px;
}

/* concept02
-----------------------------------------------------------------------------------------*/
.concept02 {
  background: #fff;
  padding: 100px 0 100px;
}
@media (max-width: 767px) {
  .concept02 {
    padding: 60px 0;
  }
}

/* s-method 
-----------------------------------------------------------------------------------------*/
/* method-point
-----------------------------------------------------------------------------------------*/
.method-point {
  padding: 90px 0 100px;
  background: #fff;
  padding: 60px 0;
}
.method-point .method-point__inner .lead {
  width: 800px;
  max-width: 100%;
  margin: 60px auto 0;
  font-size: 13px;
  line-height: 2.1538461538;
}
@media (max-width: 767px) {
  .method-point .method-point__inner .lead {
    margin-top: 30px;
  }
}
.method-point .method-point__inner .method__items {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .method-point .method-point__inner .method__items {
    display: block;
  }
}
.method-point .method-point__inner .method__items .method__item {
  width: calc(50% - 30px);
}
.method-point .method-point__inner .method__items .method__item:not(:nth-child(2n+1)) {
  margin-left: 60px;
}
@media (max-width: 767px) {
  .method-point .method-point__inner .method__items .method__item:not(:nth-child(2n+1)) {
    margin-left: 0;
  }
}
@media (min-width: 1300px) {
  .method-point .method-point__inner .method__items .method__item:nth-child(n+3) {
    margin-top: 60px;
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .method-point .method-point__inner .method__items .method__item:nth-child(n+3) {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .method-point .method-point__inner .method__items .method__item {
    width: 100%;
  }
  .method-point .method-point__inner .method__items .method__item:nth-child(n+2) {
    margin-top: 60px;
  }
}
.method-point .method-point__inner .method__items .method__item .img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.method-point .method-point__inner .method__items .method__item .tit {
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.method-point .method-point__inner .method__items .method__item .tit .point-wrap {
  display: flex;
  align-items: center;
}
.method-point .method-point__inner .method__items .method__item .tit .point-wrap .point {
  display: inline-block;
  font-family: "Nothing You Could Do", cursive;
  font-weight: 400;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.18px;
  color: #fff;
  background: #000;
  padding: 6px 20px;
  border-radius: 32px;
  line-height: 1;
}
.method-point .method-point__inner .method__items .method__item .tit .point-wrap .num {
  display: inline-block;
  font-family: "Nothing You Could Do", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.2592592593;
  margin-left: 10px;
}
.method-point .method-point__inner .method__items .method__item .tit .method__item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  letter-spacing: 0.18px;
  line-height: 1.5555555556;
  margin-left: 20px;
}
.method-point .method-point__inner .method__items .method__item p {
  font-size: 13px;
  line-height: 2.1538461538;
}
@media (max-width: 767px) {
  .method-point .method-point__inner .method__items .method__item p {
    margin-top: 10px;
  }
}

/* sec__smp-field
-----------------------------------------------------------------------------------------*/
.sec__smp-field {
  padding: 100px 0 0;
}
.sec__smp-field .smp__sub-tit {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  letter-spacing: 0.24px;
  line-height: 1.6666666667;
}
.sec__smp-field .smp-field__items {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) and (max-width: 1299px) {
  .sec__smp-field .smp-field__items {
    justify-content: center;
  }
}
.sec__smp-field .smp-field__items .smp-field__item {
  width: calc(33% - 53.3333333333px);
}
@media (max-width: 767px) {
  .sec__smp-field .smp-field__items .smp-field__item {
    width: 100%;
  }
  .sec__smp-field .smp-field__items .smp-field__item:nth-child(n+2) {
    margin-top: 60px;
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .sec__smp-field .smp-field__items .smp-field__item {
    width: 100%;
    max-width: 767px;
  }
  .sec__smp-field .smp-field__items .smp-field__item:nth-child(n+2) {
    margin-top: 60px;
  }
}
@media (min-width: 1300px) {
  .sec__smp-field .smp-field__items .smp-field__item:not(:nth-child(3n+1)) {
    margin-left: 80px;
  }
}
.sec__smp-field .smp-field__items .smp-field__item .item__header {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  text-align: center;
  border: 4px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .sec__smp-field .smp-field__items .smp-field__item .item__header {
    margin: 0 auto;
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .sec__smp-field .smp-field__items .smp-field__item .item__header {
    margin: 0 auto;
  }
}
.sec__smp-field .smp-field__items .smp-field__item .item__header::before {
  content: "";
  position: absolute;
  width: 73px;
  height: 73px;
  border-radius: 50%;
  background: #fff;
  top: 7px;
  left: 0;
}
.sec__smp-field .smp-field__items .smp-field__item .item__header::after {
  content: "";
  position: absolute;
  width: 59px;
  height: 59px;
  border-radius: 50%;
  background: #ef956e;
  top: 14px;
  left: 7px;
}
.sec__smp-field .smp-field__items .smp-field__item .item__header .num {
  position: absolute;
  top: 21px;
  left: 30px;
  color: #fff;
  font-family: "Nothing You Could Do", cursive;
  font-weight: 400;
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  z-index: 1;
}
.sec__smp-field .smp-field__items .smp-field__item .item__header .tit {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  letter-spacing: 0.24px;
  padding-top: 65px;
}
.sec__smp-field .smp-field__items .smp-field__item .item__header .tit::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: url(../img/icon_stethoscope.png) no-repeat center center/contain;
}
.sec__smp-field .smp-field__items .smp-field__item p {
  margin-top: 40px;
  font-size: 13px;
  line-height: 2.1538461538;
}
.sec__smp-field .smp-field__items .smp-field__item:nth-child(2) .item__header .tit::after {
  width: 56px;
  height: 56px;
  background: url(../img/icon_dialog.png) no-repeat center center/contain;
}
.sec__smp-field .smp-field__items .smp-field__item:nth-child(3) .item__header .tit::after {
  width: 60px;
  height: 60px;
  background: url(../img/icon_dog.png) no-repeat center center/contain;
}

/* smp-about
-----------------------------------------------------------------------------------------*/
.smp-about {
  padding: 100px 0;
  background: #fff;
  padding: 100px 0 60px;
}
.smp-about .smp-about__inner .items {
  margin-top: 73px;
  display: flex;
  flex-wrap: wrap;
}
.smp-about .smp-about__inner .items .item {
  width: calc(50% - 30px);
}
@media (max-width: 767px) {
  .smp-about .smp-about__inner .items .item {
    width: 100%;
  }
}
.smp-about .smp-about__inner .items .item:not(:nth-child(2n+1)) {
  margin-left: 60px;
}
@media (max-width: 767px) {
  .smp-about .smp-about__inner .items .item:not(:nth-child(2n+1)) {
    margin-left: 0;
  }
}
@media (min-width: 1300px) {
  .smp-about .smp-about__inner .items .item:nth-child(n+3) {
    margin-top: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .smp-about .smp-about__inner .items .item:nth-child(n+3) {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .smp-about .smp-about__inner .items .item:nth-child(n+2) {
    margin-top: 60px;
  }
}
.smp-about .smp-about__inner .items .item .icon {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 3px solid #ef956e;
  margin: 0 auto;
  position: relative;
}
.smp-about .smp-about__inner .items .item .icon > span {
  display: inline-block;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ef956e;
  font-weight: 700;
}
.smp-about .smp-about__inner .items .item .txt {
  margin-top: 30px;
}
.smp-about .smp-about__inner .items .item .txt .tit {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  letter-spacing: 0.18px;
  color: #ef956e;
  text-align: center;
}
.smp-about .smp-about__inner .items .item .txt p {
  margin-top: 33px;
  font-size: 13px;
  line-height: 2.1538461538;
}
.smp-about .smp-about__inner .items .item__footer {
  margin-top: 60px;
  font-size: 13px;
  line-height: 2.1538461538;
}
.smp-about .smp-about__inner .items .smp-about__footer {
  margin: 60px auto 0;
}
@media (max-width: 767px) {
  .smp-about .smp-about__inner .items .smp-about__footer {
    margin: 60px 0 0 auto;
  }
}

/* doctor
-----------------------------------------------------------------------------------------*/
.doctor {
  padding: 93px 0 100px;
}
@media (max-width: 767px) {
  .doctor {
    padding: 50px 0 60px;
  }
}
.doctor .doctor-inner {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}
.doctor .doctor-inner .handler-title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  letter-spacing: 0.24px;
}
.doctor .doctor-inner .handler-lead {
  margin-top: 60px;
  font-size: 13px;
  line-height: 2.1538461538;
}
@media (max-width: 767px) {
  .doctor .doctor-inner .handler-lead {
    margin-top: 30px;
  }
}
.doctor .doctor__container {
  margin-top: 60px;
  display: flex;
}
@media (max-width: 767px) {
  .doctor .doctor__container {
    display: block;
    margin-top: 30px;
  }
}
.doctor .doctor__container .pic__container .pic:nth-child(2) {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .doctor .doctor__container .pic__container .pic:nth-child(2) {
    margin-top: 20px;
  }
}
.doctor .doctor__container .pic__container .pic img {
  width: 400px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.doctor .doctor__container .boxIn {
  width: 540px;
  max-width: 100%;
  margin-left: 60px;
}
@media (max-width: 767px) {
  .doctor .doctor__container .boxIn {
    margin-left: 0;
  }
}
.doctor .doctor__container .boxIn .name .clinic {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.13px;
}
.doctor .doctor__container .boxIn .name .fullName {
  display: block;
  margin-top: 10px;
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .doctor .doctor__container .boxIn .name .fullName {
    margin-top: 60px;
  }
}
.doctor .doctor__container .boxIn .career {
  font-size: 13px;
  line-height: 2.1538461538;
}
.doctor .doctor__container .boxIn .career span {
  font-weight: 700;
  display: inline-block;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .doctor .doctor__container .boxIn .career span:first-child {
    margin-top: 10px;
  }
}
.doctor .doctor__footer {
  margin-top: 30px;
  background: #fff;
  border-radius: 10px;
}
.doctor .doctor__footer p {
  padding: 40px 60px 36px;
  font-size: 13px;
  line-height: 2.1538461538;
}
@media (max-width: 767px) {
  .doctor .doctor__footer p {
    padding: 40px 30px 30px;
  }
}

/* price
-----------------------------------------------------------------------------------------*/
.price {
  padding: 30px 0 160px;
}
@media (max-width: 767px) {
  .price {
    padding: 30px 0 50px;
  }
}
.price .price__inner .category-btn {
  display: flex;
  flex-wrap: wrap;
}
.price .price__inner .category-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 59px;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  border-radius: 10px;
  color: #ef956e;
  border: 2px solid #ef956e;
  width: calc(25% - 15px);
}
@media (min-width: 1300px) {
  .price .price__inner .category-btn a:not(:nth-child(1)) {
    margin-left: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .price .price__inner .category-btn a {
    width: calc(50% - 10px);
  }
  .price .price__inner .category-btn a:not(:nth-child(2n+1)) {
    margin-left: 20px;
  }
  .price .price__inner .category-btn a:nth-child(n+3) {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .price .price__inner .category-btn a {
    width: calc(50% - 10px);
  }
  .price .price__inner .category-btn a:not(:nth-child(2n+1)) {
    margin-left: 20px;
  }
  .price .price__inner .category-btn a:nth-child(n+3) {
    margin-top: 20px;
  }
}
.price .price__inner .category-wrapper .category {
  margin-top: 60px;
}
.price .price__inner .category-wrapper .category .category-tit {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  letter-spacing: 0.18px;
  line-height: 2.2222222222;
  margin-bottom: 20px;
}
.price .price__inner .category-wrapper .category ul {
  display: flex;
  padding: 30px 20px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d3cbc1;
}
.price .price__inner .category-wrapper .category ul:first-of-type, .price .price__inner .category-wrapper .category ul.is_border-top {
  border-top: 1px solid #d3cbc1;
}
.price .price__inner .category-wrapper .category ul li {
  font-family: "Nothing You Could Do", cursive;
  font-weight: 400;
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
}
.price .price__inner .category-wrapper .category ul li:nth-child(2) {
  text-align: right;
}
.price .price__inner .category-wrapper .category p {
  margin-top: 20px;
  margin-bottom: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  color: #c45050;
  line-height: 1.93;
}

/* news-all
-----------------------------------------------------------------------------------------*/
.news-all {
  margin-top: 30px;
}
.news-all .txt {
  display: flex;
  font-family: "Nothing You Could Do", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  padding: 30px 20px;
  border-top: 1px solid #d3cbc1;
}
.news-all .txt:last-child {
  border-bottom: 1px solid #d3cbc1;
}
.news-all .txt .time {
  display: inline-block;
}
.news-all .txt .news-tit {
  display: inline-block;
  margin-left: 15px;
}

/* news-detail
-----------------------------------------------------------------------------------------*/
.news-detail .news-detail__inner {
  margin-top: 30px;
}
.news-detail .news-detail__inner .news-tit {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  letter-spacing: 0.18px;
}
.news-detail .news-detail__inner .time {
  margin-top: 10px;
  font-family: "Nothing You Could Do", cursive;
  font-weight: 400;
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
}
.news-detail .news-detail__inner p {
  margin-top: 30px;
  font-size: 13px;
  line-height: 2.1538461538;
}
.news-detail .news-detail__inner .news-detail__footer {
  margin-top: 60px;
  text-align: center;
}
@media (max-width: 767px) {
  .news-detail .news-detail__inner .news-detail__footer {
    text-align: right;
    margin-top: 40px;
  }
}

/* sections-layout
-----------------------------------------------------------------------------------------*/
.sections-layout {
  padding: 100px 0 66px;
  background: #fff;
}
@media (max-width: 767px) {
  .sections-layout {
    padding: 60px 0 30px;
  }
}
.sections-layout .sections-layout__inner {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .sections-layout .sections-layout__inner {
    display: block;
  }
}
.sections-layout .left {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: calc(50% - 30px);
}
@media (max-width: 767px) {
  .sections-layout .left {
    width: 100%;
    gap: 30px;
  }
}
.sections-layout .medicalHours {
  width: calc(50% - 30px);
  margin-left: 60px;
}
@media (max-width: 767px) {
  .sections-layout .medicalHours {
    width: 100%;
    margin-left: 0;
  }
}
.sections-layout .section {
  background-color: #f7f6f4;
  padding: 80px 60px 60px;
  border-radius: 10px;
}
.sections-layout {
  /* news
    -----------------------------------------------------------------------------------------*/
  /* access
    -----------------------------------------------------------------------------------------*/
}
.sections-layout .access {
  padding: 80px 60px 74px;
}
@media (max-width: 767px) {
  .sections-layout .access {
    padding: 50px 20px 60px;
  }
}
.sections-layout .access .access-info {
  font-size: 13px;
  line-height: 2.1538461538;
}
.sections-layout .access .access-info span {
  font-family: "Nothing You Could Do", cursive;
  font-weight: 400;
  font-style: normal;
}
.sections-layout .access .access-map {
  margin-top: 40px;
  text-align: right;
}
.sections-layout .access .access-map .map-link {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  color: #ef956e;
  padding: 14px 65px 14px 0;
  position: relative;
}
.sections-layout .access .access-map .map-link::before, .sections-layout .access .access-map .map-link::after {
  content: "";
  position: absolute;
}
.sections-layout .access .access-map .map-link::before {
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 50px;
  height: 50px;
  background: #ef956e;
  border-radius: 50%;
}
.sections-layout .access .access-map .map-link::after {
  top: 20px;
  right: 19px;
  width: 8.7px;
  height: 8.7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.sections-layout .access .access-map .map-link .arrow {
  display: inline-block;
  position: absolute;
  top: 26px;
  right: 19px;
  transform: translateY(-50%) rotate(-45deg);
  width: 12px;
  height: 2px;
  background: #fff;
}
.sections-layout {
  /* medicalHours
    -----------------------------------------------------------------------------------------*/
}
.sections-layout .medicalHours {
  padding: 80px 60px 125px;
}
@media (max-width: 767px) {
  .sections-layout .medicalHours {
    padding: 50px 20px 60px;
    margin-top: 30px;
  }
}
.sections-layout .medicalHours .section-content {
  margin-top: 35px;
}
.sections-layout .medicalHours .section-content .biz-hour {
  display: block;
  border-collapse: collapse;
  overflow-x: scroll;
  /* overflow-x: scroll;で、
          スマホ画面幅に表が入りきらない場合は
          横スクロールしてくれます */
}
.sections-layout .medicalHours .section-content .biz-hour:nth-child(n+2) {
  margin-top: 55px;
}
.sections-layout .medicalHours .section-content .biz-hour th,
.sections-layout .medicalHours .section-content .biz-hour td {
  width: 55px;
  min-width: 55px;
  height: 55px;
  font-size: 13px;
  text-align: center;
  border-bottom: 1px solid #d3cbc1;
  border-right: 1px solid #d3cbc1;
  vertical-align: middle;
}
.sections-layout .medicalHours .section-content .biz-hour th:last-child,
.sections-layout .medicalHours .section-content .biz-hour td:last-child {
  border-right: none;
}
.sections-layout .medicalHours .section-content .biz-hour th {
  font-weight: normal;
}
.sections-layout .medicalHours .section-content .biz-hour th.bg_red {
  background: #ebd5cd;
  font-size: 12px;
  line-height: 1.25;
}
.sections-layout .medicalHours .section-content .biz-hour th.first {
  width: 109px;
  min-width: 109px;
  vertical-align: middle;
}
.sections-layout .medicalHours .section-content .biz-hour td {
  color: #b75643;
}
.sections-layout .medicalHours .section-content .biz-hour td.en {
  font-family: "Nothing You Could Do", cursive;
  font-weight: 400;
  font-style: normal;
  color: #000;
}
.sections-layout .medicalHours .section-content p {
  margin-top: 30px;
  font-size: 13px;
  line-height: 2.1538461538;
}
.sections-layout .medicalHours .section-content p span {
  font-family: "Nothing You Could Do", cursive;
  font-weight: 400;
  font-style: normal;
}

/* footer-top
-----------------------------------------------------------------------------------------*/
.footer-top {
  position: relative;
}
.footer-top .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/bg_footer-top.jpg) no-repeat center center/cover;
  background-image: image-set(url(../img/bg_footer-top.webp) type("image/webp"), url(../img/bg_footer-top.jpg) type("image/jpeg"));
  z-index: -1;
}
.footer-top .bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
}

.footer-top__inner {
  width: 1000px;
  margin: 0 auto;
  max-width: 100%;
  padding: 80px 0;
}
@media (min-width: 768px) and (max-width: 1299px) {
  .footer-top__inner {
    padding: 80px 24px;
  }
}
@media (max-width: 767px) {
  .footer-top__inner {
    padding: 60px 20px;
  }
}

.footer-top__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .footer-top__wrapper {
    flex-direction: column;
    gap: 40px;
  }
}

.footer-top__contact {
  flex: 1;
  min-width: 0;
}
.footer-top__contact .section-title {
  text-align: left;
  color: #fff;
}
.footer-top__contact .section-title span.ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.04em;
  margin-top: 15px;
  font-weight: 500;
}
.footer-top__contact .section-title span.en {
  color: #fff;
}

.footer-top__txt {
  color: #fff;
  margin-top: 40px;
  letter-spacing: 0.15em;
  line-height: 2;
}

.footer-top__btn {
  margin-top: 40px;
}

.map_wrapper {
  flex-shrink: 0;
  width: 50%;
  max-width: 600px;
}
@media (min-width: 768px) and (max-width: 1299px) {
  .map_wrapper {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .map_wrapper {
    width: 100%;
  }
}

.footer-top__map {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

/* footer
-----------------------------------------------------------------------------------------*/
footer {
  background: #6a5044;
}

.footer-inner {
  padding: 40px 0 0;
}
@media (max-width: 767px) {
  .footer-inner {
    padding: 40px 20px 0;
    height: auto;
  }
}
.footer-inner .footer__logo {
  font-size: 28px;
  color: #fff;
  font-weight: 400;
}
.footer-inner .footer__logo img {
  width: 55px;
  height: auto;
}
.footer-inner .footer__logo span.ja {
  padding-left: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-weight: 500;
}
.footer-inner .footer__logo span.en {
  font-family: "Nothing You Could Do", cursive;
  font-weight: 400;
  font-style: normal;
}
.footer-inner .footer__body {
  margin-top: 20px;
  padding-bottom: 40px;
  color: #fff;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer-inner .footer__body {
    flex-direction: column;
  }
}
.footer-inner .footer__body .footer__info {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}
.footer-inner .footer__body .footer__info a {
  color: #fff;
}
.footer-inner .footer__body .footer__info .footer__contact {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
@media (max-width: 767px) {
  .footer-inner .footer__body .footer__info .footer__contact {
    margin-bottom: 24px;
  }
}
.footer-inner .footer__body .footer__info .footer__contact__row {
  display: flex;
  align-items: baseline;
}
.footer-inner .footer__body .footer__info .footer__contact__row dt {
  flex: 0 0 8.5em;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
}
@media (max-width: 767px) {
  .footer-inner .footer__body .footer__info .footer__contact__row dt {
    flex-basis: 7.5em;
    font-size: 12px;
  }
}
.footer-inner .footer__body .footer__info .footer__contact__note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-left: 0.25em;
}
.footer-inner .footer__body .footer__nav .footer__nav__items {
  display: flex;
}
@media (max-width: 767px) {
  .footer-inner .footer__body .footer__nav .footer__nav__items {
    flex-direction: column;
  }
}
.footer-inner .footer__body .footer__nav .footer__nav__items .footer__nav__item .footer__nav__item__link {
  color: #fff;
  display: block;
  cursor: pointer;
}

.footer__nav__item__link {
  display: block;
  color: #fff;
  display: block;
  margin-right: 48px;
}
.footer__nav__item__link span {
  padding-left: 12px;
  position: relative;
}
.footer__nav__item__link span::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d1d1d1;
}

.copyright {
  text-align: center;
}
.copyright .footer__copy-light {
  color: #fff;
  font-size: 14px;
}

/*========================================================================================
# sub
========================================================================================*/
.sub {
  padding-top: 100px;
}
.sub .sub-visual {
  position: relative;
}
@media (min-width: 768px) and (max-width: 1299px) {
  .sub .sub-visual {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 767px) {
  .sub .sub-visual {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.sub .sub-visual__content {
  margin: 20px auto 0;
  width: 1300px;
  max-width: 100%;
  height: 330px;
  border-radius: 10px;
  background: url(../img/sub_visual01-pc.jpg) no-repeat center center/cover;
  background-image: image-set(url(../img/sub_visual01-pc.webp) type("image/webp"), url(../img/sub_visual01-pc.jpg) type("image/jpeg"));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .sub .sub-visual__content {
    background-image: url(../img/sub_visual01-sp.jpg);
    background-image: image-set(url(../img/sub_visual01-sp.webp) type("image/webp"), url(../img/sub_visual01-sp.jpg) type("image/jpeg"));
  }
}
.sub .sub-visual__title p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1;
  font-size: 36px;
  color: #ff844e;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 15px 36px 16px;
  border-radius: 5px;
}
.sub .sub-visual__title .sub-visual__title__en {
  display: block;
  text-align: center;
  margin-top: 14px;
  color: #fff;
  font-family: "Nothing You Could Do", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}
@media (max-width: 767px) {
  .sub .sub-visual__title .sub-visual__title__en {
    font-size: 16px;
    margin-top: 10px;
  }
}
.sub .contact {
  padding-top: 100px;
  padding-bottom: 100px;
}
.sub .contact-inner {
  width: 800px;
  margin: 0 auto;
  max-width: 100%;
}
.sub .contact__content input[type=text],
.sub .contact__content input[type=email],
.sub .contact__content textarea {
  width: 100%;
  border: none;
  font-size: 16px;
  padding: 0.2em 0.5em;
  border-radius: 2px;
  background: rgb(235, 235, 235);
}
.sub .contact__content input[type=text],
.sub .contact__content input[type=email] {
  height: 45px;
}
.sub .contact__content textarea {
  min-height: 122px;
  resize: vertical;
}
.sub .contact-info {
  padding-bottom: 100px;
}
.sub .tel__tit {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  letter-spacing: 0.04em;
}
.sub .tel-contact .tel__num {
  margin-top: 10px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 34px;
  color: #ff844e;
  padding-left: 28px;
  position: relative;
}
.sub .tel-contact .tel__num::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 29px;
  top: 48%;
  transform: translateY(-50%);
  left: 0;
  background: url(../img/deco_tel01.png) no-repeat center center/contain;
}
.sub .tel-contact .tel__num a {
  color: inherit;
  text-decoration: none;
}
.sub .tel-contact .tel__txt {
  margin-top: 10px;
}
.sub .mail-contact {
  margin-top: 100px;
}
.sub .mail-contact .tel__txt {
  margin-top: 15px;
}
.sub .contact__form {
  padding-top: 15px;
}
.sub .contact__text {
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.1em;
}
.sub .contact__item__inline {
  font-size: 16px;
  color: #e7728e;
}
.sub .contact__list {
  margin: 18px auto 0;
}
.sub .contact__item {
  padding: 40px 0;
  border: 2px solid #f6f6f6;
  border-width: 2px 0 0;
}
@media (min-width: 1300px) {
  .sub .contact__item {
    display: flex;
  }
}
.sub .contact__item + .sub .contact__item {
  margin-top: 40px;
}
.sub .contact__item__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  padding-left: 10px;
  position: relative;
}
@media (min-width: 1300px) {
  .sub .contact__item__title {
    flex: 0 1 100%;
  }
}
@media (max-width: 767px) {
  .sub .contact__item__title {
    display: inline-block;
    font-size: 14px;
    height: 32px;
    line-height: 32px;
    padding: 0 16px;
  }
}
.sub .contact__item__title__inline {
  font-size: 12px;
  color: #e7728e;
  vertical-align: super;
  line-height: 1;
}
@media (max-width: 767px) {
  .sub .contact__item__title__inline {
    font-size: 10px;
  }
}
@media (min-width: 1300px) {
  .sub .contact__item__input {
    flex: 0 0 500px;
    margin-left: 18px;
  }
}
@media (max-width: 767px) {
  .sub .contact__item__input {
    margin-top: 3px;
  }
}
.sub .contact__radio__wrap {
  display: inline-flex;
  border: 1px solid #fff;
  box-shadow: 5px 6px 15px rgba(96, 96, 96, 0.16);
}
.sub .contact__radio {
  position: relative;
  cursor: pointer;
}
.sub .contact__radio__input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.sub .contact__radio__input:checked + .contact__radio__part {
  background: #ff844e;
  color: #fff;
  border-radius: 1px;
}
.sub .contact__radio__input:focus-visible + .contact__radio__part {
  outline: -webkit-focus-ring-color auto 1px;
}
.sub .contact__radio__part {
  display: block;
  background: #fff;
  color: #ff844e;
  height: 38px;
  line-height: 38px;
  width: 80px;
  text-align: center;
  transition: background-color 0.4s, color 0.4s;
}
.sub .contact__footer {
  margin-top: 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .sub .contact__footer {
    margin-top: 14px;
  }
}
.sub .contact__privacy {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px;
  vertical-align: middle;
}
.sub .contact__privacy__input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.sub .contact__privacy__input:checked + .contact__privacy__part {
  width: 10px;
  border-top: 0;
  border-left: 0;
  background: transparent;
  transform: rotate(45deg);
  top: -5px;
  left: 5px;
}
.sub .contact__privacy__input:focus-visible + .contact__privacy__part {
  outline: -webkit-focus-ring-color auto 1px;
}
.sub .contact__privacy__input:checked:focus-visible + .contact__privacy__part {
  outline: none;
}
.sub .contact__privacy__part {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 1px solid #ff844e;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.2s;
}
.sub .contact__privacy__link {
  color: #ff844e;
  text-decoration: underline #ff844e;
}
.sub .contact__footer__submit {
  margin-top: 46px;
}
@media (max-width: 767px) {
  .sub .contact__footer__submit {
    margin-top: 24px;
  }
}
.sub .contact__footer__submit .util-link {
  padding: 15px 100px;
  cursor: pointer;
}
.sub .contact-message {
  text-align: center;
  margin-top: 60px;
  display: none;
}
.sub .contact-message.-error {
  color: #f00;
}
.sub {
  /* sub works
    -----------------------------------------------------------------------------------------*/
}
.sub .news {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .sub .news {
    padding: 60px 0;
  }
}
.sub .news .news-list {
  margin-top: 45px;
  border-top: 1px solid #e6e2dc;
}
@media (max-width: 767px) {
  .sub .news .news-list {
    margin-top: 30px;
  }
}
.sub .news .news-list__item {
  border-bottom: 1px solid #e6e2dc;
}
.sub .news .news-list__link {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 22px 16px;
  color: #333;
  transition: background-color 0.3s ease;
}
.sub .news .news-list__link:hover {
  opacity: 1;
  background-color: #f7f6f4;
}
.sub .news .news-list__link:hover .news-list__title {
  color: #ff844e;
}
@media (max-width: 767px) {
  .sub .news .news-list__link {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px 12px;
  }
}
.sub .news .news-list__date {
  flex-shrink: 0;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #888;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media (max-width: 767px) {
  .sub .news .news-list__date {
    font-size: 12px;
  }
}
.sub .news .news-list__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #333;
  transition: color 0.3s ease;
}
@media (max-width: 767px) {
  .sub .news .news-list__title {
    font-size: 15px;
  }
}
.sub .news .news__footer {
  margin-top: 60px;
  text-align: center;
}
@media (max-width: 767px) {
  .sub .news .news__footer {
    margin-top: 40px;
  }
}
.sub {
  /* news-single（お知らせ記事詳細 / news-single.html）
    -----------------------------------------------------------------------------------------*/
}
.sub .news-single {
  padding: 80px 0 100px;
}
@media (max-width: 767px) {
  .sub .news-single {
    padding: 60px 0 80px;
  }
}
.sub .news-single__header {
  padding-bottom: 24px;
  margin-bottom: 40px;
  border-bottom: 1px solid #e6e2dc;
}
@media (max-width: 767px) {
  .sub .news-single__header {
    padding-bottom: 18px;
    margin-bottom: 30px;
  }
}
.sub .news-single__date {
  display: block;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #888;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .sub .news-single__date {
    font-size: 12px;
    margin-bottom: 8px;
  }
}
.sub .news-single__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 28px;
  color: #333;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .sub .news-single__title {
    font-size: 20px;
  }
}
.sub .news-single__body {
  font-size: 16px;
  line-height: 1.9;
  color: #333;
}
@media (max-width: 767px) {
  .sub .news-single__body {
    font-size: 16px;
  }
}
.sub .news-single__body p + p {
  margin-top: 20px;
}
.sub .news-single__footer {
  margin-top: 60px;
  text-align: center;
}
@media (max-width: 767px) {
  .sub .news-single__footer {
    margin-top: 40px;
  }
}
.sub {
  /* flow
    -----------------------------------------------------------------------------------------*/
}
.sub .flow {
  padding: 80px 0 100px;
}
@media (max-width: 767px) {
  .sub .flow {
    padding: 50px 0;
  }
}
.sub .flow-inner {
  width: 1000px;
  margin: 0 auto;
  max-width: 100%;
}
.sub .flow-inner dl {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .sub .flow-inner dl {
    margin-top: 70px;
  }
}
.sub .flow-inner dl dt {
  display: none;
}
.sub .flow-inner dl .flow_item {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .sub .flow-inner dl .flow_item {
    flex-direction: column;
  }
}
.sub .flow-inner dl .flow_image {
  margin-left: 30px;
  width: 300px;
  aspect-ratio: 3/2;
  flex-shrink: 0;
  align-self: flex-start;
  min-height: 0;
}
@media (max-width: 767px) {
  .sub .flow-inner dl .flow_image {
    margin-left: 0;
    width: 100%;
  }
}
.sub .flow-inner dl .flow_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.sub .flow-inner dl dd {
  width: 100%;
  padding-bottom: 80px;
  padding-left: 90px;
  border-left: 3px solid #ff844e;
  position: relative;
  margin-left: 13px;
}
@media (max-width: 767px) {
  .sub .flow-inner dl dd {
    margin: 0 0 60px;
    padding: 0 0 0 50px;
    border: none;
  }
  .sub .flow-inner dl dd:last-child {
    margin-bottom: 0;
  }
}
.sub .flow-inner dl dd h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  letter-spacing: 0.08em;
  position: relative;
}
.sub .flow-inner dl dd h3::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ff844e;
  top: -20px;
  left: -132px;
}
@media (max-width: 767px) {
  .sub .flow-inner dl dd h3::before {
    width: 50px;
    height: 50px;
    top: 0;
    left: -65px;
  }
}
.sub .flow-inner dl dd h3::after {
  content: "01";
  position: absolute;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  top: -6px;
  left: -111px;
}
@media (max-width: 767px) {
  .sub .flow-inner dl dd h3::after {
    top: 1px;
    left: -55px;
    font-size: 28px;
    letter-spacing: 0;
  }
}
.sub .flow-inner dl dd p {
  font-size: 16px;
  line-height: 2.1538461538;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .sub .flow-inner dl dd p {
    margin: 20px 0;
  }
}
.sub .flow-inner dl dd:nth-of-type(2) h3::after {
  content: "02";
}
.sub .flow-inner dl dd:nth-of-type(3) h3::after {
  content: "03";
}
.sub .flow-inner dl dd:nth-of-type(4) h3::after {
  content: "04";
}
.sub .flow-inner dl dd:nth-of-type(5) h3::after {
  content: "05";
}
.sub .flow-inner dl dd:nth-of-type(6) h3::after {
  content: "06";
}
.sub .flow-inner dl dd:last-of-type {
  padding-bottom: 0;
  border-left-color: transparent;
}
.sub .flow-inner .flow__footer {
  text-align: center;
  margin-top: 80px;
}
.sub .faq {
  padding: 85px 0 180px;
}
.sub .faq .faq_content {
  padding: 0 30px;
}
.sub .faq .faq_content dt {
  position: relative;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 2px;
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
}
.sub .faq .faq_content dt::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.4em;
  vertical-align: -0.12em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='none' stroke='%23016ea9' stroke-width='2'/%3E%3Cpath d='M9.2 9.3a2.9 2.9 0 0 1 5.6.9c0 1.9-2.8 2.3-2.8 4.1' fill='none' stroke='%23016ea9' stroke-width='2' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='17.6' r='1.3' fill='%23016ea9'/%3E%3C/svg%3E") no-repeat center/contain;
}
.sub .faq .faq_content dt::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 26px;
  right: 20px;
  width: 15px;
  height: 15px;
  border-top: 5px solid #e5e5e5;
  border-right: 5px solid #e5e5e5;
  transform: rotate(135deg);
}
.sub .faq .faq_content dd {
  padding-left: 20px;
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: bold;
}

/* message（代表メッセージ / company.html）
-----------------------------------------------------------------------------------------*/
.message {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .message {
    padding: 60px 0;
  }
}
.message__content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-top: 60px;
}
@media (min-width: 768px) and (max-width: 1299px) {
  .message__content {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .message__content {
    flex-direction: column-reverse;
    gap: 32px;
    margin-top: 40px;
  }
}
.message__body {
  flex: 1;
  min-width: 0;
}
.message__text {
  font-size: 16px;
  line-height: 2.2;
  color: #333;
}
@media (max-width: 767px) {
  .message__text {
    font-size: 16px;
  }
}
.message__sign {
  margin-top: 40px;
  font-size: 16px;
  line-height: 2;
  color: #333;
}
@media (max-width: 767px) {
  .message__sign {
    font-size: 16px;
  }
}
.message__image {
  flex-shrink: 0;
  width: 335px;
}
.message__image img {
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 768px) and (max-width: 1299px) {
  .message__image {
    width: 260px;
  }
}
@media (max-width: 767px) {
  .message__image {
    width: 88%;
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 3/2;
    overflow: hidden;
    border-radius: 8px;
  }
  .message__image img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    transform: scale(1.4);
    transform-origin: 46% 49%;
  }
}

/* company-profile（会社概要テーブル / company.html）
-----------------------------------------------------------------------------------------*/
.company-profile {
  padding: 80px 0;
  background: #f7f6f4;
}
@media (max-width: 767px) {
  .company-profile {
    padding: 60px 0;
  }
}
.company-profile .section-title {
  margin-bottom: 0;
}
.company-profile__table {
  margin-top: 60px;
  border-top: 1px solid #ddd;
}
@media (max-width: 767px) {
  .company-profile__table {
    margin-top: 40px;
  }
}
.company-profile__row {
  display: flex;
  border-bottom: 1px solid #ddd;
}
@media (max-width: 767px) {
  .company-profile__row {
    flex-direction: column;
  }
}
.company-profile__row dt {
  background: #f0efed;
  width: 200px;
  flex-shrink: 0;
  padding: 24px 20px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  color: #333;
}
@media (min-width: 768px) and (max-width: 1299px) {
  .company-profile__row dt {
    width: 160px;
    padding: 20px 16px;
  }
}
@media (max-width: 767px) {
  .company-profile__row dt {
    width: 100%;
    padding: 12px 16px;
  }
}
.company-profile__row dd {
  background: #fff;
  flex: 1;
  padding: 24px 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
@media (min-width: 768px) and (max-width: 1299px) {
  .company-profile__row dd {
    padding: 20px 16px;
  }
}
@media (max-width: 767px) {
  .company-profile__row dd {
    padding: 12px 16px;
  }
}
.company-profile__row dd a {
  color: inherit;
  text-decoration: none;
}

/* privacy（プライバシーポリシー / privacy.html）
-----------------------------------------------------------------------------------------*/
.privacy {
  padding: 80px 0 100px;
}
@media (max-width: 767px) {
  .privacy {
    padding: 60px 0 80px;
  }
}

.privacy__intro {
  font-size: 16px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .privacy__intro {
    font-size: 16px;
    margin-bottom: 40px;
  }
}

.privacy__block {
  margin-bottom: 56px;
}
.privacy__block:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .privacy__block {
    margin-bottom: 40px;
  }
}
.privacy__block p {
  font-size: 16px;
  line-height: 1.9;
  color: #333;
}
@media (max-width: 767px) {
  .privacy__block p {
    font-size: 16px;
  }
}
.privacy__block p + p {
  margin-top: 16px;
}
.privacy__block a {
  color: #ff844e;
  text-decoration: underline;
}
.privacy__block a:hover {
  opacity: 0.7;
}

.privacy__block__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  color: #333;
  line-height: 1.4;
  border-left: 4px solid #ff844e;
  padding-left: 16px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .privacy__block__title {
    font-size: 18px;
    padding-left: 12px;
    margin-bottom: 16px;
  }
}

.privacy__list {
  margin-top: 18px;
  padding-left: 1.5em;
  list-style: disc;
}
.privacy__list li {
  font-size: 16px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 6px;
}
@media (max-width: 767px) {
  .privacy__list li {
    font-size: 16px;
  }
}
.privacy__list li:last-child {
  margin-bottom: 0;
}

.privacy__contact-box {
  margin-top: 24px;
  padding: 24px 28px;
  background: #f7f6f4;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .privacy__contact-box {
    padding: 18px 20px;
  }
}
.privacy__contact-box p {
  line-height: 1.9;
  margin: 0;
}

/* 現在ページのナビ強調表示（PC ヘッダー / SP ドロワー共通） */
.header__nav__item__link.is-current {
  color: #ff844e;
  position: relative;
}
.header__nav__item__link.is-current::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: #ff844e;
  border-radius: 1px;
}

.sp-drawer__menu-link.is-current {
  color: #ff844e;
  font-weight: 700;
}

/* coming-soon（施工実績 準備中の一時表示。実績が用意でき次第、呼び出し元の HTML を差し替える） */
.coming-soon {
  text-align: center;
  padding: 80px 20px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .coming-soon {
    padding: 50px 16px;
    margin-top: 20px;
  }
}
.coming-soon__image {
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .coming-soon__image {
    margin-bottom: 24px;
  }
}
.coming-soon__image img {
  width: 220px;
  max-width: 100%;
  height: auto;
  display: inline-block;
}
@media (max-width: 767px) {
  .coming-soon__image img {
    width: 170px;
  }
}
.coming-soon__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #333;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}
@media (max-width: 767px) {
  .coming-soon__title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.coming-soon__text {
  font-size: 16px;
  line-height: 2;
  color: #666;
}
@media (max-width: 767px) {
  .coming-soon__text {
    font-size: 16px;
  }
}

/* LINE準備中のため一時非表示（LINE公開時にこのブロックを削除で復活） */
.line-btn,
.sp-drawer__line-btn {
  display: none !important;
}

/* modal（プライバシーポリシー等のポップアップ）
-----------------------------------------------------------------------------------------*/
body.is-modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
@media (max-width: 767px) {
  .modal {
    padding: 20px 16px;
  }
}
.modal[hidden] {
  display: none;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.modal.is-open .modal__overlay {
  opacity: 1;
}
.modal.is-open .modal__panel {
  opacity: 1;
  transform: translateY(0);
}
.modal__header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 32px;
  border-bottom: 1px solid #eee;
}
@media (max-width: 767px) {
  .modal__header {
    padding: 16px 20px;
  }
}
.modal__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 1.4;
  color: #333;
}
@media (max-width: 767px) {
  .modal__title {
    font-size: 18px;
  }
}
.modal__close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  color: #888;
  border-radius: 50%;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.modal__close:hover {
  background: #f7f6f4;
  color: #333;
}
.modal__body {
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 28px 32px 32px;
}
@media (max-width: 767px) {
  .modal__body {
    padding: 20px;
  }
}
.modal__body .privacy__intro {
  font-size: 16px;
  margin-bottom: 28px;
}
.modal__body .privacy__block {
  margin-bottom: 28px;
}
.modal__body .privacy__block__title {
  font-size: 17px;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .modal__body .privacy__block__title {
    font-size: 16px;
  }
}
.modal__body p {
  font-size: 16px;
  line-height: 1.9;
}

/* access（地図セクション / contact.html）
-----------------------------------------------------------------------------------------*/
.access {
  padding: 80px 0;
  background: #f7f6f4;
}
@media (max-width: 767px) {
  .access {
    padding: 60px 0;
  }
}
.access .section-title {
  margin-bottom: 0;
}
.access__content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-top: 60px;
}
@media (min-width: 768px) and (max-width: 1299px) {
  .access__content {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .access__content {
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
  }
}
.access__info {
  flex-shrink: 0;
  width: 300px;
}
@media (min-width: 768px) and (max-width: 1299px) {
  .access__info {
    width: 260px;
  }
}
@media (max-width: 767px) {
  .access__info {
    width: 100%;
  }
}
.access__company {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #333;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .access__company {
    font-size: 16px;
  }
}
.access__address {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.9;
  color: #333;
}
@media (max-width: 767px) {
  .access__address {
    font-size: 16px;
  }
}
.access__detail {
  margin-top: 24px;
  border-top: 1px solid #ddd;
}
.access__detail__row {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  line-height: 1.7;
}
.access__detail__row dt {
  flex-shrink: 0;
  width: 5.5em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #333;
}
.access__detail__row dd {
  color: #333;
}
.access__detail__row dd a {
  color: #ff844e;
}
.access__map {
  flex: 1 1 auto;
  min-width: 0;
}
@media (max-width: 767px) {
  .access__map {
    width: 100%;
  }
}
.access__map iframe {
  display: block;
  width: 100%;
  height: 400px;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .access__map iframe {
    height: 280px;
  }
}
