@charset "UTF-8";
/*OPACITY*/
/*TRANSITION*/
/*TRANSFORM*/
/*FLEXBOX*/
/*BORDER RADIUS*/
/*BOX SHADOW*/
/*BOX SIZING*/
/*FILTER*/
/* CUSTOM VARIABLE */
/* BASE VARIABLE */
/* FONT-FAMILY */
/* FONT SIZE */
main.topPage .circle-wrapper {
  background-color: #FF7F00;
  border: 7px solid #FF9A36;
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  transform-origin: right bottom;
  transition: all .6s ease-in-out .2s, bottom 0s ease-in-out;
  z-index: 99;
}

@media (max-width: 1366px) {
  main.topPage .circle-wrapper {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 1290px) {
  main.topPage .circle-wrapper {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 1023.98px) {
  main.topPage .circle-wrapper {
    display: none;
  }
}

main.topPage .circle-wrapper span {
  width: 260px;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 70px;
  line-height: 1.1;
  font-weight: bold;
  color: white;
  transition: all .6s ease-in-out .2s, bottom .2s ease-in-out;
}

@media (max-width: 1366px) {
  main.topPage .circle-wrapper span {
    width: 220px;
    font-size: 60px;
  }
}

@media (max-width: 1290px) {
  main.topPage .circle-wrapper span {
    width: 220px;
    font-size: 35px;
  }
}

main.topPage .circle-wrapper span p.des {
  color: #FFFF00;
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
  transition: all .3s ease-in-out .6s;
}

@media (max-width: 1366px) {
  main.topPage .circle-wrapper span p.des {
    font-size: 16px;
    margin-top: 8px;
  }
}

@media (max-width: 1290px) {
  main.topPage .circle-wrapper span p.des {
    font-size: 13px;
  }
}

main.topPage .circle-wrapper p.head {
  background-color: #FFFF00;
  font-size: 16px;
  display: inline-block;
  padding: 8px 16px;
  font-weight: bold;
  position: absolute;
  top: -3px;
  right: -12px;
  transform: scale(1) rotate(14deg);
  transition: all .3s ease-in-out .7s;
}

@media (max-width: 1366px) {
  main.topPage .circle-wrapper p.head {
    top: -11px;
    right: -16px;
    font-size: 14px;
  }
}

@media (max-width: 1290px) {
  main.topPage .circle-wrapper p.head {
    font-size: 9px;
  }
}

main.topPage .circle-wrapper._resize {
  border: 2px solid #FF9A36;
  height: 60px;
  width: 60px;
  bottom: 112px;
  transition: all .6s ease-in-out, bottom .6s ease-in-out .0s;
}

main.topPage .circle-wrapper._resize span {
  font-size: 14px;
  top: 45px;
  transition: all .6s ease-in-out, bottom .6s ease-in-out .0s;
}

main.topPage .circle-wrapper._resize span p.des {
  transform: scale(0);
  transition: all .6s ease-in-out;
}

@media (max-width: 1290px) {
  main.topPage .circle-wrapper._resize span {
    top: 40px;
  }
}

main.topPage .circle-wrapper._resize p.head {
  transform: scale(0) rotate(14deg);
  transition: all .6s ease-in-out;
}

main.topPage .circle-wrapper::before {
  border: transparent solid 6px;
  border-radius: 50%;
  transition: border-color .2s;
}

main.topPage .circle-wrapper:hover::before {
  border-color: #FF7F00;
}

@media (max-width: 767px) {
  main.topPage .circle-wrapper {
    width: 146px;
    height: 146px;
    bottom: calc(100vh - 544px);
    right: 16px;
  }
  main.topPage .circle-wrapper span {
    width: 146px;
    font-size: 22px;
  }
}

main.topPage #news {
  position: relative;
  background-color: white;
}

main.topPage #news .news-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

main.topPage #news .news-wrapper ._title {
  height: 128px;
  width: 297px;
  font-size: 26px;
  font-weight: bold;
  background-color: #FFBD6F;
  background-image: url("../../../assets/img/misc/news-pattern.png");
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 1199.98px) {
  main.topPage #news .news-wrapper ._title {
    width: 266px;
    height: 100px;
  }
}

