@charset "UTF-8";
/* CSS Reset ver.2021-01m */
/* --------border-box済み */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* -----------------------------CSS To-Top */
#page-top {
  width: 50px;
  height: 50px;
  display: none;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 999;
}

#page-top p {
  margin: 0;
  padding: 0;
  text-align: center;
  background: #3b3b3b;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#page-top p:hover {
  background: #8b8b8b;
}

#move-page-top {
  color: #fff;
  line-height: 50px;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

img {
  display: block;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style-type: none;
}

.header_container {
  width: 100%;
  padding: 25px 30px 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
}
.header_container h1 {
  width: 35%;
}

.main_nav_container {
  width: 55%;
}
.main_nav_container ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main_nav_container li {
  padding: 0 10px;
}
.main_nav_container li a {
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: bold;
  color: #0b4e39;
}
.main_nav_container li a:hover {
  color: #1c9f89;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.main_nav_container li a.entry_btn {
  display: block;
  width: 200px;
  margin: 0 0 0 30px;
  padding: 15px 5px;
  background: #1c9f89;
  text-align: center;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
  color: #fff;
  border-radius: 7px;
  -webkit-box-shadow: 2px 2px 4px #999;
          box-shadow: 2px 2px 4px #999;
}
.main_nav_container li a.entry_btn:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #0b4e39;
}
.main_nav_container li a.bar_btn {
  display: block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  margin-left: 30px;
  text-align: center;
  background: #0b4e39;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
}
.main_nav_container li a.bar_btn i {
  display: inline-block;
  -webkit-transform: scale(3);
          transform: scale(3);
  position: relative;
  bottom: 2px;
}
.main_nav_container li a.bar_btn:hover {
  background: #1c9f89;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.main_nav_container li:nth-child(1),
.main_nav_container li:nth-child(2) {
  border-right: 1px solid #0b4e39;
}
.main_nav_container li:first-child {
  padding-left: 0;
  border-left: none;
}
.main_nav_container li:nth-child(3) {
  padding-right: 0;
}
.main_nav_container li:nth-child(n+4) {
  border-left: none;
  padding: 0;
}

.fixed {
  position: fixed;
  top: 50px;
  right: 30px;
  -webkit-animation: navFade 0.3s linear;
          animation: navFade 0.3s linear;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform: translateX(60px);
          transform: translateX(60px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 22%;
}
.fixed ul {
  width: auto;
}

@-webkit-keyframes navFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    z-index: 555;
  }
}

