@charset "utf-8";
:root {
  --main: url(../img/main/main.svg) no-repeat 0 0;
}

.more-btn {
  position: relative;
  display: inline-block;
  padding: 8px 50px 8px 20px;
  color: #FFF;
  font-size: 14px;
  font-weight: 800;
  line-height: 140%;
  border-radius: 50px;
}

.more-btn::before {
  content: '';
  position: absolute;
  right: 20px;
  top: 6px;
  width: 22px;
  height: 22px;
  background: var(--more);
  transition: .3s;
}

.more-btn:hover::before {
  right: 15px;
}

#contents {  
  overflow: hidden;
}

#visual {
  min-height: 520px;
  background: url(../img/main/visual-bg.svg) no-repeat center bottom / cover;
}

#visual .wrap {
  position: relative;
}

#visual .wrap::before {
  content: '';
  position: absolute;
  right: -76px;
  bottom: -12px;
  width: 875px;
  height: 484px;
  background: url(../img/main/visual.svg) no-repeat center;
}

#visual .slogan {
  position: relative;
  z-index: 1;
}

#visual .slogan .txt02 {
  margin-top: 31px;
  font-size: 20px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.2px;
}

.mid-con .wrap {
  display: flex;
  gap: 30px;
  padding-top: 80px;
  padding-bottom: 80px;
}

#notice {
  display: flex;
  align-items: center;
  padding: 30px 40px;
  width: 70%;
  max-width: 930px;
  border-radius: 50px 20px;
  background: #FFF;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.10);
  box-sizing: border-box;
}

#notice h3 {
  flex: 0 0 auto;
  margin-right: 40px;
  color: #4A94EC;
  font-size: 24px;
  font-weight: 800;
  line-height: 140%;
}

#notice .list {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 25px;
  white-space: nowrap;
  overflow: hidden;
}

#notice .list>li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#notice .list a {
  display: block;
  max-width: 518px;
  width: 100%;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

#notice .list .date {
  flex: 0 0 auto;
  position: relative;
  display: inline-block;
  margin-left: 20px;
  padding-left: 34px;
  color: #AAA;
  font-weight: 700;
  line-height: 140%;
}

#notice .list .date::before {
  content: '';
  position: absolute;
  left: 0;
  top: -2px;
  width: 24px;
  height: 24px;
  background: var(--main);
}

#notice .more {
  flex: 0 0 auto;
  position: relative;
  margin-left: 20px;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: #84A6FF;
}

#notice .more::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--main);
  background-position: -25px 0;
  transition: .3s;
}

#notice .more:hover::before {
  transform: rotate(90deg);
}

.town {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 40px;
  width: 30%;
  max-width: 440px;
  width: 100%;
  color: #fff;
  word-break: keep-all;
  border-radius: 50px 15px;
  background: #628EFF;
  box-sizing: border-box;
  overflow: hidden;
}

.town:hover {
  text-decoration: none;
}

.town::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/main/town-bg.svg) no-repeat center / cover;
  border-radius: 50px 15px;
  mix-blend-mode: normal;
}

.town:hover::after {
  opacity: 0.8;
  mix-blend-mode: multiply;
}

.town p {
  color: #FFF;
  font-size: 24px;
  font-weight: 800;
  line-height: 140%;
  z-index: 1;
}

.town .more {
  flex: 0 0 auto;
  position: relative;
  display: inline-block;
  padding-right: 26px;
  font-size: 18px;
}

.town .more::before {
  content: '';
  position: absolute;
  right: 0;
  top: 3.5px;
  width: 16px;
  height: 16px;
  background: var(--main);
  background-position: -58px 0;
  transition: .3s;
}

.quick h3 {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  line-height: 140%;
}

.quick span {
  color: #4A77EC;
}

.quick ul {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 40px;
}

.quick li {
  flex: 1 1 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 40px 29px;
  width: 100%;
  border-radius: 70px 70px 10px 70px;
  overflow: hidden;
}

.quick li:nth-of-type(1) {
  background: #FFB4C6;
}