main.topPage #news .news-wrapper ._content {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  padding-left: 33px;
  padding-right: 24px;
}

main.topPage #news .news-wrapper ._content ul {
  width: 100%;
}

main.topPage #news .news-wrapper ._content ul li:not(:last-child) {
  margin-bottom: 18px;
}

main.topPage #news .news-wrapper ._content ul li a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  position: relative;
}

main.topPage #news .news-wrapper ._content ul li a span {
  margin-right: 22px;
}

main.topPage #news .news-wrapper ._content ul li a h4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

@media (max-width: 1023.98px) {
  main.topPage #news .news-wrapper {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  main.topPage #news .news-wrapper ._title {
    width: 100%;
    height: 74px;
  }
  main.topPage #news .news-wrapper ._content {
    padding: 24px;
  }
}

@media (max-width: 767.98px) {
  main.topPage #news .news-wrapper ._title {
    height: 58px;
    font-size: 18px;
  }
  main.topPage #news .news-wrapper ._content {
    padding: 16px 24px;
  }
  main.topPage #news .news-wrapper ._content ul li:not(:last-child) {
    margin-bottom: 10px;
  }
}

main.topPage #bannerfour {
  margin: 30px;
}

@media (max-width: 767px) {
  main.topPage #bannerfour {
    margin: 0;
    margin-top: 30px;
  }
}

main.topPage #bannerfour .title-wrapper {
  margin-bottom: 29px;
  text-align: center;
}

main.topPage #bannerfour .flexboks {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  max-width: 1500px;
  width: 100%;
  margin: auto;
}

@media (max-width: 1440px) {
  main.topPage #bannerfour .flexboks {
    max-width: 1100px;
  }
}

@media (max-width: 767.98px) {
  main.topPage #bannerfour .flexboks {
    width: 100%;
  }
}

@media (max-width: 527.98px) {
  main.topPage #bannerfour .flexboks {
    max-width: initial;
    width: calc(100% - 48px);
  }
}

main.topPage #bannerfour .flexboks .links {
  margin-right: 30px;
}

@media (max-width: 767px) {
  main.topPage #bannerfour .flexboks .links {
    width: 48%;
    margin: 2px;
  }
}

@media (max-width: 767px) {
  main.topPage #bannerfour .flexboks {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

main.topPage #bannerfour .flexboks .flexx {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 767px) {
  main.topPage #bannerfour .flexboks .flexx .links2 {
    width: 48%;
    margin: 2px;
  }
}

main.topPage #bannerfour .flexboks .flexx .links2.margin-botu {
  margin-bottom: 8px;
}

@media (max-width: 767px) {
  main.topPage #bannerfour .flexboks .flexx .links2.margin-botu {
    margin-bottom: 0;
    margin-top: 4px;
  }
}

main.topPage #bannerfour .flexboks .flexx .links2.margin-topu {
  margin-top: 8px;
}

@media (max-width: 767px) {
  main.topPage #bannerfour .flexboks .flexx .links2.margin-topu {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  main.topPage #bannerfour .flexboks .flexx {
    -webkit-flex-direction: unset;
    -moz-flex-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
  }
}

main.topPage #greeting {
  padding: 0 0 94px;
}

@media (max-width: 1023.98px) {
  main.topPage #greeting {
    padding: 40px 0;
  }
}

main.topPage #greeting .inner {
  padding: 43px 100px 81px;
  background-color: white;
  border-radius: 10px;
}

@media (max-width: 1611.98px) {
  main.topPage #greeting .inner {
    padding: 43px 78px 70px;
  }
}

@media (max-width: 1199.98px) {
  main.topPage #greeting .inner {
    padding: 43px 64px 64px;
  }
}

@media (max-width: 1023.98px) {
  main.topPage #greeting .inner {
    padding: 32px;
  }
}

