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

.sp-none {
  display: none;
}

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

/*すまほセレクトボックス*/
.select-area {
  position: relative;
  width: 70vw;
  height: 15vw;
}
.select-area .select-box {
  font-size: 3.5vw;
  font-weight: 500;
}
.select-area .select-box option {
  font-size: 3vw;
}
/*ここから下がドロワー設定項目 */
/*drawer btn 上下左右で設定可能 */
.sp-menu-btn-wrp {
  top: 10px;
  right: 10px;
  bottom: auto;
  left: auto;
  background: var(--main-color);
  border-radius: 0;
}

.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: 5vw 5% 30vw;
}

#drawer-nav .drawer-logo {
  width: 50%;
}

#drawer-nav .nav {
  margin-bottom: 10vw;
}

#drawer-nav .nav .drawer-link {
  box-sizing: border-box;
  padding: 3vw 2vw;
  border-bottom: 1px solid var(--main-color);
  font-size: 4vw;
  color: var(--font-color);
  font-weight: 500;
  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 .show 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 a {
  display: block;
  width: 100%;
  min-width: 25px;
}
.sns-list li a img {
  display: block;
  max-width: none;
  width: 100%;
}

/*rink-list */
.drawer-sub-nav__list {
  font-size: 3vw;
  margin-top: 10vw;
  display: flex;
  justify-content: center;
  gap: 5%;
  text-decoration: underline;
}
.drawer-sub-nav__list li {
  font-size: 3.5vw;
}

.drawer-info {
  gap: 3rem;
}

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

/*======================================================
 * ▽▽---共通スタイル---▽▽
 * =======================================================*/
html {
  scroll-padding: 0;
  font-size: 2.1052631579vw;
}

section {
  padding: 8rem 0;
}

.dl-item {
  display: flex;
}

.inbox-02 {
  width: 90%;
  margin: 0 auto;
}

.com-txt {
  font-size: 1.8rem;
  line-height: 2.2;
  font-weight: 500;
}
.com-txt:not(:last-of-type) {
  margin-bottom: 3rem;
}

.com-btn {
  font-size: 1.8rem;
  width: 70vw;
  height: 12vw;
  display: grid;
  margin: 1rem auto 0;
  place-items: center;
  background: var(--main-color);
  color: var(--white);
}
.com-btn:link, .com-btn:visited {
  color: var(--white);
}
.com-btn span {
  transition: 0.3s;
}
.com-btn:hover {
  opacity: 1;
  background: var(--bd-color) !important;
  letter-spacing: 0.2em;
}
.com-btn:hover span {
  letter-spacing: 0.2em;
}
.com-btn.mail-btn {
  background: var(--accent-color);
}
.com-btn.mail-btn span {
  background: url("../img/common/mail-icon.png") left center/1.6rem no-repeat;
  padding-left: 3rem;
  box-sizing: border-box;
}
.com-btn.line-btn span {
  padding: 10px 0;
  background: url("../img/common/line-icon.svg") left center/30px no-repeat;
  padding-left: 45px;
  box-sizing: border-box;
}

.mail-btn-box {
  gap: 2rem;
}

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

