@charset "UTF-8";
/*アニメーションCSS*/
/*ボーダーが真ん中から左右に広がる*/
/*ボタンの背景が横から出てくる*/
/*spスタイル */
.inbox {
  width: 86%;
  box-sizing: border-box;
  margin: 0 auto;
}

.sp-none {
  display: none;
}

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

/*すまほセレクトボックス*/
.select-area {
  position: relative;
  width: 70vw;
  height: 15vw;
  margin-left: auto;
}
.select-area .select-box {
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 3.5vw;
  text-align: center;
  text-align-last: center;
  background: none;
  border: none;
  font-size: 3.5vw;
  font-weight: 500;
  color: #fff;
}
.select-area .select-box option {
  font-size: 3vw;
  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);
}

/*ここから下がドロワー設定項目 */
/*drawer btn 上下左右で設定可能 */
.sp-menu-btn-wrp {
  top: 10px;
  right: 10px;
  bottom: auto;
  left: auto;
  background: var(--main-color);
  border-radius: 3vw;
}

.sp-menu-btn-wrp .sp-menu-btn {
  width: 15vw;
  height: 15vw;
  max-width: 75px;
  max-height: 75px;
}

.sp-menu-btn-wrp .sp-menu-btn span {
  width: 50%;
  height: 2px;
  background: #fff;
  transform-origin: center;
}

.sp-menu-btn-wrp .sp-menu-btn .top {
  top: 30%;
}

.sp-menu-btn-wrp .sp-menu-btn .middle {
  top: 0;
  bottom: 0;
}

.sp-menu-btn-wrp .sp-menu-btn .bottom {
  bottom: 30%;
}

.sp-menu-btn-wrp .sp-menu-btn-txt {
  color: #fff;
}

/*active */
.active .sp-menu-btn-wrp .sp-menu-btn span {
  width: 55%;
}

.sp-menu-btn.active .top {
  top: 48.5%;
  transform: translateY(0) translateX(0) rotate(45deg);
}

.sp-menu-btn.active .middle {
  opacity: 0;
}

.sp-menu-btn.active .bottom {
  bottom: 48.5%;
  transform: translateY(0) translateX(0) rotate(-45deg);
}

/*	drawer inbox */
#drawer-nav {
  padding: 3% 5% 30vw;
  background: var(--bg-color);
}

#drawer-nav .drawer-logo {
  width: 40%;
  margin-bottom: 10%;
}

#drawer-nav .nav {
  margin-bottom: 20%;
}

#drawer-nav .nav .drawer-link {
  box-sizing: border-box;
  padding: 4% 2%;
  border-bottom: 1px solid var(--main-color);
  font-size: 4vw;
  color: var(--font-color);
  position: relative;
}
#drawer-nav .nav .drawer-link::after {
  content: "";
  display: block;
  width: 2vw;
  height: 2vw;
  background: var(--main-color);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 3%;
  margin: auto 0;
}
#drawer-nav .nav .drawer-link.drawer-dropdown::after {
  content: none;
}

#drawer-nav .nav .current a {
  color: var(--main-color);
  padding-left: 3%;
}
#drawer-nav .nav .current a::after {
  background-color: var(--main-color);
}

#drawer-nav .nav .drawer-dropdown span {
  display: block;
}

#drawer-nav .nav .drawer-dropdown span:before {
  background: var(--main-color);
}

#drawer-nav .nav .drawer-dropdown span:after {
  background: var(--main-color);
}

#drawer-nav .nav .current span:after {
  opacity: 0 !important;
}

#drawer-nav .nav .drawer-dropdown-bx {
  margin: 3% 0;
  padding-left: 4%;
  box-sizing: border-box;
}

#drawer-nav .nav .drawer-dropdown-bx > li > .drawer-link:before {
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
}

#drawer-nav .nav .drawer-dropdown-bx > li > .drawer-link span {
  padding: 0 0 0 5%;
}