.quick li:nth-of-type(2) {
  background: #FFED90;
}

.quick li:nth-of-type(3) {
  background: #D3AEF8;
}

.quick li::before {
  content: '';
  position: absolute;
  left: -8px;
  top: -46px;
  width: 184px;
  height: 184px;
  border-radius: 50%;
  transition: .3s;
}

.quick li:nth-of-type(1)::before {
  background: rgba(255, 128, 158, 0.40);
}

.quick li:nth-of-type(2)::before {
  background: #FFD390;
}

.quick li:nth-of-type(3)::before {
  background: rgba(128, 140, 255, 0.40);
}

.quick li .con {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-left: 140px;
}

.quick li .con::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 110px;
  height: 110px;
  background: var(--main);
}

.quick li:nth-child(1) .con::before {
  background-position: 0 -33px;
}

.quick li:nth-child(2) .con::before {
  background-position: -111px -33px;
}

.quick li:nth-child(3) .con::before {
  background-position: -222px -33px;
}

.quick li .tit {
  font-size: 18px;
  font-weight: 700;
  line-height: 140%;
}

.quick li .more-btn {
  background: rgba(51, 51, 51, 0.20);
}

.useful {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}

.useful .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.useful .tit h3 {
  font-size: 24px;
  font-weight: 800;
  line-height: 140%;
}

.useful .more-btn {
  background: var(--point_p);
}

.useful .swiper {
  position: relative;
  flex: 1 1 auto;
  max-width: 1013px;
}

.useful .swiper .control {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(50% - 25px);
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  /* max-width: 520px; */
  max-width: 550px;
}

.useful .swiper .control a {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 0;
  border-radius: 50%;
  background: #fff var(--main);
  background-position: -131px -144px;
  z-index: 2;
}

.useful .swiper .control .next {
  transform: rotate(180deg);
}

.useful .swiper-slide {
  line-height: 0;
  border-radius: 10px;
  /* border: 1px solid #EAEAEA; */
  overflow: hidden;
}

.useful .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), #E4E4E4;
}

.useful .swiper-slide img {
  width: 100%;
  max-width: none;
}

.useful .swiper-slide img {
  opacity: 0.8;
}

.useful .swiper-slide.swiper-slide-active img {
  opacity: 1;
}

@media screen and (min-width:1025px){	
  #visual .slogan {
    padding-top: 85px;
    padding-bottom: 185px;
  }

  #visual .slogan .txt01 span {
    display: inline-block;
    padding-top: 15px;
    padding-left: 15px;
  }

  .mid-con {  
    position: relative;
  }

  .mid-con::before {
    content: '';
    position: absolute;
    top: 40px;
    right: -244px;
    width: 398px;
    height: 338px;
    background: url(../img/main/right-bg.svg) no-repeat;
    animation: 15s linear infinite reverse rotate;
    z-index: -1;
  }

  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(180deg);
    }
  }

  .quick li:hover::before {
    width: 300px;
    height: 300px;
  }

  .useful::before {
    content: '';
    position: absolute;
    bottom:  -100px;
    left: -70px;
    width: 446px;
    height: 378px;
    background: url(../img/main/left-bg.svg) no-repeat;
    animation: 15s linear infinite reverse rotate;
    z-index: -1;
  }

  .useful .tit {
    position: relative;
    flex: 0 0 auto;
    padding: 20px 10px 20px 150px;
  }

  .useful .tit::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 130px;
    height: 209px;
    background: var(--main);
    background-position: 0 -144px;
  }

  .useful .tit p {
    margin-top: 20px;
    margin-bottom: 30px;
    color: #282828;
    font-weight: 700;
    line-height: 160%;
  }
}

