.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: #333333;
  font-family: "Noto Sans JP", sans-serif;
}

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

a {
  text-decoration: none;
}

.bg {
  background-image: url(../img/bg.webp);
  background-size: cover;
  background-repeat: repeat-y;
  width: 100%;
}

.wrap {
  width: 70vw;
  margin: 0 auto;
  padding: 128px 0;
}
@media screen and (max-width: 1200px) {
  .wrap {
    width: 85vw;
  }
}
@media screen and (max-width: 600px) {
  .wrap {
    width: 92%;
    padding: 40px 0;
  }
}

h3 {
  font-size: max(1.7vw, 24px);
  color: #0F3773;
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (max-width: 600px) {
  h3 {
    font-size: 20px;
  }
}

p {
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
}

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

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

.fade-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 1s;
}

.fade-left.move {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(20px);
  transition: all 1s;
}

.fade-right.move {
  opacity: 1;
  transform: translateX(0);
}

.ttl_line {
  display: block;
  width: max(3.5vw, 35px);
  height: max(5.6vw, 56px);
  background-color: #103773;
  -webkit-clip-path: polygon(2vw 0, 100% 0, calc(100% - 2vw) 100%, 0 100%);
          clip-path: polygon(2vw 0, 100% 0, calc(100% - 2vw) 100%, 0 100%);
}
@media screen and (max-width: 1000px) {
  .ttl_line {
    -webkit-clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
            clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
  }
}
@media screen and (max-width: 600px) {
  .ttl_line {
    height: 42px;
    width: 20px;
    -webkit-clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
            clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  }
}

.section_heading {
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .section_heading {
    margin-bottom: 24px;
  }
}

.section_top {
  min-width: max(37.5vw, 240px);
  font-size: max(1.25vw, 18px);
  background-color: #103773;
  display: block;
  margin: 0 auto 24px;
  text-align: center;
  color: #fff;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 42px;
  -webkit-clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
          clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  line-height: 1.4;
}
@media screen and (max-width: 600px) {
  .section_top {
    padding: 6px 24px;
    margin: 0 auto 16px;
  }
}

.section_heading_main {
  font-size: max(2.1vw, 28px);
  font-weight: 600;
  line-height: 1.3;
  color: #0F3773;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .section_heading_main {
    font-size: 22px;
  }
}

.section_heading_main.anime {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}

.section_heading_main.anime.move {
  animation: textanimation 0.6s 0.3s forwards;
}

