@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
* {
  box-sizing: border-box;
}

select::-ms-expand {
  display: none;
}

*:focus {
  outline: none;
}

input,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
}

input[type=checkbox] {
  display: none;
}

input[type=radio] {
  position: relative;
  -webkit-appearance: button;
  appearance: button;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  content: "";
  background-color: #FFFFFF;
  border: 1px solid #cccccc;
  -webkit-border-radius: 24px;
  border-radius: 24px;
  vertical-align: middle;
  cursor: pointer;
  appearance: none;
  top: -2px;
}

input[type=radio]:checked:after {
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  content: "";
  width: 8px;
  height: 8px;
  background: #333333;
  -webkit-border-radius: 12px;
  border-radius: 12px;
}

body,
html,
div,
p,
span,
blockquote,
u,
s,
i,
b,
table,
tr,
th,
td,
ul,
ol,
dl,
li,
dt,
dd,
strong,
h1,
h2,
h3,
h4,
h5,
em,
header,
footer,
nav,
aside,
section,
input,
select,
option,
textarea,
button {
  margin: 0;
  padding: 0;
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  text-justify: inter-ideograph;
  color: inherit;
}

body {
  font-weight: 400;
  font-size: 16px;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333333;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

ul,
ol {
  list-style-type: none;
}

a {
  text-decoration: none;
  transition-property: all;
  transition: 0.1s linear;
}

table {
  border-collapse: collapse;
}

body.fixed {
  overflow: hidden;
}

.wrap {
  width: 100vw;
  overflow-x: hidden;
}

.container {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 1240px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 25px;
  }
}

main {
  background: #f7f7f7;
}

.wrapper {
  position: relative;
}
.wrapper::before {
  display: block;
  position: absolute;
  content: "";
  width: 40vw;
  top: 0;
  bottom: 0;
  background: #fff;
  z-index: 1;
}

.front-page {
  background-color: #ffffff;
  width: 100%;
  padding: 0% 15%;
  margin: auto;
}

