@charset "UTF-8";
/* 上からフワッと表示 */
/* 下からフワッと表示 */
/* 右からフワッと表示 */
/* 左からフワッと表示 */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

img {
  width: 100%;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  transition: all 0.5s ease-out;
}
a:hover {
  opacity: 0.7;
}

ul,
ol {
  list-style: none;
}

.wrapper {
  padding: 0 3.5%;
}
@media (min-width: 768px) {
  .wrapper {
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .flex {
    display: flex;
  }
}

/*header
------------------------------------------------------------ */
::after,
::before {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

.wrapper1100 {
  margin: 0 auto;
  padding: 2% 5%;
}
@media (min-width: 768px) {
  .wrapper1100 {
    margin: 0 auto;
    padding: 2% 5%;
  }
}

/* 固定ヘッダー */
.header {
  background-color: #f3ecec;
  position: -webkit-sticky;
  position: sticky;
  z-index: 9999;
  top: 0;
  width: 100%;
  padding: 2%;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .header {
    padding: 1% 2%;
  }
}

.header__heading {
  max-width: 150px;
}
@media (min-width: 768px) {
  .header__heading {
    max-width: 200px;
  }
}

.hmg-wrapper {
  width: 36px;
  height: 100%;
}

#header__nav {
  display: none;
}
#header__nav.open {
  display: block;
  height: 100vh;
}
@media (min-width: 768px) {
  #header__nav {
    display: block;
  }
}

.gnav {
  display: none;
}
.nav__list {
  padding-top: 25%;
  padding-bottom: 100%;
  margin-top: 30vh;
}
@media (min-width: 768px) {
  .nav__list {
    padding-top: 3%;
    padding-bottom: 2%;
    margin-top: 0;
  }
}
.nav__item {
  text-align: center;
  padding-bottom: 5%;
}
@media (min-width: 768px) {
  .nav__item {
    margin-top: 3.5%;
    margin-right: 35px;
    padding-bottom: 0;
  }
}
.nav__link {
  text-decoration: none;
  color: #333333;
  font-size: 20px;
}
@media (min-width: 768px) {
  .nav__link {
    font-size: 15px;
    color: #333333;
  }
}
@media (min-width: 768px) {
  .nav__text {
    position: relative;
  }
}
.nav__text:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0%;
  height: 1px;
  background-color: #707070;
  transition: all 0.5s;
}
.nav__link:hover .nav__text:after {
  width: 100%;
}

/* ハンバーガーアイコン */
.hmg-btn {
  width: 45px;
  height: 45px;
  position: fixed;
  top: 10px;
  right: 20px;
  z-index: 30;
}
@media (min-width: 768px) {
  .hmg-btn {
    display: none;
  }
}

.hmg-btn button {
  width: 100%;
  height: 100%;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  cursor: pointer;
}

.hmg-btn button span {
  width: 100%;
  height: 2px;
  background-color: #e34658;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -30px;
  transition: all 0.3s;
}

.hmg-btn button span:nth-child(1) {
  transform: translate(0, -15px);
}

.hmg-btn button span:nth-child(3) {
  transform: translate(0, 15px);
}

.hmg-btn button:hover span:nth-child(3) {
  width: 100%;
}

.hmg-btn.close span:nth-child(1) {
  transform: rotate(-45deg);
}

.hmg-btn.close span:nth-child(2) {
  transform: rotate(45deg);
}

.hmg-btn.close span:nth-child(3) {
  opacity: 0;
}

.header__nav.open {
  opacity: 1;
  z-index: 10;
}

#hmg-wrapper.open {
  display: block;
  position: fixed;
  top: 125px;
  right: auto;
  left: 0px;
  bottom: 0;
  background: #f3f4f5;
  padding: 0 30px;
  z-index: 100;
  width: 100%;
  padding: 0;
}

