@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: 1vw;
}

.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: #fff;
}

#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 .current 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: 20vw 0;
}

.dl-item {
  display: flex;
}

.com-txt {
  line-height: 2;
  text-align: justify;
}
.com-txt:not(:last-of-type) {
  margin-bottom: 5vw;
}

.com-btn {
  border-radius: 1vw;
  width: 70vw;
  height: 15vw;
  margin: 7vw auto 0;
  font-size: 4.2vw;
  font-weight: 700;
  display: grid;
  place-items: center;
  background: var(--main-color);
  color: var(--white);
}
.com-btn:link, .com-btn:visited {
  color: var(--white);
}
.com-btn::after {
  content: "";
  display: block;
  width: 4vw;
  height: auto;
  aspect-ratio: 2;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  inset: 0 5vw 0 auto;
  margin: auto 0;
}

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

.ttl01 {
  font-size: 6.5vw;
  margin-bottom: 10vw;
  text-align: center;
}
.ttl01 .big {
  font-size: 1.25em;
}

.ttl02 {
  font-size: 5.5vw;
}

.ttl03 {
  font-size: 4.2vw;
}

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

.com-tel {
  display: grid;
  justify-items: center;
}
.com-tel a {
  font-size: 7vw;
  font-family: var(--en-font);
  color: var(--main-color);
}
.com-tel a::before {
  content: "tel.";
  font-size: 0.666em;
}
.com-tel dl {
  color: var(--main-color);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3vw;
}
.tag-list .tag {
  color: #fff;
  background: var(--bd-color);
  border-radius: 1vw;
  padding: 1vw 3vw;
  font-size: 3.5vw;
  font-weight: 700;
}

.com-kado {
  border-radius: 2vw;
}
.com-kado > img {
  border-radius: 2vw;
}
.com-kado.ovf-hd > img {
  border-radius: 0;
}

.com-pd-box {
  width: 96%;
  padding: 10vw 5vw;
  border-radius: 2vw;
  margin: 0 auto;
}

.ttl-deco01 {
  border-radius: 1vw;
  padding: 3vw 5vw;
  background: #fff;
  color: var(--sub-color);
  position: relative;
}
.ttl-deco01::before {
  content: "";
  display: block;
  width: 2vw;
  height: 80%;
  position: absolute;
  background: var(--sub-color);
  border-radius: 50vw;
  inset: 0 auto 0 0;
  margin: auto 0;
}

.ttl-bg {
  padding: 3vw 2vw;
}

.ttl-danger {
  position: relative;
}
.ttl-danger::before {
  content: "";
  display: block;
  width: 7vw;
  height: auto;
  aspect-ratio: 1.1;
  position: absolute;
  background: url("../img/common/danger-deco.png") center/contain no-repeat;
  top: -5vw;
  left: -3vw;
}

.mark {
  padding-bottom: 1vw;
  display: inline;
  background: linear-gradient(to top, var(--accent-color-02), var(--accent-color-02) 45%, transparent 45%, transparent);
}

.check-item {
  padding: 1vw 0 2vw;
  background: url("../img/common/check.png") left top 3vw/6vw no-repeat;
  padding-left: 8vw !important;
  box-sizing: border-box;
}

.check-item-02 {
  background: url("../img/common/check-02.png") left top 2vw/4vw no-repeat;
  padding-left: 6vw !important;
  box-sizing: border-box;
}

.contact-area {
  background: url(../img/common/contact-bg.jpg) center/cover;
}

.contact-box {
  background: #fff;
  display: grid;
  justify-items: center;
  gap: 5vw;
  border-radius: 1vw;
  padding: 10vw 5vw;
  position: relative;
  width: 86vw;
}
.contact-box .ill-le {
  width: 20vw;
  left: -5vw;
  bottom: -10vw;
}
.contact-box .ill-ri {
  width: 20vw;
  right: -5vw;
  bottom: -10vw;
}
#common-contact {
  padding: 15vw 0 10vw;
}

