@charset "utf-8";

.slider-mainvisual,
.top-slide {
  display: none;
}
.slider-mainvisual.slick-initialized,
.top-slide.slick-initialized {
  display: block;
}
.header-lang-list {
  display: block;
}
.contents-inner {
  padding: 50px 60px 180px;
}
@media screen and (max-width:767px) {
  .contents-inner {
    padding: 40px 5px 80px;
  }
}
.contents-section:nth-of-type(even) {
  background: #F6F9FA;
}

/* ------------------------------------------------------------------------------
     mainvisual
-------------------------------------------------------------------------------*/
.mainvisual-wrap {
  position: relative;
  max-width: 1670px;
  margin: auto;
  overflow: hidden;
}
.mainvisual-wrap::before {
  content: "";
  display: block;
  position: absolute;
  left: 0; bottom: 0;
  width: 34.74vw;
  height: 33.44vw;
  background: url(../images/mainvisual_img_01.png) no-repeat;
  background-size: cover;
  z-index: 1;
}
@media screen and (min-width:768px) {
  .mainvisual-wrap::before {
    max-width: 463px;
    max-height: 450px;
  }
}
.mainvisual-wrap::after {
  content: "";
  display: block;
  position: absolute;
  right: -1px; top: -1px;
  width: 23.02vw;
  height: 21.61vw;
  background: url(../images/mainvisual_img_02.png) no-repeat;
  background-size: cover;
  z-index: 1;
}
@media screen and (min-width:768px) {
  .mainvisual-wrap::after {
    max-width: 306px;
    max-height:290px;
  }
}
.mainvisual-logo {
  position: absolute;
  top: 50%;
  left: -1px; right: -1px;
  width: 40.19vw;
  max-width: 643px;
  margin: auto;
  transform: translateY(-50%);
}
@media screen and (max-width:767px) {
  .mainvisual-logo {
    width: 60vw;
  }
}
.mainvisual-logo > img {
  filter: drop-shadow(2px 2px 3px #133A43);
}
.mainvisual-img > img {
  width: 100%;
}
.mainvisual-button-list {
  position: absolute;
  top: calc(50% + 140px);
  left: 0; right: 0;
  margin: auto;
  padding: 0 10px;
}
.mainvisual-button-list > li + li {
  margin-top: 24px;
}
.mainvisual-msg {
  position: absolute;
  bottom: 32px;
  width: 100%;
  text-align: center;
}
.mainvisual-msg-txt {
  display: inline-block;
  padding: 10px 78px;
  background: #FEFFEB;
  color: #2E2E2E;
  font-weight: bold;
  text-align:  center;
}
@media screen and (max-width:767px) {
  .mainvisual-msg-txt {
    padding: 8px 10px;
  }
}

/* ------------------------------------------------------------------------------
     menu-button-list
-------------------------------------------------------------------------------*/
.main-nav {
  transition: all 0.3s;
}
.inner:has(.menu-button-list) {
  max-width: 1600px;
}
.menu-button-list {
  display: grid;
  grid-template-columns: 24fr 24fr 30fr 30fr 24fr;
  justify-content: center;
  gap: 36px;
}
@media screen and (max-width:1500px) {
  .menu-button-list {
    gap: 22px;
  }
}
@media screen and (max-width:1100px) {
  .menu-button-list {
    grid-template-columns: 18fr 18fr 30fr 30fr 24fr;
  }
}
@media screen and (max-width:950px) {
  .menu-button-list {
    gap: 15px;
  }
}
@media screen and (max-width:900px) {
  .menu-button-list {
    display: flex;
    flex-wrap: wrap;
    gap: 22px 3%;
  }
}
@media screen and (max-width:650px) {
  .menu-button-list {
    gap: 15px 3%;
  }
}
.menu-button-list > li {
  position: relative;
  display: inline-block;
  width: 100%;
}
@media screen and (max-width:900px) {
  .menu-button-list > li {
    width: 31.3%;
  }
}
@media screen and (max-width:650px) {
  .menu-button-list > li:nth-child(3) {
    order: 4;
    width: 48.5%;
  }
  .menu-button-list > li:nth-child(4) {
    order: 5;
    width: 48.5%;
  }
}
.menu-button-list > li > .button-01 {
  display: block;
  font-size: 22px;
  font-weight: bold;
  white-space: nowrap;
}
@media screen and (max-width:1500px) {
  .menu-button-list > li > .button-01 {
    padding: 14px 22px 14px 8px;
    font-size: 20px;
  }
}
@media screen and (max-width:1200px) {
  .menu-button-list > li > .button-01 {
    font-size: 18px;
  }
}
@media screen and (max-width:1100px) {
  .menu-button-list > li > .button-01 {
    font-size: 16px;
  }
}
@media screen and (max-width:470px) {
  .menu-button-list > li > .button-01 {
    padding: 14px 20px 14px 6px;
    font-size: 14px;
  }
}
@media screen and (max-width:410px) {
  .menu-button-list > li > .button-01 {
    padding: 14px 17px 14px 3px;
    font-size: 12px;
  }
}
@media screen and (max-width:1500px) {
  .menu-button-list > li > .button-01 > .icon-down {
    right: 18px;
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width:767px) {
  .menu-button-list > li > .button-01 > .icon-down {
    top: -3px;
    right: 10%;
    width: 8px;
    height: 8px;
  }
}
@media screen and (max-width:470px) {
  .menu-button-list > li > .button-01 > .icon-down {
    right: 10px;
  }
}
.main-nav.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 8px 15px;
}
.main-nav.sticky .menu-button-list {
  gap: 10px;
}
@media screen and (max-width:900px) {
  .main-nav.sticky .menu-button-list {
    column-gap: 3%;
  }
}
.main-nav.sticky .menu-button-list > li > .button-01 {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 0.8em;
}

/* ------------------------------------------------------------------------------
     News
-------------------------------------------------------------------------------*/
.news-list {
  position: relative;
}
.news-list .news-date {
  padding: 10px 18px;
  background: #FEFFEB;
  font-size: 12px;
  line-height: 1;
}
@media screen and (max-width:767px) {
  .news-list .news-date {
    padding: 8px 10px;
    font-size: 10px;
  }
}
.news-list .news-ttl {
  padding: 16px 16px 0;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
@media screen and (max-width:767px) {
  .news-list .news-ttl {
    padding: 10px 10px 0;
    font-size: 12px;
  }
}
.news-list .news-text {
  margin-top: 10px;
  padding: 0 16px 16px;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.83;
}
@media screen and (max-width:767px) {
  .news-list .news-text {
    padding: 0 10px 10px;
    font-size: 10px;
  }
}
.news-text a {
  color: #02B4CB;
  text-decoration: underline;
}
.news-list .slick-arrow {
  position: absolute;
  top: auto;
  left: 0; right: 0;
  bottom: -20px;
  margin: 0 auto;
  width: 40px;
  height: 40px;
  background: #23C8DE;
  border-radius: 50%;
  z-index: 1;
}
.news-list .slick-arrow.slick-prev {
  right: 80px;
}
.news-list .slick-arrow.slick-next {
  left: 80px;
}
.news-list .slick-arrow.slick-prev::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 3px; right: 0;
  display: block;
  width: 10px;
  height: 10px;
  margin: auto;
  border-bottom: solid 2px #fff;
  border-left: solid 2px #fff;
  transform: rotate(45deg);
  opacity: 1;
  z-index: 2;
}
.news-list .slick-arrow.slick-next::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 0; right: 3px;
  display: block;
  width: 10px;
  height: 10px;
  margin: auto;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  opacity: 1;
  z-index: 2;
}
.news-list .slick-arrow.slick-disabled {
  background: #C3C3C3;
}
.news-list .slick-prev:before, .news-list .slick-next:before {
  font-size: 0;
}
.news-item {
  height: 100%;
  min-height: 180px;
  margin: 0 12px;
  background: #fff;
  border: 1px solid #E2E2E2;
  border-radius: 8px;
  box-shadow: 0px 4px 4px 1px rgba(0, 0, 0, 0.1);
  line-height: 1.5;
}
@media screen and (max-width:767px) {
  .news-item {
    min-height: auto;
    margin: 0 6px;
    border-radius: 8px;
  }
}
.news-img img {
  width: 100%;
  border-radius: 8px 8px 0 0;
}
.news-list .slick-track {
  display: flex;
  padding-bottom: 80px;
}
.news-list .slick-slide {
  height: auto !important;
}