@keyframes navFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    z-index: 555;
  }
}
.main_menu {
  width: 500px;
  height: 100vh;
  padding: 120px 40px 30px 40px;
  background: #1c9f89;
  position: fixed;
  top: 0;
  right: -500px;
  z-index: 999;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.main_menu h2 {
  width: 100%;
  background: #fff;
  padding: 12px 15px;
  border-radius: 5px;
}
.main_menu ul {
  margin-top: 30px;
}
.main_menu li a {
  display: block;
  width: 100%;
  padding: 10px;
  text-decoration: none;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.main_menu li a:hover {
  background: #0b4e39;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.main_menu li:first-child {
  border-top: 1px solid #fff;
}
.main_menu p {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #fff;
}
.main_menu p a {
  text-decoration: none;
  color: #fff;
}
.main_menu p a:hover {
  text-decoration: underline;
}

.menu_close_btn button {
  width: auto;
  background: none;
  border: none;
}
.menu_close_btn span {
  display: block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: #fff;
  border-right: 2px solid #0b4e39;
  border-bottom: 2px solid #0b4e39;
  border-radius: 5px;
  cursor: pointer;
  position: absolute;
  top: 55px;
  right: 30px;
}
.menu_close_btn span i {
  display: inline-block;
  -webkit-transform: scale(3);
          transform: scale(3);
  position: relative;
  bottom: 3px;
  color: #1c9f89;
}

.menu_open {
  right: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #fff;
  border: solid 2px #1c9f89;
  border-radius: 50%;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 888;
  cursor: pointer;
}

.pagetop:hover {
  background: #ffd002;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.pagetop_arrow {
  display: block;
  height: 10px;
  width: 10px;
  border-top: 3px solid #1c9f89;
  border-right: 3px solid #1c9f89;
  -webkit-transform: translateY(20%) rotate(-45deg);
          transform: translateY(20%) rotate(-45deg);
}

.main_footer {
  width: 100%;
  padding: 30px;
  padding-bottom: 200px;
  background: #1c9f89;
  color: #fff;
}
.main_footer p {
  text-align: center;
}

.top_main_img {
  width: 100%;
  height: 580px;
  background: #fbf7ec;
}

.top_main_img_bg {
  width: 100%;
  height: 580px;
  position: relative;
  background: url(../img-top/super_market.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 95%;
}
.top_main_img_bg img {
  width: 60vw;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.content_nav_btn {
  width: 100%;
  margin: 40px 0;
}
.content_nav_btn li {
  margin: 0 5px;
}
.content_nav_btn li a:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.content_container {
  width: 100%;
}
.content_container h2 {
  font-size: 2.5rem;
  line-height: 2.5rem;
  font-weight: bold;
  color: #0b4e39;
  text-align: center;
}
.content_container h2 span {
  display: block;
  font-size: 1rem;
  font-weight: bold;
}
.content_container h3 {
  margin: 0;
  padding: 0;
  font-size: 1.3rem;
  font-weight: bold;
  color: #0b4e39;
}

.flex_between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.top_find_lucky {
  padding: 30px;
  text-align: center;
}
.top_find_lucky h3 {
  margin-bottom: 10px;
}
.top_find_lucky ul.find_go_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: left;
  margin-top: 60px;
}
.top_find_lucky ul.find_go_btn li {
  width: 45%;
  background: #fff;
}
.top_find_lucky ul.find_go_btn li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  font-weight: bold;
  color: #0b4e39;
  font-size: 1.1rem;
  line-height: 1.2rem;
}
.top_find_lucky ul.find_go_btn li a div.i_wrap {
  display: block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: #0b4e39;
  text-align: center;
  color: #fff;
  border-radius: 50%;
}
.top_find_lucky ul.find_go_btn li a div.i_wrap i {
  display: inline-block;
  -webkit-transform: scale(2);
          transform: scale(2);
  position: relative;
  bottom: 2px;
}
.top_find_lucky ul.find_go_btn li a div.find_go_txt {
  width: calc(100% - 45px);
  padding-left: 5px;
}
.top_find_lucky ul.find_go_btn li a span {
  display: block;
  font-size: 0.8rem;
}
.top_find_lucky ul.find_go_btn li a:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.find_left {
  width: 45%;
}

.find_center {
  width: 10%;
}
.find_center img {
  margin: auto;
}

.find_right {
  width: 45%;
  position: relative;
}
.find_right p {
  width: 32%;
  position: absolute;
  top: 20%;
  left: 45%;
}
.find_right p img {
  width: 100%;
}
.find_right ul {
  width: 100%;
}
.find_right li {
  width: 45%;
  height: auto;
}
.find_right li a:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.find_right li.fr_position1 {
  position: absolute;
  top: 10%;
  left: 0;
  z-index: 111;
}
.find_right li.fr_position2 {
  position: absolute;
  bottom: 18%;
  left: -35px;
  z-index: 222;
}
.find_right li.fr_position3 {
  position: absolute;
  top: 8%;
  right: -15px;
  width: 35%;
  z-index: 111;
}
.find_right li.fr_position4 {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 111;
}

.gray_col {
  width: 100%;
  padding: 30px;
  padding-top: 40px;
  background: #f4f5fa;
}

.matching_container {
  width: 100%;
  padding-bottom: 0;
  padding-top: 60px;
}

.top_matching img.match_ashirai {
  width: 20%;
  margin: 20px auto;
}

p.top_lead {
  width: 90%;
  margin: 20px auto 5px auto;
  padding-top: 20px;
  text-align: center;
  font-weight: bold;
  border-top: 1px solid #0b4e39;
  color: #0b4e39;
}

.try_match_btn {
  width: 40%;
  margin: 30px auto 0 auto;
  text-align: center;
}
.try_match_btn p {
  font-weight: bold;
  color: #0b4e39;
}
.try_match_btn a:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.join_illust {
  width: 100%;
  height: 260px;
  margin-top: -130px;
  margin-bottom: 130px;
  text-align: center;
  position: relative;
  bottom: -130px;
}
.join_illust img {
  width: 118px;
  height: 260px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}

.first_step {
  width: 100%;
  padding: 30px;
}

.foot_first_step {
  padding-top: 50px;
  border-top: 1px solid #0b4e39;
}

.entry_guidance {
  width: 100%;
  margin: 30px auto;
  padding-top: 15px;
}
.entry_guidance p {
  text-align: center;
  margin-top: 15px;
  font-weight: bold;
  color: #0b4e39;
}
.entry_guidance ul {
  width: 65%;
  margin: 30px auto;
}
.entry_guidance li {
  width: 32%;
  text-align: center;
  border: 2px solid #1c9f89;
  border-radius: 5px;
}
.entry_guidance li a {
  display: block;
  width: 100%;
  padding: 10px 5px;
  text-decoration: none;
  font-weight: bold;
  color: #1c9f89;
  cursor: default;
}
.entry_guidance li a i {
  display: inline-block;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  margin-right: 3px;
}

.light_btn a {
  display: block;
  width: 400px;
  margin: auto;
  padding: 30px 5px;
  background: #1c9f89;
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  border-radius: 7px;
  -webkit-box-shadow: 2px 2px 4px #999;
          box-shadow: 2px 2px 4px #999;
}
.light_btn a:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #0b4e39;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.instagram_info {
  width: 90%;
  margin: auto;
  padding-top: 60px;
  border-top: 1px solid #1c9f89;
  text-align: center;
}
.instagram_info h2 {
  width: 100%;
}
.instagram_info h2 img {
  width: 40px;
  margin: 0 auto 15px auto;
}
.instagram_info p {
  font-weight: bold;
}
.instagram_info a {
  display: block;
  width: 460px;
  margin: 30px auto 15px auto;
}
.instagram_info a:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.body_main_img {
  width: 100%;
  height: 400px;
  padding: 30px;
  margin-bottom: 60px;
  background: #ccc;
  position: relative;
}
.body_main_img li {
  width: auto;
  position: absolute;
}

p.body_lead {
  width: 90%;
  margin: 25px auto;
  text-align: center;
  font-weight: bold;
}

.body_instagram {
  width: 100%;
  padding: 20px 5px;
  margin: 30px auto 30px auto;
  border: none;
  background: #f4f5fa;
}
.body_instagram h3 {
  width: 100%;
  margin-bottom: 0;
}
.body_instagram h3 img {
  width: 40px;
  margin: 0 auto 10px auto;
}
.body_instagram a {
  display: inline-block;
  width: auto;
  margin: 15px auto 0 auto;
  text-decoration: none;
  color: #1c9f89;
  font-weight: bold;
  font-size: 0.9rem;
}
.body_instagram a span {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  margin-right: 3px;
  border-radius: 50%;
  background: #1c9f89;
}
.body_instagram a i {
  display: inline-block;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  position: relative;
  bottom: 2px;
  color: #fff;
}
.body_instagram a:hover {
  text-decoration: underline;
}

.faq_img_box {
  background: #8e726f;
}
.faq_img_box li.faq_position_1 {
  top: 15px;
  left: 27%;
}
.faq_img_box li.faq_position_1 img {
  width: 85%;
}
.faq_img_box li.faq_position_2 {
  top: 25px;
  left: 44%;
}
.faq_img_box li.faq_position_2 img {
  width: 95%;
}
.faq_img_box li.faq_position_3 {
  bottom: 20px;
  left: 57%;
}
.faq_img_box li.faq_position_4 {
  top: 20px;
  right: 7%;
}

.body_main_content {
  margin: 30px auto 60px auto;
}
.body_main_content h3 {
  width: 100%;
  margin: auto;
  text-align: center;
  font-size: 1.8rem;
  position: relative;
}
.body_main_content h3::after {
  position: absolute;
  content: "";
  background: #0b4e39;
  width: 60px;
  height: 2px;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.faq_container h2 {
  font-size: 2.2rem;
  color: #8e726f;
}

.faq_content h3 {
  color: #8e726f;
}
.faq_content h3::after {
  background: #8e726f;
}
.faq_content div.faq_menu_wrap {
  width: 100%;
  border-bottom: 1px solid #8e726f;
}
.faq_content ul.faq_menu {
  width: 70%;
  margin: 0 auto auto auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
}
.faq_content ul.faq_menu li {
  width: 20%;
  padding: 10px 10px 10px 15px;
  background: #cdc0be;
  border-right: 3px solid #fff;
  border-bottom: 2px solid #fff;
  font-size: 0.9rem;
  font-weight: bold;
  color: #fff;
  border-radius: 0 25px 0 0;
  cursor: pointer;
}
.faq_content ul.faq_menu li:hover {
  background: #8e726f;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.faq_content ul.faq_menu li.current_faq {
  background: #8e726f;
}
.faq_content ul.faq_menu li.first_faq {
  background: #8e726f;
}
.faq_content ul.faq_menu::before {
  content: "Contents";
  padding: 10px;
  font-size: 0.9rem;
  font-weight: bold;
  color: #8e726f;
  position: absolute;
  left: -90px;
}
.faq_content div.faq_detail_wrap {
  width: 70%;
  margin: 2px auto auto auto;
  padding: 25px;
  background: #8e726f;
  border-radius: 0 0 15px 15px;
}
.faq_content div.faq_detail_inner {
  width: 100%;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
}

p.detail_lead {
  width: 95%;
  padding-bottom: 20px;
  margin: 40px auto auto auto;
  text-align: center;
  line-height: 1.6rem;
  font-size: 0.9rem;
  font-weight: bold;
  color: #8e726f;
  display: block;
}

.faq_detail_content {
  width: 100%;
}
.faq_detail_content h4 {
  text-align: center;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-top: 20px;
}
.faq_detail_content h4 span {
  display: block;
  font-size: 2.5rem;
  color: #8e726f;
}
.faq_detail_content p {
  margin-bottom: 15px;
}

.qa_wrap {
  text-align: center;
  background: #f5f3f2;
  border-radius: 15px;
  padding-bottom: 20px;
  margin-top: 30px;
  -webkit-box-shadow: 3px 3px 6px #999;
          box-shadow: 3px 3px 6px #999;
}
.qa_wrap h5 {
  margin: 0;
  padding: 10px 5px;
  font-size: 1.3rem;
  background: #8e726f;
  color: #fff;
  border-radius: 15px 15px 0 0;
}
.qa_wrap h5::before {
  content: "Q";
  font-family: san-serif;
  font-size: 2rem;
  margin-right: 10px;
  position: relative;
  bottom: -3px;
}
.qa_wrap p {
  width: 90%;
  margin: 15px auto auto auto;
  line-height: 1.6rem;
}
.qa_wrap img {
  display: block;
  width: 70%;
  margin: 15px auto;
}

.first_qa {
  margin-top: 20px;
}

.faq_submenu {
  width: 100%;
}
.faq_submenu button {
  display: block;
  width: 300px;
  padding: 10px 5px;
  margin: auto;
  background: #8e726f;
  border: none;
  font-weight: bold;
  font-size: 0.9rem;
  text-align: center;
  color: #fff;
  border-radius: 0 0 10px 10px;
  cursor: pointer;
}
.faq_submenu button i {
  display: inline-block;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  margin-right: 10px;
}
.faq_submenu ul {
  width: 100%;
  margin: 0 auto auto auto;
  border-bottom: 1px solid #8e726f;
  display: none;
}
.faq_submenu li {
  width: 100%;
  margin: auto;
  padding: 5px 15px;
  list-style-type: decimal;
  list-style-position: inside;
  line-height: 2.2rem;
  text-align: center;
  font-weight: bold;
}
.faq_submenu li span {
  cursor: pointer;
}
.faq_submenu li span:hover {
  color: #8e726f;
  text-decoration: underline;
}
.faq_submenu li:nth-child(odd) {
  background: #f5f3f2;
}

.faq_box {
  width: 100%;
  min-height: 100px;
  margin-top: 15px;
  padding: 25px 30px;
  background: #f5f3f2;
  border-radius: 15px;
}

.faq_box_inner {
  margin-bottom: 30px;
}
.faq_box_inner h4 {
  cursor: pointer;
  background: #fff;
  border-radius: 5px;
  margin-bottom: 0;
  -webkit-box-shadow: 2px 2px 4px #999;
          box-shadow: 2px 2px 4px #999;
}
.faq_box_inner h4:hover {
  background: #cdc0be;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.faq_wrap {
  display: none;
  position: relative;
}

.faq_show {
  display: block;
}

.qa_illust img {
  display: block;
  width: 180px;
  position: absolute;
  top: -25px;
}

.right_illust img {
  right: 15px;
}

.left_illust img {
  left: 15px;
}

.faq_hide_content {
  display: none;
  background: #fff;
  margin-top: 20px;
  padding: 20px 30px;
  border-radius: 15px;
  border: 3px solid #8e726f;
}

.faq_hide_inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 30px;
}

.faq_hide_img {
  width: 30%;
}
.faq_hide_img img {
  margin: auto;
}

.faq_hide_text {
  width: 70%;
}

.message_img_box {
  background: #1c9f89;
}
.message_img_box li.msg_position_1 {
  top: 25px;
  left: 45%;
}
.message_img_box li.msg_position_1 img {
  width: 95%;
}

.msg_container h2 {
  font-size: 2.2rem;
  color: #1c9f89;
}

.msg_detail_container {
  border-top: 4px solid #1c9f89;
}

.msg_content {
  width: 100%;
}
.msg_content h3 {
  color: #1c9f89;
}
.msg_content h3::after {
  background: #1c9f89;
}
.msg_content ul.msg_nav {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}
.msg_content ul.msg_nav::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #1c9f89;
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 111;
}
.msg_content li {
  margin: 0 10px;
}
.msg_content li a {
  display: block;
  width: 110px;
  height: 110px;
  line-height: 110px;
  background: #1c9f89;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  text-align: center;
  position: relative;
  z-index: 222;
}
.msg_content li a:hover {
  background: #ffa700;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.msg_content span.msg_num {
  font-size: 3rem;
}