@media (max-width: 527.98px) {
  main.topPage #greeting .inner {
    padding: 24px;
  }
}

main.topPage #greeting .inner .title-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 527.98px) {
  main.topPage #greeting .inner .title-wrapper {
    margin-bottom: 30px;
  }
}

main.topPage #greeting .inner .content {
  display: flex;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

main.topPage #greeting .inner .content .left {
  padding-right: 63px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

main.topPage #greeting .inner .content .left img {
  width: 390px;
  height: 390px;
  border-radius: 50%;
}

@media (max-width: 1611.98px) {
  main.topPage #greeting .inner .content .left img {
    width: 270px;
    height: 270px;
  }
}

main.topPage #greeting .inner .content .left .text-1 {
  background-color: #EFEFEF;
  padding: 10px 20px;
  text-align: center;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  margin-top: -41px;
  margin-bottom: 16px;
}

main.topPage #greeting .inner .content .left .text-1 p {
  font-weight: bold;
  font-size: 15px;
}

main.topPage #greeting .inner .content .left .text-1 p span {
  font-size: 18px;
}

main.topPage #greeting .inner .content .left .text-2 {
  width: 265px;
  margin-left: auto;
  margin-right: auto;
  font-weight: bold;
  color: #0672B9;
  font-size: 14px;
  line-height: 25px;
}

@media (max-width: 527.98px) {
  main.topPage #greeting .inner .content .left .text-2 {
    width: 100%;
  }
}

main.topPage #greeting .inner .content .right {
  flex: 1;
}

main.topPage #greeting .inner .content .right p {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  line-height: 30px;
  font-size: 15px;
}

main.topPage #greeting .inner .content .right ._title {
  font-size: 23px;
  margin-bottom: 39px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

@media (max-width: 1611.98px) {
  main.topPage #greeting .inner .content .right ._title {
    margin-bottom: 30px;
  }
}

@media (max-width: 527.98px) {
  main.topPage #greeting .inner .content .right ._title {
    font-size: 18px;
  }
}

@media (max-width: 1023.98px) {
  main.topPage #greeting .inner .content {
    display: block;
  }
  main.topPage #greeting .inner .content .left {
    padding-right: 0;
    text-align: center;
    padding-bottom: 48px;
  }
  main.topPage #greeting .inner .content .left img {
    margin-left: auto;
    margin-right: auto;
    width: 214px;
    height: 214px;
  }
}

@media (max-width: 527.98px) {
  main.topPage #greeting .inner .content .left {
    padding-bottom: 30px;
  }
}

main.topPage #rules {
  padding: 52px 0 102px;
  background-color: white;
}

@media (max-width: 1023.98px) {
  main.topPage #rules {
    padding: 52px 0;
  }
}

@media (max-width: 767.98px) {
  main.topPage #rules {
    padding: 34px 0 18px;
  }
}

main.topPage #rules .title-wrapper {
  text-align: center;
  margin-bottom: 47px;
}

main.topPage #rules ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -24px;
  margin-right: -24px;
}

main.topPage #rules ul li {
  width: 33.3333%;
  margin-bottom: 59px;
}

@media (max-width: 1023.98px) {
  main.topPage #rules ul li {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  main.topPage #rules ul li {
    margin-bottom: 32px;
  }
}

main.topPage #rules ul li .card {
  margin-left: 24px;
  margin-right: 24px;
  background-color: #FFE7C1;
  border-radius: 10px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 360px;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  position: relative;
}

@media (max-width: 1611.98px) {
  main.topPage #rules ul li .card {
    font-size: 22px;
    height: 300px;
  }
}

@media (max-width: 527.98px) {
  main.topPage #rules ul li .card {
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    font-size: 20px;
    height: 260px;
  }
}

main.topPage #rules ul li .card .img {
  margin-top: 30px;
  padding: 0 30px;
  text-align: center;
  margin-bottom: 20px;
}

@media (max-width: 1611.98px) {
  main.topPage #rules ul li .card .img {
    padding: 0 20px;
    margin-top: 20px;
  }
}

