@charset "UTF-8";
/*アニメーションCSS*/
/*ボーダーが真ん中から左右に広がる*/
/*ボタンの背景が横から出てくる*/
/*spスタイル */
html {
  font-size: 2.6666666667vw;
}

.inbox {
  width: 86%;
  box-sizing: border-box;
  margin: 0 auto;
}

.sp-none {
  display: none;
}

.current {
  color: var(--main-color);
}

/*すまほセレクトボックス*/
.select-area {
  position: relative;
  width: 70vw;
  height: 15vw;
}
.select-area .select-box {
  font-size: 3.5vw;
  font-weight: 500;
}
.select-area .select-box option {
  font-size: 3vw;
}
/*ここから下がドロワー設定項目 */
/*drawer btn 上下左右で設定可能 */
.sp-menu-btn-wrp {
  top: 10px;
  right: 10px;
  bottom: auto;
  left: auto;
  background: var(--main-color);
  border-radius: 0;
}

.sp-menu-btn-wrp .sp-menu-btn {
  width: 15vw;
  height: 15vw;
  max-width: 75px;
  max-height: 75px;
}

.sp-menu-btn-wrp .sp-menu-btn span {
  width: 50%;
  height: 2px;
  background: #fff;
  transform-origin: center;
}

.sp-menu-btn-wrp .sp-menu-btn .top {
  top: 30%;
}

.sp-menu-btn-wrp .sp-menu-btn .middle {
  top: 0;
  bottom: 0;
}

.sp-menu-btn-wrp .sp-menu-btn .bottom {
  bottom: 30%;
}

.sp-menu-btn-wrp .sp-menu-btn-txt {
  color: #fff;
}

/*active */
.active .sp-menu-btn-wrp .sp-menu-btn span {
  width: 55%;
}

.sp-menu-btn.active .top {
  top: 48.5%;
  transform: translateY(0) translateX(0) rotate(45deg);
}

.sp-menu-btn.active .middle {
  opacity: 0;
}

.sp-menu-btn.active .bottom {
  bottom: 48.5%;
  transform: translateY(0) translateX(0) rotate(-45deg);
}

/*	drawer inbox */
#drawer-nav {
  padding: 3% 5% 30vw;
  background: url(../img/common/bg-01-btm.png) bottom center/100% no-repeat, url(../img/common/bg-01-top.png) top/100% 40rem no-repeat, #fff;
}

#drawer-nav .drawer-logo {
  width: 20%;
}

#drawer-nav .nav {
  margin-bottom: 10vw;
}

#drawer-nav .nav .drawer-link {
  box-sizing: border-box;
  padding: 3vw 2vw;
  border-bottom: 1px solid var(--main-color);
  font-size: 4vw;
  color: var(--font-color);
  font-weight: 500;
  position: relative;
}
#drawer-nav .nav .drawer-link::after {
  content: "";
  display: block;
  width: 2vw;
  height: 2vw;
  background: var(--main-color);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 3%;
  margin: auto 0;
}
#drawer-nav .nav .drawer-link.drawer-dropdown::after {
  content: none;
}

#drawer-nav .nav .current a {
  color: var(--main-color);
  padding-left: 3%;
}
#drawer-nav .nav .current a::after {
  background-color: var(--main-color);
}

#drawer-nav .nav .drawer-dropdown span {
  display: block;
}

#drawer-nav .nav .drawer-dropdown span:before {
  background: var(--main-color);
}

#drawer-nav .nav .drawer-dropdown span:after {
  background: var(--main-color);
}

#drawer-nav .nav .show span:after {
  opacity: 0 !important;
}

#drawer-nav .nav .drawer-dropdown-bx {
  margin: 3% 0;
  padding-left: 4%;
  box-sizing: border-box;
}

#drawer-nav .nav .drawer-dropdown-bx > li > .drawer-link:before {
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
}

#drawer-nav .nav .drawer-dropdown-bx > li > .drawer-link span {
  padding: 0 0 0 5%;
}