/* ------------------------------------------------------------------------------
    concept-img
-------------------------------------------------------------------------------*/
.concept-img {
  margin: 100px 0 200px;
}
@media screen and (max-width:767px) {
  .concept-img {
    margin: 50px 0 60px;
  }
}
.concept-img > dt {
  font-size: 28px;
  text-align: center;
}
@media screen and (max-width:767px) {
  .concept-img > dt {
    font-size: 16px;
  }
}
.concept-img > dd {
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width:767px) {
  .concept-img > dd {
    margin-top: 12px;
  }
}
.concept-img > dd + dt {
  margin-top: 170px;
}
@media screen and (max-width:767px) {
  .concept-img > dd + dt {
    margin-top: 50px;
  }
}

/* ------------------------------------------------------------------------------
    theme-button-list
-------------------------------------------------------------------------------*/
.theme-button-list {
  margin: 26px 0 54px;
  font-size: 0;
}
@media screen and (max-width:767px) {
  .theme-button-list {
    margin: 20px 0;
  }
}
.theme-button-list > li {
  position: relative;
  width: 32%;
  display: inline-block;
}
@media screen and (max-width:767px) {
  .theme-button-list > li {
    width: 48%;
  }
}
@media screen and (min-width:768px) {
  .theme-button-list > li + li {
    margin-left: 2%;
  }
  .theme-button-list > li:nth-child(3n+1) {
    margin-left: 0;
  }
  .theme-button-list > li:nth-child(n+4) {
    margin-top: 16px;
  }
}
@media screen and (max-width:767px) {
  .theme-button-list > li:nth-child(even) {
    margin-left: 4%;
  }
  .theme-button-list > li:nth-child(n+3) {
    margin-top: 18px;
  }
}

/* ------------------------------------------------------------------------------
     Message
-------------------------------------------------------------------------------*/
.message {
  margin: 180px 0 140px;
}
@media screen and (max-width:767px) {
  .message {
    margin: 60px 0;
  }
}
@media screen and (max-width:767px) {
  .message img {
    transform: scale(0.5);
  }
}
.message-title {
  margin-top: 36px;
  font-size: 32px;
  text-align: center;
}
@media screen and (max-width:767px) {
  .message-title {
    margin-top: 0;
    font-size: 20px;
    text-align: center;
  }
}
.message-text {
  margin-top: 46px;
  text-align: center;
  line-height: 2.4;
}
@media screen and (max-width:767px) {
  .message-text {
    margin-top: 20px;
    text-align: left;
    line-height: 1.6;
  }
}

