@charset "UTF-8";
/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  reset PC
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 16px;
}

html {
  color: #000;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  word-break: break-all;
  letter-spacing: 0.05em;
}

body {
  background: #fff;
  margin: 0;
}
body.menu-open {
  overflow: hidden;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
}

p {
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: #000;
  text-decoration: none;
}

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

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

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

.outer-block {
  min-width: 1080px;
}

.inner-block {
  position: relative;
  width: 1040px;
  padding: 0 30px;
}
@media only screen and (min-width: 641px) {
  .inner-block {
    margin: 0 auto;
  }
}

#wrapper {
  position: relative;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}

@media only screen and (min-width: 641px) {
  .sp {
    display: none !important;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  a,
  a::before,
  a::after,
  button {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
.en {
  font-family: "Montserrat", "Noto Sans JP";
  letter-spacing: 0.1em;
}

.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/*------------------------------------------------------------------------------
  reset SP
------------------------------------------------------------------------------*/
@media only screen and (max-width: 640px) {
  body {
    font-size: 14px;
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  .outer-block {
    min-width: 320px;
  }
  .inner-block {
    padding: 0 20px;
    width: auto;
  }
  #wrapper {
    min-width: 320px;
    position: relative;
    overflow: hidden;
  }
  input[type=submit] {
    -webkit-text-size-adjust: 100%;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  .pc {
    display: none !important;
  }
}
.fadein {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
.fadein.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* 遅延 */
.delay1 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.delay2 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.delay3 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-header
----------------------------------- */
.c-header {
  width: 100%;
  padding: 20px 30px;
  background: #fff;
}
@media only screen and (max-width: 640px) {
  .c-header {
    padding: 15px 20px;
    position: fixed;
    top: 0;
    z-index: 1000;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.08);
            box-shadow: 0 3px 5px rgba(0, 0, 0, 0.08);
  }
}
.c-header .header-inn {
  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;
}
.c-header .header-inn .logo-area {
  width: 156px;
}
@media only screen and (max-width: 640px) {
  .c-header .header-inn .logo-area {
    width: 100px;
  }
}
.c-header .header-inn .hamburger {
  width: 30px;
  height: 15px;
  position: relative;
  display: none;
}
@media only screen and (max-width: 640px) {
  .c-header .header-inn .hamburger {
    display: block;
    z-index: 1001;
  }
}
.c-header .header-inn .hamburger span {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #838181;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-header .header-inn .hamburger span:nth-of-type(1) {
  top: 0;
}
.c-header .header-inn .hamburger span:nth-of-type(2) {
  top: 7px;
  opacity: 1;
}
.c-header .header-inn .hamburger span:nth-of-type(3) {
  bottom: 0;
}
.c-header .header-inn .hamburger.active span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 7px;
}
.c-header .header-inn .hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
.c-header .header-inn .hamburger.active span:nth-of-type(3) {
  bottom: 8px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-header .header-inn .header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media only screen and (max-width: 640px) {
  .c-header .header-inn .header-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 100px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 1000;
    padding: 100px 40px;
  }
}
.c-header .header-inn .header-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-left: auto;
}
@media only screen and (max-width: 640px) {
  .c-header .header-inn .header-menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 0;
    width: 100%;
  }
}
.c-header .header-inn .header-menu ul li {
  margin-right: 50px;
}
@media only screen and (max-width: 640px) {
  .c-header .header-inn .header-menu ul li {
    margin: 10px 0;
  }
}
.c-header .header-inn .header-menu ul li a {
  color: #8A8B8B;
  font-size: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-header .header-inn .header-menu ul li a:hover {
  color: #1ABD7E;
}
.c-header .header-inn .header-menu .contact-btn {
  width: 200px;
  height: 50px;
  border-radius: 9999px;
}
@media only screen and (max-width: 640px) {
  .c-header .header-inn .header-menu .contact-btn {
    width: 170px;
    height: 44px;
    margin: 20px auto 0;
  }
}
@media only screen and (max-width: 640px) {
  .c-header .header-inn .header-menu.active {
    right: 0;
  }
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 999;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------
c-footer
----------------------------------- */
#footer {
  background-color: #25211E;
  padding: 60px 0;
}
@media only screen and (max-width: 640px) {
  #footer {
    padding: 20px 0;
  }
}
#footer .footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 640px) {
  #footer .footer-menu {
    display: none;
  }
}
#footer .footer-menu li a {
  color: #fff;
  font-size: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#footer .footer-menu li a:hover {
  opacity: 0.6;
}
#footer .footer-menu li + li {
  margin-left: 50px;
}
#footer .copy {
  display: block;
  text-align: center;
  font-size: 10px;
  color: #fff;
  margin-top: 30px;
}
@media only screen and (max-width: 640px) {
  #footer .copy {
    margin-top: 0;
  }
}

