@charset "UTF-8";
/*アニメーションCSS*/
/*ボーダーが真ん中から左右に広がる*/
/*ボタンの背景が横から出てくる*/
/*spスタイル */
.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: 2vw;
}

.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-color: var(--bg-color-02);
}

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

#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%;
}

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

.drawer-info .com-tel {
  margin-bottom: 5vw;
}

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

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

section {
  padding: 20vw 0;
}

.dl-item {
  display: flex;
}

.com-txt {
  line-height: 2;
  font-size: 4vw !important;
}
.com-txt:not(:last-of-type) {
  margin-bottom: 5vw;
}

.com-btn {
  margin: 10vw 0 0;
  border-radius: 50vw;
  display: grid;
  place-items: center;
  width: 70vw;
  height: 15vw;
  margin: 10vw auto 0;
  background: #fff;
  font-size: 4.5vw;
  border: 1px solid var(--bd-color);
  position: relative;
}
.com-btn::after {
  content: "";
  display: block;
  width: 5vw;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  inset: 0 5vw 0 auto;
  margin: auto 0;
  transition: 0.3s;
}
.com-btn:hover {
  opacity: 1;
  background: var(--main-color);
  color: #fff;
}
.com-btn:hover::after {
  transform: translateX(10px);
}

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

.ttl01 {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-bottom: 10vw;
  gap: 2vw;
}
.ttl01 .en {
  line-height: 1;
  font-size: 10vw;
}
.ttl01 .en::first-letter {
  text-transform: uppercase;
}
.ttl01 .ja {
  font-size: 6vw;
}
.ttl01.txt-le {
  text-align: left;
  justify-items: start;
}

.ttl02 {
  font-size: 5vw;
  margin-bottom: 5vw;
}
.ttl02 small {
  font-size: 0.8333em;
}

.ttl03 {
  font-size: 4.5vw;
}

.txt-cap {
  font-size: 3.5vw;
}

.ttl-bd {
  border-bottom: 2px solid var(--font-color);
  padding-bottom: 2vw;
  width: 100%;
}

.ttl-bg {
  padding: 2vw;
  border-radius: 2vw;
}

.com-tel {
  display: grid;
  justify-items: start;
}
.com-tel a {
  font-size: 7vw;
  line-height: 1;
  font-family: var(--en-font);
}
.com-tel a::before {
  content: "TEL/FAX";
  font-size: 0.4em;
}
.com-tel img {
  width: 80%;
}

.dots {
  background-image: radial-gradient(circle at center, var(--main-color) 3px, transparent 3px);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1.1em 0.5em;
  padding-top: 0.2em;
}

.mail-btn {
  display: grid;
  place-items: center;
  width: 70vw;
  height: 15vw;
  position: relative;
  font-size: 3.2vw;
}
.mail-btn::after {
  content: "";
  display: block;
  width: 4vw;
  height: auto;
  aspect-ratio: 1.3;
  position: absolute;
  background: url("../img/common/mail-icon.png") center/contain no-repeat;
  inset: 0 auto 0 20vw;
  margin: auto 0;
}

#common-contact .mail-btn::before {
  content: "";
  display: block;
  width: 4vw;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  background: url("../img/common/contact-arw.png") center/contain no-repeat;
  inset: 0 5vw 0 auto;
  margin: auto 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
}
.tag-list .tag {
  padding: 0 2vw;
}

time {
  font-family: var(--en-font);
}

.com-kado {
  border-radius: 5vw;
}
.com-kado > img {
  border-radius: 5vw;
}

.com-kado-02 {
  border-radius: 2vw;
}
.com-kado-02 > img {
  border-radius: 2vw;
}

.com-pd-box {
  padding: 10vw 5vw;
}

.com-pd-02 {
  padding: 10vw 3vw;
  box-sizing: content-box;
}