/*original custom code */
/*sns */
.sns-list {
  margin: 10% auto 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sns-list li a {
  display: block;
  width: 100%;
  min-width: 25px;
}
.sns-list li a img {
  display: block;
  max-width: none;
  width: 100%;
}

.drawer-info {
  gap: 3rem;
}
.drawer-info .mail-btn {
  width: 80vw;
}

/*rink-list */
.drawer-sub-nav__list {
  font-size: 3vw;
  margin-top: 10vw;
  display: flex;
  justify-content: center;
  gap: 5%;
  text-decoration: underline;
}
.drawer-sub-nav__list li {
  font-size: 3.5vw;
}

/*フォント */
body {
  font-size: 4vw;
  line-height: 1.8;
}

/*======================================================
 * ▽▽---共通スタイル---▽▽
 * =======================================================*/
html {
  scroll-padding: 0;
}

section {
  padding: 5rem 0;
}

.dl-item {
  display: flex;
}

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

.com-btn {
  position: relative;
  opacity: 1;
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 70vw;
  height: 15vw;
  margin: 3rem auto 0;
  display: grid;
  place-items: center;
  align-content: center;
  background: var(--accent-color);
  color: var(--white);
}
.com-btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--font-color-02);
  position: absolute;
  z-index: -1;
  inset: 0;
  transform: scaleX(0);
  transition: 0.5s;
  transform-origin: left;
}
.com-btn:hover::after {
  transform: scaleX(1);
}
.com-btn:link, .com-btn:visited {
  color: var(--white);
}
.com-btn::before {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  inset: 0 2rem 0 auto;
  margin: auto 0;
  mix-blend-mode: screen;
  transition: 0.3s;
}
.com-btn:hover {
  opacity: 1;
}
.com-btn:hover::before {
  transform: translateX(1rem);
}
.com-btn.flex {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.mail-btn {
  margin: 0;
  width: auto;
  height: 20vw;
  gap: 1rem;
}
.mail-btn::before {
  right: 1rem;
}
.mail-btn .en {
  color: var(--accent-color) !important;
  position: absolute;
  inset: 0 auto 0 1.5rem;
  display: grid;
  align-content: center;
  font-size: 6rem;
  z-index: 1;
  mix-blend-mode: screen;
}
.mail-btn span {
  z-index: 10;
}
.mail-btn span img {
  width: 80%;
}

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

.ttl01 {
  text-align: center;
  color: var(--main-color);
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 4rem;
}
.ttl01 .ttl02 {
  color: var(--font-color);
}

.ttl02 {
  font-size: 2.6rem;
  font-weight: 900;
}

.ttl03 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--font-color-02);
}
.ttl03.bg-clr02 {
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
}

.ttl04 {
  font-size: 1.7rem;
}

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

.num-ttl {
  position: relative;
  z-index: 1;
}
.num-ttl .num {
  position: absolute;
  z-index: -1;
  opacity: 0.4;
}

.num-list {
  align-items: start;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem 8%;
}
.num-list li {
  width: 46%;
  display: grid;
  justify-items: center;
  align-content: start;
}
.num-list li .img-box {
  width: 80%;
}
.num-list li .com-txt {
  text-align: justify;
}
.num-list li .num-ttl {
  font-feature-settings: "palt";
  min-height: 9rem;
  display: grid;
  align-content: center;
  text-align: center;
}
.num-list li .num-ttl .num {
  inset: 1rem 0 0 0;
}

.en-01 {
  font-size: 7rem;
}

.en-02 {
  font-size: 8rem;
}

.txt-sdw {
  color: transparent;
  text-stroke: 2px var(--main-color);
  -webkit-text-stroke: 2px var(--main-color);
}

.bg-01 {
  padding-top: 5rem;
  background: url(../img/common/bg-01-btm.png) bottom center/100% no-repeat, url(../img/common/bg-01-top.png) top/100% 40rem no-repeat;
}

.bg-02 {
  padding-bottom: 10rem;
  background: url(../img/common/bg-02-top.png) top/100% no-repeat;
}

