@charset "UTF-8";
/*==========================================
コンポーネントファイル
===========================================*/
/*
# パンくずリスト
------------------------*/
div .bread {
  font-size: var(--font-size-14);
  position: relative;
  z-index: 100;
}
div .bread .breadcrumbs {
  position: absolute;
  width: 1080px;
  margin: 0 auto;
  inset: 10px auto auto 0;
  gap: 10px 20px;
}
div .bread li {
  color: var(--primary-color);
  position: relative;
}
div .bread li::after {
  content: " > ";
  color: var(--body-font-color);
  position: absolute;
  inset: 0 -15px 0 auto;
  margin: auto 0;
}
div .bread li:last-child::after {
  content: "";
}
div .bread li a {
  color: var(--body-font-color);
}
div .bread li a:hover {
  text-decoration: underline;
}

/*
# 一覧ぺージ用カテゴリ(セレクトボックス)
------------------------*/
.global-select {
  width: 300px;
  margin: 0 0 45px auto;
}
.global-select select {
  padding: 15px 37px 15px 15px;
}

/*
# c-tel
------------------------*/
.c-tel {
  line-height: 1;
}
.c-tel .tel__num {
  font-size: var(--font-size-24);
  padding-left: 23px;
  letter-spacing: 0.05em;
  background: url(../img/common/tel_ic.svg) left center/20px no-repeat;
}

/*
# c-contact__section
------------------------*/
.c-contact__section {
  padding: 100px 0 105px;
  background: url(../img/common/contact_bg.jpg) center/cover no-repeat;
}
.c-contact__section .contact__inbox {
  width: 750px;
}
.c-contact__section .contact__list {
  margin: 0 auto 60px;
  gap: 40px 50px;
}
.c-contact__section .contact__item {
  width: 350px;
}
.c-contact__section .contact__item--online {
  width: 100%;
}
.c-contact__section .contact__item--online .contact__link {
  height: 120px;
  font-size: var(--font-size-22);
}
.c-contact__section .contact__item--line .contact__link {
  padding: 0 15px 0 85px;
  background-image: url(../img/common/sns/LINE_logo.svg);
  background-size: 30px;
  background-position: left 25px center;
}
.c-contact__section .contact__item--mail .contact__link {
  padding: 0 15px 0 85px;
}
.c-contact__section .contact__link {
  height: 100px;
  font-size: var(--font-size-17);
  line-height: 1.6470588235;
  background-repeat: no-repeat;
}
.c-contact__section .contact__link .link-arrow {
  position: absolute;
  inset: auto 3% 14% auto;
}
.c-contact__section .contact__link:hover {
  opacity: 1;
  background-color: var(--primary-color-light);
  color: var(--color-white);
}
.c-contact__section .contact__link:hover .link-arrow::before {
  background: var(--primary-color);
}
.c-contact__section .contact__link:hover .link-arrow::after {
  left: 27px;
  filter: brightness(8);
}
.c-contact__section .contact__address {
  gap: 10px 75px;
}
.c-contact__section .contact__address .c-tel {
  filter: brightness(8);
}
.c-contact__section .contact__address .address__text {
  position: relative;
  font-size: var(--font-size-14);
}
.c-contact__section .contact__address .address__text::before {
  position: absolute;
  content: "";
  border-left: 2px dotted var(--color-white);
  height: 100%;
  width: 2px;
  inset: 0 auto 0 -35px;
  margin: auto 0;
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-table tr {
  display: flex;
}
.com-table tr th {
  padding: 15px 30px;
  width: 300px;
  vertical-align: top;
  font-weight: var(--font-weight-bold);
  border-bottom: 1px solid var(--color-white);
}
.com-table tr td {
  background: var(--color-white);
  width: calc(100% - 300px);
  padding: 15px 30px;
  font-weight: var(--font-weight-medium);
  border-bottom: 1px solid var(--primary-color);
}
.com-table tr td a[href^="mailto:"] {
  text-decoration: underline;
}
.com-table tr td .tel__text {
  display: block;
  line-height: 1.3;
}
.com-table tr:last-child th,
.com-table tr:last-child td {
  border-bottom: none;
}

/*==========================================
共通ブロック・要素
===========================================*/
.com-content p {
  margin-bottom: 50px;
}

.com-text.align-center {
  text-align: center;
}

#g-map .map {
  height: 400px;
}

