@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700&display=swap");
html {
  overflow: auto;
}

.inner {
  width: 950px;
  max-width: 100%;
  margin: 0 auto;
  height: inherit;
  padding: 80px 24px;
}
@media (max-width: 539px) {
  .inner {
    padding: 40px 16px;
  }
  .inner .is-pc {
    display: none;
  }
}
@media (min-width: 950px) {
  .inner .is-sp {
    display: none;
  }
}

body {
  font-family: "Avenir", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic";
  font-size: 18px;
  line-height: 1.7777777778;
  color: #423f38;
}
@media (max-width: 539px) {
  body {
    font-size: 16px;
  }
}

img {
  width: 100%;
  max-width: 100%;
  vertical-align: baseline;
}

/*------------------------------------------------------------
タブレット改行コード(タブレット〜改行される)
-------------------------------------------------------------*/
.tab_br {
  display: none;
}
@media (min-width: 540px) and (max-width: 949px) {
  .tab_br {
    display: block;
  }
}
@media (max-width: 539px) {
  .tab_br {
    display: block;
  }
}

/*------------------------------------------------------------
スマホ改行コード(スマホ時のみ改行される)
-------------------------------------------------------------*/
.sp_br {
  display: none;
}
@media (max-width: 539px) {
  .sp_br {
    display: block;
  }
}

/*------------------------------------------------------------
PC改行コード(PC時のみ改行される)
-------------------------------------------------------------*/
.pc_br {
  display: block;
}
@media (max-width: 539px) {
  .pc_br {
    display: none;
  }
}

/*------------------------------------------------------------
hover・・・ボタンホバー効果
-------------------------------------------------------------*/
.btn:hover {
  opacity: 0.7;
}

/*------------------------------------------------------------
蛍光ペンのようなボックスの設定
-------------------------------------------------------------*/
.box-yellow {
  background: linear-gradient(transparent 60%, #ff9 60%);
}

/*------------------------------------------------------------
入力フォームをハイライトする
-------------------------------------------------------------*/
input:focus,
textarea:focus,
input.focus,
textarea.focus {
  background-color: #ffffe4 !important;
}

/*------------------------------------------------------------
テキストのカスタマイズ
-------------------------------------------------------------*/
.text-big {
  font-size: 55px;
}
@media (max-width: 539px) {
  .text-big {
    font-size: 30px;
  }
}

.red {
  color: #e81919;
}

.bold {
  font-weight: 600;
}

/*------------------------------------------------------------
セクションの見出し
-------------------------------------------------------------*/
.section-title {
  text-align: center;
  margin-bottom: 70px;
  line-height: 1.2;
  position: relative;
}
.section-title::after {
  display: none;
}
@media (max-width: 539px) {
  .section-title::after {
    display: block;
    position: absolute;
    content: "";
    bottom: -20px;
    left: 0%;
    width: 100%;
    height: 8px;
    background: url(../images/problem-title-img.png) repeat-x center center/contain;
  }
}
@media (min-width: 540px) and (max-width: 949px) {
  .section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 539px) {
  .section-title {
    margin-bottom: 40px;
  }
}

.section-head {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: 45px;
  position: relative;
}
.section-head::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: -160px;
  background: url(../images/problem-title-img.png) no-repeat center center/contain;
  width: 24%;
  height: 12px;
  max-width: 100%;
}
@media (min-width: 540px) and (max-width: 949px) {
  .section-head::before {
    left: -130px;
  }
}
@media (max-width: 539px) {
  .section-head::before {
    display: none;
  }
}
.section-head::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: -160px;
  background: url(../images/problem-title-img.png) no-repeat center center/contain;
  width: 24%;
  max-width: 100%;
  height: 12px;
}
@media (min-width: 540px) and (max-width: 949px) {
  .section-head::after {
    right: -130px;
  }
}
@media (max-width: 539px) {
  .section-head::after {
    display: none;
  }
}
@media (min-width: 540px) and (max-width: 949px) {
  .section-head {
    font-size: clamp(30px, 7vw, 45px);
  }
}
@media (max-width: 539px) {
  .section-head {
    font-size: 25px;
  }
}