/*original custom code */
/*sns */
.sns-list {
  margin: 10% auto 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sns-list li {
  width: 8%;
  margin-right: 5%;
}
.sns-list li a {
  display: block;
  width: 100%;
  min-width: 25px;
}
.sns-list li a img {
  max-width: none;
  width: 100%;
}

.sns-list li:last-child {
  margin-right: 0;
}

/*住所 */
.drawer-address {
  margin: 5% auto;
  text-align: center;
}

.drawer-address li {
  margin-bottom: 30px;
}

.drawer-address li:last-child {
  margin-bottom: 0;
}

.drawer-tel {
  font-size: 4vw;
  color: #333;
}

.drawer-tel small {
  font-size: 3.5vw;
}

/*rink-list */
.link-list {
  font-size: 3vw;
  display: flex;
  justify-content: center;
  gap: 5%;
  text-decoration: underline;
}

/*フォント */
body {
  font-size: 4vw;
  line-height: 1.8;
}

/*======================================================
 * ▽▽---共通スタイル---▽▽
 * =======================================================*/
html {
  scroll-padding: 15vw;
}

section {
  padding: 15vw 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;
  width: 70vw;
  height: 15vw;
  margin: 7vw auto 0;
  position: relative;
  font-size: 4.2vw;
}
.com-btn:link, .com-btn:visited {
  color: var(--white);
}
.com-btn::after {
  content: "";
  display: block;
  width: 4vw;
  height: 4vw;
  position: absolute;
  background: url("../img/common/arw-wt.png") center/contain no-repeat;
  inset: 0 5vw 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: 7vw;
  color: var(--main-color);
  font-weight: 600;
  margin-bottom: 7vw;
}
.ttl01 span {
  padding: 0 7vw 2vw;
  background: url(../img/common/ttl-le.png) left bottom/5vw no-repeat, url(../img/common/ttl-ri.png) right bottom/5vw no-repeat;
}

.ttl02 {
  font-size: 6vw;
  font-weight: 600;
}

.ttl03 {
  font-size: 5vw;
  font-weight: 600;
}

.ttl04 {
  font-size: 4.2vw;
  font-weight: 500;
}

.txt-cap {
  font-size: 3.5vw;
}

.com-add-box {
  gap: 5vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 7vw;
}
.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: 9vw;
}
.com-tel a {
  background: url("../img/common/tel-icon.png") left center/8vw no-repeat;
  padding-left: 9vw;
  box-sizing: border-box;
}
.com-tel.ft-wt a {
  background-image: url(../img/common/tel-icon-wt.png);
}

.com-kado {
  border-radius: 3vw;
}
.com-kado > img {
  border-radius: 3vw;
}

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

/*infotableスタイル*/
.com-desc-tbl .dl-item {
  font-size: 3.2vw;
  display: flex;
  justify-content: space-between;
}
.com-desc-tbl .dl-item:not(:last-child) {
  border-bottom: 1px solid #e4e4e4;
}
.com-desc-tbl .dl-item dt {
  color: var(--main-color);
  width: 30%;
  padding: 5% 3%;
}
.com-desc-tbl .dl-item dd {
  line-break: loose;
  width: 70%;
  padding: 5% 0;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  width: 100%;
  background: #fff;
  z-index: 100;
  padding: 5vw 4vw;
}
#header .hd-logo {
  display: inline-block;
  width: 40%;
}
#header .hd-logo img {
  display: block;
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  padding: 5vw 5vw;
  display: grid;
  gap: 5vw;
  background: url(../img/top/mv-bg.jpg) bottom/cover no-repeat;
}
.top-mv .mv-le .mv-ct {
  width: 39.1%;
}
.top-mv .mv-le .mv-ill {
  width: 28.33%;
  left: 0;
  bottom: 0;
}
.top-mv .mv-ri {
  display: grid;
  gap: 5vw;
}
.top-mv .mv-ri .mv-box .txt-box {
  display: grid;
  justify-items: center;
  gap: 10px;
}
.top-mv .mv-box {
  position: relative;
  z-index: 1;
  border: 10px solid var(--sub-color);
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 5vw;
  gap: 3vw;
}
.top-mv .mv-box .mv-ct img {
  width: 100%;
}
.top-mv .mv-box .com-txt {
  text-align: center;
}
.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: 14px;
  height: 14px;
  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: 34%;
}
.top-mv .mv-02 .mv-ill {
  width: 20.6%;
  left: 0;
  bottom: 0;
}
.top-mv .mv-03 .mv-ct {
  width: 37%;
}
.top-mv .mv-03 .mv-ill {
  width: 25%;
  left: 0;
  bottom: 0;
}