p.msg_notice {
  width: 70%;
  margin: 30px auto auto auto;
  text-align: center;
}

p.movie_notice {
  margin-bottom: 30px;
}

li.back_btn {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: #fff;
  text-align: center;
  position: absolute;
  top: 50%;
  right: 60px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 222;
  border-radius: 50%;
  cursor: pointer;
}
li.back_btn p {
  font-weight: bold;
  font-size: 0.8rem;
  color: #fff;
}
li.back_btn p i {
  display: inline-block;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  margin-right: 5px;
}

li.msg_back {
  background: #1c9f89;
}

li.session_back {
  background: #fdb242;
}

ul.msg_detail_nav li a {
  background: #acddd6;
}
ul.msg_detail_nav li a.msg_current {
  background: #1c9f89;
}

.msg_movie_col {
  width: 70%;
  margin: 40px auto auto auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.movie_wrap {
  width: 47%;
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid #0b4e39;
}
.movie_wrap h4 {
  color: #1c9f89;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.movie_wrap h4 span {
  display: inline-block;
}
.movie_wrap h4 span.movie_catch_mark {
  width: 50px;
}
.movie_wrap h4 span.movie_catch_mark i {
  display: inline-block;
  -webkit-transform: scale(3);
          transform: scale(3);
  position: relative;
  bottom: -8px;
  left: 10px;
}
.movie_wrap h4 span.movie_catch_copy {
  width: calc(100% - 50px);
}

.msg_movie_inner {
  width: 100%;
  position: relative;
  margin-top: 15px;
}
.msg_movie_inner p.msg_dpt_name {
  width: 110px;
  height: 110px;
  line-height: 110px;
  text-align: center;
  background: #1c9f89;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 5px;
  font-size: 0.8rem;
}

a.msg_soon,
a.msg_soon_btn {
  pointer-events: none;
}

a.msg_soon::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
}

