@charset "utf-8";

/******** TOP *******/
.p-top-mv{
  position: relative;
}
.top-mv .mv-txt{
  text-align: center;
  color: #fff;
  text-shadow: 0 0 8px rgba(0,0,0,.25);
  font-size: clamp(2.4rem,3.6vw,5.8rem);
  line-height: 1.4;
  font-weight: 700;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  z-index: 2;
}
.top-mv .mv-txt span{
  display: block;
  font-size: clamp(1.6rem,2vw,2.4rem);
  margin: 0 0 10px;
}
.top-mv .mv-box{
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 990px;
  width: 90%;
  z-index: 2;
}
.top-mv .mv-img{
  position: relative;
  z-index: 1;
}
.top-mv .mv-box .mv-tab{
  border-radius: 15px;
  padding: 15px;
  background-color: rgba(255,255,255,.15);
}
.top-mv .mv-box .mv-tab.sp{
  display: none;
}
.top-mv .mv-box .mv-tab .mv-tab-button{
  width: calc(100% / 4 - 10px);
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 20px 20px 40px;
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}
.top-mv .mv-box .mv-tab .mv-tab-button:before{
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: no-repeat center center / contain;
}
.top-mv .mv-box .mv-tab .mv-tab-button:nth-of-type(1):before{
  background-image: url(../img/icon-note2-or.svg);
}
.top-mv .mv-box .mv-tab .mv-tab-button:nth-of-type(2):before{
  background-image: url(../img/icon-pin-or.svg);
}
.top-mv .mv-box .mv-tab .mv-tab-button:nth-of-type(3):before{
  background-image: url(../img/icon-note2-or.svg);
}
.top-mv .mv-box .mv-tab .mv-tab-button:after{
  content: '\e5c5';
  font-family: 'Material Icons';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--main-color);
  font-size: clamp(2rem,2.5vw,3rem);
}
.top-mv .mv-box .mv-search{
  margin-top: 20px;
  align-items: center;
  color: #fff;
}
.top-mv .mv-box .mv-search .mv-search-text{
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  line-height: 1.4;
  font-weight: 700;
}
.top-mv .mv-box .mv-search .mv-search-box{
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  line-height: 1.4;
  font-weight: 700;
  position: relative;
  width: 650px;
}
.top-mv .mv-box .mv-search .mv-search-box input[type=text]{
  border: solid 3px var(--main-color);
  padding: 15px;
  width: 100%;
  border-radius: 10px;
}
.top-mv .mv-box .mv-search .mv-search-box button{
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background-color: var(--main-color);
  border: solid 1px var(--main-color);
  border-radius: 50px;
  color: #fff;
  padding: 5px 7px;
  transition: .3s;
}
.top-mv .mv-box .mv-search .mv-search-box button:hover{
  background-color: #fff;
  color: var(--main-color);
}
.top-mv .mv-box .mv-search .mv-search-data{
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  line-height: 1.4;
  font-weight: 700;
}
.top-mv .mv-box .mv-search .mv-search-data span{
  font-size: clamp(1rem,1.1vw,1.2rem);
  display: block;
  margin-bottom: 5px;
}
.top-mv .mv-box .mv-search .mv-search-data strong{
  font-size: clamp(1.8rem,2vw,2.4rem);
  color: var(--sub-color);
}
/*** モーダル ***/
.modal__overlay{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 99999;
}
.modal{

}
.modal__contents{
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  max-width: 940px;
  width: 90%;
  transform: translate(-50%,-50%);
  z-index: 100000;
  height: 95%;
  right: 0;
  bottom: 0;
}
.search-inner{
  padding: 0;
  height: auto;
  position: relative;
  border-radius: 20px;
}
.modal__contents .search-inner{
  overflow-y: auto;
  height: 100%;
  background: var(--bg-color);
  padding: 40px;
}
.search-inner .m-close-button {
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: block;
  transition: .3s;
  border-radius: 50px;
  background: var(--main-color);
  position: absolute;
  top: 10px;
  right: 10px;
}
.search-inner .m-close-button span {
  display: block;
  position: absolute;
  height: 2px;
  width: 20px;
  background-color: #fff;
  left: 5px;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}