@keyframes textanimation {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
/*--------------- header ---------------*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 100;
  height: 90px;
}
@media screen and (max-width: 600px) {
  .header {
    height: 70px;
  }
}
@media screen and (max-width: 375px) {
  .header {
    height: 65px;
  }
}

.header.open {
  z-index: 505;
}

.header_wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: max(3.2vw, 32px);
}
@media screen and (max-width: 600px) {
  .header_wrap {
    padding-left: 16px;
  }
}

.header_logo {
  width: 240px;
}
@media screen and (max-width: 1200px) {
  .header_logo {
    width: 180px;
  }
}
@media screen and (max-width: 600px) {
  .header_logo {
    width: 128px;
  }
}
@media screen and (max-width: 375px) {
  .header_logo {
    width: 110px;
  }
}
@media screen and (max-width: 350px) {
  .header_logo {
    width: 90px;
  }
}

.header_right {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 1000px) {
  .header_right {
    gap: 0;
  }
}

.header_menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

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

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

.header_menu_item a {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  padding-right: 18px;
  transform: all 0.3s;
}
.header_menu_item a:hover {
  opacity: 0.7;
}
.header_menu_item a::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #103773;
  border-right: 2px solid #103773;
  transform: rotate(45deg);
  top: 50%;
  right: 0;
  margin-top: -6px;
}

.header_btn {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
.header_btn a {
  display: block;
  width: 90px;
  transition: all 0.3s;
}
@media screen and (max-width: 600px) {
  .header_btn a {
    width: 70px;
  }
}
@media screen and (max-width: 375px) {
  .header_btn a {
    width: 65px;
  }
}
.header_btn a:hover {
  opacity: 0.7;
}

.header_hamburger_menu {
  display: none;
}
@media screen and (max-width: 1000px) {
  .header_hamburger_menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
  }
}
@media screen and (max-width: 375px) {
  .header_hamburger_menu {
    width: 65px;
  }
}

.mask {
  display: none;
  padding: 120px 0;
}
@media screen and (max-width: 1000px) {
  .mask {
    display: block;
    position: fixed;
    opacity: 0;
    top: 0;
    right: -1000px;
    height: 100vh;
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.86);
    z-index: -4;
    transition: all 0.5s;
  }
}

.mask .header_menu {
  margin: 0 auto 36px;
  width: -moz-fit-content;
  width: fit-content;
}

.mask .header_menu_item a {
  font-size: 18px;
  color: #333;
  font-weight: 600;
  display: block;
  margin-bottom: 24px;
  transform: all 0.3s;
}
.mask .header_menu_item a:hover {
  opacity: 0.6;
}

.open.mask {
  opacity: 1;
  z-index: 500;
  right: 0;
}

.toggle_btn {
  width: 36px;
  height: 36px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}
.toggle_btn:hover {
  opacity: 0.7;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  height: 4px;
  background-color: #103773;
  border-radius: 1000px;
  transition: all 0.5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
  width: 100%;
}
.toggle_btn span:nth-child(2) {
  top: 16px;
  width: 100%;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
  width: 100%;
}

.open .toggle_btn span {
  transition: all 0.5s;
}
.open .toggle_btn span:nth-child(1) {
  top: 18px;
  transform: rotate(45deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  bottom: 14px;
  transform: rotate(-45deg);
}

/*--------------- fv ---------------*/
.fv {
  margin-top: 90px;
  position: relative;
  height: 50vw;
  background-image: url(../img/fv_bg.webp);
  background-size: cover;
}
@media screen and (max-width: 1200px) {
  .fv {
    height: 80vw;
  }
}
@media screen and (max-width: 600px) {
  .fv {
    height: 156vw;
    margin-top: 70px;
    background-image: url(../img/fv_bg_sp.webp);
    background-size: 100% 100%;
  }
}
@media screen and (max-width: 375px) {
  .fv {
    margin-top: 65px;
  }
}

.fv_img {
  height: 50vw;
  width: 61.7vw;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 1200px) {
  .fv_img {
    height: 80vw;
    width: 80vw;
  }
}
@media screen and (max-width: 800px) {
  .fv_img {
    width: 40vw;
  }
}
@media screen and (max-width: 600px) {
  .fv_img {
    height: 100%;
    width: 73vw;
  }
}

.fv_img .src1 {
  background-image: url(../img/fv_img1.webp);
}
@media screen and (max-width: 800px) {
  .fv_img .src1 {
    background-image: url(../img/fv_img_sp1.webp);
  }
}
.fv_img .src2 {
  background-image: url(../img/fv_img2.webp);
}
@media screen and (max-width: 800px) {
  .fv_img .src2 {
    background-image: url(../img/fv_img_sp2.webp);
  }
}
.fv_img .src3 {
  background-image: url(../img/fv_img3.webp);
}
@media screen and (max-width: 800px) {
  .fv_img .src3 {
    background-image: url(../img/fv_img_sp3.webp);
  }
}
.fv_img .image:nth-of-type(1) {
  animation-delay: 0s;
}
.fv_img .image:nth-of-type(2) {
  animation-delay: 5s;
}
.fv_img .image:nth-of-type(3) {
  animation-delay: 10s;
}

.image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-size: cover;
  background-position: left center;
  animation: image-switch-animation 15s infinite;
}

