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

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

section {
  padding: 100px 0;
}

.dl-item {
  display: flex;
}

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

.txt-02 {
  font-size: 1.8rem;
  letter-spacing: 0.15em;
}

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

.ft-btn-li {
  width: 100%;
  margin: 7rem 0 5rem;
}

.ft-btn {
  width: 260px;
  height: 70px;
  border: 1px solid var(--bd-color);
  border-radius: 50vw;
  font-weight: 700;
  display: grid;
  justify-items: center;
  align-content: center;
  position: relative;
  font-size: 2rem;
}
.ft-btn::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  background: url("../img/common/site-arw.png") center/contain no-repeat;
  inset: 0 2rem 0 auto;
  margin: auto 0;
}

.com-btn {
  width: 210px;
  height: 60px;
  background: var(--main-color);
  border-radius: 50vw;
  font-weight: 700;
  display: grid;
  justify-items: center;
  align-content: center;
  position: relative;
  color: var(--white);
}
.com-btn:link, .com-btn:visited {
  color: var(--white);
}
.com-btn::after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.3rem;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  inset: 0 2rem 0 auto;
  margin: auto 0;
}
.com-btn.mail-btn {
  width: 300px;
  height: 70px;
  font-size: 1.9rem;
}
.com-btn.mail-btn::after {
  content: none;
}
.com-btn.mail-btn span {
  background: url("../img/common/mail-icon.png") left center/2.8rem no-repeat;
  padding-left: 4rem;
  box-sizing: border-box;
}

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

.ttl01 {
  font-family: var(--ttl-font);
  text-align: center;
  padding-top: 6rem;
  font-size: 4.8rem;
  letter-spacing: 0.15em;
  margin-bottom: 5rem;
  background: url(../img/common/ttl-deco-01.png) center top no-repeat;
}
.ttl01 .big {
  font-size: 1.08em;
}
.ttl01 small {
  font-size: 0.875em;
  letter-spacing: 0.15em;
}
.ttl01 span {
  letter-spacing: 0.15em;
}
.ttl01.deco-none {
  padding: 0;
  background: none;
}
.ttl01.txt-le {
  width: auto;
  text-align: left;
}
.ttl01.deco-le {
  background-position: left;
  padding-left: 6rem;
  padding-top: 0;
}

.ttl02 {
  font-size: 2.8rem;
  font-family: var(--serif-font);
  letter-spacing: 0.15em;
}

.ttl03 {
  font-size: 2.4rem;
  font-family: var(--serif-font);
  letter-spacing: 0.15em;
}

.ttl04 {
  font-size: 2rem;
  letter-spacing: 0.15em;
}

.tbl-ttl {
  font-size: 2.1rem;
  font-family: var(--serif-font);
  letter-spacing: 0.15em;
}

.com-check {
  font-weight: 400;
  font-size: 2rem;
  background: url("../img/common/check.png") left center/1.6rem no-repeat;
  padding-left: 2.5rem;
  box-sizing: border-box;
}

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

.com-tel {
  display: grid;
  justify-items: start;
  gap: 0.5rem;
}
.com-tel a {
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: 0.08em;
}
.com-tel a::before {
  content: "TEL";
  font-size: 1.8rem;
}

.tate {
  writing-mode: vertical-rl;
}

.kado-01 {
  border-radius: 3rem;
}

.kado-02 {
  border-radius: 2rem;
}

.com-sdw {
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.1);
}

.ttl-bg {
  margin-bottom: 3rem;
  padding: 2rem;
}

.com-pd-box {
  padding: 4rem 5rem;
}