/* --------------------------------
c-btn
----------------------------------- */
.c-btn {
  background: -webkit-gradient(linear, left top, right top, from(#C1D07C), to(#0FBD80));
  background: linear-gradient(to right, #C1D07C, #0FBD80);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 16px;
  position: relative;
}
@media only screen and (max-width: 640px) {
  .c-btn {
    font-size: 14px;
  }
}
.c-btn:before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn:hover {
  opacity: 0.8;
}
.c-btn:hover:before {
  right: 15px;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.ttl-area {
  text-align: center;
}
.ttl-area .ttl .en {
  font-size: 50px;
  color: #1ABD7E;
  line-height: 1;
}
@media only screen and (max-width: 640px) {
  .ttl-area .ttl .en {
    font-size: 30px;
  }
}
.ttl-area .ttl .sub {
  font-size: 14px;
  display: block;
  line-height: 1;
  margin-top: 5px;
}
@media only screen and (max-width: 640px) {
  .ttl-area .ttl .sub {
    font-size: 11px;
  }
}

.kv-block {
  background: url(../img/kv_pc.jpg) no-repeat center/cover;
  height: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media only screen and (max-width: 640px) {
  .kv-block {
    height: 400px;
    margin-top: 50px;
    background-image: url(../img/kv_sp.jpg);
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    background-position: bottom center;
  }
}
.kv-block .kv-block-inn {
  width: 1200px;
  margin: auto;
}
@media only screen and (max-width: 640px) {
  .kv-block .kv-block-inn {
    width: 100%;
    padding-left: 20px;
    margin-bottom: 30px;
  }
}
.kv-block .kv-block-inn .txt-area .main-ttl {
  font-size: 50px;
  color: #fff;
}
@media only screen and (max-width: 640px) {
  .kv-block .kv-block-inn .txt-area .main-ttl {
    font-size: 30px;
  }
}
.kv-block .kv-block-inn .txt-area .main-ttl .small {
  font-size: 26px;
  display: block;
}
@media only screen and (max-width: 640px) {
  .kv-block .kv-block-inn .txt-area .main-ttl .small {
    font-size: 16px;
  }
}
.kv-block .kv-block-inn .btn-area {
  margin-top: 30px;
}
@media only screen and (max-width: 640px) {
  .kv-block .kv-block-inn .btn-area {
    margin-top: 15px;
  }
}
.kv-block .kv-block-inn .btn-area .c-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 300px;
  height: 50px;
  border-radius: 9999px;
}
@media only screen and (max-width: 640px) {
  .kv-block .kv-block-inn .btn-area .c-btn {
    width: 200px;
    height: 46px;
  }
}

.concept-block {
  text-align: center;
  line-height: 2;
  font-size: 18px;
  padding: 8% 0;
}
@media only screen and (max-width: 640px) {
  .concept-block {
    font-size: 13px;
    line-height: 1.7;
    text-align: justify;
    padding: 10% 0 14%;
  }
}

.service-block {
  background: -webkit-gradient(linear, left top, right top, from(#E5EFD7), to(#BBEAD6));
  background: linear-gradient(to right, #E5EFD7, #BBEAD6);
  padding: 8% 0;
}
@media only screen and (max-width: 640px) {
  .service-block {
    padding: 14% 0;
  }
}
.service-block .service-block-inn {
  width: 90%;
  margin: auto;
}
.service-block .service-block-inn .service-inn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px 30px;
  margin-top: 50px;
}
@media only screen and (max-width: 640px) {
  .service-block .service-block-inn .service-inn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }
}
.service-block .service-block-inn .service-inn .box {
  width: 100%;
  background: url(../img/bg_ai.jpg) no-repeat center/cover;
  cursor: pointer;
}
.service-block .service-block-inn .service-inn .box .box-inn {
  padding: 70px 0;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .service-block .service-block-inn .service-inn .box .box-inn {
    padding: 35px 0;
  }
}
.service-block .service-block-inn .service-inn .box .box-inn .seminor-ttl {
  font-size: 30px;
  position: relative;
  line-height: 1.4;
}
@media only screen and (max-width: 640px) {
  .service-block .service-block-inn .service-inn .box .box-inn .seminor-ttl {
    font-size: 24px;
    line-height: 1.3;
  }
}
.service-block .service-block-inn .service-inn .box .box-inn .seminor-ttl:before {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 85%;
  height: 1px;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -5px;
}
@media only screen and (max-width: 640px) {
  .service-block .service-block-inn .service-inn .box .box-inn .seminor-ttl:before {
    width: 75%;
    bottom: -10px;
  }
}
.service-block .service-block-inn .service-inn .box .box-inn .detail {
  font-size: 16px;
  margin-top: 20px;
}
@media only screen and (max-width: 640px) {
  .service-block .service-block-inn .service-inn .box .box-inn .detail {
    font-size: 14px;
  }
}
.service-block .service-block-inn .service-inn .box .box-inn .btn-area {
  margin-top: 30px;
}
@media only screen and (max-width: 640px) {
  .service-block .service-block-inn .service-inn .box .box-inn .btn-area {
    margin-top: 15px;
  }
}
.service-block .service-block-inn .service-inn .box .box-inn .btn-area .popup-btn {
  display: block;
  color: #fff;
  border: 1px solid #fff;
  width: 200px;
  margin: 0 auto;
  height: 40px;
  border-radius: 9999px;
  font-size: 14px;
  position: relative;
}
@media only screen and (max-width: 640px) {
  .service-block .service-block-inn .service-inn .box .box-inn .btn-area .popup-btn {
    font-size: 12px;
    width: 180px;
    height: 36px;
  }
}
.service-block .service-block-inn .service-inn .box .box-inn .btn-area .popup-btn:before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.service-block .service-block-inn .service-inn .box:nth-of-type(2) {
  background-image: url(../img/bg_sns_01.jpg);
}
.service-block .service-block-inn .service-inn .box:nth-of-type(3) {
  background-image: url(../img/bg_sns_02.jpg);
}
.service-block .service-block-inn .service-inn .box:hover .btn-area .popup-btn {
  background: #fff;
  color: #797979;
}
.service-block .service-block-inn .service-inn .box:hover .btn-area .popup-btn:before {
  border-color: #797979;
  right: 15px;
}

.company-block {
  padding: 8% 0;
}
@media only screen and (max-width: 640px) {
  .company-block {
    padding: 14% 0;
  }
}
.company-block table {
  width: 700px;
  margin: 50px auto 0;
}
@media only screen and (max-width: 640px) {
  .company-block table {
    width: 100%;
    margin-top: 30px;
  }
}
.company-block table tr {
  border-top: 1px solid #ACACAC;
}
.company-block table tr th, .company-block table tr td {
  padding: 20px;
}
@media only screen and (max-width: 640px) {
  .company-block table tr th, .company-block table tr td {
    padding: 10px;
  }
}
.company-block table tr th {
  width: 30%;
}
@media only screen and (max-width: 640px) {
  .company-block table tr th {
    width: 100%;
    display: block;
    text-align: left;
    padding-bottom: 0;
  }
}
.company-block table tr td {
  word-wrap: 70%;
}
@media only screen and (max-width: 640px) {
  .company-block table tr td {
    width: 100%;
    display: block;
    text-align: left;
    padding-top: 3px;
    font-size: 13px;
  }
}
.company-block table tr:last-of-type {
  border-bottom: 1px solid #ACACAC;
}

.contact-block {
  padding: 8% 0;
  background: url(../img/bg_contact.jpg) no-repeat center/cover;
}
@media only screen and (max-width: 640px) {
  .contact-block {
    padding: 14% 0;
  }
}
.contact-block .btn-area {
  margin-top: 50px;
}
@media only screen and (max-width: 640px) {
  .contact-block .btn-area {
    margin-top: 20px;
  }
}
.contact-block .btn-area .contact-btn {
  width: 300px;
  height: 50px;
  margin: auto;
  border-radius: 9999px;
}
@media only screen and (max-width: 640px) {
  .contact-block .btn-area .contact-btn {
    width: 220px;
    height: 46px;
  }
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 900;
}
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.95);
          transform: translate(-50%, -50%) scale(0.95);
  width: 96%;
  max-width: 1200px;
  max-height: 95vh;
  background: #fff;
  padding: 100px 40px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1000;
  -webkit-box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
          box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
@media only screen and (max-width: 640px) {
  .popup {
    left: 2%;
    top: auto;
    bottom: 0;
    width: 96%;
    padding: 70px 0 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    max-height: none;
    height: 85vh;
  }
}
.popup.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
@media only screen and (max-width: 640px) {
  .popup.active {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.popup .popup-close {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 20px;
  top: 20px;
}
@media only screen and (max-width: 640px) {
  .popup .popup-close {
    width: 24px;
    height: 24px;
    position: absolute;
    right: 10px;
    top: calc(env(safe-area-inset-top) + 10px);
  }
}
.popup .popup-close span {
  position: absolute;
  left: 0;
  background-color: #838181;
  height: 1px;
  width: 100%;
}
.popup .popup-close span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.popup .popup-close span:nth-of-type(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media only screen and (max-width: 640px) {
  .popup .popup-content {
    height: 100%;
    overflow: auto;
    padding-bottom: 70px;
  }
}
.popup .popup-content .seminor-ttl {
  font-size: 40px;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .popup .popup-content .seminor-ttl {
    font-size: 24px;
  }
}
.popup .popup-content .detail {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 30px;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .popup .popup-content .detail {
    font-size: 14px;
    margin-top: 20px;
  }
}
.popup .popup-content .feature-area {
  background: rgba(188, 235, 215, 0.3);
  width: 750px;
  margin: 50px auto 0;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 20px;
}
@media only screen and (max-width: 640px) {
  .popup .popup-content .feature-area {
    width: 100%;
    margin: 20px auto 0;
    padding: 20px;
  }
}
.popup .popup-content .feature-area .feature-area-inn .box .icon {
  display: block;
  color: #1ABD7E;
  background-color: #fff;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #1ABD7E;
  width: 70px;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .popup .popup-content .feature-area .feature-area-inn .box .icon {
    width: 60px;
    font-size: 11px;
  }
}
.popup .popup-content .feature-area .feature-area-inn .box .txt {
  font-size: 16px;
  line-height: 1.6;
}
@media only screen and (max-width: 640px) {
  .popup .popup-content .feature-area .feature-area-inn .box .txt {
    font-size: 12px;
    line-height: 1.4;
    margin-top: 3px;
  }
}
.popup .popup-content .feature-area .feature-area-inn .box + .box {
  margin-top: 20px;
}
@media only screen and (max-width: 640px) {
  .popup .popup-content .feature-area .feature-area-inn .box + .box {
    margin-top: 10px;
  }
}
.popup .popup-content .about-seminor-area {
  width: 600px;
  margin: 50px auto;
}
@media only screen and (max-width: 640px) {
  .popup .popup-content .about-seminor-area {
    width: 100%;
    margin-top: 30px;
  }
}
.popup .popup-content .about-seminor-area .info-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 140px 20px 1fr;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 640px) {
  .popup .popup-content .about-seminor-area .info-list {
    -ms-grid-columns: 100px 5px 1fr;
    grid-template-columns: 100px 1fr;
    gap: 5px;
  }
}
.popup .popup-content .about-seminor-area .info-list .info-label {
  background: #5c655f;
  color: #fff;
  text-align: center;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 18px;
  line-height: 1;
}
@media only screen and (max-width: 640px) {
  .popup .popup-content .about-seminor-area .info-list .info-label {
    font-size: 12px;
    padding: 4px 6px;
  }
}
.popup .popup-content .about-seminor-area .info-list .info-text {
  margin: 0;
}
.popup .popup-content .about-seminor-area .info-list + .info-list {
  margin-top: 15px;
}
@media only screen and (max-width: 640px) {
  .popup .popup-content .about-seminor-area .info-list + .info-list {
    margin-top: 5px;
  }
}
.popup .popup-content .curriculum-area .info-label {
  background: #5c655f;
  color: #fff;
  text-align: center;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 18px;
  line-height: 1;
  width: 180px;
  margin: auto;
}
@media only screen and (max-width: 640px) {
  .popup .popup-content .curriculum-area .info-label {
    width: 130px;
    font-size: 12px;
    padding: 4px 6px;
  }
}
.popup .popup-content .curriculum-area .curriculum-table {
  margin-top: 10px;
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
@media only screen and (max-width: 640px) {
  .popup .popup-content .curriculum-area .curriculum-table {
    display: block;
    width: 100%;
    font-size: 13px;
  }
}
@media only screen and (max-width: 640px) {
  .popup .popup-content .curriculum-area .curriculum-table thead {
    display: none;
  }
}
.popup .popup-content .curriculum-area .curriculum-table thead th {
  background: #1fb37a;
  color: #fff;
  padding: 5px 8px;
  text-align: left;
  border: 1px solid #cfcfcf;
}
@media only screen and (max-width: 640px) {
  .popup .popup-content .curriculum-area .curriculum-table tbody {
    display: block;
    width: 100%;
    border: 1px solid #cfcfcf;
  }
}
.popup .popup-content .curriculum-area .curriculum-table tbody td {
  border: 1px solid #ddd;
  padding: 5px 8px;
}
@media only screen and (max-width: 640px) {
  .popup .popup-content .curriculum-area .curriculum-table tbody td {
    border: none;
  }
}
@media only screen and (max-width: 640px) {
  .popup .popup-content .curriculum-area .curriculum-table tbody td.no {
    font-weight: bold;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 35px;
    font-weight: bold;
  }
}
@media only screen and (max-width: 640px) {
  .popup .popup-content .curriculum-area .curriculum-table tbody td.course-title {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-weight: 600;
    font-size: 14px;
  }
}
@media only screen and (max-width: 640px) {
  .popup .popup-content .curriculum-area .curriculum-table tbody td.course-detail {
    display: none;
  }
}
@media only screen and (max-width: 640px) {
  .popup .popup-content .curriculum-area .curriculum-table tbody td.course-time {
    display: none;
  }
}
@media only screen and (max-width: 640px) {
  .popup .popup-content .curriculum-area .curriculum-table tr {
    display: block;
    width: 100%;
    padding: 5px;
    border-bottom: 1px solid #ddd;
    position: relative;
    cursor: pointer;
  }
  .popup .popup-content .curriculum-area .curriculum-table tr:after {
    content: "+";
    position: absolute;
    right: 10px;
    top: 4px;
    font-size: 20px;
  }
}
.popup .popup-content .curriculum-area .curriculum-table tr.active:after {
  content: "−";
}
@media only screen and (max-width: 640px) {
  .popup .popup-content .curriculum-area .curriculum-table tr.active .course-detail {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 125px 1fr;
    grid-template-columns: 125px 1fr;
    margin-top: 10px;
    line-height: 1.4;
  }
  .popup .popup-content .curriculum-area .curriculum-table tr.active .course-detail:before {
    content: "セクション名";
    font-weight: bold;
  }
}
@media only screen and (max-width: 640px) {
  .popup .popup-content .curriculum-area .curriculum-table tr.active .course-time {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 125px 1fr;
    grid-template-columns: 125px 1fr;
    margin-top: 5px;
  }
  .popup .popup-content .curriculum-area .curriculum-table tr.active .course-time:before {
    content: "標準学習時間(分)";
    font-weight: bold;
  }
}
.popup .popup-content .curriculum-area .add-txt {
  margin-top: 10px;
  text-align: center;
  display: block;
}
@media only screen and (max-width: 640px) {
  .popup .popup-content .curriculum-area .add-txt {
    font-size: 12px;
  }
}
.popup .popup-content .btn-area {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
@media only screen and (max-width: 640px) {
  .popup .popup-content .btn-area {
    display: block;
    margin-top: 30px;
  }
}
.popup .popup-content .btn-area a {
  width: 220px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 9999px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media only screen and (max-width: 640px) {
  .popup .popup-content .btn-area a {
    width: 200px;
    height: 46px;
    margin: auto;
  }
}
.popup .popup-content .btn-area a span {
  font-size: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.popup .popup-content .btn-area a.form-btn {
  background-color: #0FBD7F;
  border: 1px solid #0FBD7F;
}
.popup .popup-content .btn-area a.form-btn:before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (min-width: 641px) {
  .popup .popup-content .btn-area a.form-btn:hover {
    background-color: rgba(188, 235, 215, 0.4117647059);
  }
  .popup .popup-content .btn-area a.form-btn:hover:before {
    border-color: #0FBD7F;
    right: 15px;
  }
  .popup .popup-content .btn-area a.form-btn:hover span {
    color: #0FBD7F;
  }
}
.popup .popup-content .btn-area a.form-btn span {
  color: #fff;
}
.popup .popup-content .btn-area a.pdf-btn {
  background-color: #fff;
  border: 1px solid #0FBD7F;
}
.popup .popup-content .btn-area a.pdf-btn:before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: 1px solid #0FBD7F;
  border-right: 1px solid #0FBD7F;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.popup .popup-content .btn-area a.pdf-btn span {
  color: #0FBD7F;
}
@media only screen and (min-width: 641px) {
  .popup .popup-content .btn-area a.pdf-btn:hover {
    background-color: rgba(188, 235, 215, 0.4117647059);
  }
  .popup .popup-content .btn-area a.pdf-btn:hover:before {
    right: 15px;
  }
}
.popup .popup-content .btn-area a + a {
  margin-left: 30px;
}
@media only screen and (max-width: 640px) {
  .popup .popup-content .btn-area a + a {
    margin-left: auto;
    margin-top: 10px;
  }
}

.popup-open {
  overflow: hidden;
}