@keyframes image-switch-animation {
  0%, 100% {
    opacity: 0;
  }
  5%, 35% {
    opacity: 1;
  }
  40%, 100% {
    opacity: 0;
  }
}
.fv_top {
  background: linear-gradient(transparent 60%, #D0E5F4 60%);
  font-size: max(2.4vw, 24px);
  font-weight: 600;
  display: block;
  width: max(36.8vw, 368px);
  margin: 0 auto max(2vw, 20px);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #444;
  animation: typing 1s steps(15), typingEffect 0.2s step-end infinite alternate;
}
@media screen and (max-width: 600px) {
  .fv_top {
    font-size: 20px;
    width: 318px;
  }
}
@media screen and (max-width: 375px) {
  .fv_top {
    font-size: 18px;
    width: 280px;
  }
}

@keyframes typing {
  from {
    width: 0;
  }
}
@keyframes typingEffect {
  50% {
    border-color: transparent;
  }
}
.fv_main {
  position: absolute;
  width: max(42vw, 420px);
  top: 50%;
  left: max(2vw, 20px);
  transform: translateY(-50%);
  z-index: 5;
}
@media screen and (max-width: 600px) {
  .fv_main {
    width: 100%;
    transform: none;
    background-color: rgba(255, 255, 255, 0.46);
    bottom: 0;
    top: auto;
    left: 0;
    padding: 16px 0;
  }
}

.fv_logo {
  width: max(37.5vw, 375px);
  margin: 0 auto max(2vw, 20px);
}
@media screen and (max-width: 600px) {
  .fv_logo {
    width: 90%;
    margin: 0 auto 16px;
  }
}

.fv_list {
  width: 100%;
}
@media screen and (max-width: 600px) {
  .fv_list {
    width: 70%;
    margin: 0 auto;
  }
}

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

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

/*--------------- guide ---------------*/
.guide .section_top {
  margin: 0 auto 40px;
}
@media screen and (max-width: 600px) {
  .guide .section_top {
    margin: 0 auto 24px;
  }
}

.guide_item {
  display: grid;
  grid-template-columns: 25vw 1fr;
  align-items: center;
  gap: max(2vw, 20px);
}
@media screen and (max-width: 1000px) {
  .guide_item {
    grid-template-columns: 1fr;
  }
}
.guide_item:first-child {
  margin-bottom: 80px;
}
@media screen and (max-width: 600px) {
  .guide_item:first-child {
    margin-bottom: 40px;
  }
}
.guide_item:nth-child(2) {
  grid-template-columns: 1fr 25vw;
}
@media screen and (max-width: 1000px) {
  .guide_item:nth-child(2) {
    grid-template-columns: 1fr;
  }
}
.guide_item:nth-child(2) img {
  order: 2;
}
@media screen and (max-width: 1000px) {
  .guide_item:nth-child(2) img {
    order: -2;
  }
}
@media screen and (max-width: 1000px) {
  .guide_item img {
    max-width: 380px;
    margin: 0 auto;
  }
}

.guide_item_ttl {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 12px;
  margin-bottom: max(1.2vw, 12px);
}

/*--------------- point ---------------*/
.point .section_heading_main {
  display: flex;
  align-items: center;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .point .section_heading_main {
    flex-direction: column;
  }
}
.point .section_heading_main span {
  color: #333;
}
.point .section_heading_main img {
  width: max(19.8vw, 198px);
}
.point .section_heading_main div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.point_item {
  background-color: #fff;
  display: grid;
  grid-template-columns: 22vw 1fr;
  gap: max(2vw, 20px);
  align-items: center;
  width: calc(100% - 6vw);
  min-height: max(21vw, 200px);
  position: relative;
}
@media screen and (max-width: 1000px) {
  .point_item {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    background-color: unset;
  }
}
.point_item:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .point_item:not(:last-child) {
    margin-bottom: 24px;
  }
}
.point_item::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 30vw;
  bottom: 0;
  right: 0;
  background-color: rgba(246, 247, 247, 0.5);
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
          clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .point_item::after {
    display: none;
  }
}

