/* ==================== layout common style ==================== */
.header-wrap {
  position: fixed;
  top: 0;
  z-index: 1500;
  width: 100%;
}
p {
  word-break: keep-all !important;
}
.header {
  width: 100%;
  transition: all 0.6s;
}

.header.active {
  background-color: rgba(0,0,0,0.5);
}

.pc-header {
  height: 105px;
}
.logo-img{width:120px;}
@media all and (max-width: 1280px) {
  .pc-header {
    display: none;
  }
}

.header .inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.header .nav-list-grp {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 45px;
}

.pc-header .nav-wrap {
  margin-left: auto;
}

.pc-header .nav-list-grp .nav-list {
  font-size: 18px;
  color: white;
}

.pc-header .nav-list-grp .nav-list:hover {
  opacity: 0.8;
}

.pc-header .nav-list-grp .nav-list:active {
  opacity: 0.6;
}

.m-header,
.m-header-page {
  display: none;
}

.m-header {
  height: 90px;
  padding: 0 20px;
}

@media all and (max-width: 1280px) {
  .m-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media all and (max-width: 600px) {
  .m-header {
    height: 60px;
  }
}

.m-header .logo {
  margin-left: 15px;
}

@media all and (max-width: 600px) {
  .m-header .logo {
    margin-left: 0;
    width: 50px;
  }
}

.m-header .logo img {
  width: 100%;
}

.m-nav-btn {
  width: 65px;
  height: 65px;
  border: 0;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media all and (max-width: 600px) {
  .m-nav-btn {
    width: 45px;
    height: 45px;
  }
}

.m-nav-btn .hamburger {
  width: 20px;
  height: 2px;
  background-color: white;
  display: inline-block;
  position: relative;
  transition: all 0.2s;
}

.m-nav-btn:hover .hamburger {
  width: 35px;
}

.m-nav-btn .hamburger:before,
.m-nav-btn .hamburger:after {
  content: '';
  width: 27px;
  height: 2px;
  background-color: inherit;
  position: absolute;
  top: 0;
  left: 0;
}

.m-nav-btn .hamburger:before {
  top: -10px;
}

@media all and (max-width: 600px) {
  .m-nav-btn .hamburger:before {
    top: -8px;
  }
}

.m-nav-btn .hamburger:after {
  top: 10px;
}

@media all and (max-width: 600px) {
  .m-nav-btn .hamburger:after {
    top: 8px;
  }
}

.m-header-page {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background-color: #202425;
  left: -100%;
  transition: all 0.3s;
}

@media all and (max-width: 1280px) {
  .m-header-page {
    display: block;
  }

  .m-header-page.active {
    left: 0;
  }
}

.m-header-page .close-btn {
  width: 45px;
  height: 45px;
  border: 0;
  position: absolute;
  top: 20px;
  right: 15px;
  background-color: transparent;
  cursor: pointer;
}

@media all and (max-width: 600px) {
  .m-header-page .close-btn {
    width: 35px;
    height: 35px;
    top: 10px;
    right: 20px;
  }
}

.m-header-page .close-btn .x-line {
  width: 45px;
  height: 45px;
  display: inline-block;
}

.m-header-page .close-btn .x-line:before,
.m-header-page .close-btn .x-line:after {
  position: absolute;
  left: 21px;
  top: 6px;
  content: ' ';
  height: 33px;
  width: 2px;
  background-color: white;
}
/* 
@media all and (max-width: 600px) {
  .m-header-page .close-btn .x-line {
    width: 30px;
  }
} */

.m-header-page .close-btn .x-line:before {
  transform: rotate(45deg);
}

.m-header-page .close-btn .x-line:after {
  transform: rotate(-45deg);
}

.m-header-page {
  padding-top: 70px;
}

.m-header-page .nav-list-grp {
  padding: 0 20px;
}

.m-header-page .nav-list {
  color: white;
  font-size: 25px;
}

@media all and (max-width: 600px) {
  .m-header-page .nav-list {
    font-size: 16px;
  }
}

.m-header-page .nav-list a {
  padding: 20px 0;
  display: inline-block;
}

@media all and (max-width: 600px) {
  .m-header-page .nav-list a {
    padding: 10px 0;
  }
}

.section-sub {
  width: 100%;
  height: 350px;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media all and (max-width: 600px) {
  .section-sub {
    height: 200px;
    margin-bottom: 20px;
  }
}

.subpage-ttl {
  font-size: 48px;
  font-weight: 700;
  color: white;
  text-shadow: 0px 0px 25px rgba(0, 0, 0, 0.5);
}

@media all and (max-width: 600px) {
  .subpage-ttl {
    font-size: 28px;
  }
}

.footer {
  text-align: center;
  padding-bottom: 65px;
}

@media all and (max-width: 600px) {
  .footer {
    padding-bottom: 30px;
  }
}

.footer .inner {
  border-top: 1px solid #dcdcdc;
}

.footer .logo {
  width: 100px;
  margin: 53px auto 36px;
}

@media all and (max-width: 600px) {
  .footer .logo {
    width: 60px;
    margin: 30px auto 20px;
  }
}

.footer .logo img {
  width: 100%;
}

.footer .copyrights {
  font-size: 15px;
  line-height: 1.6;
}

@media all and (max-width: 600px) {
  .footer .copyrights {
    font-size: 10px;
    line-height: 1.3;
  }
}

/* ==================== common style ==================== */
.solid-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #5ed7ff;
  color: white;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  height: 50px;
  padding: 0 15px;
  border: 0;
  cursor: pointer;
  transition: all 0.2s;
}

@media all and (max-width: 600px) {
  .solid-btn {
    height: 37px;
    font-size: 14px;
  }
}

.solid-btn:hover {
  background-color: #4cccf6;
}

.solid-btn:active {
  background-color: rgb(56, 182, 224);
}

.inner {
  max-width: 1401px;
  margin: 0 auto;
  width: 90%;
}

.subject {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

@media all and (max-width: 1024px) {
  .subject {
    font-size: 25px;
  }
}

@media all and (max-width: 600px) {
  .subject {
    font-size: 18px;
  }
}

.subject-mgbt {
  margin-bottom: 40px;
}

@media all and (max-width: 1024px) {
  .subject-mgbt {
    margin-bottom: 30px;
  }
}

@media all and (max-width: 600px) {
  .subject-mgbt {
    margin-bottom: 20px;
  }
}

.subject-mgt-30 {
  margin-top: 30px;
}

@media all and (max-width: 600px) {
  .subject-mgt-30 {
    margin-top: 10px;
  }
}

.subject-mgt-50 {
  margin-top: 50px;
}

@media all and (max-width: 600px) {
  .subject-mgt-50 {
    margin-top: 10px;
  }
}

.subject-mgt-95 {
  margin-top: 95px;
}

@media all and (max-width: 600px) {
  .subject-mgt-95 {
    margin-top: 5px;
  }
}

.gray-box {
  border-radius: 10px;
  background-color: #ededed;
  padding: 30px 44px;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 300;
  color: #202425;
}

@media all and (max-width: 1024px) {
  .gray-box {
    font-size: 16px;
    padding: 35px 30px;
  }
}

@media all and (max-width: 600px) {
  .gray-box {
    font-size: 12px;
    padding: 15px 20px;
  }
}

.gray-box-narrow {
  padding: 33px 55px;
}

@media all and (max-width: 1024px) {
  .gray-box-narrow {
    padding: 23px 30px;
  }
}

@media all and (max-width: 600px) {
  .gray-box-narrow {
    padding: 15px 20px;
  }
}

.gray-box-more-narrow {
  padding: 19px 55px 25px;
}

@media all and (max-width: 600px) {
  .gray-box-more-narrow {
    padding: 15px 20px;
  }
}

.gray-box-mgbt {
  margin-bottom: 45px;
}

@media all and (max-width: 1024px) {
  .gray-box-mgbt {
    margin-bottom: 25px;
  }
}

@media all and (max-width: 600px) {
  .gray-box-mgbt {
    margin-bottom: 15px;
  }
}

.gray-box-mgt-45 {
  margin-top: 45px;
}

@media all and (max-width: 1024px) {
  .gray-box-mgt-45 {
    margin-top: 25px;
  }
}

@media all and (max-width: 600px) {
  .gray-box-mgt-45 {
    margin-top: 15px;
  }
}

.gray-box .ttl {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

@media all and (max-width: 1024px) {
  .gray-box .ttl {
    font-size: 20px;
  }
}

@media all and (max-width: 600px) {
  .gray-box .ttl {
    font-size: 16px;
  }
}

.gray-box .ttl-lg {
  font-size: 30px;
}

@media all and (max-width: 600px) {
  .gray-box .ttl-lg {
    font-size: 16px;
  }
}

.inp-text-item {
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.inp-text-item .custom-cbox {
  margin-right: 9px;
}

.inp-text-item .text {
  padding-top: 2px;
  font-size: 18px;
  font-weight: 400;
  color: #202425;
  text-align: left;
}

@media all and (max-width: 600px) {
  .inp-text-item .text {
    line-height: 1.5;
    font-size: 12px;
    padding-top: 0;
  }
}

.custom-cbox .checkbox {
  display: none;
}

.custom-cbox .cbox {
  display: inline-block;
  width: 22px;
  height: 22px;
  background-color: white;
  border: 1px solid #969696;
  border-radius: 4px;
  background-position: center;
  background-size: 60%;
  background-repeat: no-repeat;
}

.custom-cbox .checkbox:checked+.cbox {
  background-image: url(../images/ico-check.svg);
}

.red-text {
  color: #f52222;
}

.blue-text {
  color: #009dc5;
}

a.blue-text:hover {
  text-decoration: underline;
}

/* ==================== common form style 1 ==================== */
.advice-wrap {
  text-align: left;
  border-bottom: 1px solid #ededed;
  margin-bottom: 30px;
  padding-bottom: 12px;
  margin-top: 54px;
}

@media all and (max-width: 600px) {
  .advice-wrap {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.advice-wrap .text {
  font-size: 18px;
  font-weight: 300;
  color: #202425;
}

@media all and (max-width: 1024px) {
  .advice-wrap .text {
    font-size: 16px;
  }
}

@media all and (max-width: 600px) {
  .advice-wrap .text {
    font-size: 14px;
  }
}

.form-agree-submit-wrap {
  text-align: center;
  padding-top: 15px;
}

.form-agree-submit-wrap .form-agree {
  margin-bottom: 63px;
}

@media all and (max-width: 600px) {
  .form-agree-submit-wrap .form-agree {
    margin-bottom: 30px;
  }
}

.form-agree-submit-wrap .solid-btn {
  max-width: 280px;
  width: 100%;
  height: 54px;
  font-size: 30px;
}

@media all and (max-width: 600px) {
  .form-agree-submit-wrap .solid-btn {
    height: 45px;
    font-size: 22px;
    max-width: 100%;
  }
}

.form-agree-inps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 24px 0;
}

@media all and (max-width: 600px) {
  .form-agree-inps {
    flex-direction: column;
    padding: 15px;
    gap: 15px;
  }
}

.form-agree-inps .form-row-item {
  padding-bottom: 0;
}

.form-agree {
  background-color: #e4e4e4;
}

.form-agree-check {
  border-top: 1px solid #bbbbbb;
  text-align: center;
  padding: 23px 0;
}

@media all and (max-width: 600px) {
  .form-agree-check {
    padding: 15px;
  }
}

.form-agree-check .blue-text {
  color: #158ba9;
}

.form-submit .msg-box {
  margin-top: 38px;
  font-size: 18px;
  display: none;
  line-height: 1.4;
}

@media all and (max-width: 600px) {
  .form-submit .msg-box {
    margin-top: 25px;
    font-size: 14px;
  }
}

.upload-btn-list {
  margin-left: 22px;
  gap: 9px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

@media all and (max-width: 600px) {
  .upload-btn-list {
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 0;
  }
}

.upload-btn-list .solid-btn {
  height: 34px;
  width: 100px;
}

/* ==================== common form style 2 ==================== */
.form-list {
  margin-bottom: 15px;
}

@media all and (max-width: 1024px) {
  .form-list {
    margin-bottom: 0;
  }
}

.row-line {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0 30px;
}

@media all and (max-width: 1024px) {
  .row-line {
    gap: 0;
  }
}

.row-line .row-item {
  flex: 1 1 calc(25% - 22.5px);
  max-width: calc(25% - 22.5px);
}

@media all and (max-width: 1200px) {
  .row-line .row-item {
    flex: 1 1 calc(33% - 17px);
    max-width: calc(33% - 17px);
  }
}

@media all and (max-width: 1024px) {
  .row-line .row-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media all and (max-width: 600px) {
  .row-line .row-item {
    padding-bottom: 12px;
  }
}

.row-line-col2 .row-item {
  flex: 1 1 calc(50% - 22.5px);
  max-width: calc(50% - 22.5px);
}

@media all and (max-width: 600px) {
  .row-line-col2 .row-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.form-item {
  padding-bottom: 15px;
}

.form-item-notlabel {
  padding-top: 28px;
}

@media all and (max-width: 1200px) {
  .form-item-notlabel.mda-1200-pdt-0 {
    padding-top: 0;
  }
}

@media all and (max-width: 1024px) {
  .form-item-notlabel {
    padding-top: 0;
  }
}

.form-item .label {
  width: 100%;
  display: inline-flex;
  margin-bottom: 7px;
  font-weight: 600;
  font-size: 18px;
  align-items: center;
  justify-content: flex-start;
  line-height: 1.5;
}

@media all and (max-width: 600px) {
  .form-item .label {
    display: inline-block;
    flex-wrap: wrap;
    font-size: 12px;
  }
}

.form-item .label-nowrap {
  white-space: nowrap;
}

.form-item .sub-text {
  font-size: 14px;
  margin-top: 10px;
  display: inline-block;
  font-weight: 300;
}

@media all and (max-width: 600px) {
  .form-item .sub-text {
    font-size: 10px;
  }
}

.form-item .form-inp {
  width: 100%;
}

.form-row-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

@media all and (max-width: 600px) {
  .form-row-item {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 7px;
    width: 100%;
  }
}

.form-row-item .label {
  width: auto;
  margin-right: 13px;
  white-space: nowrap;
}

@media all and (max-width: 600px) {
  .form-row-item .label {
    font-size: 12px;
    margin-bottom: 0;
    font-weight: 600;
  }
}

.form-row-item .form-inp {
  width: 250px;
}

@media all and (max-width: 600px) {
  .form-row-item .form-inp {
    width: 100%;
  }
}

.blue-dot {
  color: #5ed7ff;
  margin-left: 5px;
}

@media all and (max-width: 600px) {
  .blue-dot {
    margin-left: 0;
  }
}

.inp {
  width: 100%;
  border: 1px solid #949494;
  border-radius: 10px;
  height: 50px;
  padding: 0 21px;
  font-size: 18px;
  color: #000;
}

@media all and (max-width: 600px) {
  .inp {
    border-radius: 6px;
    height: 35px;
    padding: 0 11px;
    font-size: 14px;
  }
}

.inp.maxw-1042 {
  max-width: 1042px;
}

.inp::placeholder {
  color: rgba(0, 0, 0, 0.5);
  font-weight: 300;
}

.inp:disabled {
  background-color: #ececec;
}

select.inp {
  /* 아이폰 사파리 보더 없애기 */
  -webkit-appearance: none;
  /* 화살표 없애기 for chrome*/
  -moz-appearance: none;
  /* 화살표 없애기 for firefox*/
  appearance: none;
  /* 화살표 없애기 공통*/
  background-image: url(../images/ico-select.png);
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) 50%;
  background-size: 15px;
}

@media all and (max-width: 600px) {
  select.inp {
    background-position: calc(100% - 11px) 50%;
    background-size: 12px;
  }
}

textarea.inp {
  resize: none;
  min-height: 100px;
  line-height: 1.3;
  padding: 21px;
}

@media all and (max-width: 600px) {
  textarea.inp {
    padding: 11px;
  }
}

div.inp {
  /* overflow: auto; */
  /* min-height: 100px; */
  line-height: 1.3;
  padding: 21px;
}

@media all and (max-width: 600px) {
  div.inp {
    padding: 11px;
  }
}

.upload-caution {
  font-size: 15px;
  height: auto;
}

.selected-form-wrap {
  margin-top: 55px;
  display: none;
}

@media all and (max-width: 600px) {
  .selected-form-wrap {
    margin-top: 15px;
  }
}

.selected-form-wrap.active {
  display: block;
}

.selected-form-wrap-mgt0 {
  margin-top: 0;
}

/* ==================== page - main ==================== */
/* page common - main */
.ttl-grp {
  color: #202425;
}

.ttl-grp-white {
  color: white;
}

.ttl-grp .ttl {
  font-weight: 700;
}

.ttl-grp h2.ttl {
  font-size: 66px;
}

@media all and (max-width: 1400px) {
  .ttl-grp h2.ttl {
    font-size: 55px;
  }
}

@media all and (max-width: 1024px) {
  .ttl-grp h2.ttl {
    font-size: 45px;
  }
}

@media all and (max-width: 600px) {
  .ttl-grp h2.ttl {
    font-size: 28px;
  }
}

.ttl-grp h3.ttl {
  font-size: 48px;
}

@media all and (max-width: 1400px) {
  .ttl-grp h3.ttl {
    font-size: 43px;
  }
}

@media all and (max-width: 1024px) {
  .ttl-grp h3.ttl {
    font-size: 38px;
  }
}

@media all and (max-width: 600px) {
  .ttl-grp h3.ttl {
    font-size: 23px;
    line-height: 1.5;
  }
}

.ttl-grp .desc {
  font-size: 18px;
  line-height: 1.4;
}

@media all and (max-width: 1024px) {
  .ttl-grp .desc {
    font-size: 16px;
  }
}

@media all and (max-width: 600px) {
  .ttl-grp .desc {
    font-size: 12px;
  }
}

.section-main {
  overflow: hidden;
  position: relative;
}

.bg-swiper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.bg-swiper-pagination {
  position: relative;
  margin-top: 75px;
}

@media all and (max-width: 600px) {
  .bg-swiper-pagination {
    margin-top: 65px;
  }
}

.bg-swiper-pagination .swiper-pagination-bullet {
  width: 29px;
  height: 5px;
  border-radius: 0;
  box-shadow: 0 0 40px 5px rgba(0,0,0,0.3);
  background-color: white;
  opacity: 0.4;
}

.bg-swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.section-main .bg {
  vertical-align: bottom;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section-main .inner {
  padding-top: 589px;
  padding-bottom: 110px;
  position: relative;
  z-index: 1;
  text-align: center;
}

@media all and (max-width: 600px) {
  .section-main .inner {
    padding-top: 255px;
    padding-bottom: 67px;
  }
}

.section-main .ttl-grp h2.ttl {
  margin-bottom: 30px;
  text-shadow: 0 0 50px rgba(0,0,0,0.8);
}
.section-main .ttl-grp h3.ttl {
  margin-bottom: 30px;
  text-shadow: 0 0 50px rgba(0,0,0,0.8);
}

@media all and (max-width: 600px) {
  .section-main .ttl-grp h2.ttl {
    margin-bottom: 20px;
  }
}

.section-main .ttl-grp .desc {
  text-shadow: 0 0 50px rgba(0,0,0,0.8);
}
.section-main .btnWrap{
  margin-top:30px;
}
.section-partner{
  margin-top:30px;
}
.section-partner h4.ttl{
  font-size: 32px;
}
.section-partner .desc{
  margin:20px 0;
}
.section-partner .inner{
  display: flex;
  justify-content: space-between;
  width:100%;
}
.section-partner .section-content{

}

.section-partner figure{
  margin-top:30px;
}
.section-partner figure img{
  width:200px;
}
.section-main .desc.check_list{
  width:56%;
  margin:0 auto;
}
.section-partner .desc:has(button){
  display: flex;
  gap:30px;
}
.btn-blue{
  background-color: #2567d0;
}
.btn-green{
  background-color: #2e9e90;
}
.desc.check_list li{
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  text-align: left;
}
.desc.check_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;

  background: #2e9e90;
}
.desc.check_list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 5px;
  height: 7px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.desc.check_list li.none::before{
  content:"";
  display: none;
}
.desc.check_list li.none::after{
  content:"";
  display: none;
}
.desc.check_list li.none{
  padding-left:0px;
}
.section-ourservice {
  padding: 180px 0 155px;
}

@media all and (max-width: 1400px) {
  .section-ourservice {
    padding: 130px 0 105px;
  }
}

@media all and (max-width: 1024px) {
  .section-ourservice {
    padding: 105px 0;
  }
}

@media all and (max-width: 600px) {
  .section-ourservice {
    padding: 50px 0;
  }
}

.section-ourservice .inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media all and (max-width: 600px) {
  .section-ourservice .inner {
    flex-wrap: wrap;
    text-align: center;
  }
}

.section-ourservice .figure-img {
  margin-right: 54px;
  flex: 1 0 767px;
  max-width: 767px;
}

@media all and (max-width: 1400px) {
  .section-ourservice .figure-img {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media all and (max-width: 600px) {
  .section-ourservice .figure-img {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.section-ourservice .figure-img img {
  width: 100%;
}

.section-ourservice .ttl-grp .ttl {
  margin-bottom: 55px;
}

@media all and (max-width: 1400px) {
  .section-ourservice .ttl-grp .ttl {
    margin-bottom: 35px;
  }
}

@media all and (max-width: 600px) {
  .section-ourservice .ttl-grp .ttl {
    margin-bottom: 15px;
  }
}

.section-needhelp,
.section-wanthelp {
  height: 744px;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media all and (max-width: 1024px) {

  .section-needhelp,
  .section-wanthelp {
    height: 650px;
  }
}

@media all and (max-width: 600px) {
  .section-needhelp,
  .section-wanthelp {
    height: 400px;
  }
}

.section-needhelp {
  background-image: url(../images/bg-section-needhelp.png);
}

.section-wanthelp {
  background-image: url(../images/bg-section-wanthelp.png);
}

.section-needhelp .ttl-grp,
.section-wanthelp .ttl-grp {
  margin-bottom: 73px;
}

@media all and (max-width: 1024px) {

  .section-needhelp .ttl-grp,
  .section-wanthelp .ttl-grp {
    margin-bottom: 50px;
  }
}

@media all and (max-width: 600px) {

  .section-needhelp .ttl-grp,
  .section-wanthelp .ttl-grp {
    margin-bottom: 35px;
  }
}

.section-needhelp .ttl-grp .ttl,
.section-wanthelp .ttl-grp .ttl {
  margin-bottom: 43px;
}

@media all and (max-width: 600px) {

  .section-needhelp .ttl-grp .ttl,
  .section-wanthelp .ttl-grp .ttl {
    margin-bottom: 25px;
  }
}

.section-needhelp .ttl-grp .desc,
.section-wanthelp .ttl-grp .desc {
  display: inline-block;
  text-align: left;
}

.section-needhelp .solid-btn,
.section-wanthelp .solid-btn {
  width: 100%;
  max-width: 320px;
}

@media all and (max-width: 1024px) {

  .section-needhelp .solid-btn,
  .section-wanthelp .solid-btn {
    width: 100%;
    max-width: 100%;
  }
}

.section-lists {
  padding: 70px 0 100px;
}

@media all and (max-width: 1024px) {
  .section-lists {
    padding: 70px 0;
  }
}

@media all and (max-width: 600px) {
  .section-lists {
    padding: 50px 0;
  }
}

.imgtext-list-grp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

@media all and (max-width: 1024px) {
  .imgtext-list-grp {
    gap: 50px;
    flex-wrap: wrap;
  }
}

.imgtext-list {
  flex: 1 1 33%;
  text-align: center;
  max-width: 33%;
}

@media all and (max-width: 1024px) {
  .imgtext-list {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.imgtext-list .figure-img {
  width: 100%;
  height: 326px;
}

@media all and (max-width: 1400px) {
  .imgtext-list .figure-img {
    height: 245px;
  }
}

@media all and (max-width: 600px) {
  .imgtext-list .figure-img {
    height: auto;
  }
}

.imgtext-list .figure-img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: bottom;
}

.imgtext-list .text {
  margin-top: 10px;
}

.imgtext-list .text-ttl {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 20px;
}

@media all and (max-width: 600px) {
  .imgtext-list .text-ttl {
    font-size: 23px;
    margin-bottom: 15px;
  }
}

.imgtext-list .text-desc {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
}

@media all and (max-width: 1024px) {
  .imgtext-list .text-desc {
    font-size: 16px;
  }
}

@media all and (max-width: 600px) {
  .imgtext-list .text-desc {
    font-size: 12px;
  }
}

.imgtext-list .solid-btn {
  height: 34px;
  width: 100%;
  max-width: 100px;
}

/* ==================== page - assignment ==================== */
.section-sub-assignment {
  background-image: url(../images/bg-subpage-assignment.png);
}

.assignment-form-container {
  padding-bottom: 64px;
}

/* ==================== page - partner ==================== */
.section-sub-parnter {
  background-image: url(../images/bg-subpage-partner.png);
}

.partner-form-container {
  padding-bottom: 95px;
}

/* ==================== page - live together ==================== */
.section-sub-livetogether {
  background-image: url(../images/bg-subpage-livetogether.png);
}

.ltr-container {
  margin-top: 41px;
  padding-bottom: 145px;
}

.ltr-list-grp {
  border-top: 1px solid #c8c8c8;
  border-bottom: 1px solid #c8c8c8;
  margin-bottom: 60px;
}

@media all and (max-width: 600px) {
  .ltr-list-grp {
    margin-bottom: 45px;
  }
}

.ltr-list {
  border-bottom: 1px solid #ededed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  min-height: 175px;
}

@media all and (max-width: 600px) {
  .ltr-list {
    flex-direction: column;
    gap: 0;
    padding: 15px 0 20px;
  }
}

.ltr-list:last-child {
  border-bottom: 0;
}

.ltr-list .logo {
  max-width: 250px;
  flex-shrink: 0;
}

@media all and (max-width: 600px) {
  .ltr-list .logo {
    max-width: 150px;
  }
}

.ltr-list .address {
  width: 100%;
  text-align: left;
  font-size: 24px;
  color: #202425;
  padding-left: 50px;
}

@media all and (max-width: 600px) {
  .ltr-list .address {
    padding: 10px 0 25px;
    text-align: center;
    font-size: 14px;
  }
}

.ltr-list .solid-btn {
  width: 100%;
  max-width: 140px;
  flex-shrink: 0;
  height: 44px;
}

@media all and (max-width: 600px) {
  .ltr-list .solid-btn {
    height: 34px;
    max-width: 100px;
  }
}

.pagination {
  text-align: center;
}

.pagination .btn-list {
  display: inline-block;
  margin-right: 20px;
  font-size: 24px;
}

@media all and (max-width: 600px) {
  .pagination .btn-list {
    font-size: 16px;
  }
}

.pagination .btn-list.active {
  color: #5ed7ff;
  font-weight: 700;
}

.pagination .btn-list:last-child {
  margin-right: 0;
}