@charset "UTF-8";
/*アニメーションCSS*/
/*ボーダーが真ん中から左右に広がる*/
/*ボタンの背景が横から出てくる*/
#wrapper {
  min-width: 1280px;
}

/*Flexbox */
.flex {
  display: -webkit-box;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*折り返し */
.flx-wrp {
  flex-wrap: wrap;
}

/*逆順 */
.flx-rr {
  flex-direction: row-reverse;
}

/*積み重なるように配置 */
.flx-column {
  flex-direction: column;
}

/*水平方向の揃え */
/*初期値 */
.flx-strt {
  -webkit-justify-content: start;
  justify-content: start;
}

/*並列で均等配置（左右隙間なし=space-between） */
.flx-btw {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

/*並列で均等配置（左右隙間あり=space-around） */
.flx-ard {
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

/*水平揃え　末揃え */
.flx-end {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

/*水平揃え　中央揃え */
.flx-center {
  -webkit-justify-content: center;
  justify-content: center;
}

/*垂直方向の揃え */
/*水平揃え　上揃え */
.flx-alitem-strt {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

/*水平揃え　高さ揃え */
.flx-alitem-strch {
  -webkit-align-items: stretch;
  align-items: stretch;
}

/*水平揃え　縦・横の中央揃え */
.flx-alitem-c {
  -webkit-align-items: center;
  align-items: center;
}

/*水平揃え　下揃え */
.flx-alitem-end {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

/*水平揃え　ベースライン揃え */
.flx-alitem-base {
  -webkit-align-items: baseline;
  align-items: baseline;
}

/*複数行にした揃え方 */
/*初期値 */
.flx-alcont-strt {
  -webkit-align-content: flex-start;
  align-content: flex-start;
}

/*親要素の開始位置から配置。上揃え */
.flx-alcont-strch {
  -webkit-align-content: stretch;
  align-content: stretch;
}

/*親要素の終点から配置。下揃え */
.flx-alcont-end {
  -webkit-align-content: flex-end;
  align-content: flex-end;
}

/*中央揃え */
.flx-alcont-c {
  -webkit-align-content: center;
  align-content: center;
}

/*最初と最後の子要素を上下の端に配置し、残りの要素は均等に間隔をあけて配置 */
.flx-alcont-s-btw {
  -webkit-align-content: space-between;
  align-content: space-between;
}

/*上下端にある子要素も含め、均等に間隔をあけて配置 */
.flx-alcont-s-ard {
  -webkit-align-content: space-around;
  align-content: space-around;
}

/* 並び順変更 */
.flex-order-1 {
  order: 1;
}

.flex-order-2 {
  order: 2;
}

/*pcスタイル */
.inbox {
  width: 1080px;
  margin: 0 auto;
  box-sizing: border-box;
}

.pc-none {
  display: none;
}

.current a {
  color: var(--main-color);
}

a[href*="tel:"] {
  pointer-events: none;
}

/*-------▽▽フォント▽▽----------*/
body {
  font-size: 1.6rem;
  line-height: 1.5;
}

/*--------△△フォント△△---------*/
/*======================================================
 * ▽▽---共通スタイル---▽▽
 * =======================================================*/
html {
  scroll-padding: 120px;
}

section {
  padding: 120px 0;
}

.dl-item {
  display: flex;
}

.com-txt {
  line-height: 2.25;
}
.com-btn {
  display: grid;
  place-items: center;
  background: var(--main-color);
  border-radius: 50vw;
  height: 60px;
  margin: 0 auto;
  position: relative;
  font-size: 2rem;
}
.com-btn:link, .com-btn:visited {
  color: var(--white);
}
.com-btn::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  background: url("../img/common/arw-wt.png") center/contain no-repeat;
  inset: 0 20px 0 auto;
  margin: auto 0;
}
.com-btn:hover {
  background: var(--sub-color);
  opacity: 1;
  transform: scale(0.95);
}

.flex > .ttl01 {
  width: 100%;
}

.ttl01 {
  text-align: center;
  font-size: 4.6rem;
  color: var(--main-color);
  font-weight: 600;
  margin-bottom: 60px;
}
.ttl01 span {
  padding: 0 50px 5px;
  background: url(../img/common/ttl-le.png) left bottom no-repeat, url(../img/common/ttl-ri.png) right bottom no-repeat;
}

.ttl02 {
  font-size: 2.8rem;
  font-weight: 600;
}

.ttl03 {
  font-size: 2.4rem;
  font-weight: 600;
}

.ttl04 {
  font-size: 1.8rem;
  font-weight: 500;
}

.txt-cap {
  font-size: 1.4rem;
}

.com-add-box {
  width: auto;
  gap: 30px;
}
.com-add-box .line-btn, .com-add-box .mail-btn {
  width: 40px;
}

.com-tel {
  display: grid;
  justify-items: center;
  gap: 5px;
  font-weight: 600;
  font-size: 3.4rem;
}
.com-tel a {
  background: url("../img/common/tel-icon.png") left center/auto no-repeat;
  padding-left: 35px;
  box-sizing: border-box;
}
.com-tel.ft-wt a {
  background-image: url(../img/common/tel-icon-wt.png);
}

.com-kado {
  border-radius: 25px;
}
.com-kado > img {
  border-radius: 25px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.tag-list .tag {
  color: #fff;
  background: var(--main-color);
  border-radius: 4px;
  padding: 0 5px;
  font-size: 1.4rem;
}

/*infotableスタイル*/
.com-desc-tbl {
  padding: 20px 0;
  width: 610px;
}
.com-desc-tbl .dl-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
}
.com-desc-tbl .dl-item:not(:last-child) {
  border-bottom: 1px solid #e4e4e4;
}
.com-desc-tbl .dl-item dt {
  width: 145px;
  color: var(--main-color);
  text-align: center;
}
.com-desc-tbl .dl-item dd {
  width: 440px;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  width: 100%;
  background: #fff;
  z-index: 100;
  padding: 25px 35px;
}
#header .hd-logo img {
  display: block;
}
#header .hd-right {
  gap: 80px;
}
#header .hd-right .hd-top {
  gap: 35px;
}
#header .hd-right #nav {
  margin-top: 8px;
}
#header .hd-right #nav .nav-list {
  gap: 35px;
}
#header .hd-right #nav .nav-list .nav-item {
  position: relative;
}
#header .hd-right #nav .nav-list .nav-item > a {
  padding-bottom: 5px;
  opacity: 1;
  position: relative;
}
#header .hd-right #nav .nav-list .nav-item > a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--main-color);
  position: absolute;
  bottom: 0;
  transform: scale(0);
  transition: 0.5s;
}
#header .hd-right #nav .nav-list .nav-item > a:hover::after {
  transform: scale(1);
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  padding: 60px 0;
  gap: 40px;
  background: url(../img/top/mv-bg.jpg) bottom/cover no-repeat;
}
.top-mv .mv-le {
  width: 45.83%;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 50px;
}
.top-mv .mv-le .mv-ct {
  width: 39.1%;
}
.top-mv .mv-le .mv-ill {
  width: 28.33%;
  left: 0;
  top: 20%;
}
.top-mv .mv-ri {
  width: 45.83%;
  display: grid;
  gap: 40px;
}
.top-mv .mv-ri .mv-box {
  height: 17.19vw;
  min-height: 256px;
  gap: 5.6%;
}
.top-mv .mv-ri .mv-box .txt-box {
  width: 50.5%;
  display: grid;
  justify-items: end;
  gap: 10px;
}
.top-mv .mv-box {
  position: relative;
  z-index: 1;
  border: 20px solid var(--sub-color);
}
.top-mv .mv-box .mv-ct img {
  width: 100%;
}
.top-mv .mv-box .com-txt {
  font-size: clamp(1.6rem, 1.04vw, 2rem);
}
.top-mv .mv-box .mv-arw {
  position: relative;
  padding-bottom: 5px;
  padding-right: 30px;
  font-size: clamp(1.6rem, 1.04vw, 2rem);
  border-bottom: 1px solid var(--main-color);
}
.top-mv .mv-box .mv-arw::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  background: url("../img/common/arw.png") center/contain no-repeat;
  inset: 0 0 0 auto;
  margin: auto 0;
  transition: 0.3s;
}
.top-mv .mv-box .mv-ill {
  position: absolute;
  z-index: -1;
}
.top-mv .mv-box .mv-ill img {
  width: 100%;
}
.top-mv .mv-02 .mv-ct {
  width: 28.2%;
}
.top-mv .mv-02 .mv-ill {
  width: 20.6%;
  left: 0;
  bottom: 0;
}
.top-mv .mv-03 .mv-ct {
  width: 29.7%;
}
.top-mv .mv-03 .mv-ill {
  width: 25%;
  left: 0;
  bottom: 0;
}