#top-page .bg-02 {
  background: url(../img/common/bg-02-top.png) top/100% no-repeat, url(../img/common/bg-02-btm.png) bottom -2rem left/58.1% no-repeat;
}

#company-page .bg-01 {
  background: url(../img/common/bg-01-btm.png) bottom center/100% no-repeat, url(../img/common/bg-01-top.png) top/100% 40rem no-repeat;
}

.com-tel {
  font-size: 3.8rem;
  color: var(--main-color);
  line-height: 1;
  gap: 1rem;
  align-items: center;
  display: grid;
  justify-items: center;
}
.com-tel a {
  display: block;
  background: url("../img/common/tel-icon.png") left center/2.5rem no-repeat;
  padding-left: 3.5rem;
  box-sizing: border-box;
}
.com-tel img {
  width: 70vw;
  border-bottom: 1px solid var(--sub-color-02);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.tag-list .tag {
  line-height: 1;
  color: #fff;
  background: var(--sub-color);
  padding: 0.5rem 1rem;
  font-size: 1.4rem;
}

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

/*infotableスタイル*/
.com-desc-tbl {
  padding: 2rem;
}
.com-desc-tbl .dl-item {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 0;
}
.com-desc-tbl .dl-item:not(:last-child) {
  border-bottom: 2px solid var(--sub-color);
}
.com-desc-tbl .dl-item dt {
  width: 27%;
}
.com-desc-tbl .dl-item dd {
  width: 70%;
  line-break: loose;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 1000;
  padding: 3vw 5vw;
  position: fixed;
}
#header .hd-logo {
  width: 20%;
}
#header .hd-logo img {
  display: block;
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  margin-top: 7.7rem;
  position: relative;
  z-index: 1;
  padding-bottom: 18rem;
}
.top-mv::before {
  content: "";
  display: block;
  width: 100%;
  height: 8rem;
  position: absolute;
  background: var(--bg-color);
  bottom: 0;
  left: 0;
  z-index: -1;
}
.top-mv img {
  width: 100%;
}
.top-mv .mv-img {
  width: 87%;
  margin-left: auto;
}
.top-mv .mv-ct {
  width: 70%;
  position: absolute;
  left: 3%;
  top: 15rem;
}
.top-mv .mv-deco {
  width: 70%;
  position: absolute;
  left: 0;
  bottom: 0;
}

/*---------------------------△△---MV---△△------------------------*/
/*--------▽▽---NEWS---▽▽---------- */
#top-news .inbox {
  position: relative;
}
#top-news .inbox .ttl01 {
  padding: 0;
  display: grid;
  align-items: center;
  width: auto;
}
#top-news .inbox .news-list {
  display: grid;
  gap: 2rem;
}
#top-news .inbox .news-list .news-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#top-news .inbox .news-list .news-item a:hover {
  transform: translateX(10px);
}
#top-news .inbox .news-list .news-item a .com-img {
  width: 30%;
  aspect-ratio: 1.4;
}
#top-news .inbox .news-list .news-item a h4 {
  width: 100%;
}
#top-news .inbox .news-list .news-item a .txt-box {
  display: flex;
  flex-wrap: wrap;
  width: 66%;
  gap: 0.5rem 1rem;
}
/*------------△△---NEWS---△△---------*/
#top-about {
  position: relative;
}
#top-about .com-img {
  width: 100%;
  aspect-ratio: 1.51;
}
#top-about .com-txt {
  margin-top: 3rem;
  margin-bottom: 3rem;
  text-align: justify;
}
#top-about img {
  width: 100%;
}

#top-service .num-list {
  gap: 2rem 0;
}
#top-service .num-list li {
  width: 50%;
}

#top-clients {
  position: relative;
}
#top-clients .ttl01 .en {
  letter-spacing: 0;
}
#top-clients ul {
  gap: 1rem;
}
#top-clients ul li {
  color: var(--font-color);
  font-weight: 500;
  background: url("../img/common/check.png") left top 1rem/2rem no-repeat;
  padding-left: 3rem;
  box-sizing: border-box;
}
#top-clients .com-img {
  width: 100%;
  aspect-ratio: 1.51;
  z-index: -1;
  margin-top: 3rem;
}