/*
# com-button
------------------------*/
.com-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  text-align: center;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-family: var(--font-tertiary);
  letter-spacing: 0.1em;
  border-radius: 8vw;
  position: relative;
  font-family: var(--font-tertiary);
  font-weight: var(--font-weight-medium);
}
.com-button .link-arrow {
  position: absolute;
  inset: 0 5% 0 auto;
  margin: auto 0;
}
.com-button:has(.link-arrow) {
  width: 326px;
}
.com-button:hover {
  opacity: 1;
  background: var(--primary-color);
  color: var(--color-white);
}
.com-button:hover .link-arrow::before {
  background: rgba(var(--primary-color-light-rgb), 1);
}
.com-button:hover .link-arrow::after {
  left: 27px;
  filter: brightness(8);
}

/*
# mail-ic
------------------------*/
.mail-ic {
  position: relative;
}
.mail-ic::before {
  position: absolute;
  content: "";
  width: 29px;
  height: 21px;
  background: url(../img/common/mail_ic.svg) center/100% no-repeat;
  inset: 0 auto 0 8%;
  margin: auto 0;
  z-index: 1;
}

/*
# link-arrow
------------------------*/
.link-arrow {
  position: relative;
  width: 65px;
  height: 50px;
}
.link-arrow::before, .link-arrow::after {
  position: absolute;
  content: "";
  transition: all 0.3s ease;
}
.link-arrow::before {
  width: 50px;
  height: 100%;
  border-radius: 50%;
  background: rgba(var(--primary-color-light-rgb), 0.2);
  inset: 0 0 0 auto;
  margin: auto 0;
}
.link-arrow::after {
  width: 26px;
  height: 6px;
  background: url(../img/common/com-btn_arr.svg) center/100% no-repeat;
  inset: 0 auto 0 0;
  margin: auto 0;
}

/*
# leaf-deco
------------------------*/
.leaf-deco {
  position: relative;
}
.leaf-deco::before {
  position: absolute;
  content: "";
  width: 132px;
  height: 192px;
  background: url(../img/common/img-leaf_ill.png) center/100% no-repeat;
  inset: auto 20px -130px auto;
}

/*==========================================
共通タイトル
===========================================*/
.section-title {
  padding-bottom: 40px;
  background: url(../img/common/section-ttl_deco.png) bottom center no-repeat;
  margin-bottom: 75px;
  text-align: center;
}
.section-title.align-left {
  text-align: left;
  background-position: 0 100%;
}
.section-title.color-white {
  color: var(--color-white);
  background-image: url(../img/common/section-ttl-white_deco.png);
  text-shadow: 1px 1px 3px var(--body-font-color);
}
.section-title.color-white .title-en {
  color: var(--color-white);
}
.section-title .title-en {
  font-family: var(--font-tertiary);
  color: var(--primary-color);
  font-weight: var(--font-weight-medium);
  display: block;
  margin-bottom: 25px;
  letter-spacing: 0.1em;
  font-size: var(--font-size-20);
}
.section-title .title-ja {
  font-family: var(--font-secondary);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.16em;
  font-size: var(--font-size-36);
  line-height: 1.9444444444;
}

.headline-title {
  font-size: var(--font-size-24);
  font-family: var(--font-secondary);
  font-weight: var(--font-weight-medium);
  border-left: 6px solid var(--primary-color);
  margin-bottom: 15px;
  padding-left: 15px;
  line-height: 1.5;
}

