@charset "UTF-8";
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
@import url(https://fonts.googleapis.com/icon?family=Material+Symbols+Outlined);
/* color */
/*$color-txt: #404040;
$color-txt-gray: #999999;
$color-bd: #cccccc;
$color-main: #0b2e59;
$color-sub: #0d6759;
$color-footer:#2a044a;
$color-bg:#fafafa;
$color-bg-colored:#0b2e59;*/
/* size */
/*****************************　　　
  Content
******************************/
* {
  margin: 0;
  padding: 0;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: auto;
  -moz-user-select: auto;
       user-select: auto;
}

input,
textarea {
  -webkit-user-select: auto;
  -moz-user-select: auto;
       user-select: auto;
}

*:focus {
  outline: none;
}

body {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  font-size: 1.1rem;
  background-color: #fafafa;
  overflow-y: scroll;
  overflow-x: hidden;
  color: #404040;
  letter-spacing: 0;
  line-height: 1.6;
}

a {
  text-decoration: none !important;
  font-size: 13px;
  font-weight: bold;
}

p {
  font-size: 16px;
}
p.h4 {
  color: #046d8b;
  font-weight: bold;
  font-size: 1.4rem;
}

h1 {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 24px;
  margin-bottom: 16px;
}

h2 {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 8px;
  color: #fff;
}

h3 {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 8px;
}

h4 {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 8px;
}

h5 {
  font-weight: bold;
}

.btn-href {
  cursor: pointer;
}

figure img {
  width: 100%;
  height: auto;
}

/*****************************　　　
  共通デザイン
******************************/
.fade-in-bottom {
  animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2024-2-27 11:25:25
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation fade-in-bottom
 * ----------------------------------------
 */
@keyframes fade-in-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.delay1 {
  animation-delay: 100ms;
}

.delay2 {
  animation-delay: 200ms;
}

.delay3 {
  animation-delay: 300ms;
}

.elm {
  opacity: 0;
}

.elm-lg {
  opacity: 0;
}
@media only screen and (max-width: 991px) {
  .elm-lg {
    opacity: 1;
  }
}

.nvbr-clps-pd.collapsing {
  height: 100vh;
  transition: height 0s ease;
}

.slideelms {
  opacity: 0;
}

.lslideelms {
  opacity: 0;
}

.slide-in-right {
  animation: slide-in-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.slide-in-left {
  animation: slide-in-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/**
 * ----------------------------------------
 * animation slide-in-right
 * ----------------------------------------
 */
@keyframes slide-in-right {
  0% {
    transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation slide-in-left
 * ----------------------------------------
 */
@keyframes slide-in-left {
  0% {
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/*Learn moreボタン*/
* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background-color: #f6f6f6;
  border-radius: 1.625rem;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}
button.learn-more {
  width: 12rem;
  height: auto;
}
button.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #046d8b;
  border-radius: 1.625rem;
}
button.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
button.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}
button.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}
button.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: #046d8b;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
  font-family: "Mukta", sans-serif;
  font-weight: 700;
  font-style: normal;
}
button:hover .circle {
  width: 100%;
}
button:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}
button:hover .button-text {
  color: #fff;
}

button.btn-sooma.learn-more {
  width: 18rem;
}
button.btn-sooma .button-text {
  padding: 0.9rem 0;
}

.mukta-bold {
  font-family: "Mukta", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.subheader {
  position: relative;
  text-align: center;
  font-size: 2.8rem;
}
@media only screen and (max-width: 768px) {
  .subheader {
    font-size: 2.2rem;
  }
  .subheader + p.fsr18 {
    font-size: 1.6rem !important;
  }
}
@media only screen and (max-width: 768px) {
  .subheader.sp-privacy {
    font-size: 1.5rem;
  }
}

#ai-web.sub-header,
#iot.sub-header,
#行動指針.sub-header,
#連絡先・地図.sub-header {
  padding-top: 0;
}
#ai-web.sub-header .subheader,
#iot.sub-header .subheader,
#行動指針.sub-header .subheader,
#連絡先・地図.sub-header .subheader {
  padding-top: 100px;
  margin-top: -20px;
}

/*****************************
　会社概要ページ
******************************/
.mv-subpage {
  height: calc(45vh - 78px);
  min-height: 140px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-content: center;
}
@media only screen and (max-width: 768px) {
  .mv-subpage {
    height: calc(35vh - 78px);
  }
}
.mv-subpage.mv-company {
  background: linear-gradient(rgba(255, 255, 253, 0.6), rgba(168, 194, 238, 0.5)), url("../img/mv5.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 70% 50%;
}
.mv-subpage.mv-recruit {
  background: linear-gradient(90deg, rgba(255, 255, 253, 0.75), rgba(255, 255, 253, 0.2)), url(../img/mv-recruit2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 20% 50%;
  flex-direction: column;
}
.mv-subpage.mv-bussiness {
  background: linear-gradient(rgba(255, 255, 253, 0.6), rgba(168, 194, 238, 0.5)), url(../img/c-improving.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 70% 50%;
}
.mv-subpage.mv-news {
  background: linear-gradient(90deg, rgba(255, 255, 253, 0.75), rgba(255, 255, 253, 0.2)), url(../img/r-remotework.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 20% 50%;
  flex-direction: column;
}
.mv-subpage.mv-blog {
  background: linear-gradient(90deg, rgba(255, 255, 253, 0.75), rgba(255, 255, 253, 0.2)), url(../img/A7R03104_s.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 20% 50%;
  flex-direction: column;
}
.mv-subpage.mv-interview {
  background: linear-gradient(90deg, rgba(255, 255, 253, 0.75), rgba(255, 255, 253, 0.2)), url(../img/A7R03154_s.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 20% 50%;
  flex-direction: column;
}

.mv-title-subpage {
  color: #046d8b;
  text-align: left;
  font-weight: bold;
  font-size: 2.8rem;
  line-height: 1.4;
  background-image: linear-gradient(90deg, #046d8b 0 20%, #fafafa 20%);
  background-repeat: no-repeat;
  background-size: 100% 8%;
  background-position: bottom;
  padding: 0.8rem 2rem 0.8rem 0;
  margin-bottom: 0.2rem;
  width: -moz-fit-content;
  width: fit-content;
}
.bg-none {
  background-color: none;
}

.bc-font a {
  color: #404040;
  font-size: 10px;
  font-weight: 100;
}
.bc-font li {
  color: #404040;
  font-size: 10px;
}

.brdcrumb {
  padding-top: 5px;
}

.mt150 {
  margin-top: 150px;
}

.mt200 {
  margin-top: 200px;
}
@media only screen and (max-width: 768px) {
  .mt200 {
    margin-top: 100px;
  }
}

.kb-styl {
  font-family: "Mukta", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-size: 8rem;
  line-height: 1;
  position: absolute;
  bottom: 15%;
  left: 5%;
  opacity: 0.2;
}
.kb-styl br {
  display: none;
}
@media only screen and (max-width: 1200px) {
  .kb-styl {
    line-height: 0.8;
    left: 0%;
  }
  .kb-styl br {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .kb-styl {
    bottom: 60%;
    font-size: 4.5rem;
  }
}

.kb-layout {
  position: relative;
}

.concept-line {
  background-image: linear-gradient(90deg, #ecbe13 0% 25%, transparent 20% 75%, #046d8b 75% 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: bottom;
  content: "";
  width: 162%;
  height: 4px;
  position: absolute;
  transform: rotate(45deg);
}
@media only screen and (min-width: 992px) {
  .concept-line {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .concept-line {
    background-image: linear-gradient(90deg, #ecbe13 0% 30%, transparent 30% 70%, #046d8b 70% 100%);
    width: 203%;
    transform: rotate(33deg);
  }
}
@media only screen and (max-width: 767px) {
  .concept-line {
    width: 170%;
    transform: rotate(42deg);
  }
}
@media only screen and (max-width: 576px) {
  .concept-line {
    width: 162%;
    transform: rotate(65deg);
  }
}

.wave {
  background-image: linear-gradient(to top left, #79CBCA, #0b3261);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.pie-chart-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  margin: 0 auto;
  border-radius: 50%;
  width: 400px;
  height: 400px;
  background-image: radial-gradient(#fff 55%, transparent 55%), conic-gradient(from 45deg, #046d8b 50%, #ecbe13 50%);
  margin-bottom: 20px;
  margin-top: 20px;
}
@media only screen and (min-width: 992px) {
  .pie-chart-2 {
    font-weight: 600;
    position: absolute;
    top: 70%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
  }
}
@media only screen and (max-width: 576px) {
  .pie-chart-2 {
    width: 300px;
    height: 300px;
    background-image: radial-gradient(#fff 55%, transparent 55%), conic-gradient(from 45deg, #046d8b 50%, #ecbe13 50%);
    font-weight: 400;
  }
}

.rtt45 {
  font-family: "Mukta", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 3rem;
  line-height: 1;
}
@media only screen and (max-width: 576px) {
  .rtt45 {
    font-size: 2.5rem;
  }
}

.graph-layout {
  display: flex;
  flex-direction: column;
}
.graph-layout .row {
  margin-right: 0;
  margin-left: 0;
}
.graph-layout .card {
  border: 0px;
  z-index: 1;
}
@media only screen and (min-width: 992px) {
  .graph-layout {
    height: 500px;
  }
}

.bgacc {
  background-color: #ecbe13;
}

@media only screen and (min-width: 992px) {
  .pdr120 {
    padding-right: 120px;
  }
  .pdl120 {
    padding-left: 120px;
  }
  .card-txt-align h3 {
    text-align: end;
  }
  .card-txt-align p {
    text-align: end;
  }
}
.bgmain {
  background-color: #046d8b;
}

.map-layout {
  display: block;
  margin: 0 auto;
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  padding: 1rem;
}
@media (max-width: 587px) {
  .map-layout {
    width: 100%;
  }
}

.disf {
  flex-direction: column;
  display: flex;
  justify-content: center;
}

.concept-layout {
  margin-top: 2rem;
}

.access {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 10px;
}
.access h5 {
  padding-left: 10px;
}
.access p {
  padding-left: 10px;
  font-size: 14px;
}

.access-ttl {
  align-self: flex-start;
}

.act-contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 3rem;
}

.br0all * {
  border-radius: 0;
}

.card-image {
  background-image: url(../img/c-coop.jpeg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

/***


 事業内容ページ


**/
.b-message {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.b-message h1 br {
  display: none;
}
@media only screen and (min-width: 576px) {
  .b-message h1 br {
    display: block;
  }
}
.b-message h1 span br {
  display: block;
}

.iot-img {
  background: linear-gradient(to top, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.088)), url(../img/c-improving.jpg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  display: flex;
  width: 100vw;
  height: calc(45vh - 78px);
}

.flow_design10 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow10 {
  padding-left: 0;
  width: 100%;
}

.flow10 > li {
  list-style-type: none;
  padding: 3rem;
  box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6) inset;
  background-color: #046d8b;
}

.flow10 > li:nth-child(1) {
  background-color: rgba(4, 109, 139, 0.2901960784);
}

.flow10 > li:nth-child(2) {
  background-color: rgba(4, 109, 139, 0.5803921569);
}

.flow10 > li:nth-child(3) {
  background-color: rgba(4, 109, 139, 0.7607843137);
}

.flow10 > li:not(:last-child) {
  margin-bottom: 40px;
  position: relative;
}

.flow10 > li:not(:last-child)::after {
  content: "";
  position: absolute;
  border: 20px solid transparent;
  width: 0;
  height: 0;
  bottom: -53px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  border-top-color: #046d8b;
}

.flow10 > li dl dt {
  font-size: 1.3em;
  font-weight: bold;
  text-align: center;
  color: #fff;
}

.flow10 > li dl {
  margin-bottom: 0rem;
}

.flow10 > li .icon10 {
  margin-right: 0.5em;
}

.flow10 > li dl dd {
  margin: 0;
}

.lh18 {
  line-height: 1.6;
}
@media (max-width: 575px) {
  .lh18 {
    line-height: normal;
  }
}

@media (min-width: 992px) {
  .st-layout {
    margin-right: -20.8%;
    margin-bottom: 100px;
  }
  .st-layout.left-img {
    margin-left: -20.8%;
    margin-right: 0%;
  }
  .pr55 {
    padding-right: 55px;
  }
  .pl55 {
    padding-left: 55px;
  }
}
.min-h-st {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .min-h-st {
    justify-content: flex-end;
    margin-bottom: 1.5rem;
  }
}

.font-st h1 {
  font-family: "Mukta", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  color: #046d8b;
}
.font-st span {
  font-size: 5rem;
  color: #046d8b;
}
.font-st h2 {
  color: #404040;
  margin: 1.5rem 0 1.5rem 0;
  letter-spacing: 1px;
}
.font-st p {
  margin-top: 1rem;
  margin-bottom: 0px;
}

.st-img1 {
  background-image: url(../img/c-coop.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: auto 355/236;
  max-height: 350px;
}

.st-img2 {
  background-image: url(../img/multivender.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: auto 355/236;
  max-height: 350px;
  background-position: 70% 40%;
}

.st-img3 {
  background-image: url(../img/st-3.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: auto 355/236;
  max-height: 350px;
  background-position: 50% 50%;
}

.iot-img {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.088)), url(../img/c-improving.jpg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  display: flex;
  width: 100vw;
}

.iot-contents {
  background-color: #fff;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 10px;
}
@media (min-width: 992px) {
  .iot-contents {
    padding-left: 55px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .iot-contents.last {
    padding-bottom: 100px;
  }
  .iot-contents.first {
    padding-top: 100px;
  }
}

.iot-title {
  background-image: linear-gradient(90deg, #046d8b 50px, #cfcfcf 50px 100%);
  background-repeat: no-repeat;
  background-size: 100% 8%;
  background-position: bottom;
  padding: 0.8rem 2rem 0.8rem 0;
  width: -moz-fit-content;
  width: fit-content;
}

.bg-iot {
  background-color: #fff;
}

.bg-iot-img {
  background: url(../img/b-iot.jpg) no-repeat;
  background-size: cover;
}

.bg-iot-img2 {
  background: url(../img/b-iot2.jpg) no-repeat;
  background-size: cover;
}

.iot-outer {
  display: flex;
  align-items: center;
  justify-content: left;
}

.performance-s {
  font-size: 1rem;
  font-weight: 100;
}

.title-font {
  font-size: 2.8rem;
}

.customer-ttl {
  padding: 20px;
  background-color: #046d8b;
}
.customer-ttl h2 {
  color: #fff;
}

.customer-dtl {
  padding: 20px;
  background-color: #fff;
}
.customer-dtl p {
  text-align: center;
  font-weight: bold;
  font-size: 1.4rem;
}

.b-gradi {
  background-image: linear-gradient(to top left, #79CBCA, #0b3261, #79CBCA);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.dblock {
  display: block;
  align-content: center;
}

.sp-txtstart {
  text-align: center;
}
.bg-app-img {
  background: url(../img/comeda.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  aspect-ratio: 3/2;
}

.bg-app-img2 {
  background: url(../img/mavie.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 55% 50%;
  aspect-ratio: 3/2;
}

.bg-web-img {
  background: url(../img/restaurant-web.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 55% 50%;
  aspect-ratio: 3/2;
}

.bg-web-img2 {
  background: url(../img/beauty-web.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 55% 50%;
  aspect-ratio: 3/2;
}

.sooma-section {
  background-color: #fff;
  justify-content: center;
  padding: 1.5rem 0 1.5rem 0;
  position: relative;
}

.sooma-contents {
  display: flex;
  flex-direction: column;
  z-index: 3;
  position: relative;
}
.sooma-contents p, .sooma-contents button, .sooma-contents h3 {
  margin-bottom: 1.5rem;
}
.sooma-contents h3 br {
  display: none;
}
@media (max-width: 425px) {
  .sooma-contents h3 br {
    display: block;
  }
}
@media (max-width: 767px) {
  .sooma-contents br {
    display: none;
  }
}

.sooma-logo-title {
  content: url(../img/sooma-logo.png);
  width: 250px;
}

.sooma-bg {
  background-image: url(../img/sooma-img.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 70% 50%;
  justify-content: center;
  display: flex;
}

.sooma-bg::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: white;
  opacity: 0.5;
}

h3 span.ba-title {
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  h3 span.ba-title {
    font-size: 1.5rem;
  }
}

h3 span.ba-title-sub {
  padding-left: 4px;
}

.bg-edu-img {
  background: url(../img/itofficework.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 55% 50%;
}

.edu-section {
  background-color: #fff;
  justify-content: center;
  position: relative;
}

.edu-contents {
  padding-left: 48px;
  padding-right: 48px;
  padding-top: 48px;
  padding-bottom: 48px;
  display: flex;
  flex-direction: column;
  z-index: 3;
  position: relative;
}
.edu-contents p, .edu-contents button, .edu-contents h3 {
  margin-bottom: 1.5rem;
}
@media (max-width: 425px) {
  .edu-contents {
    padding: 48px 24px 24px 24px;
  }
}
@media (max-width: 767px) {
  .edu-contents p br {
    display: none;
  }
  .edu-contents p br:first-child {
    display: block;
  }
}

@media (max-width: 991px) {
  .edu-bg-sp {
    background-image: url(../img/itofficework.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 70% 50%;
  }
  .edu-bg-sp::after {
    content: "";
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: white;
    opacity: 0.65;
  }
}
button.btn-edu.learn-more {
  width: 18rem;
}
button.btn-edu .button-text {
  padding: 0.9rem 0;
}

dl.detail-list dt {
  display: inline-block;
  float: left;
  margin: 2px 0;
  padding: 5px 0;
  width: 3em;
}
dl.detail-list dd {
  color: #404040;
  margin-left: 3em;
}
dl.detail-list dd span {
  margin: 3px;
  padding: 5px;
  display: inline-block;
  text-align: center;
  border-radius: 3px; /* CSS3草案 */
  -webkit-border-radius: 3px; /* Safari,Google Chrome用 */
  -moz-border-radius: 3px; /* Firefox用 */
}
dl.detail-list dd.tech span {
  width: 200px;
  border: 1px solid #404040;
}
dl.detail-list dd.tech span.valiable {
  width: auto;
  min-width: 50px;
  padding: 5px 12px;
}
@media (max-width: 504px) {
  dl.detail-list dd.tech span {
    width: 45%;
  }
}
dl.detail-list dd.env span {
  width: 200px;
  color: #fafafa;
  background: #046d8b none repeat scroll 0 0;
  background-repeat: no-repeat;
}
@media (max-width: 504px) {
  dl.detail-list dd.env span.env-main {
    width: 45%;
  }
}
dl.detail-list dd.charge span {
  width: 60px;
  background: #000;
  color: #fff;
}
dl.detail-list dd.charge span.komeda {
  width: 200px;
}

ol.privacy-list {
  counter-reset: li;
}
ol.privacy-list li {
  position: relative;
  padding-left: 30px;
  margin: 0 0 10px;
  list-style: none;
}
ol.privacy-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  /*要素の連番（カウンタ）の値を進める*/
  counter-increment: li;
  /*自動連番を付ける関数*/
  content: "(" counter(li) ")";
}

.c-main {
  color: #046d8b;
}

/******
お問い合わせページ
*******/
.contact-title {
  color: #046d8b;
  border-bottom: 3px solid;
  padding-bottom: 1.5rem;
}

.content-area {
  padding-bottom: 2rem;
  max-width: 730px;
  margin: auto;
}

.p-area {
  padding: 1.5rem;
}
@media (max-width: 768px) {
  .p-area {
    padding: 2% 5% 2%;
  }
  .p-area p {
    font-size: 13px;
  }
}
.p-area a {
  font-size: 1em;
  font-weight: normal;
}

.message {
  color: rgb(255, 0, 0);
  font-size: 13px;
}
@media (max-width: 768px) {
  .message {
    font-size: 10px;
  }
}

.bg-red {
  border-radius: initial;
  background-color: rgba(255, 0, 0, 0.6901960784);
  margin-left: 1em;
  vertical-align: middle;
}

.form-area {
  margin-bottom: 1rem;
}
.form-area label {
  font-size: 16px;
  font-weight: bold;
}
.form-area a {
  font-size: 16px;
}
.form-area p {
  font-size: 16px;
}
.form-area input {
  margin-bottom: 0.5rem;
}
.form-area input:focus {
  border-color: #309292;
  box-shadow: 0 0 0 0.25rem #309292;
  color: #404040;
}
.form-area input::-moz-placeholder {
  color: #dad9d9;
}
.form-area input::placeholder {
  color: #dad9d9;
}
.form-area select {
  margin-bottom: 0.5rem;
}
.form-area select:focus {
  border-color: #309292;
  box-shadow: 0 0 0 0.25rem #309292;
  color: #404040;
}
.form-area textarea {
  margin-bottom: 0.5rem;
}
.form-area textarea:focus {
  border-color: #309292;
  box-shadow: 0 0 0 0.25rem #309292;
  color: #404040;
}

.btn-submit {
  width: 350px;
  height: 4rem;
  background: #046d8b;
  border-radius: 2rem;
}
.btn-submit .button-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.1rem 0;
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.btn-submit:hover {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  background: #404040;
}
.btn-submit:hover .button-text {
  color: #fff;
}
.btn-submit:disabled {
  background: #999999;
}
.btn-submit a > span.button-text {
  font-size: 1.1rem;
}

.dsp-none {
  display: none;
}

@media (max-width: 425px) {
  .btn-goentry {
    width: 100%;
  }
}

.btn-back {
  width: 350px;
  height: 4rem;
  background: #046d8b;
  border-radius: 2rem;
}
.btn-back .button-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.1rem 0;
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  font-size: 1.1rem;
}
.btn-back:hover {
  background: #fff;
  border: 3px solid #046d8b;
}
.btn-back:hover .button-text {
  color: #046d8b;
  padding: calc(1.1rem - 3px) 0;
  font-size: 1.1rem;
}

textarea::-moz-placeholder {
  color: #dad9d9 !important;
}

textarea::placeholder {
  color: #dad9d9 !important;
}

@media (max-width: 768px) {
  .term-area {
    padding: 2% 0% 2%;
  }
  .term-area > ul > li {
    font-size: 13px;
  }
  .term-area .free-list > li {
    font-size: 13px;
  }
  .term-area .free-list > li > span {
    font-size: 13px;
  }
}

/***


 採用情報ページ


**/
@media (max-width: 1200px) {
  .dnone1200 {
    display: none;
  }
}

.fcg {
  color: #999999;
}

.lh61 {
  line-height: 61px !important;
}

.dli-plus {
  display: inline-block;
  vertical-align: middle;
  color: rgb(165, 165, 165);
  line-height: 1;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  position: relative;
  top: 5%;
}

.dli-plus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}

.dli-minus {
  color: rgb(165, 165, 165);
  line-height: 1;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  display: none;
  vertical-align: text-bottom;
  margin-bottom: 5px;
}

.navbar-toggler[aria-expanded=true] span.navbar-toggler-icon .dli-plus {
  display: none;
}
.navbar-toggler[aria-expanded=true] span.navbar-toggler-icon .dli-minus {
  display: inline-block;
}

.r-nav-icon {
  border: 1px solid rgb(165, 165, 165);
  padding: 0.25rem 0.75rem;
}
.r-nav-icon:focus {
  box-shadow: none;
}

.r-nav-icon-wh {
  border: 1px solid #fff;
  padding: 0.25rem 0.75rem;
}
.r-nav-icon-wh:focus {
  box-shadow: none;
}
.r-nav-icon-wh .dli-plus {
  color: #fff;
}
.r-nav-icon-wh .dli-minus {
  color: #fff;
}

.edu-couse-title {
  text-align: center;
  margin-bottom: 0;
  background-image: linear-gradient(to left, #046d8b, #79CBCA);
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: #fff;
}

.edu-couse-contents {
  padding: 2rem 3rem;
}
@media (max-width: 425px) {
  .edu-couse-contents {
    padding: 1.5rem;
  }
}

.p-rel {
  position: relative;
}

.edu-couse-label {
  position: absolute;
  top: -35px;
  width: 20%;
  padding: 0px 30px;
  text-align: center;
}
@media (max-width: 1199px) {
  .edu-couse-label {
    top: -45px;
    width: 200px;
  }
}
.edu-couse-label > span {
  z-index: 1;
  position: relative;
  top: -10px;
}
.edu-couse-label > span span {
  font-family: "Mukta", sans-serif;
  font-weight: normal;
  font-size: 1.6rem;
  z-index: 1;
  color: #fff;
}
.edu-couse-label > span span.c-number {
  font-size: 2.6rem;
}
.edu-couse-label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 80%;
  background-image: linear-gradient(to right, #046d8b, #0b3261 100%);
  transform: skew(-30deg);
}

.pd-for-label {
  padding-top: 3rem;
}

.cr-p-styl {
  font-weight: 600;
  margin-top: 1.5rem;
}

@media (max-width: 425px) {
  .cr-submessage {
    font-size: 16px;
  }
}

.ali-end {
  align-content: end;
}

.st-recruit-img1 {
  background-image: url(../img/c-employee.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: auto 355/236;
  max-height: 350px;
  background-position: 70% 40%;
}

.st-recruit-img2 {
  background-image: url(../img/holiday.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: auto 355/236;
  max-height: 350px;
  background-position: 70% 40%;
}

.st-recruit-img3 {
  background-image: url(../img/itofficework.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: auto 355/236;
  max-height: 350px;
  background-position: 70% 40%;
}

.tab-style > li {
  margin: 0px;
}
@media (min-width: 1200px) {
  .tab-style > li {
    height: 78px;
  }
}
.tab-style > li > a {
  font-size: 16px;
  font-weight: bold;
  color: #404040;
  text-align: center;
  padding-top: 1.5rem;
}
@media (max-width: 1199px) {
  .tab-style > li > a {
    text-align: left;
  }
}
.tab-style > li > a:focus {
  color: #404040;
}
.tab-style .r-entry {
  background-color: #046d8b;
}
.tab-style .r-entry a {
  color: #fff;
  justify-content: center;
}
.tab-style .r-entry > a:focus {
  color: #fff;
}
.tab-style > .nav-item:hover {
  background-color: #000;
}
.tab-style > .nav-item:hover a {
  color: #fff;
}

@media (min-width: 1200px) {
  .tab-style > .nav-item:has(.nav-link.active) {
    box-sizing: border-box;
    border-bottom: 7px solid #000;
    display: inline-block;
  }
  .tab-style-fix > .nav-item:has(.nav-link.active) {
    box-sizing: border-box;
    border-bottom: 10px solid #046d8b;
    display: inline-block;
  }
}
.tab-style-fix {
  background-color: #000000;
}
.tab-style-fix > li > a {
  color: #fff;
}
.tab-style-fix > li > a:focus {
  color: #fff;
}
.tab-style-fix .r-entry.nav-item:hover {
  background-color: #fff;
}
.tab-style-fix .r-entry.nav-item:hover a {
  color: #046d8b;
}
.tab-style-fix > .nav-item:hover {
  background-color: #fff;
}
.tab-style-fix > .nav-item:hover a {
  color: #404040;
}

.wl-recruit-img2 {
  background-image: url(../img/mv-recruit2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: auto 355/236;
  max-height: 350px;
  background-position: 70% 40%;
}

.wl-recruit-img3 {
  background-image: url(../img/r-remotework.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: auto 355/236;
  max-height: 350px;
  background-position: 70% 40%;
}

.a-txt {
  color: #046d8b;
}

.r-subtitle-space {
  margin-bottom: 1.5rem;
}

ul.tab-description {
  border-bottom: none !important;
}
ul.tab-description > li {
  margin-bottom: 0px;
}
ul.tab-description > li > a {
  margin-bottom: 0px;
}
ul.tab-description > li > a.nav-link {
  font-size: 1rem;
  background-color: lightgray;
  color: #fff;
  text-align: center;
  border: none !important;
}
ul.tab-description > li:nth-child(1) > a.nav-link.active {
  color: #fff;
  background-color: #046d8b;
}
ul.tab-description > li:nth-child(2) > a.nav-link.active {
  color: #fff;
  background-color: #309292;
}

.table-bgc {
  background-color: #fff;
}

.brd-c .tab-pane:nth-child(1) {
  border-top: 3px solid #046d8b;
}
.brd-c .tab-pane:nth-child(2) {
  border-top: 3px solid #309292;
}

.r-nav {
  background-color: #fff;
}
@media (max-width: 1199px) {
  .r-nav {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}
.r-nav > a {
  color: #000000;
  padding-left: 12px;
}
@media (min-width: 1200px) {
  .r-nav > a {
    display: none;
  }
}
.r-nav > .navbar-collapse {
  justify-content: end;
}

.r-nav.ft-tab {
  background-color: #000000;
}
.r-nav.ft-tab > a {
  color: #fff;
}

@media (max-width: 1199px) {
  .sp-tab > li {
    position: relative;
    display: inline-block;
    top: 0;
    left: 0;
    height: 100%;
    border-bottom: 1px solid #cccccc;
  }
  .sp-tab > li > a {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem !important;
    display: flex;
    justify-content: space-between;
    padding-right: 1rem !important;
  }
  .sp-tab > li:last-child {
    border-bottom: none;
  }
}

/*****************************　　　
  MV
******************************/
.mv {
  width: 100vw;
  height: calc(100vh - 78px);
  background: url("../img/mv4.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 70% 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.mv.mv4 *.mv-title {
  color: #fff;
}
.mv.mv4 *.mvsub-title {
  color: #fff;
}

.mv-contents {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .mv-contents {
    aspect-ratio: 768/1024;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.mv-copy {
  margin-bottom: 40px;
}

.mv-title {
  color: #046d8b;
  text-align: center;
  font-size: 5rem;
  text-shadow: 1px 1px 10px #000;
}
@media (max-width: 575px) {
  .mv-title {
    font-size: 3rem;
  }
}

.josefin-sans-mv {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.mvsub-title {
  color: #404040;
  text-align: center;
  font-size: 20px;
  text-shadow: 1px 1px 5px #000;
}

.mv-recruitb {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ceo-img {
  background-image: url("../img/ceo2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  min-height: 350px;
}

.reb-styl {
  width: 20rem;
  height: auto;
}
.reb-styl .circle {
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #fff;
  border-radius: 1.625rem;
  width: 100%;
}
.reb-styl .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
.reb-styl .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}
.reb-styl .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #046d8b;
  border-right: 0.125rem solid #046d8b;
  transform: rotate(45deg);
}
.reb-styl .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: #046d8b;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}
.reb-styl:hover .circle {
  background: #046d8b;
}
.reb-styl:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}
.reb-styl:hover .circle .icon.arrow::before {
  border-color: #fff;
}
.reb-styl:hover .button-text {
  color: #fff;
}

.news-li > a {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.1rem;
  font-weight: normal;
  color: #fff;
  padding: 15px;
  border-bottom: 1px solid #fff;
  align-items: center;
  width: 100%;
}
.news-li > a:hover {
  opacity: 0.7;
}
.news-li > div {
  display: flex;
  flex-wrap: wrap;
  padding: 15px;
  border-bottom: 1px solid #fff;
  align-items: center;
  width: 100%;
}
.news-li .day {
  text-wrap: nowrap;
  width: 150px;
}
.news-li .label {
  background-color: #ecbe13;
  border-radius: 3px;
  color: #fff;
  padding: 2px 5px;
  margin: 0 20px;
  height: 2rem;
  text-wrap: nowrap;
}
.wd300 {
  max-width: 300px;
}

.wd400 {
  max-width: 400px;
}

@media (max-width: 767px) {
  .tb-mt12 {
    margin-top: 12px;
  }
}

@media (max-width: 587px) {
  .sp-mt12 {
    margin-top: 12px;
  }
}

.pd-none {
  padding-right: 0%;
  padding-left: 0%;
}

.bd-none {
  border: none;
}

.footer-btn {
  position: relative;
  display: inline-block;
  margin: 40px auto 25px;
  width: 80%;
  min-width: 280px;
  background: #fff;
  border-radius: 10px;
  padding: 16px 30px 20px;
  text-align: left;
}
.footer-btn:after {
  position: absolute;
  top: calc(50% - 5px);
  right: 30px;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
  transition: right 0.5s;
}
.footer-btn .head {
  color: #000;
  font-size: 24px;
  font-weight: bold;
  display: block;
}
.footer-btn .disp {
  color: #000;
  font-size: 16px;
  font-weight: normal;
  display: block;
}
.footer-btn:hover {
  background: #309292;
}
.footer-btn:hover:after {
  border-color: #fff;
  right: 18px;
}
.footer-btn:hover .head, .footer-btn:hover .disp {
  color: #fff;
}

.me-rel {
  position: relative;
}

.message-styl {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/*事業内容*/
.news-title {
  font-family: "Mukta", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 5rem;
  line-height: 1;
}

.dtl-space {
  display: flex;
  justify-content: left;
  margin-bottom: 0.5rem;
}

.cfooter {
  background-color: #efefef;
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: right;
  border-top: 0px;
}
.cfooter button {
  background-color: #e4e4e4;
  margin-left: 16px;
}

.bis-card {
  background: #fff;
  color: #404040;
  padding: 20px;
}
.bis-card h5 {
  text-align: center;
}

.card-shadow {
  box-shadow: 0px 0px 20px 8px rgba(0, 0, 0, 0.4);
}

/*****************************　　　
  採用情報
******************************/
.recruit-img {
  width: 900px;
  height: 500px;
  background-image: url("../img/recruit2.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: -5%;
  top: 15%;
  clip-path: polygon(70% 0%, 90% 40%, 75% 100%, 0% 100%, 0% 0%);
  z-index: -1;
}
@media (max-width: 991px) {
  .recruit-img {
    position: relative;
    bottom: 3rem;
    top: auto;
    max-width: 100%;
    width: 574px;
    height: 400px;
  }
}
@media (max-width: 575px) {
  .recruit-img {
    position: absolute;
    left: 0px;
    bottom: 0rem;
    top: auto;
    max-width: 100%;
    width: 574px;
    height: 400px;
  }
}

.recruit-item {
  display: flex;
  align-content: end;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.8);
  width: 61vw;
  height: 600px;
  position: relative;
  left: 40%;
  padding: 2.5rem;
  box-shadow: 10px 5px 5px rgba(0, 0, 0, 0.2);
}
@media (max-width: 991px) {
  .recruit-item {
    width: 100%;
    left: 0%;
    height: auto;
    background-color: rgba(255, 255, 255, 0.5);
  }
}
@media (max-width: 575px) {
  .recruit-item {
    width: 100%;
    left: 0%;
    height: auto;
    background-color: rgba(255, 255, 255, 0.8);
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 575px) {
  .rpx0 {
    padding-left: 0;
    padding-right: 0;
  }
}

.al-btm {
  margin-top: auto;
  align-self: flex-end;
  text-align: right;
}

.mlt1 {
  margin-left: 0.25rem;
  margin-top: 1rem;
}
.mlt1 p {
  line-height: 2.5rem;
}

.company-img {
  width: 900px;
  height: 500px;
  background-image: url("../img/company.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  position: absolute;
  right: -12px;
  top: 15%;
  clip-path: polygon(100% 0%, 100% 100%, 35% 100%, 15% 50%, 35% 0%);
  z-index: -1;
}
@media (max-width: 991px) {
  .company-img {
    bottom: 0%;
    top: auto;
    max-width: 100%;
    width: 574px;
    height: 400px;
  }
}
@media (max-width: 575px) {
  .company-img {
    position: absolute;
    top: 0;
    max-width: 100%;
    width: 574px;
    height: 400px;
  }
}

.company-item {
  background-color: rgba(255, 255, 255, 0.8);
  width: 61vw;
  height: 600px;
  position: relative;
  padding: 2.5rem;
  left: 0%;
  top: 0%;
  box-shadow: 10px 5px 5px rgba(0, 0, 0, 0.2);
  align-items: center;
  display: flex;
  justify-content: right;
}
@media (max-width: 991px) {
  .company-item {
    width: 100%;
    left: 0%;
    height: 400px;
    background-color: rgba(255, 255, 255, 0.5);
  }
}
@media (max-width: 575px) {
  .company-item {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    padding-left: 12px;
    padding-right: 12px;
    justify-content: center;
  }
}

.c-item-contents {
  text-align: end;
}
@media (max-width: 575px) {
  .c-item-contents {
    text-align: center;
  }
}

.cop-btn button {
  margin-left: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
  width: 15rem;
}

.recruit {
  position: relative;
}

.company {
  position: relative;
}
@media (max-width: 991px) {
  .company {
    height: 750px;
  }
}
@media (max-width: 575px) {
  .company {
    height: 400px;
  }
}

.sub-header-rcr {
  padding-top: 11rem;
}

.sub-header-cmp {
  padding-top: 11rem;
}

.title-blk {
  color: #404040;
  text-align: center;
}

/**
Footer
**/
.navi {
  text-align: left;
  list-style: none;
  margin: 20px 10px 30px;
  padding: 0;
}
.navi li.sub {
  margin: 0 0 0 0.5em;
}
.navi li.sub::before {
  display: inline-block;
  width: 1em;
  content: "-";
  color: #fff;
}
.navi li a {
  color: #fff;
  font-weight: normal;
}

address {
  color: #fff;
}
address p {
  margin: 20px 0 0 0;
  padding: 0;
  font-weight: normal;
}

@media (max-width: 767px) {
  .navi {
    text-align: center;
    margin: 10px;
  }
  .navi li {
    margin: 10px 10px 0 10px;
  }
  .navi li.sub {
    margin: 0;
    display: inline-block;
  }
  .navi li.sub::before {
    content: "|";
  }
  .navi li.sub-first::before {
    content: " ";
  }
}
/*****************************　　　
  card共通スタイル
******************************/
.card {
  border-color: transparent;
}
.card.box-shodow {
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
}

/*****************************　　　
  title用スタイル
******************************/
.title-space {
  margin-bottom: 1rem;
  padding-left: 27px;
}

/*****************************　　　
  section用スタイル
******************************/
.sub-header-top {
  padding-top: 78px;
}

.sub-header-contact {
  padding-top: 10px;
}

.sub-header {
  padding-top: 3.5rem;
}
@media only screen and (max-width: 768px) {
  .sub-header {
    padding-top: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .sub-header.contact {
    padding-top: 0px;
    padding-bottom: 1rem;
  }
}

.colored {
  background-image: linear-gradient(to top left, #0b3261 0%, #79CBCA 30%, #0b3261 100%);
}

.colored-gy {
  background-color: #efefef;
}

.space-bottom {
  padding-bottom: 5rem;
}
@media only screen and (max-width: 768px) {
  .space-bottom {
    padding-bottom: 3rem;
  }
}

/*****************************　　　
  mv & banner 共用スタイル
******************************/
.mv-ba-common {
  align-items: center;
  display: grid;
}
@media only screen and (max-width: 576px) {
  .mv-ba-common {
    align-items: end;
  }
}

/*****************************　　　
  main view
******************************/
@media only screen and (min-width: 520px) {
  .mv-font {
    padding-left: 60px;
  }
}
.mv-font h2 {
  font-size: 2.8rem;
  filter: drop-shadow(2px 2px 0px #fafafa);
}
@media only screen and (max-width: 768px) {
  .mv-font h2 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .mv-font h2 {
    padding-left: 0.5rem;
  }
}
.mv-font p {
  font-size: 1.8rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .mv-font p {
    font-size: 1.5rem;
  }
}

@media only screen and (min-width: 1200px) {
  .navbar-pd {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }
}

.btn-recruit {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  z-index: 0;
  height: 78px;
  font-size: large;
}
@media only screen and (min-width: 1200px) {
  .btn-recruit {
    width: 200px;
  }
}
.btn-recruit:hover {
  color: #fff;
}

@media only screen and (min-width: 1200px) {
  .btn-recruit.btn-animation {
    animation: btn-animation 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  }
}
@keyframes btn-animation {
  0% {
    transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.btn-recruit:before {
  content: "";
  width: 200px;
  height: 100%;
  position: absolute;
  z-index: -1;
  transition: 0.5s;
  background: linear-gradient(#79CBCA, #77A1D3);
}
@media only screen and (min-width: 1200px) {
  .btn-recruit:before {
    background: radial-gradient(#79CBCA 15%, #77A1D3 28%);
    background-size: 1000% 1000%;
    animation: gra-animation 14s linear;
    animation-iteration-count: infinite;
  }
  @keyframes gra-animation {
    0% {
      background-position: 50% 66%;
    }
    70% {
      background-position: 50% 66%;
    }
    71% {
      background-position: 66% 66%;
    }
    78% {
      background-position: 33% 66%;
    }
    85% {
      background-position: 33% 33%;
    }
    92% {
      background-position: 66% 33%;
    }
    95% {
      background-position: 66% 66%;
    }
    100% {
      background-position: 50% 66%;
    }
  }
}
@media only screen and (max-width: 1200px) {
  .btn-recruit:before {
    height: 78px;
    width: 95vw;
  }
}

.btn-recruit:after {
  content: "";
  width: 200px;
  height: 100%;
  position: absolute;
  z-index: -2;
  background: linear-gradient(#77A1D3, #79CBCA);
}
@media only screen and (max-width: 1200px) {
  .btn-recruit:after {
    height: 78px;
    width: 95vw;
  }
}

.btn-recruit:hover:before {
  opacity: 0;
}

.afont a {
  text-decoration: none !important;
  font-size: 16px;
  font-weight: bold;
}

.r-title-space {
  padding-top: 3.5rem;
  padding-bottom: 1.5rem;
}

/*****************************　　　
  table用スタイル
******************************/
.table.tbl-cel-style {
  margin-bottom: 0;
}

/*****************************　　　
  banner
******************************/
/*--水平方向 垂直方向 影のぼかし 色--*/
.btn01 {
  background: #309292;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
  color: #fafafa;
  padding: 20px;
  width: 300px;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .btn01 {
    width: 250px;
  }
}
.btn01:hover {
  background: #309292;
  color: #fafafa;
  box-shadow: 0 0 10px #fafafa;
}
.btn01:focus {
  box-shadow: 0 0 0 0.25rem rgba(154, 210, 0, 0.3333333333);
}

.h5bnrfont {
  font-weight: bold;
  font-size: 2.8rem;
}
@media only screen and (max-width: 768px) {
  .h5bnrfont {
    font-size: 2.5rem;
  }
}

.banner-layout {
  display: inline-block;
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  max-width: 800px;
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .banner-layout {
    padding: 1rem;
  }
}
@media screen and (max-width: 576px) {
  .banner-layout {
    max-width: 400px;
    padding: 2rem;
  }
}

/*表示画像の切り替え*/
.img-sp {
  display: none;
}

@media screen and (max-width: 576px) {
  .img-pc {
    display: none;
  }
  .img-sp {
    display: block;
  }
}
/*****************************　　　
  Table
******************************/
/*比較表のスタイル*/
.comp-tbl-style table thead tr:first-child th {
  color: #fafafa;
  background: #309292;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

/*セル毎の余白 フォントサイズ*/
.tbl-cel-style > :not(caption) > * * {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 14px;
}
@media only screen and (max-width: 1200px) {
  .tbl-cel-style > :not(caption) > * * {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.tbl-cel-style > :not(caption) > * th {
  width: 200px;
  font-weight: 100;
  background-color: #f7f7f7;
}
@media screen and (max-width: 768px) {
  .tbl-cel-style > :not(caption) > * th {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .tbl-cel-style > :not(caption) > * td {
    display: block;
  }
}

/*テーブル外のコンテンツ*/
.course-cond-li-styl li {
  font-size: 0.9rem !important;
}

.course-cond-styl {
  position: relative;
  border: 1px solid #ccc;
  border-radius: 1rem;
  margin-top: 2rem;
  padding: 2.5rem 1rem 1rem;
}
@media screen and (max-width: 768px) {
  .course-cond-styl {
    border: none;
    padding: 0;
  }
}
.course-cond-styl h5 {
  position: absolute;
  top: -0.5em;
  left: 1rem;
  line-height: 1;
  display: inline-block;
  background: #fafafa;
  padding: 0 0.5rem;
}
@media screen and (max-width: 768px) {
  .course-cond-styl h5 {
    position: relative;
    top: auto;
    left: auto;
  }
}
.course-cond-styl ul {
  margin-bottom: 0;
  padding-left: 0;
  list-style: disc;
}
.course-cond-styl ul li {
  font-size: 16px;
}

/*****************************　　　
  Footer
******************************/
.sp-dnone {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .sp-dnone {
    display: none;
  }
}

.flt-bg {
  background-color: rgba(31, 31, 31, 0.3333333333);
}

.btn03 {
  background: #9ad200;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
  color: #fafafa;
  padding: 20px;
  border-radius: 6px;
  font-weight: 600;
}

.space-footer {
  padding-bottom: 200px;
}
@media only screen and (max-width: 576px) {
  .space-footer {
    padding-bottom: 100px;
  }
}

.footer-style {
  background-color: #1f1f1f;
  text-align: center;
  padding-top: 16px;
}
.footer-style p {
  color: #fafafa;
  font-size: 14px;
}

.logo-knowledgebeans {
  position: relative;
  display: block;
  background: #fafafa;
  padding: 5px 0;
}

.fadeout {
  transition: opacity 0.5s;
}

.sfarea {
  padding-bottom: calc(15px + env(safe-area-inset-bottom));
}

.fb-z {
  Z-index: 1029;
}

/*****************************　　　
  その他
******************************/
/*横2つ並んだgridのスタイル*/
@media only screen and (min-width: 992px) {
  .row-reverse {
    flex-direction: row-reverse;
  }
}

.two-col-style h3 {
  font-size: 1.8rem;
}
.two-col-style p {
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .two-col-style h3 {
    font-size: 1.6rem;
  }
}

.col-contents {
  padding-left: 55px;
  padding-right: 55px;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 992px) {
  .col-contents {
    padding-top: 40px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 576px) {
  .col-contents {
    padding-top: 25px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 25px;
  }
}

/*横3つ並んだカードのスタイル*/
.card-style {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .card-style {
    margin-bottom: 3rem;
  }
}

/*googleMap用スペース*/
.gglmap {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 992px) {
  .gglmap {
    margin-top: 1rem;
  }
}

/*こんな方…のリスト用*/
@media only screen and (max-width: 992px) {
  .list-ce-sp {
    text-align: center;
  }
}
.list-ce-sp ul {
  padding-right: 2rem;
}
.list-ce-sp ul li {
  font-size: 16px;
}

@media only screen and (max-width: 992px) {
  .address-style {
    margin-top: 1rem;
  }
  .address-style p {
    margin-bottom: 0;
  }
}

/*3つの応用コース用 文字色*/
@media only screen and (min-width: 992px) {
  .cwh {
    color: #fafafa;
  }
}

/*****************************　　　
  header
******************************/
.nvbr-toggler-style {
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 0 0 transparent !important;
}
.nvbr-toggler-style[aria-expanded=true] {
  border-color: transparent;
}

.nav-nowrap {
  white-space: nowrap;
}

.logoimg {
  max-height: 40px;
  width: 250px;
}
@media only screen and (max-width: 768px) {
  .logoimg {
    width: 210px;
    padding-top: 3px;
    padding-bottom: 3px;
  }
}

a.nvbr-pd {
  color: #404040 !important;
  padding-left: 1rem !important;
  padding-right: 1.5rem !important;
}
@media only screen and (max-width: 1199px) {
  a.nvbr-pd {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem !important;
    display: flex;
    justify-content: space-between;
    padding-right: 1rem !important;
  }
}

@media only screen and (max-width: 1199px) {
  .pb-sm {
    padding-bottom: 1rem;
  }
}

@media only screen and (max-width: 1199px) {
  .nvbr-clps-pd {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    padding-bottom: 1rem !important;
    margin-top: 0.5rem;
    /*メニューの全画面表示*/
    height: 100vh;
  }
}
.nvbr-clps-pd:show {
  transition: all 0.5s;
}

@media only screen and (max-width: 1199px) {
  .nvbr-fix {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}

.ftszero {
  font-size: 0rem;
}

@media only screen and (min-width: 1200px) {
  .logo-py {
    padding-left: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.menu-border {
  position: relative;
  display: inline-block;
  top: 0;
  left: 0;
  height: 100%;
  border-bottom: 1px solid #cccccc;
}
@media only screen and (min-width: 1200px) {
  .menu-border {
    border-bottom: none;
  }
}

/*トグルメニューの矢印*/
.tgl-arrow {
  position: relative;
  display: inline-block;
  padding: 0 0 0 16px;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  font-size: 15px;
}
@media only screen and (min-width: 1200px) {
  .tgl-arrow {
    border: none;
    display: none;
  }
}

.tgl-arrow::before,
.tgl-arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
@media only screen and (min-width: 1200px) {
  .tgl-arrow::before,
  .tgl-arrow::after {
    border: none;
    display: none;
  }
}

.leftarrow::after {
  left: 3px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  transform: rotate(45deg);
}
@media only screen and (min-width: 1200px) {
  .leftarrow::after {
    border: none;
    display: none;
  }
}

/*ハンバーガーメニューの再描画*/
.navbar-light .navbar-toggler-icon {
  background-image: none;
}

.navbar-toggler-icon {
  position: relative;
  width: 30px;
  height: 30px;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.navbar-toggler-icon,
.navbar-toggler-icon .hmbg-border {
  display: inline-block;
  box-sizing: border-box;
}
.navbar-toggler-icon .hmbg-border {
  position: absolute;
  width: 100%;
  left: 0px;
  height: 2px;
  background-color: rgb(165, 165, 165);
  border-radius: 1px;
  transition: 200ms all ease;
}
.navbar-toggler-icon .hmbg-border:nth-of-type(1) {
  top: 6px;
}
.navbar-toggler-icon .hmbg-border:nth-of-type(2) {
  top: 14px;
}
.navbar-toggler-icon .hmbg-border:nth-of-type(3) {
  top: 22px;
}

.navbar-toggler[aria-expanded=true] span.navbar-toggler-icon .hmbg-border:nth-of-type(1) {
  transform: translateY(8px) rotate(-45deg);
}
.navbar-toggler[aria-expanded=true] span.navbar-toggler-icon .hmbg-border:nth-of-type(2) {
  opacity: 0;
}
.navbar-toggler[aria-expanded=true] span.navbar-toggler-icon .hmbg-border:nth-of-type(3) {
  transform: translateY(-8px) rotate(45deg);
}

@media only screen and (min-width: 1200px) {
  .pc-pr0 {
    padding-right: 0;
  }
}

@media only screen and (min-width: 1200px) {
  .pc-prl0 {
    padding-right: 0;
    padding-left: 0;
  }
}

/*****************************　　　
  Log
******************************/
.log-bar > div {
  padding-bottom: 24px;
}
.log-bar > div:first-child {
  position: relative;
  width: 24px;
}
.log-bar > div:first-child:before {
  position: absolute;
  top: 0;
  left: 5px;
  width: 0;
  height: 100%;
  display: inline-block;
  content: "";
  border-left: 2px dotted #ccc;
}
.log-bar > div:first-child .check-bullet {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: rgb(221, 218, 217);
}
.log-bar > div:first-child .check-bullet.checked {
  background: #046d8b;
  box-shadow: none;
}
.log-bar:last-child > div:first-child:before {
  border-left: none;
}
.log-bar .date {
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: -2px;
}
.log-bar .time {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 4px;
  margin-bottom: 4px;
  color: #999999;
}

/*****************************　　　
  List
******************************/
ul {
  list-style: none;
}
ul > li {
  margin: 0 0 4px 0;
  position: relative;
}

ol > li {
  margin: 0 0 4px 2rem;
  position: relative;
}

.disc-list {
  padding-left: 0;
}
.disc-list > li {
  list-style: none;
  font-size: 1rem;
  padding-left: 1.5em;
}
.disc-list > li:before {
  content: "・";
  display: inline-block;
  left: 0;
  position: absolute;
  top: 0;
  text-align: right;
  width: 1.2em;
}

.asterisk-list {
  padding-left: 0;
  font-size: 1rem;
}
.asterisk-list > li {
  list-style: none;
  padding-left: 1.5em;
}
.asterisk-list > li:before {
  content: "※";
  display: inline-block;
  left: 0;
  position: absolute;
  top: 0;
  text-align: right;
  width: 1.2em;
}

.numbering-list {
  margin: 0;
  padding-left: 0;
  counter-reset: number;
}
.numbering-list > li {
  list-style: none;
  font-size: 1rem;
  padding-left: 2em;
  position: relative;
}
.numbering-list > li:before {
  counter-increment: number;
  content: counter(number) ".";
  display: inline-block;
  left: 0;
  position: absolute;
  top: 0;
  text-align: right;
  width: 1.5em;
}

.free-list {
  padding-left: 0;
}
.free-list > li {
  list-style: none;
  font-size: 1rem;
  padding-left: 1.5em;
}
.free-list > li > span {
  left: 0;
  position: absolute;
  top: 0;
  display: inline-block;
  font-size: 1rem;
  width: 1em;
}
.free-list.txt15 > li {
  padding-left: 1.8em;
}
.free-list.txt15 > li > span {
  width: 1.5em;
}
.free-list.txt2 > li {
  padding-left: 2.3em;
}
.free-list.txt2 > li > span {
  width: 2em;
}

.arrow-list {
  padding-left: 0;
}
.arrow-list > li {
  list-style: none;
  font-size: 1rem;
  padding-left: 1.5em;
}
.arrow-list > li:before {
  color: #046d8b;
  content: "▶︎";
  display: inline-block;
  left: 0;
  position: absolute;
  top: 0;
  text-align: right;
  font-size: 0.9rem;
  width: 1em;
}

.block-list {
  margin: 0;
  padding: 0;
}
.block-list > li {
  margin: 0;
  padding: 16px 16px 16px 16px;
  list-style: none;
  display: block;
  font-size: 1.1rem;
  font-weight: bold;
  border-bottom: 1px solid #cccccc;
}
.block-list > li:first-child {
  border-top: 1px solid #cccccc;
}
.block-list > li span.fig {
  position: relative;
  display: inline-block;
  margin-right: 8px;
}
.block-list > li span.fig:before {
  content: "";
  width: 32px;
  height: 32px;
  display: inline-block;
  vertical-align: middle;
  background: #999;
}
.block-list > li.btn-disabled {
  background: rgb(150, 150, 150);
}
.block-list > li.btn-disabled .alert-txt {
  top: calc(50% - 7px);
  left: 16px;
  width: calc(100% - 32px);
  position: absolute;
  display: block;
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
}
.block-list .list-inner-head {
  margin-top: 16px;
  margin-bottom: 4px;
  font-size: 1.1rem;
  font-weight: bold;
}
.block-list.no-link li {
  padding: 16px;
}
.block-list.no-link li:after {
  display: none;
}
.block-list > div.column {
  margin: 0;
  padding: 16px;
  list-style: none;
  display: block;
  font-size: 1.1rem;
  border-bottom: 1px solid #cccccc;
}
.block-list > div.column:first-child {
  border-top: 1px solid #cccccc;
}

.icon-list {
  margin: 0;
  padding: 0;
  font-size: 0;
}
.icon-list li {
  margin: 0;
  width: 49.9%;
  padding: 16px 24px 16px 16px;
  list-style: none;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: bold;
}
.icon-list li span.fig {
  position: relative;
  display: inline-block;
  margin-right: 8px;
}
.icon-list li span.fig:before {
  content: "";
  width: 36px;
  height: 36px;
  display: inline-block;
  vertical-align: middle;
  background: #999;
}
.icon-list.icon-list-full li {
  width: 100%;
  display: block;
}
.icon-list.icon-bgimg li {
  width: 100%;
  display: block;
  padding-left: 66px;
  line-height: 36px;
}
.icon-list.icon-bgimg li span.bgimg {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-block;
  margin-right: 8px;
  background: #fff;
  width: 36px;
  height: 36px;
  border: 2px solid #fff;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.icon-list-horizon {
  margin: 0;
  padding: 0;
  font-size: 0;
}
.icon-list-horizon li {
  margin: 0;
  padding: 8px 16px 8px 8px;
  list-style: none;
  display: inline-block;
}

.item-list {
  display: block;
}
.item-list > dt {
  display: block;
  font-size: 1.1rem;
  margin: 16px 16px 4px 16px;
}
.item-list > dd {
  display: block;
  font-size: 1rem;
  padding: 16px;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}

.dubug-list {
  padding: 0 6px;
  font-size: 0;
  line-height: 0;
  margin-bottom: 0;
}
.dubug-list li {
  font-size: 0.9rem;
  line-height: 1.5;
  word-break: break-all;
  margin-bottom: 1rem;
}
.dubug-list li:last-child {
  padding-bottom: 75px;
}

/*****************************　　　
  Utilities
******************************/
/* link-arrow */
.link-arrow {
  display: inline-block;
  position: relative;
  border-bottom: 2px solid #046d8b;
  font-size: 1rem;
  font-weight: bold;
  padding: 8px 16px 8px 0;
}
.link-arrow:after {
  position: absolute;
  top: calc(50% - 0.25em + 1px);
  right: 0;
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #309292;
  border-right: 2px solid #309292;
  transform: rotate(45deg);
}

/* display-table */
.disptable {
  display: table;
  width: 100%;
}
.disptable > div {
  display: table-cell;
  vertical-align: top;
}
.disptable.vam > div {
  vertical-align: middle;
}
.disptable.vam.disptable-row > div > div {
  vertical-align: middle;
}
.disptable.cell-c > div {
  text-align: center;
}
.disptable.disptable-row > div {
  display: table-row;
}
.disptable.disptable-row > div > div {
  position: relative;
  vertical-align: top;
  display: table-cell;
}
.disptable.disptable-row > div > div.cell-link-arrow {
  padding-right: 24px;
}
.disptable.disptable-row > div > div.cell-link-arrow:after {
  position: absolute;
  top: 23px;
  right: 10px;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #046d8b;
  border-right: 2px solid #046d8b;
  transform: rotate(45deg);
}
.disptable.disptable-row.cell-c > div > div {
  text-align: center;
}
.disptable img {
  width: 100%;
  height: auto;
}
.disptable.disptable-border {
  border-top: 1px solid #cccccc;
}
.disptable.disptable-border > div {
  border-bottom: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
}
.disptable.disptable-border > div:last-child {
  border-right: none;
}
.disptable.disptable-border.disptable-row > div > div {
  border-bottom: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
}
.disptable.disptable-border.disptable-row > div > div:last-child {
  border-right: none;
}
.disptable.disptable-border-bottom {
  border-top: 1px solid #cccccc;
}
.disptable.disptable-border-bottom > div {
  border-bottom: 1px solid #cccccc;
}
.disptable.disptable-border-bottom.disptable-row > div > div {
  border-bottom: 1px solid #cccccc;
}
.disptable.cell-pss > div {
  padding: 8px;
}
.disptable.cell-pss.disptable-row > div {
  padding: 0;
}
.disptable.cell-pss.disptable-row > div > div {
  padding: 8px;
}
.disptable.cell-psh > div {
  padding: 10.6666666667px;
}
.disptable.cell-psh.disptable-row > div {
  padding: 0;
}
.disptable.cell-psh.disptable-row > div > div {
  padding: 10.6666666667px;
}
.disptable.cell-ps > div {
  padding: 16px;
}
.disptable.cell-ps.disptable-row > div {
  padding: 0;
}
.disptable.cell-ps.disptable-row > div > div {
  padding: 16px;
}

.pcbr {
  display: inline-block;
}

.spbr {
  display: none;
}

.pcem {
  display: block;
}

.spem {
  display: none;
}

@media only screen and (max-width: 768px) {
  .pcbr {
    display: none !important;
  }
  .spbr {
    display: inline-block;
  }
  .pcem {
    display: none;
  }
  .spem {
    display: block;
  }
}
.dsib {
  display: inline-block;
}

/* border */
.bdt1 {
  border-top: 1px solid #cccccc;
}

.bdb1 {
  border-bottom: 1px solid #cccccc;
}

.bd-no {
  border-top: none;
  border-bottom: none;
  border-left: none;
  border-right: none;
}

.bdtn {
  border-top: none;
}

.bdbn {
  border-bottom: none;
}

/* border-radius */
.bdr0 {
  border-radius: 0 !important;
}

/* width */
.w32px {
  width: 32px !important;
}

.w50px {
  width: 50px !important;
}

.w140px {
  width: 140px !important;
}

.w160px {
  width: 160px !important;
}

.w240px {
  width: 240px !important;
}

.w25per {
  width: 25% !important;
}

.w33per {
  width: 33% !important;
}

.w40per {
  width: 40% !important;
}

.w50per {
  width: 50% !important;
}

.w60per {
  width: 60% !important;
}

.w67per {
  width: 67% !important;
}

.w75per {
  width: 75% !important;
}

.w80per {
  width: 80% !important;
}

.w100per {
  width: 100% !important;
}

.wat {
  width: auto !important;
}

.w1em {
  width: 1em !important;
}

.w2em {
  width: 2em !important;
}

.w3em {
  width: 3em !important;
}

.w4em {
  width: 4em !important;
}

.w5em {
  width: 5em !important;
}

.w6em {
  width: 6em !important;
}

.w7em {
  width: 7em !important;
}

.w8em {
  width: 8em !important;
}

/* height */
.h5em {
  height: 5em !important;
}

.h8em {
  height: 8em !important;
}

.h100per {
  height: 100%;
}

/* color */
.txt-white {
  color: #fff !important;
}

.txt-normal {
  color: #404040 !important;
}

/* bgcolor */
.bg-white {
  background-color: #fff !important;
}

/* white-space */
.nowrap {
  white-space: nowrap;
}

.pre {
  white-space: pre;
}

/* min-width */
.minw180 {
  min-width: 180px !important;
}

/* text-align */
.tal {
  text-align: left !important;
}

.tar {
  text-align: right !important;
}

.tac {
  text-align: center !important;
}

/* vertical-align */
.vat {
  vertical-align: top !important;
}

.vam {
  vertical-align: middle !important;
}

.vab {
  vertical-align: bottom !important;
}

/* text-decoration */
.tdn {
  text-decoration: none !important;
}

.tdu {
  text-decoration: underline !important;
}

/* font-weight */
.fwn {
  font-weight: normal !important;
}

.fwb {
  font-weight: bold !important;
}

/* line-height */
.lhss {
  line-height: 0.9rem !important;
}

.lhs {
  line-height: 1rem !important;
}

.lhm {
  line-height: 1.1rem !important;
}

.lhl {
  line-height: 1.4rem !important;
}

.lhx {
  line-height: 1.6rem !important;
}

/* font-size */
.fsss {
  font-size: 0.9rem !important;
}

.fss {
  font-size: 1rem !important;
}

.fsm {
  font-size: 1.1rem !important;
}

.fsl {
  font-size: 1.4rem !important;
}

.fsx {
  font-size: 1.6rem !important;
}

.fsr8 {
  font-size: 0.8rem !important;
}

.fsr9 {
  font-size: 0.9rem !important;
}

.fsr10 {
  font-size: 1rem !important;
}

.fsr11 {
  font-size: 1.1rem !important;
}

.fsr12 {
  font-size: 1.2rem !important;
}

.fsr13 {
  font-size: 1.3rem !important;
}

.fsr14 {
  font-size: 1.4rem !important;
}

.fsr15 {
  font-size: 1.5rem !important;
}

.fsr16 {
  font-size: 1.6rem !important;
}

.fsr17 {
  font-size: 1.7rem !important;
}

.fsr18 {
  font-size: 1.8rem !important;
}

.fsr19 {
  font-size: 1.9rem !important;
}

.fsr20 {
  font-size: 2rem !important;
}

.fsr21 {
  font-size: 2.1rem !important;
}

.fsr22 {
  font-size: 2.2rem !important;
}

.fsr23 {
  font-size: 2.3rem !important;
}

.fsr24 {
  font-size: 2.4rem !important;
}

.fsr25 {
  font-size: 2.5rem !important;
}

.fsr26 {
  font-size: 2.6rem !important;
}

.fsr27 {
  font-size: 2.7rem !important;
}

.fsr28 {
  font-size: 2.8rem !important;
}

.fsr29 {
  font-size: 2.9rem !important;
}

.fsr30 {
  font-size: 3rem !important;
}

@media only screen and (max-width: 768px) {
  .sp_fsr14 {
    font-size: 1.4rem !important;
  }
  .sp_fsr15 {
    font-size: 1.5rem !important;
  }
  .sp_fsr16 {
    font-size: 1.6rem !important;
  }
  .sp_fsr17 {
    font-size: 1.7rem !important;
  }
  .sp_fsr18 {
    font-size: 1.8rem !important;
  }
}
/* space class
------------------------------------------------------------ */
.mtss {
  margin-top: 8px !important;
}

.mrss {
  margin-right: 8px !important;
}

.mbss {
  margin-bottom: 8px !important;
}

.mlss {
  margin-left: 8px !important;
}

.mts {
  margin-top: 16px !important;
}

.mrs {
  margin-right: 16px !important;
}

.mbs {
  margin-bottom: 16px !important;
}

.mls {
  margin-left: 16px !important;
}

.mtm {
  margin-top: 24px !important;
}

.mrm {
  margin-right: 24px !important;
}

.mbm {
  margin-bottom: 24px !important;
}

.mlm {
  margin-left: 24px !important;
}

.mtl {
  margin-top: 32px !important;
}

.mrl {
  margin-right: 32px !important;
}

.mbl {
  margin-bottom: 32px !important;
}

.mll {
  margin-left: 32px !important;
}

.mtl15 {
  margin-top: 48px !important;
}

.mrl15 {
  margin-right: 48px !important;
}

.mbl15 {
  margin-bottom: 48px !important;
}

.mll15 {
  margin-left: 48px !important;
}

.pass {
  padding: 8px !important;
}

.prsss {
  padding-right: 4px !important;
}

.plsss {
  padding-left: 4px !important;
}

.ptss {
  padding-top: 8px !important;
}

.prss {
  padding-right: 8px !important;
}

.pbss {
  padding-bottom: 8px !important;
}

.plss {
  padding-left: 8px !important;
}

.pts {
  padding-top: 16px !important;
}

.prs {
  padding-right: 16px !important;
}

.pbs {
  padding-bottom: 16px !important;
}

.pls {
  padding-left: 16px !important;
}

.pas {
  padding: 16px !important;
}

.pxs {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.ptm {
  padding-top: 24px !important;
}

.prm {
  padding-right: 24px !important;
}

.pbm {
  padding-bottom: 24px !important;
}

.plm {
  padding-left: 24px !important;
}

.ptl {
  padding-top: 32px !important;
}

.prl {
  padding-right: 32px !important;
}

.pbl {
  padding-bottom: 32px !important;
}

.pll {
  padding-left: 32px !important;
}

.ptl15 {
  padding-top: 48px !important;
}

.prl15 {
  padding-right: 48px !important;
}

.pbl15 {
  padding-bottom: 48px !important;
}

.pll15 {
  padding-left: 48px !important;
}

.pbl2 {
  padding-bottom: 64px !important;
}

.pbl3 {
  padding-bottom: 96px !important;
}

.pbl4 {
  padding-bottom: 128px !important;
}

.mtss-m {
  margin-top: -8px !important;
}

.mts-m {
  margin-top: -16px !important;
}

.mg0 {
  margin: 0 !important;
}

.mga {
  margin: auto !important;
}

.mra {
  margin-right: auto !important;
}

.mla {
  margin-left: auto !important;
}

.pd0 {
  padding: 0 !important;
}

.pd2 {
  padding: 2px !important;
}

.mt0 {
  margin-top: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pt2 {
  padding-top: 2px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pb2 {
  padding-bottom: 1px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.mt4 {
  margin-top: 4px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pt12 {
  padding-top: 12px !important;
}

.pb12 {
  padding-bottom: 12px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pa0 {
  padding: 0 !important;
}

.pas {
  padding: 16px !important;
}

.pass {
  padding: 8px !important;
}

/* min-wigth */
.miw-e2 {
  min-width: 2em !important;
}

/* max-height */
.mxh-240p {
  max-height: 240px !important;
}

.mxh-320p {
  max-height: 320px !important;
}

.unit-txt {
  font-size: 1rem;
  font-weight: normal;
  white-space: nowrap;
}
.unit-txt em {
  font-size: 1.4rem;
  font-weight: bold;
  font-style: normal;
  display: inline-block;
  padding-right: 2px;
}

.post-detail {
  font-size: 16px;
}
.post-detail h1.title, .post-detail h2.title {
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 48px;
  color: #404040;
  padding-bottom: 4px;
  border-bottom: 4px solid rgb(88, 206, 210);
}
.post-detail .pubdate {
  font-size: 0.7em;
  color: #404040;
  margin-top: 24px;
  margin-bottom: 0;
}
.post-detail p {
  margin-bottom: 0;
  padding-bottom: 16px;
  position: relative;
  z-index: 1;
}
.post-detail p + ul, .post-detail p + ol {
  margin-top: -8px;
}
.post-detail div {
  position: relative;
  z-index: 1;
}
.post-detail img {
  max-width: 100%;
  height: auto;
  margin-top: 16px;
  margin-bottom: 24px;
}
.post-detail ul,
.post-detail ol {
  margin-bottom: 24px;
  list-style: disc;
  position: relative;
  z-index: 1;
}
.post-detail ul li,
.post-detail ol li {
  font-size: 1rem;
  line-height: 1.6;
  margin-left: 0;
  margin-bottom: 4px;
}
.post-detail .news-index-frame {
  border-radius: 12px;
  position: relative;
  z-index: 1;
  padding-bottom: 48px;
  background-color: #fff;
  border: 2px solid rgb(88, 206, 210);
}
.post-detail .news-index-frame .index-title {
  display: inline-block;
  padding: 3px 16px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background-color: rgb(88, 206, 210);
  border-radius: 8px 0 8px 0;
}
.post-detail .news-index-frame ul {
  padding: 0 24px 16px;
  margin: 0;
  list-style: none;
}
.post-detail .news-index-frame ul > li {
  padding: 0;
  margin: 16px 0;
}
.post-detail .news-index-frame ul > li.h2 {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 24px;
  margin-bottom: 16px;
}
.post-detail .news-index-frame ul > li.h2 a {
  font-size: 1rem;
  color: #404040;
  font-weight: bold;
}
.post-detail .news-index-frame ul > li.h3 {
  font-size: 0.9rem;
  font-weight: normal;
  margin-bottom: 8px;
}
.post-detail .news-index-frame ul > li.h3 a {
  position: relative;
  display: inline-block;
  padding-left: 1rem;
  font-size: 0.9rem;
  color: #404040;
  font-weight: normal;
}
.post-detail .news-index-frame ul > li.h3 a:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
  display: inline-block;
}
.post-detail .news-index-frame ul > li:nth-child(n+8) {
  display: none;
}
.post-detail .news-index-frame.open > ul > li {
  display: block;
}
.post-detail .news-index-frame.open .index-btn:before {
  content: "INDEXを閉じる";
}
.post-detail .news-index-frame.open .index-btn:after {
  background: url("../img/chevron-up.svg") no-repeat center center;
}
.post-detail .news-index-frame .index-btn {
  position: absolute;
  z-index: 100;
  bottom: 16px;
  left: calc(50% - 120px);
  display: inline-block;
  padding: 0;
  width: 240px;
  font-size: 0;
  line-height: 0;
  height: 32px;
  border-radius: 16px;
  border: 1px solid #404040;
  text-align: center;
}
.post-detail .news-index-frame .index-btn:before {
  font-size: 1rem;
  display: inline-block;
  line-height: 32px;
  content: "INDEXをすべて見る";
}
.post-detail .news-index-frame .index-btn:after {
  position: absolute;
  top: 4px;
  right: 12px;
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  background: url("../img/chevron-down.svg") no-repeat center center;
}
.post-detail h2, .post-detail .news-index-h2 {
  position: relative;
  z-index: 0;
  font-size: 1.4rem;
  font-weight: bold;
  padding-top: 72px;
  margin-top: -40px;
  margin-bottom: 32px;
  padding-left: 4px;
  color: #404040 !important;
  padding-bottom: 3px;
  border-bottom: 3px solid rgb(88, 206, 210);
}
.post-detail h2 + p, .post-detail .news-index-h2 + p {
  margin-top: -8px;
}
.post-detail h2 a, .post-detail .news-index-h2 a {
  position: absolute;
  top: -20px;
  left: 0;
  display: inline-block;
}
.post-detail h3, .post-detail .news-index-h3 {
  position: relative;
  font-size: 1.2rem;
  font-weight: bold;
  padding-top: 64px;
  margin-top: -24px;
  margin-bottom: 24px;
  padding-left: 10px;
  position: relative;
  z-index: 0;
}
.post-detail h3:before, .post-detail .news-index-h3:before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 64px;
  left: 0;
  width: 0;
  height: calc(100% - 64px);
  border-left: 5px solid rgb(88, 206, 210);
}
.post-detail h3 + p, .post-detail .news-index-h3 + p {
  margin-top: -8px;
}
.post-detail h3 a, .post-detail .news-index-h3 a {
  position: absolute;
  top: -20px;
  left: 0;
  display: inline-block;
}
.post-detail h4, .post-detail .news-index-h4 {
  font-size: 1.2rem;
  padding-top: 56px;
  margin-top: -16px;
  margin-bottom: 16px;
  position: relative;
  z-index: 0;
}
.post-detail h4 + p, .post-detail .news-index-h4 + p {
  margin-top: -8px;
}
.post-detail h4 a, .post-detail .news-index-h4 a {
  position: absolute;
  top: -20px;
  left: 0;
  display: inline-block;
}
.post-detail .category {
  margin-top: 24px;
  position: relative;
  z-index: 1;
}
.post-detail .category span {
  display: inline-block;
  font-size: 0.8em;
  font-weight: bold;
  margin-bottom: 8px;
  color: #fff;
  padding: 3px 12px 2px;
  border-radius: 4px;
  background: rgb(88, 206, 210);
}
.post-detail .category + .pubdate {
  margin-top: 0;
}

.card-list {
  margin-top: 24px;
}
.card-list > div {
  margin-bottom: 16px;
}
.card-list .card {
  height: 100%;
  position: relative;
  padding-bottom: 20px;
  cursor: pointer;
  border: none;
  color: #404040 !important;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}
.card-list .card:hover {
  opacity: 0.7;
}
.card-list .card figure {
  margin-bottom: 0;
  position: relative;
  display: inline-block;
  width: 100%;
  overflow: hidden;
}
.card-list .card figure > span {
  margin-bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #eee;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 0.25rem 0.25rem 0 0;
}
.card-list .card figure > span:hover {
  transform: scale(1.1);
  transition: all 0.3s ease-out;
}
.card-list .card figure:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.card-list .card .card-body {
  padding: 16px;
  padding-top: 8px;
}
.card-list .card .card-date {
  font-size: 0.7rem;
  font-weight: normal;
  margin-bottom: 4px;
  position: absolute;
  bottom: 6px;
  right: 12px;
}
.card-list .card .card-title {
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.card-list .card .card-cat {
  position: absolute;
  bottom: 8px;
  left: 12px;
  display: inline-block;
  padding: 1px 6px 0;
  font-size: 0.6rem;
  font-weight: bold;
  line-height: 2;
  border-radius: 6px;
  text-align: center;
  color: #fff;
  background-color: #309292;
}
.card-list .card .card-read-btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  display: inline-block;
  padding: 0 12px;
  font-size: 1.2rem;
  line-height: 2;
  border-radius: 6px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.card-list .card .card-read-btn:before {
  content: "Let's Read!";
}

.select-list {
  display: table;
  margin: 0;
  padding: 0;
  margin-top: 24px;
  margin-bottom: 32px;
  width: 100%;
  border-top: 1px solid #cccccc;
}
.select-list li {
  display: table-row;
  margin: 0;
  padding: 0;
}
.select-list li.active a, .select-list li.active label {
  background-color: #309292;
  color: #fff;
}
.select-list li a, .select-list li label {
  display: table-cell;
  position: relative;
  padding: 0 16px;
  vertical-align: middle;
  height: 48px;
  font-size: 0.9rem;
  font-weight: bold;
  border-bottom: 1px solid #cccccc;
  color: #404040;
  background-color: #fff;
  cursor: pointer;
}
.select-list li a:hover, .select-list li label:hover {
  background-color: #ecbe13;
  color: #fff;
}
.select-list li a input, .select-list li label input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  font-size: 0;
  display: none;
}
.select-list li a span, .select-list li label span {
  display: block;
  font-size: 0.7em;
  font-weight: normal;
}
.select-list li a:before, .select-list li label:before {
  content: "";
  display: block;
  position: absolute;
  font-size: 1rem;
  top: 0;
  right: 0;
}

.kb-blog-btn {
  display: block;
  width: 320px;
  margin: 0 auto 48px;
  text-align: center;
  background-color: rgb(88, 206, 210);
  line-height: 40px;
  color: #fff;
  border-radius: 20px;
  font-size: 16px;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.kb-blog-btn:hover {
  opacity: 0.7;
}
.kb-blog-btn a {
  display: inline-block;
  width: 100%;
  font-size: 16px;
  font-weight: normal;
  line-height: 40px;
  color: #fff;
  text-decoration: none;
}
.kb-blog-btn a:hover, .kb-blog-btn a:focus .kb-blog-btn a:active {
  text-decoration: none;
  color: #fff;
}

.kb-blog-btn-copy {
  width: 320px;
  display: block;
  margin: 24px auto 8px;
  text-align: center;
  line-height: 1;
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.kb-blog-btn-copy:before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 0.4em;
  border-top: 1px solid #444;
  transform: rotate(45deg);
  margin-right: 4px;
}
.kb-blog-btn-copy:after {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 0.4em;
  border-top: 1px solid #444;
  transform: rotate(-45deg);
  margin-left: 4px;
}

.post-frame {
  border: 1px solid rgb(88, 206, 210);
  padding: 12px;
  border-radius: 6px;
  margin: 16px 0;
  position: relative;
  z-index: 1;
}

.post-frame-double {
  border: 4px double rgb(88, 206, 210);
  padding: 16px 12px;
  border-radius: 8px;
  margin: 24px 0 32px;
  position: relative;
  z-index: 1;
}
.post-frame-double > :first-child {
  display: table;
  margin-bottom: 8px;
  border: 2px solid #fff;
  border-radius: 6px;
  width: auto;
  margin-top: -36px;
  background-color: rgb(88, 206, 210);
  padding: 3px 8px;
  font-weight: bold;
  color: #fff;
}

.post-frame-alert {
  border: 1px solid rgb(88, 206, 210);
  padding: 16px;
  border-radius: 8px;
  margin: 40px 0 24px;
  position: relative;
  z-index: 1;
}
.post-frame-alert:after {
  position: absolute;
  top: -9px;
  left: 40px;
  display: inline-block;
  padding: 0 12px 0 6px;
  content: "注意点";
  background-color: #fafafa;
  font-size: 16px;
  font-weight: bold;
  line-height: 16px;
  color: rgb(88, 206, 210);
}
.post-frame-alert:before {
  position: absolute;
  top: -15px;
  left: 12px;
  display: inline-block;
  font-family: "Material Icons";
  content: "\e002";
  color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: 28px;
  width: 28px;
  height: 28px;
  border-radius: 14px;
  background-color: rgb(88, 206, 210);
}

.post-frame-memo {
  border: 1px solid rgb(88, 206, 210);
  padding: 16px;
  border-radius: 8px;
  margin: 40px 0 24px;
  position: relative;
  z-index: 1;
}
.post-frame-memo:after {
  position: absolute;
  top: -9px;
  left: 40px;
  display: inline-block;
  padding: 0 12px 0 6px;
  content: "メモ";
  background-color: #fafafa;
  font-size: 16px;
  font-weight: bold;
  line-height: 16px;
  color: rgb(88, 206, 210);
}
.post-frame-memo:before {
  position: absolute;
  top: -15px;
  left: 12px;
  display: inline-block;
  font-family: "Material Icons";
  content: "\e3c9";
  color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: 28px;
  width: 28px;
  height: 28px;
  border-radius: 14px;
  background-color: rgb(88, 206, 210);
}

.post-frame-point {
  border: 1px solid rgb(88, 206, 210);
  padding: 16px;
  border-radius: 8px;
  margin: 40px 0 24px;
  position: relative;
  z-index: 1;
}
.post-frame-point:after {
  position: absolute;
  top: -9px;
  left: 40px;
  display: inline-block;
  padding: 0 12px 0 6px;
  content: "ポイント";
  background-color: #fafafa;
  font-size: 16px;
  font-weight: bold;
  line-height: 16px;
  color: rgb(88, 206, 210);
}
.post-frame-point:before {
  position: absolute;
  top: -15px;
  left: 12px;
  display: inline-block;
  font-family: "Material Icons";
  content: "\e5ca";
  color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: 28px;
  width: 28px;
  height: 28px;
  border-radius: 14px;
  background-color: rgb(88, 206, 210);
}/*# sourceMappingURL=style.css.map */