@media (max-width: 527.98px) {
  main.topPage #rules ul li .card .img {
    margin-top: 0;
  }
}

main.topPage #rules ul li .card .img img {
  height: 100px;
}

@media (max-width: 1611.98px) {
  main.topPage #rules ul li .card .img img {
    height: 75px;
  }
}

@media (max-width: 527.98px) {
  main.topPage #rules ul li .card .img img {
    height: 60px;
  }
}

main.topPage #rules ul li .card .num {
  position: absolute;
  top: -24px;
  left: 24px;
  transform: translateX(-50%);
  font-size: 59px;
  line-height: 1.5;
  font-weight: bold;
  color: white;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  height: 87px;
  width: 87px;
  background-color: #FF9A24;
  border-radius: 50%;
}

@media (max-width: 1611.98px) {
  main.topPage #rules ul li .card .num {
    width: 75px;
    height: 75px;
    top: -20px;
    left: 20px;
    font-size: 50px;
  }
}

@media (max-width: 527.98px) {
  main.topPage #rules ul li .card .num {
    width: 55px;
    height: 55px;
    top: -15px;
    left: 15px;
    font-size: 39px;
  }
}

main.topPage #rules ul li .card .yg {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

main.topPage #rules ul li .card ._47 {
  font-size: 47px;
}

@media (max-width: 1611.98px) {
  main.topPage #rules ul li .card ._47 {
    font-size: 40px;
  }
}

@media (max-width: 527.98px) {
  main.topPage #rules ul li .card ._47 {
    font-size: 30px;
  }
}

main.topPage #rules ul li .card ._40 {
  font-size: 40px;
}

@media (max-width: 1611.98px) {
  main.topPage #rules ul li .card ._40 {
    font-size: 30px;
  }
}

main.topPage #rules ul li .card ._34 {
  font-size: 34px;
}

@media (max-width: 1611.98px) {
  main.topPage #rules ul li .card ._34 {
    font-size: 20px;
  }
}

main.topPage #rules ul li .card ._18 {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 8px;
}

main.topPage #rules ul.small {
  margin-left: -20px;
  margin-right: -20px;
}

main.topPage #rules ul.small li {
  width: 25%;
}

@media (max-width: 1199.98px) {
  main.topPage #rules ul.small li {
    width: 50%;
  }
}

@media (max-width: 767.98px) {
  main.topPage #rules ul.small li {
    width: 100%;
  }
}

main.topPage #rules ul.small .card {
  margin-left: 20px;
  margin-right: 20px;
  font-size: 22px;
  height: 275px;
}

@media (max-width: 1611.98px) {
  main.topPage #rules ul.small .card {
    font-size: 16px;
    height: 210px;
  }
}

@media (max-width: 527.98px) {
  main.topPage #rules ul.small .card {
    font-size: 15px;
    height: 150px;
  }
}

main.topPage #rules ul.small .card .img {
  padding: 0 20px;
  margin-top: 20px;
}

@media (max-width: 1611.98px) {
  main.topPage #rules ul.small .card .img {
    margin-top: 15px;
    margin-bottom: 10px;
  }
}

@media (max-width: 1611.98px) and (max-width: 527.98px) {
  main.topPage #rules ul.small .card .img {
    margin-top: 0;
  }
}

main.topPage #rules ul.small .card .img img {
  height: 75px;
}

@media (max-width: 1611.98px) {
  main.topPage #rules ul.small .card .img img {
    height: 60px;
  }
}

@media (max-width: 527.98px) {
  main.topPage #rules ul.small .card .img img {
    height: 50px;
  }
}

main.topPage #rules ul.small .card .num {
  top: -20px;
  left: 12px;
  font-size: 43px;
  height: 63px;
  width: 63px;
}

@media (max-width: 1611.98px) {
  main.topPage #rules ul.small .card .num {
    width: 50px;
    height: 50px;
    line-height: 1.7;
    font-size: 32px;
  }
}

@media (max-width: 527.98px) {
  main.topPage #rules ul.small .card .num {
    width: 40px;
    height: 40px;
    font-size: 26px;
  }
}