.footer {
  background-color: #f3ecec;
  padding: 5%;
}
.footer__content {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.footer__logo {
  max-width: 200px;
  margin-bottom: 2%;
}
.footer__address {
  display: flex;
  justify-content: center;
}
.footer__copyright {
  text-align: center;
}

/*body
------------------------------------------------------------ */
body {
  font-size: 14px;
}
@media (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

.is-showl {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateX(-30px);
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: all 1s ease-out;
}

.is-showr {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: all 1s ease-out;
}

.element {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: all 1s ease-out;
}

/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.introduction {
  padding-top: 64px;
}
@media (min-width: 768px) {
  .introduction {
    padding-top: 100px;
  }
}
.introduction__big__conteiner {
  position: relative;
  padding-top: 10px;
}
.introduction__content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2%;
  padding: 3% 2%;
  border-radius: 30px;
  background-color: #f3ecec;
}
.introduction__inner__heading {
  display: block;
  text-align: center;
  font-size: 18px;
}
@media (min-width: 768px) {
  .introduction__inner__heading {
    font-size: 25px;
    font-weight: bold;
  }
}
@media (min-width: 768px) {
  .introduction__inner__heading__list--01 {
    padding-top: 50px;
  }
}
.introduction__inner__box {
  margin-bottom: 3rem;
}
.introduction__inner__text {
  font-size: 14px;
}
@media (min-width: 768px) {
  .introduction__inner__text {
    font-size: 18px;
  }
}
.introduction__inner__pic {
  display: flex;
  justify-content: center;
}
.introduction__inner__pic img {
  max-width: 80%;
}
@media (min-width: 768px) {
  .introduction__inner__pic img {
    max-width: 60%;
  }
}

.about {
  background-color: #f3ecec;
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 768px) {
  .about {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.about__heading {
  font-size: 45px;
  text-align: center;
}
.about__subheading {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__subheading::before, .about__subheading::after {
  border-top: 1px solid;
  content: "";
  width: 2em;
}
.about__subheading::before {
  margin-right: 1em;
}
.about__subheading::after {
  margin-left: 1em;
}
.about__subheading span {
  font-size: 13px;
}
.about__inner__list {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .about__inner {
    justify-content: center;
  }
}
.about__inner__pic {
  overflow: hidden;
  border-radius: 50%;
  background-color: #fff;
  max-width: 150px;
  height: 150px;
  margin: 0 auto;
  margin-top: 80px;
}
.about__inner__pic--01 {
  overflow: hidden;
  border-radius: 50%;
  background-color: #fff;
  max-width: 150px;
  height: 150px;
  margin: 0 auto;
  margin-top: 80px;
  padding-bottom: 10%;
  padding-top: 5%;
  padding-left: 3%;
  padding-right: 3%;
}
@media (min-width: 768px) {
  .about__inner__pic--01 {
    padding-bottom: 10%;
    padding-top: 15%;
    padding-left: 8%;
    padding-right: 8%;
  }
}
@media (min-width: 768px) {
  .about__inner__pic--01 img {
    min-height: 80px;
  }
}
.about__inner__heading {
  font-size: 16px;
  margin-top: 20px;
  text-align: center;
}

.service {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 768px) {
  .service {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.service__content__heading {
  font-size: 45px;
  text-align: center;
}
.service__content__subheading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.service__content__subheading::before, .service__content__subheading::after {
  border-top: 1px solid;
  content: "";
  width: 2em;
}
.service__content__subheading::before {
  margin-right: 1em;
}
.service__content__subheading::after {
  margin-left: 1em;
}
@media (min-width: 768px) {
  .service__content__subheading {
    margin-bottom: 70px;
  }
}
.service__content__subheading span {
  font-size: 14px;
}
@media (min-width: 768px) {
  .service__inner__list:first-child {
    padding-right: 5%;
  }
}
@media (min-width: 768px) {
  .service__inner__list:nth-child(2) {
    padding-right: 5%;
  }
}
@media (min-width: 768px) {
  .service__inner {
    display: flex;
    justify-content: center;
  }
}
.service__inner__list {
  margin-top: 100px;
}
@media (min-width: 768px) {
  .service__inner__list {
    margin-top: 0;
  }
}
.service__inner__heading {
  display: block;
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
}
.service__inner__pic {
  max-width: 240px;
  min-width: 240px;
  margin: 0 auto;
}
.service__inner__pic img {
  width: 100%;
  height: 150px;
  min-height: 150px;
}
.service__inner__txt {
  max-width: 200px;
  margin: 0 auto;
  margin-top: 20px;
}
.service__inner__txt p {
  font-size: 14px;
}

.works {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 768px) {
  .works {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.works__heading {
  font-size: 45px;
  text-align: center;
}
.works__subheading {
  margin-bottom: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.works__subheading::before, .works__subheading::after {
  border-top: 1px solid;
  content: "";
  width: 2em;
}
.works__subheading::before {
  margin-right: 1em;
}
.works__subheading::after {
  margin-left: 1em;
}
.works__subheading span {
  font-size: 14px;
}
.works__archive {
  list-style: none;
  padding-left: 0;
  display: flex;
}
@media (min-width: 768px) {
  .works__archive {
    justify-content: center;
    margin: 0 auto;
  }
}
.works__archive--list {
  margin-left: 10px;
}
.works__archive__bigbg {
  margin-bottom: 20px;
}
.works__archive__bg {
  max-width: 300px;
  height: auto;
  background-size: contain;
  overflow: hidden;
}
.works__archive__bg img {
  display: block;
  transition: 0.5s;
}
.works__archive__bg img:hover {
  transform: scale(1.1, 1.1);
}
.works__archive__title {
  text-align: center;
}

.slider-img {
  max-width: 300px;
  height: 190px;
}

.slider-img + .slider-img {
  margin-right: 20px;
}

/*body
------------------------------------------------------------ */
body {
  font-size: 14px;
}

.is-showl {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateX(-30px);
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: all 1s ease-out;
}

.is-showr {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: all 1s ease-out;
}

.element {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: all 1s ease-out;
}

/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.result {
  padding-top: 100px;
  padding-bottom: 100px;
}
.result__heading {
  text-align: center;
  margin-bottom: 15px;
  font-size: 45px;
}
.result__subheading {
  font-size: 13px;
  margin-bottom: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.result__subheading::before, .result__subheading::after {
  border-top: 1px solid;
  content: "";
  width: 2em;
}
.result__subheading::before {
  margin-right: 1em;
}
.result__subheading::after {
  margin-left: 1em;
}
@media (min-width: 768px) {
  .result__container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.result__archive {
  text-align: center;
}
.result__archive--list {
  margin: 0px 15px 50px;
}
.result__archive__bigbg {
  margin-left: auto;
  margin-right: auto;
}
.result__archive__bg img {
  max-width: 280px;
  height: 193px;
}
.result__archive__inner {
  font-size: 14px;
}

/*body
------------------------------------------------------------ */
body {
  font-size: 14px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
}
@media (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

.is-showl {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateX(-30px);
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: all 1s ease-out;
}

.is-showr {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: all 1s ease-out;
}

.element {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: all 1s ease-out;
}

/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.web {
  padding-top: 64px;
}
@media (min-width: 768px) {
  .web {
    padding-top: 100px;
  }
}
.web__service__heading {
  text-align: center;
  font-size: 45px;
}
.web__service__subheading {
  text-align: center;
  margin-bottom: 50px;
}
.web__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.web__heading::before, .web__heading::after {
  border-top: 1px solid;
  content: "";
  width: 2em;
}
.web__heading::before {
  margin-right: 1em;
}
.web__heading::after {
  margin-left: 1em;
}
@media (min-width: 768px) {
  .web__heading {
    margin-bottom: 100px;
  }
}
.web__title {
  margin-bottom: 30px;
  font-size: 18px;
}
@media (min-width: 768px) {
  .web__container {
    margin: 50px auto 55px;
    max-width: 1000px;
  }
}
.web__inner {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .web__inner {
    margin: 50px auto 50px;
    justify-content: space-around;
  }
}
.web__figure {
  max-width: 500px;
  margin-bottom: 50px;
  display: none;
}
@media (min-width: 768px) {
  .web__figure {
    display: block;
    margin: 0 50px 0 0px;
    max-width: 350px;
  }
}
.web__figure--small {
  display: block;
  max-width: 500px;
}
@media (min-width: 768px) {
  .web__figure--small {
    display: none;
    margin: 0 50px 0 0px;
    max-width: 260px;
  }
}
.web__txt {
  margin-bottom: 100px;
}
@media (min-width: 768px) {
  .web__txt {
    max-width: 500px;
  }
}
.web__txt p {
  font-size: 14px;
}
@media (min-width: 768px) {
  .web__txt p {
    font-size: 16px;
  }
}
.web__detail {
  margin-top: 30px;
  max-width: 500px;
}

.development {
  padding-top: 64px;
}
.development__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.development__heading::before, .development__heading::after {
  border-top: 1px solid;
  content: "";
  width: 2em;
}
.development__heading::before {
  margin-right: 1em;
}
.development__heading::after {
  margin-left: 1em;
}
@media (min-width: 768px) {
  .development__heading {
    margin-bottom: 100px;
  }
}
.development__title {
  margin-bottom: 30px;
  font-size: 18px;
}
@media (min-width: 768px) {
  .development__container {
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
  }
}
.development__inner {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .development__inner {
    margin: 50px auto 50px;
    justify-content: space-around;
  }
}
.development__figure {
  max-width: 500px;
  margin-bottom: 50px;
  display: none;
}
@media (min-width: 768px) {
  .development__figure {
    display: block;
    margin: 0 50px 0 0px;
    max-width: 350px;
  }
}
.development__figure--small {
  display: block;
  max-width: 500px;
}
@media (min-width: 768px) {
  .development__figure--small {
    display: none;
    margin: 0 50px 0 0px;
    max-width: 260px;
  }
}
.development__txt {
  margin-bottom: 100px;
}
@media (min-width: 768px) {
  .development__txt {
    max-width: 500px;
  }
}
.development__txt p {
  font-size: 14px;
}
@media (min-width: 768px) {
  .development__txt p {
    font-size: 16px;
  }
}
.development__detail {
  margin-top: 30px;
  max-width: 500px;
}

.marketing {
  padding-top: 64px;
}
.marketing__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.marketing__heading::before, .marketing__heading::after {
  border-top: 1px solid;
  content: "";
  width: 2em;
}
.marketing__heading::before {
  margin-right: 1em;
}
.marketing__heading::after {
  margin-left: 1em;
}
@media (min-width: 768px) {
  .marketing__heading {
    margin-bottom: 100px;
  }
}
.marketing__title {
  margin-bottom: 30px;
  font-size: 18px;
}
@media (min-width: 768px) {
  .marketing__container {
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
  }
}
.marketing__inner {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .marketing__inner {
    margin: 50px auto 50px;
    justify-content: space-around;
  }
}
.marketing__figure {
  max-width: 500px;
  margin-bottom: 50px;
  display: none;
}
@media (min-width: 768px) {
  .marketing__figure {
    display: block;
    margin: 0 50px 0 0px;
    max-width: 350px;
  }
}
.marketing__figure--small {
  display: block;
  max-width: 500px;
}
@media (min-width: 768px) {
  .marketing__figure--small {
    display: none;
    margin: 0 50px 0 0px;
    max-width: 260px;
  }
}
.marketing__txt {
  margin-bottom: 100px;
}
@media (min-width: 768px) {
  .marketing__txt {
    max-width: 500px;
  }
}
.marketing__txt p {
  font-size: 14px;
}
@media (min-width: 768px) {
  .marketing__txt p {
    font-size: 16px;
  }
}
.marketing__detail {
  margin-top: 30px;
  max-width: 500px;
}

.btn__button {
  margin-top: 80px;
  margin-bottom: 100px;
}

.btn__button a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding: 25px 85px 25px 80px;
  border-radius: 30px;
  max-width: 300px;
  color: #333333;
  font-size: 18px;
  font-weight: 700;
  background-color: #e34658;
  color: #fff;
  transition: 0.3s;
  /*矢印が右に移動して背景がつく*/
  /*矢印と下線の形状*/
  /*hoverした際の移動*/
}
.btn__button a:hover {
  text-decoration: none;
  border: 1px solid #e34658;
  background-color: #fff;
  color: #e34658;
}
.btn__button a::before {
  content: "";
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  top: calc(50% - 0.1px);
  right: 1em;
  transform: translateY(calc(-50% - 2px)) rotate(30deg);
  /*下線の形状*/
  width: 10px;
  height: 2px;
  background-color: #fff;
  /*アニメーションの指定*/
  transition: 0.3s;
}
.btn__button a::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 50%;
  right: 1em;
  /*矢印の形状*/
  width: 30px;
  height: 2px;
  background-color: #fff;
  /*アニメーションの指定*/
  transition: 0.3s;
}
.btn__button a:hover::before, .btn__button a:hover::after {
  right: 0.5em;
  background-color: #e34658;
}

.btn__button span {
  font-size: 20px;
}

/*body
------------------------------------------------------------ */
body {
  font-size: 14px;
}
@media (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

.company {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 768px) {
  .company {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.company__heading {
  text-align: center;
  margin-bottom: 15px;
  font-size: 45px;
}
.company__subheading {
  font-size: 13px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.company__subheading::before, .company__subheading::after {
  border-top: 1px solid;
  content: "";
  width: 2em;
}
.company__subheading::before {
  margin-right: 1em;
}
.company__subheading::after {
  margin-left: 1em;
}
@media (min-width: 768px) {
  .company__subheading {
    margin-bottom: 100px;
  }
}
.company__container {
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .company__container {
    justify-content: center;
  }
}
.company__philosophy {
  font-size: 20px;
  text-align: center;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .company__philosophy {
    font-size: 30px;
  }
}
@media (min-width: 768px) {
  .company__circle__inner {
    width: 100%;
  }
}
.company__circle__inner:nth-child(2) {
  width: 100%;
}
@media (min-width: 768px) {
  .company__circle__inner:nth-child(2) {
    width: 50%;
  }
}
.company__circle__inner:nth-child(3) {
  width: 100%;
}
@media (min-width: 768px) {
  .company__circle__inner:nth-child(3) {
    width: 50%;
  }
}
.company__circle__heading {
  color: #e34658;
  margin-bottom: 5%;
}
.company__circle--top {
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 20px;
  border-radius: 50%;
  background-color: #efe0ff;
  min-width: 300px;
  width: 20vw;
  margin: 0 auto;
  margin-bottom: 10%;
}
@media (min-width: 768px) {
  .company__circle--top {
    left: 50%;
    margin-bottom: 5%;
  }
}
.company__circle--right {
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 20px;
  border-radius: 50%;
  background-color: #efe0ff;
  min-width: 300px;
  width: 20vw;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 10%;
}
@media (min-width: 768px) {
  .company__circle--right {
    margin-right: 10%;
  }
}
.company__circle--left {
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 20px;
  border-radius: 50%;
  background-color: #efe0ff;
  min-width: 300px;
  width: 20vw;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .company__circle--left {
    margin-left: 10%;
  }
}

.company__map {
  display: flex;
  justify-content: center;
}

.about-us {
  padding-top: 100px;
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .about-us {
    padding-top: 200px;
    padding-bottom: 50px;
  }
}
.about-us__title {
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .about-us__title {
    margin-bottom: 56px;
  }
}
.about-us__title--tlt {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-us__title--tlt::before, .about-us__title--tlt::after {
  border-top: 1px solid;
  content: "";
  width: 2em;
}
.about-us__title--tlt::before {
  margin-right: 1em;
}
.about-us__title--tlt::after {
  margin-left: 1em;
}
@media (min-width: 768px) {
  .about-us__title--tlt {
    font-size: 2rem;
  }
}
.about-us__title--txt {
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .about-us__title--txt {
    font-size: 1.5rem;
  }
}
.about-us__item {
  padding: 0 32px;
}
@media (min-width: 768px) {
  .about-us__item {
    justify-content: space-around;
    border-bottom: 1px solid #707070;
    margin-top: 80px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 8px;
  }
}
.about-us__item_dt--01 {
  font-weight: bold;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .about-us__item_dt--01 {
    margin-bottom: 24px;
    margin-bottom: 0;
    width: 110px;
    text-align: right;
    line-height: 2;
  }
}
.about-us__item_dd--01 {
  line-height: 2;
  margin-bottom: 56px;
  border-bottom: 1px solid #707070;
}
@media (min-width: 768px) {
  .about-us__item_dd--01 {
    width: 550px;
    border-bottom: none;
    margin-bottom: 0;
    margin-left: 10%;
  }
}
@media (min-width: 768px) {
  .about-us__item_dd--span {
    margin-left: 3%;
  }
}

.btn__button {
  margin-top: 30px;
  margin-bottom: 100px;
}

.btn__button a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding: 25px 85px 25px 80px;
  border-radius: 30px;
  max-width: 300px;
  color: #333333;
  font-size: 18px;
  font-weight: 700;
  background-color: #e34658;
  color: #fff;
  transition: 0.3s;
  /*矢印が右に移動して背景がつく*/
  /*矢印と下線の形状*/
  /*hoverした際の移動*/
}
.btn__button a:hover {
  text-decoration: none;
  border: 1px solid #e34658;
  background-color: #fff;
  color: #e34658;
}
.btn__button a::before {
  content: "";
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  top: calc(50% - 0.1px);
  right: 1em;
  transform: translateY(calc(-50% - 2px)) rotate(30deg);
  /*下線の形状*/
  width: 10px;
  height: 2px;
  background-color: #fff;
  /*アニメーションの指定*/
  transition: 0.3s;
}
.btn__button a::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 50%;
  right: 1em;
  /*矢印の形状*/
  width: 30px;
  height: 2px;
  background-color: #fff;
  /*アニメーションの指定*/
  transition: 0.3s;
}
.btn__button a:hover::before, .btn__button a:hover::after {
  right: 0.5em;
  background-color: #e34658;
}

.btn__button span {
  font-size: 20px;
}

.is-showl {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateX(-30px);
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: all 1s ease-out;
}

.is-showr {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: all 1s ease-out;
}

.element {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: all 1s ease-out;
}

/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/*body
------------------------------------------------------------ */
body {
  font-size: 14px;
}
@media (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

.contact {
  padding-top: 100px;
  padding-bottom: 100px;
}
.contact__heading {
  padding-top: 100px;
  font-size: 45px;
  text-align: center;
  margin-bottom: 15px;
}
.contact__subheading {
  font-size: 13px;
  margin-bottom: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__subheading::before, .contact__subheading::after {
  border-top: 1px solid;
  content: "";
  width: 2em;
}
.contact__subheading::before {
  margin-right: 1em;
}
.contact__subheading::after {
  margin-left: 1em;
}

.top {
  background: #ddd6d6;
  padding-top: 100px;
  padding-bottom: 80px;
  text-align: center;
  font-size: 15px;
  line-height: 2.4;
  margin-bottom: 100px;
}
@media (min-width: 768px) {
  .top {
    font-size: 18px;
  }
}
.top__sp {
  display: block;
}
.top__sec {
  border: 1px solid;
  border-radius: 50px;
  padding: 20px 20px;
  max-width: 250px;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .top__sec {
    max-width: 600px;
  }
}
.top__sec__txtsp {
  margin-bottom: 20px;
}
.top__sec__triangle {
  margin: 0 auto;
  background-color: #333;
  height: 50px;
  width: 50px;
  -webkit-clip-path: polygon(50% 35%, 0 0, 100% 0);
          clip-path: polygon(50% 35%, 0 0, 100% 0);
}

#contact {
  font-size: 0.875rem;
  color: #333333;
}
@media (min-width: 768px) {
  #contact {
    font-size: 1rem;
  }
}

.top__img {
  position: relative;
}

.top__desktop {
  display: none;
}
@media (min-width: 768px) {
  .top__desktop {
    display: block;
    margin-top: 100px;
  }
}

.top__mobile {
  display: block;
  margin-top: 60px;
}
@media (min-width: 768px) {
  .top__mobile {
    display: none;
  }
}

.page-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  font-weight: normal;
}
@media (min-width: 768px) {
  .page-title {
    font-size: 3rem;
  }
}

.contact {
  background-color: #f3ecec;
  margin-top: 88px;
}
@media (min-width: 768px) {
  .contact {
    margin-top: 176px;
  }
}
.contact__wrapper {
  padding: 20px 8%;
}
@media (min-width: 768px) {
  .contact__wrapper {
    margin: 0 auto;
  }
}
.contact__first {
  text-align: center;
  margin-bottom: 88px;
  display: flex;
  flex-direction: column;
}
.contact__subtitle {
  margin-bottom: 88px;
}
.contact__counseling {
  text-align: center;
  margin-bottom: 48px;
  font-size: 1.5rem;
  font-weight: normal;
}
@media (min-width: 768px) {
  .contact__counseling {
    font-size: 2rem;
  }
}
.contact__free {
  color: #e34658;
}
.contact__txt {
  font-size: 0.875rem;
  margin: 0 auto;
  text-align: left;
}
.contact__txt a {
  text-decoration: underline;
}

.form__dl_inner {
  margin-bottom: 56px;
}
.form__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.form__grid--w {
  grid-column: span 6;
}
.form__dd {
  grid-column: span 3;
  height: 40px;
  line-height: 40px;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .form__dd {
    font-size: 1.125rem;
  }
  .form__dd:nth-of-type(odd) {
    grid-column: span 2;
  }
}
.form__dd--ml {
  margin-left: 4px;
  font-size: 14px;
}
@media (min-width: 768px) {
  .form__dd--ml {
    margin-left: 8px;
  }
}
.form__category {
  font-size: 1.125rem;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .form__category {
    font-size: 1.5rem;
  }
}
.form__required {
  color: #fff;
  background: #a63e3e;
  margin-left: 1rem;
  padding: 4px 8px;
  font-size: 0.875rem;
  border-radius: 5px;
}

dl {
  max-width: 800px;
  margin: 0 auto;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #707070;
  border-radius: 5px;
  padding: 16px;
  font-size: 1.125rem;
}

textarea {
  height: 300px;
}

#privacypolicy {
  background: #f3ecec;
  border-radius: 0px;
}

select {
  text-align: left;
  background: #f3ecec;
  border: 1px solid #707070;
  border-radius: 5px;
  font-size: 1.125rem;
  padding: 8px 16px;
}
@media (min-width: 768px) {
  select {
    font-size: 1.5rem;
  }
}

input[type=submit] {
  font-family: "Zen Maru Gothic", sans-serif;
  border-radius: 20px;
  display: block;
  text-align: center;
  margin: 0 auto 88px;
  font-size: 1.25rem;
  color: #fff;
  background: #e34658;
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: 5px solid #642817;
  width: 180px;
  height: 56px;
  font-weight: 500;
  transition: all 0.3s;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3), inset 0 -3em 3em rgba(0, 0, 0, 0.1), 0.3em 0.3em 1em rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  input[type=submit] {
    font-size: 1.5rem;
    width: 200px;
    height: 64px;
  }
}

input[type=submit]:hover {
  background: #76bece;
  border-bottom: 2px solid #642817;
  margin-top: 2px;
  opacity: 1;
}
@media (min-width: 768px) {
  input[type=submit]:hover {
    margin-top: 3px;
  }
}

.privacy {
  margin-top: 88px;
  margin-bottom: 88px;
  background-color: #fff;
}

.privacypolicy {
  max-width: 800px;
  margin: 0 auto;
  max-height: 300px;
  overflow: scroll;
  background: #f3ecec;
  border: 1px solid #707070;
  border-radius: 5px;
  padding: 4%;
}
.privacypolicy__counseling {
  margin-bottom: 48px;
}
.privacypolicy__item:not(:last-child) {
  margin-bottom: 48px;
}
.privacypolicy__item__title {
  font-size: 1.125rem;
  margin-bottom: 32px;
}
.privacypolicy__item__subtitle {
  margin-bottom: 16px;
}
.privacypolicy__item__desc {
  font-size: 0.875rem;
}
.privacypolicy__item ul {
  margin-top: 16px;
  margin-left: 20px;
}
.privacypolicy__item li {
  list-style-type: disc;
}

.contact__button {
  width: 60%;
  margin: 88px auto;
  position: relative;
  text-align: center;
}
.contact__button::before {
  position: absolute;
  pointer-events: none;
  top: -3px;
  left: -3px;
  width: 101%;
  height: 105%;
  content: "";
  border: 2px solid #707070;
}
@media (min-width: 450px) {
  .contact__button::before {
    top: -3px;
    left: -4px;
  }
}
@media (min-width: 768px) {
  .contact__button::before {
    top: -4px;
    left: -5px;
  }
}
@media (min-width: 900px) {
  .contact__button::before {
    top: -7px;
    left: -9px;
    border: 4px solid #707070;
  }
}
.contact__button a {
  color: #fff;
  width: 100%;
  display: block;
  position: relative;
  font-weight: 500;
  text-align: center;
  background: #76bece;
  font-size: 1rem;
  padding-top: 16px;
  padding-bottom: 16px;
  transition: all 0.3s;
}
@media (min-width: 450px) {
  .contact__button a {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
@media (min-width: 768px) {
  .contact__button a {
    padding-top: 32px;
    padding-bottom: 32px;
    font-size: 1.5rem;
  }
}
@media (min-width: 900px) {
  .contact__button a {
    font-size: 1.5rem;
    padding: 0;
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.contact__button a:hover {
  opacity: 0.6;
}

br {
  display: block;
}
@media (min-width: 768px) {
  br {
    display: none;
  }
}

.btn__button {
  margin-top: 80px;
  margin-bottom: 100px;
}

.btn__button a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding: 25px 85px 25px 80px;
  border-radius: 30px;
  max-width: 300px;
  color: #333333;
  font-size: 18px;
  font-weight: 700;
  background-color: #e34658;
  color: #fff;
  transition: 0.3s;
  /*矢印が右に移動して背景がつく*/
  /*矢印と下線の形状*/
  /*hoverした際の移動*/
}
.btn__button a:hover {
  text-decoration: none;
  border: 1px solid #e34658;
  background-color: #fff;
  color: #e34658;
}
.btn__button a::before {
  content: "";
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  top: calc(50% - 0.1px);
  right: 1em;
  transform: translateY(calc(-50% - 2px)) rotate(30deg);
  /*下線の形状*/
  width: 10px;
  height: 2px;
  background-color: #fff;
  /*アニメーションの指定*/
  transition: 0.3s;
}
.btn__button a::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 50%;
  right: 1em;
  /*矢印の形状*/
  width: 30px;
  height: 2px;
  background-color: #fff;
  /*アニメーションの指定*/
  transition: 0.3s;
}
.btn__button a:hover::before, .btn__button a:hover::after {
  right: 0.5em;
  background-color: #e34658;
}

.btn__button span {
  font-size: 20px;
}

.is-showl {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateX(-30px);
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: all 1s ease-out;
}

.is-showr {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: all 1s ease-out;
}

.element {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: all 1s ease-out;
}

/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}