a.msg_soon::before {
  content: "Coming Soon";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  z-index: 555;
}

.profile_box {
  margin-top: 15px;
}
.profile_box h5 {
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1rem;
  font-size: 1rem;
  color: #1c9f89;
}
.profile_box p.prof_dpt {
  font-size: 0.9rem;
}
.profile_box p.prof_name {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 5px;
}
.profile_box p.prof_name span {
  font-weight: normal;
  margin-left: 10px;
  font-size: 0.9rem;
}

.msg_btn {
  width: 100%;
}
.msg_btn a {
  display: block;
  width: 240px;
  padding: 15px 5px;
  margin: 15px auto;
  background: #0b4e39;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px 4px #999;
          box-shadow: 2px 2px 4px #999;
}
.msg_btn a:hover {
  background: #1c9f89;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.msg_movie_detail {
  width: 70%;
  margin: 40px auto auto auto;
}
.msg_movie_detail h4 {
  font-size: 1.3rem;
  color: #1c9f89;
  margin-top: 20px;
}
.msg_movie_detail h4 i {
  display: inline-block;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  margin-right: 10px;
}

.detail_prof_flex {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  border-top: 1px solid #1c9f89;
  border-bottom: 1px solid #1c9f89;
  margin-top: 15px;
  padding: 10px 0;
}

.detail_prof {
  width: 50%;
  margin: 0;
}

.prof_dept_trans {
  width: 50%;
}
.prof_dept_trans h5 {
  margin: 0 0 5px 0;
  padding: 0;
  line-height: 1rem;
}
.prof_dept_trans h5::before {
  content: "◆";
}
.prof_dept_trans ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.prof_dept_trans li {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 0;
  padding: 0;
  text-align: center;
  background: #e0e0e0;
  border-right: 1px solid #fff;
  font-size: 0.8rem;
  font-weight: bold;
}
.prof_dept_trans li:nth-child(6) {
  border: none;
}
.prof_dept_trans li.done {
  background: #036eb1;
  color: #fff;
}