.line-btn {
  display: grid;
  place-items: center;
  background: var(--accent-color);
  width: 70vw;
  height: 15vw;
  margin: 0 auto;
  font-weight: 700;
  border-radius: 1vw;
}
.line-btn span {
  background: url("../img/common/line-icon.svg") left center/40px no-repeat;
  padding-left: 60px !important;
  box-sizing: border-box;
}

.map {
  height: 80vw;
}

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

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

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  position: relative;
  padding-bottom: 50vw;
  background: linear-gradient(to top, var(--bg-color), var(--bg-color) 20vw, #fff 20vw, #fff);
}
.top-mv .mv-ct {
  position: absolute;
  width: 90%;
  inset: auto 0 0 0;
  margin: 0 auto;
  z-index: 30;
}
.top-mv .mov-box {
  width: 100%;
  margin-left: auto;
  overflow: hidden;
}
.top-mv .mov-box video {
  display: block;
  width: 100%;
  height: 100%;
}

/*---------------------------△△---MV---△△------------------------*/
.side-btn {
  width: 80%;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  padding: 3vw;
  gap: 5vw;
  border-radius: 1vw;
  aspect-ratio: auto;
  position: fixed;
  z-index: 200;
  right: 0;
  bottom: 0;
}

#top-danger {
  padding-top: 25vw;
}
#top-danger .ttl01 {
  font-size: 5.8vw;
}
#top-danger .dng-li {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3vw 2%;
}
#top-danger .dng-li li {
  width: 49%;
  outline: 2px solid #fff;
  position: relative;
  z-index: 10;
}
#top-danger .img-box {
  width: 50%;
  margin: 20px auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

#top-risk {
  background: url(../img/common/bg-deco-le.png) left bottom/32% no-repeat, url(../img/common/bg-deco-ri.png) right top/46% no-repeat;
}
#top-risk .img-box {
  text-align: center;
  margin-bottom: 5vw;
}
#top-risk .txt-box .ft-clr02 {
  font-weight: 900;
}
#top-risk .ill-box {
  width: 20vw;
  left: -5vw;
  top: 70vw;
}

#top-service {
  padding: 0;
  background: linear-gradient(to top, #fff4b7, #fff 60%);
}
#top-service ul {
  display: grid;
  justify-items: center;
  gap: 5vw;
  width: auto;
}
#top-service ul li {
  width: 86%;
}
#top-service ul li a {
  position: relative;
}
#top-service ul li a::after {
  content: "";
  display: block;
  width: 13vw;
  height: 13vw;
  position: absolute;
  background: url("../img/top/bnr-arw.png") center/contain no-repeat;
  inset: 0 10vw 0 auto;
  margin: auto 0;
}
#top-service ul li a .ttl01 {
  gap: 1vw;
  font-weight: 700;
  margin: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10%;
  z-index: 10;
  align-content: center;
}
#top-service ul li a .ttl01 small {
  font-size: 4.2vw;
}

#top-fail {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15vw), 50% 100%, 0 calc(100% - 15vw));
  background: linear-gradient(to bottom, #fff4b7, var(--accent-color-02) 40%);
}
#top-fail .ttl01 .ft-clr02 {
  font-size: 1.2em;
}
#top-fail .img-box {
  width: 60%;
  text-align: center;
  margin: 0 auto;
}
#top-fail ul {
  gap: 3vw;
}
#top-fail ul li {
  padding: 3vw;
}
#top-fail ul li .check-item {
  display: inline-block;
}

#top-point {
  position: relative;
}
#top-point::before {
  content: "";
  display: block;
  width: 15vw;
  height: auto;
  aspect-ratio: 0.814;
  position: absolute;
  background: url("../img/common/sec-arw.png") center/contain no-repeat;
  inset: -7vw 0 auto 0;
  margin: 0 auto;
}
#top-point .ttl01 {
  margin-bottom: 15vw;
}
#top-point ol {
  display: grid;
  gap: 15vw 0;
}
#top-point ol li {
  padding: 10vw 5vw 5vw;
}
#top-point ol li .ttl02 {
  margin-bottom: 5vw;
  align-content: center;
}
#top-point ol li .ttl02 .num {
  font-size: 1.2em;
  width: 15vw;
  inset: -7vw 0 auto 0;
  margin: 0 auto;
}
#top-point ol li .txt-box {
  display: grid;
  justify-items: center;
  gap: 3vw;
  padding: 5vw;
}
#top-point ol li .txt-box .ill-box {
  height: 20vw;
}
#top-point ol li .txt-box .ill-box img {
  display: inline-block;
  height: 100%;
}
#top-point ol li .txt-box .com-txt {
  letter-spacing: 0.005em;
}

