@charset "UTF-8";
/* KOBURIAI　追加css */
div#wpadminbar {
  display: none;
}

/*common*/
html {
  scroll-behavior: smooth;
}

.text_pink {
  color: #f7418f;
}

.nowrap {
  white-space: nowrap;
}

.button_basic {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: 56px;
  background: #fffdf7;
  border: 1px solid #000000;
  border-radius: 60px;
  margin: 0 auto;
}
.button_basic a {
  width: 100%;
  height: 100%;
  font-weight: 700;
  font-size: 20px;
  color: #333333;
  padding: 10px 77px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.button_basic:hover {
  background-color: #f74190;
  transition: all 0.3s;
}

.btn_box {
  max-width: 720px;
}
.btn_box a.normal {
  height: 90px;
  background: #f7418f;
  border-radius: 58.5px;
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin: 0 auto;
  position: relative;
  margin-bottom: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn_box a.normal .big {
  font-size: 36px;
}
.btn_box a.normal p.head {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 8px;
}
.btn_box a.normal::before {
  content: "";
  background-image: url(../images/arrow-btn.svg);
  right: 36px;
  top: 50%;
  bottom: 50%;
  margin: auto;
  position: absolute;
  width: 15px;
  height: 18px;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
}

.btn_box_pop {
  max-width: 512px;
  text-align: center;
  margin: 0 auto;
}
.btn_box_pop a.normal {
  background: #f7418f;
  border-radius: 80px;
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  letter-spacing: 0.1em;
  padding: 14px 81.6px 18px;
  color: #ffffff;
  margin: 0 auto;
  position: relative;
  margin-bottom: 42px;
}
.btn_box_pop a.normal .head {
  margin-bottom: 6px;
  font-weight: 400;
}
.btn_box_pop a.normal .pop {
  font-family: "Noto Sans CJK JP";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  letter-spacing: 0.06em;
  color: #ffffff;
  display: block;
  position: relative;
  width: fit-content;
  padding: 0 50px;
  margin: 0 auto;
  margin-bottom: 4px;
}
.btn_box_pop a.normal .pop::before {
  content: "";
  width: 2px;
  height: 26.5px;
  display: block;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  top: 0;
  margin: auto;
  left: 30px;
  transform: rotate(-25deg);
}
.btn_box_pop a.normal .pop::after {
  content: "";
  width: 2px;
  height: 26.5px;
  display: block;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  top: 0;
  margin: auto;
  right: 30px;
  transform: rotate(25deg);
}
.btn_box_pop a.normal .big {
  font-size: 36px;
}
.btn_box_pop a.normal .btn_box .line:before {
  content: "";
  background-image: url(../images/arrow-right.png);
  right: 36px;
  top: 50%;
  bottom: 50%;
  margin: auto;
  position: absolute;
  width: 21px;
  height: 21px;
  display: block;
  background-size: cover;
}

h2.section_title {
  margin-bottom: 32px;
  text-align: center;
}
h2.section_title .title_en {
  font-family: "Noto Sans CJK JP";
  font-style: normal;
  font-weight: 900;
  font-size: 60px;
  line-height: 90px;
  color: #333333;
}
h2.section_title .title_jp {
  font-family: "Tsunagi Gothic Black";
  font-style: normal;
  font-weight: 900;
  font-size: 28px;
  line-height: 90px;
  color: #333333;
  width: 100%;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

.text01 {
  font-family: "Noto Sans CJK JP";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0.0008em;
  color: #333333;
}

.news_img {
  object-fit: cover;
  overflow: hidden;
  border-radius: 1.5rem;
  width: 240px;
  height: 240px;
}

.single img.attachment-thumbnail.size-thumbnail.wp-post-image {
  max-height: 672px;
}

@media screen and (max-width: 920px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}
@media screen and (max-width: 460px) {
  .news_contents img {
    width: 100%;
    height: 176px;
    max-width: inherit;
  }
}
/*////////// return top ////////////*/
.return_top {
  position: fixed;
  right: 0;
  bottom: 0;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  background: var(--main-color);
  padding: 12px 20px;
  cursor: pointer;
  transition: 0.5s;
  opacity: 0.8;
  /*デフォルトで非表示にする*/
  opacity: 0;
  visibility: hidden;
  /*このクラスが付与されると表示する*/
}
.return_top.active {
  opacity: 1;
  visibility: visible;
}

/*////////// header //////////*/
header nav.header {
  padding: 2rem 4rem;
  background-color: transparent;
}
header nav.header ul li a {
  text-shadow: 0px 0px 12px #fff7f6;
}
header a.site_logo {
  font-family: "Gothic A1";
  font-style: normal;
  font-weight: 900;
  font-size: 28px;
  line-height: 32px;
  color: #f7418f;
}

/*////////// Main Visual //////////*/
section.mv {
  margin-bottom: 64px;
}
section.mv .main-visual {
  min-height: 810px;
  height: 810px;
  background-image: url(../images/mainvisual-koburiai.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  padding-bottom: 42px;
}
section.mv .main-visual .mv_inner {
  max-width: 910px;
  margin: 0 auto;
  height: 100vh;
  padding-top: 73px;
}
section.mv .main-visual .mv_inner .mv_box {
  height: 416px;
  padding-top: 72px;
  margin-bottom: 24px;
}
section.mv .main-visual .mv_inner .mv_box .box {
  padding: 70px 20px 5px 30px;
  width: 380px;
  height: 337px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  position: relative;
}
section.mv .main-visual .mv_inner .mv_box .box .ribon {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  position: absolute;
  width: 247px;
  height: 88px;
  background: #fdffe1;
  border: 4px solid rgba(252, 129, 158, 0.9);
  border-radius: 10px;
  font-family: "PT Sans Caption";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 60px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.02em;
  color: #222222;
  left: 0;
  right: 0;
  margin: auto;
  top: -35px;
}
section.mv .main-visual .mv_inner .mv_box .box .ribon .num.big {
  font-size: 48px;
}
section.mv .main-visual .mv_inner .mv_box .box .main_text {
  /* 月3,000円で 学ぶ・つながる・ 仕事をする！ */
  font-family: "Tsunagi Gothic Black";
  font-style: normal;
  font-weight: 900;
  font-size: 40px;
  line-height: 68px;
  letter-spacing: -0.01em;
  color: #f7418f;
}
section.mv .main-visual .mv_inner .mv_box .box .main_text span.big {
  font-size: 54px;
}
section.mv .main-visual .mv_inner .mv_box .box .sub_text {
  position: absolute;
  right: -60px;
  bottom: 30px;
}
section.mv .main-visual .mv_inner .mv_center {
  width: 100%;
}
section.mv .main-visual .mv_inner .mv_center h1 {
  /* 子育てしながらキャリアを作る！ */
  font-family: "Gothic A1";
  font-style: normal;
  font-weight: 900;
  font-size: 50px;
  letter-spacing: 0.21em;
  color: #ffffff;
  text-shadow: 0px 1px 5.7px rgba(0, 0, 0, 0.25);
  text-align: center;
  margin-bottom: 40px;
}
section.mv .main-visual .mv_inner .btn_box {
  width: 100%;
  max-width: 512px;
}
section.mv .swiper-wrapper {
  height: 100%;
  display: block;
}
section.mv .swiper-slide.slide01 {
  height: 100%;
}
section.mv h1.mv_left_title {
  font-style: normal;
  font-weight: 900;
  font-size: 90px;
  line-height: 90px;
  text-align: left;
  color: #333333;
}
section.mv .main_key {
  display: block;
  line-height: 90px;
  margin: 24px 0;
}
section.mv h2.mv_catch {
  font-family: "Gothic A1";
  font-style: normal;
  font-weight: 900;
  font-size: 32px;
  line-height: 90px;
  letter-spacing: 0.23em;
  color: #ffffff;
  text-shadow: 0px 0px 17px #f7418f;
}

section.tokuten {
  background-color: #fff;
  border-bottom: 1px solid #333333;
  padding-bottom: 50px;
}
section.tokuten h2.section_title {
  padding: 64px 0 60px;
  text-align: center;
}
section.tokuten h2.section_title .title_jp_tokuten {
  font-family: "Tsunagi Gothic Black";
  font-style: normal;
  font-weight: 900;
  font-size: 40px;
  letter-spacing: 0.02em;
  color: #f7418f;
  display: block;
  width: 100%;
  position: relative;
}
section.tokuten h2.section_title .title_jp_tokuten .big {
  font-size: 64px;
}
section.tokuten h2.section_title .title_jp_tokuten::before {
  content: "";
  display: block;
  height: 2px;
  width: 146px;
  background-color: #fc819e;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 146px;
}
section.tokuten h2.section_title .title_jp_tokuten::after {
  content: "";
  display: block;
  height: 2px;
  width: 146px;
  background-color: #fc819e;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 146px;
}
section.tokuten h2.section_title .title_jp--fudes {
  background-image: url(../images/fude-voice.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 51px;
  width: 220px;
  font-family: "Noto Sans CJK JP";
  font-style: normal;
  font-weight: 900;
  font-size: 24px;
  line-height: 32px;
  /* ボックスの高さと同一、または133% */
  text-align: center;
  letter-spacing: 0.08em;
  color: #444444;
  margin: 0 auto;
}
section.tokuten .box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}
section.tokuten .box .card {
  width: 340px;
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  align-items: center;
  justify-content: flex-start;
}
section.tokuten .box .card .image_frame {
  width: 225px;
  height: 225px;
  margin-bottom: 16px;
}
section.tokuten .box .card .image_frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
section.tokuten .box .card h3 {
  font-family: "Gothic A1";
  font-style: normal;
  font-weight: 900;
  text-align: center;
  color: #f7418f;
  margin-bottom: 0px;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
section.tokuten .box .card h3 .main {
  font-size: 24px;
  line-height: 36px;
  display: block;
  width: 100%;
}
section.tokuten .box .card h3 .sub {
  font-size: 20px;
  display: block;
  width: 100%;
}
section.tokuten .box .card .text {
  margin-bottom: 8px;
  text-align: left;
}
section.tokuten .box .card .point--pink {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  padding: 10px;
  background: #fc819e;
  border-radius: 30px;
  font-family: "Tsunagi Gothic Black";
  font-style: normal;
  font-weight: 900;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.03em;
  color: #ffffff;
  width: 244px;
  height: 115px;
}
section.tokuten .box .card .point_small--pink {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  padding: 10px;
  width: 239px;
  height: 68px;
  background: #fc819e;
  border-radius: 20px;
  font-family: "Tsunagi Gothic Black";
  font-style: normal;
  font-weight: 900;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.03em;
  color: #ffffff;
}
section.tokuten .box .card .point_small--green {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  padding: 10px;
  width: 239px;
  height: 68px;
  background: #9bd341;
  border-radius: 20px;
  font-family: "Tsunagi Gothic Black";
  font-style: normal;
  font-weight: 900;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.03em;
  color: #ffffff;
}

section.plan-off {
  padding-bottom: 100px;
  padding-top: 100px;
}
section.plan-off h2.section_title {
  margin-bottom: 60px;
  text-align: center;
}
section.plan-off .plan_bg {
  background-image: url(../images/plan-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 20px;
}
section.plan-off .plan_bg .plan_content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
section.plan-off .plan_bg .plan_content .off {
  width: 162px;
  height: 162px;
}
section.plan-off .plan_bg .plan_content .off .off_wrap {
  width: 162px;
  height: 162px;
}
section.plan-off .plan_bg .plan_content .off .off_inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #fff;
  font-family: "Noto Sans CJK JP";
  font-style: normal;
  font-weight: 900;
  font-size: 40px;
  text-align: center;
  color: #f7418f;
}
section.plan-off .plan_bg .plan_content .off .off_inner .row {
  height: 52px;
  line-height: 1;
}
section.plan-off .plan_bg .plan_content .off .off_inner .row .num.big {
  font-size: 52px;
}
section.plan-off .plan_bg .plan_content .off .off_inner .off {
  color: #222222;
  font-size: 46px;
  height: 52px;
  line-height: 1;
}
section.plan-off .plan_bg .plan_content .text {
  color: #fff;
}
section.plan-off .plan_bg .plan_content .text .text01 {
  font-family: "Noto Sans CJK JP";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  text-align: left;
  color: #fff;
  letter-spacing: 0.06em;
}
section.plan-off .plan_bg .plan_content .text .text02 {
  font-family: "Noto Sans CJK JP";
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 55px;
  text-align: center;
  letter-spacing: 0.06em;
}
section.plan-off .plan_bg .plan_content .text .text02 .big {
  font-size: 46px;
}

section.tokuten02 {
  padding: 60px 0px 40px;
  background: linear-gradient(180deg, rgba(255, 95, 132, 0.09) 0%, rgba(255, 150, 75, 0.09) 100%), #ffffff;
}
section.tokuten02 h2.section_title {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 64px;
}
section.tokuten02 h2.section_title .title_jp_tokuten {
  position: relative;
  font-family: "Tsunagi Gothic Black";
  font-style: normal;
  font-weight: 900;
  font-size: 32px;
  line-height: 90px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.02em;
  color: #f7418f;
  padding-left: 60px;
}
section.tokuten02 h2.section_title .title_jp_tokuten .big {
  font-size: 50px;
}
section.tokuten02 h2.section_title .title_jp_tokuten::after {
  width: 45px;
  height: 45px;
  display: block;
  background-image: url(../images/tokuten-heart.png);
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}
section.tokuten02 .box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}
section.tokuten02 .box .card {
  width: 340px;
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  align-items: center;
  justify-content: flex-start;
}
section.tokuten02 .box .card .image_frame {
  width: 225px;
  height: 225px;
  margin-bottom: 16px;
}
section.tokuten02 .box .card .image_frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
section.tokuten02 .box .card h3 {
  font-family: "Tsunagi Gothic Black";
  font-style: normal;
  font-weight: 900;
  font-size: 20px;
  line-height: 26px;
  color: #333333;
  position: relative;
  padding-left: 30px;
  text-align: left;
  max-width: 225px;
}
section.tokuten02 .box .card h3::after {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background-image: url(../images/icons_check.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
}
section.tokuten02 .box .card .text {
  margin-bottom: 8px;
  text-align: left;
}
section.tokuten02 .btn_box {
  max-width: 580px;
}
section.tokuten02 .btn_box a.normal {
  font-size: 28px;
}

section.premium {
  padding: 60px 0px 60px;
  border-bottom: 1px #444 solid;
}
section.premium .container {
  max-width: 860px;
}
section.premium .container h2.section_title {
  text-align: left;
}
section.premium .container .box {
  display: flex;
  gap: 40px;
  margin-bottom: 96px;
}
section.premium .container .box .image_frame {
  width: 360px;
  height: 240px;
}
section.premium .container .box .image_frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.premium .container .box .text h3 {
  font-family: "Tsunagi Gothic Black";
  font-style: normal;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 0.02em;
  color: #f7418f;
  margin-bottom: 24px;
}
section.premium .container .box .text .point {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 452px;
  height: 72px;
  background: #c3f277;
  border-radius: 20px;
  font-family: "Noto Sans CJK JP";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 32px;
  text-align: center;
  letter-spacing: 0.0008em;
  color: #333333;
  box-sizing: border-box;
  margin-bottom: 40px;
}
section.premium .container .box .text .point .big {
  font-size: 24px;
}
section.premium .container .box .text .pop_text {
  height: 32px;
  font-family: "Noto Sans CJK JP";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.0008em;
  color: #f7418f;
  position: relative;
  width: fit-content;
  padding: 0 50px;
  margin: 0 auto;
}
section.premium .container .box .text .pop_text::before {
  content: "";
  width: 2px;
  height: 26.5px;
  display: block;
  background-color: #fc819e;
  position: absolute;
  bottom: 0;
  top: 0;
  margin: auto;
  left: 30px;
  transform: rotate(-25deg);
}
section.premium .container .box .text .pop_text::after {
  content: "";
  width: 2px;
  height: 26.5px;
  display: block;
  background-color: #fc819e;
  position: absolute;
  bottom: 0;
  top: 0;
  margin: auto;
  right: 30px;
  transform: rotate(25deg);
}
section.premium .container .btn_box {
  max-width: 712px;
}

section.voice {
  padding: 60px 0px 60px;
  border-bottom: 1px #444 solid;
}
section.voice .container .head_text {
  height: 118px;
  margin: 0 auto;
  text-align: center;
  font-family: "Gothic A1";
  font-style: normal;
  font-weight: 900;
  font-size: 32px;
  line-height: 90px;
  /* または281% */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #f7418f;
  background-image: url(../images/fude-voice.png);
  background-repeat: no-repeat;
  background-size: 306px 71px;
  background-position: center;
  margin-bottom: 36px;
}
section.voice .container .box {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 96px;
}
section.voice .container .box .card {
  width: 524px;
  padding: 60px 60px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px;
  gap: 20px;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 0px 0px 12.9px rgba(0, 0, 0, 0.2);
}
section.voice .container .box .card .image_frame {
  width: 240px;
  height: 240px;
  margin-bottom: 12px;
}
section.voice .container .box .card .image_frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.voice .container .box .card h3.card_title {
  font-family: "Noto Sans CJK JP";
  font-style: normal;
  font-weight: 900;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.0008em;
  color: #fc819e;
  text-align: left;
  width: 100%;
}
section.voice .container .box .card .card_text {
  font-family: "Noto Sans CJK JP";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0.0008em;
  color: #333333;
}
section.voice .container .btn_box {
  max-width: 712px;
}

section.job-request {
  padding: 60px 0;
}
section.job-request .bg_box {
  width: 100%;
  height: 320px;
  background-image: url(../images/job-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.job-request .bg_box .box_inner {
  display: flex;
  row-gap: 40px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
section.job-request .bg_box .box_inner .job_text {
  font-family: "Noto Sans CJK JP";
  font-style: normal;
  font-weight: 900;
  font-size: 26px;
  line-height: 32px;
  text-align: center;
  letter-spacing: 0.32em;
  color: #ffffff;
}
section.job-request .bg_box .box_inner .button_basic {
  background: rgba(255, 253, 247, 0.8);
}

/*////////// about //////////*/
section.about {
  padding: 64px 0 72px;
  border-bottom: 1px solid #333;
}
section.about .box {
  display: flex;
  justify-content: space-between;
  gap: 120px;
}
section.about .box .item {
  width: 100%;
}

/*////////// board //////////*/
section.board {
  padding: 64px 0 72px;
  border-bottom: 1px solid #333;
}
section.board .head {
  margin: 0 auto;
  max-width: 720px;
  margin-bottom: 70px;
}
section.board .box {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
section.board .box .card {
  width: calc(50% - 20px);
  margin-bottom: 40px;
  text-align: center;
}
section.board .box .card .image_frame {
  width: 240px;
  height: 240px;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 20px;
}
section.board .box .card .image_frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.board .box .card .card_text {
  text-align: left;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.0008em;
  color: #333333;
}

/*////////// Column //////////*/
section.column {
  padding: 64px 0 80px;
  border-bottom: 1px solid #333;
}
section.column .head {
  margin-bottom: 42px;
}
section.column .box {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
section.column .box .card {
  width: calc((100% - 64px) / 3);
  margin-bottom: 50px;
  text-align: center;
}
section.column .box .card .image_frame {
  width: 240px;
  height: 240px;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 20px;
  background-color: #da1682;
}
section.column .box .card .image_frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
section.column .box .card .post_category {
  text-align: right;
  margin-bottom: 8px;
}
section.column .box .card .post_category .category_text {
  text-align: center;
  padding: 1px 4px;
  color: #da1682;
  border: 1px solid #da1682;
  font-size: 12px;
}
section.column .box .card h3.card_title {
  font-weight: 900;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.0008em;
  margin-bottom: 8px;
  text-align: left;
  min-height: 6.4rem;
}
section.column .box .card .card_text {
  text-align: left;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.0008em;
}
section.column .box .card .post_time {
  width: 100%;
  text-align: left;
  display: block;
  color: #a3a099;
  font-size: 14px;
  letter-spacing: 0.03em;
}

/*////////// Service //////////*/
section.service {
  padding: 64px 0 30px;
  border-bottom: 1px solid #333;
}
section.service .head {
  margin: 0 auto;
  max-width: 720px;
  margin-bottom: 70px;
}
section.service .box {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  row-gap: 0;
  flex-wrap: wrap;
  max-width: 880px;
  margin: 0 auto;
}
section.service .box .card {
  width: calc(50% - 40px);
  margin-bottom: 50px;
  text-align: center;
}
section.service .box .card .image_frame {
  width: 240px;
  height: 240px;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.service .box .card .image_frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
section.service .box .card .image_frame.enjoy {
  background-color: #fc819e;
}
section.service .box .card .image_frame.work {
  background-color: #fec7b4;
}
section.service .box .card .image_frame.work img {
  opacity: 0.4;
}
section.service .box .card .image_frame.study {
  background-color: #fff3c7;
}
section.service .box .card .image_frame.study img {
  opacity: 0.3;
}
section.service .box .card .image_frame.special {
  background-color: #cdd62f;
}
section.service .box .card .image_frame h3.card_title {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  bottom: 50%;
  margin: auto;
  height: 100px;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  z-index: 100;
}
section.service .box .card .image_frame h3.card_title .en {
  color: #da1682;
}
section.service .box .card .image_frame h3.card_title .jp {
  color: #fff;
}
section.service .box .card .card_text {
  text-align: left;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.0008em;
  color: #333333;
  margin-bottom: 20px;
}

/*////////// footer //////////*/
footer a.site_logo {
  font-family: "Gothic A1";
  font-style: normal;
  font-weight: 900;
  font-size: 36px;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 32px;
}
footer nav.footer_sns {
  margin-bottom: 32px;
}
footer nav.footer_sns ul li a img {
  height: 21px;
  width: auto;
}
footer .footer_menu {
  margin-bottom: 64px;
}

@media screen and (max-width: 1000px) {
  section.about .box .item .image_frame img {
    width: 100%;
  }
  section.about .box {
    gap: 80px;
    flex-direction: column-reverse;
  }
  section.about .box .item .image_frame {
    text-align: center;
  }
  section.column .box .card {
    width: calc((100% - 64px) / 2);
  }
}
@media screen and (max-width: 920px) {
  section.mv .main-visual .mv_inner .mv_box .box {
    margin-left: 20px;
  }
  section.mv .main-visual .mv_inner .mv_center h1 {
    font-size: 40px;
  }
  section.tokuten h2.section_title .title_jp_tokuten::before {
    width: 70px;
    left: 30px;
  }
  section.tokuten h2.section_title .title_jp_tokuten::after {
    width: 70px;
    right: 30px;
  }
  section.tokuten .box {
    gap: 16px;
  }
  section.tokuten .box .card {
    width: 33.33%;
  }
  section.tokuten .box .card .image_frame {
    width: 150px;
    height: 150px;
  }
  section.tokuten .box .card h3 {
    font-size: 18px;
    line-height: 20px;
  }
  section.tokuten .box .card h3 .main {
    font-size: 18px;
    line-height: 20px;
  }
  section.tokuten .box .card h3 .sub {
    font-size: 16px;
  }
  section.tokuten .box .card .point_small--pink,
  section.tokuten .box .card .point_small--green,
  section.tokuten .box .card .point--pink {
    width: 90%;
    height: auto;
    font-size: 18px;
    line-height: 22px;
    border-radius: 20px;
  }
  section.tokuten02 .box {
    flex-wrap: wrap;
  }
  section.tokuten02 .box .card {
    width: 50%;
    margin-bottom: 40px;
    row-gap: 0;
  }
  section.premium .container .box .image_frame {
    width: 40%;
    height: auto;
  }
  section.premium .container .box .text {
    width: 50%;
  }
  section.premium .container .box {
    gap: 2%;
  }
  section.premium .container .box .text .pop_text {
    width: 100%;
  }
}
@media screen and (max-width: 820px) {
  section.column .box .card {
    width: calc((100% - 64px) / 2);
  }
}
@media screen and (max-width: 740px) {
  section.mv .mv_infobar .mv_infomation {
    width: 100%;
  }
  section.mv .mv_infobar .mv_infomation {
    padding: 10px 10px;
    gap: 16px;
  }
  section.mv .mv_infobar .mv_infomation .mv_title {
    font-size: 20px;
  }
  section.mv .mv_infobar .mv_infomation .mv_title::after {
    right: -10px;
  }
  section.mv .mv_infobar .mv_infomation .mv_infomation-contents {
    padding-left: 8px;
    font-size: 16px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 700px) {
  h2.section_title .title_en {
    font-size: 60px;
    line-height: 70px;
  }
  .button_basic a {
    padding: 10px 46px;
  }
  section.mv .main-visual {
    background-image: url(../images/mainvisual-koburiai-sp.jpg);
  }
}
@media screen and (max-width: 650px) {
  section.mv h1.mv_left_title {
    font-size: 70px;
    line-height: 80px;
  }
}
@media screen and (max-width: 570px) {
  section.board .box .card {
    width: 100%;
    margin-bottom: 20px;
  }
  section.service .box .card .image_frame {
    width: 200px;
    height: 200px;
  }
  section.service .box .card {
    width: calc((100% - 32px) / 2);
    margin-bottom: 50px;
    text-align: center;
  }
  .button_basic {
    width: 64%;
  }
  .button_basic a {
    font-size: 16px;
    padding: 10px 32px;
  }
  section.premium .container .box .text .pop_text {
    font-size: 16px;
  }
}
@media screen and (max-width: 540px) {
  section.mv .main-visual .mv_inner .mv_center h1 {
    font-size: 34px;
    margin-bottom: 0px;
  }
  section.mv .main-visual .mv_inner .mv_box .box .main_text {
    font-size: 30px;
    line-height: 50px;
  }
  section.mv .main-visual .mv_inner .mv_box .box .main_text span.big {
    font-size: 40px;
    line-height: 1;
  }
  section.mv .main-visual .mv_inner .mv_box .box .ribon {
    font-size: 26px;
    line-height: 40px;
    height: auto;
  }
  section.mv .main-visual .mv_inner .mv_box .box .ribon .num.big {
    font-size: 36px;
  }
  .left_sp {
    display: flex;
    flex-direction: column-reverse;
  }
  section.mv .main-visual .mv_inner .mv_box .box {
    padding: 54px 20px 20px 20px;
    width: 80%;
    height: 220px;
    margin-left: 10px;
    margin-right: 10px;
    margin: 0 auto;
  }
  section.mv .main-visual .mv_inner {
    max-width: 100%;
    padding-top: 210px;
  }
  section.mv .main-visual .mv_inner .mv_box .box .sub_text {
    position: absolute;
    right: 120px;
    bottom: 5px;
    width: 30%;
    height: auto;
  }
  section.mv .main-visual .mv_inner .mv_box {
    height: auto;
    padding-top: 72px;
    margin-bottom: 24px;
  }
  .sub_text img {
    width: 200px;
  }
  .mv_left {
    width: 100%;
  }
  section.board .box .card {
    width: 100%;
    margin-bottom: 20px;
  }
  section.column .box .card .image_frame {
    width: 100%;
    height: auto;
  }
  section.column .box .card {
    width: calc((100% - 32px) / 2);
  }
  section.column .box {
    gap: 16px;
  }
  section.service .box {
    gap: 16px;
    max-width: 100%;
  }
  section.service .box .card {
    width: calc(50% - 16px);
  }
}
@media screen and (max-width: 540px) {
  h2.section_title .title_jp {
    font-size: 20px;
    line-height: 60px;
  }
  h2.section_title {
    margin-bottom: 20px;
  }
  section.mv .main-visual .mv_inner .btn_box {
    width: 90%;
    max-width: 90%;
  }
  .btn_box a.normal {
    font-size: 18px;
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 26px;
    justify-content: center;
    align-items: center;
    height: 80px;
  }
  .btn_box a.normal .big {
    font-size: 25px;
  }
  section.premium .container .box .text .pop_text {
    height: auto;
    font-size: 16px;
    box-sizing: border-box;
  }
  section.premium {
    padding: 40px 0px 30px;
  }
  .btn_box {
    max-width: 90%;
  }
  section.mv {
    margin-bottom: 0;
  }
  section.mv h1.mv_left_title {
    font-size: 42px;
    line-height: 1.2;
  }
  section.tokuten h2.section_title .title_jp_tokuten {
    font-size: 20px;
    letter-spacing: 0;
  }
  section.tokuten h2.section_title .title_jp_tokuten .big {
    font-size: 34px;
  }
  section.tokuten h2.section_title .title_jp_tokuten::before,
  section.tokuten h2.section_title .title_jp_tokuten::after {
    display: none;
  }
  section.tokuten h2.section_title {
    padding: 32px 0 20px;
  }
  section.tokuten .box {
    gap: 40px;
    flex-wrap: wrap;
  }
  section.tokuten .box .card {
    width: 100%;
    row-gap: 8px;
  }
  section.tokuten .box .card .image_frame {
    margin-bottom: 0;
  }
  section.tokuten .box .card h3 {
    min-height: 64px;
  }
  .btn_box_pop a.normal {
    font-size: 16px;
    padding: 14px 8px 18px;
  }
  .btn_box_pop a.normal .big {
    font-size: 24px;
  }
  section.tokuten {
    padding-bottom: 30px;
  }
  section.plan-off {
    padding-bottom: 60px;
    padding-top: 60px;
  }
  section.plan-off .plan_bg .plan_content {
    gap: 20px;
    flex-direction: column;
  }
  section.tokuten02 h2.section_title .title_jp_tokuten {
    font-size: 20px;
    display: flex;
    flex-direction: column;
    line-height: 1.5;
    padding-left: 50px;
  }
  section.tokuten02 h2.section_title .title_jp_tokuten div {
    width: 100%;
    display: block;
  }
  section.tokuten02 h2.section_title {
    margin-bottom: 32px;
  }
  section.tokuten02 h2.section_title .title_jp_tokuten .big {
    font-size: 34px;
  }
  section.tokuten02 .box .card {
    width: 46%;
  }
  section.tokuten .box .card .image_frame {
    width: 180px;
    height: 180px;
  }
  section.tokuten02 {
    padding: 30px 0px 30px;
  }
  section.plan-off .plan_bg .plan_content .text .text02 {
    font-size: 24px;
    line-height: 42px;
    letter-spacing: 0.06em;
  }
  section.plan-off .plan_bg .plan_content .text .text02 .big {
    font-size: 36px;
  }
  section.plan-off h2.section_title {
    margin-bottom: 30px;
  }
  section.tokuten02 .box .card .image_frame {
    width: 100%;
    height: auto;
    margin-bottom: 16px;
  }
  section.tokuten02 .box .card h3 {
    font-size: 16px;
    line-height: 20px;
    padding-left: 20px;
    text-align: left;
    max-width: 100%;
  }
  section.tokuten02 .box .card h3::after {
    content: "";
    width: 17px;
    height: 17px;
  }
  section.voice .container .head_text {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  section.voice .container .box {
    margin-bottom: 60px;
    flex-wrap: wrap;
  }
  section.voice {
    padding: 60px 0px 30px;
  }
  section.voice .container .box .card {
    width: 98%;
    padding: 40px 40px;
  }
  section.job-request {
    padding: 30px 0;
  }
  section.tokuten02 .box {
    margin-bottom: 20px;
  }
  section.tokuten02 .btn_box a.normal {
    font-size: 17px;
  }
  section.premium .container .box {
    flex-wrap: wrap;
  }
  section.premium .container .box .text h3 {
    font-size: 24px;
    letter-spacing: 0;
    margin-bottom: 0px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: center;
  }
  section.premium .container .box .text .point .big {
    font-size: 20px;
  }
  section.premium .container .box .image_frame {
    width: 100%;
    margin-bottom: 20px;
  }
  section.premium .container .box .text {
    width: 100%;
  }
  section.premium .container .box .text .point {
    padding: 6px;
    width: 100%;
    height: auto;
    font-size: 17px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    font-size: 16px;
  }
  section.premium .container .box {
    margin-bottom: 12px;
    flex-wrap: wrap;
  }
  .btn_box a.normal::before {
    right: 20px;
  }
  section.mv .main_key {
    line-height: 70px;
    margin: 8px 0;
    width: 100%;
  }
  section.mv h2.mv_catch {
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0.1em;
  }
  .btn_box_pop a.normal .pop {
    font-size: 16px;
  }
  .button_basic a {
    font-size: 15px;
    padding: 10px 10px;
  }
}
@media screen and (max-width: 480px) {
  h2.section_title .title_en {
    font-size: 40px;
    line-height: 50px;
  }
  h2.section_title .title_jp {
    font-size: 24px;
    line-height: 70px;
  }
  section.board .box .card .card_text {
    line-height: 1.6;
  }
  section.service .box .card .image_frame h3.card_title .jp {
    font-size: 20px;
    line-height: 1.4;
  }
  section.column .box .card .card_text {
    line-height: 1.6;
  }
  section.service .box .card .card_text {
    line-height: 1.6;
  }
  section.service .box .card .image_frame h3.card_title .en {
    font-size: 6rem;
  }
  section.column .box .card h3.card_title {
    font-size: 18px;
    line-height: 1.4em;
  }
  section.service .box .card {
    width: 100%;
  }
}
#bbp-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 0 6rem 0;
}

#bbp-content {
  background-color: #fff;
  border-radius: 3rem;
  width: 70%;
  padding: 3rem 3rem;
  box-shadow: 0 0 1.5rem rgba(51, 51, 51, 0.034);
  box-sizing: border-box;
}

.bbp-forum-post {
  width: 100%;
  padding: 2rem 0;
}

.bbp-search-form {
  margin-bottom: 20px;
}

.bbp-forum-post h1,
.bbp-forum-content h1 {
  font-size: 2.6rem;
  color: #f7418f;
}

.single h2,
.single h3 {
  padding: 1rem 1rem;
  border-left: 3px solid #fc819e;
  background: #fefbf6;
}

.single h3,
.single h4 {
  font-size: 17px;
  margin-top: 4rem;
}

#bbpress-forums a,
#bbpress-forums a:hover {
  box-shadow: none;
  border: none;
  transition: none;
  color: #f97d9a;
}

h3.bbpress-title {
  font-size: 1.8rem;
  font-family: "Quicksand", "Noto Sans JP", sans-serif;
  padding: 1rem 1rem;
  border-left: 3px solid #fc819e;
  background: #fefbf6;
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.bbs_note {
  font-size: 13px;
}
.bbs_note a {
  text-decoration: underline;
  color: #f7418f;
}

a.bbp-forum-title {
  color: #fc819e;
  padding-left: 16px;
  position: relative;
  display: block;
  margin-bottom: 4px;
  line-height: 1.4;
  font-size: 14px;
}
a.bbp-forum-title::before {
  position: absolute;
  top: 50%;
  bottom: 50%;
  margin: auto;
  left: 0;
  font-size: 16px;
  line-height: 16px;
  content: "";
  background-color: #fc819e;
  width: 5px;
  height: 5px;
}

.body_bbpress h3 {
  color: #f7418f;
  margin-top: 60px;
}

button,
input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  border: 1px solid #333;
  border-radius: 16px;
  padding: 2px 10px;
  box-sizing: border-box;
}

.swpm-more-tag-not-logged-in.swpm-margin-top-10 {
  padding: 14px;
  background-color: #efefef;
  border-radius: 16px;
  text-align: center;
}
.swpm-more-tag-not-logged-in.swpm-margin-top-10 a {
  color: #da1682;
  text-decoration: underline;
}

a.swpm-login-link {
  display: block;
  margin: 0 auto;
  width: 60% !important;
  padding: 1rem 4rem;
  border: 2px solid var(--main-color);
  border-radius: 999px;
  color: #fff !important;
  text-decoration: none;
  background-color: var(--main-color);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  text-align: center;
  display: block;
  margin-top: 1em;
  margin-bottom: 1em;
  text-decoration: none !important;
}

.cta_login .notice_message {
  border: #cee1ef 1px solid;
  background-color: #f0f8ff;
  margin-top: 80px;
  padding: 1rem;
  border-radius: 4px;
}
.cta_login .cta_btn.board_login {
  width: 130px;
  padding: 1rem 4rem;
  border: 2px solid var(--main-color);
  border-radius: 999px;
  color: #fff !important;
  background-color: var(--main-color);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  min-width: 60px;
  text-align: center;
  display: block;
  margin-top: 16px;
  padding: 4px 4px;
  font-size: 12px;
}
.cta_login .cta_btn.board_register {
  width: 130px;
  padding: 1rem 4rem;
  border: 2px solid #f7418f;
  border-radius: 999px;
  color: #fff !important;
  background-color: #f7418f;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  min-width: 60px;
  text-align: center;
  display: block;
  margin-top: 16px;
  padding: 4px 4px;
  font-size: 12px;
}
.cta_login .cta_btn.board_lost-pass {
  width: 140px;
  padding: 1rem 4rem;
  border: 2px solid #c3c3c3;
  border-radius: 999px;
  color: #fff !important;
  background-color: #c3c3c3;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  min-width: 60px;
  text-align: center;
  display: block;
  margin-top: 16px;
  padding: 4px 4px;
  font-size: 12px;
}

.form_bottom {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: flex-start;
}

@media screen and (max-width: 650px) {
  .body_bbpress h3 {
    font-size: 3rem;
  }
  #bbpress-forums fieldset.bbp-form input[type=password],
  #bbpress-forums fieldset.bbp-form input[type=text],
  #bbpress-forums fieldset.bbp-form select {
    width: 90%;
  }
}
#bbpress-forums fieldset.bbp-form input[type=password],
#bbpress-forums fieldset.bbp-form input[type=text],
#bbpress-forums fieldset.bbp-form select {
  min-height: 28px;
  height: 28px;
  padding: 5px;
  width: 90%;
}

.menu_btn.board_login {
  width: 60%;
  padding: 1rem 4rem;
  border: 2px solid var(--main-color);
  border-radius: 999px;
  color: #fff;
  background-color: var(--main-color);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  min-width: 60px;
  text-align: center;
  display: block;
  margin: 0 auto;
  margin-top: 16px;
  padding: 2px 4px;
  font-size: 14px;
}

.menu_btn.board_register {
  width: 60%;
  padding: 1rem 4rem;
  border: 2px solid #f7418f;
  border-radius: 999px;
  color: #fff;
  background-color: #f7418f;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  min-width: 60px;
  text-align: center;
  display: block;
  margin: 0 auto;
  margin-top: 16px;
  padding: 2px 4px;
  font-size: 14px;
}

.menu_btn.board_lost-pass {
  width: 60%;
  padding: 1rem 4rem;
  border: 2px solid #c3c3c3;
  border-radius: 999px;
  color: #fff;
  background-color: #c3c3c3;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  min-width: 60px;
  text-align: center;
  display: block;
  margin: 0 auto;
  margin-top: 16px;
  padding: 2px 4px;
  font-size: 14px;
}

@media screen and (max-width: 970px) {
  .menu_btn.board_login,
  .menu_btn.board_register,
  .menu_btn.board_lost-pass {
    width: 90%;
  }
}
a.btn_plan {
  text-decoration: underline;
  color: #f7418f;
}

.post_category {
  padding-top: 8px;
}

.category_text {
  text-align: center;
  padding: 1px 4px;
  color: #da1682;
  border: 1px solid #da1682;
  font-size: 12px;
}

.single_text .daily {
  border-bottom: 0.5rem solid #f7c0be;
}/*# sourceMappingURL=add-style-koburiai.css.map */