.ttl01 {
  display: grid;
  justify-items: center;
  font-size: 2.8rem;
  padding-bottom: 4rem;
  margin-bottom: 6rem;
  text-align: center;
  background: url(../img/common/ttl-deco-btm.png) bottom/80% 2.5rem no-repeat;
}
.ttl01 small {
  color: var(--font-color-02);
  font-size: 2.3rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.ttl02 {
  font-size: 2.6rem;
  color: var(--font-color-02);
}

.ttl03 {
  font-size: 2.2rem;
  color: var(--font-color-02);
}

.ttl04 {
  font-size: 2rem;
  color: var(--font-color-02);
}

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

.ttl-deco {
  background: url("../img/common/ttl-deco-le.png") left top 0.8rem/2rem no-repeat;
  padding-left: 2.6rem;
  box-sizing: border-box;
}

.com-bd-box {
  background: #fff;
  outline: 1px solid var(--bd-color);
  outline-offset: -0.8rem;
  box-shadow: 0 0 9px rgba(110, 110, 110, 0.3);
  padding: 10vw 7vw;
}

.img-bd {
  border: 0.4rem solid #000;
  border-image: linear-gradient(45deg, #e6c852, #9b8429) 1;
}

.com-li-01 {
  display: grid;
  gap: 4rem;
}
.com-li-01 .com-img {
  aspect-ratio: 1.32;
  margin-bottom: 1rem;
}

.img-box > img {
  width: 100%;
}

.com-tel {
  display: grid;
  justify-items: center;
}
.com-tel a {
  font-size: 4rem;
  background: url("../img/common/tel-icon.png") left center/2.2rem no-repeat;
  padding-left: 3.5rem;
  box-sizing: border-box;
}

.bd-li > li, .bd-li > .dl-item {
  border-bottom: 1px solid var(--font-color);
  padding-bottom: 1.5rem;
}
.bd-li > li:last-child, .bd-li > .dl-item:last-child {
  border: none;
}
.bd-li > li {
  padding-bottom: 5rem;
}
.bd-li > .dl-item {
  padding: 2rem 0;
}

.bd-b {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--font-color);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.tag-list .tag {
  border-radius: 4px;
  padding: 0 5px;
}

.bg-01 {
  background: var(--bd-grd);
}

.bg-02 {
  background: url(../img/common/bg-pt-01.jpg) center/cover;
}

.bg-03 {
  background: url(../img/common/bg-pt-02.jpg) center/cover;
}

/*infotableスタイル*/
.com-desc-tbl .dl-item {
  font-size: 1.8rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
}
.com-desc-tbl .dl-item:not(:last-child) {
  border-bottom: 1px solid var(--bd-color);
}
.com-desc-tbl .dl-item dt {
  color: var(--font-color-02);
  width: 30%;
}
.com-desc-tbl .dl-item dd {
  line-break: loose;
  width: 70%;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 100;
  padding: 3vw 5vw;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 0 8px rgba(110, 110, 110, 0.3);
}
#header .hd-logo {
  width: 55%;
}
#header .hd-logo img {
  display: block;
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
#top-mv {
  margin-top: 21vw;
  height: 50;
  display: grid;
}
#top-mv img {
  width: 100%;
}
#top-mv .mv-le {
  order: 2;
  height: 60vw;
  background: url(../img/top/mv-img.jpg) center/cover;
  padding-top: 10%;
}
#top-mv .mv-le .mv-ct {
  width: 80%;
  margin: 0 auto 0;
}
#top-mv .mv-li li {
  overflow: hidden;
}
#top-mv .mv-li li a {
  display: grid;
  place-items: center;
  align-content: center;
  height: 100%;
  position: relative;
  z-index: 1;
  height: 40vw;
}
#top-mv .mv-li li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
  z-index: -1;
  transition: 0.3s;
  opacity: 0;
}
#top-mv .mv-li li a .com-bd-box {
  outline-offset: -5px;
  padding: 1rem;
  width: 83%;
  transition: 0.3s;
  font-size: 2.5rem;
}
#top-mv .mv-li li a .com-bd-box small {
  font-size: 0.85em;
}
#top-mv .mv-li li a:hover {
  opacity: 1;
  transform: scale(1.05);
}
#top-mv .mv-li li a:hover::after {
  opacity: 1;
}
#top-mv .mv-li li a:hover .com-bd-box {
  transform: scale(0.95);
}
#top-mv .mv-li .mv-01 a {
  background: url(../img/top/mv-01.jpg) center/cover;
}
#top-mv .mv-li .mv-02 a {
  background: url(../img/top/mv-02.jpg) center/cover;
}
#top-mv .mv-li .mv-03 a {
  background: url(../img/top/mv-03.jpg) center/cover;
}