/* ------------------------------------------------------------------------------
    features
-------------------------------------------------------------------------------*/
.features {
  margin-top: 100px;
  text-align: center;
}
@media screen and (max-width:767px) {
  .features {
    margin-top: 60px;
  }
}
.features > dt {
  font-size: 20px;
}
@media screen and (max-width:767px) {
  .features > dt {
    font-size: 16px;
  }
}
.features > dd {
  margin-top: 36px;
}
@media screen and (max-width:767px) {
  .features > dd {
    margin-top: 20px;
  }
}
.features-circle-top,
 .features-circle-bottom {
  font-size: 0;
}
.features-circle {
  position: relative;
  display: inline-block;
  width: 250px;
  height: 250px;
  background: #05BDD5;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  line-height: 1.4;
}
@media screen and (max-width:970px) {
  .features-circle {
    width: 180px;
    height: 180px;
    font-size: 20px;
  }
}
@media screen and (max-width:767px) {
  .features-circle {
    width: 25.5vw;
    height: 25.5vw;
    font-size: 12px;
    font-size: 3vw;
  }
}
.features-circle > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  margin: auto -10%;
  transform: translateY(-50%);
}
.features-circle + .features-circle {
  margin-left: 20px;
}
@media screen and (max-width:767px) {
  .features-circle + .features-circle {
    margin-left: 1.25vw;
  }
}

/* ------------------------------------------------------------------------------
    check-list
-------------------------------------------------------------------------------*/
.check-list {
  margin-top: 30px;
  font-size: 0;
}
@media screen and (max-width:767px) {
  .check-list {
    margin-top: 20px;
  }
}
.check-list > li {
  display: inline-block;
  position: relative;
  width: 32%;
  padding-left: 32px;
  font-size: 18px;
  vertical-align: top;
}
@media screen and (max-width:767px) {
  .check-list > li {
    width: 100%;
    padding-left: 26px;
    font-size: 16px;
    vertical-align: top;
  }
}
.check-list > li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 20px;
  height: 20px;
  background: url(/images/icon_check.png) no-repeat;
}
@media screen and (max-width:767px) {
  .check-list > li::before {
    width: 16px;
    height: 16px;
    background: url(/images/icon_check.png) no-repeat;
    background-size: contain;
  }
}
@media screen and (min-width:768px) {
  .check-list > li + li {
    margin-left: 2%;
  }
  .check-list > li:nth-child(3n+1) {
    margin-left: 0;
  }
  .check-list > li:nth-child(n+4) {
    margin-top: 24px;
  }
}
@media screen and (max-width:767px) {
  .check-list > li + li {
    margin-top: 10px;
  }
}

/* ------------------------------------------------------------------------------
    slide
-------------------------------------------------------------------------------*/
.top-slide {
  margin-top: 120px;
}
@media screen and (max-width:767px) {
  .top-slide {
    margin-top: 40px;
  }
}
.top-slide .slick-dots {
  bottom: 5px;
  right: 30px;
  text-align: right;
}
@media screen and (max-width:767px) {
  .top-slide .slick-dots {
    bottom: 0;
    right: 8px;
  }
}
.top-slide .slick-dots li {
  width: 74px;
  height: 6px;
}
@media screen and (max-width:767px) {
  .top-slide .slick-dots li {
    width: 24px;
    height: 5px;
    margin: 0 3px;
  }
}
.top-slide .slick-dots li button:before {
  content: "";
  display: block;
  width: 74px;
  height: 6px;
  background: #fff;
  opacity: 1;
}
@media screen and (max-width:767px) {
  .top-slide .slick-dots li button:before {
    width: 24px;
    height: 5px;
  }
}
.top-slide .slick-dots li.slick-active button:before {
  background: #F5FF00
}

/* ------------------------------------------------------------------------------
     modal
-------------------------------------------------------------------------------*/
body.fixed{
  position: fixed;
  width: 100%;
}
.wrap {
  position: relative;
}
.modal-mask, .modal {
  display: none;
}
.modal-mask {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;  bottom: 0;
  right: 0;  left: 0;
  cursor: pointer;
  z-index: 999;
}
.modal-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 9000;
}
.modal {
  position: absolute;
  max-width: 950px;
  width: 90%;
  box-sizing: border-box;
  top: 5vw;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 9999;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width:767px) {
  .modal {
    top: 30px; bottom: auto;
  }
}
.modal-inner {
  position: relative;
  padding: 30px 46px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 50px;
  cursor: auto;
}
@media screen and (max-width:767px) {
  .modal-inner {
    padding: 30px;
    border-radius: 20px;
  }
}
.modal-close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 30px;
  height: 30px;
  margin-left: auto;
  cursor: pointer;
  z-index: 99999;
}
@media screen and (max-width:767px) {
  .modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
  }
}
.modal-close::before,
.modal-close::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30px;
  height: 3px;
  margin: auto;
  background: #000;
}
@media screen and (max-width:767px) {
  .modal-close::before,
  .modal-close::after {
    width: 20px;
    height: 3px;
  }
}
.modal-close::before {
  transform: rotate(-45deg);
}
.modal-close::after {
  transform: rotate(45deg);
}

.modal-slide {
  height: 100%;
  max-height: 100%;
}
.modal-contents {
  padding: 0 40px;
}
@media screen and (max-width:767px) {
  .modal-contents {
    padding: 0;
  }
}
.modal-title {
  padding-bottom: 5px;
  border-bottom: 2px solid #000;
  font-size: 36px;
  text-align: center;
}
@media screen and (max-width:767px) {
  .modal-title {
    padding-bottom: 2px;
    font-size: 20px;
  }
}
.modal-dl {
  margin-top: 20px;
  height: 45vh;
  overflow: auto;
}
.modal-dl > dt {
  font-size: 24px;
}
@media screen and (max-width:767px) {
  .modal-dl > dt {
    font-size: 16px;
  }
}
.modal-dl > dd {
  margin-top: 5px;
  font-size: 18px;
}
@media screen and (max-width:767px) {
  .modal-dl > dd {
    margin-top: 0;
    font-size: 14px;
  }
}
.modal-dl > dd +dt {
  margin-top: 20px;
}
@media screen and (max-width:767px) {
  .modal-dl > dd +dt {
    margin-top: 20px;
  }
}
.modal-link {
  margin-top: 30px;
}
@media screen and (max-width:767px) {
  .modal-link {
    margin-top: 20px;
  }
}
.modal-link > .button-02 {
  width: 420px;
  max-width: 100%;
  padding: 8px 22px 10px 20px;
}
@media screen and (max-width:767px) {
  .modal-link > .button-02 {
    width: 90%;
    max-width: 300px;
    padding: 4px 18px 6px 20px;
    font-size: 14px;
    line-height: 1.4;
  }
}

