@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.5rem;
  line-height: 1.5;
}

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

section {
  padding: 13rem 0;
}

.dl-item {
  display: flex;
}

.inbox-02 {
  width: 1280px;
  margin: 0 auto;
}

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

.com-btn {
  font-size: 1.5rem;
  width: 540px;
  height: 5rem;
  display: grid;
  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 {
  width: 228px;
  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 {
  width: 228px;
}
.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: 4.8rem;
  padding-bottom: 5.5rem;
  margin-bottom: 7rem;
  text-align: center;
  background: url(../img/common/ttl-deco-btm.png) bottom no-repeat;
}
.ttl01 small {
  color: var(--font-color-02);
  font-size: 3.2rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}

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

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

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

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

.ttl-deco {
  background: url("../img/common/ttl-deco-le.png") left center/3.2rem no-repeat;
  padding-left: 4.5rem;
  box-sizing: border-box;
}

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

#top-page .com-bd-box {
  padding: 7rem 10rem;
}

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

.com-li-01 {
  display: flex;
  flex-wrap: wrap;
  gap: 4.5rem;
}
.com-li-01 > li {
  width: 330px;
}
.com-li-01 .com-img {
  width: 100%;
  aspect-ratio: 1.32;
  margin-bottom: 1rem;
}

.com-tel {
  display: gridv;
  justify-items: center;
}
.com-tel a {
  font-size: 3rem;
  background: url("../img/common/tel-icon.png") left center/1.6rem no-repeat;
  padding-left: 2.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;
}

.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 {
  width: 690px;
  padding: 3rem 5rem !important;
}
.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);
  text-align: center;
  width: 120px;
}
.com-desc-tbl .dl-item dd {
  width: 430px;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 100;
  padding: 2rem 4rem;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 0 8px rgba(110, 110, 110, 0.3);
}
#header .hd-logo img {
  display: block;
}
#header .hd-right .hd-top {
  gap: 30px;
}
#header .hd-right .com-tel a {
  font-size: 3.6rem;
}
#header .hd-right #nav {
  margin-top: 15px;
}
#header .hd-right #nav .nav-list {
  gap: 35px;
}
#header .hd-right #nav .nav-list .nav-item {
  position: relative;
  font-size: 1.5rem;
}
#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(--bd-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 {
  margin-top: 14.5rem;
  font-size: 0.5208333333vw;
  height: 41vw;
  min-height: 524px;
}
#top-mv img {
  width: 100%;
}
#top-mv .mv-le {
  width: 40%;
  background: url(../img/top/mv-img.jpg) center/cover;
}
#top-mv .mv-le .mv-ct {
  width: 81%;
  margin: 15% auto 0;
}
#top-mv .mv-li {
  width: 60%;
}
#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;
}
#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: 2rem;
  width: 54%;
  transition: 0.3s;
  font-size: clamp(25px, 3.8em, 3.8rem);
}
#top-mv .mv-li li a .com-bd-box small {
  font-size: 0.89em;
}
#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: 6rem;
}
#top-service ul {
  display: grid;
  gap: 6rem;
}
#top-service ul li {
  min-height: 350px;
}
#top-service ul li .txt-box {
  width: 545px;
  display: grid;
  gap: 2.5rem;
}
#top-service ul li .img-box {
  position: absolute;
  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 .txt-box {
  width: 595px;
}

#top-achieve .com-btn {
  margin: 6rem 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 {
  width: 100%;
}
#top-news .inbox .news-list .news-item a {
  padding: 20px 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 {
  width: 210px;
}
#top-news .inbox .news-list .news-item a .txt-box {
  gap: 0 1rem;
}
#top-news .inbox .com-btn {
  width: 290px;
  position: absolute;
  right: 0;
  top: 0;
}

/*------------△△---NEWS---△△---------*/
#top-info .com-bd-box {
  padding: 2rem 7rem;
}

.map {
  height: 40rem;
}

.pagetop {
  position: fixed;
  z-index: 100;
  right: 10px;
  bottom: 20px;
}

#footer {
  padding: 9rem 0;
  position: relative;
}
#footer .ft-area .ft-le {
  width: 50%;
  display: grid;
  justify-items: start;
  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 {
  width: 50%;
  gap: 2rem;
}
#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 {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}
#footer .ft-area .ft-btm .nav-list .nav-item {
  line-height: 1;
}
#footer .copyright {
  font-size: 1rem;
  margin-top: 7rem;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
#organize-greeting .txt-box {
  width: 650px;
}

#organize-mov .inbox {
  padding: 1rem;
}
#organize-mov a {
  height: 37rem;
  background: url(../img/organize/mov.jpg);
}
#organize-mov a .ttl02 {
  outline-offset: -0.5rem;
  font-size: 3.6rem;
  padding: 4rem;
}
#organize-mov a .ttl02 small {
  font-size: 0.722em;
}

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