#top-other {
  padding: 0;
  display: grid;
  justify-items: center;
  gap: 2rem;
}
#top-other a {
  width: 80%;
  position: relative;
  align-content: center;
  justify-items: center;
  z-index: 1;
}
#top-other a img {
  width: 100%;
}
#top-other a::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3rem;
  position: absolute;
  background: url("../img/top/other-arw.png") center/contain no-repeat;
  inset: 0 1rem 0 auto;
  margin: auto 0;
}
#top-other a .ttl02 {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  z-index: 1;
}
#top-other a .ttl02 .en {
  position: absolute;
  top: 5%;
  left: 0;
  z-index: -1;
}
#top-other a .img-box {
  width: 100%;
  height: 100%;
}

#common-contact {
  background: url(../img/common/contact-bg.jpg) top/100% 40rem no-repeat;
}
#common-contact .ttl01 {
  position: relative;
}
#common-contact .ttl01 .en {
  font-size: 7rem;
}
#common-contact .ttl01::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.2rem;
  position: absolute;
  background: var(--main-color);
  right: 0;
  margin: auto 0;
  bottom: 0;
}
#common-contact .contact-box {
  display: grid;
  gap: 2rem;
  margin-bottom: 5rem;
}
#common-contact .contact-box .com-tel {
  padding: 2rem 0;
}
#common-contact .contact-box .mail-btn::before {
  width: 3rem;
  height: 3rem;
}
#common-contact .recruit-box {
  position: relative;
  padding: 2rem;
  gap: 1rem;
}
#common-contact .recruit-box .com-btn .ja {
  padding-right: 5rem;
  margin-right: 5rem;
  background: url(../img/common/site-arw.png) right center/2.5rem no-repeat;
}
#common-contact .recruit-box .com-btn::before {
  width: 3rem;
  height: 3rem;
}
#common-contact .recruit-box .com-btn::after {
  content: none;
}
#common-contact .recruit-box .img-box {
  margin-top: -2rem;
  position: relative;
  bottom: -2rem;
  left: -4rem;
  width: 130%;
}

.pagetop {
  position: fixed;
  z-index: 100;
  right: 0;
  bottom: 3rem;
}

#footer {
  position: relative;
}
#footer .ft-area {
  padding: 5rem 0;
}
#footer .ft-area .ft-le {
  gap: 3rem 0;
  display: grid;
  justify-items: center;
}
#footer .ft-area .ft-le .ft-info {
  display: grid;
  gap: 1rem;
}
#footer .ft-area .ft-le .ft-info dt {
  width: 28%;
  border-right: 1px solid var(--main-color);
  margin-right: 1rem;
}
#footer .ft-area .ft-le .ft-info dd {
  width: 70%;
}
#footer .ft-area .ft-ri {
  margin-top: 4rem;
  gap: 2rem;
  display: grid;
  justify-items: center;
}
#footer .ft-area .ft-ri .line-btn {
  margin-top: 0;
}
#footer .nav-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem 0;
  padding: 2.3rem;
  padding-bottom: 10rem;
}
#footer .nav-list .nav-item {
  line-height: 1;
  text-align: center;
  width: 50%;
}
#footer .copyright {
  font-size: 1rem;
  text-align: center !important;
  position: absolute;
  bottom: 1rem;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
.job-area .txt-box {
  order: 1;
  margin-bottom: 3rem;
}
.job-area .txt-box .ttl01 {
  margin-bottom: 3rem;
  font-feature-settings: "palt";
}
.job-area .img-box {
  text-align: center;
}
.job-area .point-box {
  margin-top: 5rem;
  order: 2;
}
.job-area .point-box .ttl02 {
  margin-bottom: 2rem;
}
.job-area .point-box .com-txt {
  font-size: 1.4rem;
}