/*---------------------------△△---MV---△△------------------------*/
#top-intro {
  padding-bottom: 130px;
  background: url(../img/top/other-ill.png) bottom left calc(50% + 550px)/11.25% no-repeat, url(../img/top/other-bg.jpg) center/cover;
}
#top-intro .other-li {
  gap: 30px;
  margin-bottom: 80px;
}
#top-intro .other-li .other-item {
  width: 45.6%;
  display: grid;
  align-content: center;
  position: relative;
  min-height: 374px;
  background: url(../img/top/other-box-bg.png) center/cover;
}
#top-intro .other-li .other-item .ttl02 {
  position: absolute;
  inset: -30px 0 auto 0;
  margin: 0 auto;
}
#top-intro .other-li .other-item .ttl02 span {
  padding: 3px 140px;
}
#top-intro .other-li .other-item .other-ttl {
  gap: 1.7%;
}
#top-intro .other-li .other-item .com-btn {
  width: 420px;
  margin-top: 30px;
}
#top-intro .other-li .other-01 {
  background: url(../img/top/other-hart.png) top 40px right 10%/28.4% no-repeat, url(../img/top/other-box-bg.png) center/cover;
}
#top-intro .other-li .other-01 .other-ttl {
  margin-bottom: 20px;
}
#top-intro .other-li .other-01 .other-ttl .img-01 {
  width: 48.3%;
}
#top-intro .other-li .other-01 .other-ttl .img-02 {
  width: 44%;
}
#top-intro .other-li .other-02 .sub-ttl {
  text-align: center;
  margin-bottom: 20px;
}
#top-intro .other-li .other-02 .sub-ttl img {
  width: 66.55%;
}
#top-intro .other-li .other-02 .other-ttl .img-01 {
  width: 44.5%;
}
#top-intro .other-li .other-02 .other-ttl .img-02 {
  width: 43.9%;
}
#top-intro .inbox .ttl02 {
  font-size: 3.6rem;
  margin-bottom: 50px;
}
#top-intro .inbox .ttl02 span {
  padding: 5px 65px;
}
#top-intro .inbox .ttl03 {
  margin-bottom: 20px;
}
#top-intro .inbox .com-txt {
  font-size: 1.8rem;
}