/*--------------------------------------------------
上部固定ヘッダー
-----------------------------------------------------*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1607843137);
  background-color: #fff;
}

.header_inr {
  width: 950px;
  margin: 0 auto;
  max-width: 100%;
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
}
@media (max-width: 539px) {
  .header_inr {
    padding: 0 16px;
  }
}

.header_logo {
  width: 25%;
  padding-top: 11px;
  line-height: 1;
}
.header_logo a {
  display: inline-block;
}
@media (min-width: 540px) and (max-width: 949px) {
  .header_logo {
    width: 30%;
  }
}
@media (max-width: 539px) {
  .header_logo {
    width: 34%;
    padding-top: 0;
  }
}

.header_btn {
  width: 36%;
  padding-top: 8px;
}
.header_btn a {
  display: inline-block;
}
@media (min-width: 540px) and (max-width: 949px) {
  .header_btn {
    width: 40vw;
  }
}
@media (max-width: 539px) {
  .header_btn {
    width: 45vw;
  }
}

/*--------------------------------------------------
ファーストビュー設定
-----------------------------------------------------*/
.main-visual {
  background-image: url("../images/top_image_back.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  margin-top: 80px;
}
@media (max-width: 539px) {
  .main-visual {
    display: none;
  }
}

.main-visual-inner {
  width: 950px;
  max-width: 100%;
  margin: 0 auto;
}
.main-visual-inner img {
  vertical-align: top;
}

.main-visual-sp {
  display: none;
  margin-top: 60px;
}
@media (max-width: 539px) {
  .main-visual-sp {
    display: block;
  }
}

/*--------------------------------------------------
CTAエリアの設定
-----------------------------------------------------*/
.cta {
  position: relative;
  background-color: #fdecc9;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: -250%;
  height: 800px;
  width: 1500px;
  left: 50%;
  right: 50%;
  background-color: #fff;
  transform: rotate(-63deg) translate(-50%, -50%);
  z-index: 0;
}
@media (min-width: 540px) and (max-width: 949px) {
  .cta::before {
    height: 650px;
    left: 42%;
  }
}
@media (max-width: 539px) {
  .cta::before {
    height: 300px;
    left: 18%;
  }
}

.cta-inner {
  padding: 45px 14px;
  background-color: #fdecc9;
}
.cta-main {
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.cta-img {
  margin-bottom: 10px;
}

/*ボタンのキラキラアニメーション　ここから*/
.cta_btn {
  position: relative;
  overflow: hidden;
}

.reflection {
  height: 100%;
  width: 30px;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #fff;
  opacity: 0;
  transform: rotate(45deg);
  animation: reflection 3s ease-in-out infinite;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflection 3s ease-in-out infinite;
  -moz-transform: rotate(45deg);
  -moz-animation: reflection 3s ease-in-out infinite;
  -ms-transform: rotate(45deg);
  -ms-animation: reflection 3s ease-in-out infinite;
  -o-transform: rotate(45deg);
  -o-animation: reflection 3s ease-in-out infinite;
}

@keyframes reflection {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
@-webkit-keyframes reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
/*ボタンのキラキラアニメーション　ここまで*/
.cta-text {
  font-size: 16px;
  text-align: center;
}
@media (max-width: 539px) {
  .cta-text {
    font-size: 14px;
  }
}

/*--------------------------------------------------
「こんなお悩みありませんか？」の設定
-----------------------------------------------------*/
.problem {
  overflow: hidden;
}

.problem-inner {
  padding: 80px 24px 10px;
}
@media (max-width: 539px) {
  .problem-inner {
    padding: 40px 16px 40px;
  }
}

.problem-main {
  display: flex;
  flex-direction: row-reverse;
  margin-bottom: 50px;
  position: relative;
}
@media (min-width: 540px) and (max-width: 949px) {
  .problem-main {
    display: block;
  }
}
@media (max-width: 539px) {
  .problem-main {
    display: block;
    margin-bottom: 20px;
  }
}

.problem-text01 {
  background-color: #fef9ee;
  border: 1px solid #f6a400;
  border-radius: 20px;
  padding: 40px 60px;
  width: 600px;
  max-width: 100%;
}
@media (min-width: 540px) and (max-width: 949px) {
  .problem-text01 {
    width: 100%;
  }
}
@media (max-width: 539px) {
  .problem-text01 {
    padding: 32px 14px;
    width: 80%;
    margin: 0 auto;
  }
}

.problem-img {
  position: absolute;
  width: 340px;
  max-width: 100%;
  left: 0%;
}
@media (min-width: 540px) and (max-width: 949px) {
  .problem-img {
    position: relative;
    width: 65%;
    margin: 0 auto;
    bottom: 40px;
    left: 0;
  }
}
@media (max-width: 539px) {
  .problem-img {
    position: relative;
    width: 80%;
    margin: 0 auto;
    bottom: 30px;
    left: 0;
  }
}

.problem-main-02 {
  display: flex;
  margin-bottom: 50px;
  position: relative;
}
@media (min-width: 540px) and (max-width: 949px) {
  .problem-main-02 {
    display: block;
    margin-bottom: 0;
  }
}
@media (max-width: 539px) {
  .problem-main-02 {
    display: block;
    margin-bottom: 0;
  }
}

.problem-text-02 {
  background-color: #fef9ee;
  border: 1px solid #f6a400;
  border-radius: 20px;
  padding: 40px 60px;
  width: 750px;
  max-width: 100%;
}
@media (min-width: 540px) and (max-width: 949px) {
  .problem-text-02 {
    width: 100%;
  }
}
@media (max-width: 539px) {
  .problem-text-02 {
    padding: 32px 14px;
  }
}

.problem-img-02 {
  position: absolute;
  width: 220px;
  max-width: 100%;
  right: 0%;
  bottom: 0%;
}
@media (min-width: 540px) and (max-width: 949px) {
  .problem-img-02 {
    position: relative;
    width: 55%;
    margin: 0 auto;
    bottom: 40px;
    left: 0;
  }
}
@media (max-width: 539px) {
  .problem-img-02 {
    position: relative;
    width: 60%;
    margin: 0 auto;
    bottom: 30px;
    left: 0;
  }
}

/*--------------------------------------------------
「初めまして、アンコミ代表の〜」の設定
-----------------------------------------------------*/
.introduction {
  background-color: #fef9ee;
  overflow: hidden;
}

.introduction-inner {
  padding: 0 24px 80px;
  z-index: 10;
  position: relative;
}
.introduction-inner::before {
  position: absolute;
  content: "ANCOMI";
  top: 3%;
  left: -13%;
  color: #fdecc9;
  font-size: 220px;
  line-height: 1;
  font-weight: bold;
  writing-mode: vertical-rl;
  z-index: -1;
}
@media (min-width: 540px) and (max-width: 949px) {
  .introduction-inner::before {
    left: -8%;
  }
}
@media (max-width: 539px) {
  .introduction-inner::before {
    font-size: 150px;
  }
}
@media (max-width: 539px) {
  .introduction-inner {
    padding: 0 16px 40px;
  }
}

.introduction-head {
  margin-top: -100px;
  margin-bottom: 40px;
  position: relative;
}
@media (min-width: 540px) and (max-width: 949px) {
  .introduction-head {
    margin-top: -65px;
  }
}
@media (max-width: 539px) {
  .introduction-head {
    margin-top: -35px;
    margin-bottom: 20px;
  }
}

.introduction-title {
  position: absolute;
  bottom: 0%;
  left: 0;
  content: "";
  width: 920px;
  max-width: 100%;
}

.introduction-title-img {
  margin-left: auto;
  width: 40%;
}
@media (max-width: 539px) {
  .introduction-title-img {
    width: 50%;
  }
}

.introduction-medal {
  margin: 32px 0;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 539px) {
  .introduction-medal {
    margin: 16px 0;
  }
}

.introduction-medal-item {
  width: 30%;
}
@media (max-width: 539px) {
  .introduction-medal-item {
    width: 32%;
  }
}

/*--------------------------------------------------
「案件獲得コミュニティアンコミとは？」の設定
-----------------------------------------------------*/
.ancomi {
  background-color: #fef9ee;
}

.ancomi-head {
  background-color: #f6a400;
  overflow: hidden;
}

.ancomi-head-inner {
  width: 950px;
  max-width: 100%;
  margin: 0 auto;
  padding: 30px 0;
}
@media (max-width: 539px) {
  .ancomi-head-inner {
    padding: 14px 0;
  }
}

.ancomi-title {
  width: 60%;
  margin: 0 auto;
  position: relative;
}
.ancomi-title::before {
  position: absolute;
  content: "";
  top: 0%;
  left: -200px;
  background: url(../images/ancomi-title-bg01.png) no-repeat center center/contain;
  width: 140px;
  height: 160px;
}
@media (max-width: 539px) {
  .ancomi-title::before {
    left: -71px;
    width: 60px;
    height: 70px;
    top: 10px;
  }
}
.ancomi-title::after {
  position: absolute;
  content: "";
  top: 0%;
  right: -220px;
  background: url(../images/ancomi-title-bg02.png) no-repeat center center/contain;
  width: 190px;
  height: 170px;
}
@media (max-width: 539px) {
  .ancomi-title::after {
    right: -93px;
    width: 29%;
    height: 80%;
  }
}
@media (max-width: 539px) {
  .ancomi-title {
    width: 68%;
  }
}

.ancomi-inner {
  /* ----方眼紙--- */
  background-color: #ffffff;
  background-image: repeating-linear-gradient(to bottom, transparent 10px, rgba(153, 153, 153, 0.07) 11px, rgba(153, 153, 153, 0.07) 11px, transparent 12px, transparent 21px, rgba(153, 153, 153, 0.07) 22px, rgba(153, 153, 153, 0.07) 22px, transparent 23px, transparent 32px, rgba(153, 153, 153, 0.07) 33px, rgba(153, 153, 153, 0.07) 33px, transparent 34px, transparent 43px, rgba(153, 153, 153, 0.07) 44px, rgba(153, 153, 153, 0.07) 44px, transparent 45px, transparent 54px, rgba(153, 153, 153, 0.07) 55px, rgba(153, 153, 153, 0.07) 55px), repeating-linear-gradient(to right, transparent 10px, rgba(153, 153, 153, 0.07) 11px, rgba(153, 153, 153, 0.07) 11px, transparent 12px, transparent 21px, rgba(153, 153, 153, 0.07) 22px, rgba(153, 153, 153, 0.07) 22px, transparent 23px, transparent 32px, rgba(153, 153, 153, 0.07) 33px, rgba(153, 153, 153, 0.07) 33px, transparent 34px, transparent 43px, rgba(153, 153, 153, 0.07) 44px, rgba(153, 153, 153, 0.07) 44px, transparent 45px, transparent 54px, rgba(153, 153, 153, 0.07) 55px, rgba(153, 153, 153, 0.07) 55px);
  /* ----方眼紙--- */
  padding: 40px 24px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 539px) {
  .ancomi-inner {
    padding: 20px 16px;
  }
}

.ancomi-main {
  display: flex;
  margin-bottom: 100px;
}
@media (max-width: 539px) {
  .ancomi-main {
    margin-bottom: 80px;
  }
}

.ancomi-text {
  width: calc(74% + 10px);
  margin-right: 10px;
}
@media (min-width: 540px) and (max-width: 949px) {
  .ancomi-text {
    width: 100%;
  }
}
@media (max-width: 539px) {
  .ancomi-text {
    width: 100%;
  }
}

.ancomi-img-sp {
  display: none;
}
@media (min-width: 540px) and (max-width: 949px) {
  .ancomi-img-sp {
    display: block;
    width: 80%;
    margin: 0 auto 20px;
  }
}
@media (max-width: 539px) {
  .ancomi-img-sp {
    display: block;
    margin-bottom: 20px;
  }
}

.ancomi-main-img {
  width: 26%;
}
@media (min-width: 540px) and (max-width: 949px) {
  .ancomi-main-img {
    display: none;
  }
}
@media (max-width: 539px) {
  .ancomi-main-img {
    display: none;
  }
}

.recommend {
  width: 800px;
  max-width: 100%;
  margin: 0 auto 130px;
}
@media (max-width: 539px) {
  .recommend {
    margin: 0 auto 100px;
  }
}

.recommend-title {
  position: absolute;
  content: "";
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 330px;
  max-width: 100%;
}
@media (max-width: 539px) {
  .recommend-title {
    width: 65%;
    top: -10vw;
  }
}

.recommend-text {
  margin: 2em 25px;
  padding: 70px 70px 40px;
  background-color: #fdecc9;
  border: dashed 1px #f6a400;
  box-shadow: 0 0 0 10px #fdecc9;
  border-radius: 20px;
  position: relative;
}
@media (min-width: 540px) and (max-width: 949px) {
  .recommend-text {
    padding: 60px 40px 0px;
  }
}
@media (max-width: 539px) {
  .recommend-text {
    margin: 0%;
    padding: 50px 18px 30px;
  }
}

.recommend-text-item {
  font-size: 25px;
  margin-bottom: 20px;
  padding-left: 50px;
  position: relative;
}
.recommend-text-item::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 0;
  background: url(../images/recommend-icon01.png) no-repeat center center/contain;
  width: 32px;
  height: 32px;
}
@media (max-width: 539px) {
  .recommend-text-item::before {
    width: 25px;
    height: 25px;
  }
}
@media (max-width: 539px) {
  .recommend-text-item {
    font-size: 16px;
    padding-left: 40px;
    margin-bottom: 10px;
  }
}

.recommend-text-attention {
  color: #e81919;
  font-size: 27px;
  font-weight: 600;
}
@media (max-width: 539px) {
  .recommend-text-attention {
    font-size: 18px;
  }
}

.not-recommend {
  margin: 0 auto;
}
.not-recommend .recommend-text {
  background-color: #efedea;
  border: dashed 1px #423f38;
  box-shadow: 0 0 0 10px #efedea;
}
.not-recommend .recommend-title {
  width: 510px;
  max-width: 100%;
}

.no-recommend-text-item {
  font-size: 25px;
  margin-bottom: 20px;
  padding-left: 50px;
  position: relative;
}
.no-recommend-text-item::before {
  position: absolute;
  content: "";
  top: 8px;
  left: 0;
  background: url(../images/recommend-icon02.png) no-repeat center center/contain;
  width: 32px;
  height: 32px;
}
@media (max-width: 539px) {
  .no-recommend-text-item::before {
    width: 25px;
    height: 25px;
    top: 3px;
  }
}
@media (max-width: 539px) {
  .no-recommend-text-item {
    font-size: 16px;
    padding-left: 40px;
    margin-bottom: 10px;
  }
}

.service-head-inner {
  width: 950px;
  max-width: 100%;
  margin: 0 auto;
  background-color: #f6a400;
  position: relative;
  padding: 40px 0 30px;
}
.service-head-inner::before {
  position: absolute;
  content: "";
  top: 10px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  height: 2px;
}
.service-head-inner::after {
  position: absolute;
  content: "";
  bottom: 10px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  height: 2px;
}
@media (max-width: 539px) {
  .service-head-inner {
    padding: 30px 0 20px;
  }
}

.service-title {
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 539px) {
  .service-title {
    width: 80%;
  }
}

.service-inner {
  padding: 60px 24px 40px;
}
@media (max-width: 539px) {
  .service-inner {
    padding: 30px 16px 0;
  }
}

.service-main {
  background-color: #fef9ee;
  border: 1px solid #f6a400;
  padding: 60px 60px 60px 60px;
  width: 800px;
  max-width: 100%;
  margin: 0 auto 60px;
  position: relative;
}
.service-main::before {
  position: absolute;
  content: "";
  top: -30px;
  left: -30px;
  background: url(../images/sevvice-icon-bg.png) no-repeat center center/contain;
  width: 100px;
  height: 95px;
}
@media (max-width: 539px) {
  .service-main::before {
    width: 60px;
    height: 57px;
    top: -18px;
    left: -18px;
  }
}
.service-main::after {
  position: absolute;
  content: "";
  top: -30px;
  right: -30px;
  background: url(../images/sevvice-icon-bg.png) no-repeat center center/contain;
  width: 100px;
  height: 95px;
  transform: rotate(90deg);
}
@media (max-width: 539px) {
  .service-main::after {
    width: 60px;
    height: 57px;
    top: -18px;
    right: -18px;
  }
}
@media (min-width: 540px) and (max-width: 949px) {
  .service-main {
    padding: 60px 24px 60px 24px;
  }
}
@media (max-width: 539px) {
  .service-main {
    padding: 30px 16px 30px 16px;
  }
}

.service-item {
  font-size: 25px;
  margin-bottom: 20px;
  padding-left: 55px;
  position: relative;
}
.service-item::before {
  position: absolute;
  content: "";
  top: 3px;
  left: 0;
  background: url(../images/sevvice-icon.png) no-repeat center center/contain;
  width: 34px;
  height: 34px;
}
@media (max-width: 539px) {
  .service-item::before {
    width: 20px;
    height: 20px;
  }
}
.service-item:last-child {
  margin-bottom: 0;
}
@media (max-width: 539px) {
  .service-item {
    font-size: 16px;
    padding-left: 35px;
  }
}

.service-item-text {
  font-size: 18px;
}
@media (max-width: 539px) {
  .service-item-text {
    font-size: 14px;
  }
}

.join {
  border-top: 1px solid #423f38;
}

.service-content {
  padding-top: 60px;
  padding-bottom: 30px;
}
@media (max-width: 539px) {
  .service-content {
    padding-top: 30px;
    padding-bottom: 10px;
  }
}

.service-content-title {
  width: 380px;
  max-width: 100%;
  margin: 0 auto 30px;
}
@media (max-width: 539px) {
  .service-content-title {
    margin: 0 auto 10px;
    width: 70%;
  }
}

.service-content-text {
  width: 88%;
  margin: 0 auto 30px;
}
@media (min-width: 540px) and (max-width: 949px) {
  .service-content-text {
    width: 92%;
  }
}
@media (max-width: 539px) {
  .service-content-text {
    width: 100%;
  }
}

.join-main {
  background-color: #fef9ee;
  padding: 40px 60px 30px 60px;
  border-radius: 20px;
  width: 800px;
  max-width: 100%;
  margin: 0 auto 30px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 539px) {
  .join-main {
    padding: 30px 16px 30px 16px;
  }
}

.join-item {
  font-size: 25px;
  margin-bottom: 20px;
  padding-left: 55px;
  position: relative;
}
.join-item::before {
  position: absolute;
  content: "";
  top: 3px;
  left: 0;
  background: url(../images/join-icon.png) no-repeat center center/contain;
  width: 34px;
  height: 34px;
}
@media (max-width: 539px) {
  .join-item::before {
    width: 20px;
    height: 20px;
  }
}
.join-item:last-child {
  margin-bottom: 0;
}
@media (max-width: 539px) {
  .join-item {
    font-size: 16px;
    padding-left: 35px;
    font-weight: bold;
  }
}

.join-item-text {
  font-size: 16px;
}
@media (max-width: 539px) {
  .join-item-text {
    font-size: 14px;
    font-weight: normal;
  }
}

.price {
  border-top: 1px solid #423f38;
}

.price-img {
  width: 80%;
  margin: 0 auto 30px;
}
@media (max-width: 539px) {
  .price-img {
    width: 100%;
  }
}

.ancomi-btn-inner {
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
}

/*--------------------------------------------------
「アンコミ内の実績」の設定
-----------------------------------------------------*/
.achievement {
  z-index: 10;
  position: relative;
  overflow: hidden;
}
.achievement::before {
  position: absolute;
  content: "ACHIEVEMENT";
  bottom: 20px;
  left: 50%;
  color: #fef9ee;
  font-size: 220px;
  line-height: 1;
  font-weight: bold;
  transform: translateX(-50%) rotate(-10deg);
  z-index: -1;
}
@media (min-width: 540px) and (max-width: 949px) {
  .achievement::before {
    font-size: 130px;
    left: 0;
    bottom: 12%;
    transform: translateX(0%) rotate(-10deg);
  }
}
@media (max-width: 539px) {
  .achievement::before {
    font-size: 100px;
    left: 0;
    bottom: 12%;
    transform: translateX(0%) rotate(-10deg);
  }
}

.achievement-head {
  border-top: 1px solid #423f38;
  border-bottom: 1px solid #423f38;
  margin-bottom: 60px;
  position: relative;
}
.achievement-head::before {
  position: absolute;
  content: "";
  top: -57px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/achievement-title-bg.jpg) no-repeat center center/contain;
  width: 140px;
  height: 70px;
}
@media (max-width: 539px) {
  .achievement-head::before {
    top: -28px;
    width: 20%;
    height: 42%;
  }
}
@media (max-width: 539px) {
  .achievement-head {
    margin-bottom: 40px;
  }
}

.achievement-title {
  width: 60%;
  margin: 0 auto;
  padding: 30px 0;
}
@media (max-width: 539px) {
  .achievement-title {
    width: 80%;
    padding: 15px 0;
  }
}

.achievement-main {
  padding: 0 30px;
}
@media (min-width: 540px) and (max-width: 949px) {
  .achievement-main {
    padding: 0;
  }
}
@media (max-width: 539px) {
  .achievement-main {
    padding: 0;
  }
}

.achievement-item {
  display: flex;
  align-items: center;
  padding-left: 65px;
  margin-bottom: 30px;
  position: relative;
}
.achievement-item::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: url(../images/achievement-icon.png) no-repeat center center/contain;
  width: 55px;
  height: 35px;
}
@media (max-width: 539px) {
  .achievement-item::before {
    width: 37px;
    height: 24px;
    top: -30px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media (max-width: 539px) {
  .achievement-item {
    display: block;
    padding-left: 0px;
    margin-bottom: 40px;
  }
}

.achievement-name {
  font-size: 25px;
  width: 180px;
}
.achievement-name a {
  text-decoration: underline;
}
@media (min-width: 540px) and (max-width: 949px) {
  .achievement-name {
    font-size: 20px;
  }
}
@media (max-width: 539px) {
  .achievement-name {
    font-size: 18px;
    text-align: center;
    width: 100%;
  }
}

.achievement-text {
  font-size: 25px;
}
@media (min-width: 540px) and (max-width: 949px) {
  .achievement-text {
    font-size: 20px;
  }
}
@media (max-width: 539px) {
  .achievement-text {
    font-size: 18px;
    text-align: center;
  }
}

/*--------------------------------------------------
「参加後の未来」の設定
-----------------------------------------------------*/
.future {
  background-color: #fef9ee;
  overflow: hidden;
}

.future-head {
  background-color: #f6a400;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.future-head::after {
  position: absolute;
  content: "";
  bottom: -34%;
  left: 0%;
  background: url(../images/future-line.png) no-repeat center center/contain;
  height: 100px;
  width: 1700px;
  max-width: 100%;
}
@media (max-width: 539px) {
  .future-head::after {
    height: 60px;
  }
}
@media (max-width: 539px) {
  .future-head {
    padding: 14px 0;
  }
}

.future-head-inner {
  width: 950px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.future-title {
  width: 60%;
  margin: 0 auto;
  position: relative;
}
.future-title::before {
  position: absolute;
  content: "";
  top: 0%;
  left: -140px;
  background: url(../images/future-title-bg01.png) no-repeat center center/contain;
  width: 105px;
  height: 110px;
}
@media (max-width: 539px) {
  .future-title::before {
    left: -44px;
    width: 17%;
    height: 100%;
  }
}
.future-title::after {
  position: absolute;
  content: "";
  top: 0%;
  right: -170px;
  background: url(../images/future-title-bg02.png) no-repeat center center/contain;
  width: 130px;
  height: 105px;
}
@media (max-width: 539px) {
  .future-title::after {
    right: -68px;
    width: 21%;
    height: 100%;
  }
}
@media (max-width: 539px) {
  .future-title {
    width: 70%;
  }
}

.future-inner {
  position: relative;
  z-index: 10;
}
.future-inner::before {
  position: absolute;
  content: "FUTURE";
  top: 3%;
  left: -13%;
  color: #fdecc9;
  font-size: 220px;
  line-height: 1;
  font-weight: bold;
  writing-mode: vertical-rl;
  z-index: -1;
}
@media (min-width: 540px) and (max-width: 949px) {
  .future-inner::before {
    left: -8%;
    top: 40%;
  }
}
@media (max-width: 539px) {
  .future-inner::before {
    font-size: 150px;
    top: 40%;
  }
}
@media (max-width: 539px) {
  .future-inner::before {
    padding: 40px 7px;
  }
}

.future-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-self: stretch;
}

.future-item {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 30px 20px 30px;
  margin-bottom: 30px;
  width: calc(33.3% - 20px);
}
.future-item:not(:nth-child(3n+1)) {
  margin-left: 30px;
}
@media (min-width: 540px) and (max-width: 949px) {
  .future-item:not(:nth-child(3n+1)) {
    margin-left: 0;
  }
}
@media (max-width: 539px) {
  .future-item:not(:nth-child(3n+1)) {
    margin-left: 0;
  }
}
@media (min-width: 540px) and (max-width: 949px) {
  .future-item {
    width: calc(50% - 7px);
  }
  .future-item:nth-child(2n) {
    margin-left: 14px;
  }
}
@media (max-width: 539px) {
  .future-item {
    padding: 18px 10px 18px;
    width: calc(50% - 4px);
  }
  .future-item:nth-child(2n) {
    margin-left: 8px;
  }
}

.future-item-img {
  margin-bottom: 8px;
}

.future-text {
  font-size: 20px;
  text-align: center;
}
@media (max-width: 539px) {
  .future-text {
    font-size: 16px;
  }
}

.future-small {
  font-size: 18px;
  text-align: right;
}
@media (max-width: 539px) {
  .future-small {
    font-size: 13px;
  }
}

/*--------------------------------------------------
「1人で続けるのは終わりにしませんか？」の設定
-----------------------------------------------------*/
.message-title {
  margin-bottom: 60px;
}
@media (min-width: 540px) and (max-width: 949px) {
  .message-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 539px) {
  .message-title {
    margin-bottom: 20px;
  }
}

.message-text {
  margin-bottom: 20px;
}
@media (max-width: 539px) {
  .message-text {
    margin-bottom: 10px;
  }
}

.message-main {
  display: flex;
  margin-bottom: 20px;
}
@media (min-width: 540px) and (max-width: 949px) {
  .message-main {
    display: block;
  }
}
@media (max-width: 539px) {
  .message-main {
    display: block;
    margin-bottom: 10px;
  }
}

.message-left {
  width: calc(100% - 320px);
}
@media (min-width: 540px) and (max-width: 949px) {
  .message-left {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 539px) {
  .message-left {
    width: 100%;
    margin-bottom: 20px;
  }
}

.message-right {
  width: 300px;
  margin-left: 20px;
}
@media (min-width: 540px) and (max-width: 949px) {
  .message-right {
    width: 60%;
    margin: 0 auto;
  }
}
@media (max-width: 539px) {
  .message-right {
    width: 60%;
    margin: 0 auto;
  }
}

/*--------------------------------------------------
「参加の流れ」の設定
-----------------------------------------------------*/
.step {
  background-color: #fef9ee;
}

.step-head::before {
  background: url(../images/problem-title-img.png) repeat-X center center/contain;
  width: 28%;
  height: 7px;
}
.step-head::after {
  background: url(../images/problem-title-img.png) repeat-X center center/contain;
  width: 28%;
  height: 7px;
}

.step-wrap {
  width: 750px;
  max-width: 100%;
  margin: 0 auto;
}

.step-item {
  display: flex;
  margin-bottom: 120px;
}
.step-item:last-child {
  margin-bottom: 50px;
}
@media (min-width: 540px) and (max-width: 949px) {
  .step-item:last-child {
    margin-bottom: 0px;
  }
}
@media (max-width: 539px) {
  .step-item:last-child {
    margin-bottom: 0px;
  }
}

.step-number {
  width: 120px;
  margin-right: 40px;
}
@media (max-width: 539px) {
  .step-number {
    margin-right: 16px;
    width: 100px;
  }
}

.number-line {
  position: relative;
}
.number-line::before {
  position: absolute;
  content: "";
  background: url(../images/step-line-img.png) repeat-y center center/contain;
  width: 10px;
  height: calc(100% - 20px);
  max-width: 100%;
  left: 50%;
  bottom: -109px;
  transform: translateX(-50%);
}
@media (max-width: 539px) {
  .number-line::before {
    width: 7%;
    height: 88%;
    bottom: -100px;
  }
}

.step-main {
  width: calc(100% - 120px);
}
@media (max-width: 539px) {
  .step-main {
    width: calc(100% - 100px);
  }
}

.step-main-title {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1;
}
@media (max-width: 539px) {
  .step-main-title {
    font-size: 18px;
  }
}

.step-main-text {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 24px;
  width: 622px;
  max-width: 100%;
}
@media (max-width: 539px) {
  .step-main-text {
    border-radius: 10px;
    padding: 12px;
  }
}

/*--------------------------------------------------
「アンコミの口コミ」の設定
-----------------------------------------------------*/
.voice-head {
  overflow: hidden;
  background-color: #f6a400;
  padding-top: 48px;
  position: relative;
}
.voice-head::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 3vw solid #fed23b;
  border-left: 100vw solid transparent;
}
.voice-head::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-top: 3vw solid #fed23b;
  border-right: 100vw solid transparent;
}
@media (max-width: 539px) {
  .voice-head {
    padding-top: 27px;
  }
}

.voice-head-inner {
  border-top: 1px solid #fff;
  width: 950px;
  max-width: 100%;
  margin: 0 auto;
  padding: 32px 0 40px;
  position: relative;
}
.voice-head-inner::before {
  position: absolute;
  content: "";
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/voice-title-img.jpg) no-repeat center center/contain;
  width: 200px;
  height: 30px;
}
@media (max-width: 539px) {
  .voice-head-inner::before {
    width: 28%;
    height: 20%;
    top: -10px;
  }
}
@media (min-width: 540px) and (max-width: 949px) {
  .voice-head-inner {
    padding: 26px 0;
  }
}
@media (max-width: 539px) {
  .voice-head-inner {
    padding: 35px 0 22px;
  }
}

