@charset "UTF-8";
/***  color ***/
/***  border ***/
/*** font ***/
/*** sp size ***/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.06);
}

.header {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .headerLayout {
  max-width: 1640px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.header .headerLayout .logo {
  max-width: 10%;
}
.header .headerLayout .menuIcon {
  display: none;
}
.header .headerLayout .headerMenu {
  margin: 0 30px;
}
.header .headerLayout .headerMenu ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header .headerLayout .headerMenu ul li {
  text-align: center;
  list-style: none;
}
.header .headerLayout .headerBtnBox {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header .headerLayout .headerBtnBox .snsLink a {
  display: inline-block;
  margin-right: 15px;
}
.header .headerLayout .headerBtnBox .consultationBtn, .header .headerLayout .headerBtnBox .contactBtn {
  border-radius: 1000px;
}
.header .headerLayout .headerBtnBox .consultationBtn a, .header .headerLayout .headerBtnBox .contactBtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.header .headerLayout .headerBtnBox .consultationBtn {
  background-color: #E67745;
}
.header .headerLayout .headerBtnBox .contactBtn {
  background-color: #0771B1;
}
@media screen and (max-width: 1375px) {
  .header .headerLayout .headerMenu {
    margin: 0 15px;
  }
  .header .headerLayout .headerMenu ul {
    gap: 15px;
  }
  .header .headerLayout .headerMenu ul li {
    font-size: 14px;
  }
}
@media screen and (max-width: 1275px) {
  .header .headerLayout {
    max-width: 100%;
    position: relative;
  }
  .header .headerLayout .logo {
    max-width: 150px;
  }
  .header .headerLayout a {
    display: flex;
    align-items: center;
  }
  .header .headerLayout a img {
    width: 100%;
  }
  .header .headerLayout .headerMenu, .header .headerLayout .headerBtnBox {
    display: none;
  }
  .header .headerLayout .menuIcon {
    display: flex;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 3000;
  }
  .header .headerLayout .menuIcon span {
    width: 100%;
    height: 2px;
    background: #222;
    transition: 0.3s ease;
  }
  .header .headerLayout .menuIcon.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  .header .headerLayout .menuIcon.active span:nth-child(2) {
    opacity: 0;
  }
  .header .headerLayout .menuIcon.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
  .header .headerLayout .headerMenu {
    margin: 0;
    padding: 10.67vw 20px 40px;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    flex-direction: column;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    display: flex;
  }
  .header .headerLayout .headerMenu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .header .headerLayout .headerMenu ul li {
    padding: 25px 0;
    position: relative;
    display: flex;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }
  .header .headerLayout .headerMenu ul li::before {
    content: "";
    flex-shrink: 0;
    display: block;
    position: absolute;
    top: 38%;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    margin-bottom: 0;
    background: url("../img/icon_arrow.svg") no-repeat center;
    background-size: 100% 100%;
  }
  .header .headerLayout .headerMenu ul li a {
    font-weight: 700;
  }
  .header .headerLayout .headerMenu .headerBtnBox {
    margin-top: 40px;
    align-items: center;
  }
  .header .headerLayout .headerMenu .headerBtnBox .consultationBtn {
    margin-bottom: 20px;
  }
  .header .headerLayout .headerMenu .snsLink {
    margin-top: 40px;
    text-align: center;
  }
  .header .headerLayout .headerMenu .snsLink a {
    justify-content: center;
  }
  .header .headerLayout .headerMenu .snsLink img {
    max-width: 40px;
    height: auto;
  }
  .header .headerLayout #globalMenu.active {
    transform: translateX(0);
  }
  .header .headerLayout #globalMenu.active + .headerBtnBox {
    transform: translateX(0);
  }
}
@media screen and (max-width: 750px) {
  .header .headerLayout .headerMenu {
    padding: 16vw 20px 40px;
  }
  .header .headerLayout .headerMenu .headerBtnBox .consultationBtn a, .header .headerLayout .headerMenu .headerBtnBox .contactBtn a {
    padding: 5.33vw 0;
    font-size: 5.33vw;
  }
}

.sideBtnBox {
  position: fixed;
  top: 20%;
  right: 0;
  z-index: 100;
}
.sideBtnBox ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sideBtnBox ul li div {
  padding: 20px 10px;
  writing-mode: vertical-rl;
}
.sideBtnBox ul li div a {
  color: #fff;
  text-align: center;
}
.sideBtnBox ul li .consultationBtn {
  background-color: #E67745;
}
.sideBtnBox ul li .contactBtn {
  background-color: #0771B1;
}
@media screen and (max-width: 750px) {
  .sideBtnBox {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
  }
  .sideBtnBox ul {
    flex-direction: row;
    gap: 0;
    width: 100%;
  }
  .sideBtnBox ul li {
    width: 50%;
    text-align: center;
  }
  .sideBtnBox ul li div {
    width: 100%;
    padding: 20px 10px;
    writing-mode: horizontal-tb;
  }
  .sideBtnBox ul li div a {
    font-size: 3.73vw;
  }
}

.mv {
  margin-top: 80px;
  height: 816px;
  width: 100%;
  background: url("../img/mv.png") no-repeat center center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}
.mv .mvLayout {
  width: 100%;
}
.mv .mvLayout .txtBox {
  padding-top: 80px;
  text-align: center;
  color: #fff;
  text-shadow: 0px 0px 15px rgb(0, 72, 116);
}
.mv .mvLayout .txtBox h1 {
  padding-bottom: 40px;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
}
.mv .mvLayout .txtBox p {
  padding-bottom: 60px;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 700;
}
.mv .mvLayout .txtBox .mvDeco {
  position: absolute;
  bottom: 0;
  left: 0;
  width: clamp(555px, 58vw, 955px);
  height: auto;
  z-index: 3;
}
.mv .mvLayout .txtBox .mvPoint {
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 40%;
  z-index: 4;
}
.mv .mvLayout .txtBox .mvPoint img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 750px) {
  .mv {
    margin-top: 60px;
    height: auto;
    background: url("../img/mv_sp.png") no-repeat center center;
    background-size: contain;
    position: relative;
  }
  .mv .mvLayout .txtBox {
    padding: 50% 2%;
    text-align: left;
  }
  .mv .mvLayout .txtBox h1 {
    padding-bottom: 8vw;
    font-size: 8vw;
  }
  .mv .mvLayout .txtBox p {
    padding-bottom: 0;
    font-size: 3.47vw;
  }
  .mv .mvLayout .txtBox .mvPoint {
    max-width: 30%;
    gap: 2.67vw;
    position: absolute;
    left: 50%;
    bottom: -17%;
    transform: translate(-50%, -50%);
  }
}