main.topPage #expert {
  padding: 81px 0 94px;
}

@media (max-width: 767.98px) {
  main.topPage #expert {
    padding: 40px 0;
  }
}

main.topPage #expert .title-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

main.topPage #expert .inner .content:not(:last-child) {
  margin-bottom: 150px;
}

@media (max-width: 1023.98px) {
  main.topPage #expert .inner .content:not(:last-child) {
    margin-bottom: 100px;
  }
}

@media (max-width: 527.98px) {
  main.topPage #expert .inner .content:not(:last-child) {
    margin-bottom: 68px;
  }
}

main.topPage #expert .inner .content .person {
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

@media (min-width: 1024px) {
  main.topPage #expert .inner .content .person {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  main.topPage #expert .inner .content .person {
    width: 100%;
    text-align: center;
  }
}

main.topPage #expert .inner .content .person .left {
  width: 298px;
}

@media (max-width: 1611.98px) {
  main.topPage #expert .inner .content .person .left {
    width: 240px;
  }
}

@media (max-width: 1023.98px) {
  main.topPage #expert .inner .content .person .left {
    width: 222px;
    margin-left: auto;
    margin-right: auto;
  }
}

main.topPage #expert .inner .content .person .left img {
  width: 298px;
  height: 298px;
  border-radius: 50%;
  border: 11px solid white;
}

@media (max-width: 1611.98px) {
  main.topPage #expert .inner .content .person .left img {
    width: 240px;
    height: 240px;
  }
}

@media (max-width: 1023.98px) {
  main.topPage #expert .inner .content .person .left img {
    width: 200px;
    height: 200px;
  }
}

main.topPage #expert .inner .content .person .right {
  padding-left: 75px;
}

@media (max-width: 1611.98px) {
  main.topPage #expert .inner .content .person .right {
    flex: 1;
  }
}

@media (max-width: 1023.98px) {
  main.topPage #expert .inner .content .person .right {
    text-align: center;
  }
}

main.topPage #expert .inner .content .person .right .badge {
  display: inline-block;
  border-radius: 3px;
  background-color: #0672B9;
  color: white;
  font-size: 15px;
  padding: 3px 11px 3px 8px;
}

main.topPage #expert .inner .content .person .right .name {
  margin-bottom: 20px;
}

main.topPage #expert .inner .content .person .right .name span {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

main.topPage #expert .inner .content .person .right .name span:first-child {
  font-size: 36px;
  font-weight: bold;
}

main.topPage #expert .inner .content .person .right .name span:last-child {
  font-size: 20px;
  font-weight: medium;
  color: #0672B9;
  margin-left: 15px;
}

@media (max-width: 767.98px) {
  main.topPage #expert .inner .content .person .right .name span {
    display: block;
  }
}

@media (max-width: 1023.98px) {
  main.topPage #expert .inner .content .person .right .copycat {
    margin-bottom: 16px;
  }
}

main.topPage #expert .inner .content .person .right table tr td:first-child {
  width: 165px;
}

@media (max-width: 1023.98px) {
  main.topPage #expert .inner .content .person .right table tr {
    display: block;
  }
  main.topPage #expert .inner .content .person .right table tr:not(:last-child) {
    margin-bottom: 16px;
  }
  main.topPage #expert .inner .content .person .right table tr td {
    display: block;
  }
  main.topPage #expert .inner .content .person .right table tr td:first-child {
    width: 100%;
    font-weight: bold;
  }
}

@media (max-width: 1023.98px) {
  main.topPage #expert .inner .content .person .left {
    text-align: center;
  }
  main.topPage #expert .inner .content .person .right {
    padding-left: 0;
    margin-top: 24px;
  }
}

main.topPage #expert .inner .content .profile {
  background-color: white;
  border-radius: 10px;
  position: relative;
  width: 1166px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1611.98px) {
  main.topPage #expert .inner .content .profile {
    width: 960px;
  }
}