.voice-title {
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 539px) {
  .voice-title {
    width: 70%;
  }
}

.voice-wrap {
  width: 90%;
  margin: 0 auto;
}
@media (min-width: 540px) and (max-width: 949px) {
  .voice-wrap {
    width: 100%;
  }
}
@media (max-width: 539px) {
  .voice-wrap {
    width: 100%;
  }
}

.voice-item {
  background-color: #fef9ee;
  border: 1px solid #f6a400;
  border-radius: 30px;
  padding: 50px 30px;
  margin-bottom: 50px;
}
.voice-item:last-child {
  margin-bottom: 0;
}
@media (max-width: 539px) {
  .voice-item {
    padding: 24px 14px;
    margin-bottom: 30px;
  }
}

.voice-item-head {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #423f38;
  margin-bottom: 20px;
  justify-content: space-between;
}

.voice-item-img {
  width: 18%;
}

.voice-item-head-main {
  width: 78%;
}

.voice-item-title {
  font-size: 25px;
  color: #f6a400;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (max-width: 539px) {
  .voice-item-title {
    font-size: 18px;
  }
}

.voice-item-text {
  width: 95%;
  margin: 0 auto;
}
@media (max-width: 539px) {
  .voice-item-text {
    width: 100%;
  }
}

/*--------------------------------------------------
「よくある質問」の設定
-----------------------------------------------------*/
.faq {
  background-color: #fef9ee;
}

