@charset "UTF-8";
/* ブラウザのスクロールバーを常に表示させることでカクカクッとなるのを防ぐ */
html {
  overflow-y: scroll;
}

/* ローディング関係ない部分のCSS */
.button {
  background: #222;
  border: 1px solid #222;
  border-radius: 5px;
  color: #fff;
  display: block;
  height: 60px;
  line-height: 60px;
  margin: 30px auto;
  text-align: center;
  width: 600px;
}

.button:hover {
  background: #fff;
  color: #222;
}

img {
  max-width: 100%;
}

/* ローディングの背景部分のCSS */
.loader {
  background: brown;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

/* ローディングのアニメーション部分のCSS (https://projects.lukehaas.me/css-loaders/) */
.loader-animation,
.loader-animation:before,
.loader-animation:after {
  background: #ffffff;
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}

.loader-animation {
  height: 10px;
  left: 50%;
  margin: -5px 0 0 -5px;
  position: absolute;
  top: 50%;
  width: 10px;
  color: #ffffff;
  text-indent: -9999em;
  font-size: 10px;
  transform: translateZ(0);
  animation-delay: -0.16s;
}

.loader-animation:before,
.loader-animation:after {
  position: absolute;
  top: 0;
  content: "";
}

.loader-animation:before {
  left: -1.5em;
  animation-delay: -0.32s;
}

.loader-animation:after {
  left: 1.5em;
}
@keyframes load1 {
  0%, 80%, 100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
/*----------------------------
* メニュー開閉ボタン
*----------------------------*/
#app {
  display: none;
}
@media screen and (max-width: 768px) {
  #app {
    display: block;
  }
}

.menu-btn {
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 3;
  width: 12%;
  height: 4.5%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  background: white;
}

/*----------------------------
* メニュー本体
*----------------------------*/
.menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: brown;
}

.menu__item {
  width: 100%;
  height: auto;
  padding: 0.8em;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}
.menu__item a {
  color: white;
  font-weight: bold;
  font-size: 23px;
  letter-spacing: 2px;
}
.menu__item a span {
  font-weight: normal;
}

/*----------------------------
* アニメーション部分
*----------------------------*/
/* アニメーション前のメニューの状態 */
.menu {
  transform: translateX(100vw);
  transition: all 0.3s linear;
}

/* アニメーション後のメニューの状態 */
.menu.is-active {
  transform: translateX(0);
}

/*================================================================
ALL
================================================================*/
body a {
  color: #333;
  text-decoration: none;
  display: block;
}
body a.link-button {
  background: #e53629;
  color: white;
  font-size: 15px;
  font-weight: bold;
  line-height: 4;
  width: 20%;
  margin: 0 auto;
  text-align: center;
}
body span.sub-text {
  display: block;
  font-size: 14px;
  color: grey;
  letter-spacing: 0;
}
body .red {
  color: #e53629;
}
body .grey {
  color: gray;
  font-weight: bold;
}
body .kome {
  font-size: 12px;
}
body h2 {
  font-size: 40px;
  text-align: center;
}
body p.sub-title {
  font-size: 22px;
  text-align: center;
}
body p.section-sub-title {
  font-size: 15px;
  font-weight: bold;
  text-align: center;
}
body li {
  list-style: none;
}
body img {
  width: 100%;
}
body section {
  padding-bottom: 50px;
  margin-bottom: 100px;
}
body .flex {
  display: flex;
  justify-content: space-between;
}
body .sp-flex {
  display: flex;
  justify-content: space-between;
}
body .flexbox {
  margin: 50px 0;
}
body .smoke {
  background: whitesmoke;
  padding-top: 50px;
}
body .pc-none {
  display: none;
}
body .sp-none {
  display: block;
}
body .clearfix {
  display: block;
  margin: 50px 0;
}
body .clearfix::after {
  content: "";
  display: block;
  clear: both;
}
body .clearfix::before {
  content: "";
  display: block;
  clear: both;
}