/* modal slide */
.modal .slick-next,
.modal .slick-prev {
  width: 46px;
  height: 75px;
  background: #F5FF00;
  border: 2px solid #000;
}
@media screen and (max-width:767px) {
  .modal .slick-next,
  .modal .slick-prev {
    width: 23px;
    height: 38px;
  }
}
.modal .slick-next {
  right: -2px;
}
.modal .slick-prev {
  left: -2px;
}
.modal .slick-next::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  right: 14px;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 12px;
  border-color: transparent transparent transparent #000;
  margin: auto;
}
@media screen and (max-width:767px) {
  .modal .slick-next::before {
    right: 5px;
    border-width: 10px 0 10px 8px;
  }
}
.modal .slick-next::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  right: 17px;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 12px;
  border-color: transparent transparent transparent #F5FF00;
  margin: auto;
}
@media screen and (max-width:767px) {
  .modal .slick-next::after {
    right: 7px;
    border-width: 10px 0 10px 8px;
  }
}
.modal .slick-prev::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 14px;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 12px 15px 0;
  border-color: transparent #000 transparent transparent;
  margin: auto;
}
@media screen and (max-width:767px) {
  .modal .slick-prev::before {
    left: 5px;
    border-width: 10px 8px 10px 0;
  }
}
.modal .slick-prev::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 17px;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 12px 15px 0;
  border-color: transparent #F5FF00 transparent transparent;
  margin: auto;
}
@media screen and (max-width:767px) {
  .modal .slick-prev::after {
    left: 7px;
    border-width: 10px 8px 10px 0;
  }
}

