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

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

section {
  padding: 120px 0;
}

.dl-item {
  display: flex;
}

.com-txt {
  line-height: 1.89;
}
.com-txt:not(:last-of-type) {
  margin-bottom: 30px;
}

.com-btn {
  display: grid;
  place-items: center;
  height: 70px;
  border-radius: 50vw;
  background: var(--accent-color);
  color: #fff;
  position: relative;
  text-align: center;
}
.com-btn:link, .com-btn:visited {
  color: var(--white);
}
.com-btn::after {
  content: "";
  display: block;
  width: 6px;
  height: auto;
  aspect-ratio: 0.6;
  position: absolute;
  background: url("../img/common/arw.png") center/contain no-repeat;
  inset: 0 16px 0 auto;
  margin: auto 0;
}
.com-btn:hover {
  transform: scale(0.9);
}

.com-arw {
  position: relative;
}
.com-arw::after {
  content: "";
  display: block;
  width: 40px;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  background: url(../img/common/arw.png) center no-repeat, var(--accent-color);
  border-radius: 50vw;
  top: 20px;
  right: 20px;
  z-index: 10;
}

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

.ttl01 {
  font-size: 3.6rem;
  margin-bottom: 50px;
  font-weight: 700;
  color: var(--main-color);
  font-family: var(--ttl-font);
  text-align: center;
  position: relative;
  z-index: 1;
}
.ttl01::before {
  content: "";
  display: block;
  width: 102px;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  background: url("../img/common/ttl-bg.png") center/contain no-repeat;
  inset: -20px 0 auto 0;
  margin: 0 auto;
  z-index: -1;
}
.ttl01.txt-le {
  text-align: left;
}
.ttl01.txt-le::before {
  left: -45px;
  right: auto;
}
.ttl01.num {
  margin: 0;
  line-height: 1;
  position: absolute;
}
.ttl01.num::before {
  width: 50px;
  inset: -5px -10px auto auto;
}

.ttl02 {
  font-size: 2.2rem;
}

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

.bg-deco01, .com-other-page {
  position: relative;
  z-index: 1;
  background: url(../img/common/bg01-rt.png) top right/25% no-repeat, var(--bg-pt01);
}
.bg-deco01::after, .com-other-page::after {
  content: "";
  display: block;
  width: 490px;
  height: auto;
  aspect-ratio: 0.6;
  position: absolute;
  background: url("../img/common/bg01-lb.png") center/contain no-repeat;
  left: 0;
  bottom: -366px;
  z-index: -1;
}

.bg-deco02 {
  position: relative;
  background: url(../img/common/bg02-rt.png) top right/69% no-repeat, url(../img/common/bg02-le.png) top left/56% no-repeat, url(../img/common/bg02-rb.png) bottom -450px right no-repeat;
}

.bg-deco03 {
  position: relative;
  background: url(../img/common/bg03-lt.png) top left/56% no-repeat, url(../img/common/bg03-rb.png) bottom right/22% no-repeat, url(../img/common/bg03-ri.png) right top/25% no-repeat, var(--bg-pt02);
}

.line-box01 {
  padding: 13px 0;
  background: url(../img/common/deco-line.png) top repeat-x, url(../img/common/deco-line.png) bottom repeat-x;
}

.line-box02 {
  padding: 60px 0;
  background: url(../img/common/deco-line-02.png) top repeat-x, url(../img/common/deco-line-02.png) bottom repeat-x;
}

.com-tel {
  align-items: center;
  gap: 20px;
}
.com-tel a {
  display: inline-block;
  border-radius: 50vw;
  background: #fff;
  color: var(--accent-color);
  padding: 0 20px;
  font-family: var(--ttl-font);
  font-size: 3.2rem;
  font-weight: 700;
  border: 1px solid var(--bd-color);
}
.com-tel a span {
  background: url("../img/common/tel-icon.png") left center/auto no-repeat;
  padding-left: 35px;
  box-sizing: border-box;
}
.com-tel .tel-info {
  display: grid;
  gap: 10px;
}
.tel-btn {
  border-radius: 10px;
}