.sub-title {
  font-size: var(--font-size-24);
  font-family: var(--font-secondary);
  font-weight: var(--font-weight-medium);
  padding: 30px 0;
}
.sub-title span {
  position: relative;
  z-index: 1;
}
.sub-title span::before, .sub-title span::after {
  position: absolute;
  content: "";
  z-index: -1;
}
.sub-title span::before {
  width: 114px;
  height: 114px;
  background: url(../img/common/subtitle-after_deco.png) center/100% no-repeat;
  inset: 0 auto 0 -65px;
  margin: auto 0;
}
.sub-title span::after {
  width: 55px;
  height: 73px;
  background: url(../img/common/subtitle_ill.png) center/100% no-repeat;
  inset: 0 -70px 0 auto;
  margin: auto 0;
}

/*==========================================
header
===========================================*/
#header {
  padding-left: 3.6458%;
  position: relative;
  z-index: 2;
}
#header .header__right {
  width: 800px;
  padding: 30px 5.46875% 30px 55px;
  border-radius: 0 0 0 20px;
  position: relative;
}
#header .header__right::before {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  background: url(../img/common/header_arr.svg) center/100% no-repeat;
  inset: auto auto 30px -25px;
}
#header .header__contact-list {
  gap: 15px 25px;
}
#header .header__mail-button {
  width: 200px;
  min-height: 50px;
  font-size: var(--font-size-16);
  background-size: 18px;
  padding-left: 15px;
}
#header .header__mail-button::before {
  width: 18px;
  height: 14px;
  left: 11%;
}
#header .header__mail-button:hover {
  opacity: 1;
  color: var(--color-white);
  background-color: var(--primary-color);
}
#header .header__mail-button:hover::before {
  filter: brightness(10);
}
#header .header__line-icon {
  width: 50px;
  height: 50px;
}
#header .header__nav {
  margin-top: 20px;
}
#header .header__nav-list {
  gap: 10px 15px;
}
#header .header__nav-link {
  letter-spacing: 0.1em;
  /*==========================================
  hover時に中央から外側に向けてのボーダー
  ===========================================*/
  padding-bottom: 3px;
  display: block;
  position: relative;
}
#header .header__nav-link::before, #header .header__nav-link::after {
  content: "";
  width: 0;
  bottom: 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--primary-color);
  position: absolute;
  display: block;
}
#header .header__nav-link::before {
  left: 50%;
}
#header .header__nav-link:after {
  right: 50%;
}
#header .header__nav-link:hover {
  color: var(--primary-color);
}
#header .header__nav-link:hover::before, #header .header__nav-link:hover::after {
  width: 50%;
  border-bottom: 1px solid var(--primary-color);
}
#header .header__nav-link.current {
  border-bottom: 1px solid var(--primary-color);
  color: var(--primary-color);
}
#header .header__nav-link.current::before, #header .header__nav-link.current::after {
  border-bottom: none;
}
#header .header__nav-link.current:hover::before, #header .header__nav-link.current:hover::after {
  border-bottom: none;
}

/*==========================================
mv
===========================================*/
.mv__frame {
  position: relative;
  z-index: 1;
  margin-top: -55px;
}
.mv__frame::before {
  position: absolute;
  content: "";
  width: 89.58333%;
  height: 100%;
  inset: 0;
  margin: auto;
  z-index: -1;
  border-radius: 50px;
}

#top-mv {
  height: clamp(493px, 39.218vw, 753px);
}
#top-mv::before {
  background: url(../img/top/mv/mv_pc.png) center top/100% no-repeat;
}
#top-mv .mv__catch {
  width: 39.7916%;
  margin: 0 auto;
}

/*==========================================
footer
===========================================*/
.fixed__button {
  width: 156px;
  height: 156px;
  font-size: var(--font-size-15);
  border-radius: 50%;
  text-align: center;
  z-index: 1001;
  inset: auto 3.2812% 100px auto;
  background: rgba(var(--primary-color-rgb), 0.85);
  outline: 12px solid rgba(var(--primary-color-rgb), 0.5);
  padding: 50px 0;
}
.fixed__button:hover {
  transform: scale(0.97);
  animation: light 0.8s infinite;
}
.fixed__button::first-line {
  font-size: var(--font-size-17);
}