#top-contact .img-box {
  text-align: center;
  margin-bottom: 5vw;
}
#top-contact .txt-box ul {
  display: flex;
  justify-content: space-between;
  margin-top: 10vw;
}
#top-contact .txt-box ul li {
  margin: 0;
  width: 31%;
  border: 1px solid #fff;
  align-content: center;
  gap: 1vw;
}
#top-contact .txt-box ul li::before {
  content: "";
  display: block;
  width: 4vw;
  height: auto;
  aspect-ratio: 1.39;
  position: absolute;
  background: url("../img/top/contact-check.png") center/contain no-repeat;
  position: static;
}
#top-contact .contact-box {
  margin-top: 65px;
  width: 100%;
}

#common-bnr a {
  position: relative;
  padding: 5vw 5vw;
  background: url(../img/common/insta-bnr.jpg) center/cover;
}
#common-bnr a .ttl01 {
  display: grid;
  align-content: center;
  justify-items: start;
  inset: 0;
  margin: 0;
  font-weight: 700;
}
#common-bnr a .ttl01 .ttl02 {
  text-align: left !important;
}
#common-bnr a::after {
  content: "";
  display: block;
  width: 15vw;
  height: 15vw;
  position: absolute;
  background: url("../img/top/bnr-arw.png") center/contain no-repeat;
  inset: 0 5vw 0 auto;
  margin: auto 0;
}

/*--------▽▽---NEWS---▽▽---------- */
#top-news {
  padding: 10vw 0 20vw;
  background: url(../img/top/news-le.png) left bottom/45% no-repeat, url(../img/top/news-ri.png) right bottom/40% no-repeat;
}
#top-news .inbox {
  position: relative;
}
#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: 5vw 0;
  display: flex;
  flex-wrap: wrap;
  gap: 3vw;
}
#top-news .inbox .news-list .news-item a:hover {
  transform: translateX(10px);
}
#top-news .inbox .news-list .news-item a time {
  padding: 2vw 0;
  line-height: 1;
}
#top-news .inbox .news-list .news-item a h4 {
  width: 100%;
}
#top-news .inbox .news-list .news-item a .tag-list {
  max-width: 570px;
}
/*------------△△---NEWS---△△---------*/
#footer {
  padding: 15vw 0 20vw;
  position: relative;
  background: var(--font-color);
}
#footer .ft-area .ft-logo {
  width: 60%;
}
#footer .ft-area .ft-le {
  display: grid;
  justify-items: center;
  gap: 7vw;
  margin-bottom: 15vw;
}
#footer .ft-area .ft-nav-box {
  margin-bottom: 15vw;
  display: flex;
  flex-wrap: wrap;
  gap: 15vw 15vw;
  justify-content: center;
}
#footer .ft-area .ft-nav-box .nav-list {
  display: grid;
  gap: 10vw;
}
#footer .ft-area .ft-nav-box .nav-list .nav-item {
  line-height: 1;
  font-size: 4.2vw;
  font-weight: 500;
}
#footer .ft-area .ft-nav-box .nav-list:last-child {
  display: flex;
  gap: 3vw;
}
#footer .ft-area .ft-nav-box .nav-list:last-child .nav-item {
  font-size: 3.5vw;
}
#footer .copyright {
  font-weight: 300;
  font-size: 3vw;
  text-align: center;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
