@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: 100px;
}

section {
  padding: 120px 0;
}

.dl-item {
  display: flex;
}

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

.com-maru {
  border-radius: 50vw;
}

.com-sdw {
  box-shadow: 2px 2px 12px rgba(31, 31, 31, 0.1);
}

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

.com-btn {
  width: 380px;
  height: 80px;
  border-radius: 50vw;
  background: var(--accent-color);
  display: grid;
  place-items: center;
  margin: 70px auto 0;
  position: relative;
  line-height: 1;
}
.com-btn::before {
  content: "»";
  font-size: 1.5em;
  position: absolute;
  margin-bottom: 7px;
  left: 20px;
  line-height: 1;
  display: block;
}
.com-btn:hover {
  transform: scale(0.95);
}
.com-btn.btn-small {
  width: 260px;
  height: 60px;
}

.tate {
  writing-mode: vertical-rl;
}
.tate span {
  text-combine-upright: all;
  line-height: 1;
  display: inline-block;
  vertical-align: bottom;
  padding-left: 3px;
}

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

.ttl01 {
  text-align: center;
  font-weight: 500;
  margin-bottom: 50px;
  display: grid;
  gap: 10px;
  justify-items: center;
}
.ttl01 .en {
  text-transform: uppercase;
  font-size: 3rem;
  color: var(--main-color);
}
.ttl01 .ja {
  font-size: 4rem;
}
.ttl01.txt-le {
  text-align: left;
  justify-items: start;
}
.ttl01.flex {
  display: flex;
  align-items: center;
  gap: 35px;
}

.ttl02 {
  font-size: 3rem;
  font-weight: 500;
}

.ttl03 {
  font-size: 2.4rem;
  font-weight: 500;
}

.ttl04 {
  font-size: 2rem;
}

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

.bd-01 {
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

.com-add-box {
  font-weight: 500;
}
.com-add-box dl {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.com-add-box dl dt {
  color: var(--main-color);
  padding-right: 10px;
  border-right: 1px solid var(--main-color);
}

.com-tel {
  justify-items: center;
  align-items: center;
  background: var(--bg-grd);
  border-radius: 8px;
  padding: 0px 20px;
  gap: 15px;
}
.com-tel a {
  font-size: 3rem;
  font-size-font-weight: 500;
  background: url("../img/common/tel-icon.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 {
  line-height: 1;
  color: var(--main-color);
}
.tag-list .tag:not(:last-child)::after {
  content: "・";
}

/*infotableスタイル*/
.com-desc-tbl {
  padding: 50px 110px;
}
.com-desc-tbl .dl-item {
  display: flex;
  justify-content: space-between;
}
.com-desc-tbl .dl-item dt {
  text-align: center;
  width: 150px;
  padding: 15px 0;
  display: grid;
  align-items: center;
}
.com-desc-tbl .dl-item dd {
  width: 700px;
  padding: 15px 50px;
}
.com-desc-tbl .dl-item:not(:last-child) dt {
  border-bottom: 1px solid var(--main-color);
}
.com-desc-tbl .dl-item:not(:last-child) dd {
  border-bottom: 1px solid var(--bd-color);
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 1000;
  padding: 10px 30px;
}
#header .hd-logo img {
  display: block;
}
#header .hd-right .hd-top {
  gap: 35px;
}
#header .hd-right #nav {
  margin-top: 8px;
}
#header .hd-right #nav .nav-list {
  gap: 35px;
}
#header .hd-right #nav .nav-list .nav-item {
  position: relative;
}
#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(--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);
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  position: relative;
  padding: 1.7% 0;
  box-sizing: content-box;
  gap: 6.25%;
  margin-top: 100px;
}
.top-mv .bx-wrapper {
  width: 57.8%;
}
.top-mv #slider {
  height: 40.625vw;
  min-height: 520px;
  border-radius: 30px 0 0 30px;
  overflow: hidden;
}
.top-mv #slider .slide-01 {
  background: url(../img/top/mv-01.jpg);
}
.top-mv #slider .slide-02 {
  background: url(../img/top/mv-02.jpg);
}
.top-mv #slider .slide-03 {
  background: url(../img/top/mv-03.jpg);
}
.top-mv #slider .slide-04 {
  background: url(../img/top/mv-04.jpg);
}
.top-mv #slider .slide-item {
  height: 100%;
  background-size: cover;
}
.top-mv .mv-ct {
  width: 29.5%;
}
.top-mv .mv-ct img {
  width: 100%;
}
.top-mv .mv-ct-02 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 300;
  width: 38.4%;
}
.top-mv .mv-ct-02 img {
  width: 100%;
}

