@charset "UTF-8";
/*color変数*/
/*グーグルフォントの読み込み*/
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p&display=swap");
/*ブレイクポイント変数↓*/
/*ここまでブレイクポイント↑*/
html {
  overflow: auto;
  width: 100%;
}

body {
  font-size: 16px;
  font-family: "ヒラギノ角ゴ ProN",'Hiragino Kaku Gothic ProN','Hiragino Sans', Helvetica, sans-serif;
  color: #211b1d;
  overflow-x: hidden;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  body {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  body {
    width: 100%;
  }
}

/*タイトル共通部分*/
.title {
  z-index: 1;
  text-align: center;
  margin: 0 auto;
  width: 450px;
  font-size: 25px;
}

.title::before {
  content: "";
  -webkit-transform: skewX(15deg);
          transform: skewX(15deg);
  height: 92px;
  margin: 0 auto;
  z-index: -1;
  background-color: #576569;
}

/*タイトル共通ここまで*/
/* ヘッダー*/
.header {
  padding: 15px 0 5px;
  height: 60px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  position: fixed;
  z-index: 100;
  /*spハンバーガーメニュー*/
}

@media screen and (max-width: 768px) {
  .header {
    width: 100%;
  }
}

@media screen and (max-width: 700px) {
  .header {
    padding: 20px 0;
    height: 30px;
    background: #fff;
    position: fixed;
    z-index: 50;
  }
}

.header__nav {
  width: 70%;
  padding-right: 50px;
}

.header__logo {
  padding-left: 50px;
  width: 30%;
}

@media screen and (max-width: 700px) {
  .header__logo {
    padding-left: 15px;
  }
}

@media screen and (max-width: 1024px) {
  .header__logo-img {
    width: 170px;
  }
}

@media screen and (max-width: 700px) {
  .header__logo-img {
    width: 165px;
    width: 170px;
  }
}

.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media screen and (max-width: 700px) {
  .header__menu {
    display: none;
  }
}

.header__item {
  padding: 0 30px;
  text-align: center;
  padding-top: 5px;
  width: calc(100% / 7);
}

@media screen and (max-width: 1024px) {
  .header__item {
    padding-right: 50px;
  }
}

@media screen and (max-width: 700px) {
  .header__item {
    padding-right: 0;
    padding-top: 10px;
  }
}

.header__item-link {
  text-decoration: none;
  color: #333;
  font-size: 19px;
  font-weight: bold;
}

@media screen and (max-width: 700px) {
  .header__item-link {
    font-size: 20px;
  }
}

.header__item--bottom {
  font-size: 9px;
  font-weight: normal;
}

.header__wrapper {
  display: none;
}

@media screen and (max-width: 700px) {
  .header__wrapper {
    height: 100%;
    display: block;
    overflow-x: hidden;
    position: relative;
  }
  .header__overlay {
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
  }
  .header__overlay.open {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  .header__menu-trigger {
    display: inline-block;
    width: 36px;
    height: 28px;
    vertical-align: middle;
    cursor: pointer;
    position: fixed;
    top: 21px;
    right: 30px;
    z-index: 100;
  }
  .header__menu-trigger span {
    display: inline-block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #000;
    -webkit-transition: all .5s;
    transition: all .5s;
  }
  .header__menu-trigger.active span {
    background-color: #000;
  }
  .header__menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .header__menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(12px) rotate(-45deg);
            transform: translateY(12px) rotate(-45deg);
  }
  .header__menu-trigger span:nth-of-type(2) {
    top: 12px;
  }
  .header__menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .header__menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .header__menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-12px) rotate(45deg);
            transform: translateY(-12px) rotate(45deg);
  }
  .header__nav-sp {
    width: 100%;
    height: auto;
    background-color: #f6aeae;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    -webkit-transform: translateY(-115%);
            transform: translateY(-115%);
    -webkit-transition: all .5s;
    transition: all .5s;
    margin-top: 60px;
  }
  .header__nav-sp.open {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    margin-top: 60px;
  }
  .header__item-sp {
    text-align: center;
    border-bottom: 1px solid #fff;
    padding: 20px 0 15px;
  }
  .header__item-link-sp {
    color: #fff;
    text-align: center;
    font-size: 24px;
    text-decoration: none;
  }
  .header__item--right-sp {
    padding-left: 15px;
    font-size: 18px;
  }
}

.main {
  margin-top: 80px;
}

@media screen and (max-width: 700px) {
  .main {
    margin-top: 70px;
  }
}

.main-top {
  position: relative;
  width: 100%;
}