/* ------------------------------------------------------------------------------
     link
-------------------------------------------------------------------------------*/
.link-wrap {
  padding-top: 60px;
}
@media screen and (max-width:767px) {
  .link-wrap {
    padding-top: 40px;
  }
}
.link-box {
  margin-top: 30px;
  padding: 24px 32px 30px;
  border: 1px solid #A5A5A5;
}
@media screen and (max-width:767px) {
  .link-box {
    margin-top: 20px;
    padding: 18px 20px 20px;
    border: 1px solid #A5A5A5;
  }
}
.link-box > dt {
  font-size: 30px;
}
@media screen and (max-width:767px) {
  .link-box > dt {
    font-size: 20px;
  }
}
.link-box > dd {
  margin-top: 20px;
}
@media screen and (max-width:767px) {
  .link-box > dd {
    margin-top: 16px;
  }
}
@media screen and (min-width:768px) {
  .link-list {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width:767px) {
  .link-list {
    margin-top: 50px;
  }
}
.link-list > li + li {
  margin-left: 10px;
}
@media screen and (max-width:767px) {
  .link-list > li {
    text-align: center;
  }
  .link-list > li + li {
    margin-top: 14px;
    margin-left: 0;
  }
}

/* ------------------------------------------------------------------------------
     button
-------------------------------------------------------------------------------*/
.merit-button-wrap {
  margin-top: 40px;
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width:767px) {
  .merit-button-wrap {
    font-size: 14px;
  }
}
.merit-button-wrap > .button-02 {
  margin-top: 14px;
}
@media screen and (max-width:767px) {
  .merit-button-wrap > .button-02 {
    margin-top: 6px;
  }
}
.merit-button-wrap > .button-02 + .button-02 {
  margin-top: 35px;
}
@media screen and (max-width:767px) {
  .merit-button-wrap > .button-02 + .button-02 {
    margin-top: 20px;
  }
}

.qa-button-wrap {
  margin-top: 60px;
}
@media screen and (max-width:767px) {
  .qa-button-wrap {
    margin-top: 40px;
  }
}

/* ------------------------------------------------------------------------------
     other
-------------------------------------------------------------------------------*/
@media screen and (min-width:768px) {
  .map {
    display: flex;
    margin-bottom: 30px;
  }
}
@media screen and (min-width:768px) {
  .map-img {
    width: 54.55%;
  }
}
@media screen and (min-width:768px) {
  .map-txt {
    width: 41.82%;
    margin-left: 3.63%;
  }
}
@media screen and (max-width:767px) {
  .map-txt {
    margin-top: 20px;
  }
}
.map-txt p {
  line-height: 1.55;
}
.map-txt p + p {
  margin-top: 1em;
}
.contents-section.more-link-section {
  margin-top: 160px;
}
@media screen and (max-width:767px) {
  .contents-section.more-link-section {
    margin-top: 60px;
  }
}

.news-list .icon-blank {
  display: inline-block;
  position: static;
  width: 14px;
  height: 14px;
  margin: 0 0 0 8px;
  vertical-align: middle;
  background: url(/images/icon_blank.png) no-repeat 50%;
  background-size: contain;
}
@media screen and (max-width:767px) {
  .news-list .icon-blank {
    width: 10px;
    height: 10px;
  }
}


/* ------------------------------------------------------------------------------
     ヘッダーメニュー調整
-------------------------------------------------------------------------------*/
@media screen and (max-width:360px) {
  .header-menu {
    margin-left: 10px;
  }
}
@media screen and (max-width:360px) {
  .header-menu > li {
    font-size: 12px;
  }
}

/* ------------------------------------------------------------------------------
     add 2023/06
-------------------------------------------------------------------------------*/
.session-banner {
  margin: 0 auto 30px;
  max-width: 680px;
}
@media screen and (max-width:767px) {
  .session-banner {
    margin: 0 auto 20px;
  }
}
.acd + .acd {
  margin-top: 1px;
}
.acd-ttl {
  position: relative;
  padding: 12px 24px;
  background: #00B4CB;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
}
@media screen and (max-width:767px) {
  .acd-ttl {
    padding: 8px 16px;
    font-size: 18px;
  }
}
@media screen and (min-width:768px) {
  .acd-main {
    display: flex;
  }
}
@media screen and (min-width:1001px) {
  .theme-dl {
    width: 69.5%;
  }
}
@media screen and (min-width:768px) {
  .theme-dl {
    width: 60%;
  }
}
@media screen and (min-width:1001px) {
  .theme-dl + .theme-dl {
    width: 30.5%;
  }
}
@media screen and (min-width:768px) {
  .theme-dl + .theme-dl {
    width: 40%;
  }
}
.theme-dl > dt {
  padding: 6px;
  background: #E9FAFD;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width:767px) {
  .theme-dl > dt {
    padding: 4px;
    font-size: 16px;
  }
}
.theme-dl > dd {
  padding: 32px;
}
@media screen and (max-width:767px) {
  .theme-dl > dd {
    padding: 16px;
  }
}
.theme-dl + .theme-dl > dd {
  text-align: center;
}
@media screen and (min-width:768px) {
  .theme-dl + .theme-dl > dd {
    padding: 32px 10px;
  }
}
.problem-list {
  padding-left: 1em;
  list-style-type: disc;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width:767px) {
  .problem-list {
    font-size: 14px;
  }
}
.area-list {
  margin: 0 auto;
  text-align: center;
  font-size: 0;
}
.area-list.flex-start {
  text-align: left;
}
.area-list.single > li:nth-child(odd) .button-06 {
  margin: 0 auto;
}
.area-list > li {
  display: inline-block;
  width: 48%;
}
@media screen and (max-width:767px) {
  .area-list > li {
    width: 48%;
    max-width: 100%;
    font-size: 14px;
  }
}
@media screen and (min-width:768px) {
  .area-list > li:nth-child(even) {
    margin-left: 4%;
  }
}
@media screen and (min-width:768px) {
  .area-list > li:nth-child(even) .button-06 {
    margin: 0 auto 0 0;
  }
}
@media screen and (max-width:767px) {
  .area-list > li:nth-child(even) {
    margin-left: 4%;
  }
}
@media screen and (min-width:768px) {
  .area-list > li:nth-child(odd) .button-06 {
    margin: 0 0 0 auto;
  }
}
.area-list > li:nth-child(n+3) {
  margin-top: 20px;
}
.theme-link {
  margin-top: 36px;
  text-align: center;
}
@media screen and (max-width:767px) {
  .theme-link {
    margin-top: 20px;
  }
}
.theme-link > a {
  color: #00B4CB;
  text-decoration: underline;
}
.table-01 + .number-title {
  margin-top: 94px;
}
.table-program {
background: #fff;
}
.table-01.table-program > dt {
  justify-content: flex-start;
  align-items: flex-start;
}
.acd-ttl {
  cursor: pointer;
}
.acd-ttl::after {
  content: "";
  position: absolute;
  top: 4px; bottom: 0;
  right: 32px;
  display: block;
  width: 16px;
  height: 16px;
  margin: auto;
  border-top: solid 2px #fff;
  border-left: solid 2px #fff;
  transform: rotate(45deg);
}
@media screen and (max-width:767px) {
  .acd-ttl::after {
    top: 2px;
    right: 20px;
    width: 12px;
    height: 12px;
  }
}
.acd-ttl.closed::after {
  top: -2px;
  transform: rotate(-135deg);
}
.vision-lead {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.3;
}
@media screen and (max-width:767px) {
  .vision-lead {
    font-size: 18px;
  }
}
.vision-title {
  margin: 78px 0 26px;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.3;
}
@media screen and (max-width:767px) {
  .vision-title {
    margin: 48px 0 18px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.3;
  }
}
.vision {
  margin-top: 40px;
}
@media screen and (max-width:767px) {
  .vision {
    margin-top: 30px;
  }
}
.vision p + p {
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width:767px) {
  .vision p + p {
    margin-top: 20px;
  }
}
.vision-btn {
  margin-top: 30px;
}
@media screen and (max-width:767px) {
  .vision-btn {
    margin-top: 20px;
  }
}
.vision-btn .button-02 {
  width: 100%;
  max-width: 455px;
}
@media screen and (max-width:767px) {
  .vision-btn .button-02 {
    width: 80%;
    max-width: 350px;
  }
}
.vision-btn .vision-toggle + .button-02 {
  margin-top: 30px;
  cursor: pointer;
}
.vision-btn .vision-toggle + .button-02::after {
  display: none;
}
@media screen and (max-width:767px) {
  .vision-btn .vision-toggle + .button-02 {
    margin-top: 20px;
  }
}
.vision-toggle {
  display: none;
}
.vision-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.2s ease-in-out;
}
.vision-content-inner {
  min-height: 0;
  overflow: hidden;
}
.vision-toggle:checked ~ .vision-content {
  grid-template-rows: 1fr;
}
.vision-img {
  margin-top: -20px;
  text-align: center;
}
@media screen and (max-width:767px) {
  .vision-img {
    margin: 0 auto;
    max-width: 430px;
  }
}
.feature-ttl {
  margin-top: 60px;
  font-size: 22px;
  font-weight: bold;
}
@media screen and (max-width:767px) {
  .feature-ttl {
    margin-top: 40px;
    font-size: 18px;
  }
}
.table-01.table-feature {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  line-height: 1.5;
}
.table-01.table-feature > dt {
  width: 150px;
  padding: 10px;
  background: #F5FF00;
  color: #262626;
}
@media screen and (max-width:767px) {
  .table-01.table-feature > dt {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 23.08%;
    padding: 0;
  }
}
.table-01.table-feature > dd {
  width: calc(100% - 150px);
  padding: 10px;
  background: #FEFFEB;
}
@media screen and (max-width:767px) {
  .table-01.table-feature > dd {
    width: 75.39%;
    margin-top: 0;
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  .table-01.table-feature > dd + dt {
    margin-top: 1.53%;
  }
}
@media screen and (max-width: 767px) {
  .table-01.table-feature > dd + dt + dd {
    margin-top: 1.53%;
  }
}
.feature-link-txt {
  display: block;
  font-size: 14px;
}
.feature-link {
  margin-top: 20px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .feature-link {
    margin-top: 10px;
  }
}
.table-small {
  display: block;
  width: 100%;
  color: #6A6A6A;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .table-small {
    font-size: 14px;
  }
}
.program-button-wrap {
  margin-top: 82px;
}
@media screen and (max-width: 767px) {
  .program-button-wrap {
    margin-top: 40px;
  }
}
.program-btn-txt {
  margin: 78px 0 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .program-btn-txt {
    margin: 32px 0 20px;
  }
}
#movie-wrap {
  position: relative;
  height: 100vh;
  min-height: 800px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #movie-wrap {
    height: calc(100vh - 55px);
  }
}
@media screen and (min-width: 768px) {
  .interview {
    display: flex;
    justify-content: space-between;
  }
}
.interview-box {
  margin-top: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 4px 4px 1px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .interview-box {
    width: 47.82%;
  }
}
.interview-ttl {
  padding: 24px;
  background: #E9FAFD;
  border-radius: 20px 20px 0 0;
  font-weight: bold;
  line-height: 1.55;
}
@media screen and (max-width: 767px) {
  .interview-ttl {
    padding: 16px;
  }
}
.interview-img {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
}
@media screen and (max-width: 767px) {
  .interview-img {
    padding: 16px;
  }
}
.interview-img-logo {
  width: 54.39%;
}
.interview-img-photo {
  width: 41.84%;
}
.interview-txt {
  padding: 8px 24px 24px;
}
@media screen and (max-width: 767px) {
  .interview-txt {
    padding: 6px 16px 16px;
  }
}
.interview-dl > dd {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .interview-dl > dd {
    margin-top: 10px;
    font-size: 14px;
  }
}
.end-txt {
  margin-top: 10px;
  color: #C00000;
  font-weight: bold;
  text-align: center;
}