/*---------------------------△△---MV---△△------------------------*/
#top-intro {
  padding-bottom: 40vw;
  background: url(../img/top/other-ill.png) bottom right 30%/25% no-repeat, url(../img/top/other-bg.jpg) center/cover;
}
#top-intro .other-li {
  display: grid;
  gap: 10vw;
  margin-bottom: 15vw;
  padding: 0 5vw;
}
#top-intro .other-li .other-item {
  display: grid;
  align-content: center;
  position: relative;
  padding: 12vw 5%;
  background: url(../img/top/other-box-bg.png) center/cover;
}
#top-intro .other-li .other-item .ttl02 {
  position: absolute;
  inset: -5vw 0 auto 0;
  margin: 0 auto;
}
#top-intro .other-li .other-item .ttl02 span {
  padding: 3px 5vw;
}
#top-intro .other-li .other-item .other-ttl {
  display: grid;
  gap: 3vw;
  justify-items: center;
}
#top-intro .other-li .other-item .com-btn {
  margin-top: 30px;
}
#top-intro .other-li .other-01 {
  background: url(../img/top/other-hart.png) top 28vw right 25vw/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: 80%;
}
#top-intro .other-li .other-01 .other-ttl .img-02 {
  width: 70%;
}
#top-intro .other-li .other-02 .sub-ttl {
  text-align: center;
  margin-bottom: 20px;
}
#top-intro .other-li .other-02 .sub-ttl img {
  width: 90%;
}
#top-intro .other-li .other-02 .other-ttl .img-01 {
  width: 80%;
}
#top-intro .other-li .other-02 .other-ttl .img-02 {
  width: 70%;
}
#top-intro .inbox .ttl02 {
  margin-bottom: 5vw;
}
#top-intro .inbox .ttl02 span {
  padding: 3vw 5vw;
}
#top-intro .inbox .ttl03 {
  margin-bottom: 20px;
}
#top-intro .inbox .com-txt {
  font-size: 4.2vw;
}

.com-gd-li {
  display: grid;
  gap: 10vw;
}
.com-gd-li li {
  padding: 10vw 5vw;
  justify-items: center;
}
.com-gd-li li .ttl03 {
  margin-bottom: 3vw;
}
.com-gd-li .srv-item {
  padding: 5vw 5vw;
}
.com-gd-li .srv-item .srv-ill {
  text-align: center;
  margin: 0 auto 3vw;
  height: 30vw;
}
.com-gd-li .srv-item .srv-ill img {
  height: 100%;
  width: auto;
}
.com-gd-li .srv-item .ttl03 {
  margin-bottom: 3vw;
}
#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/50% no-repeat, url(../img/top/gree-ri-01.png) right 2.3% bottom 35px/60% no-repeat;
  top: 0;
  left: 0;
}
#top-greeting.season-02 {
  position: relative;
}
#top-greeting.season-02 .gree-box {
  position: relative;
}
#top-greeting.season-02 .gree-box::after {
  content: "";
  display: block;
  width: 30%;
  height: 100%;
  position: absolute;
  background: url("../img/top/gree-le-02.png") center/contain no-repeat;
  left: -6vw;
  bottom: -10vw;
  background-position: bottom;
}
#top-greeting.season-02 .gree-box::before {
  content: "";
  display: block;
  width: 40%;
  height: 100%;
  position: absolute;
  background: url("../img/top/gree-ri-02.png") center/contain no-repeat;
  right: 0;
  top: -7vw;
  background-position: top;
}
#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/60% 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: 30%;
  height: 100%;
  position: absolute;
  background: url("../img/top/gree-ri-03.png") center/contain no-repeat;
  right: 0;
  bottom: 0;
  background-position: bottom;
}
#top-greeting.season-04 .gree-box {
  position: relative;
}
#top-greeting.season-04 .gree-box::after {
  content: "";
  display: block;
  width: 30%;
  height: 100%;
  position: absolute;
  background: url("../img/top/gree-le-04.png") center/contain no-repeat;
  left: -5vw;
  top: -5vw;
  background-position: top;
}
#top-greeting.season-04 .gree-box::before {
  content: "";
  display: block;
  width: 40%;
  height: 100%;
  position: absolute;
  background: url("../img/top/gree-ri-04.png") center/contain no-repeat;
  right: 0;
  bottom: -5vw;
  background-position: bottom;
}
#top-greeting .gree-box {
  padding: 10vw 5%;
}
#top-greeting .gree-box .gree-img {
  position: relative;
  margin-bottom: 5vw;
}
#top-greeting .gree-box .gree-img::after {
  content: "";
  display: block;
  width: 20%;
  height: 100%;
  position: absolute;
  background: url("../img/top/gree-ill.png") center/contain no-repeat;
  bottom: -5vw;
  right: -5vw;
  background-position: bottom;
}
#top-greeting .gree-box .txt-box .name {
  margin-top: 3vw;
}