.video_col {
  width: 100%;
  margin: auto;
  text-align: center;
}

.session_img_box {
  background: #fdb242;
}
.session_img_box li.session_position_1 {
  top: 30px;
  left: 45%;
}
.session_img_box li.session_position_1 img {
  width: 95%;
}

.session_container h2 {
  font-size: 2.2rem;
  color: #fdb242;
}

.session_content h3 {
  color: #fdb242;
}
.session_content h3::after {
  background: #fdb242;
}
.session_content ul.session_nav {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}
.session_content ul.session_nav::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #fdb242;
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 111;
}
.session_content li {
  width: 260px;
  margin: auto 10px;
  position: relativel;
  z-index: 222;
  background: #fff;
}
.session_content li a:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.session_content ul.session_detail_nav li a {
  opacity: 0.6;
}
.session_content ul.session_detail_nav li a.session_current {
  opacity: 1;
}
.session_content ul.session_detail_nav li a.session_sub_soon {
  pointer-events: none;
}

li.session_back {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: #fdb242;
  text-align: center;
  position: absolute;
  top: 50%;
  right: 60px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 222;
  border-radius: 50%;
  cursor: pointer;
}
li.session_back p {
  font-weight: bold;
  font-size: 0.8rem;
  color: #fff;
}
li.session_back p i {
  display: inline-block;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  margin-right: 5px;
}

.session_wrap {
  width: 80%;
  margin: 40px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: relative;
}

.session_soon::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
}

.session_soon::before {
  content: "Coming Soon";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  z-index: 555;
}

.session_left {
  width: 50%;
}
.session_left img {
  display: block;
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 10%;
     object-position: 0 10%;
}