/* ------------------------------------------------------------------------------
     entry
-------------------------------------------------------------------------------*/
.entry-button-list {
  margin: 0;
  font-size: 0;
}
@media screen and (max-width:767px) {
  .entry-button-list {
    margin: 0 0 40px;
  }
}
.entry-button-list > li {
  position: relative;
  width: calc((100% - 20px) / 3);
  display: inline-block;
}
@media screen and (max-width:767px) {
  .entry-button-list > li {
    width: 48%;
  }
}
@media screen and (min-width:768px) {
  .entry-button-list > li + li {
    margin-left: 10px;
  }
  .entry-button-list > li:nth-child(3n+1) {
    margin-left: 0;
  }
  .entry-button-list > li:nth-child(n+4) {
    margin-top: 16px;
  }
}
@media screen and (max-width:767px) {
  .entry-button-list > li:nth-child(even) {
    margin-left: 4%;
  }
  .entry-button-list > li:nth-child(n+3) {
    margin-top: 10px;
  }
}
.entry-button-list > li > .button-01 {
  padding: 15px;
  display: block;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width:1100px) {
  .entry-button-list > li > .button-01 {
    font-size: 12px;
  }
}
@media screen and (max-width:767px) {
  .entry-button-list > li > .button-01 {
    padding: 14px 22px 14px 8px;
    font-size: 14px;
  }
}
@media screen and (max-width:345px) {
  .entry-button-list > li > .button-01 {
    padding: 14px 20px 14px 6px;
    font-size: 14px;
  }
}