#feature ol {
  gap: 6rem;
}
#feature ol li .txt-box .ttl03 {
  margin-bottom: 1rem;
}
#feature ol li .txt-box .num {
  top: -3rem;
  left: -2rem;
}
#feature ol li .img-box {
  text-align: center;
  margin-top: 2rem;
}

.case-area {
  padding: 10rem 0;
  background: url(../img/common/bg-01-top.png) top/100% 80rem no-repeat;
}

.case-item .com-img {
  aspect-ratio: 1.3125;
}
.case-item .com-img .txt-cap {
  padding: 0.3rem 0.5rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 6rem;
  text-align: center;
}
.case-item .bfaf-box {
  position: relative;
  margin-bottom: 2rem;
}
.case-item .bfaf-box::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  position: absolute;
  background: url("../img/case/arw.png") center/contain no-repeat;
  inset: 0;
  margin: auto;
}

.case-list {
  display: grid;
  gap: 4rem;
}
.case-list .case-item {
  padding: 2rem;
}
.case-list .case-item .bfaf-box {
  display: flex;
  justify-content: space-between;
}
.case-list .case-item .com-img {
  width: 45%;
}

.case-detail {
  padding: 2rem;
  display: grid;
}
.case-detail .bfaf-box {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
  order: 1;
}
.case-detail .bfaf-box::after {
  transform: rotate(90deg);
}
.case-detail .ttl03 {
  padding-bottom: 1rem;
  margin-bottom: 3rem;
  border-bottom: 2px solid var(--main-color);
}
.case-detail .com-txt {
  order: 2;
}

#company-greeting {
  padding-bottom: 17rem;
  position: relative;
  background: url(../img/company/bg-01.png) right bottom 0/80% no-repeat;
}
#company-greeting .img-box {
  position: absolute;
  text-align: center;
  width: 40%;
  bottom: 0;
  right: 0;
}

#company-philosophy .inbox {
  gap: 0 7rem;
}
#company-philosophy .img-box {
  text-align: center;
  margin-bottom: 2rem;
}
#company-philosophy .txt-box .ttl02 {
  margin-bottom: 1rem;
}

#company-guide ul {
  gap: 4rem;
}
#company-info .com-desc-tbl {
  margin-bottom: 5rem;
}
#company-info .map-box {
  margin-top: 4rem;
  gap: 4rem;
}
#company-info .map-box .map {
  height: 30rem;
}

/*---------------------------▽▽---SV---▽▽------------------------*/
.sv {
  margin-top: 7.7rem;
  position: relative;
}
.sv .com-img {
  width: 87%;
  height: 15rem;
  margin-left: auto;
}
.sv::after {
  content: "";
  display: block;
  width: 40%;
  height: auto;
  aspect-ratio: 1.7584;
  position: absolute;
  background: url("../img/top/mv-deco.png") center/contain no-repeat;
  left: 0;
  bottom: 0;
  z-index: 5;
}
.sv::before {
  content: "";
  display: block;
  width: 100%;
  height: 13rem;
  position: absolute;
  background: var(--bg-color);
  bottom: 0;
  left: 0;
  z-index: -1;
}
.sv .sv-catch {
  position: absolute;
  display: grid;
  align-content: center;
  width: 90%;
  margin: 0 auto;
  inset: 0;
  font-size: 2.2rem;
  z-index: 10;
}
.sv .sv-catch span {
  display: inline-block;
  width: 75%;
  padding: 0.5rem;
}

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

/*---------------------------△△---SV---△△------------------------*/
/*----------▽▽---breadcrumbs---▽▽-------*/
.breadcrumbs-area {
  position: relative;
  z-index: 10;
}
.breadcrumbs-area .breadcrumbs {
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
  top: 2vw;
  font-size: 3.5vw;
}
.breadcrumbs-area .breadcrumbs li:not(:first-child)::before {
  content: ">";
  padding: 0 10px;
}

/*---------------------------△△---breadcrumbs---△△------------------------*/
/*その他共通ページ*/
.com-other-page {
  padding: 7rem 0;
  background: url(../img/common/bg-01-btm.png) bottom center/100% 20rem no-repeat, url(../img/common/bg-01-top.png) top/100% 40rem no-repeat;
}

