@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);
}

/*ここから下がドロワー設定項目 */
/*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-color: var(--bg-color);
}

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

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

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

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

section {
  padding: 6rem 0;
}

.dl-item {
  display: flex;
}

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

.com-btn {
  width: 70vw;
  height: 15vw;
  font-size: 1.7rem;
  margin: 4rem auto 0;
  display: grid;
  place-items: center;
  position: relative;
  background: var(--main-color);
  letter-spacing: 0.2em;
  opacity: 1;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.com-btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  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 span {
  letter-spacing: 0.2em;
}
.com-btn::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1rem;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  inset: 0 1rem 0 auto;
  margin: auto 0;
  transition: 0.3s;
}
.com-btn:hover {
  opacity: 1;
}
.com-btn:hover::before {
  transform: translateX(1rem);
}

.site-btn {
  background: #fff;
}
.site-btn::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  background: url("../img/common/site-arw.png") center/contain no-repeat;
}

.mail-btn {
  width: 70vw;
  height: 20vw;
  margin: 0 auto;
  display: grid;
  align-content: center;
  justify-items: center;
  background: var(--accent-color);
}
.mail-btn span {
  background: url("../img/common/mail-icon.png") left center/2rem no-repeat;
  padding-left: 3rem;
  box-sizing: border-box;
}

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

.ttl01 {
  margin-bottom: 4rem;
  gap: 1rem;
  display: grid;
  justify-items: center;
  text-align: center;
  position: relative;
}
.ttl01 .en {
  font-size: 2rem;
  line-height: 1;
  color: var(--font-color-02);
  text-transform: capitalize;
}
.ttl01 .ja {
  font-size: 2.6rem;
}
.ttl01.txt-le {
  text-align: left;
  justify-items: start;
  display: inline-grid;
  padding-bottom: 2.5rem;
}
.ttl01.txt-le .en {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateX(50%);
}
.ttl01.en-ri {
  text-align: left;
  justify-items: end;
  justify-content: start;
  display: inline-grid;
  width: auto;
}
.ttl01.en-ri .en {
  position: absolute;
  right: 0%;
  transform: rotate(18deg) translateX(50%);
  bottom: 4rem;
}

.ttl02 {
  font-size: 2.4rem;
  letter-spacing: 0.01em;
}

.ttl03 {
  font-size: 2rem;
}

.ttl04 {
  font-size: 1.8rem;
}

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

.tel-box {
  display: grid;
  justify-items: start;
  gap: 1rem;
}

.add-dl {
  gap: 2rem;
}
.add-dl .dl-item {
  gap: 1rem;
}

.com-tel {
  display: grid;
  justify-items: end;
  line-height: 1;
}
.com-tel a {
  color: var(--font-color-02);
  font-size: 3.4rem;
  background: url("../img/common/tel-icon.png") left center/1.8rem no-repeat;
  padding-left: 3rem;
  box-sizing: border-box;
}

.bg-01 {
  position: relative;
}
.bg-01::before {
  content: "";
  display: block;
  width: calc(50% - 26rem);
  height: 66rem;
  position: absolute;
  background: var(--bg-color);
  left: 0;
  top: 0;
  z-index: -1;
}

.bg-ill {
  background: url(../img/common/ill-01.png) bottom right 7.5%/60% no-repeat;
}

.com-pd-box {
  background: #fff;
  padding: 10vw 5vw;
  position: relative;
  z-index: 1;
}
.com-pd-box::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  border: 1px solid var(--main-color);
  left: -0.5rem;
  top: -0.5rem;
  z-index: -1;
}

.com-li {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
}
.com-li > li {
  flex-shrink: 0;
  width: 230px;
}
.com-li > li a {
  width: 100%;
  gap: 1rem;
  display: grid;
}
.com-li > li .com-img {
  width: 100%;
  aspect-ratio: 1.51;
}

.pro-box {
  position: relative;
  padding-bottom: 2rem;
  display: grid;
}
.pro-box::after {
  content: "";
  display: block;
  width: 100%;
  height: 1rem;
  position: absolute;
  border-bottom: 0.2rem solid var(--font-color);
  border-right: 0.2rem solid var(--font-color);
  transform: skewX(45deg);
  bottom: 0;
  left: 0;
}

.num-ttl {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
  color: var(--font-color-02);
}
.num-ttl .num {
  font-size: 2rem;
  line-height: 1;
  color: var(--main-color);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag-list .tag {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--main-color);
  padding: 0.5rem 0;
  background: url("../img/common/tag-icon.png") left center/1.5rem no-repeat;
  padding-left: 2rem;
  box-sizing: border-box;
}

time {
  font-size: 1.8rem;
  letter-spacing: 0.12em;
  font-style: italic;
  line-height: 1;
  padding: 0.5rem 0;
  font-family: var(--en-font);
}

/*infotableスタイル*/
.com-desc-tbl {
  display: grid;
  gap: 1px;
  border: 2px solid #f2f2f2;
}
.com-desc-tbl .dl-item {
  display: flex;
  justify-content: space-between;
}
.com-desc-tbl .dl-item:not(:last-child) {
  border-bottom: 1px solid #f2f2f2;
}
.com-desc-tbl .dl-item dt {
  display: grid;
  align-content: center;
  text-align: center;
  width: 30%;
  padding: 1rem;
  background: var(--main-color);
}
.com-desc-tbl .dl-item dd {
  width: 70%;
  padding: 1rem;
  background: #fff;
}
/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  width: 100%;
  top: 0;
  left: 0;
  background: var(--bg-color);
  z-index: 100;
  padding: 5vw;
}
#header .hd-logo {
  width: 50%;
}
#header .hd-logo img {
  display: block;
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  position: relative;
  z-index: 1;
  padding-top: 20rem;
}
.top-mv img {
  width: 100%;
}
.top-mv .mv-ct {
  position: absolute;
  width: 80%;
  left: 7%;
  top: 6%;
}
.top-mv .mv-img {
  width: 95%;
  margin-left: auto;
}
.top-mv .mv-img::before {
  content: "";
  display: block;
  width: 50%;
  height: 4rem;
  position: absolute;
  background: var(--bg-color);
  left: 0;
  bottom: 0;
  z-index: -1;
}