/*---------------------------△△---MV---△△------------------------*/
#top-service .ttl02 {
  margin-bottom: 3rem;
}
#top-service ul {
  display: grid;
  gap: 6rem;
}
#top-service ul li .txt-box {
  display: grid;
  gap: 2.5rem;
}
#top-service ul li .img-box {
  top: 0;
}
#top-service ul li .com-btn {
  font-size: 2rem;
}
#top-service ul li:nth-child(odd) .txt-box {
  margin-left: auto;
}
#top-service ul li:nth-child(odd) .img-box {
  left: 0;
}
#top-service ul li:nth-child(even) .img-box {
  right: 0;
}

#top-greeting .img-box {
  width: 70%;
  margin: 0 auto 3rem;
}
#top-achieve .com-txt {
  text-align: justify;
  padding: 0 3vw;
}
#top-achieve .com-btn {
  margin: 3rem auto 6rem;
}
#top-achieve .achieve-li {
  display: grid;
  width: 90%;
  margin: 0 auto;
}
/*--------▽▽---NEWS---▽▽---------- */
#top-news .inbox {
  position: relative;
}
#top-news .inbox .ttl01 {
  margin-bottom: 4rem;
  padding: 0;
  display: grid;
  align-items: center;
  background: none;
  text-align: left !important;
  justify-items: start;
  line-height: 1;
}
#top-news .inbox .news-list {
  display: flex;
  overflow-x: auto;
  gap: 3.5rem;
}
#top-news .inbox .news-list .news-item {
  width: 25rem;
  flex-shrink: 0;
}
#top-news .inbox .news-list .news-item a {
  padding: 2rem 0;
  display: flex;
  flex-wrap: wrap;
}
#top-news .inbox .news-list .news-item a:hover {
  transform: translateY(-10px);
}
#top-news .inbox .news-list .news-item a .com-img {
  width: 100%;
}
#top-news .inbox .news-list .news-item a h4 {
  width: 100%;
}
#top-news .inbox .news-list .news-item a .tag-list {
  max-width: 60%;
}
#top-news .inbox .news-list .news-item a .txt-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1rem;
}
#top-news .inbox .com-btn {
  margin-top: 5rem;
}

/*------------△△---NEWS---△△---------*/
.map {
  height: 50rem;
}

.btm-fix {
  width: 100%;
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 0;
  padding: 1.5rem 2rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.btm-fix .sp-btn {
  width: 30px;
}
.btm-fix .mail-btn-box {
  display: flex;
  align-items: center;
}
.btm-fix .com-tel a {
  font-size: 3rem;
}

#footer {
  padding: 9rem 0;
  position: relative;
}
#footer .ft-area .ft-le {
  display: grid;
  justify-items: center;
  gap: 4rem;
}
#footer .ft-area .ft-le .ft-info-box {
  display: grid;
  gap: 1rem;
}
#footer .ft-area .ft-le .ft-info-box .ft-info {
  display: grid;
  gap: 5px;
}
#footer .ft-area .ft-ri {
  display: grid;
  justify-items: center;
  gap: 2rem;
  margin-top: 5rem;
}
#footer .ft-area .ft-btm {
  padding-top: 2rem;
  margin-top: 5rem;
  border-top: 1px solid var(--bd-color);
}
#footer .ft-area .ft-btm .nav-list {
  display: grid;
  justify-items: center;
  margin-top: 5rem;
  justify-content: center;
  gap: 4rem 2rem;
}
#footer .ft-area .ft-btm .nav-list .nav-item {
  line-height: 1;
}
#footer .ft-area .ft-btm .nav-list:last-child {
  font-size: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 0 5rem;
}
#footer .copyright {
  font-size: 1rem;
  margin-top: 7rem;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
#organize-greeting .img-box {
  width: 70%;
  margin: 0 auto 3rem;
}
#organize-mov .inbox {
  padding: 1rem;
}
#organize-mov a {
  height: 25rem;
  background: url(../img/organize/mov.jpg) center/cover;
}
#organize-mov a .ttl02 {
  outline-offset: -0.5rem;
  font-size: 2.5rem;
  padding: 2rem;
  gap: 0.5rem;
}
#organize-mov a .ttl02 small {
  font-size: 0.75em;
  display: flex;
  gap: 2rem;
  align-items: center;
}