/*---------------------------▽▽---site.html---▽▽------------------------*/
#site-map .site-list {
  padding: 10% 0 30%;
}
#site-map .site-list li {
  font-size: 4.2vw;
}
#site-map .site-list li a {
  display: block;
  padding: 6% 0;
  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.html---△△------------------------*/
/*---------------------------▽▽---404.html---▽▽------------------------*/
#notfound .inbox .ttl01 {
  font-size: 2.8rem;
}
#notfound .inbox .com-txt {
  padding: 10% 0 20%;
}
#notfound .inbox .com-txt a {
  text-decoration: underline;
  color: var(--font-color);
}

/*---------------------------△△---404.html---△△------------------------*/
/*---------------------------▽▽---privacy.html---▽▽------------------------*/
#privacy .privacy-box {
  padding: 0;
  margin-bottom: 10vw;
}
#privacy .privacy-box .ttl02 {
  color: #fff;
  font-size: 5vw;
  text-align: left;
  margin-bottom: 5vw;
  line-height: 1.5;
  background: var(--main-color);
  padding: 3vw 2vw;
}

/*---------------------------△△---privacy.html---△△------------------------*/
/*---------------------------▽▽---news.html---▽▽------------------------*/
#news .select-area {
  margin-bottom: 10vw;
  position: relative;
}
#news .select-area .select-box {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-weight: 500;
}
#news .news-area {
  margin-bottom: 10vw;
}
#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: 8% 0;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box {
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
  gap: 2vw 3%;
  font-size: 3.5vw;
  margin-bottom: 4vw;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box time {
  width: 35%;
  font-weight: 500;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box .tag-list {
  width: 62%;
}
#news .news-area .news-list .news-item a .news-txt-box .list-ttl {
  font-weight: 500;
  font-size: 4.2vw;
  margin-bottom: 3vw;
  letter-spacing: 0.1em;
}
#news .news-area .news-list .news-item a .news-txt-box .list-txt {
  font-size: 3.4vw;
  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: 35%;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box {
  width: 60%;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box .data-box {
  flex-wrap: wrap;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box .data-box time {
  width: 100%;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box .data-box .tag-list {
  width: 100%;
}

/*detail */
#detail {
  padding-bottom: 30vw;
}
#detail .detail-box {
  margin-bottom: 20vw;
}
#detail .detail-box .data-box {
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
  gap: 4%;
  font-size: 3.5vw;
  padding-top: 10%;
  margin-bottom: 5vw;
}
#detail .detail-box .data-box time {
  font-weight: 500;
}
#detail .detail-box .data-box .tag-list {
  width: 68%;
  display: flex;
  flex-wrap: wrap;
  gap: 2vw 1vw;
  font-size: 3.3vw;
}
#detail .detail-box .data-box .tag-list .tag a {
  display: block;
  width: 100%;
  height: 100%;
}
#detail .detail-box .detail-ttl {
  letter-spacing: 0.05em;
  text-align: left;
  font-size: 5.5vw;
  font-weight: 500;
  padding: 0 0 4%;
  margin-bottom: 5vw;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
#detail .detail-box .detail-txt {
  font-size: 4vw;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
#detail .detail-box .detail-txt img {
  margin: 5%;
}

.pagenation {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3%;
  margin-top: 10vw;
}
.pagenation li {
  width: 9vw;
  height: 9vw;
  box-sizing: border-box;
  border: 2px solid var(--main-color);
  font-size: 4vw;
  background: #fff;
}
.pagenation li a, .pagenation li span {
  padding: 20% 35%;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 1;
}
.pagenation .current {
  background: var(--main-color);
  color: #fff;
}

.pagenation-detail {
  position: relative;
  margin-top: 10%;
}
.pagenation-detail p a {
  background: var(--main-color);
  padding: 5% 0;
  box-sizing: border-box;
  text-align: center;
  font-size: 3.5vw;
  letter-spacing: 0.2em;
  position: absolute;
  color: #fff;
}
.pagenation-detail .left a {
  top: 0;
  left: 0;
  width: 20%;
}
.pagenation-detail .right a {
  top: 0;
  right: 0;
  width: 20%;
}
.pagenation-detail .center a {
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 35%;
}

