:root {
  --main-color: #f7ff91;
  --sub-color: #d9e4e3;
  --green: #56bf9e;
  --light-green: #a5e4d8;
  --dark-green: #96a7a5;
  --gray: #f4f4f4;
}

html {
  font-size: 16px;
  font-family: Noto Sans JP, Roboto, sans-serif;
  scroll-behavior: smooth;
  padding-top: 48px;
}
@media (min-width: 768px) {
  html {
    padding-top: 104px;
  }
}

/* Noto Sans Japanes*/
@font-face {
  font-family: Zen Kaku Gothic;
  src: url("../font/NotoSansJP-Medium.ttf") format("woff");
  font-weight: 500;
}
@font-face {
  font-family: Zen Kaku Gothic;
  src: url("../font/NotoSansJP-Bold.ttf") format("woff");
  font-weight: 700;
}
@font-face {
  font-family: Zen Kaku Gothic;
  src: url("../font/NotoSansJP-Light.ttf") format("ttf");
  font-weight: 300;
}
@font-face {
  font-family: Zen Kaku Gothic;
  src: url("../font/NotoSansJP-Regular.ttf") format("ttf");
  font-weight: 400;
}
@font-face {
  font-family: Zen Kaku Gothic;
  src: url("../font/NotoSansJP-Black.ttf") format("ttf");
  font-weight: 900;
}

/* Montserrat */
@font-face {
  font-family: Montserrat;
  src: url("../font/Montserrat-VariableFont_wght.ttf") format("ttf");
}
.montserrat {
  font-family: Montserrat, Noto Sans JP, Roboto, sans-serif;
}