.com-gd-li {
  gap: 30px;
}
.com-gd-li li {
  width: 340px;
  padding: 30px 23px;
  justify-items: center;
}
.com-gd-li li .ttl03 {
  margin-bottom: 15px;
}
.com-gd-li .srv-item {
  padding: 30px 15px;
}
.com-gd-li .srv-item .srv-ill {
  margin-bottom: 10px;
}
.com-gd-li .srv-item .ttl03 {
  margin-bottom: 10px;
}
.com-gd-li .big-item {
  width: 524px;
}

#top-greeting .inbox {
  width: 1280px;
}
#top-greeting.season-01 {
  position: relative;
}
#top-greeting.season-01::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: url(../img/top/gree-le-01.png) left top/30% no-repeat, url(../img/top/gree-ri-01.png) right 2.3% bottom 35px/32.3% no-repeat;
  top: 0;
  left: 0;
  z-index: 1;
}
#top-greeting.season-02 .gree-box {
  position: relative;
}
#top-greeting.season-02 .gree-box::after {
  content: "";
  display: block;
  width: 386px;
  height: 327px;
  position: absolute;
  background: url("../img/top/gree-le-02.png") center/contain no-repeat;
  left: -70px;
  bottom: -55px;
}
#top-greeting.season-02 .gree-box::before {
  content: "";
  display: block;
  width: 388px;
  height: 148px;
  position: absolute;
  background: url("../img/top/gree-ri-02.png") center/contain no-repeat;
  right: -53px;
  top: -74px;
}
#top-greeting.season-03 {
  position: relative;
}
#top-greeting.season-03::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: url(../img/top/gree-le-03.png) left top/40% no-repeat;
  top: 0;
  left: 0;
  z-index: 1;
}
#top-greeting.season-03 .gree-box {
  position: relative;
}
#top-greeting.season-03 .gree-box::before {
  content: "";
  display: block;
  width: 432px;
  height: 304px;
  position: absolute;
  background: url("../img/top/gree-ri-03.png") center/contain no-repeat;
  right: -178px;
  bottom: -108px;
}
#top-greeting.season-04 .gree-box {
  position: relative;
}
#top-greeting.season-04 .gree-box::after {
  content: "";
  display: block;
  width: 244px;
  height: 257px;
  position: absolute;
  background: url("../img/top/gree-le-04.png") center/contain no-repeat;
  left: -90px;
  top: -100px;
}
#top-greeting.season-04 .gree-box::before {
  content: "";
  display: block;
  width: 295px;
  height: 208px;
  position: absolute;
  background: url("../img/top/gree-ri-04.png") center/contain no-repeat;
  right: -60px;
  bottom: -95px;
}
#top-greeting .gree-box {
  padding: 50px 100px;
}
#top-greeting .gree-box .gree-img {
  width: 400px;
  position: relative;
}
#top-greeting .gree-box .gree-img::after {
  content: "";
  display: block;
  width: 97px;
  height: 233px;
  position: absolute;
  background: url("../img/top/gree-ill.png") center/contain no-repeat;
  bottom: -35px;
  right: -45px;
}
#top-greeting .gree-box .txt-box {
  width: 593px;
}
#top-greeting .gree-box .txt-box .name {
  margin-top: 30px;
}