.point_item_img {
  position: relative;
  height: 100%;
}
.point_item_img img {
  position: absolute;
  z-index: 2;
  width: 28.2vw;
}
@media screen and (max-width: 1000px) {
  .point_item_img img {
    position: static;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }
}

.point_item:nth-child(odd) {
  margin-left: auto;
}
.point_item:nth-child(odd) img {
  top: -8px;
  left: -6vw;
}

.point_item:nth-child(even) {
  display: grid;
  grid-template-columns: 1fr 22vw;
}
@media screen and (max-width: 1000px) {
  .point_item:nth-child(even) {
    grid-template-columns: 1fr;
  }
}
.point_item:nth-child(even)::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 30vw;
  bottom: 0;
  left: 0;
  background-color: rgba(246, 247, 247, 0.5);
  -webkit-clip-path: polygon(0 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 100%, 0 100%);
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .point_item:nth-child(even)::after {
    display: none;
  }
}
.point_item:nth-child(even) .point_item_img {
  order: 2;
}
@media screen and (max-width: 1000px) {
  .point_item:nth-child(even) .point_item_img {
    order: -2;
  }
}
.point_item:nth-child(even) img {
  top: -8px;
  right: -6vw;
}

.point_item_ttl {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 12px;
  margin-bottom: max(1.2vw, 12px);
}

.point_item_txt {
  padding: 0 max(1.4vw, 16px);
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 1000px) {
  .point_item_txt {
    padding: 16px 20px;
    background-color: #fff;
  }
}
@media screen and (max-width: 600px) {
  .point_item_txt {
    padding: 16px 12px;
  }
}

p {
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
}

/*--------------- menu ---------------*/
.menu_top {
  width: 46vw;
  margin: 0 auto 40px;
  font-size: max(1.2vw, 16px);
  line-height: 1.6;
}
@media screen and (max-width: 1000px) {
  .menu_top {
    width: 80vw;
  }
}
@media screen and (max-width: 600px) {
  .menu_top {
    width: 100%;
    margin: 0 auto 24px;
  }
}

.menu_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}