/*特徴　共通スタイル*/
.feature-content .feature-li {
  gap: 4rem;
}
.feature-content .feature-li li {
  padding: 0 0 4rem;
}
.feature-content .feature-li li .ttl03 {
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.feature-content .feature-li li .ttl03 .num {
  line-height: 1;
  font-size: 0.85em;
  width: 12.6rem;
  padding: 0.3rem;
}

/*対応内容　共通スタイル*/
.service-content .service-li {
  display: grid;
  gap: 5rem;
}
.service-content .service-li li .img-box {
  width: 80%;
  margin: 0 auto 1.5rem;
}
.service-content .service-li li .ttl04 {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 1rem;
}
.service-content .service-li li .ttl04::before {
  content: "";
  display: block;
  width: 1rem;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  background: var(--sub-color);
  left: 0;
  top: 1.2rem;
}
.service-content .service-li li .ttl04 .num {
  line-height: 1;
  font-size: 0.85em;
  width: 12.6rem;
  padding: 0.3rem;
}

/*対応エリア　共通スタイル*/
.area-content .com-bd-box {
  display: grid;
  gap: 4rem;
  justify-items: center;
}
/*料金目安表　共通スタイル*/
.price-content .bd-li {
  margin-top: 6rem;
}
.price-content .bd-li .dl-item {
  display: grid;
}
/*作業の流れ　共通スタイル*/
.flow-content .flow-li {
  gap: 5rem;
}
.flow-content .com-bd-box {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 2rem;
}
.flow-content .com-bd-box:not(:last-child)::before {
  content: "";
  display: block;
  width: 2px;
  height: 5rem;
  position: absolute;
  background: var(--sub-color);
  inset: auto 0 -5rem 0;
  margin: 0 auto;
}
.flow-content .ill-box {
  width: 40%;
}
.flow-content .txt-box .ttl03 {
  margin-bottom: 1rem;
}
.flow-content .txt-box .ttl03 small {
  font-size: 0.9em;
}
.flow-content .txt-box .flow-contact {
  display: grid;
  justify-items: center;
  gap: 2rem;
  margin-top: 4rem;
}

#common-voice {
  background: url(../img/common/voice-bg.jpg) center/cover;
}
#common-voice .btn-box {
  display: grid;
  gap: 2rem;
  margin-top: 4rem;
}
#achieve .btn-li {
  display: grid;
  gap: 2rem;
  margin-bottom: 7rem;
}
#achieve .ttl02 {
  margin-bottom: 4rem;
}
#achieve .achieve-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4rem 0;
}
#achieve .achieve-list > li {
  width: 48%;
}
#achieve .achieve-list > li a h5 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.achieve-tag-list .tag {
  font-size: 1.4rem;
  padding: 0.5rem 1rem;
}