.search-inner .m-close-button span:nth-of-type(1) {
  top: 14px;
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  transform: rotate(315deg);
}
.search-inner .m-close-button span:nth-of-type(2) {
  top: 14px;
  -webkit-transform: rotate(-315deg);
  -moz-transform: rotate(-315deg);
  transform: rotate(-315deg);
}
.search-inner .search-left{
  width: 41%;
}
.search-inner .search-right{
  width: 57%;
  display: flex;
}
.search-inner .search-bottom{
  width: 100%;
}
.search-inner .search-box{
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 30px 20px;
  margin-bottom: 20px;
  width: 100%;
}
.search-inner .search-box .search-midashi{
  border-bottom: dashed 2px var(--main-color);
  color: var(--sub-color);
  padding: 0 0 10px;
  margin: 0 0 20px;
  font-size: clamp(1.4rem,1.6vw,1.8rem);
  line-height: 1;
  font-weight: 700;
}
.search-inner .search-check{
  font-size: clamp(1.2rem,1.3vw,1.4rem);
  line-height: 1.4;
  font-weight: 500;
  margin: 0 0 10px;
}
.search-inner .search-check.bold{
  font-weight: 700;
}
.search-inner .search-list.area{
  padding-left: 15px;
}
.search-inner .search-list.area .search-check{
  width: 49%;
}
.search-inner .search-list.style .search-check{
  width: 49%;
}
.search-inner .search-list.holyday .search-check{
  width: 49%;
}
.search-inner .search-list.job {
  justify-content: flex-start;
}
.search-inner .search-list.job .search-check{
  width: calc(100% / 4 - 6px);
  margin-right: 8px;
}
.search-inner .search-list.job .search-check:nth-of-type(4n){
  margin-right: 0;
}
.search-inner .search-list.station {
  justify-content: flex-start;
}
.search-inner .search-list.station .search-check{
  width: calc(100% / 7 - 6px);
  margin-right: 7px;
}
.search-inner .search-list.station .search-check:nth-of-type(7n){
  margin-right: 0;
}
.search-inner .search-check span{
  display: flex;
}
.search-inner .search-check input[type="checkbox"] {
  position: relative;
  width: 12px;
  height: 12px;
  border: 1px solid #CDCDCD;
  background-color: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 20px;
  margin: 0 5px 0 0;
  transform: translateY(3px);
}
.search-inner .search-check input[type="checkbox"]:checked:before {
  position: absolute;
  top: 1px;
  left: 1px;
  border-radius: 20px;
  background-color: var(--main-color);
  width: 8px;
  height: 8px;
  content: '';
}
.search-inner .search-button-list{
  width: 100%;
  justify-content: center;
}
.search-inner .search-button-list .search-button-item{
  width: 250px;
  margin: 0 10px;
}
.search-inner .search-button-list .search-button-item.search-button:before{
  background-image: url(../img/icon-search-w.svg);
  top: 45%;
}
.search-inner .search-button-list .search-button-item.search-button:hover:before{
  background: url(../img/icon-search-or.svg) no-repeat center center / contain;
}
.search-inner .search-button-item.search-button button{
  border-radius: 50px;
  border: solid 1px var(--main-color);
}
.search-inner .search-button-item.search-button button:hover{
  background-color: #fff;
  color: var(--main-color);
}
@media (max-width: 1020px){
  .top-mv .mv-box .mv-search .mv-search-box{
    width: 68%;
  }
}
@media (max-width: 798px){
  .top-mv .mv-txt{
    top: 16%;
    font-size: 7vw;
  }
  .top-mv .mv-txt span{
    font-size: 4vw;
  }
  .top-mv .mv-box{
    position: relative;
    top: initial;
    left: initial;
    transform: none;
    width: 100%;
    background: var(--main-color);
    padding: 15px;
  }
  .top-mv .mv-box .mv-tab{
    display: flex;
    background: none;
    border-radius: 0;
    padding: 0;
  }
  .top-mv .mv-box .mv-tab .mv-tab-button{
    width: calc(100% / 3 - 5px);
    border-radius: 5px;
    padding: 10px;
    text-align: center;
  }
  .top-mv .mv-box .mv-tab .mv-tab-button:before{
    content: '';
    position: relative;
    left: inherit;
    top: inherit;
    transform: none;
    margin: 0 auto 10px;
    display: block;
  }
  .top-mv .mv-box .mv-tab .mv-tab-button:after{
    display: none;
  }
  .top-mv .mv-box .mv-search{
    margin-top: 10px;
    display: block;
  }
  .top-mv .mv-box .mv-search .mv-search-box{
    font-size: clamp(1rem,1.1vw,1.2rem);
    width: 100%;
  }
  .top-mv .mv-box .mv-search .mv-search-box input[type=text]{
    border: none;
    padding: 15px 10px;
    border-radius: 5px;
  }
  .top-mv .mv-box .mv-search .mv-search-box button{
    padding: 3px 4px;
    right: 5px;
  }
  .top-mv .mv-box .mv-search .mv-search-data{
    text-align: center;
    margin: 5px 0 0;
  }
  .md-contents{
    height: 95%;
    right: 0;
    bottom: 0;
  }
  .md-xmark{
  }
  .md-inner{
    padding: 20px;
    border-radius: 5px;
  }
  .md-xmark{
    width: 20px;
  }
  .search-inner {
    display: block;
    border-radius: 10px;
  }
  .modal__contents .search-inner{
    padding: 10px;
  }
  .top-mv .mv-box .mv-tab .mv-tab-button span{
    padding: 0!important;
    height: 0;
    display: block!important;
  }
  .search-inner .search-list{
    display: block;
  }
  .search-inner .search-list.job,
  .search-inner .search-list.station{
    display: flex;
  }
  .search-inner .search-list.style .search-check{
    width: 100%;
  }
  .search-inner .search-list.job .search-check,
  .search-inner .search-list.station .search-check{
    width: calc(100% / 2 - 6px);
  }
  .search-inner .search-list.station .search-check:nth-of-type(7n){
    margin-right: 7px;
  }
  .search-inner .search-list.job .search-check:nth-of-type(2n),
  .search-inner .search-list.station .search-check:nth-of-type(2n){
    margin-right: 0;
  }
  .search-inner .search-button-list .search-button-item{
    margin: 0 auto 10px;
  }
  .search-inner .search-left{
    width: 100%;
  }
  .search-inner .search-right{
    width: 100%;
    display: block;
  }
  .search-inner .search-box{
    padding: 15px 15px 5px;
    margin: 0 0 10px;
  }
  .search-inner .search-box .search-midashi{
    margin: 0 0 10px;
  }
}