@media screen and (max-width: 768px) {
  body a.link-button {
    width: 50%;
  }
  body h2 {
    font-size: 30px;
  }
  body section {
    margin-bottom: 50px;
  }
  body .flex {
    display: block;
  }
  body .pc-none {
    display: block;
  }
  body .sp-none {
    display: none;
  }
  body .kome {
    font-size: 10px;
  }
}
/*================================================================
header
================================================================*/
header {
  padding: 0 50px;
  box-shadow: 0px 0px 2px 1px lightgrey;
}
@media screen and (max-width: 768px) {
  header {
    padding: 15px 10px;
    display: flex;
    position: sticky;
    top: 0;
    background: white;
    z-index: 999999;
  }
}

.header-inner h1 {
  width: 15%;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto 0;
}
@media screen and (max-width: 768px) {
  .header-inner h1 {
    width: 50%;
  }
}
.header-inner .navigation {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .header-inner .navigation {
    display: none;
  }
}
.header-inner .navigation .main-navigation {
  display: flex;
}
.header-inner .navigation .main-navigation__list {
  width: 20%;
  line-height: 2;
  text-align: center;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 20px 0;
}
.header-inner .navigation .main-navigation__list a {
  font-size: 16px;
}
.header-inner .navigation .main-navigation__list a .sub-text {
  color: black;
}
.header-inner .navigation .main-navigation__list:last-child {
  background-color: #e53629;
}
.header-inner .navigation .main-navigation__list:last-child a {
  color: white;
}
.header-inner .navigation .main-navigation__list:last-child a .sub-text {
  color: white;
}
.header-inner span.sub-text:last-child {
  color: white;
}

/*================================================================
main
================================================================*/
main .container {
  width: 1180px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  main .container {
    width: 100%;
    padding: 0 10px;
  }
}
main .container p.container-sub-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  text-align: center;
  width: 100%;
  color: white;
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  main .container p.container-sub-title {
    font-size: 20px;
  }
}
main .container p.container-sub-title .container-title {
  display: block;
  font-size: 15px;
  line-height: 2;
}
main #mainvisual {
  position: relative;
}
@media screen and (max-width: 768px) {
  main #mainvisual {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  main #mainvisual .mainvisual img {
    height: calc(100vh - 200px);
    -o-object-fit: cover;
       object-fit: cover;
  }
}
main #mainvisual p span {
  position: absolute;
  font-weight: bold;
  font-size: 60px;
  color: white;
  text-shadow: 2px 2px black;
  top: 34%;
  left: 7%;
}
@media screen and (max-width: 768px) {
  main #mainvisual p span {
    font-size: 25px;
    top: 57%;
    left: 3%;
    background-color: rgba(29, 29, 31, 0.3);
    padding: 5px;
    text-shadow: 1px 2px black;
  }
}
main #campany {
  position: relative;
}
main #campany::after {
  position: absolute;
  content: "";
  background: 9000000000e9e2e;
  top: 12%;
  height: 50%;
  width: 100%;
  z-index: -99;
}
main #campany .company-box {
  width: 48%;
  position: relative;
}
@media screen and (max-width: 768px) {
  main #campany .company-box {
    width: 100%;
    margin-bottom: 10px;
  }
}
main #campany .company-box .container-sub-title {
  font-size: 35px;
}
@media screen and (max-width: 768px) {
  main #campany .company-box .container-sub-title {
    font-size: 20px;
  }
}
main #campany .company-box figure {
  background: #333;
}
main #campany .company-box figure img {
  opacity: 0.3;
}
@media screen and (max-width: 768px) {
  main #campany .company-box figure img {
    height: 180px;
    -o-object-position: 0 -2%;
       object-position: 0 -2%;
  }
}
main #campany #ceo-box {
  position: relative;
  margin: 50px 0;
}
main #campany #ceo-box p.container-sub-title {
  position: absolute;
  top: 50%;
  left: 25%;
  color: black;
  font-size: 35px;
}
@media screen and (max-width: 768px) {
  main #campany #ceo-box p.container-sub-title {
    font-size: 20px;
  }
}
main #campany #ceo-box p.container-sub-title .container-title {
  display: block;
  font-size: 15px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  main #campany #ceo-box figure img {
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 78% 0;
       object-position: 78% 0;
  }
}
main #business .business-box {
  position: relative;
}
@media screen and (max-width: 768px) {
  main #business .business-box {
    height: 180px;
  }
}
main #business figure {
  background-color: #333;
}
main #business figure img {
  opacity: 0.3;
}
@media screen and (max-width: 768px) {
  main #business figure img {
    height: 180px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
main #info .information-list {
  margin: 50px 0;
}
main #info .information-list .information-list__item {
  letter-spacing: 2px;
  font-weight: bold;
  line-height: 4;
  border-bottom: solid 1px lightgray;
}
@media screen and (max-width: 768px) {
  main #info .information-list .information-list__item {
    line-height: 1;
    margin-bottom: 15px;
  }
}
main #info .information-list .information-list__item .day {
  font-size: 12px;
  display: inline-block;
  padding: 0 10px;
}
main #info .information-list .information-list__item .tag {
  background: slategray;
  color: white;
  display: inline-block;
  font-size: 10px;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  main #info .information-list .information-list__item .tag {
    padding: 5px 14px;
  }
}
main #info .information-list .information-list__item .news-text {
  padding: 0 10px;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  main #info .information-list .information-list__item .news-text {
    display: block;
    font-size: 12px;
    line-height: 3;
  }
}
main #brand {
  margin-bottom: 0;
}
main #brand figure {
  float: left;
  width: 25%;
  padding: 1%;
  margin-right: 2%;
}
main #brand figure:nth-child(2) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  main #brand figure {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  main #brand figure img {
    width: 90%;
    padding: 10px;
    background: whitesmoke;
    margin: 0 auto;
    display: block;
  }
}
main #philosophy .child-page__content__list__item {
  margin-bottom: 100px;
}
main #philosophy .child-page__content__list__item :nth-child(2) {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  main #philosophy .child-page__content__list__item {
    margin-bottom: 30px;
  }
}
main #philosophy .child-page__content__list__item__title {
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  main #philosophy .child-page__content__list__item__title {
    font-size: 20px;
  }
}
main #philosophy .child-page__content__list__item__text {
  letter-spacing: 2px;
  line-height: 3;
}
@media screen and (max-width: 768px) {
  main #philosophy .child-page__content__list__item__text {
    letter-spacing: 0;
    line-height: 2.5;
  }
}