.info-dl {
  gap: 10px;
}
.info-dl dt::after {
  content: "|";
  display: inline-block;
  margin-left: 10px;
}

.icon-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-btn {
  width: 40px;
  display: block !important;
  padding: 0 !important;
}
.icon-btn img {
  display: block;
  width: 100%;
}
.icon-btn.pc-none {
  display: none !important;
}

.com-kado {
  border-radius: 24px;
}

.txt-sdw {
  text-shadow: 2px -2px 1px #fff, 2px 2px 1px #fff, -2px -2px 1px #fff, -2px 2px 1px #fff;
}

.check-item {
  background: url("../img/common/check.png") left center/auto no-repeat;
  padding-left: 30px;
  box-sizing: border-box;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.tag-list .tag {
  color: var(--main-color);
  font-size: 1.4rem;
}
.tag-list .tag:not(:last-child)::after {
  content: "・";
}

/*infotableスタイル*/
.com-desc-tbl .dl-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}
.com-desc-tbl .dl-item:not(:last-child) {
  border-bottom: 1px solid var(--bd-color);
}
.com-desc-tbl .dl-item dt {
  width: 170px;
}
.com-desc-tbl .dl-item dd {
  width: 680px;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 100;
  padding: 15px 30px;
}
#header .hd-logo img {
  display: block;
}
#header .hd-right .hd-top {
  margin-bottom: 20px;
}
#header .hd-right .hd-btm {
  gap: 20px;
}
#header .hd-right .hd-btm .com-btn {
  width: 260px;
  height: 60px;
}
#header .btm-box {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 100;
  width: 760px;
  height: 100px;
  gap: 20px;
  background: url(../img/common/fix-le.png) left bottom no-repeat, url(../img/common/fix-ri.png) right bottom no-repeat, rgba(255, 236, 199, 0.88);
  border-radius: 24px 24px 0 0;
  margin: 0 auto;
}
#header .btm-box .icon-btn {
  width: 50px;
}
#header .btm-box .pagetop {
  position: absolute;
  bottom: 25px;
  right: 30px;
}

#nav {
  background: #fff;
  padding: 25px 0;
  box-shadow: 0 0 10px rgba(251, 183, 184, 0.4);
}
#nav .nav-list {
  gap: 25px;
}
#nav .nav-list .nav-item {
  position: relative;
}
#nav .nav-list .nav-item > a {
  padding-bottom: 5px;
  opacity: 1;
  position: relative;
  display: flex;
  gap: 10px;
}
#nav .nav-list .nav-item > a::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--main-color);
  position: absolute;
  bottom: 0;
  transform: scale(0);
  transition: 0.5s;
}
#nav .nav-list .nav-item > a:hover::before {
  transform: scale(1);
}
#nav .nav-list .nav-item .drop-down {
  transition: 0.3s;
  gap: 5px;
  position: relative;
  cursor: pointer;
}
#nav .nav-list .nav-item .drop-down::after {
  content: "›";
  transform: rotate(90deg);
  display: inline-block;
}
#nav .nav-list .nav-item .nav-child-list {
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  width: 120%;
  position: absolute;
  min-width: 120px;
  top: 35px;
  left: -5px;
  z-index: 50;
  background: #fff;
  border-radius: 6px;
  transition: 0.5s;
}
#nav .nav-list .nav-item .nav-child-list .child-item {
  position: relative;
}
#nav .nav-list .nav-item .nav-child-list .child-item:not(:last-child) {
  border-bottom: 1px solid var(--accent-color);
}
#nav .nav-list .nav-item .nav-child-list .child-item a {
  text-align: center;
  display: block;
  padding: 15px 0;
}
#nav .nav-list .nav-item .nav-child-list .child-item a:hover {
  opacity: 1;
  color: #fff;
  background: var(--main-color);
}
#nav .nav-list .nav-item:hover .nav-child-list {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  padding-top: 158px;
  padding-bottom: 20px;
  gap: 3.8%;
  background: url(../img/top/mv-bg.jpg) center/cover;
}
.top-mv img {
  width: 100%;
}
.top-mv .mv-ct {
  width: 35%;
}
.top-mv .mv-img {
  width: 56.25%;
  border-radius: 24px 0 0 24px;
  overflow: hidden;
}