.faq-head::before {
  background: url(../images/problem-title-img.png) repeat-X center center/contain;
  width: 40%;
  height: 7px;
}
.faq-head::after {
  background: url(../images/problem-title-img.png) repeat-X center center/contain;
  width: 40%;
  height: 7px;
}

.faq-wrap {
  width: 94%;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 30px;
  border: 1px solid #f6a400;
  border-radius: 30px;
}
@media (max-width: 539px) {
  .faq-item {
    margin-bottom: 16px;
  }
}

.faq-item-head {
  display: flex;
  justify-content: space-between;
  background-color: #fdecc9;
  padding: 12px 24px;
  border-radius: 30px 30px 0 0;
  border-bottom: 1px solid #f6a400;
}
@media (max-width: 539px) {
  .faq-item-head {
    padding: 12px 16px;
  }
}

.faq-head-icon {
  width: 5%;
}
@media (min-width: 540px) and (max-width: 949px) {
  .faq-head-icon {
    width: 8%;
  }
}
@media (max-width: 539px) {
  .faq-head-icon {
    width: 10%;
  }
}

.faq-head-title {
  width: 93%;
  font-size: 20px;
  padding-top: 5px;
}
@media (min-width: 540px) and (max-width: 949px) {
  .faq-head-title {
    padding-top: 0;
    width: 89%;
  }
}
@media (max-width: 539px) {
  .faq-head-title {
    font-size: 16px;
    width: 86%;
    padding-top: 0;
  }
}

