.pc_LL_display {
  display: none;
}
@media screen and (max-width: 1600px) {
  .pc_LL_display {
    display: block;
  }
}

.pc_L_display {
  display: none;
}
@media screen and (max-width: 1400px) {
  .pc_L_display {
    display: block;
  }
}

.pc_M_display {
  display: none;
}
@media screen and (max-width: 1200px) {
  .pc_M_display {
    display: block;
  }
}

.pc_S_display {
  display: none;
}
@media screen and (max-width: 1000px) {
  .pc_S_display {
    display: block;
  }
}

.tab_display {
  display: none;
}
@media screen and (max-width: 800px) {
  .tab_display {
    display: block;
  }
}

.sp_LL_display {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp_LL_display {
    display: block;
  }
}

.sp_L_display {
  display: none;
}
@media screen and (max-width: 460px) {
  .sp_L_display {
    display: block;
  }
}

.sp_ML_display {
  display: none;
}
@media screen and (max-width: 400px) {
  .sp_ML_display {
    display: block;
  }
}

.sp_M_display {
  display: none;
}
@media screen and (max-width: 375px) {
  .sp_M_display {
    display: block;
  }
}

.sp_S_display {
  display: none;
}
@media screen and (max-width: 350px) {
  .sp_S_display {
    display: block;
  }
}

body {
  width: 100%;
  overflow-x: hidden;
  color: #202020;
  font-family: "Noto Sans JP", serif;
}

img {
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
}

.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

.scrollin {
  opacity: 1;
  transform: translateY(0);
}

/*--------------- header ---------------*/
.header {
  background-color: #202020;
}

.header_wrap {
  padding: 8px 8vw 10px;
}

.header_btn {
  display: block;
  width: 260px;
  z-index: 2;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 600px) {
  .header_btn {
    width: 220px;
    margin: 0 auto;
  }
}
.header_btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #4B3E12;
  top: 4px;
  z-index: -1;
}

.header_btn:hover {
  top: 4px;
}
.header_btn:hover::after {
  top: 0;
}

/*--------------- fv ---------------*/
.fv {
  background-image: url(../img/fv_bg.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 58vw;
  position: relative;
}
@media screen and (max-width: 600px) {
  .fv {
    height: 134vw;
    background-size: cover;
    background-position: center;
  }
}

.fv_content {
  width: 55vw;
  position: absolute;
  top: 5.5vw;
  left: 0;
}
@media screen and (max-width: 600px) {
  .fv_content {
    width: 100%;
  }
}

.fv_main {
  width: 100%;
  margin-bottom: 2.8vw;
}

@media screen and (max-width: 600px) {
  .fv_main_pc {
    display: none;
  }
}

.fv_main_sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .fv_main_sp {
    display: block;
  }
}

.fv_img {
  width: 60vw;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 600px) {
  .fv_img {
    width: 64vw;
    left: 5vw;
    right: auto;
  }
}

.fv_list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.4vw;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.fv_list li {
  width: 13.4vw;
}
@media screen and (max-width: 600px) {
  .fv_list li {
    width: 36vw;
  }
}

.top_bg {
  padding-bottom: 33vw;
  position: relative;
}
@media screen and (max-width: 800px) {
  .top_bg {
    padding-bottom: 63vw;
  }
}
@media screen and (max-width: 600px) {
  .top_bg {
    padding-bottom: calc(540px - 11.8vw);
  }
}

