@charset "utf-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
html {
  width: 100%;
}

body {
  font-size: 16px;
  color: #333;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
}

p {
  font-size: 14px;
  text-align: justify;
  line-height: 1.6;
}

img {
  width: 100%;
}
li {
  list-style: none;
}

/* common
-------------------------------------------------------------- */
.d-pc {
  display: none;
}
.p-relative {
  position: relative;
}
.text-center {
  text-align: center;
}
.text-red {
  color: #ff4c30;
}
.container {
  width: 100%;
  padding-top: 2%;
  padding-right: 2%;
  padding-bottom: 2%;
  padding-left: 2%;
  margin: 0 auto;
}

.content {
  position: relative;
  z-index: 50;
}

.f-bold {
  font-weight: bold;
}

.d-block {
  display: block;
}
.d-inline {
  display: inline;
}

.vertical-align__top {
  vertical-align: top;
}
/* margin
----------------- */
.mt-10 {
  margin-top: 10px !important;
}
.mb-0 {
  margin-bottom: 0px !important;
}
.mb-10 {
  margin-bottom: 10px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
/* padding
----------------- */
.pb-0 {
  padding-bottom: 0px !important;
}

/* heading
----------------- */
.heading_type-1 {
  position: relative;
  text-align: center;
  font-size: min(6.9333vw, 26px);
  font-weight: bold;
  color: #ff4c30;
  line-height: 1.2;
  margin-bottom: 56px;
}
.heading_type-1::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 146px;
  height: 2px;
  background-color: #ff4c30;
  border-radius: 10px;
}

.heading_type-2 {
  font-size: min(5.333vw, 20px);
  font-weight: bold;
  line-height: 1.2;
  color: #2baaa4;
  border-bottom: solid 2px #2baaa4;
  padding-bottom: 2px;
  margin-bottom: 20px;
}

.heading_type-3 {
  font-size: min(4.2666vw, 16px);
  font-weight: bold;
  line-height: 1.2;
  color: #333;
  margin-bottom: 16px;
  padding-left: 10px;
  border-left: solid 6px #2baaa4;
}

.heading_type-4 {
  font-size: min(3.7333vw, 14px);
  font-weight: bold;
  line-height: 1.2;
  color: #2baaa4;
  margin-bottom: 8px;
}

/* header
-------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2100;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
}
.header .container {
  padding-top: 6px;
  padding-bottom: 6px;
}
.header .d-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* logo */
.header .container .logo {
  width: 64%;
}
.header .container .logo a {
  width: 100%;
  max-width: 147px;
  display: flex;
  padding-right: 6%;
}

