@charset "UTF-8";

/*----------------------------
* 全体の設定
*----------------------------*/
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

/* ファーストビュー */
.start {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9000;
}

.start img {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
  width: 50%;
}

/* header */
header {
  width: 100%;
  height: 80px;
  background-color: #702f8e;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

header h1 {
  font-size: 32px;
}

header a {
  color: #fff;
  text-decoration: none;
}

header ul {
  display: flex;
  align-items: center;
  gap: 16px;
}

header ul a {
  cursor: pointer;
  padding: 8px;
  border-radius: 5px;
}

header ul a:hover {
  background-color: rgba(216, 216, 216, 0.3);
}

@media screen and (min-width: 880px) {
  .menu {
    display: none;
  }
}

/* main */
.slider-container {
  width: 100%;
  height: 100vh;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main_title {
  width: 56%;
  height: 300px;
}

.main_h1_title {
  display: block;
  margin: auto;
}

.main_title .main_h1_title h1 {
  height: 100%;
  font-size: 64px;
  margin: 50px auto;
}

.main_h1_title h1 span {
  display: flex;
  padding: 10px 40px;
  background-color: rgba(255, 253, 253, 0.8);
}

.main_h1_title h1 span:nth-child(even) {
  margin-top: 24px;
}

.smart_phone_trial {
  display: none;
}

/* main */
/*スクロールダウン全体の場所*/
.scroll_down {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 50%;
  bottom: 32px;
  /*全体の高さ*/
  height: 70px;
}

/*Scrollテキストの描写*/
.scroll_down span {
  /*描画位置*/
  position: absolute;
  left: -20px;
  top: -20px;
  /*テキストの形状*/
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

/* 線の描写 */
.scroll_down::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 40px;
  background: #fff;
  /*線の動き1.8秒かけて動く。永遠にループ*/
  -webkit-animation: pathmove 1.8s ease-in-out infinite;
  animation: pathmove 1.8s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@-webkit-keyframes pathmove {
  0% {
    height: 0;
    top: 70px;
    opacity: 0;
  }

  30% {
    height: 40px;
    opacity: 1;
  }

  100% {
    height: 0;
    top: 0px;
    opacity: 0;
  }
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 70px;
    opacity: 0;
  }

  30% {
    height: 40px;
    opacity: 1;
  }

  100% {
    height: 0;
    top: 0px;
    opacity: 0;
  }
}

/* section */
/* section title */
.section_title {
  width: 100%;
  padding: 48px 0px;
}

.section_title h1 {
  font-size: 32px;
  text-align: center;
}

.section_span {
  border-bottom: solid 5px #702f8e;
}

/* 敬語・Englishとは section */
.section_about {
  width: 100%;
  height: 320px;
  background-color: #f9fafc;
}

.what_sevice {
  font-size: 20px;
  line-height: 1.5em;
  width: 36%;
  margin: auto;
}

/* こんな方におすすめ section */
.section_recommend {
  width: 100%;
  height: 100%;
  background-color: #e5e9f2;
  padding-bottom: 40px;
}

.oneArea {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 60%;
  margin: 10px auto;
  padding: 0 10px;
}

.oneArea .onebox {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.oneArea .onebox:nth-child(even) {
  flex-direction: row-reverse;
  margin: 24px 0px;
}

.avator_01 {
  position: relative;
}

.avator_01 img {
  height: 100px;
  width: 100px;
  border-radius: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  box-shadow: 0 0 5px gray;
}

.oneArea .onebox .fukiArea {
  margin-top: 24px;
}

.oneArea .onebox:nth-child(odd) .fukiArea {
  margin-left: 24px;
}

.oneArea .onebox:nth-child(even) .fukiArea {
  margin-right: 24px;
}

.oneArea .onebox .fukidasi {
  width: 100%;
  position: relative;
  padding: 20px;
  background-color: #fff;
  font-size: 18px;
  color: #231815;
  border-radius: 12px;
  box-sizing: border-box;
  box-shadow: 0 0 5px gray;
}

.oneArea .onebox .fukidasi::before {
  content: "";
  position: absolute;
  display: block;
  top: 20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 20px 10px 0;
  border-color: transparent #fff transparent transparent;
}

.oneArea .onebox:nth-child(odd) .fukidasi::before {
  left: -20px;
}

.oneArea .onebox:nth-child(even) .fukidasi::before {
  right: -20px;
  transform: rotate(180deg);
}

/* よくある質問 アコーディオン */
/* section_Ques */
.section_Ques {
  width: 100%;
  height: 100%;
  background-color: #f9fafc;
}

/* アコーディオン */
.accordion {
  display: block;
  position: relative;
  margin: auto;
  width: 720px;
  height: 100%;
  padding-bottom: 40px;
}

.accordion-item {
  margin-bottom: 24px;
  box-shadow: 0 0 8px gray;
}

.accordion-title {
  background-color: #702f8e;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  padding: 24px 16px;
}

.accordion-title:hover {
  opacity: 0.8;
}

.accordion-content {
  display: none;
  height: 100%;
  padding: 10px 20px;
  font-size: 20px;
  line-height: 1.5;
  background-color: #fff;
}

/* section トライアル */
.section_trial {
  width: 100%;
  height: 240px;
  background-color: #e5e9f2;
}

.trial_h2 {
  text-align: center;
  font-size: 24px;
  padding: 40px 0px 24px;
}

.trail_btn {
  margin-top: 16px;
}

a.trail_a {
  display: block;
  text-align: center;
  text-decoration: none;
  width: 170px;
  margin: auto;
  padding: 1rem 2.3rem;
  font-weight: bold;
  border-radius: 100vh;
  background: #702f8e;
  color: #fff;
  font-size: 18px;
}

a.trail_a:hover {
  opacity: 0.7;
}

/* 矢印 */
.accordion-title {
  position: relative;
}

.accordion-title::after {
  border-right: solid 2px #fff;
  border-top: solid 2px #fff;
  content: "";
  display: block;
  height: 8px;
  position: absolute;
  right: 25px;
  top: 38%;
  transform: rotate(135deg);
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  width: 8px;
}

.accordion-title.open::after {
  top: 45%;
  transform: rotate(-45deg);
}

/* footer */
footer {
  width: 100%;
  height: 320px;
  background-color: #702f8e;
}

footer .footer-title {
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  padding: 24px;
}

.footer-sns .sns-nav .sns-ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 16px;
}

.sns-ul .sns-li a {
  color: rgba(223, 222, 222, 0.9);
  font-size: 40px;
  text-decoration: none;
  cursor: pointer;
}

.sns-ul .sns-li a:hover {
  color: #fff;
}

.public-ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-top: 24px;
  gap: 10px;
}

.public-ul li a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 5px;
}