.menu_item {
  width: calc((100% - 40px) / 3);
  border: 2px solid #103773;
  height: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  height: auto;
}
.menu_item a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1400px) {
  .menu_item {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 800px) {
  .menu_item {
    width: 100%;
  }
}

.menu_item_txt {
  padding: 12px;
}

.menu_item_ttl {
  width: 100%;
  padding: 6px;
  background-color: #0F3773;
  -webkit-clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
          clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  display: block;
  margin-bottom: 8px;
}
.menu_item_ttl h3 {
  color: #fff;
  font-size: max(1.2vw, 18px);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.menu_item_tag {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

.menu_item_tag li {
  font-size: max(0.8vw, 14px);
  color: #fff;
  padding: 6px 8px;
  background-color: #0F3773;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
}

.menu_item_des {
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
}

/*--------------- service ---------------*/
.service .section_heading_main {
  display: flex;
  align-items: center;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .service .section_heading_main {
    flex-direction: column;
  }
}
.service .section_heading_main span {
  color: #333;
}
.service .section_heading_main img {
  width: max(19.8vw, 198px);
}

@media screen and (max-width: 1000px) {
  .service_item img {
    max-width: 380px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .service_item .section_top {
    width: 100%;
  }
}

.service_item:first-child {
  margin-bottom: 40px;
}

.service_item:nth-child(even) .service_item_inner {
  grid-template-columns: 1fr 25vw;
}
@media screen and (max-width: 1000px) {
  .service_item:nth-child(even) .service_item_inner {
    grid-template-columns: 1fr;
  }
}
.service_item:nth-child(even) .service_item_inner img {
  order: 2;
}
@media screen and (max-width: 1000px) {
  .service_item:nth-child(even) .service_item_inner img {
    order: -2;
  }
}

.service_item_inner {
  display: grid;
  grid-template-columns: 25vw 1fr;
  gap: max(2vw, 20px);
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .service_item_inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.service_item_ttl {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 12px;
  margin-bottom: max(1.2vw, 12px);
}

/*--------------- teacher ---------------*/
.teacher_item {
  display: grid;
  grid-template-columns: 25vw 1fr;
  gap: max(2vw, 20px);
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .teacher_item {
    grid-template-columns: 1fr;
  }
}
.teacher_item:nth-child(1) {
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .teacher_item:nth-child(1) {
    margin-bottom: 24px;
  }
}
.teacher_item .section_top {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .teacher_item img {
    max-width: 380px;
    margin: 0 auto;
  }
}

/*--------------- case ---------------*/
.case .section_heading {
  margin-bottom: 60px;
}
@media screen and (max-width: 800px) {
  .case .section_heading {
    margin-bottom: 40px;
  }
}

.case_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 12px;
  row-gap: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 800px) {
  .case_list {
    row-gap: 40px;
    margin-bottom: 40px;
  }
}

.case_item {
  width: calc((100% - 24px) / 3);
  border: 1px solid #707070;
  height: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  height: auto;
  position: relative;
}
.case_item:hover {
	opacity: 0.6;
}

@media screen and (max-width: 1400px) {
  .case_item {
    width: calc((100% - 12px) / 2);
  }
}
@media screen and (max-width: 800px) {
  .case_item {
    width: 100%;
  }
}

.case_item_num {
  position: absolute;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 12px;
  top: -24px;
  font-size: max(1.8vw, 24px);
  color: #0F3773;
  font-weight: 600;
}
@media screen and (max-width: 600px) {
  .case_item_num {
    font-size: 20px;
    gap: 8px;
    top: -16px;
  }
}

.case_item_num .ttl_line {
  width: max(1.4vw, 22px);
  height: max(2.4vw, 40px);
  -webkit-clip-path: polygon(0.8vw 0, 100% 0, calc(100% - 0.8vw) 100%, 0 100%);
          clip-path: polygon(0.8vw 0, 100% 0, calc(100% - 0.8vw) 100%, 0 100%);
}
@media screen and (max-width: 1000px) {
  .case_item_num .ttl_line {
    -webkit-clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
            clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  }
}
@media screen and (max-width: 600px) {
  .case_item_num .ttl_line {
    height: 32px;
    width: 16px;
  }
}

.casee_item_top {
  background-color: #103773;
  padding: 12px;
  color: #fff;
  font-weight: 600;
}
.casee_item_top span {
  font-size: max(0.8vw, 14px);
  display: block;
  line-height: 1.6;
}
.casee_item_top h3 {
  font-size: max(1.2vw, 20px);
  color: #fff;
  margin-top: 4px;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .casee_item_top h3 {
    margin: 4px 0 8px;
    font-size: 18px;
  }
}

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

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

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

.case_item_des {
  padding: 16px;
  background-color: #fff;
}

.case_btn {
  width: max(22.5vw, 285px);
  margin: 0 auto;
  padding: 12px;
  border: 2px solid #103773;
  border-radius: 100px;
  display: block;
  background-color: #fff;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  transition: color 0.6s ease-in-out;
  z-index: 1;
  position: relative;
}

.case_btn_txt {
  font-size: 21px;
  font-weight: 600;
  color: #103773;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  transition: color 0.6s ease-in-out;
}
@media screen and (max-width: 600px) {
  .case_btn_txt {
    font-size: 18px;
  }
}

.case_btn::before {
  content: "";
  z-index: -1;
  position: absolute;
  bottom: 100%;
  right: 100%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #103773;
  transform-origin: left center;
  transform: translate3d(0, 50%, 0) scale3d(0, 0, 0);
  transition: transform 1s ease-in-out;
}
.case_btn:hover {
  cursor: pointer;
  color: #fff;
}
.case_btn:hover .case_btn_txt {
  color: #fff;
}
.case_btn:hover::before {
  transform: translate3d(0, 50%, 0) scale3d(15, 15, 15);
  transition: transform 1.5s ease-in-out;
}

/*--------------- flow ---------------*/
.flow_item {
  border: 2px solid #103773;
  display: flex;
  align-items: center;
  gap: max(2.4vw, 24px);
  padding-left: 5vw;
  padding-right: 24px;
  background-color: #fff;
}
@media screen and (max-width: 800px) {
  .flow_item {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 0;
  }
}
.flow_item:not(:last-child) {
  margin-bottom: 16px;
}

.flow_item img {
  width: max(16.7vw, 200px);
}
@media screen and (max-width: 800px) {
  .flow_item img {
    margin: 0 auto;
  }
}

.flow_item_ttl {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 12px;
  margin-bottom: max(1.2vw, 12px);
}

/*--------------- qa ---------------*/
.qa_item {
  border: 2px solid #103773;
}
.qa_item:not(:last-child) {
  margin-bottom: 24px;
}
@media screen and (max-width: 600px) {
  .qa_item:not(:last-child) {
    margin-bottom: 16px;
  }
}

.qa_item_q {
  display: grid;
  grid-template-columns: max(3.2vw, 36px) 1fr;
  align-items: center;
  gap: 12px;
  color: #fff;
  padding: 8px 40px;
  background-color: #0F3773;
  font-weight: 600;
}
@media screen and (max-width: 600px) {
  .qa_item_q {
    padding: 8px 12px;
    gap: 8px;
  }
}
.qa_item_q .qa_item_icon {
  background-color: #fff;
  color: #103773;
}

.qa_item_a {
  display: grid;
  grid-template-columns: max(3.2vw, 36px) 1fr;
  gap: 12px;
  padding: 8px 40px;
  background-color: #fff;
}
@media screen and (max-width: 600px) {
  .qa_item_a {
    padding: 8px 12px;
    gap: 8px;
  }
}
.qa_item_a .qa_item_icon {
  background-color: #103773;
  color: #fff;
}

.qa_item_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: max(1.25vw, 18px);
  width: max(3.2vw, 36px);
  height: max(3.2vw, 36px);
  border-radius: 100%;
  padding-bottom: 0.2vw;
}
@media screen and (max-width: 600px) {
  .qa_item_icon {
    padding-bottom: 1px;
  }
}

/*--------------- contact ---------------*/
@media screen and (max-width: 600px) {
  .contact .wrap {
    padding: 40px 0 80px;
  }
}

p.contact_top {
  width: 46vw;
  margin: 0 auto 40px;
  font-size: max(1.2vw, 16px);
  line-height: 1.6;
}
@media screen and (max-width: 1000px) {
  p.contact_top {
    width: 80vw;
  }
}
@media screen and (max-width: 600px) {
  p.contact_top {
    width: 100%;
    margin: 0 auto 16px;
  }
}

span.contact_top {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
  color: #F80849;
}
@media screen and (max-width: 600px) {
  span.contact_top {
    margin: 0 auto 16px;
  }
}

.contact_list {
  margin-bottom: 40px;
}

.contact_item:not(:last-child) {
  margin-bottom: 24px;
}
@media screen and (max-width: 600px) {
  .contact_item:not(:last-child) {
    margin-bottom: 16px;
  }
}

h3.contact_item_ttl {
  font-size: max(1.2vw, 18px);
  margin-bottom: 8px;
}
@media screen and (max-width: 600px) {
  h3.contact_item_ttl {
    font-size: 16px;
  }
}
h3.contact_item_ttl span {
  color: #F80849;
}

.contact_item_input input,
.contact_item_input textarea {
  border: 1px solid #103773;
  background-color: #fff;
  padding: 12px;
  font-size: 16px;
  width: 100%;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
}

.contact_item_radio {
  color: #0F3773;
  font-size: max(1.25vw, 18px);
  font-weight: 600;
}
.contact_item_radio .wpcf7-radio {
  display: flex;
  align-items: center;
  gap: 32px;
  row-gap: 8px;
  flex-wrap: wrap;
  padding-left: 16px;
}
.contact_item_radio .wpcf7-list-item {
  margin: 0 !important;
}
.contact_item_radio label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact_item_radio input {
  transform: scale(1.6);
  border: 1px solid #103773 !important;
}

.contact_item_select {
  color: #0F3773;
  font-size: max(1.25vw, 18px);
  font-weight: 600;
}
.contact_item_select .wpcf7-checkbox {
  display: flex;
  align-items: center;
  gap: 32px;
  row-gap: 8px;
  flex-wrap: wrap;
  max-width: 600px;
  padding-left: 16px;
}
.contact_item_select .wpcf7-list-item {
  margin: 0 !important;
}
.contact_item_select label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact_item_select input {
  transform: scale(1.6);
  border: 1px solid #103773 !important;
}

.contact_btn {
  display: block;
  font-size: max(1.25vw, 20px);
  color: #fff;
  padding: 16px 60px;
  background-color: #0F3773;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-weight: 600;
  transition: all 0.3s;
}
@media screen and (max-width: 600px) {
  .contact_btn {
    font-size: 18px;
    padding: 16px 40px;
  }
}
.contact_btn:hover {
  opacity: 0.6;
}

/*--------------- cta ---------------*/
.cta {
  background-image: url(../img/cta_bg.webp);
  background-size: cover;
}

.cta .section_heading .section_top {
  background-color: #fff;
  color: #103773;
}
.cta .section_heading .section_heading_main {
  color: #fff;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .cta .section_heading .section_heading_main {
    font-size: 20px;
  }
}

.cta_btn {
  width: 100%;
}

.cta_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - 40px) / 2);
  height: max(5.2vw, 60px);
  border-radius: 100px;
  overflow: hidden;
  transition: color 0.6s ease-in-out;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 800px) {
  .cta_btn a {
    width: 300px;
  }
}
@media screen and (max-width: 600px) {
  .cta_btn a {
    max-width: 300px;
    width: 100%;
  }
}