.contents {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.contents_inner article {
  border: solid 1px #DDD;
  background: #FFF;
  padding: 45px;
  /* margin-bottom: 20px; */
}

@media (max-width: 768px) {
  .contents_inner article {
    padding: 10px;
  }
}
.center_fixed {
  max-width: 800px;
  margin: 0 auto;
}

.center_fixed strong {
  font-weight: 700;
}

.contents.w-sidebar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin: 0 auto;
  padding: 0 55px;
  max-width: 1310px;
}
@media (max-width: 990px) {
  .contents.w-sidebar {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
}
.contents.w-sidebar .main {
  position: relative;
  flex: 1;
  max-width: 821px;
  padding-bottom: 80px;
  padding-right: 85px;
  background: #fff;
  z-index: 2;
}
@media (max-width: 990px) {
  .contents.w-sidebar .main {
    max-width: 100%;
    padding: 0 20px 80px 20px;
  }
}

.page_wrapper {
  position: relative;
  margin: -85px auto 0 auto;
  padding: 0 20px 90px 20px;
  max-width: 1040px;
  z-index: 3;
}
@media (max-width: 768px) {
  .page_wrapper {
    margin: 0 auto;
  }
}
.page_wrapper .section:first-child {
  margin-top: 0;
}
@media (max-width: 768px) {
  .page_wrapper .section:first-child {
    margin-top: -15px;
  }
}

.section {
  margin-top: 65px;
}
@media (max-width: 768px) {
  .section {
    margin-top: 40px;
  }
}

.black {
  color: #333333 !important;
}

.white {
  color: #fff !important;
}

.gray {
  color: #666666 !important;
}

.bg-black {
  background: #333333 !important;
}

.bg-white {
  background: #fff !important;
}

.small {
  font-size: 14px !important;
}

.normal {
  font-size: 16px !important;
}

.big {
  font-size: 18px !important;
}

.large {
  font-size: 24px !important;
}

.left {
  text-align: left !important;
}

.center {
  text-align: center !important;
}

.right {
  text-align: right !important;
}

.bold {
  font-weight: 700 !important;
}

.roboto, .column_toc_head span, .column_toc ul li::before, .column .column_post h2::before, .top_about_steps li::before, .bar_fukidashi, .heading-sub span {
  font-family: "Roboto", sans-serif;
}

.lh2 {
  line-height: 2;
}

@media (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

header {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  padding: 20px;
  background: #fff;
}
@media (max-width: 768px) {
  header {
    position: fixed;
    padding: 16px 20px 6px 20px;
  }
}
@media (max-width: 768px) {
  header.active {
    position: fixed;
  }
  header.active * {
    position: relative;
    z-index: 999999;
  }
  header.active::before, header.active::after {
    display: block;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100vw;
    height: 100vh;
  }
  header.active::after {
    background-image: linear-gradient(85.93deg, #f8ed78 0%, #27e1f4 100%);
    background: -moz-linear-gradient(1.25% -7.97% -14.32deg, rgb(248, 237, 120) 0%, rgb(39, 225, 244) 99.75%);
    background: -webkit-linear-gradient(-14.32deg, rgb(248, 237, 120) 0%, rgb(39, 225, 244) 99.75%);
    background: -webkit-gradient(linear, 1.25% -7.97%, 99.54% 108.91%, color-stop(0, rgb(248, 237, 120)), color-stop(0.9975, rgb(39, 225, 244)));
    background: -o-linear-gradient(-14.32deg, rgb(248, 237, 120) 0%, rgb(39, 225, 244) 99.75%);
    background: -ms-linear-gradient(-14.32deg, rgb(248, 237, 120) 0%, rgb(39, 225, 244) 99.75%);
    opacity: 0.2;
  }
  header.active::before {
    background: #fff;
  }
  header.active .header_menus {
    display: block;
  }
}
header .line {
  position: absolute;
  bottom: 0;
  margin-left: -20px;
  width: 100vw;
}
header.active .line {
  display: none;
}

.header_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.header_logos {
  display: table;
}
.header_logos img {
  width: 270px;
  max-width: 270px;
  vertical-align: baseline;
}
@media (max-width: 768px) {
  .header_logos img {
    width: 250px;
  }
}
@media (max-width: 768px) {
  .header_logos .powered-logo-none {
    display: none;
  }
}
.header_logos span {
  display: inline-block;
  position: relative;
  padding-left: 10px;
  bottom: 10px;
  font-size: 14px;
  color: #333333;
}
@media (max-width: 768px) {
  .header_logos span {
    padding-left: 87px;
  }
}
.header_logos span img {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  height: 15px;
}

.header_btn {
  position: fixed;
  right: 20px;
  top: 29px;
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/btn_menu.png");
}
.header_btn:hover {
  cursor: pointer;
}
.header_btn.open {
  position: fixed;
  background-image: url("../img/btn_menu_close.png");
}
.header_btn.sub {
  top: 20px;
}

.header_nav {
  margin: 0 0 0 auto;
}
@media (max-width: 768px) {
  .header_nav {
    margin: 0;
    width: 100%;
  }
}

.header_nav_text {
  text-align: right;
  font-size: 14px;
  color: #666666;
}
@media (max-width: 768px) {
  .header_nav_text {
    padding-bottom: 15px;
    width: 100%;
    text-align: center;
    font-size: 12px;
    letter-spacing: 0;
  }
}

.header_menus {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin: 20px 0 0 auto;
}
@media (max-width: 768px) {
  .header_menus {
    display: none;
  }
  .header_menus li {
    width: 100%;
  }
}
.header_menus a {
  display: block;
  margin: 0 7px;
  padding: 0 10px 10px 10px;
  font-weight: 600;
  border-bottom: 2px solid #fff;
  color: #333333;
}
@media (max-width: 990px) {
  .header_menus a {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .header_menus a {
    margin-top: 40px;
    padding: 0 15px;
    border-bottom: none;
  }
}
.header_menus li:last-child a {
  margin-right: 0;
}
.header_menus li.active a {
  border-color: #27e1f4;
}

.footer {
  position: relative;
  padding: 65px 0 60px 0;
}
.footer::after {
  display: block;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(85.93deg, #f8ed78 0%, #27e1f4 100%);
  background: -moz-linear-gradient(1.25% -7.97% -14.32deg, rgb(248, 237, 120) 0%, rgb(39, 225, 244) 99.75%);
  background: -webkit-linear-gradient(-14.32deg, rgb(248, 237, 120) 0%, rgb(39, 225, 244) 99.75%);
  background: -webkit-gradient(linear, 1.25% -7.97%, 99.54% 108.91%, color-stop(0, rgb(248, 237, 120)), color-stop(0.9975, rgb(39, 225, 244)));
  background: -o-linear-gradient(-14.32deg, rgb(248, 237, 120) 0%, rgb(39, 225, 244) 99.75%);
  background: -ms-linear-gradient(-14.32deg, rgb(248, 237, 120) 0%, rgb(39, 225, 244) 99.75%);
  opacity: 0.2;
  z-index: -1;
}
.footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}

.footer_logos img {
  width: 100%;
  max-width: 334px;
}
@media (max-width: 768px) {
  .footer_logos img {
    display: block;
    margin: 0 auto;
    max-width: 250px;
  }
}
@media (max-width: 768px) {
  .footer_logos {
    width: 100%;
  }
}

.footer_sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .footer_sns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 29px;
  }
}
.footer_sns a {
  display: block;
  margin-right: 34px;
}
@media (max-width: 768px) {
  .footer_sns a {
    margin: 0 15px;
  }
}
.footer_sns img {
  height: 36px;
}
@media (max-width: 768px) {
  .footer_sns img {
    height: 25px;
  }
}
.footer_sns img:hover {
  opacity: 0.7;
}

.footer_menus {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: stretch;
}
@media (max-width: 768px) {
  .footer_menus {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .footer_menus dl {
    margin-top: 25px;
  }
}
.footer_menus dl:first-child {
  margin-right: 65px;
}
@media (max-width: 768px) {
  .footer_menus dl:first-child {
    margin-right: 0;
  }
}
.footer_menus dt {
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #505a5a;
}
@media (max-width: 768px) {
  .footer_menus dt {
    padding-left: 10px;
  }
}
.footer_menus a {
  margin-top: 5px;
  color: #333333;
}
.footer_menus a:hover {
  background: rgba(255, 255, 255, 0.5);
}
.footer_menus a:hover::before {
  background-image: url("../img/arrow_black.svg");
}
.footer_menus li:last-child a {
  margin-bottom: 5px;
}

.footer_links {
  padding: 60px 0 45px;
  background: #505a5a;
}
@media (max-width: 768px) {
  .footer_links {
    padding-bottom: 140px;
  }
}
.footer_links .container-full {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 1380px;
  overflow: hidden;
}

.footer_links_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}

.footer_links_head {
  padding-top: 10px;
}
.footer_links_head * {
  color: #fff;
}
.footer_links_head p {
  display: table;
  padding: 10px 20px 8px 20px;
  font-size: 12px;
  border: 1px solid #fff;
}
.footer_links_head strong {
  display: block;
  margin-top: 25px;
  font-size: 18px;
  line-height: 1.8;
}
.footer_links_head strong span {
  font-size: 24px;
  font-weight: 600;
}

.footer_links_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
@media (max-width: 768px) {
  .footer_links_nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    margin-top: 32px;
  }
}

.footer_links_list:first-child {
  margin-right: 32px;
}
.footer_links_list:nth-child(2) {
  margin-right: 32px;
}
.footer_links_list:nth-child(3) {
  width: 200px;
}
.footer_links_list a {
  color: #fff;
}
.footer_links_list a:hover {
  background: rgba(255, 255, 255, 0.1);
}
.footer_links_list a:hover::before {
  background-image: url("../img/arrow_white.svg");
}

.footer_links_bottom {
  display: flex;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .footer_links_bottom {
    display: flex;
    flex-direction: column-reverse;
  }
}
.footer_links_bottom p {
  font-size: 12px;
  color: #cccccc;
}
@media (max-width: 768px) {
  .footer_links_bottom p {
    margin-bottom: 15px;
  }
}

.footer_links_bottom_caution {
  display: flex;
  flex-direction: column;
  margin-left: 260px;
}
@media (max-width: 768px) {
  .footer_links_bottom_caution {
    margin-left: 0;
  }
}

.footer_arrow, .footer_menus a, .footer_links_list a {
  display: block;
  padding: 10px 15px 8px 15px;
  min-width: 300px;
  font-size: 14px;
}
.footer_arrow::before, .footer_menus a::before, .footer_links_list a::before {
  display: inline-block;
  content: "";
  margin-right: 10px;
  width: 10px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/arrow_gray.svg");
}

.footer_btn {
  display: flex;
  margin-top: 10px;
}
.footer_btn a {
  width: 50%;
  padding: 16px 0 14px 0;
  font-size: 14px;
}
.footer_btn a span {
  font-size: 16px;
}

.bottom-menu {
  position: fixed;
  width: 95vw;
  bottom: 10px;
  left: 2.5vw;
  z-index: 999;
}

.bottom-menu_big {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.bottom-menu_big a {
  display: block;
  width: 50%;
}
.bottom-menu_big a img {
  width: 100%;
}

.open-shortcut {
  position: absolute;
  bottom: 8.5vw;
  left: 39.5vw;
  width: 19vw;
}

.shortcut {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  z-index: 999;
  padding: 130px 20px 20px 20px;
  background: #f7f7f7;
}
.shortcut h2 {
  padding: 22px 55px 20px 15px;
  font-weight: 600;
  font-size: 18px;
}
.shortcut .btn {
  margin-top: 45px;
}
.shortcut .btn-simple {
  margin-top: 35px;
}

.shortcut_close {
  display: table;
  margin: 20px 0 20px auto;
}
.shortcut_close:hover {
  cursor: pointer;
}
.shortcut_close img {
  width: 18px;
}

.footer_logos_gakken {
  text-align: left;
  margin-left: 87px;
}
@media (max-width: 768px) {
  .footer_logos_gakken {
    padding-left: 60px;
    text-align: center;
    margin-left: 0;
  }
}
.footer_logos_gakken img {
  display: inline-block;
  width: auto;
  height: 15px;
}
@media (max-width: 768px) {
  .footer_logos_gakken img {
    height: 15px;
  }
}

.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background-color: #27e1f4;
  background: linear-gradient(94.07deg, #92fe9d 0%, #00c9ff 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
}

.pagetop__arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translateY(20%) rotate(-45deg);
}

.back-to-top {
  display: none; /* 初めは非表示 */
  position: fixed; /* 位置を固定 */
  bottom: 20px; /* 下から20pxの位置 */
  right: 20px; /* 右から20pxの位置 */
  padding: 10px 15px;
  background-color: #777;
  color: #fff;
  cursor: pointer;
  border-radius: 3px;
  border: none;
  z-index: 1000; /* 他の要素の上に表示 */
}

.section {
  position: relative;
}

.heading {
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 28px;
}
@media (max-width: 768px) {
  .heading {
    font-size: 20px;
  }
}

.heading-sub {
  display: table;
  width: auto;
  position: absolute;
  left: -35px;
  transform: rotate(270deg);
  transform-origin: left center;
}
@media (max-width: 768px) {
  .heading-sub {
    position: static;
    top: 0 !important;
    left: 0;
    margin: -10px 0 30px 0;
    transform: none;
  }
}
.heading-sub span {
  font-size: 14px;
  color: #999999;
}
.heading-sub::before {
  display: inline-block;
  content: "";
  vertical-align: middle;
  margin-right: 20px;
  width: 100px;
  height: 1px;
  text-align: right;
  background: #27e1f4;
}
@media (max-width: 768px) {
  .heading-sub::before {
    display: block;
    margin-bottom: 5px;
  }
}

.heading-bg {
  position: relative;
  padding: 30px 18px 40px 18px;
  border-bottom: 2px solid #27e1f4;
}
.heading-bg span {
  color: #fff;
  display: block;
  position: relative;
  z-index: 2;
  line-height: 1;
  font-weight: 600;
  font-size: 28px;
}
@media (max-width: 768px) {
  .heading-bg span {
    font-size: 20px;
  }
}
.heading-bg span::before {
  position: absolute;
  content: "";
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 25px;
  background: #fff;
}
.heading-bg::before {
  display: block;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.heading-bg::after {
  display: block;
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
}

.header-bg-triangle-top {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.header-bg-triangle-bottom {
  position: absolute;
  right: 0;
  top: 20px;
  z-index: 2;
}
@media (max-width: 768px) {
  .header-bg-triangle-bottom {
    top: 10px;
  }
}

.heading-line {
  position: relative;
}
.heading-line::before {
  display: block;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: #27e1f4;
}

.line {
  position: relative;
  z-index: 2;
  margin: 0;
  width: 100vw;
  max-width: 100%;
  border: none;
}
.line::after {
  display: block;
  content: "";
  width: 100%;
}

.gradation-bg, .heading-bg::before {
  background: linear-gradient(94.07deg, #92fe9d 0%, #00c9ff 100%);
  mix-blend-mode: normal;
}

.gradation-line, .heading-bg::after, .line::after {
  height: 2px;
  background: -moz-linear-gradient(0% 50% 0deg, rgb(248, 237, 120) 0%, rgb(39, 225, 244) 99.75%);
  background: -webkit-linear-gradient(0deg, rgb(248, 237, 120) 0%, rgb(39, 225, 244) 99.75%);
  background: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0, rgb(248, 237, 120)), color-stop(0.9975, rgb(39, 225, 244)));
  background: -o-linear-gradient(0deg, rgb(248, 237, 120) 0%, rgb(39, 225, 244) 99.75%);
  background: -ms-linear-gradient(0deg, rgb(248, 237, 255) 0%, rgb(39, 225, 244) 99.75%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#F8ED78', endColorstr='#27E1F4' ,GradientType=0)";
  background: linear-gradient(90deg, rgb(248, 237, 120) 0%, rgb(39, 225, 244) 99.75%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F8ED78", endColorstr="#27E1F4", GradientType=1);
}

.btn {
  display: table;
  margin: 0 auto;
  padding: 16px 35px;
  width: 250px;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  border: none;
  border-radius: 25px;
  color: #fff;
}
@media (max-width: 768px) {
  .btn {
    width: 100%;
    padding: 16px 10px 14px 10px;
  }
}
.btn-main {
  background: linear-gradient(94.07deg, #92fe9d 0%, #00c9ff 100%);
}
.btn-gradation-radius {
  background: linear-gradient(94.07deg, #92fe9d 0%, #00c9ff 100%);
  width: 100%;
  padding: 1px;
  border-radius: 100px;
}
.btn-gradation-wrap {
  border-radius: 100px;
  background: #fff;
}
.btn-main-transparent {
  background: linear-gradient(94.07deg, #92fe9d 0%, #00c9ff 100%);
  color: linear-gradient(94.07deg, #92fe9d 0%, #00c9ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn-yellow {
  background: #fff000;
  box-shadow: 0 5px 0 #ffda00;
}
.btn-gray {
  background: #f7f7f7;
  box-shadow: 0 5px 0 #cccccc;
}
.btn-blue {
  color: #fff;
  background: #007dff;
  box-shadow: 0 5px 0 #0061ff;
}
.btn-white {
  background: #fff;
}
.btn-gra {
  text-align: center;
  background: linear-gradient(85.93deg, #f8ed78 0%, #27e1f4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn-foot {
  background-color: #00dbde;
  background-image: linear-gradient(45deg, #00dbde 0%, #fc00ef 100%);
  text-align: center;
  color: #fff;
}
.btn:hover {
  box-shadow: none;
  cursor: pointer;
}

.btn-simple {
  display: table;
  margin: 0 auto;
  padding: 8px 20px;
  line-height: 1;
  color: #666666;
  border: 1px solid #cccccc;
  border-radius: 15px;
}

.btn-next {
  display: table;
  position: relative;
  margin: 65px 0 0 auto;
  font-size: 14px;
  line-height: 1;
  color: #666666;
}
.btn-next::after {
  display: inline-block;
  content: "";
  margin-top: -5px;
  vertical-align: middle;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #27e1f4;
}
.btn-next::before {
  position: absolute;
  content: "";
  top: 10px;
  right: 14px;
  width: 10px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/arrow_white.svg");
}
.btn-next:hover::after {
  opacity: 0.5;
}

.btn-2l {
  font-size: 14px;
  line-height: 24px;
  border-radius: 40px;
}
.btn-2l span {
  font-size: 20px;
  line-height: 30px;
}

.fukidashi {
  position: relative;
  margin: 30px 0;
  width: calc(100% - 140px);
}
@media (max-width: 768px) {
  .fukidashi {
    width: 100%;
  }
}
.fukidashi > * {
  position: relative;
  z-index: 3;
}
.fukidashi::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 20px;
  height: 20px;
  right: -10px;
  top: 30px;
  transform: rotate(45deg) skew(-10deg, -10deg);
}
@media (max-width: 768px) {
  .fukidashi::before {
    top: auto;
    right: 75px;
    bottom: -10px;
    transform: rotate(-45deg) skew(-10deg, -10deg);
  }
}
.fukidashi::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.fukidashi--1::after {
  background-image: url("../img/character_01.png");
}
.fukidashi--2::after {
  background-image: url("../img/character_02.png");
}
.fukidashi--3::after {
  background-image: url("../img/character_03.png");
}
.fukidashi--4::after {
  background-image: url("../img/character_04.png");
}
.fukidashi--5::after {
  background-image: url("../img/character_05.png");
}
.fukidashi--6::after {
  background-image: url("../img/character_06.png");
}
.fukidashi--7::after {
  background-image: url("../img/character_07.png");
}
.fukidashi--8::after {
  background-image: url("../img/character_08.png");
}
.fukidashi--9::after {
  background-image: url("../img/character_09.png");
}
.fukidashi--10::after {
  background-image: url("../img/character_10.png");
}
.fukidashi--11::after {
  background-image: url("../img/character_11.png");
}
.fukidashi--12::after {
  background-image: url("../img/character_12.png");
}
.fukidashi--13::after {
  background-image: url("../img/character_13.png");
}

.fukidashi,
.fukidashi::before {
  box-shadow: 0 0 10px 0 rgba(163, 163, 163, 0.5);
}

.fukidashi,
.fukidashi::before,
.fukidashi::after {
  background: #f0f8ff;
}

.fukidashi_text {
  position: relative;
  padding: 35px 40px;
  font-size: 14px;
  line-height: 24px;
}
@media (max-width: 768px) {
  .fukidashi_text {
    margin-bottom: 125px;
    padding: 20px;
  }
}
.fukidashi_text::after {
  display: block;
  position: absolute;
  content: "";
  top: 0;
  right: -140px;
  width: 117px;
  height: 109px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  .fukidashi_text::after {
    top: auto;
    right: 0;
    bottom: -95px;
    height: 77px;
  }
}

.sidebar {
  padding: 85px 0 45px 60px;
  width: 380px;
}
@media (max-width: 990px) {
  .sidebar {
    display: none;
  }
}
@media (max-width: 768px) {
  .sidebar {
    display: none;
  }
}
.sidebar h2 {
  padding: 22px 55px 20px 15px;
  font-weight: 600;
  font-size: 18px;
}
.sidebar .btn {
  margin-top: 45px;
}
.sidebar .btn-simple {
  margin-top: 35px;
}

.sidebar_item {
  margin-bottom: 35px;
  background: #fff;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}
.sidebar_item .heading-bg span {
  font-size: 18px;
}
.sidebar_item .heading-bg span::before {
  display: none;
}
.sidebar_item h2.heading-line {
  position: relative;
}
.sidebar_item h2.heading-line::after {
  display: block;
  position: absolute;
  content: "";
  right: 20px;
  top: 30px;
  width: 12px;
  height: 12px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/arrow_gray.svg");
  transform: rotate(90deg);
}
.sidebar_item h2.heading-line:hover {
  cursor: pointer;
}
.sidebar_item.active .sidebar_content {
  display: block;
}
.sidebar_item .btn-gradation-radius {
  margin-top: 45px;
}
.sidebar_item .btn-gradation-radius .btn {
  margin-top: 0;
  padding: 16px 35px;
}

.sidebar_content {
  display: none;
  padding: 30px 25px 35px 25px;
}

.sidebar_list {
  margin-top: -15px;
}
.sidebar_list li,
.sidebar_list dt,
.sidebar_list dd {
  margin-top: 15px;
  font-size: 14px;
}
.sidebar_list dt {
  font-weight: 600;
}
.sidebar_list dd {
  margin-left: 18px;
}

.sidebar_numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin-top: -20px;
}
.sidebar_numbers li {
  margin-top: 20px;
  width: 48%;
}

.sidebar_cats {
  margin-top: 0;
}
.sidebar_cats:first-child {
  margin-top: -15px;
}

.sidebar_ranking {
  padding: 0 20px;
  counter-reset: ranking;
}
.sidebar_ranking .posts_item {
  position: relative;
  margin-top: 35px;
  counter-increment: ranking;
}
.sidebar_ranking .posts_item::before {
  position: absolute;
  content: "";
  top: -12px;
  left: -10px;
  width: 20px;
  height: 24px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/icon_flag.svg");
}
.sidebar_ranking .posts_item::after {
  position: absolute;
  content: counter(ranking);
  top: -10px;
  left: -3px;
  font-weight: 700;
  font-size: 12px;
}
.sidebar_ranking .posts_info {
  padding-bottom: 0;
  padding-left: 15px;
  font-size: 14px;
}

.posts {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  padding: 0 30px;
}
.posts li {
  margin-top: 30px;
  width: 48%;
}
@media (max-width: 768px) {
  .posts li {
    width: 100%;
  }
}
.posts li img {
  display: block;
  margin-bottom: 22px;
  width: 100%;
}
.posts li a {
  color: #333333;
}
.posts li a:hover {
  opacity: 0.7;
}

.posts_item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
  margin-top: 40px;
  color: #333333;
}

.posts_img {
  width: 40%;
}
.posts_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.posts_info {
  flex: 1;
  padding-left: 35px;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  .posts_info {
    padding-left: 20px;
  }
}

.posts_title {
  font-weight: 700;
  font-size: 24px;
}
@media (max-width: 768px) {
  .posts_title {
    font-size: 16px;
  }
}

.posts_date {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 14px;
  color: #666666;
}

input[type=checkbox] + label,
input[type=radio] + label {
  display: inline-block;
  position: relative;
  color: #999999;
}
input[type=checkbox] + label:hover,
input[type=radio] + label:hover {
  cursor: pointer;
}
input[type=checkbox] + label::before, input[type=checkbox] + label::after,
input[type=radio] + label::before,
input[type=radio] + label::after {
  display: inline-block;
  content: "";
}
input[type=checkbox] + label::before,
input[type=radio] + label::before {
  vertical-align: middle;
  margin-top: -3px;
  border: 1px solid #cccccc;
}
input[type=checkbox] + label::after,
input[type=radio] + label::after {
  display: none;
  position: absolute;
}

input[type=checkbox]:checked + label,
input[type=radio]:checked + label {
  color: #333333;
}
input[type=checkbox]:checked + label::after,
input[type=radio]:checked + label::after {
  display: block;
}

input[type=checkbox] + label::before {
  margin-right: 10px;
  width: 19px;
  height: 19px;
}
input[type=checkbox] + label::after {
  top: 4px;
  left: 4px;
  width: 11.4px;
  height: 7.5px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-45deg);
}

input[type=checkbox]:checked + label::before {
  background: #27e1f4;
  border-color: #27e1f4;
}

input[type=radio] + label::before {
  display: none;
}

input[type=radio]:checked + label::after {
  display: none;
}

.select {
  display: table;
  position: relative;
  border: 1px solid #cccccc;
  border-radius: 3px;
  overflow: hidden;
}
.select::after {
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  right: 15px;
  margin-top: -5px;
  width: 20px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/arrow_gray.svg");
  transform: rotate(90deg);
  pointer-events: none;
}
.select select {
  padding: 20px 50px 20px 15px;
  width: 100%;
  max-width: 400px;
  border: none;
  color: #666666;
}
.select select:hover {
  cursor: pointer;
}

.page_head {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/page_ttl.png");
}
@media (max-width: 768px) {
  .page_head {
    height: 460px;
    overflow: hidden;
  }
}
.page_head .container {
  max-width: 1470px;
  padding: 30px 20px 130px 20px;
}
@media (max-width: 768px) {
  .page_head .container {
    padding: 15px 20px;
  }
}
.page_head h1 {
  display: block;
  margin-top: 60px;
  text-align: center;
  line-height: 40px;
}
@media (max-width: 768px) {
  .page_head h1 {
    margin-top: 0;
  }
}
.page_head h1 span {
  display: inline-block;
  position: relative;
  padding-bottom: 36px;
  font-size: 40px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .page_head h1 span {
    padding-bottom: 15px;
    font-size: 24px;
  }
}
.page_head h1 span::after {
  display: block;
  position: absolute;
  content: "";
  left: 50%;
  bottom: 13px;
  margin-left: -50px;
  width: 100px;
  height: 1px;
  background: #27e1f4;
}
.page_head-gray {
  background: none;
}

@media (max-width: 768px) {
  .sub_head {
    height: 125px;
  }
}

.box {
  padding: 40px 50px;
  background: #fff;
  box-shadow: 0.85px 0.85px 1.71px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .box {
    padding: 40px 24px;
  }
}

@media (max-width: 768px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.breadcrumb li {
  font-size: 12px;
  overflow: hidden;
}
.breadcrumb li::after {
  display: inline-block;
  content: "";
  margin: 0 10px;
  width: 10px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/arrow_gray.svg");
}
.breadcrumb li:last-child::after {
  display: none;
}
.breadcrumb li a {
  display: inline-block;
  padding: 5px 10px;
  line-height: 1;
  color: #fff;
  background: #000000;
  border-radius: 10px;
}
.breadcrumb li.current {
  padding: 5px 10px;
  line-height: 1;
  color: #333333;
  background: #fff;
  border-radius: 10px;
}

.post_breadcrumb {
  margin: 30px 0 30px -40px;
}
.post_breadcrumb li.current {
  background: #f7f7f7;
}

.article_head {
  position: relative;
  padding-bottom: 40px;
}
.article_head::after {
  display: block;
  position: absolute;
  content: "";
  bottom: 0;
  width: 100px;
  height: 1px;
  background: #27e1f4;
}
@media (max-width: 768px) {
  .article_head::after {
    display: none;
  }
}
.article_head strong {
  display: block;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
}
@media (max-width: 768px) {
  .article_head strong {
    font-size: 24px;
    line-height: 32px;
  }
}

.article_thumb {
  margin: 25px 0;
  width: 100%;
}
.article_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article h1 {
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 28px;
  line-height: 40px;
}
@media (max-width: 768px) {
  .article h1 {
    position: relative;
    font-size: 24px;
    line-height: 32px;
  }
}
.article h2 {
  margin: 50px 0 35px 0;
  padding: 20px 15px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  background: #f7f7f7;
  border-left: 2px solid #27e1f4;
}
.article h3 {
  margin: 30px 0;
  padding: 0 10px 5px 10px;
  font-weight: 700;
  font-size: 18px;
  border-bottom: 1px solid #27e1f4;
}
.article h4 {
  margin: 30px 0;
  padding: 5px;
  font-weight: 700;
  background: #f7f7f7;
}
.article p {
  margin-top: 25px;
  line-height: 2;
  word-break: break-all;
}
.article a:not(.btn) {
  text-decoration: underline;
  color: #27e1f4;
  word-break: break-all;
}
.article a:not(.btn):hover {
  text-decoration: none;
}
.article .fv_btns a {
  margin: 0 auto !important;
  text-decoration: none;
}
.article .wp-block-image {
  margin-top: 30px;
  cursor: pointer;
}
.article tr td img {
  cursor: pointer;
}
.article .aligncenter {
  max-width: 80%;
  margin: 0 auto;
}
.article .alignleft,
.article .alignright {
  max-width: 60%;
}
@media (max-width: 768px) {
  .article .aligncenter,
  .article .alignleft,
  .article .alignright {
    float: none;
    width: 100%;
    max-width: 100%;
  }
}
.article blockquote {
  position: relative;
  margin-top: 25px;
  padding: 15px 25px;
  line-height: 2;
  background: #f7f7f7;
}
.article blockquote p:first-child {
  margin-top: 0;
}
.article blockquote cite {
  font-size: 14px;
}
.article blockquote cite::before {
  content: "−− ";
}
.article ul,
.article ol {
  margin: 25px auto;
}
.article ul li {
  padding-left: 16px;
}
.article ul li::before {
  display: inline-block;
  content: "";
  margin-right: 10px;
  margin-left: -16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #27e1f4;
}
.article ol {
  counter-reset: number;
}
.article ol li {
  counter-increment: number;
  padding-left: 26px;
}
.article ol li::before {
  content: counter(number) ".";
  margin-left: -26px;
  margin-right: 10px;
  font-weight: 700;
  color: #27e1f4;
}
.article ul.column-media_toc_list {
  list-style: none;
  margin-top: 0;
}
.article ul.column-media_toc_list li {
  list-style: none;
  color: #333333;
  font-size: 14px;
}
.article ul.column-media_toc_list li:before {
  position: relative;
  top: -4px;
  width: 4px;
  height: 4px;
}
.article ul.column-media_toc_list li a {
  color: #333333;
  font-size: 14px;
}
.article ul.column-media_toc_list li > ul li {
  padding-left: 0;
  font-size: 14px;
}
.article ul.column-media_toc_list li > ul li:before {
  display: none;
}
.article ul.column-media_toc_list ul {
  margin: 0;
  color: #333333;
}
.article ul.column-media_toc_list a {
  color: #333333;
}
.article li,
.article dt,
.article dd {
  line-height: 2;
}
.article hr.wp-block-separator {
  display: block;
  margin-top: 25px;
  width: 100%;
  height: 1px;
  background: #666666;
  border: none;
}
.article .wp-block-cover {
  margin-top: 25px;
}
.article .wp-block-columns {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.article .wp-block-column {
  margin: 0;
}
.article .wp-block-column:not(:last-child),
.article .wp-block-column:not(:first-child),
.article .wp-block-column:nth-child(2n) {
  margin: 0;
}
.article .has-2-columns .wp-block-column {
  flex-basis: auto;
  width: 49%;
}
@media (max-width: 768px) {
  .article .has-2-columns .wp-block-column {
    width: 100%;
  }
}
.article .has-3-columns .wp-block-column {
  flex-basis: auto;
  width: 32%;
}
@media (max-width: 768px) {
  .article .has-3-columns .wp-block-column {
    width: 100%;
  }
}
.article .wp-block-embed-youtube {
  margin: 30px auto 0 auto;
  width: 100%;
  max-width: 1240px;
}
.article .wp-block-embed-youtube div {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
}
.article .wp-block-embed-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.article .wp-block-embed-youtube.alignleft,
.article .wp-block-embed-youtube.alignright {
  max-width: 100%;
}
.article table {
  margin: 25px auto 0 auto;
}
.article table th,
.article table td {
  padding: 10px;
  border: 1px solid #cccccc;
}
.article table tr td:first-child {
  font-weight: 700;
}
.article em {
  font-style: normal;
  color: #e81e1e;
}
.article strong {
  font-weight: 700;
}
.article .btn a {
  text-decoration: none !important;
  color: #333333 !important;
}

article p {
  margin-bottom: 20px;
  line-height: 1.6;
  word-break: normal;
}
@media (max-width: 768px) {
  article p {
    font-size: 14px;
  }
}

.wp-block-image img {
  width: 100% !important;
}

.bar_wrapper {
  position: relative;
  margin: 0 auto;
  padding-top: 80px;
  width: calc(100% - 20px);
}

.bar_area {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.bar {
  position: relative;
  width: 100%;
  height: 10px;
  background: #f7f7f7;
  border-radius: 5px;
  overflow: hidden;
}
.bar--half::before {
  display: block;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  background: #cccccc;
}

.bar_active {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  background: #27e1f4;
}

.bar_fukidashi {
  position: absolute;
  top: 0;
  left: -33px;
  padding-top: 14px;
  width: 66px;
  height: 72px;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/fukidashi.svg");
}
.bar_fukidashi span {
  font-size: 24px;
}

.bar_numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin: 5px -10px 0 -10px;
}
.bar_numbers li {
  text-align: center;
  font-size: 14px;
  width: 31%;
}
.bar_numbers li:first-child {
  text-align: left;
}
.bar_numbers li:last-child {
  text-align: right;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
}

.modal_contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}

.modal_img {
  display: block;
  margin: 0 auto;
  max-width: 90vw;
  max-height: 80vh;
}

.modal_close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
}
.modal_close:hover {
  cursor: pointer;
}

.show_modal:hover {
  cursor: pointer;
}

.add_block {
  width: 300px;
}

.fv {
  background: #333333;
  position: relative;
}
.fv video {
  position: relative;
  width: 100%;
  opacity: 0.5;
  margin-bottom: -8px;
}
@media (max-width: 768px) {
  .fv video {
    width: auto;
    height: 100%;
  }
}
.fv .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}
.fv h1 {
  margin: 15px 0 20px;
  font-size: 96px;
  font-weight: 700;
  line-height: 102px;
}
@media (max-width: 1345px) {
  .fv h1 {
    font-size: 6vw;
    line-height: 1.2em;
  }
}
@media (max-width: 990px) {
  .fv h1 {
    font-size: 40px;
    line-height: 55px;
  }
}
@media (max-width: 768px) {
  .fv h1 {
    font-size: 42px;
    line-height: 1.3;
  }
}

.fv_img {
  flex: 1;
  margin-left: 65px;
}
@media (max-width: 768px) {
  .fv_img {
    margin-left: 0;
    margin-bottom: 15px;
  }
}
.fv_img img {
  width: 100%;
}
@media (max-width: 768px) {
  .fv_img img {
    display: block;
    margin: 0 auto;
    max-width: 350px;
  }
}

.fv_info {
  color: #FFF;
}
@media (max-width: 768px) {
  .fv_info {
    width: 100%;
  }
}

.fv_copy {
  padding: 10px 18px;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  background: #27e1f4;
  border-radius: 6px;
  max-width: 615px;
  margin: auto;
}
@media (max-width: 990px) {
  .fv_copy {
    display: none;
    font-size: 18px;
  }
  .fv_copy br {
    display: inline-block !important;
  }
}
@media (max-width: 768px) {
  .fv_copy {
    font-size: 16px;
  }
}

.fv_subcopy {
  text-align: center;
}
@media (max-width: 768px) {
  .fv_subcopy {
    font-weight: 600;
    font-size: 14px;
  }
}
.fv_subcopy::before, .fv_subcopy::after {
  display: inline-block;
  content: "";
  width: 18px;
  height: 18px;
  vertical-align: middle;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/line.svg");
}
.fv_subcopy::before {
  margin-right: 10px;
}
.fv_subcopy::after {
  margin-left: 10px;
  transform: rotate(90deg);
}

.fv_btns {
  max-width: 600px;
  margin: 20px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.fv_btns a.btn {
  width: auto;
}
@media (max-width: 990px) {
  .fv_btns a.btn {
    width: 100%;
  }
}
.fv_btns a.btn:first-child {
  margin-right: 15px;
}
@media (max-width: 990px) {
  .fv_btns a.btn:first-child {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.fv_btns--post a {
  margin: 0 auto !important;
  text-decoration: none;
  color: #333333;
}

.top_about {
  margin: 65px 0 55px;
}

.top_about_steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 45px;
  padding-top: 19px;
  counter-reset: step;
}
@media (max-width: 768px) {
  .top_about_steps {
    margin-top: -30px;
  }
}
.top_about_steps li {
  position: relative;
  padding: 40px 25px 25px 25px;
  width: 31%;
  max-width: 220px;
  background: #d8fbfc;
  counter-increment: step;
}
@media (max-width: 768px) {
  .top_about_steps li {
    margin-top: 30px;
    width: 100%;
    max-width: 100%;
  }
}
.top_about_steps li::before {
  display: block;
  position: absolute;
  content: "STEP" counter(step);
  top: -19px;
  left: 50%;
  margin-left: -59px;
  width: 118px;
  height: 38px;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 38px;
  color: #fff;
  background: #27e1f4;
}
.top_about_steps li p {
  margin-bottom: 23px;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
}
.top_about_steps li img {
  display: block;
  margin: 0 auto;
  max-height: 82px;
}

.top_about_topic {
  font-weight: 600;
  font-size: 24px;
  text-align: center;
}
@media (max-width: 768px) {
  .top_about_topic {
    font-size: 18px;
  }
}

.top_about_features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin: 45px 0 60px 0;
}
@media (max-width: 768px) {
  .top_about_features {
    margin-top: 10px;
  }
}
.top_about_features li {
  width: 23%;
}
@media (max-width: 768px) {
  .top_about_features li {
    margin-top: 25px;
    width: 48%;
  }
}
.top_about_features li img {
  display: block;
  margin: 0 auto;
  max-width: 115px;
}
.top_about_features li span {
  display: block;
  margin-top: 25px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}
@media (max-width: 768px) {
  .top_about_features li span {
    font-size: 12px;
  }
}

.top_ranking {
  margin: 0 -20px;
  padding: 35px 20px;
  background: #f7f7f7;
}
.top_ranking .sidebar_item {
  margin-bottom: 0;
}

.top_news_list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  padding: 15px 0;
  border-top: 1px solid #f7f7f7;
}
.top_news_list li:last-child {
  border-bottom: 1px solid #f7f7f7;
}
.top_news_list li .date {
  width: 140px;
  font-size: 14px;
  color: #666666;
}
@media (max-width: 768px) {
  .top_news_list li .date {
    width: 100%;
  }
}
.top_news_list li a {
  display: block;
  flex: 1;
  color: #333333;
}
.top_news_list li a:hover {
  opacity: 0.7;
}

.top_blogs {
  margin-top: 100px;
}

.words {
  padding-bottom: 265px;
}
@media (max-width: 768px) {
  .words {
    padding-bottom: 50px;
  }
}

.words_wrapper * {
  font-size: 14px;
}

.words_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin-top: 25px;
  padding: 45px 38px;
  background: #f7f7f7;
}
@media (max-width: 768px) {
  .words_box {
    margin-top: 45px;
    padding: 45px 15px 25px 15px;
  }
}
.words_box::before {
  content: "問";
  margin-right: 20px;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 63px;
  color: #fff;
  background-color: #00dbde;
  background: linear-gradient(94.07deg, #92fe9d 0%, #00c9ff 100%);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .words_box::before {
    position: absolute;
    top: -30px;
    left: calc(50% - 30px);
  }
}
.words_box p {
  flex: 1;
  line-height: 25px;
}

.words_hide {
  font-weight: 600;
  font-size: 16px;
  color: #27e1f4;
}
.words_hide:hover {
  cursor: pointer;
}

@media (max-width: 768px) {
  .words_btn {
    padding: 0 20px;
  }
}
.words_btn .btn {
  width: auto;
}

.test {
  counter-reset: step;
}
@media (max-width: 768px) {
  .test {
    padding: 15px 20px 90px 20px;
  }
}
.test h2 {
  margin-bottom: 40px;
  font-weight: 600;
  text-align: center;
}
.test h3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
  text-align: center;
  font-weight: 600;
  color: #666666;
}
.test h3::before, .test h3::after {
  display: block;
  content: "";
  width: 70px;
  height: 1px;
  background: #cccccc;
}
@media (max-width: 768px) {
  .test h3::before, .test h3::after {
    width: 30px;
  }
}
.test h3::before {
  margin-right: 13px;
}
.test h3::after {
  margin-left: 13px;
}

.steps {
  position: relative;
  counter-increment: step;
}
.steps::before {
  display: table;
  position: absolute;
  content: "STEP" counter(step);
  top: -20px;
  left: 50%;
  margin-left: -59px;
  width: 118px;
  height: 40px;
  font-weight: 600;
  text-align: center;
  line-height: 40px;
  color: #fff;
  background: #27e1f4;
}

.test_numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.test_numbers li {
  margin-right: 50px;
}
.test_numbers li:last-child {
  margin-right: 0;
}
@media (max-width: 768px) {
  .test_numbers li {
    margin-right: 0;
    width: 38%;
  }
}

.test_conditions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.test_periods {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.test_periods::before {
  content: "";
  display: block;
  width: 23%;
  order: 1;
}
.test_periods::after {
  content: "";
  display: block;
  width: 23%;
}
.test_periods li {
  width: 23%;
}
@media (max-width: 768px) {
  .test_periods li {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .li_space {
    display: none;
  }
}

@media (max-width: 768px) {
  .period_all {
    text-align: right;
  }
}

.test_cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
  margin-top: 0;
  padding: 5px 0 20px 0;
  padding-left: 24%;
  border-bottom: 1px solid #f7f7f7;
}
@media (max-width: 768px) {
  .test_cats {
    padding-left: 0;
  }
}
.test_cats:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.test_cats::after {
  content: "";
  width: 32.8%;
}
.test_cats dt {
  position: absolute;
  top: 4px;
  left: 0;
}
@media (max-width: 768px) {
  .test_cats dt {
    position: static;
    width: 100%;
  }
}
.test_cats dd {
  width: 30%;
}
@media (max-width: 768px) {
  .test_cats dd {
    width: 100%;
  }
}
.test_cats input[type=checkbox] + label {
  padding-left: 31px;
}
.test_cats input[type=checkbox] + label::before {
  margin-left: -31px;
}

.test_img {
  margin-top: 45px;
  display: flex;
  justify-content: space-evenly;
}
.test_img img:first-child {
  margin-right: 53px;
}
@media (max-width: 768px) {
  .test_img img:first-child {
    margin-right: 0;
  }
}
.test_img.mb_35 img {
  margin: 0;
  margin-bottom: 35px;
}

.words .test_img {
  max-width: 686px;
  justify-content: space-evenly;
  margin: 0 auto 100px;
}
@media (max-width: 768px) {
  .words .test_img {
    text-align: center;
    margin-bottom: 15px;
  }
}

.test_btn {
  margin-top: 60px;
}

.test_btn2 {
  margin-top: 35px;
}

.test_error {
  margin: 30px auto 20px auto;
  padding: 15px 20px;
  max-width: 1000px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  background: #e81e1e;
}

.test_cation {
  margin: 30px auto 20px auto;
  padding: 15px 20px;
  max-width: 1000px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  background: #ffda00;
}

.question_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 25px;
  margin-bottom: 30px;
  padding: 45px 38px;
  background: #f7f7f7;
}
@media (max-width: 768px) {
  .question_box {
    position: relative;
    margin: 45px 0 30px 0;
    padding: 45px 15px 30px 15px;
  }
}

.question_box_num {
  margin-right: 20px;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  color: #fff;
  background-color: #00dbde;
  background: linear-gradient(94.07deg, #92fe9d 0%, #00c9ff 100%);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .question_box_num {
    position: absolute;
    top: -30px;
    left: 50%;
    margin-left: -30px;
  }
}

.question_box_info {
  flex: 1;
}
.question_box_info p {
  font-size: 14px;
  line-height: 25px;
}

.question_box_source {
  margin-top: 40px;
  text-align: right;
  font-size: 12px;
  color: #666666;
}
@media (max-width: 768px) {
  .question_box_source {
    text-align: left;
  }
}

.question_box_link {
  text-align: right;
}
.question_box_link a {
  font-size: 10px;
  color: #0000ee;
}

.question_box_cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .question_box_cats {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
.question_box_cats li {
  padding: 3px 0;
}
.question_box_cats li::after {
  display: inline-block;
  content: "";
  vertical-align: middle;
  width: 15px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/arrow_gray.svg");
}
.question_box_cats li:last-child::after {
  display: none;
}
.question_box_cats li span {
  padding: 4px 10px;
  font-size: 12px;
  line-height: 1;
  color: #999;
  background: #fff;
  border: 1px solid #999;
  border-radius: 10px;
}

.question_img {
  margin: 20px 0 70px 0;
  text-align: center;
}
.question_img img {
  width: 60%;
}
@media (max-width: 768px) {
  .question_img img {
    width: 100%;
  }
}

.question_options {
  margin-top: 15px;
  margin-bottom: 45px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.question_options li {
  width: calc(50% - 18px);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  padding: 15px 20px 15px 84px;
  background-color: #f7f7f7;
  position: relative;
  min-height: 114px;
}
.question_options li p {
  font-size: 14px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .question_options li {
    min-height: 79px;
    width: 100%;
    padding: 10px 10px 10px 60px;
  }
}
.question_options li:after {
  position: absolute;
  content: "";
  left: 0;
  top: calc(50% - 57px);
  width: 62px;
  height: 114px;
  background: url("./../img/icon_question_arrow.svg");
  background-size: cover;
  background-position: left center;
}
@media (max-width: 768px) {
  .question_options li:after {
    width: 43px;
    height: 79px;
    top: calc(50% - 39.5px);
  }
}
@media (max-width: 768px) {
  .question_options li:nth-child(odd) {
    margin-right: 0;
  }
}
.question_options li:hover {
  cursor: pointer;
  opacity: 0.5;
}
.question_options span {
  position: absolute;
  left: 10px;
  top: 50%;
  color: #fff;
  z-index: 1;
  font-size: 18px;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .question_options span {
    left: 5px;
    font-size: 14px;
  }
}

.question_answer {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
  margin: auto;
  margin-top: 30px;
  margin-bottom: 50px;
  padding: 40px;
}
@media (max-width: 768px) {
  .question_answer {
    width: 100%;
    padding: 30px;
  }
}
.question_answer::before {
  position: absolute;
  content: "判定";
  top: -44px;
  left: 50%;
  margin-left: -44px;
  width: 88px;
  height: 88px;
  line-height: 88px;
  text-align: center;
  color: #fff;
  border-radius: 50%;
}

.question_answer_result {
  padding: 35px 20px 20px 20px;
  text-align: center;
  margin: auto;
}
@media (max-width: 768px) {
  .question_answer_result {
    margin: 0 auto 20px auto;
  }
}
.question_answer_result::before {
  display: block;
  content: "";
  margin: 0 auto;
  width: 160px;
  height: 160px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  .question_answer_result::before {
    width: 90px;
    height: 90px;
  }
}
.question_answer_result::after {
  display: table;
  margin: 10px auto 0 auto;
  font-weight: 600;
  line-height: 31px;
  text-align: center;
}
.question_answer_result img {
  width: 80px;
}
.question_answer_result p {
  margin-top: 25px;
  color: #666666;
}

.question_answer_head {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
}
.question_answer_head label {
  display: table;
  padding: 0 10px;
  font-weight: 600;
  line-height: 31px;
  text-align: center;
  color: #fff;
}

.question_answer_desc {
  flex: 1;
  margin: auto;
  margin-bottom: 20px;
  padding-left: 35px;
}
@media (max-width: 768px) {
  .question_answer_desc {
    flex: auto;
    width: 100%;
    padding-left: 0;
  }
}
.question_answer_desc p {
  font-size: 14px;
  line-height: 25px;
}

.question_answer_label {
  display: table;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 600;
  line-height: 31px;
  background: #fff;
}
.question_answer_label::before {
  display: inline-block;
  margin-right: 10px;
  padding: 0 20px;
  height: 31px;
  line-height: 31px;
  font-weight: 400;
  color: #fff;
}

.question_answer_note {
  position: absolute;
  right: 1%;
  bottom: 0;
  font-size: 12px !important;
  color: #666;
}
@media (max-width: 768px) {
  .question_answer_note {
    right: 2%;
  }
}

.question_answer_img {
  margin-top: 25px;
}
.question_answer_img img {
  width: 100%;
}

.question_answer.correct {
  background: #f7f7f7;
}
.question_answer.correct::before {
  background-color: #00dbde;
  background: linear-gradient(85.93deg, #f8ed78 0%, #27e1f4 100%);
}
.question_answer.correct .question_answer_head label {
  background: #333333;
}
.question_answer.correct .question_answer_result::before {
  background-image: url("../img/mark_ok.svg");
}
.question_answer.correct .question_answer_result::after {
  content: "正解";
}

.question_answer.wrong {
  background: #f7f7f7;
}
.question_answer.wrong::before {
  background-color: #00dbde;
  background: linear-gradient(94.07deg, #92fe9d 0%, #00c9ff 100%);
}
.question_answer.wrong .question_answer_head label {
  background: #666666;
}
.question_answer.wrong .question_answer_result::before {
  background-image: url("../img/mark_ng.svg");
}
.question_answer.wrong .question_answer_result::after {
  content: "不正解";
}

.answer {
  padding-bottom: 30px;
}

.acd_content {
  border: 1px solid #27e1f4;
  border-radius: 4px;
  display: table;
  margin: 0 auto;
  padding: 16px 35px 14px 35px;
  width: 300px;
  text-align: center;
  line-height: 1;
  color: #27e1f4;
  cursor: pointer;
}
.acd_content span {
  font-size: 18px;
}

.acd-close {
  position: relative;
}
.acd-close span::before {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
}

.acd-open {
  position: relative;
}
.acd-open span::before {
  content: "\f106";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
}

.question_explaination_link {
  text-align: center;
  margin-top: 10px;
}
.question_explaination_link a {
  color: #27e1f4;
  font-size: 16px;
  text-decoration: underline;
}

.question_choice {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 30px 0;
}
@media (max-width: 768px) {
  .question_choice {
    flex-direction: column;
  }
}
.question_choice_box {
  display: flex;
  background: #f7f7f7;
  width: 49%;
  padding: 10px;
  align-items: center;
}
.question_choice_box:nth-child(n+3) {
  margin-top: 20px;
}
.question_choice_box:first-child {
  margin-top: 0;
}
@media (max-width: 768px) {
  .question_choice_box {
    width: 100%;
    margin-top: 20px;
  }
  .question_choice_box:nth-child(n+3) {
    margin-top: 20px;
  }
}
.question_choice_box img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .question_choice_box img {
    width: 35px;
    height: 35px;
    margin-right: 5px;
  }
}
.question_choice_box_num {
  margin-right: 20px;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  color: #fff;
  background-color: #00dbde;
  background: linear-gradient(94.07deg, #92fe9d 0%, #00c9ff 100%);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .question_choice_box_num {
    margin-right: 10px;
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}
.question_choice_box_txt {
  width: calc(100% - 120px);
}
@media (max-width: 768px) {
  .question_choice_box_txt {
    width: 70%;
  }
}
.question_choice_box_txt p {
  font-size: 14px;
  font-weight: bold;
}

.result h2 {
  margin: 60px 0 20px;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
}
.result .close-area {
  margin-top: 2rem;
  text-align: center;
}
.result .btn-width {
  width: 307px;
}
@media (max-width: 768px) {
  .result .btn-width {
    width: 100%;
  }
}

.result_toggle {
  border: 1px solid #ccc;
  border-radius: 20px;
  text-align: center;
  padding: 10px 0;
  margin: 10px auto;
  width: 300px;
  display: block;
  background: #FFF;
  color: #333;
  font-weight: 300;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .result_toggle {
    margin-top: 10px;
    margin-bottom: -1px;
  }
}

.result_toggle::before {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
}

.result_toggle.close::before {
  content: "\f106";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
}

.close-area .result_toggle::before {
  content: none;
}

.result_outline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  .result_outline {
    flex-wrap: wrap;
    margin-top: -20px;
  }
}
.result_outline li {
  flex: 1;
  margin-right: 15px;
  padding: 40px 15px;
  text-align: center;
  font-weight: 600;
  color: #27e1f4;
  background: rgba(39, 225, 244, 0.1);
}
@media (max-width: 768px) {
  .result_outline li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    flex: auto;
    margin-top: 20px;
    margin-right: 0;
    padding: 20px;
    width: 100%;
  }
}
.result_outline li:last-child {
  margin-right: 0;
}
.result_outline li span {
  display: inline-block;
  margin-top: 40px;
  line-height: 1;
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .result_outline li span {
    margin-top: 0;
  }
}
.result_outline li span b {
  font-size: 40px;
}
.result_outline li span i {
  font-style: normal;
  color: #999999;
}

.result_table {
  width: 100%;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}
@media (max-width: 768px) {
  .result_table {
    margin-top: 15px;
    border-top: none;
  }
}
@media (max-width: 768px) {
  .result_table tr {
    border-bottom: 1px solid #cccccc;
  }
}
.result_table tr:nth-child(even) {
  background: #f7f7f7;
}
@media (max-width: 768px) {
  .result_table tr:nth-child(even) {
    background: #fff;
  }
}
.result_table th,
.result_table td {
  padding: 15px 30px;
  font-size: 14px;
}
@media (max-width: 768px) {
  .result_table th,
  .result_table td {
    padding: 10px 15px;
  }
  .result_table th:first-child,
  .result_table td:first-child {
    width: 130px;
  }
  .result_table th:last-child,
  .result_table td:last-child {
    text-align: right;
    padding-left: 0;
  }
}
.result_table th {
  text-align: center;
  color: #666666;
}
@media (max-width: 768px) {
  .result_table th {
    background: #f7f7f7;
  }
  .result_table th:first-child {
    padding-left: 30px;
    text-align: left;
  }
}
.result_table img {
  width: 20px;
}

.contact_table {
  margin: 30px 0 20px;
  width: 100%;
}
.contact_table th,
.contact_table td {
  padding: 10px 0;
  vertical-align: top;
}
@media (max-width: 768px) {
  .contact_table th,
  .contact_table td {
    width: 100%;
  }
}
.contact_table th {
  padding-top: 15px;
  padding-right: 25px;
  width: 200px;
  font-weight: 700;
}
.contact_table th.required::after {
  content: "＊";
  margin-left: 10px;
  font-weight: 700;
  color: #e81e1e;
}
@media (max-width: 768px) {
  .contact_table tr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  .contact_table td {
    padding-top: 0;
  }
}
.contact_table input[type=text],
.contact_table input[type=email],
.contact_table input[type=tel],
.contact_table textarea {
  padding: 5px 10px;
  width: 100%;
  border: 1px solid #cccccc;
}
.contact_table textarea {
  height: 200px;
}

.contact_msg {
  margin: 15px 0;
  padding: 15px;
  text-align: center;
  font-weight: 700;
}
.contact_msg--success {
  color: #fc00ef;
  background: rgba(252, 0, 239, 0.1);
  border: 1px solid #fc00ef;
}
.contact_msg--error {
  color: #e81e1e;
  background: rgba(232, 30, 30, 0.1);
  border: 1px solid #e81e1e;
}

.contact_error {
  margin-top: 5px;
  font-weight: 700;
  font-size: 14px;
  color: #e81e1e;
}

.column {
  counter-reset: heading;
}
.column h1 {
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 28px;
  line-height: 40px;
}
@media (max-width: 768px) {
  .column h1 {
    font-size: 24px;
    line-height: 32px;
  }
}
.column .column_post p:not(.fukidashi_text) {
  margin-top: 25px;
  line-height: 2;
  word-break: break-all;
  padding: 0 7px;
}
.column .column_post p:not(.fukidashi_text) a {
  color: #27e1f4;
}
.column .column_post .wp-block-image {
  cursor: pointer;
}
.column .column_post tr td img {
  cursor: pointer;
}
.column .column_post h2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 50px 0 50px 0;
  background: #f7f7f7;
  counter-increment: heading;
}
@media (max-width: 768px) {
  .column .column_post h2 {
    margin: 25px 0;
  }
}
.column .column_post h2::before {
  content: "0" counter(heading);
  padding: 16px 22px;
  font-size: 24px;
  color: #fff;
  background: linear-gradient(94.07deg, #92fe9d 0%, #00c9ff 100%);
  height: 38.4px;
}
@media (max-width: 768px) {
  .column .column_post h2::before {
    padding: 12px;
  }
}
.column .column_post h2 span {
  flex: 1;
  font-weight: 700;
  padding: 22px 27px;
}
@media (max-width: 768px) {
  .column .column_post h2 span {
    padding: 0px 17px;
  }
}
.column .column_post h3 {
  margin: 30px 0;
  padding: 0 10px 5px 10px;
  font-weight: 700;
  font-size: 18px;
  border-bottom: 1px solid #74f2b3;
}
.column .column_post h4 {
  margin: 30px 0;
  padding: 5px;
  font-weight: 700;
  background: #f7f7f7;
}
.column .column_post ul,
.column .column_post ol {
  margin: 25px auto;
  padding: 0 7px 0 15px;
}
.column .column_post ul li {
  padding-left: 16px;
}
.column .column_post ul li::before {
  display: inline-block;
  content: "";
  margin-right: 10px;
  margin-left: -16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #27e1f4;
}
.column .column_post ol li {
  counter-increment: number;
  padding-left: 26px;
}
.column .column_post ol li::before {
  content: counter(number) ".";
  margin-left: -26px;
  margin-right: 10px;
  font-weight: 700;
  color: #27e1f4;
}
.column .column_post .wp-element-caption {
  text-align: right;
  font-size: 12px;
  margin-top: 10px;
  padding: 0px 5px;
}
.column .column_post strong {
  font-weight: bold;
}

.column-media_toc_head {
  margin: 50px 0 14px 0;
  padding: 20px 15px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  background: #f7f7f7;
  border-left: 2px solid #27e1f4;
}

.column_toc {
  position: relative;
  margin-top: 90px;
  padding: 67px 60px 67px 210px;
}
@media (max-width: 768px) {
  .column_toc {
    margin: 60px -20px 0 -20px;
    padding: 75px 20px 20px 20px;
  }
}
.column_toc * {
  position: relative;
  z-index: 2;
}
.column_toc ul {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.88);
  counter-reset: number;
}
.column_toc ul li {
  padding: 10px 0 10px 40px;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  counter-increment: number;
}
.column_toc ul li:hover {
  cursor: pointer;
  opacity: 0.7;
}
.column_toc ul li::before {
  content: "0" counter(number);
  margin-right: 18px;
  margin-left: -40px;
  font-size: 20px;
  color: #27e1f4;
}
.column_toc::after {
  display: block;
  position: absolute;
  content: "";
  bottom: 57px;
  left: 25px;
  width: 110px;
  height: 108px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/character_05.png");
  z-index: 2;
}
@media (max-width: 768px) {
  .column_toc::after {
    top: -40px;
    right: 20px;
    left: auto;
    bottom: auto;
    width: 80px;
    transform: scale(-1, 1);
  }
}
.column_toc::before {
  display: block;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(94.07deg, #92fe9d 0%, #00c9ff 100%);
  opacity: 0.2;
  z-index: 1;
}

.column_toc_head {
  position: absolute;
  top: -28px;
  left: 40px;
  font-weight: 700;
  font-size: 18px;
}
@media (max-width: 768px) {
  .column_toc_head {
    left: 20px;
  }
}
.column_toc_head span {
  font-size: 36px;
}

.column_img {
  margin: 40px 0;
}
.column_img img {
  width: 100%;
}

.column_question {
  margin: 50px 0;
  padding: 30px 20px 40px 20px;
  background: #f7f7f7;
}
.column_question p {
  font-size: 18px;
  font-weight: 700;
}

.column_btn {
  margin-top: 80px;
  text-align: center;
}
.column_btn a.btn {
  width: 85%;
}
@media (max-width: 768px) {
  .column_btn a.btn {
    width: 100%;
  }
}

.column_caution {
  margin-top: -20px;
  font-size: 12px;
  color: #666666;
}
.column_caution a {
  color: #666666;
}

.media {
  margin-top: 20px;
}
.media h1 {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 28px;
  line-height: 40px;
}

.animate73 {
  -webkit-animation-name: animate73;
  -moz-animation-name: animate73;
  -o-animation-name: animate73;
  animation-name: animate73;
  animation-duration: 1.3s;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
}

@keyframes animate73 {
  0% {
    transform: scale(0.92);
  }
  40% {
    transform: scale(0.97);
  }
  60% {
    transform: scale(0.86);
  }
  80% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.92);
  }
}
.back-to-top {
  display: none; /* 初めは非表示 */
  position: fixed; /* 位置を固定 */
  bottom: 20px; /* 下から20pxの位置 */
  right: 20px; /* 右から20pxの位置 */
  padding: 16px 17px;
  border-radius: 5px;
  background-color: #555;
  color: #fff;
  cursor: pointer;
  border: none;
  z-index: 1000; /* 他の要素の上に表示 */
}

a.c-cta-link {
  color: inherit;
  text-decoration: underline;
}

a.c-cta-link:hover {
  color: inherit;
  text-decoration: none;
}

.sitepolicy h2 {
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}
.sitepolicy h2::after {
  display: block;
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100px;
  height: 1px;
  background: #27e1f4;
}
.sitepolicy h3 {
  position: relative;
  margin: 40px 0 20px 0;
  font-weight: 600;
}
@media (max-width: 768px) {
  .sitepolicy h3 {
    padding-bottom: 10px;
  }
}
.sitepolicy h3::before {
  display: inline-block;
  content: "";
  vertical-align: middle;
  margin-right: 15px;
  width: 30px;
  height: 1px;
  background: #27e1f4;
}
@media (max-width: 768px) {
  .sitepolicy h3::before {
    position: absolute;
    bottom: 0;
  }
}
.sitepolicy p {
  font-size: 14px;
  line-height: 2;
}
.sitepolicy ol,
.sitepolicy ul {
  margin-top: 40px;
}
.sitepolicy ol li,
.sitepolicy ul li {
  font-size: 14px;
}
.sitepolicy ol {
  counter-reset: number;
}
.sitepolicy ol li {
  counter-increment: number;
}
.sitepolicy ol li::before {
  content: "（" counter(number) "）";
}
.sitepolicy ul {
  padding-left: 20px;
}
.sitepolicy ul li::before {
  content: "・";
  margin-left: -18px;
}

.toc {
  font-size: 1em;
  padding: 1em 2em 2em;
  background-color: #FCECEA; /*←背景色*/
  box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.1);
  border: none;
}

.toc-title {
  font-size: 1.2em;
  font-weight: 500;
  color: #EE817B; /*←タイトルの文字色*/
  margin: 1em;
}

.toc-title:before {
  font-family: FontAwesome;
  content: "\f002"; /*←アイコン*/
  font-size: 1.2em;
  border-radius: 50%;
  color: #FFF; /*←アイコンの色*/
  background-color: #FAAFAA; /*←アイコンの背景色*/
  padding: 0.5em;
  margin-right: 0.5em;
}

.toc-content ol {
  position: relative;
}

.toc-content ol li {
  padding: 1em 0 0 1em;
  border-bottom: dotted 1px #FFB2AE;
  list-style: none;
}

.toc a {
  color: #928484; /*←見出しの文字色*/
}

.toc-content ol li:before {
  font-family: FontAwesome;
  content: "\f105"; /*←見出しアイコン*/
  color: #FAAFAA; /*←見出しアイコンの色*/
  position: absolute;
  left: 1em;
}

.toc-content ol li:last-child {
  border-bottom: none;
}

.continue {
  display: flex;
  justify-content: center;
}

.continue span {
  display: block;
  /*点の幅サイズ*/
  width: 10px;
  /*点の高さサイズ*/
  height: 10px;
  /*点の色*/
  background-color: #ccc;
  /*角を丸くする*/
  border-radius: 100vh;
  /*点周りの余白。左の値が上下、右の値が左右*/
  margin: 10px 0;
}

.continue .dot-1,
.continue .dot-2,
.continue .dot-3 {
  /*アニメーションの指定。左から、アニメーション名、アニメーション時間の長さ（1sは1秒）、infiniteは無限に再生を繰り返す*/
  -webkit-animation: continue 1s infinite;
  -moz-animation: continue 1s infinite;
}

.continue .dot-1 {
  /*アニメーションし始める時間*/
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
}

.continue .dot-2 {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
}

.continue .dot-3 {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
}

@-webkit-keyframes continue {
  /*アニメーション時間軸の指定。0%は開始地点、50%は真ん中、100%は最後の地点*/
  0% {
    /*不透明度の指定。1は不透明度100%*/
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes continue {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
video {
  display: block !important;
  /*幅*/
  width: 100%;
  vertical-align: bottom;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  /*動画を真ん中寄せにしない場合は以下２行を削除*/
  margin-left: auto;
  margin-right: auto;
}

.animate73 {
  -webkit-animation-name: animate73;
  -moz-animation-name: animate73;
  -o-animation-name: animate73;
  animation-name: animate73;
  animation-duration: 1.3s;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
}

@keyframes animate73 {
  0% {
    transform: scale(0.92);
  }
  40% {
    transform: scale(0.97);
  }
  60% {
    transform: scale(0.86);
  }
  80% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.92);
  }
}

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