.session_right {
  width: 50%;
  height: 280px;
  background: #fdb242;
  position: relative;
}
.session_right a.session_arrow {
  text-decoration: none;
  color: #fff;
  position: absolute;
  top: 47%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.session_right a.session_arrow i {
  display: inline-block;
  -webkit-transform: scale(5);
          transform: scale(5);
}

.session_right_inner {
  width: 88%;
  padding: 5px 0 15px 20px;
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.session_right_inner span.theme_num {
  font-size: 1rem;
  font-weight: bold;
}
.session_right_inner span.num_letter {
  font-size: 1.5rem;
}
.session_right_inner h4 {
  font-size: 1.3rem;
  font-weight: bold;
  border-bottom: 1px dotted #000;
  padding-bottom: 10px;
  margin-top: 10px;
}
.session_right_inner h4 span {
  display: block;
  font-size: 0.9rem;
}
.session_right_inner h4 a {
  text-decoration: none;
  color: #000;
}
.session_right_inner h4 a:hover {
  text-decoration: underline;
}
.session_right_inner p {
  margin-top: 10px;
  font-size: 0.9rem;
}

.session_body_wrap {
  width: 90%;
  margin: auto;
  padding-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #fdb242;
}
.session_body_wrap h4 {
  padding: 10px 20px 10px 0;
  margin-right: 20px;
  border-right: 1px solid #fdb242;
}
.session_body_wrap ul.session_members {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.session_body_wrap ul.session_members li {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 30px 0 0;
  padding: 0;
}
.session_body_wrap ul.session_members li img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  margin-right: 5px;
}
.session_body_wrap ul.session_members li p.session_size {
  font-size: 0.8rem;
}
.session_body_wrap ul.session_members li p.session_size_name {
  font-size: 1rem;
}
.session_body_wrap ul.session_members li p.session_size_name span {
  display: inline-block;
  font-size: 0.7rem;
}

.session_notice_column {
  width: 50%;
  margin: 15px auto 0 auto;
  padding: 10px 15px 25px 15px;
  border: 2px solid #ffa700;
  border-radius: 3px;
}
.session_notice_column h4 {
  margin: 0 auto 15px auto;
  padding: 0;
  text-align: center;
  line-height: 1.5rem;
  border-bottom: 1px dotted #ffa700;
}

p.session_notice {
  width: 100%;
  margin-top: 10px;
  font-size: 0.9rem;
  line-height: 1rem;
  text-align: center;
}

.session_body_content {
  width: 90%;
  margin: 60px auto auto auto;
  padding: 30px 40px 40px 40px;
  background: #fff9ef;
  border-radius: 15px;
}
.session_body_content span.session_corner_num {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fdb242;
}
.session_body_content h4 {
  margin-top: 20px;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px dotted #fdb242;
  padding-bottom: 20px;
}

.session_cut {
  width: 90%;
  margin: 60px auto auto auto;
}
.session_cut img {
  width: 100%;
  border-radius: 15px;
}

.speaker_wrap {
  width: 95%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 40px auto auto auto;
}

.speaker_name {
  width: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.speaker_name img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  margin-right: 5px;
}
.speaker_name h5 {
  margin: 0;
  padding: 0;
  line-height: 1rem;
  font-size: 1rem;
  font-weight: bold;
}

.speaker_comment {
  width: 600px;
  padding: 10px 30px 20px 30px;
  background: #ffe6be;
  border-radius: 15px;
}
.speaker_comment p {
  margin-top: 10px;
}

.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.reverse img {
  margin-right: 0;
  margin-left: 5px;
}

.envi_img_box {
  background: #ba96c3;
}
.envi_img_box li.envi_position_1 {
  top: 50px;
  left: 45%;
}
.envi_img_box li.envi_position_1 img {
  width: 95%;
}

.envi_container h2 {
  font-size: 2.2rem;
  color: #ba96c3;
}

.envi_content h3 {
  color: #ba96c3;
}
.envi_content h3::after {
  background: #ba96c3;
}

.envi_content_wrap {
  width: 80%;
  margin: 40px auto auto auto;
  text-align: center;
  border-top: 1px dotted #ba96c3;
  padding-top: 40px;
}
.envi_content_wrap h4 {
  width: 100%;
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.envi_content_wrap h4 img {
  width: 180px;
  margin: auto auto 10px auto;
}
.envi_content_wrap p {
  margin-top: 10px;
}

.last_envi_content {
  border-bottom: 1px dotted #ba96c3;
  padding-bottom: 40px;
}

.related_link {
  width: 100%;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 1px dotted #999;
  padding-top: 20px;
}
.related_link li {
  width: auto;
  padding: 0 10px;
  text-align: center;
}
.related_link a {
  text-decoration: none;
  color: #000;
  font-size: 0.9rem;
  font-weight: bold;
}
.related_link a:hover {
  text-decoration: underline;
}
.related_link span {
  display: inline-block;
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin-right: 3px;
  background: #ccc;
  border-radius: 50%;
}
.related_link span.msg_color {
  background: #1c9f89;
}
.related_link span.session_color {
  background: #fdb242;
}
.related_link span.faq_color {
  background: #8e726f;
}
.related_link span.envi_color {
  background: #ba96c3;
}
.related_link i {
  display: inline-block;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  position: relative;
  bottom: 1px;
  color: #fff;
}

.related_link::before {
  content: "関連情報：";
  font-size: 0.8rem;
  font-weight: bold;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.match_img_box {
  background: #1c9f89;
}
.match_img_box li.match_position_1 {
  top: 35px;
  left: 41%;
}
.match_img_box li.match_position_1 img {
  width: 95%;
}

.match_container h2 {
  font-size: 2.2rem;
  color: #0b4e39;
}

.match_content h3 {
  color: #0b4e39;
}
.match_content h3::after {
  background: #0b4e39;
}
.match_content p.match_lead {
  margin-top: 40px;
  text-align: center;
  font-weight: bold;
}
.match_content button,
.match_content input,
.match_content label {
  cursor: pointer;
}
.match_content button {
  border: none;
  background: #0b4e39;
  padding: 10px 40px;
  font-weight: bold;
  color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 3px 3px 6px #999;
          box-shadow: 3px 3px 6px #999;
}
.match_content button i {
  display: inline-block;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  margin-right: 3px;
}
.match_content button.diag_reset,
.match_content button.diag_cancel,
.match_content button.diag_gray {
  background: #999;
  font-size: 0.9rem;
}
.match_content button.diag_yellow {
  display: block;
  background: #fdb242;
  padding: 15px 40px;
  margin: auto;
  color: #000;
}
.match_content button:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.match_content button#check_start {
  display: block;
  width: 400px;
  margin: 30px auto auto auto;
  padding: 7px 0;
  border: none;
  background: #0b4e39;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 3px 3px 6px #999;
          box-shadow: 3px 3px 6px #999;
  position: relative;
  z-index: 666;
}
.match_content button#check_start span {
  display: block;
  width: 95%;
  margin: auto;
  padding: 40px 5px;
  border: 1px solid #fff;
  border-radius: 7px;
}
.match_content button#check_start span i {
  display: inline-block;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  margin-right: 3px;
}
.match_content button#check_start:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #1c9f89;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.diagnosis_col_container {
  width: 80%;
  margin: 15px auto auto auto;
  padding: 40px 30px;
  border: 5px solid #0b4e39;
  border-radius: 10px;
}
.diagnosis_col_container p.diag_start_copy {
  text-align: center;
  font-weight: bold;
  color: #0b4e39;
}

.diagnosis_col {
  width: 100%;
  margin: 15px auto 0 auto;
  text-align: center;
  background: #f4f5fa;
  padding: 0 5px 20px 5px;
  border-radius: 10px;
}
.diagnosis_col dl {
  width: 80%;
  margin: auto;
}
.diagnosis_col dt {
  width: 100%;
  padding: 10px 0 0 0;
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #0b4e39;
  border-top: 1px solid #1c9f89;
}
.diagnosis_col dt:nth-child(1) {
  border-top: none;
  margin-top: none;
  padding-top: none;
}
.diagnosis_col dt::before {
  content: "Q";
  font-size: 2rem;
  font-weight: bold;
  color: #0b4e39;
  margin-right: 5px;
  font-family: san-serif;
  position: relative;
  bottom: -3px;
}
.diagnosis_col input {
  display: inline-block;
  -webkit-transform: scale(1.8);
          transform: scale(1.8);
  margin-right: 5px;
  margin-left: 10px;
}
.diagnosis_col label {
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 10px;
}

.diag_col2 {
  border-color: #8e726f;
}
.diag_col2 dt {
  color: #8e726f;
  border-color: #8e726f;
}
.diag_col2 dt::before {
  color: #8e726f;
}

#diag_col1,
#diag_col2 {
  display: none;
}

.diag_btn_col {
  width: 90%;
  margin: 15px auto auto auto;
  padding-top: 15px;
  border-top: 1px dotted #1c9f89;
}

.diag_btn2 {
  border-color: #8e726f;
}