.cta_btn_form {
  margin: 0 auto;
  background-color: #FFFFFF;
  border: 2px solid #103773;
}
.cta_btn_form::before {
  content: "";
  z-index: -1;
  position: absolute;
  bottom: 100%;
  right: 100%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #103773;
  transform-origin: left center;
  transform: translate3d(0, 50%, 0) scale3d(0, 0, 0);
  transition: transform 1s ease-in-out;
}
.cta_btn_form:hover {
  cursor: pointer;
  color: #fff;
}
.cta_btn_form:hover .cta_btn_txt {
  color: #fff;
}
.cta_btn_form:hover::before {
  transform: translate3d(0, 50%, 0) scale3d(15, 15, 15);
  transition: transform 1.5s ease-in-out;
}

.cta_btn_form .cta_btn_txt {
  font-size: max(2vw, 20px);
  font-weight: 700;
  color: #103773;
  transition: color 0.6s ease-in-out;
}
.cta_btn_form .cta_btn_txt span {
  font-size: max(2.4vw, 24px);
}

.cta_btn_tel {
  background-color: #D0E5F4;
  border: 2px solid #fff;
}
.cta_btn_tel .cta_btn_txt {
  font-size: max(2.4vw, 24px);
  color: #103773;
  padding-left: max(3.2vw, 32px);
  position: relative;
  font-weight: 700;
}
.cta_btn_tel .cta_btn_note {
  color: #103773;
  font-size: 12px;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0 auto;
  transition: all 0.8s ease-in-out;
}
.cta_btn_tel .cta_btn_txt::after {
  content: "";
  position: absolute;
  width: max(2.8vw, 28px);
  height: max(2.8vw, 28px);
  background-image: url(../img/tel_icon.webp);
  background-size: 100% 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: all 0.8s ease-in-out;
}
.cta_btn_tel::before {
  content: "";
  z-index: -1;
  position: absolute;
  bottom: 100%;
  right: 100%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #103773;
  transform-origin: left center;
  transform: translate3d(0, 50%, 0) scale3d(0, 0, 0);
  transition: transform 1s ease-in-out;
}
.cta_btn_tel:hover {
  cursor: pointer;
  color: #D0E5F4;
}
.cta_btn_tel:hover .cta_btn_txt {
  color: #D0E5F4;
}
.cta_btn_tel:hover .cta_btn_txt::after {
  background-image: url(../img/tel_icon_hover.webp);
  transition: all 0.8s ease-in-out;
}
.cta_btn_tel:hover .cta_btn_note {
  color: #D0E5F4;
}
.cta_btn_tel:hover::before {
  transform: translate3d(0, 50%, 0) scale3d(15, 15, 15);
  transition: transform 1.5s ease-in-out;
}