/*--------▽▽---NEWS---▽▽---------- */
#top-news {
  background: url(../img/top/news-bg.jpg) center/cover;
}
#top-news .inbox .news-area {
  display: grid;
  gap: 10vw;
}
#top-news .inbox .news-area .news-box {
  padding: 5vw;
}
#top-news .inbox .news-area .news-box:nth-child(1) {
  width: 100%;
}
#top-news .inbox .news-area .news-box .ttl03 {
  margin-bottom: 5vw;
}
#top-news .inbox .news-area .news-box .ttl03 span {
  padding: 0 5vw;
}
#top-news .inbox .news-area .news-box .news-list {
  width: 100%;
  display: grid;
  gap: 5vw;
}
#top-news .inbox .news-area .news-box .news-list .news-item a {
  display: block;
  padding: 3vw 5vw;
}
#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%;
}

/*------------△△---MV---△△---------*/
#top-info {
  position: relative;
}
#top-info::before {
  content: "";
  display: block;
  width: 25%;
  height: 100%;
  position: absolute;
  background: url("../img/top/info-ill.png") center/contain no-repeat;
  background-position: bottom;
  bottom: 0;
  left: -3vw;
}
#top-info .inbox .map {
  overflow: hidden;
  margin-top: 10vw;
}

#footer {
  padding: 10vw 0;
}
#footer .ft-area .ft-le .ft-logo {
  display: inline-block;
  margin-bottom: 5vw;
}
#footer .ft-area .ft-le .ft-add-box {
  margin-bottom: 5vw;
}
#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;
}
#footer .ft-area .ft-ri .ft-nav-box {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 5vw;
  margin: 10vw 0;
}
#footer .ft-area .ft-ri .ft-nav-box .nav-list {
  display: grid;
  gap: 3vw;
  margin-bottom: 5vw;
}
#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 {
  text-align: center;
  font-size: 3.2vw;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