/*---------------------------△△---MV---△△------------------------*/
#top-about .img-box {
  margin-top: 5rem;
}

.img-box {
  text-align: center;
}

#top-product {
  background: linear-gradient(#fff 50%, var(--bg-color) 50%);
}
#top-product .inbox {
  position: relative;
}
#top-product .inbox::after {
  content: "";
  display: block;
  width: 20rem;
  height: auto;
  aspect-ratio: 1.53;
  position: absolute;
  background: url("../img/top/pro-ill.png") center/contain no-repeat;
  top: -8rem;
  right: -2rem;
}
#top-product .ttl04 {
  font-weight: 400;
}
#top-business {
  position: relative;
}
#top-business::before {
  content: "";
  display: block;
  width: calc(50% + 6rem);
  height: 28rem;
  position: absolute;
  background: #fff;
  bottom: 0;
  right: 0;
}

#about-business .bus-li .ill-box {
  position: absolute;
  bottom: 37rem;
}

.bus-li {
  gap: 7rem;
}
.bus-li li .txt-box {
  position: relative;
  padding: 10vw 5vw;
  margin-top: 5rem;
}
.bus-li li .ill-box {
  width: 45%;
  position: absolute;
  bottom: 30rem;
}
.bus-li li:nth-child(odd) .ill-box {
  left: -2rem;
}
.bus-li li:nth-child(even) .ill-box {
  right: -2rem;
}
.bus-li li:nth-child(1) .ill-box {
  width: 30%;
}
.bus-li li:nth-child(2) .ill-box {
  right: -2rem;
}
.bus-li li:nth-child(3) .ill-box {
  left: -4rem;
}

.bus-bnr {
  margin-top: 8rem;
  padding: 2rem 0;
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  background: url(../img/common/busi-bnr.png) left/auto 100% no-repeat, url(../img/common/busi-bnr-ill.png) right top no-repeat, var(--main-color);
}
.bus-bnr::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  border: 1px solid var(--font-color);
  top: -1rem;
  right: -1rem;
  z-index: -1;
}
.bus-bnr .txt-box .ttl02 {
  text-shadow: 0 0 0.2rem #fff;
}
.bus-bnr .com-btn {
  margin: 2rem auto 0;
}

#top-customer {
  background: url(../img/top/for-bg.jpg) center/cover;
}
#top-customer .inbox {
  padding: 15vw 5vw;
  background: rgba(255, 255, 255, 0.8);
}
#top-customer .inbox .ttl01 {
  margin-bottom: 4rem;
}
#top-customer .inbox .com-btn {
  margin: 4rem auto 0;
}