@media screen and (max-width:1100px) {
  .entry-button-list > li > .button-01 > .icon-down {
    right: 20px;
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width:767px) {
  .entry-button-list > li > .button-01 > .icon-down {
    top: -3px;
    right: 10%;
    width: 8px;
    height: 8px;
  }
}
.entry-lead {
  margin-top: 30px;
}
.entry-box {
  margin-top: 30px;
  margin-bottom: 90px;
}
@media screen and (max-width:767px) {
  .entry-box {
    margin-bottom: 60px;
  }
}
.entry-title {
  margin: 40px 0 20px;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width:767px) {
  .entry-title {
    margin-top: 30px;
    font-size: 20px;
  }
}
.entry-box .number-title {
  margin: 44px 0 20px;
  font-weight: bold;
}
@media screen and (max-width:767px) {
  .entry-box .number-title {
    margin: 30px 0 16px;
  }
}
.entry-box dl {
  margin-bottom: 30px;
}
.entry-list {
  padding-left: 1em;
  list-style-type: disc;
  font-size: 18px;
  line-height: 1.55;
  font-weight: bold;
}
@media screen and (max-width:767px) {
  .entry-list {
    font-size: 14px;
  }
}
.entry-list ul {
  font-weight: normal;
  list-style-type: disc;
  margin-left: 1.5em;
}
.table-entry {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .table-entry span {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .table-entry > dt {
      align-items: flex-start;
      text-align: left;
      width: 262px;
  }
  .table-entry > dd {
    width: calc(100% - 262px);
  }
}
@media screen and (max-width:767px) {
  .entry-list {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .table-entry > dt,
  .table-entry > dd {
      padding: 16px;
  }
}
.table-entry > dd > .entry-list {
  font-weight: normal;
}
.entry-extension {
  display: inline!important;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .entry-extension {
    margin-left: 1em;
  }
}
@media screen and (min-width: 940px) {
  .free-button-list {
    display: flex;
    justify-content: center;
    margin: 60px auto 0;
  }
  .free-button-list > li + li {
    margin-left: 60px;
  }
  .free-button-list > li > .button-02 {
    width: 390px;
  }
}
@media screen and (max-width:940px) {
  .free-button-list {
    margin: 30px 0;
  }
  .free-button-list > li + li {
    margin-top: 20px;
  }
  .free-button-list > li > .button-02 {
    width: 100%;
    max-width: 390px;
  }
}
.dummy-button-list {
  margin-bottom: 30px;
}
.dummy-button-list > li > .button-02.dummy-button {
  border-color: #B4B1B1;
  color: #B4B1B1;
  background: none;
}
.dummy-button-list > li > .button-02.dummy-button::after {
  border-color: #B4B1B1;
}
.free-button {
  background: #FFBEBE;
  font-weight: bold;
}
@media screen and (min-width:400px) {
  .free-button > br {
    display: none;
  }
}
.end-txt {
  margin-top: 58px;
  color: #C00000;
  font-weight: bold;
  text-align: center;
}
.support {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .support {
    margin-bottom: 40px;
  }
}
.support-txt {
  margin-bottom: 20px;
  font-weight: bold;
}
.support-inner {
  margin-top: 20px;
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 37px;
}
@media screen and (max-width:767px) {
  .support-inner {
    padding-bottom: 20px;
    gap: 20px;
    grid-template-columns: 100px 1fr;
  }
}
@media screen and (max-width:400px) {
  .support-inner {
    display: block;
  }
  .support-step {
    display: none;
  }
}
.support-step ol {
  font-size: 24px;
  font-weight: bold;
  display: grid;
  height: 100%;
  grid-template-rows: 13.7fr 39.2fr 47.1fr;
  align-items: stretch;
}
@media screen and (max-width:767px) {
  .support-step ol {
    font-size: 18px;
  }
}
.support-step li {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-bottom: 22px;
}
.support-step li::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 140px;
  height: 22px;
}
@media screen and (max-width:767px) {
  .support-step li::before {
    width: 100px;
  }
}
.support-step li::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  margin: 0 auto;
  border-left: 70px solid transparent;
  border-right: 70px solid transparent;
}
@media screen and (max-width:767px) {
  .support-step li::after {
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
  }
}
.support-step li:nth-child(1) {
  background: #7DD5E0;
}
.support-step li:nth-child(1)::before {
  background: #3AC6D8;
}
.support-step li:nth-child(1)::after {
  border-top: 22px solid #7DD5E0;
}
.support-step li:nth-child(2) {
  background: #3AC6D8;
}
.support-step li:nth-child(2)::before {
  background: #00B4CB;
}
.support-step li:nth-child(2)::after {
  border-top: 22px solid #3AC6D8;
}
.support-step li:nth-child(3) {
  background: #00B4CB;
}
.support-step li:nth-child(3)::before {
  background: #F6F8FA;
}
.support-step li:nth-child(3)::after {
  border-top: 22px solid #00B4CB;
}
.support-list .number-title {
  margin-top: 10px;
  margin-bottom: 10px;
}
.support-list ul {
  padding-left: 1em;
  list-style-type: disc;
  font-size: 18px;
  line-height: 1.55;
}
@media screen and (max-width:767px) {
  .support-list ul {
    padding-left: 0.5em;
    font-size: 14px;
  }
}
@media screen and (max-width:400px) {
  .support-list ul {
    padding-left: 0;
  }
}
.support-list h5 {
  margin-top: 10px;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width:767px) {
  .support-list h5 {
    font-size: 14px;
  }
}
.support-list h5,
.support-list h5 + p {
  margin-left: 1em;
}

/* ------------------------------------------------------------------------------
     local
-------------------------------------------------------------------------------*/
.local {
  padding: 20px 0 60px;
}
@media screen and (max-width:767px) {
  .local {
    padding: 10px 0 0;
  }
}
.local p + p {
  margin-top: 20px;
}
.local-title {
  margin: 40px 0;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width:767px) {
  .local-title {
    margin: 20px 0;
    font-size: 18px;
  }
}
.local h4 {
  margin: 20px 0 10px;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width:767px) {
  .local h4 {
    font-size: 16px;
  }
}
.local-list {
  padding-left: 1em;
  list-style-type: disc;
  font-size: 18px;
  line-height: 1.55;
}
@media screen and (max-width:767px) {
  .local-list {
    font-size: 14px;
  }
}
.local-solvable {
  border: 4px solid #00B4CB;
  background: #E9FAFD;
  padding: 15px 28px;
  margin: 60px 0 30px;
  font-size: 24px;
  font-weight: bold;
  position: relative;
}
.local-solvable::before {
  content: "";
  position: absolute;
  top: -45px;
  left: 50%;
  margin-left: -120px;
  width: 0;
  height: 0;
  border-left: 120px solid transparent;
  border-right: 120px solid transparent;
  border-top: 30px solid #00B4CB;
}
@media screen and (max-width:767px) {
  .local-solvable {
    font-size: 16px;
    padding: 10px 14px;
    margin: 40px 0 20px;
  }
  .local-solvable::before {
    top: -34px;
    margin-left: -90px;
    border-left: 90px solid transparent;
    border-right: 90px solid transparent;
    border-top: 22px solid #00B4CB;
  }
}
.local .poc {
  padding-bottom: 60px;
}
@media screen and (max-width:767px) {
  .local .poc {
    padding-bottom: 30px;
  }
}
.local .poc-item {
  border: 2px solid #01B4CB;
  padding: 10px 28px;
  margin-top: 20px;
}
@media screen and (max-width:767px) {
  .local .poc-item {
    padding: 5px 14px;
  }
}
.local .poc-item h5 {
  font-weight: bold;
  margin: 24px 0;
}
.local .poc h4 {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width:767px) {
  .local .poc h4 {
    font-size: 18px;
  }
}
.local .poc-item-img {
  margin-top: 20px;
  text-align: center;
}
.local .poc-item-txt dt {
  font-weight: normal;
}
.local .poc-item-txt dd {
  margin-bottom: 24px;
}
.local .poc-item-txt ul {
  padding-left: 1.5em;
  list-style-type: disc;
  font-size: 18px;
  line-height: 1.55;
}
@media screen and (max-width:767px) {
  .local .poc-item-txt ul {
    font-size: 14px;
  }
}
.local .schedule {
  padding-bottom: 60px;
}
@media screen and (max-width:767px) {
  .local .schedule {
    padding-bottom: 30px;
  }
}
.local .schedule-item {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 38px;
}
@media screen and (max-width:767px) {
  .local .schedule-item {
    display: block;
  }
}
.local .schedule-date {
  margin-top: 10px;
}
@media screen and (max-width:767px) {
  .local .schedule-date {
    text-align: center;
  }
}
.local .schedule-detail {
  margin-top: 10px;
}
.local .schedule-detail dt {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width:767px) {
  .local .schedule-detail dt {
    font-size: 18px;
  }
}
.local .schedule-detail dd {
  margin-bottom: 10px;
}
.local .qa-list {
  margin-top: 15px;
}

/* ------------------------------------------------------------------------------
     head-btn
-------------------------------------------------------------------------------*/
.head-btn {
  display: flex;
  justify-content: center;
}
@media screen and (max-width:870px) {
  .head-btn {
    display: block;
  }
}
.head-btn-dl {
  width: calc((100% - 50px) / 3);
}
@media screen and (max-width:870px) {
  .head-btn-dl {
    width: 100%;
  }
}
.head-btn-dl + .head-btn-dl {
  margin-left: 25px;
}
@media screen and (max-width:870px) {
  .head-btn-dl + .head-btn-dl {
    margin-top: 60px;
    margin-left: 0;
  }
}
.head-btn-dl > dt {
  padding: 10px;
  background: #00B4CB;
  color: #fff;
  text-align: center;
}
.head-btn-dl > dd {
  margin-top: 24px;
}
@media screen and (max-width:870px) {
  .head-btn-dl > dd {
    margin-top: 20px;
  }
}
.head-btn-list > li + li {
  margin-top: 24px;
}
@media screen and (max-width:870px) {
  .head-btn-list > li + li {
    margin-top: 20px;
  }
}
.head-btn-list > li .button-07 {
  font-size: 16px;
}
@media screen and (max-width:1140px) {
  .head-btn-list > li .button-07 {
    font-size: 14px;
  }
}
@media screen and (max-width:970px) {
  .head-btn-list > li .button-07 {
    font-size: 12px;
  }
}
@media screen and (max-width:1140px) {
  .head-btn-list > li .button-07.button-fs {
    font-size: 14px;
  }
}
@media screen and (max-width:970px) {
  .head-btn-list > li .button-07.button-fs {
    font-size: 12px;
  }
}
.head-btn-txt {
  display: block;
  padding: 10px;
  background: #FFFFFF;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width:870px) {
  .head-btn-txt {
    max-width: 350px;
    margin: 0 auto;
  }
}

/* ------------------------------------------------------------------------------
     theme-box
-------------------------------------------------------------------------------*/
.theme-box {
  border: 1px solid #00B4CB;
}
@media screen and (max-width:700px) {
  .theme-box {
    width: 800px;
  }
}
@media screen and (max-width:700px) {
  .theme-wrap {
    overflow-x: auto;  /* 横スクロールの指定 */
    overflow-scrolling: touch;  /* スクロールを滑らかにする */
    -webkit-overflow-scrolling: touch;  /* スクロールを滑らかにする */
  }
}
.theme-title {
  padding: 12px 24px;
  background: #00B4CB;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width:767px) {
  .theme-title {
    padding: 12px 24px;
    font-size: 18px;
  }
}
.theme-box-inner {
  display: flex;
}
.theme-box-inner + .theme-box-inner {
  border-top: 1px solid #00B4CB;
}
.theme-box-contents {
  width: calc(100% - 170px);
}
.theme-box-contents + .theme-box-contents {
  width: 170px;
  border-left: 1px solid #00B4CB;
}
.theme-box-contents-title
.theme-box-contents-text {
  border-bottom: 1px solid #00B4CB;
}
.theme-box-contents-title {
  padding: 10px 24px;
  background: #E9FAFD;
  font-weight: bold;
  line-height: 1;
}
.theme-box-contents-text {
  padding: 20px 40px;
}
.theme-box-contents + .theme-box-contents > .theme-box-contents-title {
  text-align: center;
}
.theme-box-contents + .theme-box-contents > .theme-box-contents-text {
  padding: 20px 20px;
}
.theme-box-list {
  list-style: disc;
}
.theme-box-list > li {
  font-weight: bold;
}
.theme-box-list > li > .theme-box-list-text {
  margin-top: 20px;
  font-weight: normal;
}
.theme-box-area-list {
  list-style: disc;
  padding-left: 1em;
}