/*--------▽▽---NEWS---▽▽---------- */
#top-news {
  background: url(../img/top/news-bg.jpg) center/cover;
}
#top-news .inbox .news-area {
  gap: 30px;
}
#top-news .inbox .news-area .news-box {
  width: 524px;
  padding: 40px 35px;
}
#top-news .inbox .news-area .news-box:nth-child(1) {
  width: 100%;
}
#top-news .inbox .news-area .news-box .ttl03 {
  margin-bottom: 20px;
}
#top-news .inbox .news-area .news-box .ttl03 span {
  padding: 0 20px;
}
#top-news .inbox .news-area .news-box .news-list {
  width: 100%;
  display: grid;
  gap: 12px;
}
#top-news .inbox .news-area .news-box .news-list .news-item a {
  display: block;
  padding: 15px 30px;
}
#top-news .inbox .news-area .news-box .news-list .news-item a:hover {
  transform: translateX(10px);
}
#top-news .inbox .news-area .news-box .news-list .news-item a time {
  line-height: 1;
}
#top-news .inbox .news-area .news-box .news-list .news-item a h5 {
  margin-top: 5px;
  width: 100%;
}
#top-news .inbox .com-btn {
  width: 500px;
  height: 80px;
  margin-top: 60px;
}

/*------------△△---MV---△△---------*/
#top-info {
  position: relative;
  padding-bottom: 160px;
}
#top-info::before {
  content: "";
  display: block;
  width: 288px;
  height: 100%;
  position: absolute;
  background: url("../img/top/info-ill.png") center/contain no-repeat;
  background-position: bottom;
  bottom: 0;
  right: calc(50% + 425px);
}
#top-info .inbox .map {
  width: 435px;
  overflow: hidden;
}

