@charset "UTF-8";
/* import */ /* カラー */
/* レスポンシブ */
/*****STANDART CSS******/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var,
video {
  margin: 0;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /******SMOOTH SCROLL ANCHOR******/
}

/*****STANDART CSS******/
/* ---------common--------- */
body {
  margin: 0;
  font-family: YuGothic, "Yu Gothic", sans-serif;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
  width: 100%;
}

h2, h3, p {
  margin-bottom: 2em;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

/* flex */
.row {
  display: flex;
  flex-wrap: wrap;
}

.between {
  justify-content: space-between;
}

.align_start {
  align-items: flex-start;
}

.align_center {
  align-items: center;
}

.align_end {
  align-items: flex-end;
}

.flex_center {
  justify-content: center;
}

.flex_start {
  justify-content: flex-start;
}

.flex_end {
  justify-content: flex-end;
}

.stretch {
  align-items: stretch;
}

.reverse {
  flex-direction: row-reverse;
}

/* inner */
.inner {
  width: 600px;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .inner {
    width: 100%;
  }
}

/* display */
@media (max-width: 599px) {
  .sp_dn {
    display: none;
  }
}

.sp_db {
  display: none;
}
@media (max-width: 599px) {
  .sp_db {
    display: block;
  }
}

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

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

section {
  padding: 50px 0;
}

.fv img {
  height: auto;
}

.single_page p {
  color: #43464B;
}
.single_page img {
  width: 90%;
  margin: 0 auto;
  display: block;
}
.single_page .wp-element-caption {
  width: 90%;
  margin: 10px auto 0;
  text-align: right;
  color: #8C8C8C;
  font-size: 12px;
}

.mb_0 {
  margin-bottom: 0 !important;
}

/* 下層ページ共通 */
/* header */
.menu_btn {
  width: 60px;
  height: 30px;
  position: relative;
  margin-top: 10px;
  z-index: 4000;
}
.menu_btn span {
  display: inline-block;
  height: 4px;
  width: 35px;
  background-color: #000;
  border-radius: 10px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.menu_btn span:nth-child(1) {
  top: 5px;
}
.menu_btn span:nth-child(2) {
  top: 15px;
}
.menu_btn span:nth-child(3) {
  top: 25px;
}

.nav_sp {
  left: 100%;
  opacity: 0;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 500;
  transition: 500ms ease-out;
  padding: 90px 0 0;
  text-align: center;
}
.nav_sp li {
  margin-bottom: 20px;
}
.nav_sp li a {
  color: #000;
  font-size: 18px;
}

.open .menu_btn {
  z-index: 1000;
}
.open .menu_btn span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50% !important;
  left: 50%;
}
.open .menu_btn span:nth-child(2) {
  opacity: 0;
}
.open .menu_btn span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50% !important;
  left: 50%;
}

.open .nav_sp {
  opacity: 1 !important;
  left: 0 !important;
}

/* footer */
h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

h3 {
  border-left: 6px solid #00CED1;
  padding-left: 20px;
  font-size: 18px;
  color: #43464B;
  margin: 0 20px 20px;
}

.wp-block-image {
  margin-bottom: 2em;
}

.single_page p {
  text-align: center;
}

.single_page .wp-block-table table {
  width: 90%;
  margin: 0 auto;
}

.custom-balloon .wp-block-columns {
  flex-wrap: nowrap !important;
  margin-bottom: 2em;
}

.custom-balloon {
  width: 90%;
  margin: 0 auto;
}
.custom-balloon.hukidashi_reverse .wp-block-columns {
  flex-direction: row-reverse;
}
.custom-balloon.hukidashi_reverse .wp-block-columns .hukidashi_text::before {
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 20px solid #F5F5F5;
  border-right: none;
  left: auto;
  right: -20px !important;
}

.hukidashi_img {
  max-width: 50px;
}

.hukidashi_img img {
  width: 100%;
}

.hukidashi_text {
  max-width: 260px;
  background-color: #F5F5F5;
  padding: 15px;
  border-radius: 10px;
  position: relative;
}

.hukidashi_text p {
  margin: 0;
  text-align: left;
}

.hukidashi_img .wp-block-image .alignleft {
  margin: 0;
}

.hukidashi_text::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: -20px;
  top: 20%;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 20px solid #F5F5F5;
}

.bulleted_text {
  border: 1px solid #C0C0C0;
  border-radius: 5px;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 2em;
}

.bulleted_text p {
  margin-bottom: 0;
}

.bulleted_text .custom-block-title {
  background-color: #00CED1;
  padding: 5px;
  color: #fff;
  text-align: center;
}

.bulleted_text ul {
  padding: 10px;
  list-style: none;
}

.bulleted_text li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #D3D3D3;
  font-weight: bold;
  position: relative;
  padding-left: 25px;
}

.bulleted_text li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.bulleted_text li::before {
  content: url(../images/icon_check.png);
  position: absolute;
  top: 5%;
  left: 0;
  transform: scale(0.7);
}

.box_text {
  border: 1px solid #00CED1;
  background-color: rgba(0, 206, 209, 0.1);
  padding: 20px;
  border-radius: 5px;
  width: 90%;
  margin: 0 auto 2em;
}