@keyframes light {
  100% {
    outline-color: transparent;
    outline-offset: 12px;
    animation-iteration-count: 1;
  }
}
#footer {
  background: url(../img/common/footer-btm_wave.svg) bottom center/100% no-repeat, url(../img/common/footer_bg.jpg) center/cover no-repeat;
  padding: 105px 0 110px;
}
#footer::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 53px;
  background: url(../img/common/footer-top_wave.svg) bottom center/100% no-repeat;
  inset: -52px 0 auto;
  margin: 0 auto;
}
#footer .footer__right {
  width: 445px;
}
#footer .footer__nav-item {
  margin-bottom: 25px;
}
#footer .footer__nav-item:last-child {
  margin-bottom: 0;
}
#footer .footer__nav-link {
  font-size: var(--font-size-16);
  letter-spacing: 0.05em;
  padding-left: 20px;
}
#footer .footer__nav-link::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 1px;
  background: var(--body-font-color);
  inset: 0 auto 0 0;
  margin: auto 0;
  z-index: 1;
}
#footer .footer__nav-link:hover {
  opacity: 1;
  color: var(--primary-color);
  text-decoration: underline;
  transform: translateX(10px);
}
#footer .footer__nav-link:hover::before {
  background: var(--primary-color);
}

#copyright {
  word-break: normal;
  text-align: center;
  position: absolute;
  inset: auto auto 0 0;
  letter-spacing: 0.1em;
}
#copyright small {
  font-size: var(--font-size-12);
}

/*==========================================
下層共通スタイル
===========================================*/
/*==========================================
sv
===========================================*/
.lower-sv {
  height: 500px;
}
.lower-sv .sv__title {
  inset: auto auto 10% 7.552%;
  font-size: var(--font-size-40);
  padding: 5px 20px;
}

#about-sv::before {
  background: url(../../img/sv/about-sv_bg.jpg) center/cover no-repeat;
}

#menu-sv::before {
  background: url(../../img/sv/menu-sv_bg.jpg) center/cover no-repeat;
}

#faq-sv::before {
  background: url(../../img/sv/faq-sv_bg.jpg) center/cover no-repeat;
}

#info-sv::before {
  background: url(../../img/sv/info-sv_bg.jpg) center/cover no-repeat;
}

#news-sv::before {
  background: url(../../img/sv/news-sv_bg.jpg) center/cover no-repeat;
}

#contact-sv::before {
  background: url(../../img/sv/contact-sv_bg.jpg) center/cover no-repeat;
}

#complete-sv::before {
  background: url(../../img/sv/complete-sv_bg.jpg) center/cover no-repeat;
}

#privacy-sv::before {
  background: url(../../img/sv/privacy-sv_bg.jpg) center/cover no-repeat;
}

#site-sv::before {
  background: url(../../img/sv/site-sv_bg.jpg) center/cover no-repeat;
}

#e404-sv::before {
  background: url(../../img/sv/e404-sv_bg.jpg) center/cover no-repeat;
}

/*==========================================
top
===========================================*/
.com-head__section {
  position: relative;
}
.com-head__section .section-title {
  margin-bottom: 45px;
}
.com-head__section .com-content {
  width: 625px;
  margin-left: auto;
}
.com-head__section .head-img {
  width: 35.8854%;
  position: absolute;
}

/*
# top-about
------------------------*/
.top-about {
  padding: 190px 0 150px;
}
.top-about .about__button {
  margin-top: 45px;
}
.top-about .about__img {
  inset: 150px auto auto 5.2083%;
}