/*--------▽▽---NEWS---▽▽---------- */
#top-news .inbox {
  position: relative;
}
#top-news .inbox .news-list {
  width: 100%;
}
#top-news .inbox .news-list .news-item:not(:last-child) {
  border-bottom: 1px solid var(--main-color);
}
#top-news .inbox .news-list .news-item a {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
}
#top-news .inbox .news-list .news-item a:hover {
  transform: translateX(10px);
}
#top-news .inbox .news-list .news-item a .com-img {
  width: 200px;
  height: 150px;
}
#top-news .inbox .news-list .news-item a time {
  line-height: 1;
}
#top-news .inbox .news-list .news-item a h4 {
  width: 100%;
}
#top-news .inbox .news-list .news-item a .txt-box {
  width: 720px;
  gap: 10px 20px;
}
#top-news .inbox .news-btn {
  position: absolute;
  right: 0;
  top: 2rem;
  padding-right: 2rem;
  border-bottom: 1px solid var(--font-color);
  letter-spacing: 0.1em;
}
#top-news .inbox .news-btn::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1rem;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  inset: 0 0 0 auto;
  margin: auto 0;
  transition: 0.3s;
}

/*------------△△---NEWS---△△---------*/
#common-contact .inbox {
  padding: 10vw 5vw;
  background: url(../img/common/contact-ill.png) right 1rem top 7rem/70% no-repeat, #fff;
}
#common-contact .ttl01 {
  margin-bottom: 3rem;
}
#common-contact .com-txt {
  font-size: 1.4rem;
}
.contact-box {
  margin-top: 4rem;
  display: grid;
  justify-items: center;
  gap: 3rem;
}

.pagetop {
  position: fixed;
  z-index: 100;
  right: 10px;
  bottom: 20px;
}

#footer {
  position: relative;
}
#footer .ft-area {
  padding: 7rem 0;
  gap: 3rem 0;
}
#footer .ft-area .ft-le {
  display: grid;
  justify-items: center;
  gap: 5rem;
}
#footer .ft-area .ft-le .ft-info-box {
  display: grid;
  justify-items: center;
  gap: 3rem;
}
#footer .ft-area .ft-le .ft-info-box .ft-info {
  display: grid;
  gap: 1rem;
}
#footer .ft-area .ft-ri {
  display: grid;
  justify-items: end;
  gap: 3rem;
  margin-bottom: 6rem;
}
#footer .ft-area .ft-ri .ft-bnr {
  box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.09);
}
#footer .ft-area .ft-ri .ft-bnr img {
  width: 100%;
}
#footer .ft-area .ft-btm {
  width: 100%;
}
#footer .ft-area .ft-btm .nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 0;
}
#footer .ft-area .ft-btm .nav-list .nav-item {
  line-height: 1;
  font-size: 1.2rem;
  width: 50%;
  padding: 0 1rem;
  border-right: 1px solid var(--font-color);
}
#footer .ft-area .ft-btm .nav-list .nav-item:nth-child(odd) {
  border-left: 1px solid var(--font-color);
}
#footer .copyright {
  padding: 1rem;
  font-size: 1.2rem;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
#about-strengths .strng-li {
  gap: 7rem;
}
#about-strengths .strng-li li .txt-box {
  margin-top: 3rem;
}

#customer-request::after {
  content: "";
  display: block;
  width: 15rem;
  height: auto;
  aspect-ratio: 2.577;
  position: absolute;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background: linear-gradient(transparent, var(--main-color));
  inset: auto 0 -4rem 0;
  margin: 0 auto;
}
#customer-request .img-box img {
  width: 70%;
}
#customer-request .req-li {
  margin-top: 3rem;
}
#customer-request .req-li li {
  padding: 2rem 0;
  padding-left: 3rem;
  position: relative;
  border-bottom: 2px solid var(--main-color);
}
#customer-request .req-li li::before {
  content: "";
  display: block;
  width: 0.9rem;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  background: var(--font-color-02);
  border-radius: 50vw;
  top: 3.2rem;
  left: 0;
}

#customer-entrust .txt-box {
  margin-top: 3rem;
}

.merit-li {
  gap: 6rem;
}
.merit-li .txt-box {
  margin-bottom: 3rem;
}
.merit-li .img-box img {
  width: 50%;
}

.flow-li {
  gap: 5rem;
}
.flow-li li:not(:last-child)::before {
  content: "";
  display: block;
  width: 7rem;
  height: auto;
  aspect-ratio: 2.577;
  position: absolute;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background: linear-gradient(transparent, var(--main-color));
  inset: auto 0 -3rem 0;
  margin: 0 auto;
}