.box_text p {
  color: #43464B;
  margin-bottom: 0;
  text-align: left;
}

.single_page .slide_list {
  margin-bottom: 4em;
}
.single_page .slide_list figure {
  margin: 0 !important;
}
.single_page .slide_list .wp-block-column {
  margin: 0 10px;
}
.single_page .slide_list .wp-block-column img {
  border-radius: 10px 10px 0 0;
  width: 100%;
}
.single_page .slide_list .wp-block-column p {
  border: 1px solid #C0C0C0;
  padding: 10px;
  margin-bottom: 0;
  border-radius: 0 0 10px 10px;
}
.single_page .slide_list .slick-dots li.slick-active button:before {
  color: #87CEEB;
  opacity: 1;
}
.single_page .slide_list .slick-dots li button:before {
  font-size: 36px;
}

.cv-btn__link {
  animation-name: dokidoki;
  animation-delay: 0s;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  padding: 0 0 2em;
}
.cv-btn__link.cv-btn__link_common_green .wp-block-button__link {
  background: url(http://erevista.heteml.net/test.shima/2/wp-content/uploads/2023/07/Group-109.png) top/cover no-repeat;
  box-shadow: none;
  border: 1.5px solid #98FB98;
  text-shadow: 0px 0px 10px #1A941A;
  box-shadow: 0px 3px 14px -20px rgba(30, 198, 30, 0.14), 0px 6px 18px -11px rgba(30, 198, 30, 0.2), inset 0px 0px 25px #09C509;
}
.cv-btn__link.cv-btn__link_common_green .wp-block-button__link::before {
  content: none;
}
.cv-btn__link.cv-btn__link_common_orange .wp-block-button__link {
  background: url(http://erevista.heteml.net/test.shima/2/wp-content/uploads/2023/07/Group-110.png) top/cover no-repeat;
  box-shadow: none;
  border: 1.5px solid #FFA500;
  text-shadow: 0px 0px 10px #CB5B0A;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1019607843);
}
.cv-btn__link.cv-btn__link_common_orange .wp-block-button__link::before {
  content: none;
}
.cv-btn__link .wp-block-button__link {
  margin: 0 auto;
  width: 320px;
  height: 70px;
  border-radius: 999px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-shadow: 0px 0px 10px rgba(25, 23, 143, 0.37);
  background: linear-gradient(113.26deg, #00ced1 15.03%, #87a3eb 50%, #b19cd9 84.97%);
  box-shadow: 0px 26px 10px -20px rgba(0, 96, 209, 0.1), 0px 30px 20px -11px rgba(0, 96, 209, 0.18), inset 0px 0px 25px #daadde;
  position: relative;
}
.cv-btn__link .wp-block-button__link::before {
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  height: 35px;
  width: 290px;
  border-radius: 999px;
}
.cv-btn__link .wp-block-button__link::after {
  content: "";
  background: url(../images/cv_btn_icon.svg);
  background-size: cover;
  background-position: center;
  width: 14px;
  height: 12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
}
.cv-btn__link .wp-block-button__link a {
  color: #fff;
}

@keyframes dokidoki {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  60% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.cv-btn__link_color a {
  background: transparent;
}

.arrow_orange {
  width: 200px;
  margin: 0 auto 2em;
}

.caption {
  margin-top: 2em;
  background-color: #F5F5F5;
  padding: 20px;
}
.caption ul {
  list-style: none;
  padding: 0;
}
.caption li {
  color: #8C8C8C;
  font-size: 12px;
  font-weight: 500;
  text-indent: -0.7rem;
  padding-left: 0.7rem;
}

.voices {
  background-color: #00CED1;
  padding: 20px;
  margin: 2em 0;
}
.voices .voice_item {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 10px;
  margin-bottom: 30px;
}
.voices .voice_item .voice_prof {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.voices .voice_item .voice_prof .voice_icon {
  width: 60px;
  margin-right: 10px;
}
.voices .voice_item .voice_prof .voice_name p {
  font-size: 15px;
  color: #43464B;
  font-weight: bold;
  margin-bottom: 10px;
}
.voices .voice_item .voice_prof .voice_name .star {
  width: 70px;
}
.voices .voice_item .voice_prof .voice_name .star img {
  vertical-align: top;
}
.voices .voice_item .voice_text p {
  margin-bottom: 0;
  color: #8C8C8C;
}

.prices {
  width: 90%;
  margin: 0 auto;
}
.prices .price_row {
  display: flex;
}
.prices .price_row li {
  width: 24%;
}
.prices .price_row li:first-child {
  width: 28%;
}
.prices .price_head {
  background-color: #43464B;
  border-radius: 15px 15px 0 0;
}
.prices .price_head li {
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  padding: 10px 0;
}
.prices .price_body .price_row:last-child li:first-child {
  justify-content: center;
  border-radius: 0 0 0 15px;
}
.prices .price_body .price_row:last-child li:first-child img {
  width: auto;
  height: 40px;
}
.prices .price_body .price_row:last-child li:last-child {
  border-radius: 0 0 15px 0;
}
.prices .price_body li {
  border: 1px solid #D3D3D3;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  overflow: hidden;
}
.prices .price_body li:first-child {
  justify-content: center;
}
.prices .price_body li:first-child img {
  width: auto;
  height: 40px;
}
.prices .price_body li p {
  margin-bottom: 0;
  text-align: center;
}
.prices .price_body li img {
  width: 40px;
  margin: 0 auto 10px;
  display: block;
}

.center {
  text-align: center;
}

.text_nomal {
  font-size: 14px !important;
  font-weight: none !important;
}

.attention {
  color: red !important;
  font-weight: bold !important;
}

.list {
  font-size: 18px;
  text-align: left;
  margin: 15px;
  padding: 20px;
  padding-left: 25px;
  background-color: white;
  border-radius: 25px;
}

.contents1, .contents2, .contents3, .contents4 {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  vertical-align: bottom;
  vertical-align: top;
}

img {
  width: 90%;
  margin: 0 auto;
}

.yjrs {
  width: 20% !important;
  margin: 0 auto;
}

.contents1 img, .contents2 img, .contents3 img, .contents4 img {
  width: 90%;
  margin: 0 auto;
  border-radius: 25px;
}

.question {
  display: flex;
  margin: 0 auto;
  text-align: center;
}

.question label {
  display: block;
  width: 90%;
  padding: 15px;
  margin: 10px auto;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  border-radius: 40px;
  cursor: pointer;
  position: relative;
}

.question label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  border: 4px solid transparent;
  background: linear-gradient(165deg, #00ced1 30%, #b19cd9 100%) border-box border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: destination-out;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
          mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

.question input:checked + label {
  background: linear-gradient(113.26deg, #00ced1 15.03%, #87a3eb 50%, #b19cd9 84.97%);
  color: white;
}

.question input:checked + label::before {
  border: none;
}

.question input {
  display: none;
}

.CTA {
  animation: anime1 0.5s ease 0s infinite alternate;
}

/**/
.question-box.active {
  display: block;
}

.question-box.active .question-item {
  animation: fadeIn 0.5s ease-in-out 0.6s forwards;
}

.question label.cat-btn {
  display: block;
  width: 90%;
  background: white;
  border: 3px solid white;
  padding: 15px;
  margin: 10px auto;
  margin-top: 40px;
  margin-bottom: 40px;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  /*animation: anime1 0.5s ease 0s infinite alternate;*/
}

.question input:checked + label.cat-btn {
  background: white;
  border: 3px solid white;
}

@keyframes anime1 {
  from {
    transform: scale(0.9, 0.9);
  }
  to {
    transform: scale(1, 1);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.questionnaire .questionnaire_inner {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 10px;
}
.questionnaire .question-item {
  padding: 0;
  margin-bottom: 40px;
}
.questionnaire .question-item:last-child {
  margin-bottom: 0;
}
.questionnaire p {
  margin: 0;
}
.questionnaire p span {
  text-align: center;
}

.question-box {
  margin-bottom: 30px;
}
.question-box:last-child {
  background-color: transparent;
}
.question-box:last-child .question {
  justify-content: center;
}
.question-box:last-child .question input:checked + label.cat-btn {
  background-color: transparent;
  border: none;
  margin: 0;
}
.question-box:last-child .wp-block-buttons > .wp-block-button {
  padding: 0;
}
.question-box:last-child .question label::before {
  border: none;
}
.question-box:last-child .question label.cat-btn {
  margin: 0;
  background-color: transparent;
  border: none;
}

.question-box .title {
  width: 100%;
}

.question-box .title p {
  color: #43464B;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: left;
}

.question-box .title p span {
  background: url(../images/question_number.png) center/cover no-repeat;
  width: 50px;
  height: 50px;
  display: inline-block;
  color: #fff;
  margin-right: 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 50px;
}

.question .wp-block-group__inner-container {
  width: 100%;
}
.question .question_text {
  display: block;
  width: 90%;
  padding: 15px;
  margin: 10px auto;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  border-radius: 40px;
  cursor: pointer;
  position: relative;
}
.question .question_text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  border: 4px solid transparent;
  background: linear-gradient(165deg, #00ced1 30%, #b19cd9 100%) border-box border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: destination-out;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.question .question_text.active {
  background: linear-gradient(113.26deg, #00ced1 15.03%, #87a3eb 50%, #b19cd9 84.97%);
  color: white;
}
.question .question_text.active::before {
  border: none;
}/*# sourceMappingURL=style.css.map */

/*ぴんく色マーカ*/
.pink_line {background:rgba(0, 0, 0, 0)
  linear-gradient(transparent 60%, #FFABCE 0%)
  repeat scroll 0 0;}
/*水色のマーカ*/
.blue_line {background:rgba(0, 0, 0, 0)
   linear-gradient(transparent 60%, #A7F1FF 0%)
    repeat scroll 0 0;}
/*黄色のマーカ*/
.yellow_line {background:rgba(0, 0, 0, 0)
   linear-gradient(transparent 60%, #FFFF88 0%)
    repeat scroll 0 0;}