/*
# top-menu
------------------------*/
.top-menu {
  background: url(../img/top/menu-top_bg.jpg) top center/100% no-repeat, var(--primary-color-extralight);
}
.top-menu .menu__inbox {
  padding: 100px 0 150px;
}
.top-menu .menu__top-img {
  inset: -125px -100px auto auto;
}
.top-menu .menu__inner {
  padding: 70px 70px 80px;
  position: relative;
}
.top-menu .menu__img {
  position: absolute;
  inset: 70px auto auto 70px;
}
.top-menu .menu__content {
  width: 500px;
  margin-left: auto;
  min-height: 300px;
}
.top-menu .menu__button {
  margin: 70px auto 0;
}

/*
# top-faq
------------------------*/
.top-watercolor_bg {
  background: url(../img/top/top-watercolor_bg.png) center/100% no-repeat;
}

.top-faq {
  padding: 120px 0 0;
}
.top-faq .faq__list {
  gap: 45px 75px;
}
.top-faq .faq__item {
  width: 310px;
  padding: 30px 25px 40px;
}
.top-faq .faq__item::before {
  position: absolute;
  content: "";
  width: 43px;
  height: 29px;
  inset: auto auto -29px 45px;
  background: url(../img/top/faq-item_arr.svg) center/100% no-repeat;
}
.top-faq .faq__item:nth-child(even) {
  margin-top: 80px;
}
.top-faq .faq__item-title, .top-faq .faq__item-content {
  padding-left: 30px;
}
.top-faq .faq__item-title::before, .top-faq .faq__item-content::before {
  position: absolute;
  color: var(--accent-color);
  font-size: var(--font-size-24);
  font-weight: var(--font-weight-medium);
  line-height: 1;
  inset: 0 auto auto 0;
}
.top-faq .faq__item-title {
  font-size: var(--font-size-18);
  margin-bottom: 25px;
}
.top-faq .faq__item-title::before {
  content: "Q.";
}
.top-faq .faq__item-content {
  font-size: var(--font-size-15);
}
.top-faq .faq__item-content::before {
  content: "A.";
}

/*
# top-info
------------------------*/
.top-info {
  width: clamp(1200px, 83.3333%, 1600px);
  margin: 150px auto 180px;
  border: 20px solid var(--color-white);
  padding: 95px 0 100px;
}
.top-info .info__inbox {
  width: 67.5%;
}
.top-info .info__title {
  margin-bottom: 35px;
}
.top-info .info__content {
  width: 45.8333%;
}
.top-info .info__img {
  width: 52.9629%;
  margin-right: -100px;
}
.top-info .info__img::before {
  position: absolute;
  content: "";
  width: 183px;
  height: 213px;
  background: url(../img/top/info-img_ill.png) center/100% no-repeat;
  inset: -153px -70px auto auto;
}

/*
# top-news
------------------------*/
.top-news {
  padding: 0 0 120px;
}
.top-news .news__inbox {
  position: relative;
  min-height: 305px;
}
.top-news .news__title {
  margin-bottom: 120px;
}
.top-news .news__button {
  width: 218px;
  min-height: 60px;
  justify-content: flex-start;
  padding: 0 20px;
  font-size: var(--font-size-18);
}
.top-news .news__button .link-arrow {
  width: 50px;
  height: 39px;
}
.top-news .news__button .link-arrow::before {
  width: 39px;
}
.top-news .news__button:hover .link-arrow::after {
  left: 17px;
}
.top-news .news__post-list {
  width: 760px;
  gap: 50px;
}
.top-news .news__post {
  width: 220px;
}
.top-news .news__post-link:hover {
  opacity: 1;
  transform: translateY(-10px);
}
.top-news .news__post-link:hover .news__post-title {
  text-decoration: underline;
}
.top-news .news__post-link:hover .news__post-img::before {
  opacity: 1;
}
.top-news .news__post-date {
  font-size: var(--font-size-14);
  text-align: right;
  margin-bottom: 5px;
}
.top-news .news__post-img {
  width: 100%;
  height: 165px;
  margin-bottom: 10px;
}
.top-news .news__post-img::before {
  transition: all 0.3s;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-color);
  inset: 0;
  opacity: 0;
  border-radius: 12px;
}
.top-news .news__post-tags {
  gap: 7px;
}
.top-news .news__post-tags .news__post-tag {
  margin-top: 10px;
  font-size: var(--font-size-14);
}
.top-news .news__post-tags .news__post-tag::before {
  content: "#";
  color: var(--primary-color);
}
.top-news .news__post-title {
  font-size: var(--font-size-16);
}