/*--------------- message ---------------*/
.message {
  height: 40vw;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 20;
  background-color: #FFF;
  background-image: url(../img/message_bg.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  -webkit-clip-path: polygon(0 7vw, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 7vw, 100% 0, 100% 100%, 0 100%);
  padding-top: 7vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  .message {
    height: 70vw;
  }
}
@media screen and (max-width: 600px) {
  .message {
    height: 540px;
  }
}

.message_wrap {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding-left: 24vw;
}
@media screen and (max-width: 800px) {
  .message_wrap {
    padding-left: 12vw;
  }
}
@media screen and (max-width: 600px) {
  .message_wrap {
    padding-left: 0;
    padding-bottom: 9vw;
  }
}

.message_img {
  width: 40vw;
  position: absolute;
  bottom: 0;
  left: 8vw;
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  .message_img {
    width: 34vw;
    left: 4vw;
  }
}
@media screen and (max-width: 600px) {
  .message_img {
    width: 40vw;
    left: 0;
  }
}

.message_heading {
  margin-bottom: 1.2vw;
}

.message_heading span {
  display: block;
  font-size: 24px;
  color: #FFF;
  text-shadow: 4px 4px 4px #202020;
  background-color: #606060;
  font-family: "Noto Serif JP", serif;
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px 28px 8px;
  -webkit-clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
          clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
@media screen and (max-width: 1200px) {
  .message_heading span {
    font-size: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .message_heading span {
    font-size: 19px;
  }
}
@media screen and (max-width: 600px) {
  .message_heading span {
    font-size: 18px;
    padding: 5px 24px 6px;
    text-align: justify;
  }
}
.message_heading span:first-child {
  margin-bottom: max(0.8vw, 8px);
}

.message_content {
  width: 48.8vw;
  background-color: #FFF;
  padding: 1.6vw 4vw;
}
@media screen and (max-width: 1200px) {
  .message_content {
    width: 54vw;
  }
}
@media screen and (max-width: 1000px) {
  .message_content {
    width: 58vw;
    padding: 16px 40px;
  }
}
@media screen and (max-width: 800px) {
  .message_content {
    width: 480px;
  }
}
@media screen and (max-width: 600px) {
  .message_content {
    width: 92%;
    margin: 0 auto;
    padding: 28px 20px;
  }
}

.message_txt {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: max(1.2vw, 12px);
}
@media screen and (max-width: 1200px) {
  .message_txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .message_txt {
    line-height: 1.8;
  }
}

.message_name {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (max-width: 600px) {
  .message_name {
    flex-direction: column;
    align-items: flex-end;
  }
}
.message_name span {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 19px;
}
@media screen and (max-width: 1000px) {
  .message_name span {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .message_name span {
    font-size: 16px;
  }
}
.message_name img {
  width: 80px;
}
@media screen and (max-width: 1000px) {
  .message_name img {
    width: 76px;
  }
}

/*--------------- trouble ---------------*/
.trouble {
  background-image: url(../img/trouble_bg.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 80px 0 0;
}

.trouble_heading {
  width: 620px;
  margin: 0 auto max(2.4vw, 24px);
}
@media screen and (max-width: 1400px) {
  .trouble_heading {
    width: 540px;
  }
}
@media screen and (max-width: 1000px) {
  .trouble_heading {
    width: 460px;
  }
}
@media screen and (max-width: 600px) {
  .trouble_heading {
    width: 92%;
  }
}

.trouble_content {
  padding: 160px 220px 0;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .trouble_content {
    padding: 140px 190px 0;
  }
}
@media screen and (max-width: 800px) {
  .trouble_content {
    padding: 0;
  }
}

.trouble_img {
  width: 420px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  .trouble_img {
    width: 300px;
  }
}
@media screen and (max-width: 800px) {
  .trouble_img {
    width: 240px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .trouble_img {
    width: 180px;
  }
}

@media screen and (max-width: 800px) {
  .trouble_list {
    display: grid;
    grid-template-columns: 220px 220px;
    width: -moz-fit-content;
    width: fit-content;
    gap: 16px;
  }
}
@media screen and (max-width: 600px) {
  .trouble_list {
    display: block;
    width: 92%;
    margin: 0 auto;
    max-width: 380px;
  }
}

@media screen and (max-width: 600px) {
  .trouble_list_pc {
    display: none;
  }
}

.trouble_list_sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .trouble_list_sp {
    display: block;
  }
}

.trouble_item {
  position: absolute;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .trouble_item {
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 800px) {
  .trouble_item {
    position: static;
  }
}
.trouble_item:nth-child(1) {
  left: 0;
  bottom: 140px;
}
@media screen and (max-width: 1000px) {
  .trouble_item:nth-child(1) {
    bottom: 90px;
  }
}
.trouble_item:nth-child(2) {
  left: 100px;
  top: 0;
}
.trouble_item:nth-child(3) {
  right: 140px;
  top: 40px;
}
@media screen and (max-width: 1000px) {
  .trouble_item:nth-child(3) {
    right: 110px;
  }
}
.trouble_item:nth-child(4) {
  right: 10px;
  bottom: 100px;
}
@media screen and (max-width: 1000px) {
  .trouble_item:nth-child(4) {
    bottom: 50px;
  }
}
.trouble_item:nth-child(odd) {
  background-image: url(../img/trouble_bg_blue.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.trouble_item:nth-child(odd) .trouble_txt span {
  color: #FFF;
}
.trouble_item:nth-child(even) {
  background-image: url(../img/trouble_bg_white.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.trouble_item:nth-child(even) .trouble_txt span {
  color: #07799D;
}

.trouble_txt {
  text-align: center;
  line-height: 1.8;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
}
@media screen and (max-width: 1000px) {
  .trouble_txt {
    font-size: 16px;
  }
}
.trouble_txt span {
  line-height: 1.5;
  font-size: 24px;
}
@media screen and (max-width: 1000px) {
  .trouble_txt span {
    font-size: 21px;
  }
}

.middle_bg {
  padding-bottom: 44vw;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .middle_bg {
    padding-bottom: 52vw;
  }
}
@media screen and (max-width: 800px) {
  .middle_bg {
    padding-bottom: 66vw;
  }
}
@media screen and (max-width: 600px) {
  .middle_bg {
    padding-bottom: calc(490px - 8vw);
  }
}

/*--------------- solution ---------------*/
.solution {
  position: absolute;
  width: 100%;
  bottom: -4vw;
  left: 0;
  background-color: #606060;
  height: 52vw;
  -webkit-clip-path: polygon(0 0, 100% 4vw, 100% calc(100% - 4vw), 0 100%);
          clip-path: polygon(0 0, 100% 4vw, 100% calc(100% - 4vw), 0 100%);
  z-index: 3;
}
@media screen and (max-width: 1000px) {
  .solution {
    height: 60vw;
  }
}
@media screen and (max-width: 800px) {
  .solution {
    height: 74vw;
  }
}
@media screen and (max-width: 600px) {
  .solution {
    height: 490px;
  }
}

.solution_content {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 4;
}

.solution_heading {
  width: 400px;
  margin: 0 auto 2.8vw;
}
@media screen and (max-width: 1200px) {
  .solution_heading {
    width: 300px;
  }
}
@media screen and (max-width: 1000px) {
  .solution_heading {
    margin: 0 auto 28px;
  }
}
@media screen and (max-width: 800px) {
  .solution_heading {
    width: 260px;
  }
}
@media screen and (max-width: 600px) {
  .solution_heading {
    width: 220px;
  }
}

.solution_txt {
  color: #FFF;
  font-weight: 600;
  line-height: 1.5;
  font-size: 24px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 2.8vw;
}
@media screen and (max-width: 1200px) {
  .solution_txt {
    font-size: 21px;
  }
}
@media screen and (max-width: 1000px) {
  .solution_txt {
    margin: 0 auto 28px;
  }
}
@media screen and (max-width: 600px) {
  .solution_txt {
    font-size: 18px;
  }
}

.solution_bottom {
  background-color: #202020;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.8vw 2.4vw;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .solution_bottom {
    padding: 8px 24px;
  }
}
@media screen and (max-width: 600px) {
  .solution_bottom {
    padding: 8px 16px;
  }
}
.solution_bottom span {
  font-size: 32px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(90deg, #AA7400 0%, #FFFC68 33%, #F3E55B 60%, #9F4000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .solution_bottom span {
    font-size: 28px;
  }
}
@media screen and (max-width: 800px) {
  .solution_bottom span {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .solution_bottom span {
    font-size: 21px;
    line-height: 1.8;
  }
}

.solution_img {
  width: 44vw;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 1200px) {
  .solution_img {
    width: 42vw;
  }
}
@media screen and (max-width: 800px) {
  .solution_img {
    width: 36vw;
  }
}

/*--------------- point ---------------*/
.point {
  background-image: url(../img/point_bg.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 160px 0 calc(160px + 10vw);
}
@media screen and (max-width: 1000px) {
  .point {
    padding: 120px 0 calc(120px + 10vw);
  }
}
@media screen and (max-width: 600px) {
  .point {
    padding: 80px 0 140px;
  }
}

.point_heading {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 64px;
}
@media screen and (max-width: 800px) {
  .point_heading {
    margin: 0 auto 42px;
  }
}
.point_heading span {
  color: #FFF;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 58px;
}
@media screen and (max-width: 1000px) {
  .point_heading span {
    font-size: 42px;
  }
}
@media screen and (max-width: 800px) {
  .point_heading span {
    font-size: 32px;
  }
}
@media screen and (max-width: 400px) {
  .point_heading span {
    font-size: 30px;
  }
}
@media screen and (max-width: 375px) {
  .point_heading span {
    font-size: 27px;
  }
}

.point_list {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.point_item {
  color: #FFF;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 24px;
  padding-left: 30px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .point_item {
    font-size: 21px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 800px) {
  .point_item {
    font-size: 18px;
    padding-left: 26px;
  }
}
@media screen and (max-width: 600px) {
  .point_item {
    line-height: 1.6;
    padding-left: 30px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 375px) {
  .point_item {
    font-size: 17px;
    padding-left: 28px;
  }
}
.point_item:last-child {
  margin-bottom: 0;
}
.point_item::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 18px;
  background-image: url(../img/check_icon.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 800px) {
  .point_item::before {
    width: 20px;
    height: 16px;
  }
}
.point_item span span {
  color: #F9F871;
}

/*--------------- learn ---------------*/
.learn {
  padding: calc(100px + 10vw) 0;
  position: relative;
  background-image: url(../img/learn_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 800px) {
  .learn {
    padding: calc(100px + 15vw) 0;
  }
}
@media screen and (max-width: 600px) {
  .learn {
    padding: 180px 0;
  }
}

.learn_top {
  position: absolute;
  width: 100%;
  height: 20vw;
  background-image: url(../img/learn_bg_blue.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -10vw;
  left: 0;
}
@media screen and (max-width: 800px) {
  .learn_top {
    height: 30vw;
    top: -15vw;
  }
}
@media screen and (max-width: 600px) {
  .learn_top {
    height: 200px;
    top: -80px;
    background-image: url(../img/learn_bg_blue_sp.webp);
  }
}

.learn_top span {
  color: #FFF;
  font-weight: 600;
  font-size: 28px;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  line-height: 1.7;
}
@media screen and (max-width: 1200px) {
  .learn_top span {
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) {
  .learn_top span {
    font-size: 18px;
  }
}
.learn_top span span {
  background: linear-gradient(90deg, #FFFC68 0%, #F3E55B 50%, #DBB541 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-size: 40px;
}
@media screen and (max-width: 1200px) {
  .learn_top span span {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .learn_top span span {
    font-size: 26px;
  }
}

.learn_bottom {
  position: absolute;
  width: 100%;
  height: 20vw;
  background-image: url(../img/learn_bg_blue.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: -10vw;
  left: 0;
}
@media screen and (max-width: 800px) {
  .learn_bottom {
    height: 30vw;
    bottom: -15vw;
  }
}
@media screen and (max-width: 600px) {
  .learn_bottom {
    height: 200px;
    bottom: -100px;
    background-image: url(../img/learn_bg_blue_sp.webp);
  }
}

.learn_bottom span {
  color: #FFF;
  font-weight: 600;
  font-size: 28px;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  line-height: 1.7;
}
@media screen and (max-width: 1200px) {
  .learn_bottom span {
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) {
  .learn_bottom span {
    font-size: 18px;
  }
}
.learn_bottom span span {
  background: linear-gradient(90deg, #AA7400 0%, #FFFC68 33%, #F3E55B 60%, #9F4000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-size: 40px;
}
@media screen and (max-width: 1200px) {
  .learn_bottom span span {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .learn_bottom span span {
    font-size: 26px;
  }
}

.learn_heading {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 64px;
  position: relative;
}
.learn_heading::before {
  content: "";
  position: absolute;
  height: 32px;
  width: 4px;
  background-color: #202020;
  top: 50%;
  left: -24px;
  transform: translateY(-50%) rotate(-24deg);
}
@media screen and (max-width: 600px) {
  .learn_heading::before {
    height: 24px;
    left: -20px;
  }
}
.learn_heading::after {
  content: "";
  position: absolute;
  height: 32px;
  width: 4px;
  background-color: #202020;
  top: 50%;
  right: -24px;
  transform: translateY(-50%) rotate(24deg);
}
@media screen and (max-width: 600px) {
  .learn_heading::after {
    height: 24px;
    right: -20px;
  }
}

.learn_heading span {
  font-weight: 900;
  font-size: 36px;
  font-family: "Noto Serif JP", serif;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .learn_heading span {
    font-size: 30px;
  }
}
@media screen and (max-width: 600px) {
  .learn_heading span {
    font-size: 26px;
  }
}
@media screen and (max-width: 375px) {
  .learn_heading span {
    font-size: 24px;
  }
}

.learn_list {
  display: grid;
  grid-template-columns: repeat(3, 330px);
  gap: 40px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
  .learn_list {
    gap: 24px;
  }
}
@media screen and (max-width: 1200px) {
  .learn_list {
    grid-template-columns: repeat(2, 330px);
  }
}
@media screen and (max-width: 800px) {
  .learn_list {
    grid-template-columns: repeat(2, 270px);
  }
}
@media screen and (max-width: 600px) {
  .learn_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    width: 96%;
  }
}
@media screen and (max-width: 350px) {
  .learn_list {
    grid-template-columns: 1fr;
    width: 94%;
  }
}

.learn_item {
  width: 330px;
  padding: 5px;
  background: linear-gradient(90deg, #AA7400 0%, #FFFC68 33%, #F3E55B 60%, #9F4000 100%);
  border-radius: 10px;
}
@media screen and (max-width: 800px) {
  .learn_item {
    width: 270px;
  }
}
@media screen and (max-width: 600px) {
  .learn_item {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .learn_item {
    padding: 2px;
  }
}

.learn_item_inner {
  background-color: #202020;
  padding: 32px 12px;
  border-radius: 10px;
}
@media screen and (max-width: 600px) {
  .learn_item_inner {
    padding: 26px 6px;
  }
}

.learn_item_num {
  color: #FFF;
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-size: 40px;
  display: block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin: 0 auto 24px;
}
@media screen and (max-width: 800px) {
  .learn_item_num {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .learn_item_num {
    font-size: 26px;
  }
}
.learn_item_num::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: #FFF;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 600px) {
  .learn_item_num::before {
    width: 32px;
    bottom: -6px;
  }
}

.learn_item_bubble {
  background-color: #FFF;
  padding: 10px 0;
  width: 100%;
  border-radius: 5px;
  position: relative;
  margin-bottom: 18px;
}
.learn_item_bubble::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 12px;
  background-color: #FFF;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
}
.learn_item_bubble span {
  display: block;
  font-weight: 700;
  font-size: 18px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .learn_item_bubble span {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .learn_item_bubble span {
    font-size: 15px;
  }
}

.learn_item_title {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  background: linear-gradient(90deg, #FFFC68 0%, #F3E55B 50%, #DBB541 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 34px;
}
@media screen and (max-width: 800px) {
  .learn_item_title {
    font-size: 28px;
  }
}
@media screen and (max-width: 600px) {
  .learn_item_title {
    font-size: 22px;
  }
}
@media screen and (max-width: 400px) {
  .learn_item_title {
    font-size: 21px;
  }
}
@media screen and (max-width: 375px) {
  .learn_item_title {
    font-size: 19px;
  }
}

/*--------------- cta ---------------*/
.cta.cta_bottom {
  padding: 80px 0;
}
@media screen and (max-width: 600px) {
  .cta.cta_bottom {
    padding: 60px 0;
  }
}

.cta {
  background-color: #202020;
  padding: calc(56px + 10vw) 0 0;
}
@media screen and (max-width: 1000px) {
  .cta {
    padding: calc(56px + 15vw) 0 0;
  }
}
@media screen and (max-width: 800px) {
  .cta {
    padding: 156px 0 0;
  }
}

.cta_wrap {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .cta_wrap {
    flex-direction: column;
  }
}

.cta_img {
  width: 34vw;
}
@media screen and (max-width: 800px) {
  .cta_img {
    order: 2;
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .cta_img {
    width: 48vw;
  }
}

.cta_content {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 56px;
}
@media screen and (max-width: 800px) {
  .cta_content {
    margin-bottom: 32px;
  }
}

.cta_main {
  margin: 0 auto 24px;
}

.cta_bubble {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  font-size: 28px;
  background: linear-gradient(90deg, #FFFC68 0%, #F3E55B 50%, #DBB541 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Noto Serif JP", serif;
  position: relative;
  margin: 0 auto 2px;
}
@media screen and (max-width: 1000px) {
  .cta_bubble {
    font-size: 24px;
  }
}
.cta_bubble::before {
  content: "";
  position: absolute;
  height: 26px;
  width: 2px;
  background-color: #FFF;
  bottom: 0;
  left: -24px;
  transform: rotate(-24deg);
}
.cta_bubble::after {
  content: "";
  position: absolute;
  height: 26px;
  width: 2px;
  background-color: #FFF;
  bottom: 0;
  right: -24px;
  transform: rotate(24deg);
}

.cta_main_txt {
  display: block;
  color: #FFF;
  font-weight: 700;
  font-size: 36px;
  font-family: "Noto Serif JP", serif;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1000px) {
  .cta_main_txt {
    font-size: 30px;
  }
}

.cta_heading {
  display: block;
  color: #FFF;
  font-weight: 700;
  font-size: 36px;
  font-family: "Noto Serif JP", serif;
  margin: 0 auto 24px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1000px) {
  .cta_heading {
    font-size: 30px;
  }
}
@media screen and (max-width: 600px) {
  .cta_heading {
    text-align: center;
    line-height: 1.4;
  }
}

.cta_heading span {
  display: inline-block;
  position: relative;
  z-index: 2;
}
.cta_heading span::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 5px;
  background-image: url(../img/cta_object.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  bottom: -5px;
  transform: rotate(-8deg);
  left: 16px;
  z-index: -1;
}
@media screen and (max-width: 1000px) {
  .cta_heading span::after {
    width: 50px;
    height: 4px;
    bottom: -4px;
    left: 12px;
  }
}
@media screen and (max-width: 600px) {
  .cta_heading span::after {
    bottom: -2px;
  }
}

.cta_btn {
  display: block;
  width: 360px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .cta_btn {
    width: 280px;
  }
}
.cta_btn::after {
  content: "";
  position: absolute;
  background-color: #0D406B;
  top: 4px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.cta_btn span {
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
}
.cta_btn img {
  width: 22px;
}
@media screen and (max-width: 600px) {
  .cta_btn img {
    width: 18px;
  }
}

.cta_btn:hover {
  top: 4px;
}
.cta_btn:hover::after {
  top: 0;
}

.cta_btn_inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 18px 0;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  background-color: #00A3D7;
}
@media screen and (max-width: 600px) {
  .cta_btn_inner {
    gap: 12px;
  }
}

/*--------------- difference ---------------*/
.difference {
  padding-bottom: 80px;
}
@media screen and (max-width: 600px) {
  .difference {
    padding-bottom: 60px;
  }
}

.difference_heading {
  background-image: url(../img/difference_heading.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  height: 17.8vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 1000px) {
  .difference_heading {
    height: 22vw;
  }
}
@media screen and (max-width: 800px) {
  .difference_heading {
    margin-bottom: 60px;
    height: 200px;
  }
}
@media screen and (max-width: 600px) {
  .difference_heading {
    height: 160px;
  }
}

.difference_heading span {
  display: block;
  font-weight: 900;
  font-size: 36px;
  font-family: "Noto Serif JP", serif;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 12px;
  position: relative;
  color: #FFF;
}
@media screen and (max-width: 1000px) {
  .difference_heading span {
    font-size: 30px;
    margin: 0 auto 18px;
  }
}
@media screen and (max-width: 800px) {
  .difference_heading span {
    font-size: 26px;
  }
}
@media screen and (max-width: 600px) {
  .difference_heading span {
    text-align: center;
    line-height: 1.6;
    font-size: 22px;
    margin: 0 auto 24px;
  }
}
.difference_heading span::before {
  content: "";
  position: absolute;
  height: 32px;
  width: 4px;
  background-color: #FFF;
  top: 50%;
  left: -24px;
  transform: translateY(-50%) rotate(-24deg);
}
@media screen and (max-width: 600px) {
  .difference_heading span::before {
    height: 24px;
    left: -20px;
    bottom: 0;
    transform: rotate(-24deg);
  }
}
.difference_heading span::after {
  content: "";
  position: absolute;
  height: 32px;
  width: 4px;
  background-color: #FFF;
  top: 50%;
  right: -24px;
  transform: translateY(-50%) rotate(24deg);
}
@media screen and (max-width: 600px) {
  .difference_heading span::after {
    height: 24px;
    right: -20px;
    bottom: 0;
    transform: rotate(24deg);
  }
}

.difference_list {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .difference_list {
    width: 860px;
  }
}
@media screen and (max-width: 1000px) {
  .difference_list {
    width: 720px;
  }
}
@media screen and (max-width: 800px) {
  .difference_list {
    width: 540px;
  }
}
@media screen and (max-width: 800px) {
  .difference_list {
    width: 540px;
  }
}
@media screen and (max-width: 600px) {
  .difference_list {
    width: 92%;
  }
}

.difference_item {
  width: 100%;
  box-shadow: -8px -8px 8px 4px rgba(226, 226, 226, 0.25), 8px 8px 8px 4px rgba(96, 96, 96, 0.25);
  border-radius: 10px;
  padding: 50px 0;
  display: grid;
  grid-template-columns: 300px 540px;
  gap: 24px;
  justify-content: center;
  margin-bottom: 36px;
}
@media screen and (max-width: 1200px) {
  .difference_item {
    grid-template-columns: 300px 420px;
  }
}
@media screen and (max-width: 1000px) {
  .difference_item {
    grid-template-columns: 300px 340px;
  }
}
@media screen and (max-width: 800px) {
  .difference_item {
    grid-template-columns: 1fr;
    padding: 62px 50px 42px;
    box-shadow: -4px -4px 4px 2px rgba(226, 226, 226, 0.25), 4px 4px 4px 2px rgba(96, 96, 96, 0.25);
  }
}
@media screen and (max-width: 600px) {
  .difference_item {
    padding: 52px 16px 32px;
  }
}
.difference_item:last-child {
  margin-bottom: 0;
}

.difference_img {
  width: 300px;
  position: relative;
}
@media screen and (max-width: 800px) {
  .difference_img {
    margin: 0 auto;
    width: 100%;
    max-width: 300px;
  }
}

.difference_num {
  position: absolute;
  width: 90px;
  top: -30px;
  left: -8px;
}
@media screen and (max-width: 1000px) {
  .difference_num {
    width: 70px;
    top: -24px;
    left: -8px;
  }
}
@media screen and (max-width: 600px) {
  .difference_num {
    width: 60px;
    top: -20px;
    left: 0px;
  }
}

.difference_txt_top {
  display: block;
  background-color: #00A3D7;
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  color: #FFF;
  padding: 18px 24px 12px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
@media screen and (max-width: 1000px) {
  .difference_txt_top {
    font-size: 22px;
    padding: 16px 20px 10px;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 600px) {
  .difference_txt_top {
    font-size: 20px;
    padding: 14px 16px 8px;
  }
}
@media screen and (max-width: 375px) {
  .difference_txt_top {
    padding: 14px 12px 8px;
  }
}

.difference_txt_top span {
  position: relative;
  display: inline-block;
}
.difference_txt_top span::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: #FFF;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
}

.difference_txt p {
  font-size: 18px;
  font-weight: 600;
  line-height: 2;
}
@media screen and (max-width: 1000px) {
  .difference_txt p {
    font-size: 17px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 600px) {
  .difference_txt p {
    font-size: 16px;
    font-weight: 500;
    text-align: justify;
  }
}

/*--------------- case ---------------*/
.case {
  background-image: url(../img/case_bg.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 80px 0;
}

.case_heading {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 68px;
  position: relative;
}
.case_heading::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #AA7400 0%, #FFFC68 33%, #F3E55B 60%, #9F4000 100%);
  bottom: -8px;
  left: 0;
}

.case_heading span {
  display: block;
  font-weight: 700;
  color: #FFF;
  font-size: 32px;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 800px) {
  .case_heading span {
    font-size: 26px;
  }
}
@media screen and (max-width: 600px) {
  .case_heading span {
    text-align: center;
    line-height: 1.3;
  }
}

.case_list {
  display: grid;
  grid-template-columns: 400px 400px;
  gap: 40px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .case_list {
    grid-template-columns: 320px 320px;
    gap: 16px;
  }
}
@media screen and (max-width: 800px) {
  .case_list {
    grid-template-columns: 500px;
  }
}
@media screen and (max-width: 600px) {
  .case_list {
    grid-template-columns: 1fr;
    width: 94%;
  }
}

.case_item {
  background-color: #FFF;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.case_top {
  display: grid;
  padding: 12px 0 12px 12px;
  grid-template-columns: 110px 1fr;
  gap: 21px;
  flex: 1;
}
@media screen and (max-width: 1000px) {
  .case_top {
    gap: 8px;
    padding: 6px 0 6px 6px;
    grid-template-columns: 80px 1fr;
  }
}
@media screen and (max-width: 800px) {
  .case_top {
    padding: 12px 0 12px 12px;
    grid-template-columns: 110px 1fr;
  }
}
@media screen and (max-width: 600px) {
  .case_top {
    grid-template-columns: 1fr;
    padding: 12px;
  }
}

@media screen and (max-width: 600px) {
  .case_img {
    width: 120px;
    margin: 0 auto;
  }
}

.case_top_name {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #00A3D7;
  padding: 8px 2px;
  width: 100%;
  border-top: 2px solid #00A3D7;
  border-bottom: 2px solid #00A3D7;
  margin-bottom: 8px;
  line-height: 1.3;
}
@media screen and (max-width: 1000px) {
  .case_top_name {
    font-size: 16px;
  }
}

.case_top_link {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  transition: all 0.3s;
  padding-right: 12px;
}
@media screen and (max-width: 600px) {
  .case_top_link {
    padding-right: 0;
  }
}
.case_top_link:hover {
  opacity: 0.7;
}
.case_top_link span {
  display: block;
  width: 100%;
  color: #606060;
  word-break: break-all;
}
.case_top_link img {
  width: 20px;
}

/*--------------- reasons ---------------*/
.reasons {
  padding: 80px 0;
  background-image: url(../img/learn_bg.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.reasons_heading {
  margin-bottom: 40px;
}

.reasons_heading span {
  display: block;
  font-weight: 900;
  font-size: 36px;
  font-family: "Noto Serif JP", serif;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 12px;
  position: relative;
  color: #202020;
}
@media screen and (max-width: 1000px) {
  .reasons_heading span {
    font-size: 30px;
    margin: 0 auto 18px;
  }
}
@media screen and (max-width: 800px) {
  .reasons_heading span {
    font-size: 26px;
  }
}
@media screen and (max-width: 600px) {
  .reasons_heading span {
    text-align: center;
    line-height: 1.6;
    font-size: 22px;
    margin: 0 auto 24px;
  }
}
.reasons_heading span::before {
  content: "";
  position: absolute;
  height: 32px;
  width: 4px;
  background-color: #202020;
  top: 50%;
  left: -24px;
  transform: translateY(-50%) rotate(-24deg);
}
@media screen and (max-width: 600px) {
  .reasons_heading span::before {
    height: 24px;
    left: -20px;
    top: auto;
    bottom: 0;
    transform: rotate(-24deg);
  }
}
.reasons_heading span::after {
  content: "";
  position: absolute;
  height: 32px;
  width: 4px;
  background-color: #202020;
  top: 50%;
  right: -24px;
  transform: translateY(-50%) rotate(24deg);
}
@media screen and (max-width: 600px) {
  .reasons_heading span::after {
    height: 24px;
    right: -20px;
    top: auto;
    bottom: 0;
    transform: rotate(24deg);
  }
}

.reasons_top {
  padding: 0 8vw;
  margin-bottom: 72px;
}
@media screen and (max-width: 600px) {
  .reasons_top {
    padding: 0;
    width: 94%;
    margin: 0 auto 48px;
  }
}

.reasons_top span {
  display: block;
  font-size: 26px;
  color: #FFF;
  text-shadow: 4px 4px 4px #202020;
  background-color: #606060;
  font-family: "Noto Serif JP", serif;
  width: -moz-fit-content;
  width: fit-content;
  padding: 9px 36px 10px;
  -webkit-clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
          clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
@media screen and (max-width: 1200px) {
  .reasons_top span {
    font-size: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .reasons_top span {
    font-size: 19px;
  }
}
@media screen and (max-width: 600px) {
  .reasons_top span {
    font-size: 18px;
    padding: 5px 24px 6px;
    text-align: justify;
  }
}
.reasons_top span:first-child {
  margin-bottom: 24px;
}
@media screen and (max-width: 600px) {
  .reasons_top span:first-child {
    margin-bottom: 16px;
  }
}
.reasons_top span:last-child {
  margin-left: 15vw;
}
@media screen and (max-width: 600px) {
  .reasons_top span:last-child {
    margin-left: 0;
  }
}

.reasons_middle {
  padding-bottom: 8.4vw;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .reasons_middle {
    padding-bottom: 0;
  }
}
.reasons_middle img {
  width: 37vw;
  position: absolute;
  left: 4vw;
  bottom: 0;
}
@media screen and (max-width: 600px) {
  .reasons_middle img {
    position: static;
    width: 74vw;
    margin: 24px auto 0;
  }
}

.reasons_middle_txt {
  width: 583px;
  margin-left: auto;
  margin-right: 18vw;
}
@media screen and (max-width: 1200px) {
  .reasons_middle_txt {
    margin-right: 12vw;
  }
}
@media screen and (max-width: 1000px) {
  .reasons_middle_txt {
    margin-right: 9vw;
    width: 58.3vw;
  }
}
@media screen and (max-width: 600px) {
  .reasons_middle_txt {
    width: 94%;
    margin: 0 auto;
  }
}

.reasons_middle_txt_top {
  display: block;
  color: #00A3D7;
  font-size: 26px;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 1000px) {
  .reasons_middle_txt_top {
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) {
  .reasons_middle_txt_top {
    font-size: 21px;
    text-align: center;
    line-height: 1.4;
  }
}

.reasons_middle_txt p {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (max-width: 1000px) {
  .reasons_middle_txt p {
    font-size: 17px;
  }
}
@media screen and (max-width: 600px) {
  .reasons_middle_txt p {
    line-height: 1.9;
  }
}
.reasons_middle_txt p span {
  color: #00A3D7;
}

.reasons_list {
  padding: 0 8vw;
}
@media screen and (max-width: 600px) {
  .reasons_list {
    padding: 0;
    width: 94%;
    margin: 0 auto;
  }
}

.reasons_item {
  display: grid;
  grid-template-columns: 470px 1fr;
}
@media screen and (max-width: 1000px) {
  .reasons_item {
    grid-template-columns: 1fr;
  }
}
.reasons_item:nth-child(1) {
  grid-template-columns: 1fr 470px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .reasons_item:nth-child(1) {
    grid-template-columns: 1fr;
  }
}

.reasons_item:nth-child(1) .reasons_item_img {
  order: 2;
}
@media screen and (max-width: 1000px) {
  .reasons_item:nth-child(1) .reasons_item_img {
    order: -1;
  }
}

.reasons_item_img {
  width: 470px;
}
@media screen and (max-width: 1000px) {
  .reasons_item_img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .reasons_item_img {
    width: 100%;
    max-width: 480px;
  }
}

.reasons_item_txt {
  background-color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .reasons_item_txt {
    padding: 40px 50px;
  }
}
@media screen and (max-width: 600px) {
  .reasons_item_txt {
    padding: 32px 24px;
  }
}

.reasons_item_txt p {
  width: 38.8vw;
  line-height: 1.8;
  font-weight: 500;
  font-size: 18px;
}
@media screen and (max-width: 1200px) {
  .reasons_item_txt p {
    font-size: 16px;
    width: 32vw;
  }
}
@media screen and (max-width: 1000px) {
  .reasons_item_txt p {
    width: 100%;
  }
}
.reasons_item_txt p span {
  color: #FF770A;
}

/*--------------- program ---------------*/
.program {
  background-image: url(../img/case_bg.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 80px 0;
}

.program_heading {
  margin-bottom: 40px;
}

.program_heading span {
  display: block;
  font-weight: 900;
  font-size: 36px;
  font-family: "Noto Serif JP", serif;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 12px;
  position: relative;
  color: #FFF;
}
@media screen and (max-width: 1000px) {
  .program_heading span {
    font-size: 30px;
    margin: 0 auto 18px;
  }
}
@media screen and (max-width: 800px) {
  .program_heading span {
    font-size: 26px;
  }
}
@media screen and (max-width: 600px) {
  .program_heading span {
    text-align: center;
    line-height: 1.6;
    font-size: 22px;
    margin: 0 auto 24px;
  }
}
.program_heading span::before {
  content: "";
  position: absolute;
  height: 32px;
  width: 4px;
  background-color: #FFF;
  top: 50%;
  left: -24px;
  transform: translateY(-50%) rotate(-24deg);
}
@media screen and (max-width: 600px) {
  .program_heading span::before {
    height: 24px;
    left: -20px;
    top: auto;
    bottom: 0;
    transform: rotate(-24deg);
  }
}
.program_heading span::after {
  content: "";
  position: absolute;
  height: 32px;
  width: 4px;
  background-color: #FFF;
  top: 50%;
  right: -24px;
  transform: translateY(-50%) rotate(24deg);
}
@media screen and (max-width: 600px) {
  .program_heading span::after {
    height: 24px;
    right: -20px;
    top: auto;
    bottom: 0;
    transform: rotate(24deg);
  }
}

.program_list {
  display: grid;
  grid-template-columns: 440px 440px;
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 40px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .program_list {
    grid-template-columns: 360px 360px;
  }
}
@media screen and (max-width: 800px) {
  .program_list {
    grid-template-columns: 360px;
  }
}
@media screen and (max-width: 600px) {
  .program_list {
    grid-template-columns: 1fr;
    width: 94%;
    row-gap: 24px;
  }
}

.program_item {
  background-color: #FFF;
  border-radius: 10px;
  padding: 36px;
  position: relative;
  width: 100%;
  box-shadow: -8px -8px 8px 4px rgba(226, 226, 226, 0.25), 8px 8px 8px 4px rgba(96, 96, 96, 0.25);
}
@media screen and (max-width: 1200px) {
  .program_item {
    padding: 30px;
  }
}
@media screen and (max-width: 600px) {
  .program_item {
    padding: 24px;
  }
}

.program_item_num {
  position: absolute;
  width: 90px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1200px) {
  .program_item_num {
    width: 80px;
  }
}
@media screen and (max-width: 600px) {
  .program_item_num {
    width: 60px;
  }
}

.program_item_img {
  margin-bottom: 16px;
}

.program_item_txt {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 26px;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 1200px) {
  .program_item_txt {
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) {
  .program_item_txt {
    font-size: 20px;
  }
}
.program_item_txt span {
  font-size: 22px;
}
@media screen and (max-width: 1200px) {
  .program_item_txt span {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .program_item_txt span {
    font-size: 18px;
  }
}

/*--------------- benefits ---------------*/
.benefits {
  background-color: #202020;
  padding: 80px 0;
}
@media screen and (max-width: 600px) {
  .benefits {
    padding: 60px 0;
  }
}

.benefits_img {
  width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .benefits_img {
    width: 800px;
  }
}
@media screen and (max-width: 1000px) {
  .benefits_img {
    width: 720px;
  }
}
@media screen and (max-width: 800px) {
  .benefits_img {
    width: 540px;
  }
}
@media screen and (max-width: 600px) {
  .benefits_img {
    width: 94%;
    max-width: 500px;
  }
}

@media screen and (max-width: 600px) {
  .benefits_img_pc {
    display: none;
  }
}

.benefits_img_sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .benefits_img_sp {
    display: block;
  }
}

/*--------------- contact ---------------*/
.contact {
  padding: 80px 0;
}

.contact_heading {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #00A3D7;
  font-size: 32px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  margin: 0 auto 40px;
}
@media screen and (max-width: 600px) {
  .contact_heading {
    font-size: 28px;
  }
}

.contact_list {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
}
@media screen and (max-width: 600px) {
  .contact_list {
    width: 94%;
  }
}

.contact_item {
  display: grid;
  grid-template-columns: 278px 535px;
  align-items: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 1000px) {
  .contact_item {
    grid-template-columns: 640px;
    gap: 12px;
  }
}
@media screen and (max-width: 800px) {
  .contact_item {
    grid-template-columns: 520px;
  }
}
@media screen and (max-width: 600px) {
  .contact_item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.contact_item:last-child {
  margin-bottom: 0;
}

.contact_item.contact_textarea {
  align-items: start;
}

.contact_title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.contact_item.contact_textarea .contact_title {
  margin-top: 6px;
}

.contact_title_txt {
  font-size: 18px;
  font-weight: 500;
}

.required_icon {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #FF770A;
  color: #FFF;
  font-size: 16px;
  padding: 2px 10px 3px;
  border-radius: 4px;
}

.contact_input {
  width: 100%;
}

.contact_input input,
.contact_input textarea {
  width: 100%;
  background-color: #fafafa;
  border: 1.6px solid #D9D9D9;
  border-radius: 4px;
  font-size: 18px;
  padding: 8px;
  line-height: 1.5;
}

.contact_btn {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.contact_btn::after {
  content: "";
  position: absolute;
  background-color: #0D406B;
  top: 4px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.contact_btn:hover {
  top: 4px;
}
.contact_btn:hover::after {
  top: 0;
}

.contact_btn input {
  background-color: #00A3D7;
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  padding: 18px 115px 18px 96px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .contact_btn input {
    font-size: 20px;
    padding: 16px 80px 16px 64px;
  }
}

.contact_btn_arrow {
  display: block;
  position: absolute;
  width: 14px;
  height: 14px;
  border-top: 3px solid #FFF;
  border-right: 3px solid #FFF;
  top: 52%;
  right: 90px;
  transform: translateY(-50%) rotate(45deg);
  z-index: 3;
}
@media screen and (max-width: 600px) {
  .contact_btn_arrow {
    right: 64px;
    width: 12px;
    height: 12px;
  }
}

.wpcf7 br {
  display: none !important;
}

.wpcf7-spinner {
  display: none !important;
}

/*---------------  ---------------*//*# sourceMappingURL=index.css.map */