/*---------------------------▽▽---SV---▽▽------------------------*/
.sv {
  height: 40vw;
  display: grid;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.sv .sv-catch {
  padding: 2vw 5vw;
  font-size: 6vw;
  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: 5vw;
}

/*---------------------------△△---SV---△△------------------------*/
/*----------▽▽---breadcrumbs---▽▽-------*/
.breadcrumbs-area {
  position: relative;
  z-index: 10;
}
.breadcrumbs-area .breadcrumbs {
  white-space: nowrap;
  overflow-x: scroll;
  overflow-y: hidden;
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
  top: 2vw;
  font-size: 3.5vw;
}
.breadcrumbs-area .breadcrumbs li:not(:first-child)::before {
  content: ">";
  padding: 0 10px;
}

/*---------------------------△△---breadcrumbs---△△------------------------*/
.com-worry {
  padding-bottom: 34vw;
  position: relative;
}
.com-worry::after {
  content: "";
  display: block;
  width: 80%;
  height: 40%;
  position: absolute;
  background: url("../img/common/worry-ill.png") center/contain no-repeat;
  inset: auto 0 0 0;
  margin: 0 auto;
  background-position: bottom;
}
.com-worry .ttl01 span {
  display: inline-block;
}
.com-worry ul {
  padding: 10vw 5%;
  position: relative;
  filter: drop-shadow(5px 5px #ffe9e7);
}
.com-worry ul::before {
  content: "";
  display: block;
  width: 20%;
  height: 100%;
  position: absolute;
  background: url("../img/common/fuki.png") center/contain no-repeat;
  inset: auto 0 -15vw 0;
  margin: 0 auto;
  background-position: bottom;
}
.com-worry ul li {
  padding: 3vw;
  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/4vw no-repeat;
  padding-left: 4vw;
  box-sizing: border-box;
}

.com-charm {
  padding-top: 40vw;
  position: relative;
}
.com-charm::before {
  content: "";
  display: block;
  width: 35%;
  height: 20%;
  position: absolute;
  background: url("../img/common/charm-ill.png") center/contain no-repeat;
  top: 5vw;
  left: 0;
  background-position: top;
}
.com-charm .ttl01 {
  display: grid;
  justify-items: center;
  gap: 3vw;
}

.com-sup .ttl01 span {
  display: inline-block;
}
.com-sup ul {
  display: grid;
  gap: 30px;
}
.com-sup ul li {
  display: grid;
  justify-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10vw 5%;
  gap: 5vw;
}
.com-sup ul li .ttl03 {
  width: 100%;
  display: flex;
}
.com-sup ul li .ttl03::before {
  content: "・";
  font-size: 1.7em;
  line-height: 1;
}
.com-sup ul li .com-txt {
  text-align: justify;
}

#com-contact {
  background: url(../img/top/news-bg.jpg) center/cover;
}
#com-contact .ttl01 {
  display: grid;
  justify-items: center;
  gap: 3vw;
  margin-bottom: 5vw;
}
#com-contact ul {
  padding-top: 10vw;
  position: relative;
  display: grid;
  gap: 5vw;
}
#com-contact ul::before {
  content: "";
  display: block;
  width: 20%;
  height: 100%;
  position: absolute;
  background: url("../img/top/gree-ill.png") center/contain no-repeat;
  bottom: -10vw;
  left: -5vw;
  background-position: bottom;
}
#com-contact ul li {
  padding: 10vw 0;
  display: grid;
  align-items: center;
  align-content: center;
}
#com-contact ul li .ttl02 {
  padding-bottom: 5vw;
  margin-bottom: 5vw;
  border-bottom: 1px solid #e4e4e4;
}
#com-contact .contact-price {
  width: 100%;
  height: 20vw;
  display: grid;
  place-items: center;
  margin: 15vw auto 0;
  border: 2px solid #fff;
  background: url(../img/common/contact-bg.jpg) bottom/cover;
}
#com-contact .contact-price span {
  width: 60%;
  position: relative;
  padding-right: 16px;
}
#com-contact .contact-price span::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  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: 10vw;
}
#voice .voice-list {
  display: grid;
  gap: 10vw;
}
#voice .voice-list .voice-item {
  padding: 10vw 5%;
}
#voice .voice-list .voice-item .voice-le {
  margin-bottom: 10vw;
}
#voice .voice-list .voice-item .voice-le .gender-img {
  width: 40%;
  margin: 0 auto 5vw;
}
#voice .voice-list .voice-item .voice-le .txt-cap {
  margin-top: 10px;
  padding: 5px;
}
#voice .voice-list .voice-item .voice-ri .ttl02 {
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 5vw;
  margin-bottom: 5vw;
}
#price-intro .inbox {
  position: relative;
}
#price-intro .inbox::before {
  content: "";
  display: block;
  width: 35%;
  height: 100%;
  position: absolute;
  background: url("../img/price/ill.png") center/contain no-repeat;
  background-position: bottom;
  left: 0;
  bottom: -15vw;
}
#price-intro .ttl01 {
  font-size: 6.2vw;
}
#price-intro .ttl01 span {
  display: inline-block;
}
#price-intro .com-kado {
  padding: 10vw 5%;
}
#price-intro .com-kado .com-txt {
  text-align: justify;
}