/*infotableスタイル*/
.com-desc-tbl .dl-item {
  font-size: 3.2vw;
  display: flex;
  justify-content: space-between;
  padding: 3vw 0;
}
.com-desc-tbl .dl-item:not(:last-child) {
  border-bottom: 1px solid var(--bd-color);
}
.com-desc-tbl .dl-item dt {
  width: 30%;
}
.com-desc-tbl .dl-item dd {
  line-break: loose;
  width: 70%;
}

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

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  height: 80vw;
  position: relative;
  background: url(../img/top/mv-img.jpg) center/cover no-repeat;
}
.top-mv .mv-ct {
  width: 70%;
  position: absolute;
  left: 5%;
  bottom: 15%;
}

/*---------------------------△△---MV---△△------------------------*/
.kumo-deco {
  background: url(../img/common/ttl-deco-le.png) top left/20vw no-repeat, url(../img/common/ttl-deco-ri.png) top right/30vw no-repeat;
}

#top-about {
  padding-bottom: 30vw;
  background: url(../img/top/about-bg-btm.png) bottom/100% 10vw no-repeat, url(../img/top/about-bg.png) bottom/100% no-repeat, linear-gradient(to bottom, #fff, var(--bg-color));
}
#top-about .inbox {
  position: relative;
}
#top-about .inbox .ttl01 {
  gap: 5vw;
}
#top-about .inbox .ttl01 .en {
  font-size: 15vw;
}
#top-about .inbox .ttl01 .ja {
  font-size: 6.5vw;
  position: relative;
  z-index: 1;
  line-height: 1.8;
}
#top-about .inbox .ttl01 .ja .about-mark {
  position: relative;
}
#top-about .inbox .ttl01 .ja .about-mark::before {
  content: "";
  display: block;
  width: 18vw;
  height: auto;
  aspect-ratio: 1.37;
  position: absolute;
  background: url("../img/top/about-ttl-bg.png") center/contain no-repeat;
  top: -1vw;
  left: -3.5vw;
  z-index: -1;
}
#top-about .inbox .about-ill {
  position: absolute;
  width: 45%;
  left: -5vw;
  bottom: -30vw;
}

#top-service {
  padding: 10vw 0;
}
#top-service .inbox {
  gap: 20vw;
}
#top-service .inbox .srv-box {
  display: grid;
  gap: 5vw;
}
#top-service .inbox .srv-box .ttl01 {
  margin-bottom: 5vw;
}
#top-service .inbox .srv-ill {
  width: 25%;
  right: -5vw;
  bottom: -35vw;
}

#top-works {
  padding: 30vw 0;
  background: url(../img/top/work-bg-top.png) top/100% 10vw no-repeat, var(--bg-color);
}
#top-works .inbox .ttl01 {
  justify-items: center;
}
#top-works .swiper-container {
  padding-bottom: 20vw;
}
#top-works .works-wrap {
  position: relative;
}
#top-works .works-wrap .top-works-li li:nth-child(even) {
  transform: translateY(5vw);
}
#top-works .works-wrap .top-works-li li .com-img {
  aspect-ratio: 1.5333;
}
#top-works .work-ill {
  width: 16%;
  bottom: -350px;
  left: 5%;
}

.swiper-button-prev {
  z-index: 100 !important;
  cursor: pointer;
  width: 10vw;
  height: 10vw;
  background: url(../img/top/work-btn-le.png) center/contain !important;
  top: auto !important;
  left: 10%;
  bottom: 0;
}

.swiper-button-next {
  z-index: 100 !important;
  cursor: pointer;
  width: 10vw;
  height: 10vw;
  background: url(../img/top/work-btn-ri.png) center/contain !important;
  top: auto !important;
  right: 10%;
  bottom: 0;
}

.swiper-pagination {
  inset: auto 0 3vw 0 !important;
  margin: 0 auto;
}

.swiper-pagination-bullet {
  background: var(--font-color) !important;
  height: 15px;
  width: 15px;
  margin: 0 5px;
}