.faq-answer {
  background-color: #fff;
  padding: 24px;
  border-radius: 0 0 30px 30px;
}
@media (max-width: 539px) {
  .faq-answer {
    padding: 12px 16px;
  }
}

/*--------------------------------------------------
フッター部分
-----------------------------------------------------*/
.footer {
  background-color: #f6a400;
  padding: 1em 0em;
  text-align: center;
  font-size: 1em;
  color: #fff;
}
@media (max-width: 539px) {
  .footer {
    font-size: 0.8em;
    padding: 0em 2em 0em;
  }
}

.footer-inner {
  padding: 20px;
}

.footer a {
  color: #fff;
}

/*--------------------------------------------------
プライバシーポリシー
-----------------------------------------------------*/
.privacy {
  margin-top: 80px;
}
.privacy h3 {
  margin-top: 40px;
  margin-bottom: 20px;
}
@media (max-width: 539px) {
  .privacy {
    margin-top: 60px;
  }
}

.privacy-inner {
  padding: 3em;
}
@media (max-width: 539px) {
  .privacy-inner {
    padding: 1.5em;
  }
}

.law-title {
  font-size: 2em;
  text-align: center;
}
@media (max-width: 539px) {
  .law-title {
    font-size: 1.6em;
  }
}

.privacy-subtitle {
  font-size: 1.6em;
  padding-left: 2em;
  border-bottom: 1px dotted #f6a400;
  border-left: 8px solid #f6a400;
}
@media (max-width: 539px) {
  .privacy-subtitle {
    font-size: 1.4em;
    padding-left: 1em;
  }
}

/*--------------------------------------------------
特商法
-----------------------------------------------------*/
.law {
  margin-top: 80px;
}
@media (max-width: 539px) {
  .law {
    margin-top: 60px;
  }
}

.law-inner {
  padding: 3em;
}
@media (max-width: 539px) {
  .law-inner {
    padding: 1.5em;
  }
}

.law-wrap {
  width: 850px;
  max-width: 100%;
  margin: 0 auto;
}

.law-main {
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}

.law-main-item th {
  background-color: #eee;
  width: 30%;
  padding: 0.5em;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 539px) {
  .law-main-item th {
    display: block;
    width: 100%;
    text-align: left;
  }
}
.law-main-item td {
  width: 70%;
  padding: 0.5em;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 539px) {
  .law-main-item td {
    width: 100%;
    display: block;
  }
}