.box-stl-01 {
  border-radius: 3rem;
  box-shadow: 0.3rem 0.3rem 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.box-stl-01 .ttl-bg {
  padding: 1rem;
  margin: 0;
}
.box-stl-01 .com-pd-box {
  padding: 2.5rem 4rem 4rem;
}

.com-box-sz {
  width: 520px;
}

.com-mgn-btm {
  margin-bottom: 5rem;
}

.com-mgn-top {
  margin-top: 5rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.tag-list .tag {
  line-height: 1;
  color: #fff;
  background: var(--accent-color);
  border-radius: 50vw;
  padding: 0.5rem 1rem;
  font-size: 1.5rem;
}

time {
  line-height: 1;
  padding: 0.5rem 0;
  font-weight: 400;
}

/*infotableスタイル*/
.com-desc-tbl .dl-item {
  display: flex;
  justify-content: space-between;
  font-weight: 400;
}
.com-desc-tbl .dl-item:not(:last-child) {
  border-bottom: 1px solid var(--bd-color);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.com-desc-tbl .dl-item dt {
  width: 130px;
}
.com-desc-tbl .dl-item dd {
  width: 850px;
}
.com-desc-tbl .dl-item dd .tel-txt {
  display: inline-flex;
  margin-left: 1rem;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 1000;
  position: fixed;
}
#header .hd-logo {
  margin-left: 2.5rem;
}
#header .hd-logo img {
  display: block;
}
#header .hd-right {
  gap: 2rem;
}
#header .hd-right .hd-top {
  gap: 2.5rem;
}
#header .hd-right #nav .nav-list {
  margin-top: 0.5rem;
}
#header .hd-right #nav .nav-list .nav-item {
  position: relative;
}
#header .hd-right #nav .nav-list .nav-item > a {
  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);
}
#header .hd-right #nav .nav-list .nav-item:last-child {
  border-right: none;
}
#header .hd-right #nav .nav-list .nav-item:last-child a {
  padding-right: 0;
}
#header .hd-right .com-add-box {
  gap: 1rem;
}
#header .hd-right .com-add-box .add-ttl {
  font-size: 1.5rem;
  height: 6rem;
  padding: 0.5rem;
}
#header .hd-mail-btn {
  width: 130px;
  gap: 1.5rem;
  height: 10rem;
  border-radius: 0rem 0rem 0rem 2rem;
}

.nav-item {
  border-right: 1px solid var(--bd-color);
}
.nav-item a {
  padding: 0 2.5rem 0.5rem;
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  position: relative;
  margin-top: 10rem;
  padding: 2rem 0 6rem;
  background: url(../img/top/mv-bg.png) bottom left/27.4% no-repeat;
}
.top-mv img {
  width: 100%;
}
.top-mv .mv-ct {
  width: 23.6%;
  margin-left: 4.68%;
  margin-top: 6.25%;
}
.top-mv .mv-01 {
  width: 9.166%;
  position: absolute;
  left: 28%;
  top: 7.14%;
  z-index: 10;
}
.top-mv .mv-02 {
  width: 32%;
  position: absolute;
  bottom: 6rem;
  right: 34%;
}
.top-mv .mv-03 {
  margin-right: 1.56%;
  width: 42.6%;
}

/*---------------------------△△---MV---△△------------------------*/
/*--------▽▽---NEWS---▽▽---------- */
#top-news {
  padding-bottom: 19rem;
}
#top-news .inbox {
  position: relative;
}
#top-news .inbox .ttl01 {
  min-height: 150px;
  margin: 4rem 0 0;
}
#top-news .inbox .news-list {
  width: 830px;
  gap: 2rem;
  padding: 1rem 4rem;
}
#top-news .inbox .news-list .news-item:not(:last-child) {
  border-bottom: 1px solid var(--bd-color);
}
#top-news .inbox .news-list .news-item a {
  padding: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
#top-news .inbox .news-list .news-item a:hover {
  transform: translateX(10px);
}
#top-news .inbox .news-list .news-item a time {
  line-height: 1;
}
#top-news .inbox .news-list .news-item a h4 {
  width: 100%;
  font-weight: 400;
}
#top-news .inbox .news-list .news-item a .tag-list {
  width: 570px;
}
#top-news .inbox .com-btn {
  position: absolute;
  left: 0;
  top: 140px;
}