.public-ul li a:hover {
  background-color: rgba(216, 216, 216, 0.3);
}

.copy-title {
  font-size: 12px;
  color: #fff;
  margin-top: 30px;
  text-align: center;
}

/* スマホサイズ */
@media screen and (max-width: 880px) {

  /*　画面サイズが800px以下の場合ここの記述が適用される　*/
  header {
    display: none;
  }

  .menu {
    z-index: 1000;
    position: fixed;
    display: flex;
    left: 0;
    bottom: 0;
    padding: 8px 0;
    background-color: #fff;
    box-shadow: 0px -12px 7px -7px #777;
    width: 100%;
  }

  .menu li {
    width: 100%;
    margin: auto;
    text-align: center;
  }

  .menu li:hover {
    opacity: 0.8;
  }

  .menu li a {
    color: #702f8e;
    display: block;
  }

  .menu li a i {
    font-size: 28px;
  }

  .menu li a span {
    font-size: 14px;
  }

  /* ファーストビュー */
  .start img {
    width: 90%;
  }

  /* 敬語・Englishとは section */
  .section_about {
    width: 100%;
    height: 100%;
    background-color: #f9fafc;
  }

  .what_sevice {
    font-size: 20px;
    line-height: 1.5em;
    width: 80%;
    margin: auto;
    padding-bottom: 32px;
  }

  /* こんな方におすすめ section */
  .oneArea {
    width: 80%;
  }

  .oneArea .onebox {
    justify-content: center;
  }

  .oneArea .onebox .fukiArea {
    padding-top: 24px;
  }

  .oneArea .onebox:nth-child(odd) .fukiArea {
    margin: auto;
    display: block;
  }

  .oneArea .onebox:nth-child(even) .fukiArea {
    margin: auto;
    display: block;
  }

  .oneArea .onebox .fukidasi::before {
    content: "";
    position: absolute;
    display: block;
    margin-left: -15px;
    border: 15px solid transparent;
    border-bottom: 15px solid #fff;
  }

  .oneArea .onebox:nth-child(odd) .fukidasi::before {
    top: -30px;
    left: 50%;
  }

  .oneArea .onebox:nth-child(even) .fukidasi::before {
    top: -30px;
    left: 50%;
    transform: rotate(0deg);
  }

  /* アコーディオン */
  .accordion {
    display: block;
    position: relative;
    margin: auto;
    width: 90%;
    height: 100%;
    padding-bottom: 40px;
  }

  .accordion-item {
    margin-bottom: 24px;
    box-shadow: 0 0 8px gray;
  }

  .accordion-title {
    background-color: #702f8e;
    color: #fff;
    padding: 24px 16px;
    cursor: pointer;
    font-size: 16px;
  }

  .accordion-content {
    display: none;
    height: 100%;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 1.5;
    background-color: #fff;
  }

  /* 矢印 */
  .accordion-title {
    position: relative;
  }

  .accordion-title::after {
    border-right: solid 2px #fff;
    border-top: solid 2px #fff;
    content: "";
    display: block;
    height: 8px;
    position: absolute;
    right: 12px;
    top: 38%;
    transform: rotate(135deg);
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
    width: 8px;
  }

  .accordion-title.open::after {
    transform: rotate(-45deg);
    top: 45%;
  }

  /* section トライアル */
  .section_trial {
    height: 240px;
  }

  .trial_h2 {
    text-align: center;
    font-size: 20px;
    padding: 32px 0px 24px;
  }

  /* トライアル */
  .trail_btn {
    margin-bottom: 24px;
  }

  a.trail_a {
    padding: 1rem 2rem;
    font-size: 14px;
  }

  /* footer public */
  footer {
    padding-bottom: 100px;
  }

  .public-ul {
    text-align: center;
    display: block;
    list-style: none;
  }

  .public-ul li {
    color: #fff;
    margin: 16px 0px;
    text-decoration: none;
  }

  /* footer copy */
  .copy-title {
    font-size: 12px;
    color: #fff;
    margin-top: 30px;
    text-align: center;
  }
}

/*# sourceMappingURL=style.css.map */