@media screen and (max-width:1024px){	
  .more-btn {
    padding: 8px 38px 8px 15px;
    font-size: 12px;
  }

  .more-btn::before {
    top: 7px;
    right: 15px;
    width: 18px;
    height: 18px;
    background-size: 18px;
  }

  #visual {
    margin-bottom: 72px;
    min-height: 375px;
    background-color: #fff;
    background-size: auto 100%;
  }

  #visual .wrap {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 163px;
  }
  
  #visual .wrap::before {
    left: calc(50% - 190px);
    right: auto;
    bottom: -72px;
    margin: 0 auto;
    width: 380px;
    height: 215px;
    background-position: center bottom;
    background-size: 100%;
  }

  #visual .slogan .txt01 span {
    display: block;
  }
  
  #visual .slogan .txt01 img:nth-of-type(1) {
    max-width: 200px;
  }

  #visual .slogan .txt01 img:nth-of-type(2) {
    max-width: 244px;
  }

  #visual .slogan .txt01 img:nth-of-type(3) {
    max-width: 233px;
  }

  #visual .slogan .txt02 {
    margin-top: 15px;
    font-size: 11px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: -0.11px;
  }

  .mid-con .wrap {
    flex-direction: column;
    gap: 36px;
    padding-top: 20px;
    padding-bottom: 36px;
  }

  #notice {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 28px 20px;
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
  }

  #notice h3 {
    font-size: 20px;
  }

  #notice .list {
    width: 100%;
    height: 67px;
  }
  
  #notice .list>li {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  #notice .list a {
    display: -webkit-box;
    max-width: 100%;
    height: 40px;
    font-size: 14px;
    font-weight: 700;
    white-space: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: keep-all;
    overflow: hidden;
    box-sizing: border-box;
  }

  #notice .list .date {
    margin-left: 0;
    padding-left: 21px;
    font-size: 12px;
  }
  
  #notice .list .date::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 15px;
    height: 15px;
    background: var(--main);
    background-size: 208px;
  }

  #notice .more {
    text-align: center;
    margin-left: 0;
    margin-top: 5px;
    padding: 10px;
    width: 100%;
    height: auto;
    color: #FFF;
    font-size: 12px;
    font-weight: 800;
    line-height: 140%;
    border-radius: 5px;
    box-sizing: border-box;
  }

  #notice .more::before {
    display: none;
  }

  .town {
    padding: 20px 40px;
    max-width: 100%;
    border-radius: 8px;
  }

  .town::after {
    left: -10%;
    width: 130%;
    border-radius: 8px;
  }

  .town p {
    font-size: 15px;
    font-weight: 800;
    line-height: 140%;
  }

  .town .more {
    padding-right: 24px;
    font-size: 12px;
  }

  .town .more::before {
    right: 0;
    top: 3.5px;
    width: 14px;
    height: 14px;
    background-position: -35px 0;
    background-size: 208px;
  }

  .quick h3 {
    font-size: 22.4px;
  }

  .quick ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
  }
  
  .quick li {
    padding: 35px 10px;
    border-radius: 8px 35px;
  }

  .quick li::before {
    top: auto;
    bottom: 14px;
  }

  .quick li .con {
    flex-direction: row;
    align-items: center;
    padding-left: 77px;
  }

  .quick li .con::before {
    top: calc(50% - 52px / 2);
    width: 52px;
    height: 52px;
    background-size: 156px;
  }

  .quick li:nth-child(1) .con::before {
    background-position: 0 -15px;
  }
  
  .quick li:nth-child(2) .con::before {
    background-position: -52px -15px;
  }
  
  .quick li:nth-child(3) .con::before {
    background-position: -104px -15px;
  }

  .quick li .tit {
    font-size: 13px;
  }

  .useful {
    padding-top: 40px;
    padding-bottom: 52px;
  }

  .useful .wrap {
    flex-direction: column;
    gap: 12px;
    padding: 0;
  }
  
  .useful .tit {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .useful .tit h3 {
    font-size: 22.4px;
  }

  .useful .tit p {
    display: none;
  }

  .useful .more-btn {
    padding: 0;
    width: 28px;
    height: 28px;
    font-size: 0;
    border-radius: 50%;
  }

  .useful .more-btn::before {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }

  .useful .swiper {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }
  
  .useful .swiper .control {
    display: none;
  }
}


@media screen and (max-width:340px){	
  .quick li .con {
    flex-direction: column;
  }
}