/*------------△△---NEWS---△△---------*/
#top-about {
  background: url(../img/top/about-bg-lt.png) left top/39% no-repeat, url(../img/top/about-bg-rt.png) right top/41.5% no-repeat, url(../img/top/about-bg-lb.png) left bottom/35% no-repeat, url(../img/top/about-bg-rb.png) right bottom/29% no-repeat;
}
#top-about .img-01 {
  width: calc(50% + 55px);
  height: 400px;
  left: 0;
  top: -8rem;
  border-radius: 0rem 5rem 5rem 0;
  position: absolute;
}
#top-about .top-box .about-ttl {
  order: 2;
  margin-right: -2rem;
}
#top-about .top-box .com-txt {
  width: 740px;
  margin-top: 300px;
}
#top-about .top-box .ill-box {
  position: absolute;
  bottom: -5rem;
  right: -10rem;
}
#top-about .btm-box {
  margin-top: 9rem;
}
#top-about .btm-box .txt-box {
  width: 455px;
}
#top-about .btm-box .txt-box .ttl02 {
  margin-bottom: 1rem;
  background: url("../img/common/ttl-deco-02.png") left center/3.4rem no-repeat;
  padding-left: 4.6rem;
  box-sizing: border-box;
}
#top-about .btm-box .txt-box ul {
  gap: 4rem;
  padding: 1.6rem 0;
}
#top-about .btm-box .txt-box ul li {
  font-size: 2.2rem;
  width: 125px;
}

#top-feature {
  background: url(../img/top/feat-bg.jpg) center/cover;
}
#top-feature .inbox .com-txt {
  margin-bottom: 4.5rem;
}
#top-feature .inbox .feat-box .com-pd-box {
  gap: 4rem;
  padding: 2rem 3rem 3rem;
}
#top-feature .inbox .feat-box .com-pd-box .list-box .ttl03 {
  font-size: 2.6rem;
  font-weight: 600;
}
#top-feature .inbox .feat-box .com-pd-box .list-box ul li {
  padding: 1.2rem 0;
}

#top-service {
  background: url(../img/top/pro-bg-lt.png) top left no-repeat, url(../img/top/pro-bg-rb.png) right top no-repeat, var(--pt-01);
}
#top-service .tab_wrp {
  margin: 0 auto;
  gap: 0.5rem;
}
#top-service .tab_wrp li {
  font-size: 2.2rem;
  font-weight: 500;
  width: 250px;
  border-radius: 2rem 2rem 0 0;
  padding: 2rem 0;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  color: #fff;
}
#top-service .tab_wrp .current {
  background-color: var(--main-color);
}
#top-service .tab_txt li .txt-box {
  display: grid;
  gap: 3.5rem;
  width: 490px;
}
#top-service .tab_txt li .txt-box .ttl02 {
  font-size: 3.2rem;
}
#top-service .tab_txt li .txt-box .com-btn {
  width: 400px;
}
#top-staff {
  background: url(../img/top/stf-bg-lb.png) left bottom/34.5% no-repeat, url(../img/top/stf-bg-rb.png) right bottom/42% no-repeat, var(--pt-01);
}
#top-staff ul {
  width: 630px;
  gap: 3.5rem;
}
#top-staff ul li {
  padding: 2rem 2.5rem;
}
#top-staff ul li .ttl03 {
  font-weight: 700;
  font-size: 2.5rem;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}
#top-staff ul li .com-txt {
  line-height: 1.64;
}

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

.com-add-box {
  gap: 1rem;
}
.com-add-box .add-ttl {
  padding: 0.5rem;
}