#top-other .inbox {
  display: grid;
  gap: 15vw;
}
#top-other .inbox .other-box .com-img {
  width: 100%;
  height: 60vw;
}
#top-other .inbox .other-box .txt-box .ttl01 {
  width: auto;
  margin: 0;
  display: inline-grid;
  margin-top: 5vw;
  gap: 1vw;
}
#top-other .inbox .other-box .txt-box .ttl01 .en {
  font-size: 6vw;
}
#top-other .inbox .other-box .txt-box .ttl01 .ja {
  font-size: 6.5vw;
  position: relative;
  z-index: 1;
}
#top-other .inbox .other-box .txt-box .ttl01 .ja::before {
  content: "";
  display: block;
  width: 40vw;
  height: auto;
  aspect-ratio: 4.66;
  position: absolute;
  background: url("../img/top/other-mark.png") center/contain no-repeat;
  z-index: -1;
  left: -5vw;
  bottom: -4vw;
}

/*--------▽▽---NEWS---▽▽---------- */
#top-news .inbox {
  position: relative;
}
#top-news .inbox .news-list {
  padding: 0;
}
#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: 3vw 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2vw 3vw;
}
#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: 3vw;
  margin-right: 3vw;
  border-right: 1px solid var(--bd-color);
}
#top-news .inbox .news-list .news-item a h4 {
  width: 100%;
}
#top-news .inbox .news-list .news-item a .tag-list {
  line-height: 1;
}
/*------------△△---NEWS---△△---------*/
#common-contact {
  background: url(../img/common/contact-bg.jpg) center/cover no-repeat;
}
#common-contact .com-txt {
  width: 100%;
  margin-bottom: 10vw;
}
#common-contact .contact-box {
  margin-top: 5vw;
  padding: 5vw 5vw;
  display: grid;
  justify-items: center;
}
#common-contact .contact-box .ttl01 {
  margin-bottom: 5vw;
}
#common-contact .contact-box .ttl01 .deco {
  position: relative;
  z-index: 1;
}
#common-contact .contact-box .ttl01 .deco::before {
  content: "";
  display: block;
  width: 22vw;
  height: auto;
  aspect-ratio: 4.375;
  position: absolute;
  background: url("../img/common/contact-mark.png") center/contain no-repeat;
  z-index: -1;
  left: -2vw;
  bottom: -3vw;
}
#footer {
  position: relative;
}
#footer .ft-area {
  padding: 15vw 0;
  gap: 10vw;
}
#footer .ft-area .ft-add {
  font-weight: 400;
  font-size: 3.5vw;
}
#footer .ft-area .ft-info {
  display: grid;
}
#footer .ft-area .ft-btm {
  display: flex;
  align-items: start;
  padding: 10vw 4vw;
  gap: 5vw;
  margin-top: 5vw;
}
#footer .ft-area .ft-btm .nav-list {
  display: grid;
  gap: 7vw;
}
#footer .ft-area .ft-btm .nav-list .nav-item {
  line-height: 1;
  font-size: 3.5vw;
}
#footer .ft-area .ft-btm .nav-list .nav-item::before {
  content: "・";
  color: var(--main-color);
  display: inline-block;
  margin-right: 0.5vw;
}
#footer .copyright {
  font-size: 3vw;
  padding: 3vw 0;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
#about-concept {
  background: url(../img/about/ccpt-bg.png) center top -10px/cover no-repeat;
}
#about-concept .inbox .ccpt-ill {
  width: 25%;
  bottom: -35vw;
  right: -5vw;
}

#about-service .inbox .ttl02 {
  width: 100%;
}
#about-service .inbox .img-box {
  margin-bottom: 5vw;
}
#about-service .inbox dl {
  margin-top: 5vw;
  width: 100%;
  display: grid;
  gap: 15px;
}
#about-service .inbox dl dt {
  padding: 1vw 3vw;
}

#about-feature .inbox ol {
  gap: 10vw;
}
#about-feature .inbox ol li .img-box {
  margin-bottom: 5vw;
}
#about-feature .inbox .feat-ill {
  width: 30%;
  top: -30vw;
  left: -5vw;
}

#about-area .inbox {
  display: grid;
  justify-items: center;
}
#about-area .ttl01 {
  margin-bottom: 5vw;
}
#about-area .img-box {
  margin-top: 5vw;
  text-align: center;
  width: 80%;
}