#footer {
  padding: 80px 0;
}
#footer .ft-area .ft-le {
  width: 50%;
}
#footer .ft-area .ft-le .ft-logo {
  display: inline-block;
  margin-bottom: 20px;
}
#footer .ft-area .ft-le .ft-add-box {
  margin-bottom: 60px;
}
#footer .ft-area .ft-le .ft-add-box .ft-info .dl-item {
  display: flex;
}
#footer .ft-area .ft-ri {
  display: grid;
  align-content: space-between;
  justify-items: end;
  width: 50%;
}
#footer .ft-area .ft-ri .ft-nav-box .nav-list {
  gap: 30px;
  margin-bottom: 10px;
}
#footer .ft-area .ft-ri .ft-nav-box .nav-list .nav-item.current {
  border-bottom: 2px solid #fff;
}
#footer .ft-area .ft-ri .ft-nav-box .nav-list .nav-item.current a {
  color: #fff !important;
}
#footer .copyright {
  font-size: 1rem;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
/*---------------------------▽▽---SV---▽▽------------------------*/
.sv {
  height: 660px;
  display: grid;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.sv .sv-catch {
  padding: 25px 20px;
  font-size: 4rem;
  background: rgba(246, 186, 188, 0.9);
}

.inheritance-sv {
  background-image: url(../img/sv/inheritance.jpg);
}

.suicide-sv {
  background-image: url(../img/sv/suicide.jpg);
}

.noun-sv {
  background-image: url(../img/sv/noun.jpg);
}

.voice-sv {
  background-image: url(../img/sv/voice.jpg);
}

.price-sv {
  background-image: url(../img/sv/price.jpg);
}

.news-sv {
  background-image: url(../img/sv/news.jpg);
}

.contact-sv {
  background-image: url(../img/sv/contact.jpg);
}

.complete-sv {
  background-image: url(../img/sv/complete.jpg);
}

.privacy-sv {
  background-image: url(../img/sv/privacy.jpg);
}

.site-sv {
  background-image: url(../img/sv/site.jpg);
}

.e404-sv {
  background-image: url(../img/sv/e404.jpg);
}

.e404-sv .sv-catch {
  font-size: 3.4rem;
}

/*---------------------------△△---SV---△△------------------------*/
/*---------------------------▽▽---breadcrumbs---▽▽------------------------*/
.breadcrumbs-area {
  position: relative;
  z-index: 10;
}
.breadcrumbs-area .breadcrumbs {
  position: absolute;
  left: 0;
  right: 0;
  top: 15px;
  font-size: 1.5rem;
}
.breadcrumbs-area .breadcrumbs li:not(:first-child)::before {
  content: ">";
  padding: 0 15px;
}

/*---------------------------△△---breadcrumbs---△△------------------------*/
/*-----------▽▽---select---▽▽--------*/
.select-area {
  position: relative;
  width: 300px;
  height: 50px;
  margin-left: auto;
  padding: 0 !important;
  align-content: stretch !important;
}
.select-area .select-box {
  width: 100%;
  height: 100%;
  display: grid;
  align-items: center;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-align: center;
  text-align-last: center;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
}
.select-area .select-box option {
  font-size: 1.5rem;
  color: var(--font-color);
}
.select-area:hover .select-box option {
  color: var(--font-color);
}
.select-area:has(option:only-child) {
  display: none;
}
.select-area::after {
  transform: rotate(90deg);
}

/*------------△△---select---△△---------*/
.com-worry {
  padding-bottom: 316px;
  position: relative;
}
.com-worry::after {
  content: "";
  display: block;
  width: 645px;
  height: 328px;
  position: absolute;
  background: url("../img/common/worry-ill.png") center/contain no-repeat;
  inset: auto 0 0 0;
  margin: 0 auto;
}
.com-worry ul {
  padding: 20px 40px;
  position: relative;
  filter: drop-shadow(5px 5px #ffe9e7);
}
.com-worry ul::before {
  content: "";
  display: block;
  width: 96px;
  height: 135px;
  position: absolute;
  background: url("../img/common/fuki.png") center/contain no-repeat;
  inset: auto 0 -75px 0;
  margin: 0 auto;
}
.com-worry ul li {
  position: relative;
}
.com-worry ul li:not(:last-of-type) {
  border-bottom: 1px solid #e4e4e4;
}
.com-worry ul li span {
  background: url("../img/common/check.png") left top 5px/auto no-repeat;
  padding-left: 24px;
  box-sizing: border-box;
}

#inheritance-worry ul li {
  padding: 20px 150px;
}

#suicide-worry ul li {
  padding: 20px 65px;
}

#noun-worry ul li {
  padding: 20px 200px;
}

.com-charm .inbox {
  position: relative;
}
.com-charm .inbox::before {
  content: "";
  display: block;
  width: 157px;
  height: 141px;
  position: absolute;
  background: url("../img/common/charm-ill.png") center/contain no-repeat;
  top: -50px;
  left: 160px;
}
.com-charm .ttl01 {
  display: grid;
  justify-items: center;
  gap: 30px;
}

.com-sup ul {
  display: grid;
  gap: 30px;
}
.com-sup ul li {
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 50px;
  gap: 25px 0;
}
.com-sup ul li .ttl03 {
  width: 100%;
  display: flex;
  align-items: center;
}
.com-sup ul li .ttl03::before {
  content: "・";
  font-size: 1.7em;
}
.com-sup ul li .com-kado {
  width: 400px;
}
.com-sup ul li .com-txt {
  width: 543px;
}

#com-contact {
  background: url(../img/top/news-bg.jpg) center/cover;
}
#com-contact .ttl01 {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
#com-contact ul {
  padding-top: 40px;
  position: relative;
}
#com-contact ul::before {
  content: "";
  display: block;
  width: 97px;
  height: 100%;
  position: absolute;
  background: url("../img/top/gree-ill.png") center/contain no-repeat;
  bottom: -34px;
  left: -18px;
  background-position: bottom;
}
#com-contact ul li {
  width: 524px;
  padding: 35px 0;
  display: grid;
  align-items: center;
  align-content: center;
}
#com-contact ul li .ttl02 {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e4e4e4;
}
#com-contact .contact-price {
  width: 730px;
  height: 150px;
  display: grid;
  place-items: center;
  margin: 70px auto 0;
  border: 4px solid #fff;
  background: url(../img/common/contact-bg.jpg);
}
#com-contact .contact-price span {
  position: relative;
  padding-right: 30px;
}
#com-contact .contact-price span::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  background: url("../img/common/arw-wt.png") center/contain no-repeat;
  inset: 0 0 0 auto;
  margin: auto 0;
  transition: 0.3s;
}

#voice .select-area {
  margin-bottom: 80px;
  margin-right: 0;
}
#voice .voice-list {
  display: grid;
  gap: 30px;
}
#voice .voice-list .voice-item {
  padding: 40px 70px;
}
#voice .voice-list .voice-item .voice-le {
  width: 210px;
}
#voice .voice-list .voice-item .voice-le .gender-img {
  margin-bottom: 15px;
}
#voice .voice-list .voice-item .voice-le .txt-cap {
  margin-top: 10px;
  padding: 5px;
}
#voice .voice-list .voice-item .voice-ri {
  width: 680px;
}
#voice .voice-list .voice-item .voice-ri .ttl02 {
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
#price-intro .inbox {
  position: relative;
}
#price-intro .inbox::before {
  content: "";
  display: block;
  width: 290px;
  height: 100%;
  position: absolute;
  background: url("../img/price/ill.png") center/contain no-repeat;
  background-position: bottom;
  left: 0;
  bottom: -143px;
}
#price-intro .ttl01 {
  font-size: 4.2rem;
}
#price-intro .com-kado {
  padding: 40px;
}

#price .ttl01 {
  margin-bottom: 30px;
}
#price .ttl02 {
  padding: 10px 25px;
  border-radius: 13px;
  margin-top: 100px;
  margin-bottom: 40px;
}
#price .price-item {
  margin-bottom: 70px;
  display: grid;
  gap: 25px;
}
#price .price-item .ttl03 {
  display: flex;
  align-items: center;
}
#price .price-item .ttl03::before {
  content: "・";
  font-size: 1.4em;
}
#price .price-item dl {
  padding: 20px 60px;
}
#price .price-item dl .dl-item {
  padding: 15px 0;
  justify-content: space-between;
}
#price .price-item dl .dl-item:not(:last-of-type) {
  border-bottom: 1px solid #e4e4e4;
}

/*--------------------その他共通ページ --------------------*/
.com-other-page {
  padding: 100px 0;
}

/*---------------------------▽▽---site.html---▽▽------------------------*/
#site-map .site-list {
  padding: 70px 0 0;
}
#site-map .site-list li {
  font-size: 1.8rem;
}
#site-map .site-list li a {
  display: block;
  padding: 20px 10px;
  border-bottom: 2px solid color-mix(in srgb, var(--main-color) 50%, transparent);
  color: var(--font-color);
  position: relative;
}
#site-map .site-list li a::after {
  content: "";
  display: block;
  width: 10px;
  height: 12px;
  background: var(--main-color);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto 0;
}
#site-map .site-list li a:hover {
  background: color-mix(in srgb, var(--main-color) 50%, transparent);
}

/*---------------------------△△---site.html---△△------------------------*/
/*---------------------------▽▽---404.html---▽▽------------------------*/
#notfound .inbox .com-txt {
  text-align: center;
}
#notfound .inbox .com-txt a {
  text-decoration: underline;
  color: var(--font-color);
}

/*---------------------------△△---404.html---△△------------------------*/
/*---------------------------▽▽---privacy.html---▽▽------------------------*/
#privacy .privacy-box {
  margin-bottom: 50px;
  padding: 0;
}
#privacy .privacy-box .ttl02 {
  border-radius: 5px;
  text-align: left;
  padding: 10px 30px;
  margin-bottom: 20px;
  background: var(--main-color);
  color: #fff;
}

/*---------------------------△△---privacy.html---△△------------------------*/
/*---------------------------▽▽---news.html---▽▽------------------------*/
#news .news-ttl {
  margin-bottom: 50px;
}
#news .select-area {
  margin-bottom: 40px;
}
#news .select-area .select-box {
  padding: 10px 0;
  background: none;
}
#news .news-area {
  margin-bottom: 60px;
}
#news .news-area .news-list .news-item {
  border-bottom: 1px solid color-mix(in srgb, var(--main-color) 50%, transparent);
  line-height: 1.5;
}
#news .news-area .news-list .news-item a {
  display: block;
  padding: 30px 0;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box {
  display: flex;
  line-height: 1.5;
  gap: 20px;
  font-size: 1.5rem;
  margin-bottom: 20px;
  align-items: flex-start;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box time {
  width: 100px;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box .tag-list {
  width: 980px;
}
#news .news-area .news-list .news-item a .news-txt-box .list-ttl {
  font-weight: 500;
  font-size: 2.3rem;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
#news .news-area .news-list .news-item a .news-txt-box .list-txt {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
#news .news-area .news-list .news-item .thumbnail-on {
  display: flex;
  justify-content: space-between;
}
#news .news-area .news-list .news-item .thumbnail-on .thumb {
  width: 200px;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box {
  width: 840px;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box .data-box .tag-list {
  width: 740px;
}

/*detail */
#detail .detail-box {
  margin-bottom: 50px;
}
#detail .detail-box .data-box {
  display: flex;
  line-height: 1.5;
  gap: 30px;
  font-size: 1.5rem;
  margin-bottom: 70px;
  align-items: center;
}
#detail .detail-box .data-box time {
  width: 120px;
}
#detail .detail-box .data-box .tag-list {
  width: 780px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#detail .detail-box .data-box .tag-list .tag a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
#detail .detail-box .thumb {
  margin-bottom: 20px;
  width: 400px;
  height: 300px;
}
#detail .detail-box .detail-ttl {
  font-size: 3rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding: 0 0 20px;
  text-align: left;
  border-bottom: 2px solid #555;
}
#detail .detail-box .detail-txt {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 30px 0 60px;
}
#detail .detail-box .detail-txt img {
  margin: 10px;
}