/*---------------------------△△---MV---△△------------------------*/
/*--------▽▽---MV---▽▽---------- */
#top-news .inbox {
  position: relative;
}
#top-news .inbox .ttl01 {
  width: 260px;
  margin: 0;
  padding: 0;
  margin-top: 55px;
}
#top-news .inbox .news-list {
  width: 770px;
  padding: 20px 60px;
  min-height: 280px;
}
#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: 15px 0;
  gap: 5px 5px;
}
#top-news .inbox .news-list .news-item a:hover {
  transform: translateX(10px);
}
#top-news .inbox .news-list .news-item a time {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
}
#top-news .inbox .news-list .news-item a time::after {
  content: "|";
  display: inline-block;
  margin-left: 5px;
}
#top-news .inbox .news-list .news-item a .tag-list {
  max-width: 550px;
}
#top-news .inbox .news-list .news-item a h4 {
  width: 100%;
}
#top-news .inbox .com-btn {
  position: absolute;
  width: 250px;
  left: 0;
  bottom: 25px;
}

/*------------△△---MV---△△---------*/
#top-aki .inbox {
  display: grid;
  justify-content: center;
}
#top-aki .inbox table {
  width: 767px;
  margin: 10px 0 20px;
  overflow: hidden;
}
#top-aki .inbox table th, #top-aki .inbox table td {
  text-align: center;
  padding: 20px;
  width: 80px;
}
#top-aki .inbox table th:first-child, #top-aki .inbox table td:first-child {
  width: 200px;
}
#top-aki .inbox table thead th:not(:first-child) {
  border-left: 1px solid #fff;
}
#top-aki .inbox table tbody tr:not(:last-child) {
  border-bottom: 1px solid var(--accent-color);
}
#top-aki .inbox table tbody td {
  border-left: 1px solid var(--accent-color);
  vertical-align: middle;
}
#top-aki .inbox table tbody td span {
  display: grid;
  place-items: center;
}
#top-aki .inbox ul {
  gap: 20px;
}
#top-aki .inbox ul li {
  gap: 5px;
  display: flex;
  align-items: center;
}
#top-aki .inbox .aki-ill {
  right: 0;
  bottom: -160px;
  z-index: 10;
}

#top-about .inbox .txt-box {
  width: 648px;
}
#top-about .inbox .area-box {
  width: 100%;
  margin-top: 140px;
  padding: 0 110px 30px;
}
#top-about .inbox .area-box .area-txt-box {
  width: 420px;
}
#top-about .inbox .area-box .area-txt-box .ttl02 {
  margin-bottom: 20px;
}
#top-about .inbox .area-box .area-ill {
  bottom: -30px;
  right: -60px;
}

#top-service .inbox {
  display: grid;
  gap: 70px;
}
#top-service .inbox .srv-box .txt-box {
  width: 555px;
  padding-left: 50px;
}
#top-service .inbox .srv-box .txt-box .com-btn {
  width: 220px;
  height: 60px;
  margin-top: 50px;
}
#top-service .inbox .srv-ill {
  left: -90px;
  bottom: -100px;
}

#top-other .other-box {
  width: 33.332%;
  height: 300px;
}
#top-other .other-box .other-img {
  width: 100%;
  height: 100%;
}
#top-other .other-box .txt-box {
  position: absolute;
  left: 10.9%;
  bottom: 20px;
  z-index: 10;
}
#top-other .other-box .txt-box .ttl01 {
  margin-bottom: 40px;
}