/*================================================================
footer
================================================================*/
footer {
  background: #333;
  color: white;
  font-weight: bold;
}

.footer-content {
  padding: 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .footer-content {
    margin-bottom: 0;
  }
}
.footer-content .logo {
  width: 15%;
}
@media screen and (max-width: 768px) {
  .footer-content .logo {
    width: 70%;
    margin: 0 auto;
  }
}
.footer-content .footer-list {
  width: 75%;
}
@media screen and (max-width: 768px) {
  .footer-content .footer-list {
    display: none;
  }
}
.footer-content .footer-list__item {
  width: 15%;
}
.footer-content .footer-sub-list__item {
  font-size: 12px;
  line-height: 2.1;
}
.footer-content .footer-sub-list__item a {
  color: white;
}
.footer-content .footer-sub-list__item2 {
  font-size: 14px;
  border-bottom: solid 1px grey;
  margin-bottom: 5px;
}
.footer-content .footer-sub-list__item2 a {
  color: white;
}
.footer-content .footer-list-link-button {
  color: white;
  font-size: 13px;
  line-height: 3.5;
  border: solid 1px white;
  font-weight: normal;
  text-align: center;
  margin-bottom: 15px;
}

.copyright {
  font-size: 10px;
  text-align: center;
  line-height: 5;
  background: #e53629;
}

/*================================================================
page ALL
================================================================*/
.page .page-title {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 4;
}
@media screen and (max-width: 768px) {
  .page .page-title {
    font-size: 20px;
    border-bottom: solid 1px lightgrey;
    line-height: 3;
  }
}
.page .page-minitext {
  vertical-align: middle;
  font-size: 20px;
  margin-left: 15px;
}
@media screen and (max-width: 768px) {
  .page .page-minitext {
    font-size: 10px;
  }
}