.cta_btn_mail {
  background-color: #103773;
  border: 2px solid #fff;
}
.cta_btn_mail .cta_btn_txt {
  font-size: max(2.4vw, 24px);
  color: #fff;
  padding-left: max(3.2vw, 32px);
  position: relative;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .cta_btn_mail .cta_btn_txt {
    font-size: 22px;
  }
}
.cta_btn_mail .cta_btn_txt span {
  font-size: max(2vw, 20px);
}
@media screen and (max-width: 600px) {
  .cta_btn_mail .cta_btn_txt span {
    font-size: 18px;
  }
}
.cta_btn_mail .cta_btn_txt::after {
  content: "";
  position: absolute;
  width: max(2.8vw, 28px);
  height: max(2vw, 20px);
  background-image: url(../img/mail_icon.webp);
  background-size: 100% 100%;
  top: 54%;
  left: 0;
  transform: translateY(-50%);
  transition: all 0.8s ease-in-out;
}
.cta_btn_mail::before {
  content: "";
  z-index: -1;
  position: absolute;
  bottom: 100%;
  right: 100%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  transform-origin: left center;
  transform: translate3d(0, 50%, 0) scale3d(0, 0, 0);
  transition: transform 1s ease-in-out;
}
.cta_btn_mail:hover {
  cursor: pointer;
  color: #103773;
}
.cta_btn_mail:hover .cta_btn_txt {
  color: #103773;
}
.cta_btn_mail:hover .cta_btn_txt::after {
  background-image: url(../img/mail_icon_hover.webp);
  transition: all 0.8s ease-in-out;
}
.cta_btn_mail:hover::before {
  transform: translate3d(0, 50%, 0) scale3d(15, 15, 15);
  transition: transform 1.5s ease-in-out;
}

.cta_btn_txt {
  transition: color 0.6s ease-in-out;
}

.cta_btn_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}
@media screen and (max-width: 1000px) {
  .cta_btn_bottom {
    margin-top: 20px;
    flex-direction: column;
    gap: 20px;
  }
}

.animoBubble3 {
  display: inline-block;
  z-index: 1;
  position: relative;
  font-size: inherit;
  font-family: inherit;
  color: #fff;
  padding: 0.5em 1em;
  outline: 0;
  border: none;
  background-color: #f39c12;
  overflow: hidden;
  transition: color 0.4s ease-in-out;
}

.animoBubble3::before {
  content: "";
  z-index: -1;
  position: absolute;
  bottom: 100%;
  right: 100%;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background-color: #2c3e50;
  transform-origin: center;
  transform: translate3d(50%, 50%, 0) scale3d(0, 0, 0);
  transition: transform 0.45s ease-in-out;
}

.animoBubble3:hover {
  cursor: pointer;
  color: #fff;
}

.animoBubble3:hover::before {
  transform: translate3d(50%, 50%, 0) scale3d(15, 15, 15);
}

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