/*pagenation*/
.pagenation {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 50px 0 30px;
}
.pagenation li {
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  border: 2px solid var(--main-color);
  font-size: 1.8rem;
  background: #fff;
}
.pagenation li a, .pagenation li span {
  line-height: 1;
  padding: 12px 18px;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
}
.pagenation .current {
  background: var(--main-color);
  color: #fff;
}

.pagenation-detail {
  position: relative;
  height: 50px;
  margin-top: 60px;
}
.pagenation-detail p a {
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 1;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 18px 0;
  height: 50px;
  background: var(--main-color);
  position: absolute;
}
.pagenation-detail .left a {
  top: 0;
  left: 0;
  width: 70px;
}
.pagenation-detail .right a {
  top: 0;
  right: 0;
  width: 70px;
}
.pagenation-detail .center a {
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 160px;
}

/*---------------------------△△---news.html---△△------------------------*/
/*---------------------------▽▽---contact.html---▽▽------------------------*/
#contact .contact-ttl {
  margin-bottom: 100px;
  text-align: center;
}
#contact .table-wrapper {
  margin-bottom: 50px;
}
#contact .table-wrapper .contact-form-table tr {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
#contact .table-wrapper .contact-form-table tr th {
  font-weight: 700;
  text-align: left;
  font-size: 1.4rem;
  width: 300px;
  box-sizing: border-box;
  background: var(--sub-color);
  padding: 16px 10px;
}
#contact .table-wrapper .contact-form-table tr th .required-mark {
  background: var(--main-color);
  padding: 2px 4px;
  font-weight: 500;
}
#contact .table-wrapper .contact-form-table tr td {
  width: 770px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 500;
  font-family: "游ゴシック", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}
#contact .table-wrapper .contact-form-table tr td input, #contact .table-wrapper .contact-form-table tr td textarea, #contact .table-wrapper .contact-form-table tr td select, #contact .table-wrapper .contact-form-table tr td .error-text, #contact .table-wrapper .contact-form-table tr td .contact-address-txt {
  font-family: "游ゴシック", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  width: 100%;
}
#contact .table-wrapper .contact-form-table tr td label {
  font-family: "游ゴシック", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}
#contact .table-wrapper .contact-form-table tr td .select-area {
  margin: 0;
}
#contact .table-wrapper .contact-form-table tr td .select-area select {
  width: auto;
}
#contact .table-wrapper .contact-form-table tr td .p-postal-code {
  width: 80px;
}
#contact .table-wrapper .contact-form-table tr td .birth-txt {
  width: 80px;
}
#contact .table-wrapper .contact-form-table tr td .error-text {
  font-weight: 500;
}
#contact .table-wrapper .contact-form-table tr .check-box-confirmation {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#contact .table-wrapper .contact-form-table tr .h-adr input {
  height: 45%;
}
#contact .privacy-agree {
  display: block;
}
#contact .privacy-agree a {
  text-decoration: underline;
}

.check {
  display: flex;
  justify-content: space-between;
  width: 60%;
  margin: 50px auto;
}
.check .contact-recaptcha-wrap {
  margin: 0;
}

.contact-submits-wrap .contact-check-btn {
  width: 300px;
  height: 74px;
  background: none;
  color: #fff;
  background: var(--main-color);
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
}
.contact-submits-wrap .contact-back-btn {
  border: none;
  background: #bebebe;
  margin-bottom: 50px;
  font-size: 1.6rem;
}

.complete-area .ttl01 {
  margin-bottom: 100px;
}

.complete-box {
  color: var(--font-color);
  line-height: 1.5;
  text-align: center;
}
.complete-box a {
  display: inline-block;
  text-decoration: underline;
  margin: 30px 0;
}

input[type=button][disabled],
input[type=submit][disabled] {
  opacity: 0.7;
  pointer-events: none;
}

/*---------------------------△△---contact.html---△△------------------------*/