@charset "UTF-8";

::selection {
  background: #B4ADA9;
  color: #ffffff;
}

* {
  margin: 0px;
  padding: 0px;
}

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

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  color: #333333;
  background: #ffffff;
  position: relative;
  letter-spacing: 0.01em;
}

/* ---- font------- */
.fw100 {
  font-weight: 100
}

.fw300 {
  font-weight: 300
}

.fw400 {
  font-weight: 400
}

.fw500 {
  font-weight: 500
}

.fw600 {
  font-weight: 600
}



/* ---- display------- */
.pc-block {
  display: block
}

.pc-inline {
  display: inline
}

.sp-block,
.sp-inline {
  display: none
}

@media screen and (max-width: 767px) {
  .pc-block {
    display: none
  }

  .sp-block {
    display: block
  }
}

@media screen and (max-width: 480px) {
  .pc-inline {
    display: none
  }

  .sp-inline {
    display: inline
  }
}

/* ---- 背景------- */
.bg_sub {
  background: #f7f5f2;
}

.bg_sub2 {
  background: #EEE9E6;
}

/* ---- arrow btn hoverMove------- */
.more_link {
  text-align: right;
  font-size: 1.2rem;
  margin: 20px 0 0 auto;
  display: flex;
  justify-content: flex-end;
}

.arrowbtn {
  font-size: 0.8rem;
  width: 100px;
  display: inline-block;
  cursor: pointer;
  position: relative;
  text-decoration: none;
}

.arrowbtn::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 3px);
  right: 20px;
  width: 20px;
  height: 3px;
  border: none;
  border-right: 2px solid #ED7A9B;
  border-bottom: 1px solid #ED7A9B;
  transform: skew(45deg);
  transition: .3s;
}

.arrowbtn:hover::after {
  right: 10px;
  width: 30px;
}

.switch_arrowbtn {
  display: inline-block;
  cursor: pointer;
  position: relative;
  text-decoration: none;
}

.switch_arrowbtn::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 4px);
  right: 5px;
  width: 16px;
  height: 4px;
  border: none;
  border-right: 1px solid #666;
  border-bottom: 1px solid #666;
  transform: skew(45deg);
  transition: .3s;
}

.arrowbtn_navilist {
  display: inline-block;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  padding: 10px 0 10px 30px;
}

.arrowbtn_navilist:hover {
  color: #333333;
}

.arrowbtn_navilist::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 3px);
  left: 0px;
  width: 15px;
  height: 3px;
  border: none;
  border-right: 2px solid #333333;
  border-bottom: 1px solid #333333;
  transform: skew(45deg);
  transition: .3s;
}

.arrowbtn_navilist:hover::before {
  left: 0px;
  width: 20px;
  border-right: 2px solid #333333;
  border-bottom: 1px solid #333333;
}

/*--base btn ------*/
.base_linkbtn {
  position: relative;
  /*矢印と下線の基点とするためrelativeを指定*/
  display: inline-block;
  /*形状*/
  color: #333;
  text-decoration: none;
  outline: none;
  padding: 0 20px 0 0;
}

.base_linkbtn::before {
  content: '';
  position: absolute;
  /*絶対配置で下線の位置を決める*/
  bottom: -8px;
  left: 0%;
  width: 100%;
  /*下線の形状*/
  height: 1px;
  background: #333;
  transition: all .3s;
  /*アニメーションの指定*/
}

.base_linkbtn::after {
  content: '';
  position: absolute;
  /*絶対配置で矢印の位置を決める*/
  bottom: -3px;
  right: 0;
  width: 15px;
  /*矢印の形状*/
  height: 1px;
  background: #333;
  transform: rotate(35deg);
  transition: all .3s;
  /*アニメーションの指定*/
}

.base_linkbtn:hover::before {
  left: 10%;
  /*hoverした際の移動*/
}

.base_linkbtn:hover::after {
  right: -10%;
}

.btn_request {
  background: #8FC21F;
}

.btn_trialregister {
  background: #589DCD;
}

.btn_request a:hover,
.btn_trialregister a:hover {
  background: rgba(0, 0, 0, .3);
}

.backtop_link a {
  padding: 20px 0;
  background: #333333;
  display: block;
  width: 33%;
  color: #ffffff;
  text-align: center;
  margin: 40px auto;
}

.backtop_link a:hover {
  opacity: .7;
}

/* 下層ページ共通
---------------------------------------------------------*/
/* Framework共通 */
.content_box {
  margin: 0;
  padding: 100px 0 20px 0;
  width: 100%;
}

.container_wrap {
  width: 90%;
  max-width: 1100px;
  padding: 0 0px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .content_box {
    margin: 0;
    padding: 80px 0 0 0;
    width: 100%;
  }
}

/* Breadcrumbs Navigation */
.breadcrumbs_area {
  font-size: 1.2rem;
  letter-spacing: 0;
  text-align: left;
  padding: 30px 0 0 0;
}

.breadcrumbs {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.breadcrumbs li:not(:last-of-type)::after {
  content: "＞";
  margin: 0 5px;
  /* 記号の左右の余白 */
  color: #333333;
  /* 記号の色 */
}

.breadcrumbs li {
  margin: 0;
  padding: 0;
}

.breadcrumbs .current-item {
  font-weight: 500;
}

.breadcrumbs a {
  color: #333333;
  text-decoration: none;
}

.breadcrumbs a:link, .breadcrumbms a:visited {
  color: #333333;
}

.breadcrumbs a:hover {
  color: #ED7A9B;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .breadcrumbs_area {
    font-size: 1.2rem;
    letter-spacing: 0;
    text-align: left;
    padding: 10px 0 0 0;
  }

  .breadcrumbs li:first-child {
    margin: 0 0 5px 0;
    padding: 0;
  }
}