/*==========================================
about
===========================================*/
/*
# about-lead
------------------------*/
.about-lead {
  padding: 150px 0;
}
.about-lead .lead__content {
  width: 885px;
  margin: 0 auto;
  padding: 45px;
}
.about-lead .lead__content::before, .about-lead .lead__content::after {
  position: absolute;
  content: "";
}
.about-lead .lead__content::before {
  width: 132px;
  height: 192px;
  inset: auto auto -56px 22px;
  background: url(../img/about/about-lead-lb_ill.png) center/100% no-repeat;
}
.about-lead .lead__content::after {
  width: 105px;
  height: 124px;
  inset: -30px 10px auto auto;
  background: url(../img/about/about-lead-rt_ill.png) center/100% no-repeat;
}

/*
# about-difference
------------------------*/
.about-difference {
  padding-bottom: 120px;
}
.about-difference .difference__img {
  inset: 0 auto auto 5.2083%;
}
.about-difference .difference__effects {
  margin-top: 115px;
}
.about-difference .effects__title {
  text-align: center;
  font-size: var(--font-size-28);
  border-top: 4px double;
  border-bottom: 4px double;
  padding: 20px 0;
  margin-bottom: 35px;
}
.about-difference .effects__title span::before {
  top: -25px;
}
.about-difference .effects__title span::after {
  bottom: -45px;
}
.about-difference .effects__list {
  gap: 40px 60px;
}
.about-difference .effects__item {
  width: 320px;
  padding-left: 45px;
  font-size: var(--font-size-17);
  z-index: 1;
}
.about-difference .effects__item::before {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: var(--primary-color);
  background: rgba(var(--primary-color-rgb), 0.1);
  inset: -10px auto auto 0;
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-bold);
}
.about-difference .effects__item span {
  border-bottom: 1px dotted var(--color-gray);
  padding-bottom: 12px;
}

/*
# difference-reason
------------------------*/
.difference-reason {
  padding: 130px 0 120px;
  background: url(../img/about/reason-lt_watercolor.png) left top/56.302% no-repeat, url(../img/about/reason-rb_watercolor.png) right bottom/56.302% no-repeat, var(--primary-color-extralight);
}
.difference-reason .reason__card {
  position: relative;
  margin-bottom: 150px;
}
.difference-reason .reason__card:last-child {
  margin-bottom: 0;
}
.difference-reason .reason__card-title::before {
  z-index: 1;
  color: var(--primary-color);
  font-size: var(--font-size-28);
}
.difference-reason .reason__card-title span::before {
  left: -125px;
}
.difference-reason .reason__card-img {
  position: absolute;
  top: 0;
  z-index: 2;
}
.difference-reason .reason__card-content {
  width: 635px;
  min-height: 300px;
}
.difference-reason .reason__card:nth-child(odd) .reason__card-img {
  left: 0;
}
.difference-reason .reason__card:nth-child(odd) .reason__card-content {
  margin-left: auto;
}
.difference-reason .reason__card:nth-child(even) .reason__card-img {
  right: 0;
}
.difference-reason .reason__card:nth-child(even) .reason__card-img::before {
  transform: scale(-1, 1);
}

/*==========================================
menu
===========================================*/
.menu__page-nav {
  margin-bottom: 135px;
  gap: 25px 100px;
}