.main-top__back, .main-top__back2 {
  /*背景装飾*/
  position: absolute;
  height: 100%;
  width: 241px;
  top: -100px;
  right: 30%;
  z-index: -1;
  background-color: rgba(42, 62, 73, 0.5);
  -webkit-transform: skewX(-27deg) translateY(-300%);
          transform: skewX(-27deg) translateY(-300%);
  -webkit-transition: 1.5s all ease-in;
  transition: 1.5s all ease-in;
}

@media screen and (max-width: 1024px) {
  .main-top__back, .main-top__back2 {
    width: 220px;
    right: 7rem;
  }
}

@media screen and (max-width: 700px) {
  .main-top__back, .main-top__back2 {
    width: 43px;
    height: 203px;
    right: 3.5rem;
    top: 0;
  }
}

.main-top__back-active {
  -webkit-transform: skewX(-27deg) translateY(0);
          transform: skewX(-27deg) translateY(0);
}

.main-top__back2 {
  background: #F7D3C7;
  top: -100px;
  right: 10%;
  -webkit-transform: skewX(-27deg) translateY(-300%);
          transform: skewX(-27deg) translateY(-300%);
  -webkit-transition: 2s all ease-in;
  transition: 2s all ease-in;
  height: 100%;
}

@media screen and (max-width: 1024px) {
  .main-top__back2 {
    width: 120px;
    right: -6rem;
  }
}

@media screen and (max-width: 768px) {
  .main-top__back2 {
    width: 120px;
    right: -6rem;
  }
}

@media screen and (max-width: 700px) {
  .main-top__back2 {
    width: 190px;
    height: 470px;
    top: 0;
    right: -6rem;
    z-index: -6;
  }
}

.main-top__back2-active {
  -webkit-transform: skewX(-27deg) translateY(0);
          transform: skewX(-27deg) translateY(0);
}

.main-top__txt {
  font-size: 30px;
  letter-spacing: 0.05em;
  line-height: 1.5em;
  position: absolute;
  bottom: 43%;
  left: 19%;
  color: #211b1d;
  text-shadow: 7px 0px 5px #fff,-5px -5px 5px #fff;
  font-family: 'tbchibirgothicplusk-pro',"TBちび丸ゴシックPlusK",'M PLUS 1p',"ヒラギノ角ゴ ProN",'Hiragino Kaku Gothic ProN';
}

@media screen and (max-width: 700px) {
  .main-top__txt {
    font-size: 0.9rem;
    left: 5%;
    top: 22%;
    line-height: 1.8;
  }
}

.main-top__img {
  height: auto;
  width: 70%;
}

@media screen and (max-width: 700px) {
  .main-top__img {
    display: none;
  }
}

.main-top__img-sp {
  display: none;
}

@media screen and (max-width: 700px) {
  .main-top__img-sp {
    display: block;
    width: 100%;
  }
}

.main-top__img-wrap {
  position: relative;
  z-index: -5;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: 1s all ease-in;
  transition: 1s all ease-in;
}

.main-top__img-wrap-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.main-center {
  position: relative;
  width: 100%;
}

.main-center__img {
  position: absolute;
  top: -9rem;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: 1s all ease-in;
  transition: 1s all ease-in;
  width: 70%;
  height: auto;
}

@media screen and (max-width: 700px) {
  .main-center__img {
    display: none;
    width: 100%;
  }
}

.main-center__img-sp {
  display: none;
}

@media screen and (max-width: 700px) {
  .main-center__img-sp {
    display: block;
    position: absolute;
    top: -4rem;
    right: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: 1s all ease-in;
    transition: 1s all ease-in;
	  width: 100%;
  }
}