#price .ttl01 {
  margin-bottom: 30px;
}
#price .ttl02 {
  padding: 3vw 5vw;
  border-radius: 2vw;
  margin-top: 15vw;
  margin-bottom: 5vw;
}
#price .price-item {
  margin-bottom: 10vw;
  display: grid;
  gap: 5vw;
}
#price .price-item .ttl03 {
  display: flex;
  align-items: center;
}
#price .price-item .ttl03::before {
  content: "・";
  font-size: 1.4em;
  line-height: 1;
}
#price .price-item dl {
  padding: 5vw 3vw;
}
#price .price-item dl .dl-item {
  padding: 3vw 0;
  justify-content: space-between;
}
#price .price-item dl .dl-item:not(:last-of-type) {
  border-bottom: 1px solid #e4e4e4;
}

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

/*---------------------------▽▽---site.html---▽▽------------------------*/
#site-map .site-list {
  padding: 10% 0 30%;
}
#site-map .site-list li {
  font-size: 4.2vw;
}
#site-map .site-list li a {
  display: block;
  padding: 6% 0;
  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.html---△△------------------------*/
/*---------------------------▽▽---404.html---▽▽------------------------*/
#notfound .inbox .txt-blc {
  padding: 10% 0 20%;
}
#notfound .inbox .txt-blc a {
  text-decoration: underline;
  color: var(--font-color);
}

/*---------------------------△△---404.html---△△------------------------*/
/*---------------------------▽▽---privacy.html---▽▽------------------------*/
#privacy .privacy-box {
  padding: 0;
  margin-bottom: 10vw;
}
#privacy .privacy-box .ttl02 {
  border-radius: 2vw;
  color: #fff;
  font-size: 5vw;
  text-align: left;
  margin-bottom: 5vw;
  line-height: 1.5;
  background: var(--main-color);
  padding: 3vw 2vw;
}

/*---------------------------△△---privacy.html---△△------------------------*/
/*---------------------------▽▽---news.html---▽▽------------------------*/
#news .select-area {
  margin-bottom: 10vw;
  position: relative;
}
#news .select-area .select-box {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-weight: 500;
}
#news .news-area {
  margin-bottom: 10vw;
}
#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: 8% 0;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box {
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
  gap: 2vw 3%;
  font-size: 3.5vw;
  margin-bottom: 4vw;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box time {
  width: 30%;
  line-height: 2;
  font-weight: 500;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box .tag-list {
  width: 68%;
}
#news .news-area .news-list .news-item a .news-txt-box .list-ttl {
  font-weight: 500;
  font-size: 4.2vw;
  margin-bottom: 3vw;
  letter-spacing: 0.1em;
}
#news .news-area .news-list .news-item a .news-txt-box .list-txt {
  font-size: 3.4vw;
  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: 35%;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box {
  width: 60%;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box .data-box {
  flex-wrap: wrap;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box .data-box time {
  width: 100%;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box .data-box .tag-list {
  width: 100%;
}

/*detail */
#detail {
  padding-bottom: 30vw;
}
#detail .detail-box {
  margin-bottom: 20vw;
}
#detail .detail-box .data-box {
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
  gap: 4%;
  font-size: 3.5vw;
  padding-top: 10%;
  margin-bottom: 5vw;
}
#detail .detail-box .data-box time {
  line-height: 2;
  font-weight: 500;
}
#detail .detail-box .data-box .tag-list {
  width: 68%;
  display: flex;
  flex-wrap: wrap;
  gap: 2vw 1vw;
  font-size: 3.3vw;
}
#detail .detail-box .data-box .tag-list .tag a {
  display: block;
  width: 100%;
  height: 100%;
}
#detail .detail-box .detail-ttl {
  letter-spacing: 0.05em;
  text-align: left;
  font-size: 5.5vw;
  font-weight: 500;
  padding: 0 0 4%;
  margin-bottom: 5vw;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
#detail .detail-box .detail-txt {
  font-size: 4vw;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
#detail .detail-box .detail-txt img {
  margin: 5%;
}

.pagenation {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3%;
  margin-top: 10vw;
}
.pagenation li {
  width: 9vw;
  height: 9vw;
  box-sizing: border-box;
  border: 2px solid var(--main-color);
  font-size: 4vw;
  background: #fff;
}
.pagenation li a, .pagenation li span {
  padding: 20% 35%;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 1;
}
.pagenation .current {
  background: var(--main-color);
  color: #fff;
}