.achieve-detail .com-img {
  aspect-ratio: 1.32;
}
.achieve-detail .achieve-tag-list {
  display: grid;
  justify-items: start;
  margin-bottom: 1rem;
}
.achieve-detail .achieve-tag-list .tag {
  padding: 0.5rem 1rem;
}
.achieve-detail time {
  margin-bottom: 0.5rem;
  font-size: 2rem;
  display: inline-block;
}
.achieve-detail h3 {
  font-size: 2rem;
  color: var(--font-color);
  margin-bottom: 4rem;
}
.achieve-detail .bfaf-box {
  margin-top: 6rem 0 3rem;
}
.achieve-detail .bfaf-box .bf-box {
  width: 60%;
  position: relative;
  margin-bottom: 6rem;
}
.achieve-detail .bfaf-box .bf-box::after {
  content: "";
  display: block;
  width: 3rem;
  height: auto;
  aspect-ratio: 0.844;
  position: absolute;
  background: var(--sub-color);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  left: 10rem;
  bottom: -4rem;
  transform: rotate(90deg);
}
.achieve-detail .bfaf-box .af-box {
  width: 100%;
}
.achieve-detail .bfaf-box p {
  text-align: left;
}
.achieve-detail .bfaf-box p span {
  padding: 0;
}
.achieve-detail .com-txt {
  margin-top: 6rem;
}
.achieve-detail .voice-box {
  margin-top: 6rem;
  display: grid;
  justify-items: center;
  gap: 3rem;
}
.achieve-detail .voice-box .ttl01 {
  padding: 0;
  background: none;
  margin-bottom: 0;
  position: relative;
  width: 100%;
  line-height: 1;
}
.achieve-detail .voice-box .ttl01::before {
  content: "";
  display: block;
  width: 10rem;
  height: 1px;
  position: absolute;
  background: var(--bd-color);
  inset: 0 auto 0 0;
  margin: auto 0;
}
.achieve-detail .voice-box .ttl01::after {
  content: "";
  display: block;
  width: 10rem;
  height: 1px;
  position: absolute;
  background: var(--bd-color);
  inset: 0 0 0 auto;
  margin: auto 0;
}
.achieve-detail .voice-box .ill-box {
  width: 30%;
}
.achieve-detail .voice-box .com-bd-box {
  outline: none;
  position: relative;
}
.achieve-detail .voice-box .com-bd-box::after {
  content: "";
  display: block;
  width: 2.1rem;
  height: auto;
  aspect-ratio: 0.87;
  position: absolute;
  background: #fff;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  inset: -2rem 0 auto 0;
  margin: 0 auto;
  transform: rotate(90deg);
  box-shadow: 0 0 9px rgba(110, 110, 110, 0.3);
}
.achieve-detail .voice-box .com-bd-box .com-txt {
  margin: 0;
}

/*---------------------------▽▽---SV---▽▽------------------------*/
.sv {
  height: 28rem;
  background-size: cover;
  background-position: center;
  display: grid;
  justify-items: center;
  align-content: center;
  margin-top: 20vw;
}
.sv .sv-catch {
  line-height: 1.5;
  display: grid;
  align-content: center;
  padding: 2rem 3rem;
  min-height: 12rem;
  font-size: 2.8rem;
  width: 75%;
  outline-offset: -0.5rem;
  border-radius: 3.6rem;
  background: url(../img/sv/deco-le.png) left 1rem top 1rem/6rem no-repeat, url(../img/sv/deco-ri.png) right 1rem bottom 1rem/6rem no-repeat, #fff;
}
.sv .sv-catch small {
  font-size: 1.8rem;
}

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

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

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

.achieve-sv {
  background-image: url(../img/sv/achieve.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);
}

/*---------------------------△△---SV---△△------------------------*/
/*----------▽▽---breadcrumbs---▽▽-------*/
.breadcrumbs-area {
  position: relative;
  z-index: 10;
}
.breadcrumbs-area .breadcrumbs {
  white-space: nowrap;
  overflow-x: auto;
  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-other-page {
  background: var(--bd-grd);
}

/*---------------------------▽▽---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 .com-txt {
  padding: 10% 0 20%;
}
#notfound .inbox .com-txt a {
  text-decoration: underline;
  color: var(--font-color);
}

/*---------------------------△△---404.html---△△------------------------*/
/*---------------------------▽▽---privacy.html---▽▽------------------------*/
#privacy .privacy-box {
  padding: 0;
  margin-bottom: 10vw;
}
#privacy .privacy-box .ttl02 {
  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%;
  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;
  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;
  padding: 3vw 2vw;
  font-size: 3.8vw;
  margin-bottom: 3%;
}
#contact .table-wrapper .contact-form-table tr th .required-mark {
  font-size: 3.5vw;
  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;
  padding: 4%;
  font-size: 4vw;
  box-shadow: none;
}
#contact .table-wrapper .contact-form-table tr td label {
  font-size: 4vw;
  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---▽▽------------------------*/