#product .page-nav {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}
#product .page-nav .com-btn {
  margin-top: 0;
}
#product .pro-li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5rem 0;
  margin-top: 5rem;
}
#product .pro-li .pro-item {
  width: 48%;
}
#product .pro-li .pro-box {
  gap: 1rem;
  padding-bottom: 1rem;
}
#product .pro-li .pro-box .ttl03 {
  font-size: 1.6rem;
  margin-top: 2rem;
}
#product .pro-li .com-img {
  width: 100%;
  aspect-ratio: 1.5;
}
#product .pro-li .view-btn {
  letter-spacing: 0.2em;
  padding-right: 1rem;
}

.pro-detail .ttl03 {
  padding-bottom: 1rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--font-color);
}
.pro-detail dl {
  margin-top: 3rem;
  display: grid;
  gap: 1px;
}
.pro-detail dl dt {
  width: 240px;
  padding: 2rem;
  background: var(--main-color);
  text-align: center;
}
.pro-detail dl dd {
  width: 840px;
  padding: 2rem;
  border: 1px solid #f2f2f2;
}
.pro-detail .btn-box {
  margin-top: 6rem;
  padding: 5vw;
}
.pro-detail .btn-box .ttl02 {
  font-size: 2.4rem;
  line-height: 1;
  padding-left: 1.5rem;
  border-left: 3px solid var(--font-color-02);
  margin-bottom: 3rem;
}
.pro-detail .btn-box .btn-li {
  display: grid;
  justify-items: center;
  gap: 2rem;
}
.pro-detail .btn-box .com-btn {
  margin: 0;
}

#company-philosophy {
  padding: 0;
}
#company-philosophy .inbox {
  padding: 13rem 0;
  background: url(../img/company/phil-ill.png) left bottom/80% no-repeat;
}
#company-philosophy .ttl02 {
  margin-bottom: 3rem;
}
#company-philosophy .ttl02 span {
  display: inline-block;
  padding: 1rem 1.5rem;
}

#company-greeting .inbox {
  padding-bottom: 13rem;
  background: url(../img/company/gree-ill.png) right bottom/70% no-repeat;
}

#company-info .map {
  margin-top: 5rem;
  height: 40rem;
}

#company-recruit {
  padding: 10rem 0;
  position: relative;
  z-index: 1;
}
#company-recruit::before {
  content: "";
  display: block;
  width: calc(50% + 215px);
  height: 100%;
  position: absolute;
  background: url("../img/company/rec.jpg") center/contain no-repeat;
  background-size: cover;
  right: 0;
  top: 0;
  z-index: -1;
}
#company-recruit .ttl01 {
  width: 60%;
}
#company-recruit .txt-box {
  background: rgba(239, 252, 245, 0.8);
  padding: 5vw;
}

/*---------------------------▽▽---SV---▽▽------------------------*/
.sv {
  position: relative;
}
.sv .sv-catch {
  font-family: var(--ttl-font);
  position: absolute;
  display: grid;
  align-content: center;
  inset: 0 auto 0 8%;
  font-size: 2rem;
}
.sv .sv-catch span {
  position: relative;
}
.sv .sv-catch span::after {
  content: "";
  display: block;
  width: 15rem;
  height: auto;
  aspect-ratio: 3.43;
  position: absolute;
  background: url("../img/sv/deco.png") center/contain no-repeat;
  left: 4rem;
  top: -4rem;
  z-index: 20;
}
.sv .sv-img {
  margin-left: auto;
  text-align: right;
  width: 80%;
  margin-right: -4rem;
}

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

/*----------▽▽---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---△△------------------------*/
/*すまほセレクトボックス*/
.select-area {
  position: relative;
  width: 70vw;
  height: 15vw;
}
.select-area .select-box {
  font-size: 3.5vw;
}
.select-area .select-box option {
  font-size: 3vw;
}
/*その他共通ページ*/
.com-other-page {
  padding: 20vw 0;
}

/*---------------------------▽▽---site.html---▽▽------------------------*/
/*---------------------------△△---site.html---△△------------------------*/
/*---------------------------▽▽---404.html---▽▽------------------------*/
/*---------------------------△△---404.html---△△------------------------*/
/*---------------------------▽▽---privacy.html---▽▽------------------------*/
/*---------------------------△△---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;
  font-size: 4vw;
}
.pagenation li a, .pagenation li span {
  padding: 20% 35%;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 1;
}
.pagenation-detail {
  position: relative;
  margin-top: 10%;
}
.pagenation-detail p a {
  padding: 5% 0;
  box-sizing: border-box;
  text-align: center;
  font-size: 3.5vw;
  letter-spacing: 0.2em;
  position: absolute;
}
.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---▽▽------------------------*/