@media (max-width: 1023.98px) {
  main.topPage #expert .inner .content .profile {
    width: 100%;
  }
}

main.topPage #expert .inner .content .profile .wrap {
  padding: 33px 139px 60px;
}

@media (max-width: 1023.98px) {
  main.topPage #expert .inner .content .profile .wrap {
    padding: 32px;
  }
}

main.topPage #expert .inner .content .profile ._title {
  color: #0672B9;
  font-size: 20px;
  font-weight: bold;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  margin-bottom: 41px;
}

main.topPage #expert .inner .content .profile ._title span {
  font-size: 13px;
  margin-left: 32px;
  color: #FF9A24;
}

@media (max-width: 527.98px) {
  main.topPage #expert .inner .content .profile ._title {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  main.topPage #expert .inner .content .profile ._title span {
    margin-left: 0;
  }
}

main.topPage #expert .inner .content .profile table tr {
  display: block;
  margin-bottom: 32px;
}

main.topPage #expert .inner .content .profile table tr:not(:last-child) {
  padding-bottom: 22px;
  border-bottom: 2px dashed #D8D8D8;
}

main.topPage #expert .inner .content .profile table tr th {
  width: 196px;
  text-align: left;
  color: #0672B9;
  font-weight: bold;
}

@media (min-width: 768px) {
  main.topPage #expert .inner .content .profile table tr th {
    padding-left: 16px;
  }
}

@media (max-width: 767.98px) {
  main.topPage #expert .inner .content .profile table tr th {
    display: block;
    width: 100%;
    font-weight: bold;
    margin-bottom: 4px;
  }
}

main.topPage #expert .inner .content .profile ._illust {
  position: absolute;
  bottom: -30px;
  right: 12px;
  width: 139px;
}

@media (max-width: 767.98px) {
  main.topPage #expert .inner .content .profile ._illust {
    width: 108px;
  }
}

main.topPage #workflow {
  padding: 90px 0 75px;
  background-color: white;
}

@media (max-width: 767.98px) {
  main.topPage #workflow {
    padding: 40px 0 0;
    background-color: #FFE7C1;
  }
}

main.topPage #workflow .inner {
  background-color: #FFE7C1;
  padding: 44px 64px 36px;
  border-radius: 10px;
}

@media (max-width: 1611.98px) {
  main.topPage #workflow .inner {
    padding: 44px 40px 32px;
  }
}

@media (max-width: 767.98px) {
  main.topPage #workflow .inner {
    padding: 0;
  }
}

main.topPage #workflow .inner .title-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

main.topPage #workflow .inner ._des {
  text-align: center;
}

main.topPage #workflow .inner ._des-list {
  margin-top: 23px;
  margin-bottom: 65px;
  list-style: decimal;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}

@media (max-width: 1023.98px) {
  main.topPage #workflow .inner ._des-list {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

main.topPage #workflow .inner ._des-list li {
  list-style: decimal;
  margin-left: 24px;
  margin-right: 25px;
  font-weight: bold;
}

@media (min-width: 1200px) {
  main.topPage #workflow .inner ._des-list li {
    font-size: 18px;
  }
}

main.topPage #workflow .inner ._des-list li::marker {
  color: #0672B9;
  font-size: 20px;
}

main.topPage #workflow .inner .card-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -27px;
  margin-right: -27px;
}

@media (max-width: 1611.98px) {
  main.topPage #workflow .inner .card-wrapper {
    margin-left: -16px;
    margin-right: -16px;
  }
}

main.topPage #workflow .inner .card-wrapper li {
  width: 33.3333%;
  margin-bottom: 54px;
}

@media (max-width: 1611.98px) {
  main.topPage #workflow .inner .card-wrapper li {
    margin-bottom: 32px;
  }
}

@media (max-width: 1199.98px) {
  main.topPage #workflow .inner .card-wrapper li {
    width: 50%;
  }
}

@media (max-width: 767.98px) {
  main.topPage #workflow .inner .card-wrapper li {
    width: 100%;
  }
}