.main-center__img-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/*方針部分アニメーション*/
.scroll-top {
  opacity: 0;
  -webkit-transition: 1s all ease-in;
  transition: 1s all ease-in;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media screen and (max-width: 700px) {
  .scroll-top {
    -webkit-transform: none;
            transform: none;
  }
}

.SlideIn {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*ここまで*/
/*方針*/
.principle {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 23%;
  max-width: 1440px;
  height: 600px;
  margin: 24% auto 0;
  /*背景装飾*/
  /*背景装飾*/
}

@media screen and (max-width: 1024px) {
  .principle {
    margin-top: 20%;
  }
}

@media screen and (max-width: 700px) {
  .principle {
    background-color: #f7d2c6;
    width: 100%;
    height: auto;
    margin-top: 60%;
    margin-left: 0;
  }
}

.principle__back1 {
  position: absolute;
  -webkit-transform: skewX(15deg);
          transform: skewX(15deg);
  margin: 0 auto;
  top: 2rem;
  left: 0;
  right: 0;
  z-index: -1;
  background-color: #F7D3C7;
  width: 75%;
  height: 600px;
}

@media screen and (max-width: 700px) {
  .principle__back1 {
    display: none;
  }
}

.principle__back2 {
  position: absolute;
  -webkit-transform: skewX(-27deg) translateY(-100%);
          transform: skewX(-27deg) translateY(-100%);
  height: 480px;
  width: 178px;
  background: #2a3e43;
  z-index: -5;
  top: 2rem;
  right: 5%;
  opacity: 0;
  -webkit-transition: 1s all ease-in;
  transition: 1s all ease-in;
}

@media screen and (max-width: 1024px) {
  .principle__back2 {
    width: 100px;
    right: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .principle__back2 {
    width: 100px;
    right: 1rem;
  }
}

@media screen and (max-width: 700px) {
  .principle__back2 {
    display: none;
  }
}

.principle .SlideIn02 {
  opacity: 1;
  -webkit-transform: skewX(-27deg) translateY(0);
          transform: skewX(-27deg) translateY(0);
}

.principle__title {
  position: relative;
  color: #fff;
  font-size: 25px;
  top: 6rem;
  left: -3rem;
}

@media screen and (max-width: 700px) {
  .principle__title {
    width: 100%;
    left: 0;
  }
}

.principle__title::before {
  position: absolute;
  top: -20px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 275px;
}

.principle__title--bottom, .service__title--bottom, .member__title--bottom, .flow__title--bottom, .question__title--bottom, .contact__title--bottom {
  font-size: 16px;
}

.principle__wrap {
  padding-top: 15%;
  padding-left: 16%;
  width: 100%;
  padding-bottom: 5%;
}

@media screen and (max-width: 700px) {
  .principle__wrap {
    padding-top: 45%;
    padding-left: 0;
  }
}

.principle__txt {
  text-align: left;
  width: 80%;
  font-size: 1.2rem;
  line-height: 2.2;
  margin: 0 auto;
}

@media screen and (max-width: 700px) {
  .principle__txt {
    width: 85%;
    margin: 0 auto;
    line-height: 1.2;
    font-size: 18px;
  }
}

.principle__txt--bold {
  font-size: 1.7rem;
  font-weight: bold;
}

@media screen and (max-width: 700px) {
  .principle__txt--bold {
    font-size: 23px;
  }
}

.principle__txt:nth-of-type(2) {
  text-indent: 0.5em;
}

@media screen and (max-width: 700px) {
  .principle__txt:nth-of-type(2) {
    text-indent: 0;
  }
}

.principle__txt:nth-of-type(3) {
  text-indent: 1em;
  padding-top: 40px;
}

@media screen and (max-width: 700px) {
  .principle__txt:nth-of-type(3) {
    text-indent: 0;
  }
}

.principle__txt:nth-of-type(4) {
  text-indent: 1.5em;
}

@media screen and (max-width: 700px) {
  .principle__txt:nth-of-type(4) {
    text-indent: 0;
  }
}

.principle__txt:nth-of-type(5) {
  text-indent: 2em;
}

@media screen and (max-width: 700px) {
  .principle__txt:nth-of-type(5) {
    text-indent: 0;
    padding-bottom: 72px;
  }
}

.principle__btn {
  margin-top: 5.5rem;
  display: inline-block;
  background: #fff;
  text-decoration: none;
  color: black;
  padding: 15px 20px;
  -webkit-box-shadow: 0px 6px 9px 0px #a78480;
          box-shadow: 0px 6px 9px 0px #a78480;
}

/*サービス*/
.service {
  position: relative;
  max-width: 1440px;
  margin: 10rem auto 0;
}

.service__back1 {
  /*背景装飾*/
  content: "";
  position: absolute;
  -webkit-transform: skewX(-27deg) translateY(-100%);
          transform: skewX(-27deg) translateY(-100%);
  height: 70%;
  height: 1000px;
  width: 7%;
  background: #2a3e43;
  z-index: -5;
  top: -10rem;
  left: 9rem;
  opacity: 0;
  -webkit-transition: 1s all ease-in;
  transition: 1s all ease-in;
}

@media screen and (max-width: 700px) {
  .service__back1 {
    width: 53px;
    top: -19rem;
    left: 10rem;
  }
}

.service__back2 {
  /*背景装飾*/
  content: "";
  position: absolute;
  -webkit-transform: skewX(-27deg) translateY(-100%);
          transform: skewX(-27deg) translateY(-100%);
  height: 1000px;
  width: 9.3%;
  background: #fcece7;
  z-index: -5;
  top: -10rem;
  left: 14rem;
  opacity: 0;
  -webkit-transition: 1s all ease-in;
  transition: 1s all ease-in;
}

@media screen and (max-width: 700px) {
  .service__back2 {
    width: 134px;
    top: -10rem;
    left: 7.5rem;
  }
}

.service__SlideIn {
  opacity: 1;
  -webkit-transform: skewX(-27deg) translateY(0);
          transform: skewX(-27deg) translateY(0);
}

.service__title, .member__title {
  position: relative;
  color: #fff;
  font-size: 25px;
  top: -4rem;
  left: 0;
}

@media screen and (max-width: 700px) {
  .service__title, .member__title {
    width: 100%;
  }
}

.service__title::before, .member__title::before {
  position: absolute;
  top: -20px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 225px;
  background: #ee7f7f;
}

.service__lead, .flow__lead, .member__lead, .question__lead, .contact__lead {
  text-align: center;
  color: #211b1d;
  font-size: 18px;
  z-index: 5;
  position: relative;
}

@media screen and (max-width: 700px) {
  .service__lead, .flow__lead, .member__lead, .question__lead, .contact__lead {
    display: none;
  }
}

.service__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 40px 157px 87px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .service__list {
    width: 96%;
    margin: 40px auto 87px;
  }
}

@media screen and (max-width: 768px) {
  .service__list {
    width: 96%;
    margin: 40px auto 87px;
  }
}

@media screen and (max-width: 700px) {
  .service__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 auto;
  }
}

.service__card {
  width: 316px;
  height: 645px;
  background: #eeeeee;
  text-align: center;
}

@media screen and (max-width: 700px) {
  .service__card {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 67px;
    height: auto;
    padding-bottom: 32px;
  }
}

.service__card-title {
  font-size: 20px;
  color: #211b1d;
  padding: 20px 0 20px 15px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  background: pink;
  width: 272px;
  display: inline-block;
  padding: 17px 0;
  margin: 35px 18px;
  font-weight: bold;
}

@media screen and (max-width: 700px) {
  .service__card-title {
    width: 85%;
  }
}

.service__card-txt, .service__card-txt--bottom {
  width: 90%;
  margin: 0 auto;
  line-height: 1.3;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
}

.service__card-txt--bottom {
  padding-top: 45px;
  font-weight: normal;
}

@media screen and (max-width: 700px) {
  .service__card-txt--bottom {
    padding-top: 30px;
  }
}

.service__card-txt--bottom-center {
  padding-top: 18px;
}

@media screen and (max-width: 700px) {
  .service__card-txt--bottom-center {
    padding-top: 30px;
  }
}

.service__card-txt--bottom-bottom {
  padding-top: 65px;
}

@media screen and (max-width: 700px) {
  .service__card-txt--bottom-bottom {
    padding-top: 30px;
  }
}

.service__card-img {
  height: 235px;
  width: 100%;
}

@media screen and (max-width: 700px) {
  .service__card-img {
    width: 100%;
  }
}

/*流れ*/
.flow {
  position: relative;
  padding-top: 8rem;
}

.flow__back--main {
  content: "";
  position: absolute;
  -webkit-transform: skewX(-22deg);
          transform: skewX(-22deg);
  height: 686px;
  margin: 0 auto;
  top: -8rem;
  left: 0;
  right: 0;
  z-index: -1;
  background-color: #fcece7;
  width: 90%;
}

@media screen and (max-width: 700px) {
  .flow__back--main {
    display: none;
  }
}

.flow__back--right {
  position: absolute;
  height: 681px;
  width: 20%;
  background: #2a3e43;
  z-index: -2;
  top: -7.7rem;
  right: -4rem;
}

@media screen and (max-width: 700px) {
  .flow__back--right {
    display: none;
  }
}

.flow__back--left {
  position: absolute;
  height: 684px;
  width: 20%;
  background: #2a3e43;
  z-index: -5;
  top: 1px;
  left: -4rem;
  opacity: 0;
  -webkit-transition: 1s all ease-in;
  transition: 1s all ease-in;
}

@media screen and (max-width: 700px) {
  .flow__back--left {
    display: none;
  }
}

.flow__wrap {
  opacity: 0;
}

.flow__slide {
  -webkit-animation-name: flow__slide;
          animation-name: flow__slide;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes flow__slide {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes flow__slide {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.flow__slide02 {
  -webkit-animation-name: flow__slide02;
          animation-name: flow__slide02;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes flow__slide02 {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes flow__slide02 {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@media screen and (max-width: 700px) {
  .flow {
    background-image: none;
    background-color: #fae8e1;
  }
}

.flow__title, .question__title, .contact__title {
  position: relative;
  color: #fff;
  top: -3rem;
  left: 0;
}

@media screen and (max-width: 700px) {
  .flow__title, .question__title, .contact__title {
    width: 100%;
  }
}

.flow__title::before, .question__title::before, .contact__title::before {
  position: absolute;
  top: -20px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 192px;
  background: #576569;
}

@media screen and (max-width: 700px) {
  .flow__lead {
    width: 80%;
    margin: 0 auto;
    text-align: left;
    line-height: 1.3;
  }
}

.flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 39px;
  width: 70%;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .flow__list {
    width: 96%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .flow__list {
    width: 96%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 700px) {
  .flow__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }
}

.flow__item {
  width: 170px;
}

@media screen and (max-width: 700px) {
  .flow__item {
    margin: 0 auto;
    width: 90%;
  }
}

.flow__item-img {
  display: block;
  margin: 0 auto;
}

.flow__item-title {
  font-size: 16px;
  color: #fff;
  margin-top: 14px;
  border-radius: 20px;
  text-align: center;
  padding: 8px 20px;
  position: relative;
}

@media screen and (max-width: 700px) {
  .flow__item-title {
    width: 50%;
    padding: 8px 10px;
    margin: 14px auto 0;
  }
}

.flow__item-title::after, .flow__item-title--red::after, .flow__item-title--org::after, .flow__item-title--gray::after, .flow__item-title--blue::after, .flow__item-title--bk::after {
  position: absolute;
  content: '';
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 12px solid transparent;
  border-top: 17px solid black;
  width: 0;
  height: 0;
}

.flow__item-title--red {
  background: #ee7f7f;
}

.flow__item-title--red::after {
  border-top: 17px solid #ee7f7f;
}

.flow__item-title--org {
  background: #eeae7f;
}

.flow__item-title--org::after {
  border-top: 17px solid #eeae7f;
}

.flow__item-title--gray {
  background: #899da3;
}

.flow__item-title--gray::after {
  border-top: 17px solid #899da3;
}

.flow__item-title--blue {
  background: #467e8e;
}

.flow__item-title--blue::after {
  border-top: 17px solid #467e8e;
}

.flow__item-title--bk {
  background: #576569;
}

.flow__item-title--bk::after {
  border-top: 17px solid #576569;
}

.flow__item-txt {
  padding-top: 40px;
  font-size: 18px;
  line-height: 1.3;
}

@media screen and (max-width: 700px) {
  .flow__item-txt {
    width: 100%;
    padding-bottom: 30px;
  }
}

/*メンバー紹介*/
.member {
  height: 1200px;
  padding-top: 155px;
  position: relative;
  /*背景装飾*/
  /*背景装飾*/
}

@media screen and (max-width: 700px) {
  .member {
    width: 100%;
    height: auto;
  }
}

.member__back1 {
  position: absolute;
  -webkit-transform: skewX(-20deg) translateY(-100%);
          transform: skewX(-20deg) translateY(-100%);
  height: 1400px;
  width: 95px;
  background: #fcece7;
  z-index: -2;
  top: -1rem;
  left: 5rem;
  opacity: 0;
}

@media screen and (max-width: 700px) {
  .member__back1 {
    top: 0;
    left: -8rem;
  }
}

.member__back2 {
  position: absolute;
  -webkit-transform: skewX(-20deg) translateY(-100%);
          transform: skewX(-20deg) translateY(-100%);
  height: 1400px;
  width: 188px;
  background: #f7c9c9;
  z-index: -3;
  top: -2rem;
  right: 12rem;
  opacity: 0;
}

@media screen and (max-width: 700px) {
  .member__back2 {
    top: 62rem;
    left: 6rem;
    height: 1560px;
  }
}

.member__SlideIn {
  -webkit-animation-name: member__SlideIn;
          animation-name: member__SlideIn;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes member__SlideIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: skewX(-20deg) translateY(0);
            transform: skewX(-20deg) translateY(0);
  }
}

@keyframes member__SlideIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: skewX(-20deg) translateY(0);
            transform: skewX(-20deg) translateY(0);
  }
}

.member__title {
  top: -4.5rem;
}

@media screen and (max-width: 700px) {
  .member__title {
    width: 100%;
  }
}

.member__lead {
  line-height: 1.5;
}

@media screen and (max-width: 700px) {
  .member__lead {
    width: 73%;
    margin: 0 auto;
    line-height: 1.5;
    text-align: center;
  }
}

.member__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 65px 0 85px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .member__list {
    width: 96%;
    margin: 65px auto 85px;
  }
}

@media screen and (max-width: 768px) {
  .member__list {
    width: 96%;
    margin: 65px auto 85px;
  }
}

@media screen and (max-width: 700px) {
  .member__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
}

.member__list-wrap {
  width: 80%;
  margin: 0 auto;
}

@media screen and (max-width: 700px) {
  .member__list-wrap {
    width: 100%;
    margin: 65px auto 30px;
  }
}

.member__img {
  margin-bottom: 20px;
}

.member__name {
  padding-top: 5px;
}

@media screen and (max-width: 700px) {
  .member__name {
    padding-bottom: 42px;
    width: 100%;
  }
}

@media screen and (max-width: 700px) {
  .member__work {
    width: 100%;
  }
}

/*Q&A*/
.question {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  margin-top: 12px;
  /*背景装飾*/
  /*背景装飾*/
}

.question__wrap {
  background: url(img/q&aback.png) no-repeat;
  height: 100%;
  padding-bottom: 56px;
  opacity: 0;
  margin-left: 5rem;
  width: 100%;
}

@media screen and (max-width: 700px) {
  .question__wrap {
    background-image: none;
    background-color: #f7d2c6;
    margin-left: 0;
  }
}

.question__back1 {
  content: "";
  position: absolute;
  -webkit-transform: skewX(-20deg) translateY(-100%);
          transform: skewX(-20deg) translateY(-100%);
  height: 585px;
  width: 166px;
  background: #696b6c;
  z-index: -2;
  top: 0;
  right: 12rem;
  opacity: 0;
}

@media screen and (max-width: 1024px) {
  .question__back1 {
    right: -3rem;
  }
}

@media screen and (max-width: 768px) {
  .question__back1 {
    right: -3rem;
  }
}

@media screen and (max-width: 700px) {
  .question__back1 {
    display: none;
  }
}

.question__back2 {
  content: "";
  position: absolute;
  -webkit-transform: skewX(-23deg) translateY(-100%);
          transform: skewX(-23deg) translateY(-100%);
  height: 500px;
  width: 75px;
  background: #3f4041;
  z-index: -2;
  top: 5.5rem;
  left: 6.5rem;
  opacity: 0;
}

@media screen and (max-width: 700px) {
  .question__back2 {
    display: none;
  }
}

.question__slide1 {
  -webkit-animation-name: question__slide1;
          animation-name: question__slide1;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@media screen and (max-width: 700px) {
  .question__slide1 {
    display: none;
  }
}

.question__slide2 {
  -webkit-animation-name: question__slide2;
          animation-name: question__slide2;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@media screen and (max-width: 700px) {
  .question__slide2 {
    display: none;
  }
}

.question__title {
  top: 3.5rem;
  padding-right: 19rem;
}

@media screen and (max-width: 1024px) {
  .question__title {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .question__title {
    width: 100%;
  }
}

@media screen and (max-width: 700px) {
  .question__title {
    width: 100%;
  }
}

.question__title::before {
  right: 19rem;
}

.question__lead {
  margin-top: 7.5rem;
  text-align: left;
  padding-left: 30%;
  margin-bottom: 2rem;
}

@media screen and (max-width: 1024px) {
  .question__lead {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .question__lead {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
}

@media screen and (max-width: 700px) {
  .question__lead {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
}

/*question背景装飾アニメ*/
@-webkit-keyframes question__slide1 {
  0% {
    opacity: 0;
    -webkit-transform: skewX(-20deg) translateY(-100%);
            transform: skewX(-20deg) translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: skewX(-20deg) translateY(0);
            transform: skewX(-20deg) translateY(0);
  }
}
@keyframes question__slide1 {
  0% {
    opacity: 0;
    -webkit-transform: skewX(-20deg) translateY(-100%);
            transform: skewX(-20deg) translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: skewX(-20deg) translateY(0);
            transform: skewX(-20deg) translateY(0);
  }
}

@-webkit-keyframes question__slide2 {
  0% {
    opacity: 0;
    -webkit-transform: skewX(-23deg) translateY(-100%);
            transform: skewX(-23deg) translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: skewX(-23deg) translateY(0);
            transform: skewX(-23deg) translateY(0);
  }
}

@keyframes question__slide2 {
  0% {
    opacity: 0;
    -webkit-transform: skewX(-23deg) translateY(-100%);
            transform: skewX(-23deg) translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: skewX(-23deg) translateY(0);
            transform: skewX(-23deg) translateY(0);
  }
}

/*end*/
/*アコーディオン*/
.accbox {
  margin: 0 auto;
  padding: 0;
  max-width: 560px;
  /*最大幅*/
  text-align: left;
  height: 100%;
  padding-right: 100px;
  /*ラベル*/
  /*チェックは隠す*/
  /*中身を非表示にしておく*/
}

@media screen and (max-width: 1024px) {
  .accbox {
    margin-left: 350px;
  }
}

@media screen and (max-width: 700px) {
  .accbox {
    width: 85%;
    padding-top: 35%;
    margin: 0 auto;
    padding-right: 0;
  }
}

.accbox label {
  position: relative;
  display: block;
  margin: 1.5px 0;
  -webkit-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.6);
  padding: 9px 12px;
  font-size: 18px;
  color: #211b1d;
  font-weight: bold;
  background: #fff;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  padding-left: 54px;
  line-height: 1.3;
}

.accbox input {
  display: none;
}

.accbox .accshow {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  margin-bottom: 80px;
}

.accbox .accshow-last {
  margin-bottom: 0px;
}

.accbox__answer {
  padding: 21px 34px 24px 22px;
  line-height: 1.3;
}

@media screen and (max-width: 700px) {
  .accbox__answer {
    font-size: 18px;
  }
}

.accbox-label1 {
  position: relative;
  left: -6rem;
}

@media screen and (max-width: 700px) {
  .accbox-label1 {
    left: 0;
  }
}

.accbox-label2 {
  position: relative;
  left: -2rem;
}

@media screen and (max-width: 700px) {
  .accbox-label2 {
    left: 0;
  }
}

.accbox-label3 {
  position: relative;
  left: 3rem;
}

@media screen and (max-width: 700px) {
  .accbox-label3 {
    left: 0;
  }
}

/*クリックで中身表示*/
.cssacc:checked + .accshow {
  height: auto;
  padding: 5px;
  background: #fff;
  opacity: 1;
}

/*Qマーク*/
.q {
  background: #ee7f7f;
  display: inline-block;
  line-height: 2;
  text-align: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 30px;
  color: #211b1d;
  position: absolute;
  top: -14px;
  left: -14px;
  z-index: 10;
  -webkit-box-shadow: 0px 3px 11px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 3px 11px rgba(0, 0, 0, 0.6);
}

.q-2 {
  top: -1.2rem;
}

.q-3 {
  top: -1rem;
}

/*お問い合わせ*/
.contact {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  /*背景装飾*/
}

@media screen and (max-width: 700px) {
  .contact {
    width: 100%;
  }
}

.contact__wrap {
  background: url(img/contactback.png) no-repeat;
  height: 100%;
  opacity: 0;
}

@media screen and (max-width: 700px) {
  .contact__wrap {
    background-image: none;
    background-color: #d2cfd0;
  }
}

.contact__back {
  position: absolute;
  -webkit-transform: skewX(-24deg) translatey(-100%);
          transform: skewX(-24deg) translatey(-100%);
  height: 750px;
  width: 178px;
  background: #2a3e43;
  z-index: -2;
  top: 0;
  right: 5rem;
  opacity: 0;
}

@media screen and (max-width: 700px) {
  .contact__back {
    display: none;
  }
}

.contact__slide {
  -webkit-animation-name: contact__slide;
          animation-name: contact__slide;
  -webkit-animation-duration: 1.75s;
          animation-duration: 1.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@media screen and (max-width: 700px) {
  .contact__slide {
    display: none;
  }
}

.contact__title {
  top: 3.5rem;
  padding-right: 9rem;
}

@media screen and (max-width: 700px) {
  .contact__title {
    padding-right: 0;
    margin: 0 auto;
    width: 100%;
  }
}

.contact__title::before {
  right: 9rem;
  background: #ee7f7f;
  width: 293px;
}

@media screen and (max-width: 700px) {
  .contact__title::before {
    right: 0;
  }
}

.contact__lead {
  margin-top: 7.5rem;
  text-align: left;
  padding-left: 30%;
  margin-bottom: 2rem;
}

.contact__form {
  margin-top: 8.5rem;
  padding-bottom: 0px;
}

.contact__form-item {
  border: 1px solid #211b1d;
  width: 916px;
  margin: 0 auto;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: none;
}

@media screen and (max-width: 700px) {
  .contact__form-item {
    width: 100%;
    display: block;
    border: none;
  }
}

.contact__form-item--last {
  border-bottom: 1px solid #211b1d;
}

@media screen and (max-width: 700px) {
  .contact__form-item--last {
    border: none;
  }
}

.contact__form-item--left {
  width: 234px;
  background: #F7D3C7;
  display: inline-block;
  padding: 25px 0 25px 35px;
}

@media screen and (max-width: 700px) {
  .contact__form-item--left {
    padding: 25px 0;
    width: 100%;
    text-align: center;
    font-weight: bolder;
  }
}

.contact__form-input {
  height: 37px;
  margin: 17px 0 17px 17px;
}

@media screen and (max-width: 700px) {
  .contact__form-input {
    margin: 15px;
    width: 90%;
  }
}

.contact__form-label {
  font-size: 18px;
  line-height: 2;
}

@media screen and (max-width: 700px) {
  .contact__form-label {
    line-height: 2.5;
  }
}

.contact__form-label--center1 {
  line-height: 5;
}

@media screen and (max-width: 700px) {
  .contact__form-label--center1 {
    line-height: 0;
  }
}

.contact__form-label--center2 {
  line-height: 7;
}

@media screen and (max-width: 700px) {
  .contact__form-label--center2 {
    line-height: 0;
  }
}

.contact__form-checklist {
  display: block;
  font-size: 18px;
  margin-left: 17px;
}

@media screen and (max-width: 700px) {
  .contact__form-checklist {
    color: #8c7f84;
  }
}

.contact__form-checklist:first-of-type {
  margin-top: 17px;
  padding-bottom: 17px;
}

.contact__form-checklist:last-of-type {
  margin-bottom: 17px;
  padding-top: 17px;
}

@media screen and (max-width: 700px) {
  .contact__form-checklist:last-of-type {
    margin-bottom: 0;
    padding-bottom: 30px;
  }
}

.contact__form-textarea {
  width: 615px;
  height: 139px;
  margin: 17px 0 17px 17px;
}

@media screen and (max-width: 700px) {
  .contact__form-textarea {
    width: 90%;
    margin: 15px;
    height: 270px;
  }
}

.contact__form--bottom {
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
 padding: 24px 0;
}

.contact__form-btn--inner {
  color: #211b1d;
  text-decoration: none;
  background: #fff!important;
  padding: 12px 70px!important;
  text-align: center;
  margin: 0 auto;
  display: block;
	border: 1px solid #211b1d;
   cursor: pointer;
}

/*コンタクト背景装飾アニメ*/
@-webkit-keyframes contact__slide {
  0% {
    opacity: 0;
    -webkit-transform: skewX(-24deg) translateY(-100%);
            transform: skewX(-24deg) translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: skewX(-24deg) translateY(0);
            transform: skewX(-24deg) translateY(0);
  }
}
@keyframes contact__slide {
  0% {
    opacity: 0;
    -webkit-transform: skewX(-24deg) translateY(-100%);
            transform: skewX(-24deg) translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: skewX(-24deg) translateY(0);
            transform: skewX(-24deg) translateY(0);
  }
}

.main__bottom {
  background: #f7eae6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 90px 501px 90px 142px;
  width: 100%;
}

@media screen and (max-width: 700px) {
  .main__bottom {
    padding: 61px 0px 20px 75px;
    display: block;
  }
}

/*Linoahについて*/
.about {
  padding-right: 19rem;
}

@media screen and (max-width: 700px) {
  .about {
    padding-right: 0;
  }
}

.about__title, .contents__title {
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 700px) {
  .about__title, .contents__title {
    padding-right: 0;
  }
}

.about__list, .contents__list {
  padding-top: 25px;
}

@media screen and (max-width: 700px) {
  .about__list, .contents__list {
    padding-bottom: 55px;
  }
}

.about__item, .contents__item {
  font-size: 14px;
  line-height: 1.7;
}

/*コンテンツ*/
.contents__item-link {
  text-decoration: none;
  color: #211b1d;
}

/*footer*/
.footer {
  background: #f7eae6;
  width: 100%;
}

.footer__wrap {
  width: 100%;
}

.footer__txt {
  padding-bottom: 55px;
  font-size: 18px;
  font-weight: bold;
  text-align: right;
  padding-right: 142px;
}

@media screen and (max-width: 700px) {
  .footer__txt {
    padding-right: 0;
    text-align: center;
  }
}

/*topに戻るボタン*/
.top {
  display: none;
  position: fixed;
  bottom: 45px;
  right: 45px;
}

@media screen and (max-width: 700px) {
  .top {
    right: 10px;
  }
}

.top-img {
  border: 1px solid #211b1d;
  padding: 5px;
}

/*1.フェードインアニメーションの指定*/
.scrollanime {
  opacity: 0;
}

/*一瞬表示されるのを防ぐ*/
.fadeInDown {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

.slidewrap {
  opacity: 0;
}

.slideIn01 {
  -webkit-animation-name: slideIn01;
          animation-name: slideIn01;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes slideIn01 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideIn01 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/*sp改行brの消去*/
.br-sp {
  display: none;
}

@media screen and (max-width: 700px) {
  .br-none {
    display: contents;
  }
}
/*# sourceMappingURL=style.css.map */