/*対応内容　共通スタイル*/
.service-content .service-li {
  padding: 7rem 6rem;
  gap: 4rem;
}
.service-content .service-li li {
  width: 293px;
}
.service-content .service-li li .img-box {
  margin-bottom: 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 {
  gap: 4rem;
}
.area-content .txt-box {
  width: 522px;
}

/*料金目安表　共通スタイル*/
.price-content .inbox {
  display: grid;
  justify-items: center;
}
.price-content .bd-li {
  display: inline-grid;
  margin-top: 6rem;
}
.price-content .bd-li .dl-item {
  gap: 5rem;
}
/*作業の流れ　共通スタイル*/
.flow-content .flow-li {
  gap: 5rem;
}
.flow-content .com-bd-box {
  padding: 5rem;
  position: relative;
}
.flow-content .com-bd-box:not(:last-child)::before {
  content: "";
  display: block;
  width: 2px;
  height: 5rem;
  position: absolute;
  background: var(--sub-color);
  left: 125px;
  bottom: -5rem;
}
.flow-content .txt-box {
  width: 790px;
}
.flow-content .txt-box .ttl03 {
  margin-bottom: 1rem;
}
.flow-content .txt-box .ttl03 small {
  font-size: 0.714em;
}
.flow-content .txt-box .flow-contact {
  gap: 3rem;
  margin-top: 4rem;
}

#common-voice {
  background: url(../img/common/voice-bg.jpg) center/cover;
}
#common-voice .btn-box {
  gap: 7rem;
  margin-top: 7rem;
}
#common-voice .btn-box .com-btn {
  width: 440px;
}

#achieve .btn-li {
  gap: 3rem;
  margin-bottom: 9rem;
}
#achieve .btn-li .com-btn {
  width: 290px;
}
#achieve .ttl02 {
  margin-bottom: 9rem;
}
#achieve .achieve-list > li a h5 {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.achieve-detail .com-img {
  aspect-ratio: 1.32;
}
.achieve-detail .achieve-tag-list {
  margin-bottom: 1rem;
}
.achieve-detail .achieve-tag-list .tag {
  font-size: 2rem;
  padding: 0.5rem 1rem;
}
.achieve-detail time {
  margin-bottom: 0.5rem;
  font-size: 2.2rem;
  display: inline-block;
}
.achieve-detail h3 {
  font-size: 2.2rem;
  color: var(--font-color);
  margin-bottom: 6rem;
}
.achieve-detail .bfaf-box {
  margin-top: 6rem 0 3rem;
}
.achieve-detail .bfaf-box .bf-box {
  width: 460px;
  position: relative;
}
.achieve-detail .bfaf-box .bf-box::after {
  content: "";
  display: block;
  width: 3.8rem;
  height: auto;
  aspect-ratio: 0.844;
  position: absolute;
  background: var(--sub-color);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  right: -6.5rem;
  top: 13rem;
}
.achieve-detail .bfaf-box .af-box {
  width: 530px;
}
.achieve-detail .bfaf-box p span {
  padding: 0;
}
.achieve-detail .com-txt {
  margin-top: 6rem;
}
.achieve-detail .voice-box {
  margin-top: 6rem;
}
.achieve-detail .voice-box .ttl01 {
  padding: 0;
  background: none;
  margin-bottom: 3rem;
  position: relative;
  width: 100%;
}
.achieve-detail .voice-box .ttl01::before {
  content: "";
  display: block;
  width: 330px;
  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: 330px;
  height: 1px;
  position: absolute;
  background: var(--bd-color);
  inset: 0 0 0 auto;
  margin: auto 0;
}
.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%);
  left: -2rem;
  top: 6rem;
  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: 520px;
  background-size: cover;
  background-position: center;
  display: grid;
  justify-items: center;
  align-content: center;
  margin-top: 14.5rem;
}
.sv .sv-catch {
  padding: 4rem;
  font-size: 4rem;
  width: 860px;
  outline-offset: -0.5rem;
  border-radius: 3.6rem;
  background: url(../img/sv/deco-le.png) left 1.4rem center no-repeat, url(../img/sv/deco-ri.png) right 1.4rem center no-repeat, #fff;
}
.sv .sv-catch small {
  font-size: 3rem;
}

.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 {
  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 {
  width: 300px;
  height: 50px;
  margin-left: auto;
  margin-right: 0;
}
.select-area .select-box {
  font-size: 1.5rem;
}
.select-area .select-box option {
  font-size: 1.5rem;
}
/*------------△△---select---△△---------*/
/*--------------------その他共通ページ --------------------*/
.com-other-page {
  background: var(--bd-grd);
}

/*---------------------------▽▽---site.html---▽▽------------------------*/
#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 {
  text-align: left;
  padding: 10px 30px;
  margin-bottom: 20px;
  background: var(--main-color);
  color: #fff;
  border-radius: 0;
}

/*---------------------------△△---privacy.html---△△------------------------*/
/*---------------------------▽▽---news.html---▽▽------------------------*/
#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;
  width: 300px;
  box-sizing: border-box;
  padding: 16px 10px;
  font-size: 1.5rem;
}
#contact .table-wrapper .contact-form-table tr th .required-mark {
  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---△△------------------------*/