/*---------------------------△△---news.html---△△------------------------*/
/*---------------------------▽▽---contact.html---▽▽------------------------*/
#contact .table-wrapper {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 20%;
}
#contact .table-wrapper .contact-form-table tr {
  margin-bottom: 5%;
}
#contact .table-wrapper .contact-form-table tr th {
  width: 100%;
  box-sizing: border-box;
  padding: 3vw 2vw;
  font-size: 3.8vw;
  margin-bottom: 3%;
}
#contact .table-wrapper .contact-form-table tr th .required-mark {
  font-size: 3.5vw;
  padding: 1% 2%;
  margin: -0.5%;
  float: right;
}
#contact .table-wrapper .contact-form-table tr th .upload-notice {
  display: inline-block;
  margin-top: 5%;
  line-height: 1.5;
}
#contact .table-wrapper .contact-form-table tr td {
  width: 100%;
  box-sizing: border-box;
}
#contact .table-wrapper .contact-form-table tr td .upload-item-wrap .thumb {
  width: 40vw;
  height: 40vw;
  margin-bottom: 5%;
}
#contact .table-wrapper .contact-form-table tr td .ancion-btn-wrap {
  width: 30vw;
}
#contact .table-wrapper .contact-form-table tr td .ancion-btn-wrap .ancion-btn {
  font-size: 3vw;
  width: 100%;
  box-sizing: border-box;
  padding: 12% 0;
  margin-bottom: 10%;
  line-height: 1;
}
#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 {
  font-family: "游ゴシック", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  padding: 4%;
  font-size: 4vw;
  box-shadow: none;
}
#contact .table-wrapper .contact-form-table tr td label {
  font-size: 4vw;
  font-family: "游ゴシック", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}
#contact .table-wrapper .contact-form-table tr td textarea {
  height: auto;
}
#contact .table-wrapper .contact-form-table tr td .p-postal-code {
  width: 30%;
}
#contact .table-wrapper .contact-form-table tr td .birth-txt {
  width: 30%;
}
#contact .table-wrapper .contact-form-table tr td .error-text {
  font-family: "游ゴシック", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-weight: 500;
}
#contact .table-wrapper .contact-form-table tr .select-area {
  padding: 4% 0;
  display: inline;
  position: relative;
}
#contact .table-wrapper .contact-form-table tr .select-area .select-box {
  width: 60%;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 10%;
}
#contact .table-wrapper .contact-form-table tr .select-area::after {
  content: "";
  display: block;
  width: 1vw;
  height: 1vw;
  position: absolute;
  border-right: 1px solid #262626;
  border-bottom: 1px solid #262626;
  transform: rotate(45deg);
  right: 3vw;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#contact .table-wrapper .contact-form-table tr .check-box-confirmation {
  display: flex;
  flex-wrap: wrap;
  gap: 3vw;
}

.privacy-agree {
  display: block;
}
.privacy-agree a {
  text-decoration: underline;
}

.check {
  margin: 10% auto 0px;
}
.check .contact-recaptcha-wrap {
  margin: 0 auto 15%;
}

.contact-submits-wrap {
  border-radius: 5px;
  width: 80%;
  margin: 0 auto 0;
}
.contact-submits-wrap .contact-check-btn {
  width: 100%;
  height: 15vw;
  color: #fff;
  font-size: 4vw;
  letter-spacing: 0.2em;
  transition: 0.3s;
  cursor: pointer;
  position: relative;
  margin: 0;
  border-radius: 5px;
  background: var(--main-color);
}
.contact-submits-wrap .contact-back-btn {
  width: 80%;
  border: none;
  background: #bebebe;
  margin-bottom: 10%;
  border-radius: 5px;
  font-size: 4vw;
}

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

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

/*---------------------------▽▽---contact.html---▽▽------------------------*/