.top-contents{
  padding: 60px 0;
}
.top-contents .top-inner{
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}
.top-contents .top-inner .top-title{
  font-size: clamp(1.8rem,2.2vw,2.8rem);
  line-height: 1.4;
  font-weight: 700;
  margin: 0 0 20px;
}
.top-contents .top-inner .top-title .icon-title{
  position: relative;
  padding-left: 45px;
}
.top-contents .top-inner .top-title .icon-title:before{
  content: '';
  width: 32px;
  height: 32px;
  background: no-repeat center center / contain;
  position: absolute;
  top: 3px;
  left: 0;
}
.top-contents .top-inner .top-title .icon-title.icon-twincle:before{
  background-image: url(../img/icon-twinkle-or.svg);
}
.top-contents .top-inner .top-title .icon-title.icon-watch:before{
  background-image: url(../img/icon-watch-or.svg);
}
.top-contents .top-inner .top-title .icon-title.icon-speaker:before{
  background-image: url(../img/icon-speaker-or.svg);
}
.top-contents .top-inner .top-title .icon-title.icon-search:before{
  background-image: url(../img/icon-search-or.svg);
}
.top-contents .top-inner .top-title .icon-title.icon-tag:before{
  background-image: url(../img/icon-tag-or.svg);
}
.top-contents .top-inner .top-title .icon-title.icon-column:before{
  background-image: url(../img/icon-column-w.svg);
}
@media (max-width: 798px){
  .top-contents{
    padding: 30px 0;
  }
  .top-contents .top-inner .top-title{
    margin: 0 0 10px;
    display: block;
  }
  .top-contents .top-inner .top-title .arrow-button{
    text-align: right;
  }
  .top-contents .top-inner .top-title .icon-title{
    position: relative;
    padding-left: 25px;
  }
  .top-contents .top-inner .top-title .icon-title:before{
    width: 20px;
    height: 20px;
    top: 3px;
  }
}

.top-contents .top-inner .top-slide.slick-slider{
}
.top-contents .top-inner .top-slide .slick-list{
  padding-bottom: 20px;
}
.top-contents .top-inner .top-slide .top-slide-card{
  margin: 0 10px;
}
.top-contents .top-inner .top-slide .top-slide-card a{
  display: block;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 10px rgba(0,0,0,.1);
}
.top-contents .top-inner .top-slide .top-slide-card a:hover{
  box-shadow: 0 0 0 rgba(0,0,0,0);
  opacity: 1;
}
.top-contents .top-inner .top-slide .top-slide-card .top-slide-img{
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.top-contents .top-inner .top-slide .top-slide-card .top-slide-midashi{
  color: var(--sub-color);
  padding: 15px;
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  line-height: 1.4;
  font-weight: 700;
}
.top-contents .top-inner .top-slide .top-slide-card .top-slide-name{
  padding: 0 15px 15px;
  font-size: clamp(1rem,1.1vw,1.2rem);
  line-height: 1.2;
  font-weight: 700;
}
.top-contents .top-inner .top-slide .top-slide-card .top-slide-data{
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  background-color: var(--bg-color2);
  padding: 15px 15px 5px;
}
.top-contents .top-inner .top-slide .top-slide-card .top-slide-data .top-slide-data-item {
  font-size: clamp(1rem,1.1vw,1.2rem);
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 10px;
  padding-left: 18px;
  position: relative;
}
.top-contents .top-inner .top-slide .top-slide-card .top-slide-data .top-slide-data-item:before{
  content: '';
  width: 12px;
  height: 14px;
  background: no-repeat center center / contain;
  position: absolute;
  top: 0;
  left: 0;
}
.top-contents .top-inner .top-slide .top-slide-card .top-slide-data .top-slide-data-item.address:before{
  background-image: url(../img/icon-pin-or.svg);
}
.top-contents .top-inner .top-slide .top-slide-card .top-slide-data .top-slide-data-item.salary:before{
  background-image: url(../img/icon-yen-or.svg);
}
.top-contents .top-inner .top-slide .slick-dots{
  max-width: 270px;
  left: 50%;
  transform: translateX(-50%);
}
.top-contents .top-inner .top-slide .slick-dots li button:before{
  display: none;
}
.top-contents .top-inner .top-slide .slick-dots li{
  width: 14px;
  height: 14px;
}
.top-contents .top-inner .top-slide .slick-dots li button{
  background-color: #D9D9D9;
  width: 14px;
  height: 14px;
  border-radius: 20px;
}
.top-contents .top-inner .top-slide .slick-dots li.slick-active button{
  background-color: var(--main-color);
}
.top-contents .top-inner .top-slide .slick-prev,
.top-contents .top-inner .top-slide .slick-next{
  top: inherit;
  bottom: -38px;
  z-index: 10;
}
.top-contents .top-inner .top-slide .slick-prev{
  left: calc(50% - 150px);
}
.top-contents .top-inner .top-slide .slick-next{
  right: calc(50% - 150px);
}
.top-contents .top-inner .top-slide .slick-prev:before,
.top-contents .top-inner .top-slide .slick-next:before{
  font-family: 'Material Icons';
  color: var(--main-color);
}
.top-contents .top-inner .top-slide .slick-prev:before{
  content: '\e5e0'
}
.top-contents .top-inner .top-slide .slick-next:before{
  content: '\e5e1'
}
.top-contents .top-category .search-inner .search-box .search-midashi{
  color: #000;
}
.top-contents .top-category .search-category{
  justify-content: flex-start;
}
.top-contents .top-category .search-box > .flex{
  justify-content: flex-start;
}
.top-contents .top-category .midashi{
  padding: 5px 0;
  font-size: clamp(1.2rem,1.3vw,1.4rem);
  line-height: 1.2;
  font-weight: 700;
  margin: 0 10px 10px 0;
}
.top-contents .top-category .search-category a{
  display: inline-block;
  background-color: var(--bg-color);
  border: solid 1px var(--bg-color);
  color: var(--sub-color);
  padding: 5px 20px;
  border-radius: 20px;
  font-size: clamp(1.2rem,1.3vw,1.4rem);
  line-height: 1.2;
  font-weight: 700;
  margin: 0 10px 10px 0;
}
.top-contents .top-category .search-category a:hover{
  border-color: var(--sub-color);
  opacity: 1;
}
.top-contents .top-category .search-inner .search-box{
  box-shadow: 0 4px 10px rgba(0,0,0,.05);
}
@media (max-width: 798px){
  .top-contents .top-category .search-category a{
    padding: 5px 15px;
    margin: 0 5px 5px 0;
  }
}
.top-contents .top-tag .top-title .icon-title span{
  display: inline-block;
  background-color: var(--bg-color);
  color: var(--sub-color);
  font-size: clamp(1.4rem, 1.7vw, 2rem);
  padding: 5px 10px;
  margin-left: 10px;
}
.top-contents .top-tag .top-tag-list{
  justify-content: flex-start;
}
.top-contents .top-tag .top-tag-list a{
  display: inline-block;
  background-color: #F4F5F6;
  border: solid 1px #F4F5F6;
  color: #333;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: clamp(1.2rem,1.3vw,1.4rem);
  line-height: 1.2;
  font-weight: 700;
  margin: 0 10px 10px 0;
}
.top-contents .top-tag .top-tag-list a:hover{
  border-color: var(--sub-color);
  opacity: 1;
}
@media (max-width: 798px){
  .top-contents .top-tag .top-title .icon-title span{
    margin: 5px 0 0;
  }
  .top-contents .top-tag .top-tag-list a{
    padding: 5px 15px;
    margin: 0 5px 5px 0;
  }
}
.top-contents .top-column .top-title {
  background-color: var(--main-color);
  border-radius: 10px 10px 0 0;
  padding: 20px;
  color: #fff;
  position: relative;
  margin: 0;
}
.top-contents .top-column .top-title .top-column-ill{
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 280px;
}
.top-contents .top-column .top-column-box{
  padding: 30px;
  border-radius: 0 0 10px 10px;
  background-color: #F4F5F6;
}
.top-contents .top-column .top-column-box .top-column-list{
  justify-content: flex-start;
}
.top-contents .top-column .top-column-box .top-column-list li{
  width: calc(100% / 2 - 20px);
  margin: 0 40px 30px 0;
}
.top-contents .top-column .top-column-box .top-column-list li:nth-child(even){
  margin-right: 0;
}
.top-contents .top-column .top-column-box .top-column-list li a{
  align-items: flex-start;
}
.top-contents .top-column .top-column-box .top-column-list li a .img{
  min-width: 130px;
  width: 130px;
  border-radius: 10px;
  overflow: hidden;
}
.top-contents .top-column .top-column-box .top-column-list li a .img img{
  transition: .3s;
}
.top-contents .top-column .top-column-box .top-column-list li a:hover .img img{
  transform: scale(1.05,1.05);
}
.top-contents .top-column .top-column-box .top-column-list li a .txt-box{
  width: calc(100% - 150px);
}
.top-contents .top-column .top-column-box .top-column-list li a .txt-box .tag span{
  display: inline-block;
  background-color: #fff;
  color: #333;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: clamp(1rem,1.1vw,1.2rem);
  line-height: 1.2;
  font-weight: 700;
  margin: 0 10px 10px 0;
}
.top-contents .top-column .top-column-box .top-column-list li a .txt-box .midashi{
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  line-height: 1.4;
  font-weight: 700;
  transition: .3s;
}
.top-contents .top-column .top-column-box .top-column-list li a:hover{
  opacity: 1;
}
.top-contents .top-column .top-column-box .top-column-list li a:hover .txt-box .midashi{
  color: var(--main-color);
}
.top-contents .top-column .top-column-box .top-bn-list{
  margin-top: 40px;
  padding-top: 30px;
  border-top: dashed 2px var(--main-color);
}
.top-contents .top-column .top-column-box .top-bn-list li{
  width: calc(100% / 4 - 20px);
}
@media (max-width: 798px){
  .top-contents .top-column .top-title {
    padding: 10px;
  }
  .top-contents .top-column .top-title .top-column-ill{
    width: 135px;
    right: 5px;
  }
  .top-contents .top-column .top-column-box{
    padding: 20px 15px;
  }
  .top-contents .top-column .top-column-box .top-column-list{
    display: block;
  }
  .top-contents .top-column .top-column-box .top-column-list li{
    width: 100%;
    margin: 0 0 20px;
  }
  .top-contents .top-column .top-column-box .top-column-list li a .img{
    min-width: 90px;
    width: 90px;
  }
  .top-contents .top-column .top-column-box .top-column-list li a .txt-box{
    width: calc(100% - 100px);
  }
  .top-contents .top-column .top-column-box .top-column-list li a .txt-box .tag span{
    padding: 5px 15px;
    margin: 0 5px 5px 0;
  }
  .top-contents .top-column .top-column-box .top-bn-list{
    margin-top: 20px;
    padding-top: 10px;
    border-top: dashed 1px var(--main-color);
  }
  .top-contents .top-column .top-column-box .top-bn-list li{
    width: calc(100% / 2 - 5px);
    margin: 0 0 10px;
  }
}
.top-contents .top-news .top-news-box{
  border-radius: 10px;
  padding: 30px;
}
.top-contents .top-news .top-news-list .top-news-item{
  padding: 20px 0;
  border-bottom: dashed 2px var(--main-color);
  align-items: flex-start;
}
.top-contents .top-news .top-news-list .top-news-item:last-child{
  border-bottom: none;
}
.top-contents .top-news .top-news-list .top-news-data{
  min-width: 220px;
  justify-content: flex-start;
}
.top-contents .top-news .top-news-list .top-news-day{
  display: inline-block;
  margin-right: 30px;
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  line-height: 1;
  font-weight: 700;
  color: var(--main-color);
}
.top-contents .top-news .top-news-list .top-news-cat{
  display: inline-block;
  font-size: clamp(1.2rem,1.3vw,1.4rem);
  line-height: 1;
  font-weight: 700;
  background-color: var(--main-color);
  padding: 5px 15px;
  text-align: center;
  border-radius: 20px;
  color: #fff;
  transform: translateY(-2px);
}
.top-contents .top-news .top-news-list .top-news-link{
  display: inline-block;
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  line-height: 1.4;
  font-weight: 700;
  width: calc(100% - 230px);
}
.top-contents .top-news .top-news-list .top-news-link:hover{
  color: var(--main-color);
  opacity: 1;
}
.top-contents .top-news .arrow-button{
  text-align: right;
  margin-top: 20px;
}
@media (max-width: 798px){
  .top-contents .top-news .top-news-box{
    padding: 15px;
  }
  .top-contents .top-news .top-news-list .top-news-item{
    padding: 10px 0;
    border-bottom: dashed 1px var(--main-color);
    display: block;
  }
  .top-contents .top-news .top-news-list .top-news-data{
    min-width: auto;
    justify-content: flex-start;
    margin: 0 0 5px;
  }
  .top-contents .top-news .top-news-list .top-news-day{
    margin-right: 10px;
  }
  .top-contents .top-news .top-news-list .top-news-link{
    width: 100%;
  }
  .top-contents .top-news .arrow-button{
    text-align: right;
    margin-top: 10px;
  }
}

#contact .form{
  max-width: 1280px;
  width: 90%;
  margin: 0 auto 60px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
  padding: 60px 0;
}
#contact .form h2 {
  font-size: clamp(1.8rem, 2.2vw, 2.6rem);
  margin: 0 0 40px;
  text-align: center;
}
#contact .form .inner {
  max-width: 1160px;
  width: 90%;
  margin: 0 auto;
}
#contact .form .inner .txt{
  font-size: 16px;
  margin: 0 0 2.0em;
}
#contact .form .inner .contact-number{
  margin: 0 0 2.0em;
}
@media (max-width: 798px){
  #contact .form{
    margin: 0 auto 40px;
    padding: 30px 0;
  }
  #contact .form h2 {
    margin: 0 0 20px;
  }
}