.breadcrumb {
  line-height: 4;
  border-bottom: solid 1px lightgrey;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    line-height: 2.5;
  }
}
.breadcrumb span {
  display: inline-block;
  font-size: 12px;
}

/*================================================================
page 基本スタイル
================================================================*/
.page .page-mainv {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .page .page-mainv {
    margin-bottom: 10px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 43% 0;
       object-position: 43% 0;
  }
}
@media screen and (max-width: 768px) {
  .page .page-content {
    margin-bottom: 0;
  }
}
.page .page-content .page-content-list {
  font-weight: bold;
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: solid 1px lightgray;
}
.page .page-content .page-content-list__item {
  width: 50%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .page .page-content .page-content-list__item {
    width: 100%;
    padding: 10px 15px;
  }
}
.page .page-content .page-content-list figure {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .page .page-content .page-content-list figure {
    width: 100%;
  }
}
.page .page-content .page-content-list__title {
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .page .page-content .page-content-list__title {
    font-size: 18px;
  }
}
.page .page-content .page-content-list__back-title {
  opacity: 0.2;
  font-size: 50px;
}
@media screen and (max-width: 768px) {
  .page .page-content .page-content-list__back-title {
    font-size: 35px;
  }
}
.page .page-content .page-content-list__text {
  line-height: 1.8;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .page .page-content .page-content-list__text {
    font-size: 15px;
  }
}
.page .page-content .page-content-list .page-hr {
  border: solid 1px grey;
  margin: 10px 0 15px 0;
}
.page .page-content .page-content-list .page-content-link {
  width: 30%;
  text-align: center;
  line-height: 3;
  font-weight: bold;
  color: white;
  background-color: #e53629;
}
@media screen and (max-width: 768px) {
  .page .page-content .page-content-list .page-content-link {
    width: 60%;
    margin: 0 auto;
    font-size: 12px;
    line-height: 4;
  }
}

/*================================================================
CHILD-page ALL
================================================================*/
@media screen and (max-width: 768px) {
  .child-page .page-title {
    letter-spacing: 0;
    margin-bottom: 20px;
  }
}
.child-page .child-page__content {
  border-bottom: solid 1px lightgrey;
}
@media screen and (max-width: 768px) {
  .child-page .child-page__content {
    padding-bottom: 0;
  }
}
.child-page .child-page__content__list__item__title {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .child-page .child-page__content__list__item__title {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .child-page .child-page__content__list__item__text {
    font-size: 14px;
  }
}
.child-page .child-page__content__title {
  font-size: 20px;
  width: 84%;
  margin: 50px auto 0;
  font-weight: bold;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .child-page .child-page__content__title {
    margin-top: 35px;
    font-size: 15px;
    width: 100%;
    border-bottom: solid 1px lightgrey;
    padding-bottom: 35px;
    text-align: left;
  }
}
.child-page .child-page__content__box__flex {
  width: 90%;
  margin: 80px auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .child-page .child-page__content__box__flex {
    display: block;
    margin: 40px auto;
  }
}
.child-page .child-page__content__box__flex figure {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .child-page .child-page__content__box__flex figure {
    width: 100%;
  }
}
.child-page .child-page__content__box__flex__box {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .child-page .child-page__content__box__flex__box {
    width: 100%;
  }
}
.child-page .child-page__content__box__flex__box .business-title {
  font-size: 20px;
  font-weight: bold;
  line-height: 3;
}
@media screen and (max-width: 768px) {
  .child-page .child-page__content__box__flex__box .business-title {
    font-size: 15px;
  }
}
.child-page .child-page__content__box__flex__box .business-text {
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .child-page .child-page__content__box__flex__box .business-text {
    font-size: 12px;
  }
}
.child-page .child-page__content__box__flex__box .page-content-link {
  width: 40%;
  font-weight: bold;
  text-align: center;
  margin: 50px 0 0;
  font-size: 14px;
  background: #e53629;
  color: white;
  line-height: 4;
}
@media screen and (max-width: 768px) {
  .child-page .child-page__content__box__flex__box .page-content-link {
    width: 60%;
    margin: 20px auto;
  }
}
.child-page .page-content .page-content-list {
  float: left;
  width: 46%;
  padding: 10px;
  margin: 2%;
  border: solid 1px lightgrey;
}
@media screen and (max-width: 768px) {
  .child-page .page-content .page-content-list {
    width: 100%;
    display: flex;
    margin: 0 0 30px;
  }
}
.child-page .page-content .page-content-list figure {
  width: 50%;
  background-color: #333;
}
@media screen and (max-width: 768px) {
  .child-page .page-content .page-content-list figure {
    width: 100%;
  }
}
.child-page .page-content .page-content-list figure img {
  opacity: 0.3;
}
.child-page .page-content .page-content-list .page-content-list__item {
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .child-page .page-content .page-content-list .page-content-list__item {
    padding: 0 10px;
  }
}
.child-page .page-content .page-content-list .page-content-list__item .page-content-list__back-title {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .child-page .page-content .page-content-list .page-content-list__item .page-content-list__back-title {
    font-size: 14px;
  }
}
.child-page .page-content .page-content-list .page-content-list__item .page-content-list__title {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .child-page .page-content .page-content-list .page-content-list__item .page-content-list__title {
    font-size: 15px;
  }
}
.child-page .page-content .page-content-list .page-content-link {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .child-page .page-content .page-content-list .page-content-link {
    line-height: 5;
  }
}
.child-page .page-mainv {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .child-page .page-mainv {
    margin-bottom: 30px;
  }
}

/*================================================================
CHILD-page フィロソフィー
================================================================*/
#philosophy .philosophy__content__list__item__title {
  font-size: 20px;
  font-weight: bold;
  line-height: 3;
}
#philosophy .philosophy__content__list__item__text {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  #philosophy .philosophy__content__list__item__text {
    font-size: 12px;
  }
}