#footer {
  position: relative;
}
#footer .ft-txt {
  margin: 7rem auto 6rem;
  width: 880px;
  padding: 2rem 4rem;
}
#footer .ft-area .ft-le {
  display: grid;
  justify-items: start;
  gap: 3rem;
}
#footer .ft-area .ft-le .ft-logo {
  width: 317px;
}
#footer .ft-area .ft-le .ft-logo img {
  width: 100%;
}
#footer .ft-area .ft-le .mail-btn {
  width: 320px;
}
#footer .ft-area .ft-le .sns-list {
  margin-top: 1rem;
}
#footer .ft-area .ft-ri {
  width: 678px;
  gap: 2rem 0;
}
#footer .ft-area .ft-ri .com-add-box {
  gap: 1rem;
}
#footer .ft-area .ft-ri .com-add-box .ft-info {
  gap: 0.5rem;
}
#footer .ft-area .ft-ri > .ft-wt {
  padding: 1rem;
  background: var(--sub-color);
}
#footer .ft-area .ft-btm {
  width: 100%;
  margin: 2rem 0;
}
#footer .ft-area .ft-btm .nav-list {
  display: flex;
  justify-content: space-between;
}
#footer .ft-area .ft-btm .nav-list:first-child {
  border-left: 1px solid var(--bd-color);
}
#footer .ft-area .ft-btm .nav-list .nav-item {
  line-height: 1;
}
#footer .ft-area .ft-btm .nav-list .nav-item a {
  display: grid;
  justify-items: center;
  padding: 0 2.4rem;
}
#footer .ft-sub {
  padding: 0.5rem;
}
#footer .ft-sub .nav-list {
  display: flex;
  font-size: 1.4rem;
}
#footer .copyright {
  font-size: 1.2rem;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
.com-contact-box {
  margin-top: 12rem;
}
.com-contact-box .com-add-box .add-ttl {
  width: 300px;
}

#service_01-page .com-txt:not(:last-child) {
  margin-bottom: 4rem;
}

.srv01-area .inbox .txt-box {
  width: 630px;
}
.srv01-area .inbox .txt-box .ttl02 {
  margin-bottom: 3rem;
}

.srv01-tbl {
  border-collapse: collapse;
}
.srv01-tbl dt, .srv01-tbl dd {
  padding: 2.5rem 2rem;
}
.srv01-tbl dt {
  width: 20rem;
  border-bottom: 1px solid #fff;
}
.srv01-tbl dd {
  width: 88rem;
  border-bottom: 1px solid var(--font-color);
}

#service_01-01 .txt-box {
  width: 550px;
}
#service_01-01 .txt-box .ttl02 {
  line-height: 1.8;
}
#service_01-01 .com-txt {
  width: 510px;
}

#service_01-03 .eight-li {
  gap: 1rem 4.5rem;
}
#service_01-03 .eight-li li {
  min-width: 140px;
}
#service_01-03 .box-stl-01 ol {
  gap: 5rem;
}
#service_01-03 .box-stl-01 ol li .ttl03 {
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

#service_01-04 .ttl02 {
  margin-top: 9rem;
}
#service_01-04 .gojuon-table {
  border-collapse: collapse;
  table-layout: fixed;
  line-height: 1;
}
#service_01-04 .gojuon-table thead {
  border: 2px solid var(--font-color);
}
#service_01-04 .gojuon-table th, #service_01-04 .gojuon-table td {
  text-align: center;
  padding: 2rem 1rem;
}
#service_01-04 .gojuon-table th {
  font-weight: 600;
}
#service_01-04 .gojuon-table th:not(:last-child) {
  border-right: 2px solid #fff;
}
#service_01-04 .gojuon-table td {
  border: 2px solid var(--font-color);
}
#service_01-04 .gojuon-table td span {
  color: var(--main-color);
  margin-right: 1rem;
}

#service_01-05 .ttl02 {
  margin-bottom: 3rem;
}
#service_01-05 dl {
  margin-top: 6rem;
}

#service_02-about .about-content {
  gap: 8rem;
}
#service_02-about .about-content .about-box .com-txt {
  margin-top: 3rem;
}
#service_02-about .btm-txt {
  width: 720px;
  margin: 7rem auto 0;
}