/*---------------------------△△---MV---△△------------------------*/
#top-intro {
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
#top-intro::before {
  content: "";
  display: block;
  width: 100vw;
  height: 660px;
  position: absolute;
  background: url(../img/common/pt01.jpg);
  bottom: -270px;
  left: 0;
  z-index: -1;
}
#top-intro::after {
  content: "";
  display: block;
  width: 490px;
  height: 570px;
  position: absolute;
  background: url("../img/top/about.jpg") center/contain no-repeat;
  inset: 0 auto 0 0;
  margin: auto 0;
  border-radius: 0 24px 24px 0;
  z-index: -1;
}
#top-intro .inbox {
  position: relative;
}
#top-intro .inbox .psn {
  position: absolute;
  bottom: -50px;
  right: 0;
}

#top-area {
  padding: 90px 95px;
  position: relative;
  z-index: 10;
}
#top-area .txt-box {
  margin-left: auto;
  width: 510px;
}
#top-area .txt-box .ttl01 {
  margin-bottom: 35px;
}
#top-area .txt-box .com-txt span {
  font-weight: 500;
}
#top-area .area-map {
  position: absolute;
  bottom: 0;
  left: 95px;
}

#top-about .inbox {
  background: url(../img/top/tax-le.png) left top 50px no-repeat;
}
#top-about .inbox .ttl03 {
  margin-top: 90px;
  margin-bottom: 40px;
}
#top-about .inbox .ttl03 span {
  margin-top: 20px;
}

#top-other .inbox .com-btn {
  width: 520px;
  height: 160px;
  margin: 0;
  background: url(../img/top/other-bg-le.png);
}
#top-other .inbox .com-btn.btn-02 {
  background: url(../img/top/other-bg-ri.png);
}
#top-other .inbox .com-btn::before {
  left: 30px;
}
#top-other .inbox .com-btn .ttl01 {
  margin: 0;
  gap: 20px;
}
#top-other .inbox .com-btn .ttl01 .ja {
  text-shadow: 4px 4px #fff;
}

#top-case .case-li {
  position: relative;
  padding: 60px 70px;
  gap: 50px;
}
#top-case .case-li::after {
  content: "";
  display: block;
  width: 283px;
  height: 152px;
  position: absolute;
  background: url("../img/top/case-ill.png") center/contain no-repeat;
  background-position: top;
  right: 0;
  top: -140px;
}
.case-li {
  display: grid;
}
.case-li li .case-top {
  margin-bottom: 20px;
}
.case-li li dl {
  display: grid;
  gap: 20px;
}
.case-li li dl .dl-item {
  gap: 15px;
  align-items: start;
}
.case-li li dl .dl-item dt {
  text-align: center;
  width: 104px;
  padding: 5px 0;
}
.case-li li dl .dl-item dd {
  width: 800px;
}

.com-list-box {
  display: grid;
  justify-content: center;
  gap: 15px;
  padding: 70px 50px;
  background: url(../img/common/worries-ill.png) left 40px bottom no-repeat, var(--bg-grd);
}
.com-list-box li {
  background: url("../img/common/check.png") left center/auto no-repeat;
  padding-left: 35px;
  box-sizing: border-box;
}

.ttl-fuki {
  position: relative;
  display: inline-block;
}
.ttl-fuki::before {
  content: "＼";
  position: absolute;
  left: -30px;
  bottom: -10px;
}
.ttl-fuki::after {
  content: "／";
  position: absolute;
  right: -30px;
  bottom: -10px;
}

.deco-ill {
  position: relative;
}
.deco-ill::after {
  content: "";
  display: block;
  width: 211px;
  height: 131px;
  position: absolute;
  background: url("../img/common/ill-deco.png") center/contain no-repeat;
  right: 0;
  top: -40px;
}