.diag_confirm_col {
  width: 98%;
  border-top: 1px solid #0b4e39;
}
.diag_confirm_col button {
  width: 400px;
  padding: 30px 40px;
  font-size: 1.2rem;
}

.diag_col3 {
  padding-top: 20px;
  display: none;
}
.diag_col3 h4 {
  font-size: 2rem;
  margin: 0;
  padding: 0;
  color: #0b4e39;
}

.matching_img {
  width: 70%;
  margin: auto;
}

.result_flex {
  width: 90%;
  margin: 30px auto auto auto;
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.result {
  width: 48%;
  padding: 25px 30px 30px 30px;
  text-align: left;
  border-radius: 10px;
  background: #fff;
  border: 3px solid #0b4e39;
}
.result h5 {
  margin: 0;
  padding: 0;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.5rem;
  text-align: center;
  background: #1c9f89;
  padding: 10px 5px;
  color: #fff;
  border-radius: 5px;
}

.result_right h5 {
  background: #ffa700;
}

.result_content {
  margin-top: 15px;
}
.result_content span.match_type {
  display: none;
  width: 100%;
  font-weight: bold;
  border-bottom: 1px dotted #0b4e39;
  margin-bottom: 15px;
  color: #0b4e39;
}

dl.related_dept {
  width: 100%;
  margin: 15px 0 0 0;
  padding: 0;
  border-top: 1px dotted #0b4e39;
}
dl.related_dept dt {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 1rem;
}
dl.related_dept dt::before {
  content: "◆";
  margin: 0;
  padding: 0;
  line-height: 2rem;
  font-size: 1rem;
  position: relative;
  bottom: 0;
}
dl.related_dept dd::before {
  content: "・";
}

dl.related_job_type dt {
  color: #ffa700;
}
dl.related_job_type dt::before {
  color: #ffa700;
}

.matching_related {
  border-top: 1px dotted #0b4e39;
  margin-top: 15px;
  padding-top: 15px;
}

#a1_content,
#a2_content,
#a3_content,
#b1_content,
#b2_content,
#b3_content {
  display: none;
}

.result_total {
  width: 90%;
  margin: 20px auto auto auto;
}
.result_total h5 {
  background: #0b4e39;
}

.result_content {
  display: none;
}

#aa,
#ab,
#ac,
#ba,
#bb,
#bc,
#ca,
#cb,
#cc {
  display: none;
}

.total_show h6 {
  text-align: center;
  margin: 0 0 10px 0;
  padding: 0 0 10px 0;
  line-height: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: #0b4e39;
  border-bottom: 1px dotted #0b4e39;
}
.total_show p {
  text-align: center;
}

.youkou_container {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid #0b4e39;
}

.youkou_content {
  width: 70%;
  margin: 30px auto;
  border-top: 3px solid #0b4e39;
}
.youkou_content table {
  width: 100%;
  border-collapse: collapse;
}
.youkou_content tr:nth-child(even) {
  background: #f4f5fa;
}
.youkou_content th,
.youkou_content td {
  padding: 15px 0;
  border-bottom: 1px solid #0b4e39;
}
.youkou_content th {
  width: 20%;
  font-weight: bold;
  color: #0b4e39;
}
.youkou_content td {
  width: 80%;
}

img.youkou_cut {
  width: 20%;
  margin: auto;
  margin-top: 30px;
}