.works-item {
  display: grid;
  gap: 5vw;
}
.works-item .com-img {
  aspect-ratio: 1.65;
}
.works-item .tag-list .tag {
  padding: 0 2vw;
}
.works-item > .ttl03 {
  border-bottom: 1px solid var(--bd-color);
  padding-bottom: 1vw;
}
.works-item .bfaf-box {
  position: relative;
}
.works-item .bfaf-box::after {
  content: "";
  display: block;
  width: 10vw;
  height: auto;
  aspect-ratio: 1.68;
  position: absolute;
  background: url("../img/works/arw.png") center/contain no-repeat;
  top: 30vw;
  right: 0;
  transform: rotate(90deg) scale(1, -1);
}

.works-li {
  display: grid;
  gap: 10vw;
  margin-top: 15vw;
}
.works-li .works-item {
  width: 100%;
  padding: 5vw;
}
.works-li .works-item .bfaf-box {
  display: grid;
  justify-items: center;
  gap: 10vw;
}
.works-li .works-item .bf-img {
  width: 70%;
}
.works-li .works-item .af-img {
  width: 100%;
}

#recruit-demand ul {
  display: grid;
  justify-content: center;
}
#recruit-demand ul li small {
  background: url("../img/common/check.png") left center/4vw no-repeat;
  padding-left: 6vw;
  box-sizing: border-box;
}

#recruit-charm {
  padding-top: 0;
}
#recruit-charm .ttl01 {
  width: 90%;
  padding: 20vw 0;
  background: url(../img/recruit/charm.jpg) center/cover;
}
#recruit-charm ol {
  gap: 10vw;
}
#recruit-charm .charm-ill {
  width: 30%;
  top: -35vw;
  right: -5vw;
}

#recruit-flow .inbox ol {
  display: grid;
  justify-content: center;
  gap: 5vw;
}
#recruit-flow .inbox ol li {
  width: 60vw;
  height: 20vw;
  position: relative;
}
#recruit-flow .inbox ol li:not(:last-child)::after {
  content: "";
  display: block;
  width: 4vw;
  height: auto;
  aspect-ratio: 0.76;
  position: absolute;
  background: var(--accent-color);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  transform: rotate(90deg);
  bottom: -7vw;
  margin: 0 auto;
}
#recruit-flow .inbox .com-txt {
  font-weight: 400;
  font-size: 3.5vw;
}
#recruit-flow .inbox .flow-ill {
  width: 40%;
  left: 5vw;
  top: -15vw;
}

#recruit .inbox {
  margin-top: 5vw;
}
#recruit .inbox dl {
  gap: 5vw;
}
#recruit .inbox dl .dl-item {
  display: grid;
  gap: 1vw;
}
#recruit .inbox dl dt {
  padding: 2vw;
}
#company-greeting {
  background: url(../img/company/gree-bg.jpg) left/cover;
}
#company-greeting .inbox .com-txt {
  font-size: 3.8vw !important;
}
#company-greeting .gree-ill {
  width: 30%;
  bottom: -30vw;
  right: -5vw;
}

#company-info .map-box {
  margin-top: 10vw;
}
#company-info .map-box .map {
  height: 80vw;
}

/*---------------------------▽▽---SV---▽▽------------------------*/
.sv {
  height: 60vw;
  background-position: center;
  background-size: cover;
  display: grid;
}
.sv .sv-catch {
  display: grid;
  margin-top: 5vw;
  align-content: center;
  gap: 2vw;
}
.sv .sv-catch .en {
  font-size: 5vw;
  text-transform: uppercase;
}
.sv .sv-catch .ja {
  line-height: 1;
  font-size: 7vw;
}

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

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

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

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

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

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

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

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

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

.e404-sv {
  background-image: url(../img/sv/e404.jpg);
}
.e404-sv .sv-catch .ja {
  font-size: 6vw;
}

/*---------------------------△△---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: 20vw 0;
}

/*---------------------------▽▽---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 .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;
}

/*---------------------------△△---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: 30%;
  line-height: 2;
  font-weight: 500;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box .tag-list {
  width: 68%;
}
#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 {
  line-height: 2;
  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);
  border-radius: 5px;
  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---▽▽------------------------*/