/*--  subheader画像なし  */
#subheader_box {
  margin: 0 auto 80px auto;
  height: 200px;
}

.subheader_box {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.subheader_title {
  flex-basis: 75%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.subheader_title h1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
}

.subheader_title h1 span {
  font-size: 1.2rem;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  #subheader_box {
    margin: 0 auto 60px auto;
    height: 100px;
  }

  .subheader_title h1 {
    font-size: 2rem;
  }

  .subheader_title h1 span {
    font-size: 1rem;
  }
}

.newsDList {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
  padding: 20px 40px 20px 20px;
  border-bottom: 1px solid #B3ADAA;
}

.newsDList dt {
  width: 90px;
  margin: 0 10px 0 0;
}

.newsDList dt img {
  max-width: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.newsItem {
  flex: 1;
}

.newsIcon {
  display: inline-block;
  margin: 0;
}

.newsIcon span {
  display: inline-block;
  padding: 2px 5px;
  font-size: 1rem;
  vertical-align: middle;
  color: #FFF;
  border-radius: 2px;
  text-align: center;
}

.newsIcon span.news-release {
  background: #f27e91;
}

.newsIcon span.news-info {
  background: #9dbfde;
}

.newsIcon span.facility-info {
  background: #b7a058;
}

.newsDate {
  display: inline-block;
  font-size: 1.4rem;
  vertical-align: middle;
}

.newsTitle {
  flex: 1;
  font-size: 1.4rem;
  margin: 10px 0 0 0;
}

.newsTitle span {
  background: #FFF;
  font-size: 10px;
  display: inline-block;
  margin: 0 .4em 0 0;
  color: #F00;
  border: 1px solid #F00;
  padding: .1em .5em;
  transform: translate(0, -1px);
  border-radius: 2px;
  animation: newmark 1.5s linear infinite alternate;
}

@keyframes newmark {
  60% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.newsTitle a:hover {
  opacity: .7;
}

.rightarrow {
  width: 100%;
  display: inline-block;
  cursor: pointer;
  position: relative;
  text-decoration: none;
}

.rightarrow::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 4px);
  right: 20px;
  width: 16px;
  height: 4px;
  border: none;
  border-right: 1px solid #666;
  border-bottom: 1px solid #666;
  transform: skew(45deg);
  transition: .3s;
}

.rightarrow:hover::after {
  right: 5px;
  width: 30px;
  border-right: 2px solid #ED7A9B;
  border-bottom: 1px solid #ED7A9B;
}

@media screen and (max-width: 768px) {
  .rightarrow {
    border: 0px solid #333333;
  }
}

.slider {
  display: none;
}

.slider.slick-initialized {
  display: block;
  /*slick-initializedが付与されたら表示*/
}

.base_midashi {
  padding: 60px 0 30px 0;
  text-align: left;
  font-size: 2.6rem;
  font-weight: 600;
}

.pink_midashi {
  color: #ED7A9B;
  font-weight: 600;
  font-size: 2.2rem;
  padding: 0 0 20px 0;
}

.sub_midashi {
  font-weight: 600;
  margin: 20px 0 10px 0;
}

@media screen and (max-width: 768px) {
  .base_midashi {
    padding: 60px 0 30px 0;
    text-align: left;
    font-size: 2.2rem;
    font-weight: 600;
  }

  .pink_midashi {
    color: #ED7A9B;
    font-weight: 600;
    font-size: 1.8rem;
    padding: 0 0 20px 0;
  }
}

.company_catch {
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
  margin: 0 auto 60px auto;
}

.company_midashi {
  position: relative;
  padding: 0 65px;
  text-align: center;
}

.company_midashi:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  background: #000;
}

.company_midashi span {
  position: relative;
  padding: 0 20px;
  background: #fff;
  font-size: 2rem;
}

.company_info {
  line-height: 2;
  margin: 60px auto;
  text-align: center;
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .company_midashi {
    position: relative;
    padding: 0 5px;
    text-align: center;
  }

  .company_midashi:before {
    position: absolute;
    width: 100%;
    height: 0px;
  }

  .company_info {
    margin: 60px auto;
    text-align: left;
  }
  .company_midashi span {
    line-height: 1.6;
    font-size: 1.8rem;
    padding: 0;
  }
}

.office_terms {
  border-top: 1px solid #B3ADAA;
}

.office_terms dl {
  display: flex;
  border-bottom: 1px solid #B3ADAA;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}

.office_terms dl dt {
  background: rgba(179, 173, 170, .3);
  flex-basis: 25%;
  padding: 20px;
  display: flex;
  align-items: center;
}

.office_terms dl dd {
  flex: 1;
  padding: 20px;
}

.office_terms dl dd ul li {
  line-height: 1.5;
  text-align: justify;
}

.company_note {
  font-size: 1.3rem;
  margin: 10px auto 0 0;
}

.company_note li {
  margin: 0 0 5px 0;
}

.company_note li::before {
  content: '※';
  text-indent: -1.2rem;
  padding-left: 1.2rem;
}

.privacy_lead {
  margin: 20px auto 0 auto;
  text-align: justify;
  padding: 0;
  width: 100%;
  line-height: 1.6;
}

.privacy_lead a {
  text-decoration: underline;
}