main.topPage #workflow .inner .card-wrapper li .card {
  margin-left: 27px;
  margin-right: 27px;
  background-color: white;
  border-radius: 10px;
  position: relative;
  height: 274px;
}

@media (max-width: 1611.98px) {
  main.topPage #workflow .inner .card-wrapper li .card {
    height: 256px;
    margin-left: 16px;
    margin-right: 16px;
  }
}

@media (max-width: 767.98px) {
  main.topPage #workflow .inner .card-wrapper li .card {
    height: auto;
    min-height: 256px;
  }
}

main.topPage #workflow .inner .card-wrapper li .card .img {
  height: 60%;
  width: 100%;
  padding-top: 15px;
}

@media (max-width: 767.98px) {
  main.topPage #workflow .inner .card-wrapper li .card .img {
    height: 178px;
    padding-bottom: 86px;
    width: 90%;
    margin: auto;
  }
}

main.topPage #workflow .inner .card-wrapper li .card .img img {
  height: 100%;
  width: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

main.topPage #workflow .inner .card-wrapper li .card .num {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 63px;
  height: 63px;
  line-height: 63px;
  text-align: center;
  border-radius: 50%;
  display: block;
  background-color: #FF9A24;
  color: white;
  font-size: 43px;
  font-weight: bold;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

main.topPage #workflow .inner .card-wrapper li .card > p {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  font-size: 22px;
  position: absolute;
  bottom: 20px;
  left: 20px;
}

@media (max-width: 1611.98px) {
  main.topPage #workflow .inner .card-wrapper li .card > p {
    font-size: 18px;
  }
}

main.topPage #workflow .inner .card-wrapper li._large {
  width: 66.6667%;
}

@media (max-width: 1199.98px) {
  main.topPage #workflow .inner .card-wrapper li._large {
    width: 100%;
  }
}

main.topPage #workflow .inner .card-wrapper li._large .card {
  padding: 0 28px;
}

@media (max-width: 767.98px) {
  main.topPage #workflow .inner .card-wrapper li._large .card {
    padding: 0 16px;
  }
}

main.topPage #workflow .inner .card-wrapper li._large .card .flex {
  height: 100%;
  display: flex;
  align-items: center;
}

@media (max-width: 767.98px) {
  main.topPage #workflow .inner .card-wrapper li._large .card .flex {
    flex-direction: column;
    padding: 24px 0;
  }
}

main.topPage #workflow .inner .card-wrapper li._large .card .flex ._left {
  padding-right: 26px;
  width: 328px;
}

main.topPage #workflow .inner .card-wrapper li._large .card .flex ._left img {
  height: 208px;
}

@media (max-width: 1611.98px) {
  main.topPage #workflow .inner .card-wrapper li._large .card .flex ._left img {
    height: 142px;
  }
}

@media (max-width: 1199.98px) {
  main.topPage #workflow .inner .card-wrapper li._large .card .flex ._left img {
    height: 228px;
  }
}

@media (max-width: 1023.98px) {
  main.topPage #workflow .inner .card-wrapper li._large .card .flex ._left img {
    height: 154px;
  }
}

@media (max-width: 767.98px) {
  main.topPage #workflow .inner .card-wrapper li._large .card .flex ._left img {
    height: 142px;
  }
}

@media (max-width: 1611.98px) {
  main.topPage #workflow .inner .card-wrapper li._large .card .flex ._left {
    width: 224px;
  }
}

@media (max-width: 767.98px) {
  main.topPage #workflow .inner .card-wrapper li._large .card .flex ._left {
    padding-right: 0;
    padding-bottom: 24px;
  }
}

main.topPage #workflow .inner .card-wrapper li._large .card .flex ._right {
  flex: 1;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

main.topPage #workflow .inner .card-wrapper li._large .card .flex ._right ._title {
  font-size: 22px;
  margin-bottom: 18px;
  font-weight: bold;
}

@media (max-width: 1611.98px) {
  main.topPage #workflow .inner .card-wrapper li._large .card .flex ._right ._title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

main.topPage #workflow .inner .card-wrapper li._large .card .flex ._right ._des {
  font-weight: medium;
  text-align: left;
  margin-bottom: 18px;
  line-height: 1.7;
}