#footer {
  padding: 100px 0 150px;
  position: relative;
  z-index: 10;
}
#footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  position: absolute;
  background: url(../img/common/deco-line.png) repeat-x, #fff;
  top: -10px;
}
#footer .ft-area {
  gap: 80px 0;
}
#footer .ft-area .ft-le {
  display: grid;
  gap: 30px;
  width: 45%;
}
#footer .ft-area .ft-le .ft-info-box {
  display: grid;
  gap: 5px;
}
#footer .ft-area .ft-le .ft-info-box .ft-info {
  display: grid;
  gap: 5px;
}
#footer .ft-area .ft-ri {
  display: grid;
  gap: 50px;
  width: 50%;
}
#footer .ft-area .ft-ri .btn-li {
  gap: 20px;
}
#footer .ft-area .ft-ri .btn-li .com-btn {
  width: 260px;
}
#footer .ft-area .ft-ri .bnr-li .bnr-btn {
  border: 1px solid var(--sub-color);
  width: 260px;
  height: 130px;
  overflow: hidden;
  z-index: 1;
  font-size: 2.4rem;
}
#footer .ft-area .ft-ri .bnr-li .bnr-btn .bnr-ill {
  z-index: -1;
}
#footer .ft-area .ft-ri .bnr-li .bnr-btn::after {
  width: 30px;
  top: 10px;
  right: 10px;
}
#footer .ft-area .ft-ri .copyright {
  font-size: 1.4rem;
  text-align: right;
}
#footer .ft-area .ft-btm {
  width: 100%;
  display: grid;
  gap: 20px;
}
#footer .ft-area .ft-btm .nav-list .nav-item {
  line-height: 1;
  padding: 0 15px;
}
#footer .ft-area .ft-btm .nav-list .nav-item:not(:last-child) {
  border-right: 2px solid var(--main-color);
}
#footer .ft-area .ft-btm .nav-list .nav-item .child-item {
  margin-left: 15px;
}
#footer .ft-area .ft-btm .nav-list .nav-item .child-item::before {
  content: "ー";
  color: var(--main-color);
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
/*---------------------------▽▽---SV---▽▽------------------------*/
.sv-area {
  padding-top: 158px;
  padding-bottom: 20px;
  background: url(../img/sv/bg.jpg) center/cover;
}

.sv {
  position: relative;
  z-index: 1;
  height: 400px;
  align-items: center;
  align-content: center;
  display: grid;
}
.sv .sv-catch {
  font-size: 4.6rem;
  font-weight: 700;
  margin-left: 11.7%;
  position: relative;
  line-height: 1;
}
.sv .sv-catch::before {
  content: "";
  display: block;
  width: 62px;
  height: auto;
  aspect-ratio: 0.738;
  position: absolute;
  background: url("../img/sv/ct-deco.png") center/contain no-repeat;
  left: -40px;
  top: -20px;
  z-index: -1;
}
.sv .sv-img {
  width: calc(50% + 120px);
  height: 400px;
  border-radius: 24px 0 0 24px;
  margin-left: auto;
  position: absolute;
  right: 0;
  z-index: -1;
}