#service_02-price .price-content {
  gap: 10rem;
}
#service_02-price .price-content .price-box .img-box {
  margin-bottom: 3rem;
}
#service_02-price .price-content .price-box .price-li {
  gap: 4rem 0;
  margin-top: 4rem;
}
#service_02-price .price-content .price-box .price-li li .price-table {
  margin-top: 1.5rem;
  width: 51rem;
  border-collapse: separate;
  border-spacing: 0;
  border: 2px solid var(--font-color);
}
#service_02-price .price-content .price-box .price-li li th, #service_02-price .price-content .price-box .price-li li td {
  letter-spacing: 0.15em;
  font-weight: 500;
  padding: 1em 1em;
  text-align: center;
  border: 1px solid var(--font-color);
}

.srv02-li {
  margin-top: 6rem;
}
.srv02-li li .ttl02 {
  padding: 1rem;
  margin-bottom: 1rem;
}

#service_02-business .bnr-btn {
  width: 640px;
  height: 160px;
  margin: 11rem auto 0;
}

#butsugu-page .txt-02, #services-page .txt-02 {
  letter-spacing: 0.05em;
}

.srv03-area {
  border-bottom: 1px solid var(--bd-color);
}
.srv03-area .inbox {
  gap: 7rem;
}
.srv03-area .txt-box .com-txt {
  width: 810px;
}
.srv03-area .srv03-li li .ttl03 {
  margin-bottom: 1.5rem;
}
.srv03-area .srv03-li .item-01 {
  width: 485px;
}
.srv03-area .srv03-li .item-02 {
  width: 300px;
}
.srv03-area .srv03-li .item-02 .com-btn {
  margin: 2.5rem auto 0;
}
.srv03-area .srv03-tbl {
  margin-top: 6rem;
}
.srv03-area .srv03-tbl dt, .srv03-area .srv03-tbl dd {
  padding: 2rem 2rem;
}
.srv03-area .srv03-tbl dt {
  width: 12rem;
  border-bottom: 1px solid #fff;
  display: grid;
  align-content: center;
}
.srv03-area .srv03-tbl dd {
  width: 88rem;
  border-bottom: 1px solid var(--main-color);
}

#service_03-04 {
  border: none;
}

#services-page .btn-li {
  gap: 3rem;
}
#services-page .com-btn {
  width: 340px;
}

.srv04-area .inbox {
  gap: 6rem;
}
.srv04-area .inbox .ttl01 {
  margin: 0;
}
.srv04-area .srv04-li .item-01 {
  width: 350px;
}
.srv04-area .srv04-li .item-02 {
  width: 250px;
}

#company-info {
  padding-bottom: 0;
}
#company-info .info-box {
  gap: 5rem;
}
#company-info .info-box:last-of-type {
  margin-top: 13rem;
}
#company-info .map {
  margin-top: 3rem;
  height: 400px;
}

#contact-about .com-contact-box {
  margin-top: 5rem;
  gap: 5rem;
}

/*---------------------------▽▽---SV---▽▽------------------------*/
.sv {
  margin-top: 12rem;
  height: 360px;
  display: grid;
  justify-items: center;
  align-content: center;
  background-position: center;
  background-size: cover;
}
.sv .sv-catch {
  width: 700px;
  font-size: 4.5rem;
  padding: 1.5rem 0;
  font-family: var(--ttl-font);
  letter-spacing: 0.2em;
}

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

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

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

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

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

/*---------------------------▽▽---site.html---▽▽------------------------*/
/*---------------------------△△---site.html---△△------------------------*/
/*---------------------------▽▽---404.html---▽▽------------------------*/
/*---------------------------△△---404.html---△△------------------------*/
/*---------------------------▽▽---privacy.html---▽▽------------------------*/
/*---------------------------△△---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: 120px;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box .tag-list {
  width: 900px;
}
#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;
  font-size: 1.8rem;
}
.pagenation li a, .pagenation li span {
  line-height: 1;
  padding: 12px 18px;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
}
.pagenation-detail {
  position: relative;
  height: 50px;
  margin-top: 60px;
}
.pagenation-detail p a {
  font-size: 1.3rem;
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 1;
  box-sizing: border-box;
  padding: 18px 0;
  height: 50px;
  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---△△------------------------*/