/*
# menu__section
------------------------*/
.menu__section {
  padding: 150px 0 125px;
}
.menu__section .menu__inbox::after {
  position: absolute;
  content: "";
  width: 190px;
  height: 242px;
  inset: 0 -100px auto auto;
  background: url(../img/menu/menu-rt_ill.png) center/100% no-repeat;
}
.menu__section .menu__post {
  padding: 35px 0;
  border-bottom: 1px dotted;
  position: relative;
}
.menu__section .menu__post-title span::after {
  background: none;
}
.menu__section .menu__post-img {
  position: absolute;
  inset: 35px auto auto 0;
  width: 400px;
  height: 300px;
}
.menu__section .menu__post-content {
  width: 630px;
  margin-left: auto;
  min-height: 300px;
}

/*
# price__section
------------------------*/
.price__section {
  background: url(../img/menu/price-top_watercolor.png) top center/100% no-repeat, var(--primary-color-extralight);
}
.price__section .price__inbox {
  padding: 115px 0 130px;
  position: relative;
}
.price__section .price__inbox::before {
  position: absolute;
  content: "";
  width: 132px;
  height: 192px;
  background: url(../img/menu/price-lt_ill.png) center/100% no-repeat;
  inset: -125px auto auto -100px;
}
.price__section .price__title {
  margin-bottom: 40px;
}
.price__section .price__text {
  margin-bottom: 30px;
}
.price__section .price__item {
  padding: 45px 0;
  border-bottom: 1px dotted;
}
.price__section .price__item-price {
  text-align: right;
  font-size: var(--font-size-20);
  margin-bottom: 10px;
}
.price__section .price__item-text {
  padding-left: 25px;
}

/*==========================================
faq
===========================================*/
.faq__section .faq__item {
  margin-bottom: 60px;
  padding: 40px 35px;
}
.faq__section .faq__item:last-child {
  margin-bottom: 0;
}
.faq__section .faq__item::before, .faq__section .faq__item::after {
  position: absolute;
  content: "";
}
.faq__section .faq__item::before {
  width: 55px;
  height: 73px;
  background: url(../img/faq/faq-item-lb_ill.png) center/100% no-repeat;
  inset: auto auto -25px -10px;
}
.faq__section .faq__item::after {
  width: 105px;
  height: 151px;
  background: url(../img/faq/faq-item-rt_ill.png) center/100% no-repeat;
  inset: -61px 25px auto auto;
}
.faq__section .faq__item-title, .faq__section .faq__item-content {
  padding-left: 55px;
}
.faq__section .faq__item-title::before, .faq__section .faq__item-content::before {
  position: absolute;
  color: var(--accent-color);
  font-size: var(--font-size-40);
  font-weight: var(--font-weight-bold);
  line-height: 0.5;
  inset: 0 auto auto 0;
  font-family: var(--body-font-family);
}
.faq__section .faq__item-title {
  font-size: var(--font-size-22);
  margin-bottom: 35px;
}
.faq__section .faq__item-title::before {
  content: "Q.";
}
.faq__section .faq__item-content {
  font-size: var(--font-size-15);
}
.faq__section .faq__item-content::before {
  content: "A.";
}

/*==========================================
info
===========================================*/
/*
# info-greeting
------------------------*/
.info-greeting {
  padding: 150px 0 115px;
}
.info-greeting .greeting__inbox {
  position: relative;
}
.info-greeting .greeting__img {
  position: absolute;
  inset: 0 auto auto 0;
}
.info-greeting .greeting__img::before {
  position: absolute;
  content: "";
  width: 105px;
  height: 124px;
  background: url(../img/info/owner-img_ill.png) center/100% no-repeat;
  inset: auto auto -60px -57px;
}
.info-greeting .greeting__content {
  width: 625px;
  margin-left: auto;
}

/*
# info__section
------------------------*/
.info__section .info__inbox {
  padding: 130px 0;
}
.info__section .info__inbox::before {
  position: absolute;
  content: "";
  width: 183px;
  height: 213px;
  inset: -120px -183px auto auto;
  background: url(../img/info/info-rt_ill.png) center/100% no-repeat;
}
.info__section .info__table {
  margin-bottom: 70px;
}