/*--------▽▽---MV---▽▽---------- */
#top-news .inbox {
  position: relative;
}
#top-news .inbox .news-list {
  padding: 0 40px;
  display: grid;
  gap: 20px;
}
#top-news .inbox .news-list .news-item {
  width: 900px;
}
#top-news .inbox .news-list .news-item:nth-child(even) {
  margin-left: auto;
}
#top-news .inbox .news-list .news-item a {
  padding: 20px 70px;
  gap: 10px 20px;
}
#top-news .inbox .news-list .news-item a:hover {
  transform: translateX(10px);
}
#top-news .inbox .news-list .news-item a time {
  line-height: 1;
  padding-right: 10px;
  border-right: 1px solid;
}
#top-news .inbox .news-list .news-item a .tag-list {
  max-width: 640px;
}
#top-news .inbox .news-list .news-item a h4 {
  width: 100%;
}
#top-news .inbox .com-btn {
  margin: 0;
  position: absolute;
  right: 0;
  top: 0;
}

/*------------△△---MV---△△---------*/
.pagetop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 100;
}

#footer .ft-area {
  padding: 80px 0;
}
#footer .ft-area .ft-le {
  width: 50%;
  display: grid;
  justify-content: start;
  gap: 40px;
}
#footer .ft-area .ft-le .com-add-box {
  display: grid;
  justify-items: start;
  gap: 10px;
}
#footer .ft-area .ft-le .com-add-box .com-tel {
  gap: 5px;
  padding: 10px 20px;
  margin-bottom: 10px;
}
#footer .ft-area .ft-le .nav-box {
  gap: 40px;
}
#footer .ft-area .ft-le .nav-box .nav-list {
  display: grid;
  gap: 15px;
}
#footer .ft-area .ft-le .nav-box .nav-list .nav-item {
  font-weight: 500;
}
#footer .ft-area .ft-le .nav-box .nav-list .nav-item::before {
  content: "・";
  color: var(--main-color);
}
#footer .ft-area .ft-ri {
  width: 445px;
}
#footer .ft-area .ft-ri .ttl03 {
  margin-bottom: 20px;
}
#footer .ft-area .ft-ri ul {
  padding: 25px 30px;
  display: grid;
  gap: 5px;
}
#footer .ft-area .com-btn {
  margin-top: 20px;
}
#footer .copyright {
  margin-bottom: 15px;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
/*---------------------------▽▽---SV---▽▽------------------------*/
.sv {
  height: 460px;
  padding: 30px 0;
  position: relative;
  margin-top: 100px;
}
.sv .sv-catch {
  font-size: 5.4rem;
  position: absolute;
  text-shadow: 4px 4px #fff;
  z-index: 10;
  width: 100%;
  inset: 0 auto 0 0;
  margin: auto 0;
  display: grid;
  align-items: center;
  padding-left: 10.9%;
}
.sv .sv-catch::before {
  content: "";
  display: block;
  width: 9.37%;
  height: 2px;
  position: absolute;
  background: var(--main-color);
  left: 0;
}
.sv .sv-img {
  width: calc(50% + 140px);
  height: 100%;
  margin-left: auto;
  border-radius: 30px 0 0 30px;
}

.e404-sv .sv-catch {
  font-size: 5rem;
}

/*---------------------------△△---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---△△---------*/
#about-service .inbox {
  padding: 0 10px;
}
#about-service .inbox .ttl01 .ttl03 {
  background: var(--accent-color-02);
  padding: 15px 50px;
  position: relative;
  margin-bottom: 40px;
}
#about-service .inbox .ttl01 .ttl03::after {
  content: "";
  display: block;
  width: 30px;
  height: 20px;
  position: absolute;
  background: var(--accent-color-02);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  inset: auto 0 -20px 0;
  margin: 0 auto;
}
#about-service .inbox .srv-item-ttl {
  padding-left: 110px;
  position: relative;
  margin-bottom: 25px;
  margin-top: 60px;
}
#about-service .inbox .srv-item-ttl::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  position: absolute;
  background: var(--main-color);
  inset: 0 auto 0 0;
  margin: auto 0;
}
#about-service .inbox .srv-item {
  position: relative;
  display: grid;
  gap: 30px;
}
#about-service .inbox .srv-item .srv-img {
  position: absolute;
  right: 0;
}
#about-service .inbox .srv-item.srv-01 .srv-img {
  top: 0;
}
#about-service .inbox .srv-item.srv-01 .box-small {
  min-height: 392px;
}
#about-service .inbox .srv-item.srv-02 .srv-img {
  bottom: 0;
}
#about-service .inbox .srv-item.srv-02 .box-small {
  min-height: 300px;
}
#about-service .inbox .srv-item .srv-box {
  width: 100%;
  padding: 60px 100px;
}
#about-service .inbox .srv-item .box-small {
  width: 650px;
}
#about-service .inbox .srv-item .box-deco {
  background: url(../img/about/srv-ill.png) right bottom no-repeat;
}
#about-service .inbox .srv-item .box-deco .sap-li-box {
  gap: 45px;
}
#about-service .inbox .srv-item .box-deco .sap-li {
  display: grid;
  gap: 5px;
}

#beginner-point {
  padding-bottom: 0;
}
#beginner-point ul {
  display: grid;
  gap: 70px;
}
#beginner-point ul li {
  align-items: start;
  position: relative;
  gap: 40px;
}
#beginner-point ul li .point-ill {
  display: grid;
  place-items: center;
  width: 130px;
  aspect-ratio: 1;
  position: relative;
}
#beginner-point ul li .point-ill .num {
  font-weight: 500;
  position: absolute;
  top: -20px;
  left: 0px;
  font-size: 4.4rem;
}
#beginner-point ul li .txt-box {
  width: 670px;
}

#beginner-merit ul {
  display: grid;
  gap: 70px;
}
#beginner-merit ul li {
  padding: 0 60px;
}
#beginner-merit ul li .merit-img {
  width: 390px;
}
#beginner-merit ul li .txt-box {
  width: 505px;
}

#beginner-flow .ttl01 {
  margin-bottom: 80px;
}
#beginner-flow ol li {
  position: relative;
  padding: 63px 30px;
}
#beginner-flow ol li .com-num {
  position: absolute;
  inset: -35px 0 auto 0;
  margin: 0 auto;
}
#beginner-flow ol li:not(:last-child)::before {
  content: "»";
  font-size: 3rem;
  color: var(--main-color);
  position: absolute;
  top: -30px;
  right: -20px;
}

.com-num {
  font-size: 4rem;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  width: 68px;
  height: 68px;
}

#reason ul {
  display: grid;
  gap: 40px;
}
#reason ul li {
  padding: 0 35px;
}
#reason ul li .reason-img {
  width: 390px;
  position: relative;
}
#reason ul li .reason-img .com-num {
  position: absolute;
  inset: 0 -34px 0 auto;
  margin: auto 0;
  z-index: 10;
}
#reason ul li .txt-box {
  width: 560px;
}

#case ul {
  gap: 65px;
}
#case ul li {
  padding: 65px 70px;
  background: url(../img/case/ill-03.png) right top 15px no-repeat, var(--bg-color);
  position: relative;
}
#case ul li::after {
  content: "";
  display: block;
  width: 104px;
  height: 100%;
  position: absolute;
  background: url("../img/case/ill-02.png") center/contain no-repeat;
  background-position: bottom;
  right: -15px;
  bottom: 0;
}
#case ul li .bd-01 {
  position: relative;
  padding-left: 170px;
}
#case ul li .bd-01::before {
  content: "";
  display: block;
  width: 151px;
  height: 120px;
  position: absolute;
  background: url("../img/case/ill-01.png") center/contain no-repeat;
  left: 0;
  bottom: 0;
}

#info-greeting .img-box .ttl03 {
  margin-top: 30px;
}

#info-career dl {
  padding: 70px 40px;
  display: grid;
  gap: 10px;
  justify-content: center;
}
#info-career dl .dl-item {
  gap: 20px;
}
#info-career dl .dl-item dt {
  font-size: 2.2rem;
  min-width: 170px;
}
#info-career dl .dl-item dd {
  min-width: 360px;
  display: flex;
  gap: 30px;
}
#info-career dl .dl-item dd::before {
  content: "･････";
  color: var(--main-color);
}

.map {
  height: 400px;
}

/*--------------------その他共通ページ --------------------*/
.com-other-page {
  padding: 100px 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 {
  text-align: left;
  padding: 10px 30px;
  margin-bottom: 20px;
  background: var(--main-color);
  color: #fff;
  border-radius: 5px;
}

/*---------------------------△△---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 {
  line-height: 1;
  width: 120px;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box .tag-list {
  width: 960px;
}
#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;
  font-size: 1.2rem;
}
#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---△△------------------------*/