/*================================================================
CHILD-page 会社概要
================================================================*/
#corporate .corporate__content .corporate__content__textbox {
  float: left;
  width: 50%;
  padding: 2.5%;
}
@media screen and (max-width: 768px) {
  #corporate .corporate__content .corporate__content__textbox {
    float: unset;
    width: 100%;
    margin-bottom: 15px;
  }
}
#corporate .corporate__content .corporate__content__textbox__title {
  font-weight: bold;
  border-bottom: solid 1px lightgray;
  margin-bottom: 20px;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  #corporate .corporate__content .corporate__content__textbox__title {
    margin-bottom: 15px;
    font-size: 16px;
  }
}
#corporate .corporate__content .corporate__content__textbox__text {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  #corporate .corporate__content .corporate__content__textbox__text {
    font-size: 12px;
  }
}
#corporate .corporate__content .clearfix {
  margin: 0;
}

/*================================================================
CHILD-page 沿革
================================================================*/
#history .child-page__content__list__item {
  padding: 20px 0;
  margin-bottom: 30px;
  border-bottom: solid 1px lightgrey;
}
@media screen and (max-width: 768px) {
  #history .child-page__content__list__item {
    padding: 10px 0;
    margin-bottom: 10px;
  }
}
#history .child-page__content__list__item__title {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #history .child-page__content__list__item__title {
    font-size: 14px;
  }
}

/*================================================================
CHILD-page ダンスクロス
================================================================*/
#ceo .ceo-textbox {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  #ceo .ceo-textbox {
    padding: 0 10px;
  }
}
#ceo .ceo-textbox__title {
  font-size: 24px;
  font-weight: bold;
  line-height: 3;
}
@media screen and (max-width: 768px) {
  #ceo .ceo-textbox__title {
    font-size: 18px;
    margin-top: 30px;
  }
}
#ceo .ceo-textbox__text {
  line-height: 2.5;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #ceo .ceo-textbox__text {
    line-height: 2;
    font-size: 15px;
    margin-bottom: 30px;
  }
}
#ceo .ceo-textbox__sub-title {
  font-size: 20px;
  font-weight: bold;
  line-height: 3;
  color: #333;
}
#ceo .ceo-name__text {
  text-align: right;
  line-height: 10;
}
@media screen and (max-width: 768px) {
  #ceo .ceo-name__text {
    line-height: 5;
  }
}/*# sourceMappingURL=style.css.map */