.pagenation-detail {
  position: relative;
  margin-top: 10%;
}
.pagenation-detail p a {
  background: var(--main-color);
  border-radius: 5px;
  padding: 5% 0;
  box-sizing: border-box;
  text-align: center;
  font-size: 3.5vw;
  letter-spacing: 0.2em;
  position: absolute;
  color: #fff;
}
.pagenation-detail .left a {
  top: 0;
  left: 0;
  width: 20%;
}
.pagenation-detail .right a {
  top: 0;
  right: 0;
  width: 20%;
}
.pagenation-detail .center a {
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 35%;
}

/*---------------------------△△---news.html---△△------------------------*/
/*---------------------------▽▽---contact.html---▽▽------------------------*/
#contact .table-wrapper {
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  margin-bottom: 20%;
}
#contact .table-wrapper .contact-form-table tr {
  margin-bottom: 5%;
}
#contact .table-wrapper .contact-form-table tr th {
  width: 100%;
  box-sizing: border-box;
  background: var(--sub-color);
  padding: 3% 2% 3%;
  margin-bottom: 3%;
}
#contact .table-wrapper .contact-form-table tr th .required-mark {
  font-size: 3.5vw;
  background: var(--main-color);
  padding: 1% 2%;
  margin: -0.5%;
  float: right;
}
#contact .table-wrapper .contact-form-table tr th .upload-notice {
  display: inline-block;
  margin-top: 5%;
  line-height: 1.5;
}
#contact .table-wrapper .contact-form-table tr td {
  width: 100%;
  box-sizing: border-box;
}
#contact .table-wrapper .contact-form-table tr td .upload-item-wrap .thumb {
  width: 40vw;
  height: 40vw;
  margin-bottom: 5%;
}
#contact .table-wrapper .contact-form-table tr td .ancion-btn-wrap {
  width: 30vw;
}
#contact .table-wrapper .contact-form-table tr td .ancion-btn-wrap .ancion-btn {
  font-size: 3vw;
  width: 100%;
  box-sizing: border-box;
  padding: 12% 0;
  margin-bottom: 10%;
  line-height: 1;
}
#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 {
  font-family: "游ゴシック", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  height: 100%;
  padding: 4%;
  font-size: 4vw;
  box-shadow: none;
}
#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 textarea {
  height: auto;
}
#contact .table-wrapper .contact-form-table tr td .p-postal-code {
  width: 30%;
}
#contact .table-wrapper .contact-form-table tr td .birth-txt {
  width: 30%;
}
#contact .table-wrapper .contact-form-table tr td .error-text {
  font-family: "游ゴシック", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-weight: 500;
}
#contact .table-wrapper .contact-form-table tr .select-area {
  padding: 4% 0;
  display: inline;
  position: relative;
}
#contact .table-wrapper .contact-form-table tr .select-area .select-box {
  width: 60%;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 10%;
}
#contact .table-wrapper .contact-form-table tr .select-area::after {
  content: "";
  display: block;
  width: 1vw;
  height: 1vw;
  position: absolute;
  border-right: 1px solid #262626;
  border-bottom: 1px solid #262626;
  transform: rotate(45deg);
  right: 3vw;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#contact .table-wrapper .contact-form-table tr .check-box-confirmation {
  display: flex;
  flex-wrap: wrap;
  gap: 3vw;
}

.privacy-agree {
  display: block;
}
.privacy-agree a {
  text-decoration: underline;
}

.check {
  margin: 10% auto 0px;
}
.check .contact-recaptcha-wrap {
  margin: 0 auto 15%;
}

.contact-submits-wrap {
  border-radius: 5px;
  width: 80%;
  margin: 0 auto 0;
}
.contact-submits-wrap .contact-check-btn {
  width: 100%;
  height: 15vw;
  color: #fff;
  font-size: 4vw;
  letter-spacing: 0.2em;
  transition: 0.3s;
  cursor: pointer;
  position: relative;
  margin: 0;
  border-radius: 5px;
  background: var(--main-color);
}
.contact-submits-wrap .contact-back-btn {
  width: 80%;
  border: none;
  background: #bebebe;
  margin-bottom: 10%;
  border-radius: 5px;
  font-size: 4vw;
}

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

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

/*---------------------------▽▽---contact.html---▽▽------------------------*/