.danger-area {
  position: relative;
}
.danger-area .dot {
  background-image: radial-gradient(circle at center, var(--font-color) 15%, transparent 15%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.4em;
  padding-top: 0.4em;
}
.danger-area::after {
  content: "";
  display: block;
  width: 15vw;
  height: auto;
  aspect-ratio: 0.814;
  position: absolute;
  background: url("../img/common/sec-arw.png") center/contain no-repeat;
  inset: auto 0 5vw 0;
  margin: 0 auto;
}
.danger-area .bg-wt {
  padding: 10vw 5vw;
}
.danger-area .img-box {
  text-align: center;
  margin-bottom: 7vw;
}
.danger-area ul li {
  border-bottom: 1px solid var(--main-color);
  padding: 3vw 0;
}
.danger-area ul li .check-item {
  display: inline-block;
}
.danger-area .dng-ill {
  width: 20%;
  position: absolute;
  bottom: -10vw;
  right: -5vw;
}

.risk-area {
  background: url(../img/common/bg-deco-le.png) left bottom/32% no-repeat, url(../img/common/bg-deco-ri.png) right top/46% no-repeat, var(--bg-color);
}
.risk-area ol {
  gap: 15vw;
}
.risk-area ol > li {
  padding: 10vw 5vw 10vw;
}
.risk-area .txt-box .ttl02 {
  margin-bottom: 5vw;
}
.risk-area .txt-box .ttl02 .num {
  font-size: 6.5vw;
  width: 14vw;
  inset: -7vw 0 auto 0;
  margin: 0 auto;
}
.risk-area .txt-box ul {
  gap: 4vw;
  padding: 5vw;
  margin-bottom: 5vw;
}
.risk-area .txt-box .img-box {
  text-align: center;
}

.leave-area {
  padding-bottom: 0;
}
.leave-area .com-pd-box {
  background: url(../img/common/leave-bg.png) top/100% no-repeat, var(--main-color);
}
.leave-area .txt-box {
  padding: 5vw;
  display: grid;
  gap: 5vw 3vw;
  justify-items: center;
  margin-bottom: 15vw;
}
.leave-area .txt-box .ill-box {
  width: 30%;
  bottom: -20vw;
  right: -5vw;
  z-index: 10;
}
.leave-area .ttl02 {
  margin-bottom: 5vw;
  margin-top: 10vw;
}
.leave-area .srv-li {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5vw 4%;
}
.leave-area .srv-li li {
  width: 48%;
  background: url(../img/common/srv-bg.png) center/contain no-repeat;
}
.leave-area .sup-li {
  display: grid;
  margin-top: 10vw;
  gap: 5vw 0;
}
.leave-area .sup-li li .com-txt {
  padding: 3vw 5vw;
}

#company-greeting .com-pd-box .ttl02 {
  width: 100%;
  margin-bottom: 5vw;
}
#company-greeting .com-pd-box .img-box {
  text-align: center;
  margin-bottom: 5vw;
}
#company-greeting .com-pd-box .ill-box {
  width: 25%;
  bottom: -20vw;
  right: -5vw;
}

#contact-contact .com-txt {
  margin-bottom: 10vw;
}

/*---------------------------▽▽---SV---▽▽------------------------*/
.sv {
  position: relative;
  background: url(../img/sv/bg.png) bottom 10vw left/64% no-repeat;
  padding-bottom: 15vw;
}

.sv-catch {
  position: absolute;
  display: grid;
  align-content: center;
  inset: auto 0 5vw 0;
  z-index: 20;
  font-size: 5.5vw;
  line-height: 1;
}
.sv-catch span {
  display: block;
  width: 80%;
  padding: 5vw 0;
  background: linear-gradient(to right, var(--main-color), #2fb6f6);
}

.sv-img {
  border-radius: 2vw 0 0 2vw;
  height: 30vw;
  width: 80%;
  margin-left: auto;
}

/*---------------------------△△---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 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: 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: 1vw;
  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: 1vw;
  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: 1vw;
  background: var(--main-color);
}
.contact-submits-wrap .contact-back-btn {
  width: 80%;
  border: none;
  background: #bebebe;
  margin-bottom: 10%;
  border-radius: 1vw;
  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---▽▽------------------------*/