.takarakuji_wrap .container {
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.takarakuji_wrap .header_lead {
  font-size: min(14px, 3.7333vw);
  margin: 0 auto;
}
.takarakuji_wrap .header_lead div:first-child img {
  display: inline;
  width: 40px;
}
.takarakuji_wrap .header_lead div:last-child {
  text-align: center;
  margin: 10px auto 0 auto;
}
.takarakuji_wrap .header_lead div:last-child img {
  width: 68px;
}

/* Global navigation menu 
-------------------------------------------------------------- */
.nav_header {
  display: none;
}
.ul_nav_header .nav_link {
  padding: 1.6rem;
  color: #333333;
  font-size: 16px;
  background: #ffffff;
  border-bottom: 1px solid #2baaa4;
  display: flex;
  line-height: 1;
  font-weight: bold;
}

.ul_nav_header .nav_item:last-child .nav_link {
  border-bottom: none;
}
.ul_nav_header .sub_nav_wrapper:hover {
  cursor: pointer;
}
.ul_nav_header .sub_nav_wrapper .sub_nav .nav_item:last-child .nav_link {
  border-bottom: 1px solid #2baaa4;
}
.sub_nav_wrapper .nav_link {
  border-bottom: 1px dashed #2baaa4;
}
.ul_nav_header .sub_nav_wrapper .sub_nav .nav_link {
  font-size: 16px;
  padding: 10px 10px 10px 3.5rem;
  border-bottom: 1px dashed #2baaa4;
}
.ul_nav_header .sub_nav_wrapper .sub_nav .nav_link::before {
  content: none;
}

.nav_header_tel {
  background-color: #2baaa4;
  color: #ffffff;
  padding: 30px 2%;
  text-align: center;
}
.nav_header_tel .tellink a {
  color: #ffffff;
  font-size: 2.6rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav_header_tel .tellink a::before {
  content: "";
  display: inline-block;
  width: 23px;
  height: 23px;
  background: url(images/icon/icon-tel.svg) no-repeat;
  background-size: contain;
  margin-right: 8px;
}
.nav_header_tel .text {
  font-size: 16px;
  color: #ffffff;
  line-height: 1;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background: #ffffff;
  margin: 20px auto 0px auto;
}
.breadcrumb-list li {
  font-weight: bold;
}
.breadcrumb-list li::after {
  content: ">";
  margin: auto 16px;
}
.breadcrumb-list li:last-child::after {
  content: none;
}

/*gnav　開いた時*/
.nav_open {
  display: block !important;
  position: fixed;
  overflow-y: auto;
  top: 43px;
  padding-bottom: 80px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  opacity: 0;
  background: #ffffff;
  animation: 0.3s 1 normal forwards fade-in;
  -webkit-animation: 0.3s 1 normal forwards fade-in;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/*html　固定*/
.noscroll {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
}

/*閉じるボタン*/
.close_box {
  width: 43px;
  height: 43px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: #ffffff;
}

/*閉じるボタン　アイコン*/
.nav_button {
  position: relative;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  border: none;
  width: 30px;
  height: 20px;
  background: none;
  z-index: 1001;
  cursor: pointer;
}

/*閉じるボタン　アイコン3本線*/
.icon-bar {
  display: block;
  width: 30px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  right: 0;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  background: #2baaa4;
}

/*閉じるボタン　アイコン3本線　通常時*/
.icon-bar:first-child {
  top: 0;
}

.icon-bar:nth-child(2) {
  top: 48%;
}

.icon-bar:nth-child(3) {
  bottom: 0;
}

/*閉じるボタン　アイコン3本線　クリックした時*/
.nav_button.move .icon-bar:first-child {
  transform: translateY(12px) rotate(45deg);
  top: -5px;
}

.nav_button.move .icon-bar:nth-child(2) {
  opacity: 0;
}

.nav_button.move .icon-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  bottom: 3px;
}

.menu_text {
  position: absolute;
  bottom: -25px;
  right: -3px;
  color: #2baaa4;
  font-size: 1.5rem;
}

/*ロゴ*/
.logo {
  width: 158px;
}

/* main
-------------------------------------------------------------- */
.main {
  width: 100%;
  position: relative;
  overflow-x: hidden;
  padding-top: 46px;
}

/* key visual
----------------- */
.kv {
  background-image: url(../img/header_bc.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.kv .container {
  position: relative;
  padding-top: 46px;
  padding-bottom: 46px;
}
.kv .container::after {
  content: "";
  display: block;
  position: absolute;
  /* top: 50%;
    transform: translateY(-50%); */
  top: 8%;
  left: 0;
  width: 20vw;
  height: 27vw;
  background-image: url(../img/icon_l.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.kv .container::before {
  content: "";
  display: block;
  position: absolute;
  /* top: 50%;
    transform: translateY(-50%); */
  bottom: 3%;
  right: 0;
  width: 20vw;
  height: 27vw;
  background-image: url(../img/icon_r.png);
  background-size: contain;
  background-repeat: no-repeat;
}

/* lead */
.kv .lead {
  font-size: 14px;
  color: #333;
  width: 100%;
  padding: 4%;
  text-align: justify;
  background: rgba(242, 231, 149, 0.95);
  box-shadow: 10px 16px 4px rgb(0 0 0 / 26%);
  border-radius: 6px;
  letter-spacing: 0.6px;
}

/* kv_img */
.kv .kv_img {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 999;
}

/* quiz
----------------- */
.quiz {
  background-color: rgba(43, 170, 164, 0.15);
}
.quiz .container {
  padding-top: 74px;
  padding-bottom: 74px;
}

.quiz .quiz_lead {
  text-align: center;
  margin-bottom: 30px;
}
.quiz .quiz_wrap {
  margin-bottom: 16px;
}

.quiz .quiz_wrap .quiz_item {
  padding: 16px;
  border: 3px solid #2baaa4;
  border-radius: 15px;
  background-color: #fff;
  margin-bottom: 16px;
}

.quiz .quiz_wrap .quiz_item .quiz_img {
  width: 100%;
  margin: 0 auto 6px auto;
}

.quiz .quiz_wrap .quiz_item .quiz_text .quiz_title {
  font-size: min(4.8vw, 18px);
  font-weight: bold;
  padding-bottom: 4px;
  margin-bottom: 8px;
  color: #2baaa4;
  border-bottom: 2px dotted #2baaa4;
}

.quiz .quiz_wrap .quiz_item .quiz_text .quiz_description {
  font-size: min(3.7333vw, 14px);
  margin-bottom: 26px;
  color: #4a4a4a;
}

.quiz .quiz_wrap .quiz_item .quiz_text .quiz_button a {
  font-size: min(4.8vw, 18px);
  font-weight: 500;
  color: #fff;
  background-color: #ff4c30;
  padding: 4px 16px;
  border-radius: 20px;
  text-align: center;
  width: 100%;
  max-width: 255px;
  margin: 0 auto 6px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* agenda
----------------- */
.agenda {
  background: #2baaa4;
}
.agenda .container {
  padding-top: 30px;
  padding-bottom: 30px;
}
.agenda .agenda_text {
  display: inline-block;
  text-align: center;
  color: #fff;
  /* font-size: min(5.866vw, 20px); */
  font-size: min(3.7333vw, 14px);
  margin: auto 0 auto;
  width: 100%;
}

/* introduction
----------------- */
.introduction .container {
  padding-top: 74px;
  padding-bottom: 74px;
}
.introduction .introduction_text {
  font-size: min(3.7333vw, 14px);
  margin-bottom: 30px;
}

.introduction .introduction_text sup {
  font-size: min(2.666vw, 10px);
}

.introduction .introduction_img_wrap .introduction_img {
  width: 70%;
  margin: 0 auto;
}

.introduction .introduction_img_wrap .introduction_img_text {
  font-size: min(3.7333vw, 14px);
  text-align: center;
  margin-bottom: 16px;
}

.introduction .introduction_img_wrap .introduction_img_text_sub {
  font-size: min(2.666vw, 10px);
  margin-bottom: 30px;
}

.sub_content {
  border: 3px solid #2baaa4;
  border-radius: 20px 4px 20px 4px;
  background-color: #fff;
  padding: 16px;
}

.sub_content .sub_content_text {
  margin-bottom: 16px;
}

.sub_content .sub_content_title {
  font-size: min(4.8vw, 18px);
  font-weight: bold;
  color: #2baaa4;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
/* .sub_content .sub_content_title::before {
    content: '';
    display: block;
    width: 20px;
    height: 16px;
    background-image: url(../img/illsut_heart.png);
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 6px;
} */

.sub_content .sub_content_img {
  width: 30%;
  margin: 0 auto;
}
.sub_content_img_text {
  font-size: min(2.666vw, 10px);
  text-align: center;
}

/* manufacturer
----------------- */
.manufacturer {
  background-color: rgba(43, 170, 164, 0.15);
}
.manufacturer .container {
  padding-top: 74px;
  padding-bottom: 74px;
}
.manufacturer .manufacturer_lead {
  text-align: center;
  margin-bottom: 30px;
}

.manufacturer .manufacturer_wrap {
  /* margin-bottom: 16px; */
  margin-bottom: 30px;
}

.manufacturer .manufacturer_wrap .manufacturer_item {
  padding: 16px;
  border: 3px solid #2baaa4;
  border-radius: 15px;
  background-color: #fff;
  margin-bottom: 16px;
}

.manufacturer .manufacturer_wrap .manufacturer_item .manufacturer_img {
  width: 40%;
  margin: 0 auto 6px auto;
}
.manufacturer .manufacturer_wrap .manufacturer_item .manufacturer_img img {
  width: unset;
  max-height: 100px;
  height: 100%;
  margin: 0 auto;
  display: block;
}

.manufacturer .manufacturer_wrap .manufacturer_item .manufacturer_text .manufacturer_title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: min(4.8vw, 18px);
  font-weight: bold;
  margin-bottom: 16px;
  color: #ff4c30;
}
.manufacturer .manufacturer_wrap .manufacturer_item .manufacturer_text .manufacturer_title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: min(4.8vw, 18px);
  font-weight: bold;
  margin-bottom: 16px;
  color: #ff4c30;
}

.manufacturer .manufacturer_wrap .manufacturer_item .manufacturer_text .manufacturer_title > a {
  color: #ff4c30;
}

.manufacturer .manufacturer_wrap .manufacturer_item .manufacturer_text .manufacturer_title::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../img/icon_link.png);
  background-size: cover;
  background-repeat: no-repeat;
  margin-left: 6px;
}

/* qa
----------------- */
.qa .container {
  padding-top: 74px;
  padding-bottom: 74px;
}

.qa .qa_list {
  margin-bottom: 16px;
}

.qa .qa_list dl {
  margin-bottom: 30px;
}
.qa .qa_list dt {
  font-size: min(4.2666vw, 16px);
  display: flex;
  justify-content: flex-start;
  text-align: justify;
  margin-bottom: 6px;
  padding: 0 4px 0 4px;
}
.qa .qa_list dt::before {
  content: url(../img/icon_question.png);
  display: block;
  margin-right: 6px;
  margin-top: 1px;
}

.qa .qa_list dd {
  font-size: min(3.7333vw, 14px);
  text-align: justify;
  display: flex;
  justify-content: flex-start;
  padding: 0 4px 16px 4px;
  margin-bottom: 16px;
  border-bottom: 2px dotted #2baaa4;
}
.qa .qa_list dd::before {
  content: url(../img/icon_answer.png);
  display: block;
  margin-right: 7px;
  margin-top: 1px;
}

.qa .qa_more {
  text-align: center;
}

.qa .qa_more img {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

/* useful
----------------- */
.useful {
  background-color: rgba(43, 170, 164, 0.15);
}
.useful .container {
  padding-top: 74px;
  padding-bottom: 74px;
}

.useful .useful_content {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.16);
  padding: 14px;
  margin-bottom: 30px;
}
.useful .useful_content .useful_content_lead {
  margin-bottom: 16px;
}
.useful .useful_content .two_columns .item_content_img {
  margin-bottom: 20px;
}
.useful .useful_content li {
  border-bottom: 1px solid #2baaa4;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.useful .useful_content li:last-child {
  border-bottom: unset;
}
.useful .useful_content .item_content {
  padding: 0 8px;
}
.imgheight {
  display: flex;
  justify-content: center;
  background-color: #eee;
}
.imgheight img {
  max-height: 180px;
  width: auto;
  max-width: 85vw;
}
.useful .useful_content .item_content .item_content_text p {
  margin-bottom: 20px;
}

.useful .useful_content .last_column .app_img {
  margin-bottom: 16px;
}
.useful .useful_content .last_column .app_content .app_content_lead {
  margin-bottom: 16px;
}

.useful .useful_content ul.app_content_circle {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.useful .useful_content ul.app_content_circle li {
  width: calc(50% - 8px);
  color: #fff;
  background: #21b7b6;
  border-radius: 200px;
  /* width: 160px; */
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  padding-bottom: unset;
  margin-bottom: unset;
}

.useful .useful_content ul.app_content_useful li {
  border-bottom: unset;
}
.useful .useful_content ul.app_content_useful li:first-child {
  max-width: 140px;
  margin: 0 auto;
}
.useful .useful_content ul.app_content_useful li .btn_link a {
  margin: 0 auto;
}

.useful .credits ul {
  margin-bottom: 20px;
}
.useful .credits ul li {
  font-size: min(12px, 3.2vw);
}

/* footer
-------------------------------------------------------------- */
.footer {
  background: #fff;
  width: 100%;
  padding: 20px;
}
.footer .footer_lead {
  font-size: min(14px, 3.7333vw);
  margin-bottom: 30px;
}
.footer .footer_lead img:first-child {
  display: inline;
  width: 40px;
}
.footer .footer_lead img:last-child {
  display: block;
  width: 91px;
  margin: 10px auto;
}
.footer .organization {
  margin-bottom: 20px;
}
.footer .organization .footer_logo {
  width: 68%;
  max-width: 200px;
  margin: 0 auto 6px 0;
}
.footer .organization .footer_info {
  font-size: min(10px, 2.666vw);
}
.footer .copyright {
  font-size: 10px;
  color: #333;
  text-align: center;
  width: 100%;
}

.btn_link {
  display: flex;
  justify-content: flex-end;
}
.btn_link a {
  display: block;
  text-decoration: none;
  text-align: center;
  width: 80%;
  max-width: 162px;
  margin: 0 0 10px auto;
  font-size: min(12px, 3.2vw);
  padding: 6px 8px 8px 8px;
  font-weight: bold;
  background: #2baaa4;
  color: #fff;
  border-radius: 16px;
  position: relative;
  transition: 0.5s;
}

.btn_link a::after {
  content: url(../img/icon_arrow.png);
  display: block;
  position: absolute;
  top: 48%;
  right: 10px;
  transform: translateY(-48%);
}

.btn_link a:hover {
  /* background: #d4eef7;
    color: #27acd9; */
  opacity: 0.7;
}
.btn_link .sm {
  font-size: 12px;
}
.btn_link .lg {
  font-size: 14px;
}

@media only screen and (min-width: 768px) {
  /* common
    -------------------------------------------------------------- */
  .d-sp {
    display: none;
  }
  .flex_md {
    display: flex;
    justify-content: space-between;
  }
  .p-md-static {
    position: static !important;
  }

  .header .container {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .takarakuji_wrap .header_lead {
    display: flex;
    align-items: center;
  }

  .heading_type-1 {
    margin-bottom: 66px;
  }
  .heading_type-1::after {
    bottom: -30px;
  }

  /* main
    -------------------------------------------------------------- */
  .container {
    padding-right: 3%;
    padding-left: 3%;
  }

  .header .container .logo {
    width: 147px;
  }

  .header .container .logo a {
    width: 147px;
    max-width: unset;
  }

  /* keyvisual
    ----------------- */
  .kv .kv_img {
    width: 70vw;
    max-width: 658px;
  }
  .kv .container::after {
    width: 240px;
    top: 53%;
    transform: translateY(-50%);
  }
  .kv .container::before {
    width: 233px;
    top: 50%;
    transform: translateY(-50%);
  }

  .kv .container {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .agenda .agenda_text {
    font-size: min(5.8666vw, 22px);
  }

  .agenda .agenda_inner {
    display: flex;
    justify-content: space-between;
  }
  .agenda .agenda_inner > div:first-of-type {
    width: 48%;
    margin: unset;
  }
  .agenda .agenda_inner > div:last-of-type {
    width: 50%;
    margin: unset;
    padding: 2%;
  }
  .agenda .agenda_inner .detail .detail_f {
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
    padding: 0 4px 6px;
  }
  .agenda .agenda_inner .detail .detail_f .theme {
    margin-bottom: 2px;
  }
  .agenda .agenda_inner .detail .detail_f .title {
    font-size: 30px;
    margin-bottom: 2px;
  }
  .agenda .agenda_inner .detail .detail_f .title .title_sm {
    font-size: 18px;
  }
  .agenda .agenda_inner .detail .detail_s .qrcode {
    display: block;
  }
  .agenda .agenda_inner .detail .detail_s .qrcode img {
    width: 100px;
  }

  .quiz .quiz_lead {
    font-size: 20px;
  }

  /* quiz
    ----------------- */
  .quiz .quiz_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .quiz .quiz_wrap .quiz_item {
    margin-bottom: unset;
    padding: 20px 24px;
  }
  .quiz .program ul li .title::before {
    width: 10%;
    font-size: 110px;
    margin: 0 30px 0 0;
  }
  .quiz .program ul li .time {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .quiz .program ul li .heading {
    font-size: 22px;
  }
  .quiz .program ul li .speaker {
    margin-left: calc(10% + 30px);
  }

  .introduction .introduction_img_wrap .introduction_img {
    width: 30%;
  }

  .sub_content {
    display: flex;
  }
  .sub_content .sub_content_text {
    width: calc(78% - 14px);
    margin-right: 14px;
  }
  .sub_content .sub_content_img {
    width: 22%;
  }

  .useful .useful_content .item_content {
    display: flex;
    justify-content: space-between;
  }
  .useful .useful_content .item_content .item_content_img {
    width: 30%;
    margin-bottom: 0;
  }
  .useful .useful_content .item_content .item_content_text {
    width: 68%;
    position: relative;
  }
  .useful .useful_content .two_columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5%;
  }
  .useful .useful_content .two_columns li {
    border-bottom: unset;
  }

  .imgheight {
    display: unset;
    justify-content: unset;
    background-color: unset;
  }
  .imgheight img {
    max-height: 150px;
    width: unset;
    max-width: 198px;
  }

  .aedjis {
    height: 20vw;
  }

  .btn_link {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    margin: 0 !important;
    padding: 0 !important;
  }

  .useful .useful_content .last_column {
    display: grid;
    grid-template-columns: 1fr 4fr;
    gap: 16px;
  }

  .useful .useful_content .last_column .app_img img {
    max-height: unset;
    width: 100%;
    max-width: unset;
  }

  .useful .useful_content .last_column .app_content_item .box {
    display: flex;
    justify-content: space-between;
  }
  .useful .useful_content .last_column .app_content_item .box p {
    margin-left: 14px;
  }

  .useful .useful_content ul.app_content_circle {
    gap: 40px;
    justify-content: center;
  }
  .useful .useful_content ul.app_content_circle li {
    width: 160px;
    height: 160px;
  }
  .useful .useful_content ul.app_content_useful {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }
  .useful .useful_content ul.app_content_useful li {
    position: unset;
  }
  .useful .useful_content ul.app_content_useful li:first-child {
    margin: unset;
    width: 100px;
  }

  .manufacturer .manufacturer_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    /* margin-bottom: unset; */
  }
  .manufacturer .manufacturer_wrap .manufacturer_item {
    margin-bottom: unset;
  }

  /* footer
    -------------------------------------------------------------- */
  .footer {
    padding: 30px;
  }

  .footer .footer_lead {
    text-align: center;
  }

  .footer .organization {
    display: flex;
    justify-content: center;
  }
  .footer .organization .footer_logo {
    margin: 0 20px 0 0;
  }
}

@media only screen and (min-width: 992px) {
  /* common
    -------------------------------------------------------------- */
  p {
    font-size: 16px;
  }

  .ml-md-30 {
    margin-left: 20px;
  }
  .d-pc {
    display: block;
  }
  .d-md {
    display: none;
  }
  .container {
    overflow-x: unset;
    padding-right: 0;
    padding-left: 0;
  }

  .aedjis {
    height: 210px;
  }

  .heading_type-1 {
    font-size: 34px;
    margin-bottom: 50px;
    bottom: -12px;
  }
  .heading_type-1::after {
    bottom: -12px;
  }
  .heading_type-2 {
    font-size: 28px;
  }

  .heading_type-4 {
    font-size: 16px;
  }

  /* header
    -------------------------------------------------------------- */
  .header .container {
    max-width: 1060px;
    padding-top: 0;
    padding-right: 12px;
    padding-bottom: 0;
    padding-left: 12px;
  }

  /* main
    -------------------------------------------------------------- */
  .agenda .container {
    max-width: 992px;
    padding-left: 1%;
    padding-right: 1%;
  }
  .agenda .agenda_inner > div:first-of-type {
    width: 51%;
  }
  .agenda .agenda_inner > div:last-of-type {
    width: 47%;
    padding: 1.3% 2% 1.2% 2%;
  }
  .agenda .agenda_inner .detail .theme {
    margin-bottom: 12px;
  }
  .agenda .agenda_inner .detail .title {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 14px;
  }
  .agenda .agenda_inner .detail .title .title_sm {
    display: inline-block;
    font-size: 22px;
  }
  .agenda .agenda_inner .d-flex .online {
    max-width: 174px;
  }
  .agenda .agenda_inner .d-flex .date {
    max-width: 300px;
  }
  .agenda .agenda_inner .detail .detail_s {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 4px;
  }
  .agenda .agenda_inner .detail .detail_s .title {
    margin-bottom: 4px;
    font-size: 23.6px;
  }
  .agenda .agenda_inner .detail .detail_s .qrcode {
    margin: unset;
  }

  .agenda .agenda_inner .detail .detail_s_text {
    width: 73%;
  }

  .container {
    max-width: 1100px;
    padding-top: 80px;
    padding-top: 40px;
  }
  .kv .container {
    padding-left: 2%;
    padding-right: 2%;
    padding-top: 45px;
    padding-bottom: 24px;
  }
  .kv .container::before {
    right: -52px;
    /* top: 50%;
        transform: translateY(-50%); */
  }
  .kv .container::after {
    left: -42px;
    top: 57%;
    /* top: 50%;
        transform: translateY(-50%); */
  }

  .btn_link {
    max-width: 440px;
    padding: 20px 56px 20px 20px;
    margin: 0 auto 20px auto;
  }
  .btn_link .sm {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .btn_link .lg {
    font-size: 18px;
  }

  .quiz .quiz_wrap {
    gap: 40px 50px;
  }

  .introduction .introduction_text {
    font-size: 16px;
    text-align: center;
    line-height: 2.2;
  }
  .introduction .introduction_img_wrap .introduction_img_text_sub {
    font-size: 12px;
    width: 81%;
    margin: 0 auto 80px auto;
  }

  .sub_content {
    padding: 30px 60px;
    align-items: center;
  }
  .sub_content .sub_content_text {
    width: 75%;
    margin-bottom: unset;
  }
  .sub_content .sub_content_title::before {
    width: 48px;
    height: 39px;
  }
  .sub_content .sub_content_title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .sub_content .sub_content_title::before {
    margin-right: 14px;
  }
  /* .sub_content .sub_content_text p {
        margin-left: 62px;
    } */
  .sub_content .sub_content_img {
    width: unset;
    margin: 0 auto 0 34px;
  }
  .sub_content .sub_content_img img {
    width: 139px;
  }
  .manufacturer .manufacturer_lead {
    margin-bottom: 60px;
  }
  .manufacturer .manufacturer_wrap {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 50px;
    gap: 20px;
  }
  .manufacturer .manufacturer_wrap .manufacturer_item {
    padding: 18px 20px 20px 20px;
  }

  .qa .qa_list {
    padding-top: 50px;
    margin-bottom: 50px;
  }

  .qa .qa_list dt {
    font-size: 20px;
    padding: 30px 70px 0 70px;
    margin-bottom: 10px;
  }
  .qa .qa_list dd {
    font-size: 16px;
    padding: 0 70px 30px 70px;
    margin-bottom: 0;
  }
  .qa .qa_list dt::before {
    content: " ";
    background: url(../img/icon_question.png);
    margin-right: 6px;
    margin-top: 1px;
    width: 29px;
    height: 21px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .qa .qa_list dd::before {
    content: "";
    background: url(../img/icon_answer.png);
    padding-right: 8px;
    margin-right: unset;
    margin-top: 1px;
    width: 27px;
    height: 21px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .qa .qa_list dd span {
    width: calc(100% - 30px);
  }
  .qa .qa_more img {
    max-width: 540px;
  }

  .imgheight img {
    max-width: 240px;
    max-height: 153px;
  }

  .useful .useful_content {
    margin-bottom: 60px;
    padding: 30px 24px 0 24px;
  }
  .useful .useful_content .last_column {
    padding: 10px 20px 20px 30px;
    gap: 40px;
  }

  .useful .useful_content .last_column .app_content_item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .useful .useful_content .last_column .app_content_item li {
    border-bottom: unset;
  }
  .useful .useful_content .last_column .app_content .app_content_lead {
    margin-bottom: 30px;
  }

  .credits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 90%;
    margin: 0 auto;
  }
  .useful .credits ul li {
    font-size: 13px;
    letter-spacing: 1px;
  }
}

@media only screen and (min-width: 1086px) {
  /* header
    -------------------------------------------------------------- */
  .header .container {
    max-width: 1160px;
    max-width: unset;
  }
}

@media only screen and (min-width: 1200px) {
  .takarakuji_wrap .header_lead {
    align-items: baseline;
  }

  /* Global navigation menu 
    -------------------------------------------------------------- */
  .nav_header {
    display: block;
  }
  .close_box {
    display: none;
  }
  .ul_nav_header {
    display: flex;
    align-items: stretch;
  }
  .ul_nav_header .active > a {
    background: none;
    color: #2baaa4;
  }
  .ul_nav_header .active > .nav_link::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 6px;
    background: #2baaa4;
    transform: scale(1);
  }

  .ul_nav_header .nav_link {
    /* padding: 24px 10px; */
    padding: 1.6rem 10px;
    font-size: 16px;
    border: none;
    background: none;
    color: #333333;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
  }
  .ul_nav_header .nav_link::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 6px;
    background: #2baaa4;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
  }

  .ul_nav_header .nav_link:hover {
    color: #2baaa4;
  }
  .ul_nav_header .nav_link:hover::before {
    transform: scale(1, 1);
  }
  .ul_nav_header .nav_item:last-child .nav_link {
    padding-right: 0;
  }
  .ul_nav_header .sub_nav_wrapper {
    position: relative;
  }
  .ul_nav_header .sub_nav_wrapper:hover .sub_nav_box {
    display: block;
    animation: 0.3s 1 normal forwards fade-in;
    -webkit-animation: 0.3s 1 normal forwards fade-in;
  }
  .ul_nav_header .sub_nav_wrapper > .nav_link {
    position: relative;
  }
  .ul_nav_header .sub_nav_wrapper .sub_nav_box {
    position: absolute;
    background: #ffffff;
    top: 64px;
    display: none;
    width: 330px;
    left: calc((330px - 100%) / -2);
    transform: translateX(-50%);
  }
  .ul_nav_header .sub_nav_wrapper .sub_nav .nav_item {
    border-bottom: unset;
  }
  .ul_nav_header .sub_nav_wrapper .sub_nav .nav_item:last-child .nav_link {
    border-bottom: none;
  }
  .ul_nav_header .sub_nav_wrapper .sub_nav .nav_item:hover {
    position: relative;
  }
  .ul_nav_header .sub_nav_wrapper .sub_nav .nav_item:hover::before {
    content: "";
    position: absolute;
    border: 10px solid transparent;
    border-top: 10px solid #fff;
    width: 10px;
    height: 10px;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 10;
    background: none;
    border-radius: 0;
  }
  .ul_nav_header .sub_nav_wrapper .sub_nav .nav_link {
    padding: 20px;
    font-size: 16px;
    justify-content: center;
  }
  .ul_nav_header .sub_nav_wrapper .sub_nav .active {
    position: relative;
  }
  .ul_nav_header .sub_nav_wrapper .sub_nav .active::before {
    content: "";
    position: absolute;
    border: 10px solid transparent;
    border-top: 10px solid #fff;
    width: 10px;
    height: 10px;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 10;
    background: none;
    border-radius: 0;
  }
  .nav_header_tel {
    padding: 8px 15px;
  }
  .nav_header_tel .tellink a {
    font-size: 2.2rem;
  }
  .nav_header_tel .tellink a::before {
    width: 20px;
    height: 20px;
  }
  .nav_header_tel .text {
    font-size: 1.4rem;
  }

  .ul_nav_header .nav_link:hover {
    color: #2baaa4;
  }
  .ul_nav_header .nav_link:hover::before {
    transform: scale(1, 1);
  }
  .ul_nav_header .sub_nav_wrapper > .nav_link {
    position: relative;
  }
  .ul_nav_header .sub_nav_wrapper .sub_nav_box {
    position: absolute;
    background: #ffffff;
    top: 67px;
    display: none;
    width: 230px;
    left: calc((230px - 100%) / -2);
    transform: translateX(-50%);
  }
}