.about {
  padding: 20px 0 100px;
}
.about .txtBox {
  padding-bottom: 100px;
}
.about .txtBox h3 {
  padding-bottom: 30px;
}
.about .txtBox p {
  text-align: center;
}
.about .aboutWrap {
  display: flex;
  gap: 30px;
}
.about .aboutWrap .aboutBox {
  padding: 40px 30px;
  width: calc((100% - 60px) / 3);
  position: relative;
  background-color: #F8F8F8;
}
.about .aboutWrap .aboutBox .pointBox {
  max-width: 280px;
  width: 100%;
  padding: 5px 30px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 1000px;
  background-color: #E67745;
  color: #fff;
}
.about .aboutWrap .aboutBox .pointBox p {
  font-size: 30px;
  font-weight: 700;
}
.about .aboutWrap .aboutBox .pointBox p span {
  padding-right: 15px;
  font-family: "Playwrite NL", "Times New Roman", Times, cursive;
  font-weight: 400;
}
.about .aboutWrap .aboutBox .titleBox .imgBox {
  margin: 0 auto;
  padding: 25px 0;
}
.about .aboutWrap .aboutBox p {
  margin: 0 auto;
}
@media screen and (max-width: 920px) {
  .about .aboutWrap {
    flex-direction: column;
    gap: 60px;
  }
  .about .aboutWrap .aboutBox {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .about {
    padding: 21.33vw 0 13.33vw;
  }
  .about .txtBox {
    padding-bottom: 9.33vw;
  }
  .about .txtBox h3 {
    padding-bottom: 5.33vw;
  }
  .about .txtBox p {
    text-align: left;
  }
  .about .aboutWrap {
    gap: 8vw;
  }
  .about .aboutWrap .aboutBox {
    padding: 8vw 5.33vw;
  }
  .about .aboutWrap .aboutBox .pointBox {
    max-width: 50%;
    padding: 5px 0;
  }
  .about .aboutWrap .aboutBox .pointBox p {
    font-size: 4.8vw;
  }
  .about .aboutWrap .aboutBox .pointBox p span {
    font-size: 3.73vw;
    padding-right: 2.67vw;
  }
  .about .aboutWrap .aboutBox .titleBox {
    margin-bottom: 5.33vw;
    display: flex;
    flex-direction: row-reverse;
    gap: 2.67vw;
  }
  .about .aboutWrap .aboutBox .titleBox h3 {
    text-align: left;
  }
  .about .aboutWrap .aboutBox .titleBox .imgBox {
    margin: 0;
    padding: 0;
  }
}

.studyAbroad {
  padding: 100px 0;
  background-color: #F8F8F8;
}
.studyAbroad .study .studyBox {
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border: #ddd 10px solid;
}
.studyAbroad .study .studyBox .txtBox {
  position: relative;
}
.studyAbroad .study .studyBox .txtBox .studyTitle {
  margin-top: 20px;
  padding: 20px;
  width: 330px;
  position: absolute;
  top: 35px;
  left: 135px;
  transform: translate(-50%, -50%);
  color: #fff;
  border-radius: 0 1000px 1000px 0;
  background-color: #E67745;
}
.studyAbroad .study .studyBox .txtBox .studyTitle::before {
  content: "";
  display: block;
  position: absolute;
  top: -80px;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  background: url("../img/icon_ triangle_img01.svg") no-repeat center;
  background-size: 100% 100%;
}
.studyAbroad .study .studyBox .txtBox .studyTxt {
  max-width: 1000px;
  padding: 30px 30px 40px;
}
.studyAbroad .study .studyBox .txtBox .txt {
  padding-top: 90px;
}
.studyAbroad .study .studyBox .txtBox .point {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
}
.studyAbroad .study .studyBox .txtBox .point .pointBox {
  max-width: 310px;
  width: 100%;
}
.studyAbroad .study .studyBox .txtBox .point .pointBox .titleBox {
  padding-bottom: 20px;
  display: flex;
  justify-items: center;
  align-items: center;
}
.studyAbroad .study .studyBox .txtBox .point .pointBox .titleBox span {
  padding-right: 15px;
  font-family: "Playwrite NL", "Times New Roman", Times, cursive;
  font-weight: 400;
  color: #E67745;
}
.studyAbroad .study .studyBox .txtBox .point .pointBox .titleBox p {
  font-size: 20px;
  font-weight: 700;
}
.studyAbroad .study .studyBox .txtBox .solid {
  width: 2px;
  display: block;
  margin: 0 20px;
  background-color: #ddd;
}
.studyAbroad .study .studyBox:nth-child(2) {
  margin-top: 20px;
}
.studyAbroad .study .studyBox:nth-child(2) .studyTitle {
  background-color: #0771B1;
}
.studyAbroad .study .studyBox:nth-child(2) .studyTitle::before {
  background: url("../img/icon_ triangle_img02.svg") no-repeat center;
}
.studyAbroad .study .studyBox:nth-child(2) .studyTxt {
  max-width: 100%;
}
.studyAbroad .target {
  margin-top: 50px;
  display: flex;
  align-items: stretch;
  gap: 40px;
}
.studyAbroad .target .targetBox {
  width: calc((100% - 40px) / 2);
  display: flex;
  flex-direction: column;
}
.studyAbroad .target .targetBox h3 {
  padding-bottom: 20px;
  text-align: left;
}
.studyAbroad .target .targetBox .targetWrap {
  padding: 30px 30px 20px;
  flex: 1;
  position: relative;
  border: #ddd 10px solid;
  background-color: #fff;
}
.studyAbroad .target .targetBox .targetWrap .targetList li {
  padding: 0 0 15px 40px;
  position: relative;
  display: flex;
  font-weight: 700;
}
.studyAbroad .target .targetBox .targetWrap .targetList li::before {
  content: "";
  flex-shrink: 0;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 24px;
  margin-bottom: 15px;
  background: url("../img/icon_check_orange.svg") no-repeat center;
  background-size: 100% 100%;
}
.studyAbroad .target .targetBox .targetWrap .imgBox {
  position: absolute;
  right: 10px;
  bottom: 0;
}
.studyAbroad .target .targetBox:nth-child(2) .targetList li::before {
  background: url("../img/icon_check_gray.svg") no-repeat center;
}
.studyAbroad .reason h3 {
  padding-bottom: 30px;
}
.studyAbroad .reason .reasonWrap {
  display: flex;
  gap: 20px;
}
.studyAbroad .reason .reasonWrap .reasonBox {
  width: calc((100% - 60px) / 4);
  background-color: #fff;
}
.studyAbroad .reason .reasonWrap .reasonBox h4 {
  padding: 15px;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: #0771B1;
}
.studyAbroad .reason .reasonWrap .reasonBox .titleBox .title {
  padding: 20px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.studyAbroad .reason .reasonWrap .reasonBox .txtBox {
  padding: 0 20px 30px;
}
.studyAbroad .reason .reasonWrap .reasonBox .txtBox .note {
  padding-top: 10px;
  font-size: 14px;
}
.studyAbroad .flow .flowBox {
  display: flex;
  justify-content: center;
}
.studyAbroad .flow .flowBox .flowList {
  display: flex;
  justify-content: center;
  gap: 100px;
}
.studyAbroad .flow .flowBox .flowList li {
  width: calc((100% - 400px) / 5);
}
.studyAbroad .flow .flowBox .flowList li:last-child .imgBox::after {
  content: none;
}
.studyAbroad .flow .flowBox .flowList li .imgBox {
  position: relative;
  max-width: auto;
}
.studyAbroad .flow .flowBox .flowList li .imgBox::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 73%;
  z-index: 2;
  width: 100%;
  height: 50px;
  margin: auto;
  background: url("../img/flow_arrow.svg") no-repeat center;
  background-size: 100% 100%;
}
.studyAbroad .flow .flowBox .flowList li .imgBox img {
  width: auto;
}
.studyAbroad .flow .flowBox .flowList li .title {
  padding-top: 20px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1300px) {
  .studyAbroad .target .targetBox .targetWrap .targetList li {
    width: 55%;
  }
}
@media screen and (max-width: 920px) {
  .studyAbroad .study .studyBox {
    justify-content: center;
    flex-direction: column;
  }
  .studyAbroad .study .studyBox .txtBox .point {
    justify-content: center;
    flex-direction: column;
  }
  .studyAbroad .study .studyBox .txtBox .point .pointBox {
    max-width: 100%;
  }
  .studyAbroad .study .studyBox .txtBox .solid {
    width: 100%;
    height: 2px;
    margin: 20px 0;
  }
  .studyAbroad .study .imgBox {
    display: none;
  }
  .studyAbroad .target {
    align-items: center;
    flex-direction: column;
  }
  .studyAbroad .target .targetBox {
    width: 100%;
  }
  .studyAbroad .target .targetBox h3 {
    text-align: center;
  }
  .studyAbroad .target .targetBox .targetWrap .targetList li {
    width: 100%;
  }
  .studyAbroad .reason .reasonWrap {
    flex-direction: column;
    gap: 10px;
  }
  .studyAbroad .reason .reasonWrap .reasonBox {
    width: 100%;
  }
  .studyAbroad .reason .reasonWrap .reasonBox .titleBox {
    display: flex;
    align-items: center;
  }
  .studyAbroad .reason .reasonWrap .reasonBox .titleBox .imgBox {
    max-width: 45%;
  }
  .studyAbroad .reason .reasonWrap .reasonBox .titleBox .title {
    text-align: left;
  }
  .studyAbroad .reason .reasonWrap .reasonBox .txtBox {
    padding-top: 20px;
  }
}
@media screen and (max-width: 750px) {
  .studyAbroad {
    padding: 13.33vw 0;
  }
  .studyAbroad .study .studyBox {
    border: #ddd 1.33vw solid;
  }
  .studyAbroad .study .studyBox .txtBox .studyTitle {
    margin-top: 0;
    padding: 15px;
    width: 70%;
    top: 5%;
    left: 30%;
  }
  .studyAbroad .study .studyBox .txtBox .studyTitle::before {
    top: -110%;
  }
  .studyAbroad .study .studyBox .txtBox .studyTxt {
    padding: 24vw 5.33vw 8vw;
  }
  .studyAbroad .study .studyBox .txtBox .txt {
    padding-top: 0;
  }
  .studyAbroad .study .studyBox .txtBox .point {
    padding-top: 5.33vw;
  }
  .studyAbroad .study .studyBox .txtBox .point .pointBox .titleBox {
    padding-bottom: 4vw;
  }
  .studyAbroad .study .studyBox .txtBox .point .pointBox .titleBox span {
    padding-right: 2.67vw;
  }
  .studyAbroad .study .studyBox .txtBox .point .pointBox .titleBox p {
    font-size: 4.27vw;
  }
  .studyAbroad .study .studyBox .txtBox .solid {
    margin: 2.67vw 0;
  }
  .studyAbroad .study .studyBox:nth-child(2) {
    margin-top: 2.67vw;
  }
  .studyAbroad .study .studyBox:nth-child(2) .studyTitle {
    top: 17%;
  }
  .studyAbroad .target {
    margin-top: 6.67vw;
    gap: 5.33vw;
  }
  .studyAbroad .target .targetBox h3 {
    padding-bottom: 4vw;
  }
  .studyAbroad .target .targetBox .targetWrap {
    padding: 5.33vw 5.33vw 6.67vw;
    border: #ddd 1.33vw solid;
  }
  .studyAbroad .target .targetBox .targetWrap .targetList li {
    width: 70%;
    padding: 0 0 2.67vw 40px;
  }
  .studyAbroad .target .targetBox .targetWrap .targetList li::before {
    top: 10px;
  }
  .studyAbroad .target .targetBox .targetWrap .imgBox {
    max-width: 30%;
  }
  .studyAbroad .reason h3 {
    padding-bottom: 4vw;
  }
  .studyAbroad .reason .reasonWrap {
    gap: 2.67vw;
  }
  .studyAbroad .reason .reasonWrap .reasonBox h4 {
    padding: 2.67vw;
    font-size: 4.8vw;
  }
  .studyAbroad .reason .reasonWrap .reasonBox .titleBox {
    padding: 2.67vw 5.33vw 4vw;
  }
  .studyAbroad .reason .reasonWrap .reasonBox .titleBox .title {
    padding: 0 0 0 2.67vw;
    font-size: 4vw;
  }
  .studyAbroad .reason .reasonWrap .reasonBox .txtBox {
    padding: 0 5.33vw 5.33vw;
  }
  .studyAbroad .reason .reasonWrap .reasonBox .txtBox .note {
    padding-top: 2.67vw;
    font-size: 3.47vw;
  }
  .studyAbroad .flow .flowBox {
    flex-direction: column;
  }
  .studyAbroad .flow .flowBox .flowList {
    flex-direction: column;
    gap: 2.67vw;
  }
  .studyAbroad .flow .flowBox .flowList li {
    width: 100%;
    display: flex;
    align-items: center;
  }
  .studyAbroad .flow .flowBox .flowList li .imgBox {
    max-width: 30%;
    padding-right: 5.33vw;
  }
  .studyAbroad .flow .flowBox .flowList li .imgBox::after {
    top: 100%;
    left: 160%;
    width: 30%;
    transform: rotate(90deg);
  }
  .studyAbroad .flow .flowBox .flowList li .title {
    padding-top: 0;
    font-size: 4vw;
    text-align: left;
  }
}

.cv {
  height: 522px;
  background: url("../img/cv_img01.jpg") no-repeat center center;
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
  color: #fff;
}
.cv::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 52, 83, 0.4);
  z-index: 0;
}
.cv > * {
  position: relative;
  z-index: 1;
}
.cv .cvBox {
  padding: 90px 0;
}
.cv .cvBox .txtBox {
  padding-bottom: 50px;
}
.cv .cvBox .cvBtnBox {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.cv .cvBox .cvBtnBox .consultationBtn, .cv .cvBox .cvBtnBox .contactBtn {
  padding: 20px 0;
  width: calc((100% - 20px) / 2);
  height: 140px;
  position: relative;
  border: #fff 6px solid;
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.cv .cvBox .cvBtnBox .consultationBtn a, .cv .cvBox .cvBtnBox .contactBtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
.cv .cvBox .cvBtnBox .consultationBtn a::after, .cv .cvBox .cvBtnBox .contactBtn a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 40px;
  height: 40px;
  margin: auto;
  background: url("../img/icon_arrow_round.svg") no-repeat left center;
  background-size: 100% 100%;
}
.cv .cvBox .cvBtnBox .consultationBtn {
  background-color: #E67745;
}
.cv .cvBox .cvBtnBox .contactBtn {
  background-color: #0771B1;
}
@media screen and (max-width: 750px) {
  .cv {
    height: auto;
  }
  .cv .cvBox {
    padding: 10.67vw 0;
  }
  .cv .cvBox .txtBox {
    padding-bottom: 5.33vw;
  }
  .cv .cvBox .cvBtnBox {
    flex-direction: column;
    gap: 4vw;
  }
  .cv .cvBox .cvBtnBox .consultationBtn, .cv .cvBox .cvBtnBox .contactBtn {
    padding: 5.33vw 0;
    width: 100%;
    height: auto;
    border: #fff 3px solid;
  }
  .cv .cvBox .cvBtnBox .consultationBtn a, .cv .cvBox .cvBtnBox .contactBtn a {
    font-size: 4.8vw;
  }
  .cv .cvBox .cvBtnBox .consultationBtn a::after, .cv .cvBox .cvBtnBox .contactBtn a::after {
    width: 30px;
    height: 30px;
    right: 15px;
  }
}

.example {
  padding: 100px 0;
}
.example .txtBox {
  margin-bottom: 50px;
}
.example .txtBox .titleBox {
  padding-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.example .txtBox .titleBox h2 {
  padding-bottom: 0;
}
.example .txtBox .titleBox p {
  padding: 5px 0;
  border-top: 4px solid #0771B1;
  border-bottom: 4px solid #0771B1;
  font-size: 32px;
  font-weight: 700;
  color: #0771B1;
}
.example .txtBox .titleBox p span {
  padding-right: 5px;
  font-size: 26px;
  font-weight: 700;
}
.example .txtBox p {
  text-align: center;
}
.example .exampleWrap {
  margin: 50px 0 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.example .exampleWrap .exampleBox {
  width: calc((100% - 30px) / 2);
  padding: 40px;
  display: flex;
  flex-direction: column;
  background-color: #F8F8F8;
}
.example .exampleWrap .exampleBox .countryName {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.example .exampleWrap .exampleBox .countryName img {
  width: 60px;
}
.example .exampleWrap .exampleBox .countryName p {
  margin-left: 10px;
  font-weight: 14px;
}
.example .exampleWrap .exampleBox .titleBox {
  margin-bottom: 25px;
}
.example .exampleWrap .exampleBox .titleBox h3 {
  margin-bottom: 10px;
  text-align: left;
}
.example .exampleWrap .exampleBox .iconWrap {
  margin-bottom: 55px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.example .exampleWrap .exampleBox .iconWrap .iconBox {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.example .exampleWrap .exampleBox .iconWrap .iconBox img {
  width: 50px;
  height: 50px;
}
.example .exampleWrap .exampleBox .iconWrap .iconBox p {
  text-align: center;
  font-size: 14px;
}
.example .exampleWrap .exampleBox .coursePoints {
  padding: 20px;
  position: relative;
  background-color: #fff;
}
.example .exampleWrap .exampleBox .coursePoints .title {
  max-width: 185px;
  width: 100%;
  padding: 5px 30px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0%, -100%);
  font-size: 18px;
  color: #fff;
  text-align: center;
  border-radius: 10px 10px 0 0;
  background-color: #0771B1;
}
.example .exampleWrap .exampleBox .coursePoints ul li {
  padding: 0 0 15px 40px;
  position: relative;
  display: flex;
  font-weight: 700;
}
.example .exampleWrap .exampleBox .coursePoints ul li::before {
  content: "";
  flex-shrink: 0;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 24px;
  margin-bottom: 15px;
  background: url("../img/icon_check_blue.svg") no-repeat center;
  background-size: 100% 100%;
}
.example .courseBtn {
  margin: 0 auto;
  max-width: 810px;
  padding: 20px 0;
  width: 100%;
  height: 140px;
  display: flex;
  justify-content: center;
  position: relative;
  background-image: linear-gradient(90deg, #2edbc0, #159beb);
  border: #fff 6px solid;
  border-radius: 1000px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.example .courseBtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
.example .courseBtn a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 40px;
  height: 40px;
  margin: auto;
  background: url("../img/icon_arrow_round.svg") no-repeat left center;
  background-size: 100% 100%;
}
@media screen and (max-width: 750px) {
  .example {
    padding: 13.33vw 0;
  }
  .example .txtBox {
    margin-bottom: 2.67vw;
  }
  .example .txtBox .titleBox {
    padding-bottom: 5.33vw;
    flex-direction: column;
    gap: 2.67vw;
  }
  .example .txtBox .titleBox p {
    padding: 1.33vw 0;
    border-top: 3px solid #0771B1;
    border-bottom: 3px solid #0771B1;
    font-size: 5.33vw;
  }
  .example .txtBox .titleBox p span {
    padding-right: 1.33vw;
    font-size: 4.27vw;
  }
  .example .txtBox p {
    text-align: left;
  }
  .example .exampleWrap {
    margin: 5.33vw 0 8vw;
    flex-direction: column;
    gap: 2.67vw;
  }
  .example .exampleWrap .exampleBox {
    width: 100%;
    padding: 8vw 5.33vw;
  }
  .example .exampleWrap .exampleBox .countryName {
    margin-bottom: 2.67vw;
  }
  .example .exampleWrap .exampleBox .countryName img {
    width: 40px;
  }
  .example .exampleWrap .exampleBox .countryName p {
    font-weight: 3.47vw;
  }
  .example .exampleWrap .exampleBox .titleBox {
    margin-bottom: 5.33vw;
  }
  .example .exampleWrap .exampleBox .titleBox h3 {
    margin-bottom: 2.67vw;
  }
  .example .exampleWrap .exampleBox .iconWrap {
    margin-bottom: 13.33vw;
    gap: 4vw;
  }
  .example .exampleWrap .exampleBox .iconWrap .iconBox img {
    width: 60%;
    height: 60%;
  }
  .example .exampleWrap .exampleBox .iconWrap .iconBox p {
    font-size: 2.93vw;
  }
  .example .exampleWrap .exampleBox .coursePoints {
    padding: 4vw;
  }
  .example .exampleWrap .exampleBox .coursePoints .title {
    max-width: 50%;
    padding: 1.33vw 0;
    font-size: 4vw;
  }
  .example .exampleWrap .exampleBox .coursePoints ul li {
    padding: 0 0 2.67vw 40px;
  }
  .example .courseBtn {
    padding: 5.33vw 0;
    max-width: 100%;
    height: auto;
    border: #fff 3px solid;
  }
  .example .courseBtn a {
    font-size: 4.8vw;
  }
  .example .courseBtn a::after {
    width: 30px;
    height: 30px;
    right: 15px;
  }
}

.thoughts {
  padding: 100px 0;
}
.thoughts .txtBox p {
  margin-top: 30px;
  text-align: center;
}
.thoughts .txtBox p strong {
  font-size: 18px;
  font-weight: 700;
  color: #0771B1;
}
.thoughts .staff h3 {
  padding-bottom: 30px;
}
.thoughts .staff .staffWrap {
  display: flex;
  gap: 30px;
}
.thoughts .staff .staffWrap .staffBox {
  padding: 20px;
  width: calc((100% - 60px) / 3);
  position: relative;
  background: #fff;
  border-top: #ddd 1px solid;
  border-left: #ddd 1px solid;
  /* ======================
     右のラインを上に上げる
  ====================== */
}
.thoughts .staff .staffWrap .staffBox::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #ddd;
  transform: skewY(-2deg);
  transform-origin: left;
}
.thoughts .staff .staffWrap .staffBox::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: calc(100% - 12px);
  width: 1px;
  background: #ddd;
}
.thoughts .staff .staffWrap .staffBox .titleBox {
  display: flex;
  align-items: center;
}
.thoughts .staff .staffWrap .staffBox .titleBox img {
  max-width: 150px;
}
.thoughts .staff .staffWrap .staffBox .titleBox .nameBox {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
}
.thoughts .staff .staffWrap .staffBox .titleBox .nameBox p {
  font-size: 20px;
  font-weight: 700;
}
.thoughts .staff .staffWrap .staffBox .titleBox .nameBox .en {
  font-size: 14px;
  font-weight: 700;
  color: #ccc;
}
.thoughts .staff .staffWrap .staffBox .txt {
  margin-top: 20px;
}
@media screen and (max-width: 920px) {
  .thoughts .staff .staffWrap {
    flex-direction: column;
    gap: 10px;
  }
  .thoughts .staff .staffWrap .staffBox {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .thoughts {
    padding: 13.33vw 0;
  }
  .thoughts .txtBox p {
    margin-top: 5.33vw;
    text-align: left;
  }
  .thoughts .txtBox p strong {
    font-size: 4.27vw;
  }
  .thoughts .staff h3 {
    padding-bottom: 4vw;
  }
  .thoughts .staff .staffWrap {
    gap: 2.67vw;
  }
  .thoughts .staff .staffWrap .staffBox {
    padding: 5.33vw;
  }
  .thoughts .staff .staffWrap .staffBox .titleBox .nameBox {
    margin-left: 4vw;
  }
  .thoughts .staff .staffWrap .staffBox .titleBox .nameBox p {
    font-size: 4.8vw;
  }
  .thoughts .staff .staffWrap .staffBox .titleBox .nameBox .en {
    font-size: 3.47vw;
  }
  .thoughts .staff .staffWrap .staffBox .txt {
    margin-top: 4vw;
  }
}

.faq {
  padding-bottom: 100px;
}
.faq .faqContainerWrap {
  display: flex;
  gap: 30px;
}
.faq .faqContainerWrap .faqContainer {
  width: calc((100% - 30px) / 2);
}
.faq .faqContainerWrap .faqContainer .faqBox {
  width: 100%;
  padding: 30px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
}
.faq .faqContainerWrap .faqContainer .faqBox:last-child {
  margin-bottom: 0;
}
.faq .faqContainerWrap .faqContainer .faqBox h3 {
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.faq .faqContainerWrap .faqContainer .faqBox h3::before {
  content: "Q";
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-top: -3px;
  margin-right: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #E67745;
  border-radius: 1000px;
  background-color: #fff;
  border: #E67745 1px solid;
}
.faq .faqContainerWrap .faqContainer .faqBox h3 span {
  margin-left: auto;
}
.faq .faqContainerWrap .faqContainer .faqBox h3 .toggleIcon {
  display: inline-block;
  position: relative;
  width: 18px;
  height: 18px;
}
.faq .faqContainerWrap .faqContainer .faqBox h3 .toggleIcon::before, .faq .faqContainerWrap .faqContainer .faqBox h3 .toggleIcon::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 3px;
  margin: auto;
  background-color: #222;
  transition: 0.2s ease-in-out;
}
.faq .faqContainerWrap .faqContainer .faqBox h3 .toggleIcon::after {
  transform: rotate(90deg);
}
.faq .faqContainerWrap .faqContainer .faqBox h3.active .toggleIcon::after {
  transform: rotate(360deg);
}
.faq .faqContainerWrap .faqContainer .faqWarp {
  display: none;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0 40px;
}
.faq .faqContainerWrap .faqContainer .faqWarp .faqData {
  display: flex;
  align-items: center;
  width: 100%;
}
.faq .faqContainerWrap .faqContainer .faqWarp .faqData .txt {
  display: flex;
  width: 100%;
  margin-top: 10px;
}
.faq .faqContainerWrap .faqContainer .faqWarp .faqData .txt::before {
  content: "A";
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-top: -3px;
  margin-right: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  border-radius: 1000px;
  background-color: #E67745;
}
@media screen and (max-width: 750px) {
  .faq {
    padding-bottom: 13.33vw;
  }
  .faq .faqContainerWrap {
    flex-direction: column;
    gap: 2.67vw;
  }
  .faq .faqContainerWrap .faqContainer {
    width: 100%;
  }
  .faq .faqContainerWrap .faqContainer .faqBox {
    width: 100%;
    padding: 4vw;
    margin-bottom: 2.67vw;
  }
  .faq .faqContainerWrap .faqContainer .faqBox h3 {
    font-size: 4vw;
  }
  .faq .faqContainerWrap .faqContainer .faqBox h3::before {
    font-size: 2.67vw;
  }
  .faq .faqContainerWrap .faqContainer .faqBox h3 .toggleIcon {
    width: 30px;
    height: 30px;
  }
  .faq .faqContainerWrap .faqContainer .faqWarp {
    gap: 0 5.33vw;
  }
  .faq .faqContainerWrap .faqContainer .faqWarp .faqData .txt::before {
    margin-top: 8px;
    font-size: 2.67vw;
  }
}

.contact {
  padding: 100px 0;
  background-color: #F8F8F8;
}
.contact .layout {
  max-width: 900px;
}
.contact .layout .consultationBtn {
  max-width: 440px;
  padding: 20px 0;
  width: 100%;
  height: 100px;
  margin: 0 auto;
  position: relative;
  border: #fff 3px solid;
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  background-color: #E67745;
}
.contact .layout .consultationBtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.contact .layout .consultationBtn a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 30px;
  height: 30px;
  margin: auto;
  background: url("../img/icon_arrow_round.svg") no-repeat left center;
  background-size: 100% 100%;
}
.contact .layout form {
  margin-top: 50px;
}
.contact .layout form .formItem {
  padding: 15px 0;
}
.contact .layout form .formItem:first-of-type {
  padding-top: 0;
}
.contact .layout form .formItem:has(textarea) {
  padding-bottom: 0;
}
.contact .layout form .formItem .titleBox {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.contact .layout form .formItem .titleBox label {
  font-weight: 700;
}
.contact .layout form .formItem .titleBox .required {
  margin-right: 20px;
  padding: 5px 10px;
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  background-color: #EB3838;
}
.contact .layout form .formItem .input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ccc;
}
.contact .layout form .formItem textarea {
  width: 100%;
  height: 240px;
  padding: 10px 15px;
  border: 1px solid #ccc;
}
.contact .layout form .formItem.formItem--inquirytype {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.contact .layout form .formItem.formItem--inquirytype .titleBox {
  width: 100%;
}
.contact .layout form .formItem.formItem--inquirytype .radioboxIcon {
  vertical-align: middle;
}
.contact .layout form .formItem.formItem--inquirytype input[type=radio] {
  margin-top: 0;
}
.contact .layout form .formItem .radioBox {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.contact .layout form .formItem .radioBox .radioItem {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.contact .layout form .formItem .radioBox .radioItem input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.contact .layout form .formItem .radioBox .radioItem .radioIcon {
  width: 30px;
  height: 30px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  transition: 0.2s ease;
}
.contact .layout form .formItem .radioBox .radioItem input[type=radio]:checked + .radioIcon::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #222;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contact .layout form .formItem .radioBox .radioItem .radioText {
  font-weight: 500;
}
.contact .layout form .btnBox {
  margin-top: 50px;
}
.contact .layout form .btnBox .submitBtn {
  display: block;
  margin: auto;
  max-width: 500px;
  width: 100%;
  height: 80px;
  padding: 20px 0;
  font-size: 18px;
  font-family: "BIZ UDPGothic", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: #222;
  border: none;
}
@media screen and (max-width: 750px) {
  .contact {
    padding: 13.33vw 0;
  }
  .contact .layout .consultationBtn {
    padding: 5.33vw 0;
    max-width: 100%;
    height: auto;
  }
  .contact .layout .consultationBtn a {
    font-size: 4.8vw;
  }
  .contact .layout .consultationBtn a::after {
    right: 15px;
  }
  .contact .layout form {
    margin-top: 8vw;
  }
  .contact .layout form .formItem {
    padding: 4vw 0;
  }
  .contact .layout form .formItem .radioBox {
    gap: 30px;
  }
  .contact .layout form .formItem .radioBox .radioItem .radioIcon {
    width: 5.33vw;
    height: 5.33vw;
  }
  .contact .layout form .formItem .radioBox .radioItem input[type=radio]:checked + .radioIcon::after {
    width: 3.73vw;
    height: 3.73vw;
  }
  .contact .layout form .formItem .titleBox {
    margin-bottom: 2.67vw;
  }
  .contact .layout form .formItem .titleBox .required {
    margin-right: 2.67vw;
    font-size: 4vw;
  }
  .contact .layout form .formItem .input {
    padding: 2.67vw;
  }
  .contact .layout form .formItem textarea {
    padding: 2.67vw;
  }
  .contact .layout form .btnBox {
    margin-top: 8vw;
  }
  .contact .layout form .btnBox .submitBtn {
    padding: 5.33vw 0;
    max-width: 100%;
    height: auto;
    font-size: 4vw;
  }
}

footer {
  padding: 40px 0;
  color: #fff;
  text-align: center;
  background-color: #222;
}
@media screen and (max-width: 750px) {
  footer {
    padding: 8vw 0 18.67vw;
    text-align: left;
  }
}

.footer .footerLayout {
  max-width: 1640px;
  width: 100%;
}
.footer .footerLayout .footerTop {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footerLayout .footerTop .logo {
  max-width: 15%;
}
.footer .footerLayout .footerTop .footerMenuWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
}
.footer .footerLayout .footerTop .footerMenuWrap .footerMenu {
  margin-right: 50px;
}
.footer .footerLayout .footerTop .footerMenuWrap .footerMenu ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
.footer .footerLayout .footerTop .footerMenuWrap .footerMenu ul li {
  text-align: center;
  list-style: none;
}
.footer .footerLayout .footerTop .footerMenuWrap .footerMenu ul li a {
  color: #fff;
}
.footer .footerLayout .footerTop .footerMenuWrap .footerBtnBox {
  display: flex;
  gap: 10px;
}
.footer .footerLayout .footerTop .footerMenuWrap .footerBtnBox .consultationBtn, .footer .footerLayout .footerTop .footerMenuWrap .footerBtnBox .contactBtn {
  border-radius: 1000px;
}
.footer .footerLayout .footerTop .footerMenuWrap .footerBtnBox .consultationBtn a, .footer .footerLayout .footerTop .footerMenuWrap .footerBtnBox .contactBtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.footer .footerLayout .footerTop .footerMenuWrap .footerBtnBox .consultationBtn {
  background-color: #E67745;
}
.footer .footerLayout .footerTop .footerMenuWrap .footerBtnBox .contactBtn {
  background-color: #0771B1;
}
.footer .footerLayout .footerBottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer .footerLayout .footerBottom p {
  font-size: 14px;
  text-align: left;
}
.footer .footerLayout .footerBottom p span {
  font-size: 12px;
}
.footer .footerLayout .footerBottom .copyright {
  font-size: 12px;
  color: #ccc;
}
.footer .footerLayout .footerBottom .snsLink {
  display: block;
  margin-top: 10px;
}
@media screen and (max-width: 1295px) {
  .footer .footerLayout .footerTop .footerMenuWrap .footerMenu {
    margin-right: 15px;
  }
  .footer .footerLayout .footerTop .footerMenuWrap .footerMenu ul {
    gap: 15px;
  }
  .footer .footerLayout .footerTop .footerMenuWrap .footerMenu ul li {
    font-size: 14px;
  }
}
@media screen and (max-width: 1206px) {
  .footer .footerLayout .footerTop {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footer .footerLayout .footerTop .logo {
    max-width: 200px;
  }
  .footer .footerLayout .footerTop .footerMenuWrap {
    flex-direction: column;
    margin-left: 0;
  }
  .footer .footerLayout .footerTop .footerMenuWrap .footerMenu {
    margin: 30px 0;
  }
  .footer .footerLayout .footerTop .footerMenuWrap .footerBtnBox {
    justify-content: space-between;
    width: 100%;
  }
  .footer .footerLayout .footerTop .footerMenuWrap .footerBtnBox .consultationBtn, .footer .footerLayout .footerTop .footerMenuWrap .footerBtnBox .contactBtn {
    width: 50%;
  }
  .footer .footerLayout .footerBottom {
    align-items: center;
    flex-direction: column;
  }
  .footer .footerLayout .footerBottom p {
    width: 100%;
    text-align: center;
  }
  .footer .footerLayout .footerBottom .copyright {
    margin-top: 30px;
  }
}
@media screen and (max-width: 750px) {
  .footer .footerLayout .footerTop {
    margin-bottom: 8vw;
  }
  .footer .footerLayout .footerTop .logo {
    max-width: 250px;
  }
  .footer .footerLayout .footerTop .footerMenuWrap {
    width: 100%;
    align-items: flex-start;
  }
  .footer .footerLayout .footerTop .footerMenuWrap .footerMenu {
    width: 100%;
  }
  .footer .footerLayout .footerTop .footerMenuWrap .footerMenu ul {
    margin-top: 8vw;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 5.33vw;
    width: 100%;
    height: 250px;
  }
  .footer .footerLayout .footerTop .footerMenuWrap .footerMenu ul li {
    width: calc((100% - 5.33vw) / 2);
    text-align: left;
  }
  .footer .footerLayout .footerTop .footerMenuWrap .footerBtnBox {
    gap: 2.67vw;
  }
  .footer .footerLayout .footerTop .footerMenuWrap .footerBtnBox .consultationBtn a, .footer .footerLayout .footerTop .footerMenuWrap .footerBtnBox .contactBtn a {
    padding: 2.67vw 0;
    font-size: 3.2vw;
  }
  .footer .footerLayout .footerBottom p {
    font-size: 3.47vw;
    text-align: left;
  }
  .footer .footerLayout .footerBottom p span {
    font-size: 2.93vw;
  }
  .footer .footerLayout .footerBottom .copyright {
    margin-top: 8vw;
    font-size: 2.93vw;
  }
  .footer .footerLayout .footerBottom .snsLink {
    display: block;
    margin-top: 8vw;
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  .footer .footerLayout .footerTop .footerMenuWrap .footerMenu {
    margin: 0;
  }
  .footer .footerLayout .footerTop .footerMenuWrap .footerMenu ul {
    margin-bottom: 5.33vw;
  }
  .footer .footerLayout .footerTop .footerMenuWrap .footerMenu ul li {
    text-align: center;
  }
}

/* =========================================
   Contact Form 7 radio custom style
========================================= */
.contact .wpcf7 {
  /* CF7が自動で入れるpタグを無効化 */
}
.contact .wpcf7 p {
  margin: 0;
}
.contact .wpcf7 .radioBox .wpcf7-form-control-wrap {
  width: 100%;
}
.contact .wpcf7 .radioBox .wpcf7-radio {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.contact .wpcf7 .radioBox .wpcf7-list-item {
  margin: 0;
}
.contact .wpcf7 .radioBox .wpcf7-list-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.contact .wpcf7 .radioBox .wpcf7-list-item input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.contact .wpcf7 .radioBox .wpcf7-list-item-label {
  display: flex;
  align-items: center;
  font-weight: 500;
}
.contact .wpcf7 .radioBox .wpcf7-list-item-label::before {
  content: "";
  width: 30px;
  height: 30px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  transition: 0.2s ease;
}
.contact .wpcf7 .radioBox .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #222;
  border-radius: 50%;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .contact .wpcf7 .radioBox .wpcf7-radio {
    gap: 30px;
  }
  .contact .wpcf7 .radioBox .wpcf7-list-item-label::before {
    width: 5.33vw;
    height: 5.33vw;
  }
  .contact .wpcf7 .radioBox .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label::after {
    width: 3.73vw;
    height: 3.73vw;
    left: 3px;
  }
}

/*# sourceMappingURL=style.css.map */