.entry_content {
  width: 70%;
  margin-top: 15px;
  padding-top: 30px;
  border-top: 2px solid #0b4e39;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.entry_page_btn {
  width: 48%;
  margin-bottom: 30px;
}
.entry_page_btn h4 {
  font-size: 1.2rem;
  text-align: center;
}
.entry_page_btn h4 span {
  font-size: 1.5rem;
}
.entry_page_btn a {
  display: block;
  width: 80%;
  margin: 15px auto auto auto;
  padding: 20px 30px;
  border: 2px solid #1c9f89;
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 2px 2px 4px #999;
          box-shadow: 2px 2px 4px #999;
}
.entry_page_btn a img {
  display: block;
  width: 100%;
}
.entry_page_btn a:hover {
  border-color: #ffa700;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media screen and (max-width: 560px) {
  .header_container {
    padding: 30px 15px;
  }
  .header_container h1 {
    width: 75%;
  }
  .main_nav_container {
    width: 25%;
  }
  .main_nav_container li:nth-child(1) {
    display: none;
  }
  .main_nav_container li:nth-child(2) {
    display: none;
  }
  .main_nav_container li:nth-child(3) {
    display: none;
  }
  li.entry_hide {
    display: none;
  }
  .main_menu {
    width: 100vw;
    padding-top: 80px;
  }
  .menu_close_btn span {
    top: 30px;
    right: 15px;
  }
  .top_main_img {
    width: 100%;
    height: 35vh;
    background: #fbf7ec;
  }
  .top_main_img_bg {
    width: 100%;
    height: 35vh;
    background-position: center top;
    background-size: cover;
  }
  .top_main_img_bg img {
    width: 90vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  .content_nav_btn {
    margin: 20px 0;
  }
  .content_container h2 {
    font-size: 1.8rem;
  }
  .flex_between {
    display: block;
  }
  .top_find_lucky ul.find_go_btn {
    width: 100%;
    margin: 30px auto auto auto;
    display: block;
  }
  .top_find_lucky ul.find_go_btn li {
    width: 100%;
    margin: 0 auto 10px auto;
    padding: 10px 10px;
    border: 1px solid #0b4e39;
    border-radius: 5px;
  }
  .top_find_lucky ul.find_go_btn li a {
    font-size: 1rem;
    line-height: 1rem;
  }
  .top_find_lucky ul.find_go_btn li a div.i_wrap {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .top_find_lucky ul.find_go_btn li a div.i_wrap i {
    display: inline-block;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    position: relative;
    bottom: 1px;
  }
  .top_find_lucky ul.find_go_btn li a div.find_go_txt {
    width: calc(100% - 30px);
    padding-left: 5px;
  }
  .find_left,
  .find_right {
    width: 100%;
  }
  .find_left h3 br,
  .find_right h3 br {
    display: none;
  }
  .find_right {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px dotted #0b4e39;
  }
  .find_right p {
    position: relative;
    left: 20%;
    width: 60%;
  }
  .find_right li {
    width: 100%;
  }
  .find_right li.fr_position1,
  .find_right li.fr_position2,
  .find_right li.fr_position3,
  .find_right li.fr_position4 {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin-bottom: 15px;
  }
  .find_right li.fr_position2 {
    left: 15px;
  }
  .find_right li.fr_position3 {
    width: 100%;
    left: 30px;
  }
  .find_center {
    display: none;
  }
  .matching_container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .top_matching img.match_ashirai {
    width: 70%;
  }
  p.top_lead {
    width: 100%;
  }
  .try_match_btn {
    width: 100%;
  }
  .join_illust {
    width: 100%;
    height: 130px;
    margin-top: -75px;
    margin-bottom: 75px;
    position: relative;
    bottom: -75px;
  }
  .join_illust img {
    width: 59px;
    height: 130px;
  }
  .entry_guidance ul {
    width: 100%;
  }
  .entry_guidance li {
    width: 100%;
    margin-bottom: 15px;
  }
  .light_btn a {
    width: 100%;
  }
  .instagram_info {
    width: 95%;
  }
  .instagram_info a {
    width: 100%;
  }
  .body_main_img li {
    position: relative;
  }
  .body_main_content h3 {
    font-size: 1.6rem;
  }
  .match_img_box li.match_position_1 {
    top: 20px;
    left: 20%;
  }
  .match_img_box li.match_position_1 img {
    width: 75%;
  }
  .message_img_box li.msg_position_1 {
    top: 15px;
    left: 20%;
  }
  .message_img_box li.msg_position_1 img {
    width: 75%;
  }
  .session_img_box li.session_position_1 {
    top: 10px;
    left: 20%;
  }
  .session_img_box li.session_position_1 img {
    width: 70%;
  }
  .envi_img_box li.envi_position_1 {
    top: 15px;
    left: 18%;
  }
  .envi_img_box li.envi_position_1 img {
    width: 75%;
  }
  .faq_img_box li.faq_position_1 {
    display: none;
  }
  .faq_img_box li.faq_position_2 {
    top: 15px;
    left: 35%;
  }
  .faq_img_box li.faq_position_2 img {
    width: 37%;
  }
  .faq_img_box li.faq_position_3 {
    display: none;
  }
  .faq_img_box li.faq_position_4 {
    display: none;
  }
  .match_content button.diag_reset,
  .match_content button.diag_cancel,
  .match_content button.diag_gray {
    display: block;
    margin: 10px auto;
  }
  .match_content button#check_start {
    width: 95%;
  }
  .diagnosis_col_container {
    width: 95%;
    padding: 20px 15px;
  }
  .diagnosis_col dl {
    width: 95%;
  }
  .diag_btn_col {
    width: 95%;
  }
  .diag_confirm_col button {
    width: 95%;
  }
  .result_flex {
    width: 95%;
    display: block;
  }
  .result {
    width: 100%;
  }
  .result_right {
    margin-top: 15px;
  }
  .result_total {
    width: 95%;
    margin-top: 0;
  }
  .total_show h6 {
    line-height: 1.3rem;
  }
  .msg_content ul.msg_nav {
    display: none;
  }
  .msg_movie_col {
    width: 95%;
    display: block;
  }
  .movie_wrap {
    width: 100%;
  }
  .msg_movie_inner p.msg_dpt_name {
    border-radius: 0;
    top: 0;
    left: 0;
    width: 110px;
    height: 50px;
    line-height: 50px;
  }
  a.msg_soon::before {
    font-size: 1.8rem;
  }
  .msg_movie_detail {
    width: 95%;
  }
  .detail_prof_flex {
    display: block;
  }
  .detail_prof,
  .prof_dept_trans {
    width: 100%;
  }
  .prof_dept_trans {
    margin-top: 10px;
  }
  .session_wrap {
    width: 95%;
    display: block;
  }
  .session_left,
  .session_right {
    width: 100%;
    height: 200px;
  }
  .session_soon::before {
    font-size: 1.8rem;
  }
  .envi_content_wrap {
    width: 90%;
  }
  .faq_content ul.faq_menu {
    width: 95%;
    display: block;
  }
  .faq_content ul.faq_menu li {
    width: 100%;
    border-radius: 0;
  }
  .faq_content div.faq_detail_wrap {
    width: 100%;
    padding: 15px;
  }
  .faq_content div.faq_detail_inner {
    padding: 15px;
  }
  .qa_illust {
    display: none;
  }
  .qa_wrap img {
    width: 98%;
  }
  .youkou_content {
    width: 95%;
  }
  .youkou_content th {
    width: 30%;
  }
  .youkou_content td {
    width: 70%;
  }
  .entry_content {
    width: 90%;
    display: block;
  }
  .entry_content h3 {
    font-size: 1rem;
  }
  .entry_content h3 span {
    font-size: 1.1rem;
  }
  .entry_page_btn {
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */