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

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

section {
  padding: 140px 0;
}

.bd-top {
  padding: 0;
}
.bd-top .inbox {
  padding: 130px 0;
  border-top: 1px solid var(--accent-color);
}

.dl-item {
  display: flex;
}

.com-txt {
  font-size: 1.8rem;
  line-height: 2.11;
  text-align: justify;
}
.com-txt:not(:last-of-type) {
  margin-bottom: 25px;
}

.com-btn {
  display: grid;
  place-items: center;
  transition: 0.5s;
  position: relative;
  width: 340px;
  height: 80px;
  font-family: var(--ttl-font);
  font-size: 2.5rem;
  background: var(--main-color);
  color: var(--white);
  opacity: 1;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.com-btn:link, .com-btn:visited {
  color: var(--white);
}
.com-btn::after {
  content: "";
  display: block;
  width: 42px;
  height: 8px;
  position: absolute;
  background: url("../img/common/arw.png") center/contain no-repeat;
  right: 30px;
}
.com-btn:hover {
  background: var(--font-color);
  opacity: 1;
}
.com-btn.mv-btn {
  width: auto;
  justify-items: start;
  padding: 0 130px 0 35px;
}
.com-btn::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--font-color);
  position: absolute;
  z-index: -1;
  inset: 0;
  transform: translate(-100%);
  transition: 0.6s;
}
.com-btn:hover::before {
  transform: translate(0);
}

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

.ttl01 {
  display: grid;
  justify-items: center;
  text-align: center;
  font-family: var(--ttl-font);
  margin-bottom: 60px;
  gap: 10px;
}
.ttl01 .en {
  font-size: 9rem;
  line-height: 1;
  color: var(--accent-color);
}
.ttl01 .ja {
  font-size: 3rem;
}
.ttl01 .ja .big {
  font-size: 1.1666em;
}
.ttl01.txt-le {
  text-align-last: left;
  justify-items: start;
}

.ttl-deco-01 {
  padding-left: 28px;
  position: relative;
}
.ttl-deco-01::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  background: var(--accent-color);
  left: 0;
  top: 7px;
}
.ttl-deco-01.ttl02 {
  padding-left: 40px;
}
.ttl-deco-01.ttl02::before {
  width: 25px;
  height: 25px;
}

.ttl02 {
  font-size: 3rem;
}

.ttl03 {
  font-size: 2.4rem;
}

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

.com-tel {
  display: grid;
  justify-items: start;
}
.com-tel a {
  font-family: var(--ttl-font);
  font-size: 3rem;
}
.com-tel a small {
  font-size: 0.9333em;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.tag-list .tag {
  background: var(--bg-color);
  padding: 3px 10px;
  font-size: 1.4rem;
}

.com-bnr {
  width: 510px;
  height: 340px;
  position: relative;
  outline: 1px solid #fff;
  outline-offset: -10px;
  display: block;
}
.com-bnr .ttl01 {
  position: absolute;
  top: 70px;
  left: 50px;
  justify-items: start;
}
.com-bnr::after {
  content: "";
  display: block;
  width: 64px;
  height: 8px;
  position: absolute;
  background: url("../img/common/arw.png") center/contain no-repeat;
  right: 50px;
  bottom: 50px;
}

#top-other .com-bnr .ttl01 .en {
  font-size: 9.4rem;
}
#top-other p {
  margin-top: 30px;
}

.com-check {
  background: url("../img/common/check.png") left top 6px/auto no-repeat;
  padding-left: 28px;
  box-sizing: border-box;
}

/*infotableスタイル*/
.com-desc-tbl .dl-item {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.com-desc-tbl .dl-item:not(:last-child) {
  margin-bottom: 35px;
}
.com-desc-tbl .dl-item dt {
  font-size: 1.8rem;
  color: var(--main-color);
  width: 150px;
  padding-left: 10px;
  border-left: 3px solid var(--main-color);
}
.com-desc-tbl .dl-item dd {
  width: 370px;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  padding-right: 115px;
  border-top: 6px solid var(--main-color);
}
#header .hd-logo {
  background: #fff;
  padding: 30px;
}
#header .hd-logo img {
  display: block;
}
#header .hd-right {
  padding: 30px 0 0;
}
#header .hd-right .hd-top {
  gap: 30px;
  margin-bottom: 20px;
}
#header .hd-right #nav {
  margin-top: 8px;
}
#header .hd-right #nav .nav-list {
  gap: 30px;
}
#header .hd-right #nav .nav-list .nav-item {
  font-size: 1.9rem;
  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);
}

.hot-btn {
  padding: 15px 30px;
}
.hot-btn:hover {
  background: var(--main-color);
  color: #fff;
  opacity: 1;
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  background: url(../img/top/mv-bg.jpg) center/cover;
  gap: 5.88%;
  padding: 160px 0 117px;
}
.top-mv .mv-item {
  position: relative;
  width: 41.1%;
}
.top-mv .mv-item .mv-img {
  width: 100%;
  transition: 0.5s;
}
.top-mv .mv-item .mv-img img {
  width: 100%;
}
.top-mv .mv-item .mv-txt-box {
  display: grid;
  justify-items: start;
  position: absolute;
  bottom: -38px;
}
.top-mv .mv-item .mv-txt-box .mv-ct {
  margin-bottom: 20px;
  font-size: clamp(55px, 4.37vw, 84px);
}
.top-mv .mv-item .mv-txt-box .mv-btn {
  transition: 0.3s;
}
.top-mv .mv-item .mv-txt-box .ct-02 {
  font-size: 2.5rem;
  margin-top: 10px;
}
.top-mv .mv-item:hover .mv-img {
  transform: scale(1.07);
}
/*---------------------------△△---MV---△△------------------------*/
#top-worries {
  padding-bottom: 0;
}
#top-worries .inbox {
  width: 1280px;
  padding-left: 100px;
  padding-bottom: 100px;
  position: relative;
}
#top-worries .inbox::before {
  content: "Worries";
  color: #f8f8f8;
  font-size: 20rem;
  font-family: var(--en-font);
  position: absolute;
  bottom: 50px;
  left: -230px;
  z-index: -1;
}
#top-worries .ttl01 .ja {
  padding: 0 60px;
  position: relative;
  z-index: 1;
}
#top-worries .ttl01 .ja::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  background: var(--font-color);
  inset: 0;
  margin: auto;
  z-index: -1;
}
#top-worries .ttl01 .ja .bg-wt {
  padding: 0 20px;
}
#top-worries ul {
  display: grid;
  gap: 30px;
}
#top-worries ul li {
  display: grid;
  align-items: center;
  padding: 0 10px;
  padding-left: 25px;
  width: 480px;
  height: 70px;
}
#top-worries ul li:nth-child(even) {
  transform: translateX(70px);
}
#top-worries .bg-clr01 {
  padding: 90px 0 40px;
  position: relative;
}
#top-worries .bg-clr01::after {
  content: "";
  display: block;
  width: 100px;
  height: 45px;
  position: absolute;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  inset: 0 0 auto 0;
  margin: 0 auto;
}
#top-worries .bg-clr01 .ttl-ft {
  font-size: 4.8rem;
  line-height: 2;
}
#top-worries .bg-clr01 .ttl-ft .big {
  font-size: 1.1458em;
}
#top-worries .bg-clr01 .ttl-ft .ft-clr01 {
  font-size: 1.354em;
}
#top-worries .bg-clr01 .ttl-ft ruby rt {
  font-size: 2.5rem;
}

#top-concept {
  background: url(../img/top/concept-le.png) left bottom no-repeat;
}
#top-concept .inbox {
  width: 1280px;
  padding-right: 100px;
}
#top-concept .inbox .slide-box {
  width: 630px;
}
#top-concept .inbox .slide-box #slider {
  height: 828px;
}
#top-concept .inbox .slide-box #slider .slide-item {
  height: 828px;
  width: 100%;
}
#top-concept .inbox .slide-box #slider .slide-01 {
  background: url(../img/top/slide-01.jpg);
}
#top-concept .inbox .slide-box #slider .slide-02 {
  background: url(../img/top/slide-02.jpg);
}
#top-concept .inbox .slide-box #slider .slide-03 {
  background: url(../img/top/slide-03.jpg);
}
#top-concept .inbox .slide-box #slider .slide-04 {
  background: url(../img/top/slide-04.jpg);
}
#top-concept .inbox .slide-box .en {
  margin-top: 30px;
}
#top-concept .inbox .txt-box {
  width: 486px;
}
#top-concept .inbox .txt-box .ttl01 .en {
  font-size: 11rem;
}
#top-concept .inbox .txt-box .ttl01 .ja {
  font-size: 3.5rem;
}
#top-concept .inbox .txt-box .com-txt {
  font-size: 1.9rem;
}
#top-concept .inbox .txt-box .com-btn {
  width: 100%;
  margin-top: 60px;
}

#top-other {
  position: relative;
  padding-bottom: 170px;
}
#top-other::before {
  content: "";
  display: block;
  width: 100%;
  height: 1070px;
  position: absolute;
  background: url(../img/top/other-bg.jpg) center/cover;
  bottom: 0;
  left: 0;
  z-index: -1;
}

#top-case .inbox {
  position: relative;
}
#top-case .inbox .case-li li {
  width: 520px;
  padding: 50px 40px 40px;
}
#top-case .inbox .case-li li .ttl03 {
  margin-bottom: 30px;
}
#top-case .inbox .com-btn {
  position: absolute;
  right: 0;
  top: 60px;
}
#top-case .inbox .com-btn span {
  padding-right: 20px;
}

.bfaf-box {
  position: relative;
}
.bfaf-box::before {
  content: "";
  display: block;
  width: 105px;
  height: 87px;
  position: absolute;
  background: url("../img/case/arw.png") center/contain no-repeat;
  inset: 0 0 auto 0;
  margin: 0 auto;
}
.bfaf-box .en {
  margin-bottom: 10px;
}
.bfaf-box .en span {
  padding: 5px 10px;
}
.bfaf-box .bf-box .en {
  font-size: 2.2rem;
}
.bfaf-box .bf-box .bf-img {
  width: 190px;
  height: 200px;
}
.bfaf-box .af-box .en {
  font-size: 2.8rem;
}
.bfaf-box .af-box .af-img {
  width: 230px;
  height: 250px;
}

/*--------▽▽---MV---▽▽---------- */
#top-news .inbox {
  position: relative;
}
#top-news .inbox .ttl01 {
  width: 280px;
  margin: 0;
  padding: 0;
}
#top-news .inbox .news-list {
  width: 635px;
  min-height: 300px;
  padding: 10px 65px;
}
#top-news .inbox .news-list .news-item {
  border-bottom: 1px solid var(--bd-color);
}
#top-news .inbox .news-list .news-item a {
  padding: 20px 0;
  display: grid;
  gap: 5px;
}
#top-news .inbox .news-list .news-item a:hover {
  transform: translateX(10px);
}
#top-news .inbox .news-list .news-item a time {
  font-size: 2rem;
  line-height: 1;
}
#top-news .inbox .news-list .news-item a h4 {
  width: 100%;
}
#top-news .inbox .com-btn {
  position: absolute;
  left: 0;
  top: 370px;
}

/*------------△△---MV---△△---------*/
#com-contact {
  background: url(../img/common/contact-bg.png) top -70px center/100% no-repeat, var(--accent-color);
}
#com-contact .inbox {
  display: grid;
  justify-items: center;
}
#com-contact .inbox .ttl01 {
  margin-bottom: 40px;
}
#com-contact .inbox .com-tel {
  padding: 20px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  justify-items: center;
  gap: 15px;
}
#com-contact .inbox .com-tel a {
  font-size: 4.2rem;
}
#com-contact .inbox .contact-info {
  margin: 30px 0;
  gap: 50px;
}
#com-contact .inbox .contact-info .dl-item {
  position: relative;
}
#com-contact .inbox .contact-info .dl-item:not(:last-child)::after {
  content: "／";
  position: absolute;
  right: -35px;
}
#com-contact .inbox .btn-li {
  width: 100%;
}
#com-contact .inbox .btn-li .com-btn {
  font-size: 2rem;
}
#com-contact .inbox .btn-li .com-btn::after {
  right: 20px;
}
#com-contact .inbox .btn-li .com-btn span {
  padding-right: 30px;
}

#footer {
  padding: 100px 0;
  background: url(../img/common/ft-bg.jpg) center/cover no-repeat;
}
#footer .ft-area .ft-le {
  width: 50%;
  display: grid;
  justify-items: start;
  gap: 30px;
}
#footer .ft-area .ft-le .site-btn {
  width: 296px;
  height: 60px;
}
#footer .ft-area .ft-le .site-btn::after {
  content: none;
}
#footer .ft-area .ft-le .site-btn span {
  padding-right: 30px;
  background: url(../img/common/site-arw.png) right no-repeat;
}
#footer .ft-area .ft-ri {
  width: 50%;
  display: grid;
  justify-items: end;
  gap: 70px;
}
#footer .ft-area .ft-ri .nav-box {
  gap: 50px;
}
#footer .ft-area .ft-ri .nav-box .nav-list {
  display: grid;
  gap: 20px;
}
#footer .ft-area .ft-btm {
  width: 100%;
  margin-top: 50px;
  border-top: 1px solid var(--accent-color);
  padding-top: 25px;
}
#footer .ft-area .ft-btm .nav-sub {
  font-size: 1.4rem;
}
#footer .ft-area .ft-btm .nav-sub li:not(:last-child) {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid var(--accent-color);
}
#footer .ft-area .ft-btm .copyright {
  font-size: 1.2rem;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
/*---------------------------▽▽---SV---▽▽------------------------*/
.sv-area {
  padding: 170px 0 90px;
  background: url(../img/sv/bg.jpg) center/cover;
  margin-bottom: 30px;
}

.sv {
  height: 550px;
  width: clamp(1180px, 88.28%, 1695px);
  width: 88.28%;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  padding: 0 80px;
  display: grid;
  align-items: end;
}
.sv .sv-catch {
  gap: 20px;
}
.sv .sv-catch .en {
  font-size: 9.4rem;
}
.sv .sv-catch .ja {
  font-size: 3.6rem;
}

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

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

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

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

.voice-sv {
  background-image: url(../img/sv/voice.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---△△---------*/
#about-greeting {
  padding-bottom: 170px;
}
#about-greeting .inbox {
  position: relative;
}
#about-greeting .inbox .img-box {
  width: 470px;
}
#about-greeting .inbox .img-02 {
  position: absolute;
  left: -100px;
  bottom: -70px;
}
#about-greeting .inbox .txt-box {
  width: 520px;
}

#about-staff .staff-li {
  display: grid;
  gap: 30px;
}
#about-staff .staff-li li {
  padding: 60px 70px;
}
#about-staff .staff-li li .staff-img {
  width: 450px;
  height: 300px;
}
#about-staff .staff-li li .txt-box {
  width: 435px;
}
#about-staff .staff-li li .txt-box .ttl02 {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--bd-color);
  margin-bottom: 20px;
}

#about-wax {
  background: url(../img/about/remov-bg.jpg) center/cover;
}

.remove-box .txt-box {
  width: 480px;
}
.remove-box .com-frame {
  width: 100%;
  margin-top: 80px;
}
.remove-box .com-frame .point-li {
  display: grid;
  gap: 20px;
}
.remove-box .com-frame .point-li li {
  padding: 25px 35px;
}
.remove-box .com-frame .point-li li .ttl03 {
  margin-bottom: 10px;
}

.com-pd {
  padding: 50px 55px;
}

.com-frame .ttl02 {
  padding: 20px;
}
#about-notice ul {
  display: grid;
  gap: 40px;
}
#about-notice ul li {
  display: flex;
  align-items: start;
  gap: 10px;
  padding-left: 15px;
  position: relative;
  line-height: 1.8;
}
#about-notice ul li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  background: var(--main-color);
  border-radius: 50vw;
  left: 0;
  top: 12px;
}

#about-info .com-desc-tbl {
  width: 50%;
}
#about-info .info-img {
  position: relative;
  width: 480px;
}
#about-info .info-img .img-02 {
  right: -50px;
  bottom: -110px;
  position: absolute;
}

.map {
  height: 500px;
}

#menu .inbox > .com-txt {
  margin-bottom: 10px;
}
#menu .menu-li {
  display: grid;
  gap: 75px;
}
#menu .menu-li li .com-pd {
  padding: 60px 65px;
}
#menu .menu-li li .com-pd .menu-img {
  width: 950px;
  height: 500px;
  margin-bottom: 60px;
}
#menu .menu-li li .com-pd dl .dl-item dt .com-txt {
  margin: 0;
}
#menu .menu-li li .com-pd dl .dl-item dt, #menu .menu-li li .com-pd dl .dl-item dd {
  display: grid;
  place-items: center;
  width: 50%;
  padding: 15px 10px;
}
#menu .menu-li li .com-pd dl .dl-item:not(:last-child) dt {
  border-bottom: 1px solid #fff;
}
#menu .menu-li li .com-pd dl .dl-item:not(:last-child) dd {
  border-bottom: 1px solid var(--main-color);
}

#menu-other .ttl01 .en {
  font-size: 7rem;
}
#menu-other .ttl01 .ja {
  font-size: 2.6rem;
}

#case .case-li .case-item {
  padding: 80px 65px 60px;
}
#case .case-li .case-item p {
  line-height: 1.8;
}
#case .case-li .case-item .bfaf-box {
  margin-top: 15px;
  position: relative;
  margin-bottom: 40px;
}
#case .case-li .case-item .bfaf-box::before {
  content: "";
  display: block;
  width: 105px;
  height: 87px;
  position: absolute;
  background: url("../img/case/arw.png") center/contain no-repeat;
  top: 35px;
  left: 330px;
  margin: 0;
}
#case .case-li .case-item .bfaf-box .en {
  margin-bottom: 20px;
}
#case .case-li .case-item .bfaf-box .en span {
  padding: 5px 10px;
}
#case .case-li .case-item .bfaf-box .bf-box .en {
  font-size: 2.8rem;
}
#case .case-li .case-item .bfaf-box .bf-box .bf-img {
  width: 405px;
  height: 340px;
}
#case .case-li .case-item .bfaf-box .af-box .af-img {
  width: 490px;
  height: 420px;
}

#voice .voice-li {
  gap: 60px 0;
}
#voice .voice-li .voice-item {
  width: 510px;
}
#voice .voice-li .voice-item .voice-img {
  margin-top: 30px;
}
#voice .voice-li .voice-item .voice-img img {
  width: 100%;
}

/*--------------------その他共通ページ --------------------*/
.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;
}

/*---------------------------△△---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;
}
#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---△△------------------------*/