@media (max-width: 1611.98px) {
  main.topPage #workflow .inner .card-wrapper li._large .card .flex ._right ._des {
    font-size: 14px;
    margin-bottom: 14px;
  }
}

main.topPage #info {
  padding: 80px 0 0;
  background-color: #E4F0F8;
}

@media (max-width: 767.98px) {
  main.topPage #info {
    padding: 40px 0 0;
  }
}

main.topPage #info .inner {
  background-color: white;
  border-radius: 10px;
  padding: 43px 250px 86px;
}

@media (max-width: 1611.98px) {
  main.topPage #info .inner {
    padding: 43px 70px 56px;
  }
}

@media (max-width: 767.98px) {
  main.topPage #info .inner {
    padding: 43px 24px 0;
  }
}

main.topPage #info .inner .title-wrapper {
  text-align: center;
  margin-bottom: 54px;
}

@media (max-width: 767.98px) {
  main.topPage #info .inner .title-wrapper {
    margin-bottom: 30px;
  }
}

main.topPage #info .inner table {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 22px;
  width: 100%;
}

@media (max-width: 767.98px) {
  main.topPage #info .inner table {
    font-size: 16px;
  }
}

main.topPage #info .inner table tr:not(:last-child) {
  border-bottom: 3px solid #EBEBEB;
}

main.topPage #info .inner table tr th,
main.topPage #info .inner table tr td {
  padding: 22px 0;
}

main.topPage #info .inner table tr th {
  width: 342px;
  color: #0672B9;
  font-weight: bold;
  text-align: left;
  font-size: 24px;
}

@media (max-width: 767.98px) {
  main.topPage #info .inner table tr th {
    font-size: 18px;
  }
}

main.topPage #info .inner table tr td {
  font-weight: medium;
}

main.topPage #info .inner table tr td a {
  color: #0672B9;
  text-decoration: underline;
}

main.topPage #info .inner table tr td #email {
  height: 20px;
}

@media (max-width: 767.98px) {
  main.topPage #info .inner table tr td #email {
    height: 16px;
  }
}

@media (max-width: 1023.98px) {
  main.topPage #info .inner table tr {
    display: block;
    margin-bottom: 32px;
  }
  main.topPage #info .inner table tr th,
  main.topPage #info .inner table tr td {
    display: block;
    padding: 0 0 22px;
    width: auto;
  }
  main.topPage #info .inner table tr td {
    padding-bottom: 12px;
  }
}

@media (max-width: 767.98px) {
  main.topPage #info .inner table tr {
    margin-bottom: 15px;
  }
  main.topPage #info .inner table tr th,
  main.topPage #info .inner table tr td {
    display: block;
    padding: 0 0 5px;
    width: auto;
  }
  main.topPage #info .inner table tr td {
    padding-bottom: 8px;
  }
}

main.topPage #map {
  background-color: #E4F0F8;
  padding: 80px 0 0;
}

@media (max-width: 767.98px) {
  main.topPage #map {
    padding: 40px 0 0;
  }
}

main.topPage #map .title-wrapper {
  margin-bottom: 29px;
  text-align: center;
}

main.topPage #map .btn {
  width: 930px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  padding: 0 16px;
  position: relative;
}

@media (max-width: 1023.98px) {
  main.topPage #map .btn {
    width: calc(100% - 48px);
    text-align: center;
    height: 86px;
  }
}

@media (max-width: 527.98px) {
  main.topPage #map .btn {
    width: calc(100% - 70px);
    height: 142px;
  }
}

main.topPage #map .btn .ballon-arrow {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
}

main.topPage #map iframe {
  width: 100%;
  height: 609px;
}

@media (max-width: 1023.98px) {
  main.topPage #map iframe {
    height: 420px;
  }
}

@media (max-width: 767.98px) {
  main.topPage #map iframe {
    height: 280px;
  }
}

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