.wrapper {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.standard_title {
  text-align: center;
}
.standard_title .read {
  font-weight: 700;
  font-size: 30px;
  margin: 5px 0 30px;
}
.standard_title .montserrat {
  color: var(--dark-green);
  font-size: 16px;
}
@media (min-width: 768px) {
  .wrapper {
    max-width: 1120px;
    margin: 0 auto;
  }
  .standard_title .read {
    font-size: 40px;
    margin: 5px 0 45px;
  }
  .standard_title .montserrat {
    font-size: 16px;
  }
}


/* --------------------------------
　スクロール位置調整
-------------------------------- */
.sc {
  scroll-margin-top: 20px;
}
@media (min-width: 768px) {
  .sc {
    scroll-margin-top: 105px;
  }
  /* faq */
  .faq.sc {
    scroll-margin-top: 130px;
  }
}


/* --------------------------------
　固定CTA
-------------------------------- */
.buttom-cta {
  background-color: var(--main-color);
  padding: 6px 0;
  border-top: #000 solid 1px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.buttom-cta .wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.buttom-cta a {
  max-width: 167px;
  width: 100%;
  display: block;
}
.buttom-cta img {
  display: block;
  max-width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .buttom-cta {
    display: none;
  }
  .buttom-cta {
    padding: 20px 0;
    border-top: #060202 solid 3px;
  }
  .buttom-cta .wrapper {
    gap: 20px;
  }
  .buttom-cta a {
    max-width: 445px;
  }
}

/* --------------------------------
　CTA
-------------------------------- */
.cta {
  background-color: var(--main-color);
  background-image: url(../images/cta/back_sp.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 50px;
}
.cta .wrapper {
  position: relative;
  padding: 0;
  max-width: none;
}
.cta h4 {
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
}
.cta h4 .montserrat {
  font-size: 36px;
}
.cta h4 .min {
  font-size: 18px;
  margin-right: 5px;
}
.cta h4 .dot {
  position: relative;
}
.cta h4 .dot::after {
  content: "・・";
  position: absolute;
  left: 0;
  top: -20px;
  font-weight: 300;
}
.cta_buttons a {
  display: block;
  max-width: 315px;
  width: 100%;
  margin: 0 auto 15px;
}
.cta_buttons a:last-of-type {
  margin-bottom: 20px;
}
.cta_buttons a img {
  display: block;
  width: 100%;
}
.cta_decoration {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.cta_decoration img {
  width: 100%;
}

@media (min-width: 768px) {
  .cta {
    padding-top: 60px;
    background-image: url(../images/cta/back_pc.svg);
  }
  .cta .wrapper {
    max-width: 1120px;
  }
  .cta h4 {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .cta h4 .montserrat {
    font-size: 50px;
  }
  .cta h4 .min {
    font-size: 25px;
    margin-right: 10px;
  }
  .cta h4 .dot::after {
    top: -25px;
  }
  .cta_buttons a {
    max-width: 450px;
    margin-bottom: 15px;
  }
  .cta_buttons img {
    width: 100%;
    display: block;
  }
}
@media (min-width: 1020px) {
  .cta {
    padding: 60px 0;
  }
  .cta_decoration img {
    position: absolute;
    bottom: 0;
    width: 300px;
  }
  .cta_decoration picture:first-of-type img {
    left: 0;
  }
  .cta_decoration picture:last-of-type img {
    right: 0;
  }
}

/* --------------------------------
　メニューバー
-------------------------------- */
header {
  background: #fff;
  border-bottom: #000 solid 1px;
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 30px;
}
header .wrapper > img {
  width: 200px;
  display: block;
  position: relative;
  z-index: 999;
}
@media (min-width: 768px) {
  header .sp {
    display: none!important;
  }
  header {
    border-bottom: #000 solid 3px;
    padding: 15px 0;
    height: 105px;
    display: flex;
    align-items: center;
  }
  header .wrapper {
    max-width: none;
    padding-left: 40px;
  }
  header .wrapper > img {
    max-width: 200px;
    width: 100%;
    padding-right: 15px;
  }
  header .wrapper ul {
    display: flex;
    align-items: center;
    color: #07a18f;
    gap: 30px;
    font-size: 16px;
    text-align: left;
    font-weight: 700;
  }
  header .wrapper ul br {
    display: none;
  }
  header .buttons {
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }
  header .buttons img {
    width: 100%;
    max-width: 275px;
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  header .wrapper ul br {
    display: block;
  }
    header .wrapper ul {
    font-size: 14px;
    text-align: center;
    gap: 15px;
  }
}
@media (max-width: 767px) {
  header .pc {
    display: none!important;
  }
  header {
    padding: 5px 0;
  }
  header .wrapper {
    position: relative;
  }
  header .wrapper > img {
    width: 185px;
  }
  .hamburger {
    display: flex;
    width: 30px;
    height: 24px;
    position: absolute;
    top: 6px;
    
    right: 20px;
    z-index: 1001;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 6px;
  }
  .hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg);
    position: absolute;
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg);
    position: absolute;
  }

  .slide-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1000;
    padding: 80px 20px;
    transition: right 0.3s ease;
    background: linear-gradient(0deg, #f7ff91, #d9e4e3);
  }
  .slide-menu.open {
    right: 0;
  }

  .slide-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .slide-menu li {
    background: #fff;
    border-radius: 999svh;
    border: 1px solid #000;
    box-shadow: 1px 2px 0 #000;
  }
  .slide-menu a {
    padding: 10px 60px 10px 20px;
    display: block;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    position: relative;
  }
  .slide-menu a::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(../images/header/arrrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 20px;
    top: calc((100% - 20px) / 2);
  }

  .menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  .menu-overlay.open {
    display: block;
  }
}

/* --------------------------------
　メインビジュアル
-------------------------------- */
.mv img {
  display: block;
  margin: 0 auto;
  width: 100%;
}
.mv_pc {
  display: none;
}
.mv_head {
  width: 100%;
  padding: 13px 0;
  background-color: var(--green);
}
.mv_head img {
  max-width: 345px;
}
.mv_body {
  padding-top: 23px;
  width: 100%;
  background-image: url(../images/mv/back_sp.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.mv_sp .mv_point img {
  max-width: 345px;
}
.mv_sp .mv_point h3 {
  margin-top: 15px;
}
.mv_sp .mv_mainimage img {
  margin: 0 auto 23px;
  max-width: 345px;
}
.mv_sp .mv_text h2 img {
  max-width: 309px;
}
.mv_sp .mv_text h1 img {
  max-width: 316px;
  margin-top: 20px;
}
.mv_cta .cta {
  background: none;
  padding-top: 30px;
}
.mv_cta .cta h4 {
  margin-bottom: 10px;
  font-size: 22px;
}
.mv_cta .cta h4 .montserrat {
  font-size: 28px;
}
.mv_cta .cta h4 .dot::after {
  top: -15px;
}
.mv_cta .cta h4 .min {
  font-size: 16px;
}
.mv_cta a:first-of-type {
  margin-bottom: 15px;
  display: block;
}
.mv_cta a img {
  max-width: 345px;
}
@media (min-width: 768px) {
  .mv_pc {
    display: flex;
    gap: 65px;
  }
  .mv_sp {
    display: none;
  }
  .mv_head {
    padding: 12px 0;
    background-color: var(--green);
  }
  .mv_head img {
    max-width: 345px;
  }
  .mv_body {
    background-image: url(../images/mv/back_pc.svg);
    padding-top: 0;
  }
  .mv-left {
    max-width: 405px;
    width: calc(100% - 65px);
    padding: 60px 0 80px 45px;
  }
  .mv_text h2 img {
    max-width: 338px;
  }
  .mv_text h1 img {
    max-width: 347px;
    margin-top: 25px;
  }
  .mv_cta .cta {
    padding: 25px 0 10px;
  }
  .mv_cta .cta h4 {
    font-size: 32px;
    text-align: left;
  }
  .mv_cta .cta h4 .montserrat {
    font-size: 35px;
  }
  .mv_cta .cta h4 .min {
    font-size: 22px;
  }
  .mv_cta .cta h4 .dot::after {
    top: -20px;
  }
  .mv_cta a img {
    max-width: 360px;
  }
  .mv_cta a:first-of-type {
    margin-bottom: 10px;
  }
  .mv_right {
    padding-top: 80px;
    max-width: calc(100% - 340px);
    width: 100%;
    position: relative;
  }
  .mv_point {
    max-width: 330px;
    width: 60%;
    position: absolute;
    bottom: 260px;
    right: 0;
  }
  .mv_point h3 {
    margin-top: 15px;
  }
  .mv_mainimage {
    width: 70%;
    max-width: 455px;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
@media (min-width: 768px) and (max-width: 1050px) {
  .mv_cta .cta h4 {
    font-size: 29px;
  }
  .mv_cta .cta h4 .montserrat {
    font-size: 31px;
  }
  .mv_cta .cta h4 .min {
    font-size: 19px;
  }
  .mv_pc {
    gap: 40px;
  }
  .mv_point {
    top: 20%;
    bottom: auto;
    width: 50%;
  }
  .mv_mainimage {
    bottom: 16%;
  }
}

/* --------------------------------
　お悩み
-------------------------------- */
.worries_head {
  background: linear-gradient(0deg, #f4f4f4, #fff);
  padding: 60px 0 30px;
}
.worries_head img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 323px;
}
.worries_body {
  background-color: var(--gray);
}
.worries_body .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.worries_body a,
.worries_body img {
  display: block;
  width: 100%;
}
.worries_body a {
  max-width: 345px;
}
.worries_foot {
  background-color: var(--sub-color);
  margin-bottom: -1px;
}
.worries_foot img {
  width: 100%;
}
@media (min-width: 768px) {
  .worries_head {
    padding: 80px 0 30px;
  }
  .worries_head img {
    max-width: 574px;
  }
  .worries_body {
    padding-bottom: 60px;
  }
  .worries_body .wrapper {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }
  .worries_body a {
    max-width: calc((100% - 80px) / 3);
  }
}

/* --------------------------------
　解決
-------------------------------- */
.solve {
  background: linear-gradient(0deg, #f7ff91, #d9e4e3);
  padding: 60px 0 0;
}
.solve_title img {
  display: block;
  margin: 0 auto 45px;
  max-width: 260px;
  width: 100%;
}
.solve_item {
  margin-bottom: 40px;
  scroll-margin-top: 80px;
}
.solve_item:last-of-type {
  margin-bottom: 35px;
}
.solve_item img {
  display: block;
  width: 100%;
  max-width: 345px;
  margin: 0 auto;
}
.solve_arrow img {
  display: block;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .solve {
    padding: 80px 0 0;
  }
  .solve_title img {
    margin: 0 auto 80px;
    max-width: 354px;
  }
  .solve_item {
    margin-bottom: 60px;
    scroll-margin-top: 130px;
  }
  .solve_item:last-of-type {
    margin-bottom: 42px;
  }
  .solve_item img {
    max-width: none;
  }
}

/* --------------------------------
　料金体系
-------------------------------- */
.price {
  background-image: url(../images/price/back_sp.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-top: #000 solid 3px;
  padding: 60px 0;
}
.price .standard_title .montserrat {
  color: #000;
}
.price .standard_title .read {
  margin-bottom: 0;
}
.price .standard_title span {
  margin: 10px auto 30px;
  display: block;
  width: 40px;
  border-bottom: #000 solid 2px;
}
.price_free img {
  display: block;
  margin: 0 auto 40px;
  max-width: 203px;
}
.price_flex {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}
.price_flex img {
  display: block;
  max-width: 345px;
  width: 100%;
}
.price_note {
  display: none;
}
@media (min-width: 768px) {
  .price {
    background-image: url(../images/price/back_pc.svg);
    padding: 80px 0;
  }
  .price .standard_title span {
    margin: 20px auto 60px;
    width: 67px;
    border-bottom: #000 solid 5px;
  }
  .price_free img {
    margin: 0 auto 30px;
    max-width: 315px;
  }
  .price_flex {
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
  }
  .price_flex img {
    max-width: 400px;
  }
  .price_note {
    display: block;
    max-width: 840px;
    width: 100%;
    margin: 20px auto 0;
  }
  .price_note img {
    max-width: 100%;
  }
}

/* --------------------------------
　データライズでできること
-------------------------------- */
.cando {
  padding: 60px 0 50px;
}
.cando_head {
  margin-bottom: 60px;
}
.cando_head img {
  display: block;
  margin: 0 auto;
}
.cando_list img {
  max-width: 100%;
}
.cando_list {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 120px;
}
.cando_list li {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.cando_list li:nth-of-type(n+2)::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(
    to right,
    #000 0 3px,
    transparent 3px 8px
  );
  position: absolute;
  top: -60px;
  left: 0;
}
.cando_list_ttl {
  margin: 0 auto;
  width: fit-content;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.4;
}
.cando_list_ttl span {
  display: inline;
  background: linear-gradient(90deg, #D9E4E3, #F7FF91) bottom / 100% 20px no-repeat;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.cando_list_img {
  text-align: center;
}
.cando_list_text {
  margin-top: 30px;
  font-size: 14px;
  line-height: 1.7;
  color: #000;
}

/* 国際標準規格ISO 4種取得による安心セキュリティ */
.cando_list li:nth-of-type(3) .cando_list_img img {
  max-width: 214px;
}
@media (max-width: 767px) {
  .cando .pc {
    display: none;
  }
}
@media (min-width: 768px) {
  .cando .sp {
    display: none;
  }

  .cando_list {
    margin-top: 60px;
  }
  .cando_list li {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
  .cando_list li:nth-of-type(n+2)::before {
    content: none;
  }
  .cando_list_ttl {
    margin-left: 0;
    font-size: 30px;
    text-align: left;
  }
  .cando_list_text {
    font-size: 16px;
  }
  .cando_list_cnt {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .cando_list li:nth-of-type(2n) .cando_list_img {
    order: 2;
  }
  .cando_list li:nth-of-type(2n) .cando_list_cnt {
    order: 1;
  }

  /* AIが導く次世代CRM */
  .cando_list li:nth-of-type(1) .cando_list_img img {
    max-width: 370px;
  }
}

/* --------------------------------
　機能一覧
-------------------------------- */
.function {
  position: relative;
}
.function_head {
  width: 100%;
  height: 87px;
  background-image: url(../images/function/back_sp.svg);
  background-position: top;
  background-size: 375px;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.function_body {
  background: linear-gradient(0deg, #f7ff91, #d9e4e3);
  padding: 87px 0 35px;
}
.function_body img {
  display: block;
  width: 100%;
  max-width: 345px;
}
@media (min-width: 768px) {
  .function_head {
    height: 160px;
    background-image: url(../images/function/back_pc.svg);
    background-size: 1366px;
  }
  .function_body {
    padding: 160px 0 80px;
  }
  .function_body img {
    max-width: 1120px;
  }
}

/* --------------------------------
　サポート体制
-------------------------------- */
.support {
  background-image: url(../images/support/back_sp.svg);
  background-position: top;
  background-repeat: no-repeat;
  padding-bottom: 60px;
}
.support_ofcourse img {
  margin: 0 auto;
  display: block;
}
.support .wrapper img {
  display: block;
  width: 100%;
  margin: 25px auto 0;
  max-width: 250px;
}
@media (min-width: 768px) {
  .support {
    background-image: url(../images/support/back_pc.svg);
    padding-bottom: 80px;
  }
  .support .wrapper img {
    max-width: 819px;
  }
}

/* --------------------------------
　導入実績
-------------------------------- */
.achievements {
  padding: 60px 0 45px;
  background: var(--gray);
  border-top: #000 solid 3px;
  border-bottom: #000 solid 3px;
}

/* 無限スクロール */
.scroll_infinity {
  overflow: hidden;
  width: 100%;
  margin-bottom: 35px;
}
.scroll_track {
  display: flex;
  width: max-content;
  animation: scroll-left 500s linear infinite;
  will-change: transform;
  flex-wrap: nowrap;
  width: max-content;
  min-width: 100%;
  white-space: nowrap;
}
.scroll_infinity.scroll_reverse .scroll_track {
  animation: scroll-right 500s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

/* リストの基本スタイル */
.scroll_list {
  display: flex;
  flex-wrap: nowrap;
  padding: 0;
  margin: 0;
  list-style: none;
}
.scroll_item {
  flex-shrink: 0;
  width: 200px;
  margin-right: 30px;
}
.scroll_item img {
  display: block;
}
@media (min-width: 768px) {
  .achievements .sp {
    display: none!important;
  }
  .achievements {
    padding: 80px 0 45px;
  }
  .scroll_infinity {
    margin-bottom: 35px;
  }
}
@media (max-width: 767px) {
  .achievements .pc {
    display: none!important;
  }
}

/* --------------------------------
　お客様の声
-------------------------------- */
.voice {
  padding: 60px 0;
  background: var(--sub-color);
}
@media (min-width: 768px) {
  .voice {
    padding: 80px 0;
  }
}

/* --------------------------------
　よくあるご質問
-------------------------------- */
.faq {
  background-image: url(../images/faq/back_sp.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-top: #000 solid 3px;
  padding: 55px 0 60px;
  position: relative;
}
.faq .faq_symbol {
  position: absolute;
  top: -13px;
  right: calc(50% - 82px);
}
.faq .faq_read {
  text-align: center;
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 30px;
}

.faq_list li {
  border-radius: 10px;
  border: #000 solid 3px;
  background: #fff;
  padding: 25px 15px;
  box-shadow: 1px 2px 0 #000;
  margin-bottom: 30px;
}
.faq_list li:last-of-type {
  margin-bottom: 0;
}
.accordion_head {
  position: relative;
  cursor: pointer;
  width: 100%;
  transition: 0.3s;
  display: flex;
  gap: 10px;
  align-items: center;
}
.accordion_head p {
  font-size: 16px;
  font-weight: 700;
  width: calc(100% - 60px);
}
.accordion_head img,
.accordion_body img {
  width: 23px;
}
.accordion_body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
  display: flex;
  gap: 10px;
}
.accordion_body.is-open {
  background-image: linear-gradient(to right, #000 3px, transparent 3px);
  background-size: 10px 1px;
  background-repeat: repeat-x;
  background-position: left top;
  max-height: 1000px;
  padding-top: 15px;
  margin-top: 15px;
}
.faqanswer_title {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 700;
}
.faqanswer_text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}
.faqanswer_text a{
  border-bottom: solid #0066c0 1px;
  color: #0066c0;
}
.faqanswer_text a img{
  padding: 2px;
  width: 1.3em;
  vertical-align: text-bottom;
}
.faqanswer_text span {
  letter-spacing:2.5px;
}
@media (min-width: 768px) {
  .faqanswer_text span {
    letter-spacing: 3.1px;
  }
}

/* プラスマイナス */
.accordion_head::after,
.accordion_head::before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 2px;
  background: #000;
  top: calc(50% - 1px);
  right: 0;
}
.accordion_head::after {
  transform: rotateZ(90deg);
  transition: 0.5s;
}
.accordion_head.is-open::after {
  transform: rotateZ(-180deg);
}
@media (min-width: 768px) {
  .faq {
    background-image: url(../images/faq/back_pc.png);
    padding: 85px 0 80px;
  }
  .faq .faq_read {
    font-size: 40px;
    margin-bottom: 45px;
  }
  .faq_list li {
    padding: 30px 20px;
  }
  .accordion_head p {
    font-size: 22px;
  }
  .accordion_head img,
  .accordion_body img {
    width: 25px;
  }
  .accordion_body.is-open {
    padding-top: 20px;
  }
  .faqanswer_title {
    font-size: 18px;
  }
  .faqanswer_text {
    font-size: 20px;
    margin-top: -5px;
  }
}

/* --------------------------------
　フォーム
-------------------------------- */
.form_head {
  background-image: url(../images/form/title_back_sp.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}
#form_contact .form_head {
  height: 249px;
}
#form_document .form_head {
  height: 199px;
}

.form_head .wrapper {
  padding-top: 60px;
  text-align: center;
}
#form_contact .form_head img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}
#form_document .form_head img {
  width: 100%;
  max-width: 289px;
  margin: 0 auto;
}
.form_body {
  margin-bottom: 60px;
}
.form_headtext {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
  margin-top: 20px;
  color: #000;
}
@media (min-width: 768px) {
  .form_head {
    background-image: url(../images/form/title_back_pc.png);
  }
  #form_contact .form_head,
  #form_document .form_head {
    height: 290px;
  }
  .form_head .wrapper {
    padding-top: 80px;
  }
  #form_contact .form_head img {
    max-width: 770px;
  }
  #form_document .form_head img {
    max-width: 405px;
  }
  .form_body {
    margin-bottom: 80px;
  }
  .form_headtext {
    font-size: 20px;
    margin-top: 45px;
  }
}

/* --------------------------------
　フッター
-------------------------------- */

footer {
  background-color: #000;
  color: #fff;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  footer {
    padding: 13px 15px;
    font-size: 16px;
  }
}


/* --------------------------------
　Shopify訴求
-------------------------------- */
.shopify {
  background-color: #000;
  width: 100%;
  border-top: #96A7A5 solid 3px;
  border-bottom: #96A7A5 solid 3px;
}
.shopify img {
  width: 100%;
}