/*---------------------------△△---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---△△---------*/
.target-area {
  padding-bottom: 30px;
}
.target-area::before {
  content: "";
  display: block;
  width: 100%;
  height: 90px;
  position: absolute;
  background: var(--bg-pt01);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  bottom: -88px;
  z-index: -2;
}
.target-area .target-box {
  position: relative;
  z-index: 1;
  gap: 70px;
}
.target-area .target-box ul {
  gap: 25px;
}
.can-area {
  padding-top: 200px;
}
.can-area .inbox .can-img {
  right: -270px;
  top: -10px;
}
.can-area .inbox ol li {
  gap: 80px;
}
.can-area .inbox ol li .txt-box {
  margin-top: 30px;
}
.can-area .inbox ol li .txt-box .ttl02 {
  margin-bottom: 20px;
}
.can-area .inbox ol li .txt-box .num {
  left: -50px;
  top: -5px;
}
.can-area .inbox .line-box01 {
  width: 930px;
  margin: 70px auto 0;
}
.can-area .inbox .line-box01 .com-kado {
  overflow: hidden;
  padding: 110px 0;
  background: url(../img/user/srv-bg.png) left -70px bottom no-repeat, var(--bg-color);
}
.can-area .inbox .line-box01 .com-kado .com-btn {
  width: 370px;
  height: 80px;
  margin: 0 auto;
}
.can-area .inbox .line-box01 .com-kado .srv-ill {
  bottom: 0;
  right: 0;
}
.can-area .inbox .service-box {
  margin-top: 140px;
}
.can-area .inbox .service-box .srv-li {
  margin-top: 40px;
  gap: 40px;
}
.can-area .inbox .service-box .srv-li li {
  width: 520px;
  min-height: 100px;
  align-content: center;
}

.ill-li {
  gap: 40px;
}
.ill-li li .txt-box {
  margin-top: 30px;
}
.ill-li li .txt-box .ttl02 {
  margin-bottom: 20px;
}

.faq-area .faq-box {
  padding: 60px 70px;
}
.faq-area .faq-box .faq-li {
  gap: 50px;
}
.faq-area .faq-box .faq-li li .ttl02 {
  border-bottom: 2px solid var(--bd-color);
  padding-bottom: 5px;
  margin-bottom: 20px;
  padding-left: 40px;
}
.faq-area .faq-box .faq-li li .ttl02::before {
  content: "Q.";
  color: var(--main-color);
  font-size: 3.6rem;
  font-family: var(--ttl-font);
  left: 0;
  font-weight: 700;
  top: -5px;
  position: absolute;
  line-height: 1;
}
.faq-area .faq-box .faq-li li .com-txt {
  padding: 0 50px;
}

#about-flow::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: url(../img/common/bg01-lt.png) left top/43% no-repeat, url(../img/common/bg01-rb.png) right bottom/59% no-repeat;
  inset: 0;
  z-index: -1;
}
#about-flow .inbox .sec-btn-box {
  gap: 60px;
  margin-bottom: 120px;
}
#about-flow .inbox .sec-btn-box .com-btn {
  width: 370px;
  height: 80px;
}
#about-flow .inbox .flow-li li {
  gap: 150px;
}
#about-flow .inbox .flow-li li .txt-box .ttl02 .num {
  left: -105px;
  display: flex;
  align-items: center;
  gap: 10px;
}
#about-flow .inbox .flow-li li .txt-box .ttl02 .num small {
  font-size: 0.5em;
}

#about-price .inbox .price-li {
  margin-bottom: 60px;
}
#about-price .inbox .price-li li {
  width: 340px;
  padding: 40px 20px;
  gap: 15px;
}
#about-price .inbox > .com-txt {
  margin-top: 30px;
}

#staff-mov {
  padding-top: 120px;
}

.com-pd-box {
  padding: 70px 100px;
}

.mov-li {
  gap: 40px 30px;
}
.mov-li li {
  width: 340px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 0.563;
}

#voice .voice-li {
  gap: 40px;
}
#voice .voice-li .voice-item {
  gap: 70px;
}
#voice .voice-li .thumbnail-on {
  display: flex;
  align-items: center;
}
#voice .voice-li .thumbnail-on .com-txt {
  width: 590px;
}
#voice .voice-li .thumbnail-on .com-img {
  width: 220px;
  aspect-ratio: 0.846;
}
#info-greeting .inbox {
  gap: 70px;
}

.map {
  height: 400px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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