/*==========================================
news
===========================================*/
.column__wrap .column__list .column__post a {
  padding: 45px 0;
}
.column__wrap .column__list .column__post-meta time {
  width: 95px;
}
.column__wrap .column__list .column__post-meta time,
.column__wrap .column__list .column__post-meta .category-label {
  font-size: var(--font-size-14);
}
.column__wrap .column__list .column__post-meta .category-label {
  width: calc(100% - 115px);
  gap: 5px;
}
.column__wrap .column__list .column__post-meta .category-label li {
  padding: 2px 10px;
}
.column__wrap .column__list .column__post-title {
  font-size: var(--font-size-23);
  margin: 10px 0;
}
.column__wrap .column__list .more-btn {
  width: 125px;
  font-size: var(--font-size-14);
  margin: inherit;
  margin-left: auto;
  font-weight: bold;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  box-sizing: border-box;
  padding: 5px 0;
  display: block;
  color: var(--color-white);
  transition: all 0.3s;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) a {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-thumb {
  width: 210px;
  height: 200px;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-thumb .img-eff {
  width: 100%;
  height: 100%;
  transition-duration: 0.3s;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-meta {
  width: 820px;
}

/*----------------------------------
  詳細ページのカテゴリー表示(タイトル下部)
  ----------------------------------*/
.single__post-meta {
  margin-bottom: 20px;
}
.single__post-meta time {
  font-size: var(--font-size-14);
  width: 95px;
  padding: 3px 0;
}
.single__post-meta .category-label {
  width: calc(100% - 95px);
  font-size: var(--font-size-14);
  gap: 5px;
  margin-left: 10px;
}
.single__post-meta .category-label li a {
  padding: 3px 10px;
}

/*==========================================
  contact
  ===========================================*/
#contact .contact__form {
  width: 980px;
  margin: 0 auto 55px;
}
#contact .contact__form-item .contact__form-label .required {
  margin-left: 10px;
}
#contact .contact__form-item .contact__form-input {
  padding: 15px 0;
}
#contact .contact__form-item .contact__form-input .contact__form-list {
  gap: 15px;
}
#contact .contact__form-item.contact__form-privacy .contact__form-label {
  text-align: center;
}
#contact .contact__form-value {
  padding: 20px 15px;
}
#contact .contact__form-select {
  width: 200px;
}
#contact .contact__form-select::after {
  inset: 0 16px 0 auto;
  width: 8px;
  height: 8px;
}
#contact .contact__form-select select {
  padding: 15px 30px 15px 10px;
}
#contact .contact__form #pc01,
#contact .contact__form #pc02 {
  width: 150px;
}
#contact .contact__form #address {
  margin-top: 15px;
}
#contact .contact__form #date1,
#contact .contact__form #date2,
#contact .contact__form #date3 {
  width: 300px;
}
#contact .contact__form textarea {
  height: 260px;
}
#contact .contact__form .upload-item-wrap .thumb {
  width: 200px;
  margin-right: 25px;
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap {
  width: 130px;
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap .ancion-btn,
#contact .contact__form .upload-item-wrap .ancion-btn-wrap .upload-button {
  font-size: var(--font-size-13);
}
#contact input[type=button],
#contact input[type=submit],
#contact .contact__submits-wrap button {
  height: 75px;
}
#contact .contact__submits-wrap {
  gap: 35px;
}
#contact .contact__submits-wrap .contact__submits-check {
  width: 304px;
}
#contact .contact__submits-wrap .contact__submits-back {
  width: 270px;
}
#contact .contact__submits-wrap .contact__submits-send {
  width: 240px;
}

/*==========================================
  privacy
  ===========================================*/
#privacy .privacy__content {
  margin-bottom: 70px;
}
#privacy .privacy__content:last-child {
  margin-bottom: 0;
}

/*==========================================
  site
  ===========================================*/
#site-map .sitemap__item-link {
  padding: 2% 0 2% 3%;
}

/*==========================================
  プライバシーポリシー(LPフレーム時)
  ===========================================*/