@charset "UTF-8";

:root {
  --color-Text-Primary: #333333;
  --color-Text-Accent: #EB5C33;
  --color-Text-Usually: #fefefe;
  --color-Background-Primary: #ffffff;
  --color-Background-Secondary: #FFF8F3;
  --color-Background-CTA: #E8430C;
}


/* 202603 TANOMU新CTA */
.column_wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 0 120px;
}

@media (max-width: 1350px) {
  .column_wrap {
    max-width: 100%;
    padding: 80px 5%;
  }
}

.cta_request_materials {
  background: url(/tanomu/assets/images/bihin/cta_bg.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
}

.cta_request_materials .column_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta_request_materials .cta_left {
  width: 50%;
}

.cta_request_materials .cta_right {
  width: 47%;
}

.cta_request_materials .cta_left img {
  width: 100%;
}

.cta_request_materials h2 {
  color: var(--color-Text-Usually);
  font-size: 50px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
}

.speechBubble {
  position: relative;
  width: 60%;
  margin: 10px auto;
  padding: 5px;
  border-radius: 9999px;
  background-color: var(--color-Text-Usually);
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-Text-Accent);
}

.speechBubble::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 15px 10px 0 10px;
  border-color: #fefefe transparent transparent;
  translate: -50% 100%;
}

.speechBubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 11.4px 7.6px 0 7.6px;
  border-color: #fefefe transparent transparent;
  translate: -50% 100%;
}

.cta_request_materials ul {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.cta_request_materials ul li {
  width: 31%;
  background: var(--color-Background-Secondary);
  color: #333333;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3em;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
}

.pc_br {
  display: block;
}

.fv-cta {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.cta_request_materials a.cta_btn {
  width: 100%;
  min-width: 500px;
  margin-top: 30px;
}

@media (min-width: 950px) and (max-width: 1100px) {
  .cta_request_materials a.cta_btn {
    min-width: 400px;
  }
}@media (min-width: 750px) and (max-width: 950px) {
  .cta_request_materials a.cta_btn {
    min-width: 300px;
  }
}

@media (max-width: 1350px) {
  .speechBubble {
    font-size: 2.2vw;
  }

  .cta_request_materials h2 {
    font-size: 4vw;
  }

  .cta_request_materials ul li {
    font-size: 1.45vw;
  }

  .cta_request_materials a.cta_btn {
    padding: 0.8rem 0;
    margin-top: 1.5rem;
  }
}

@media (max-width: 750px) {
  .cta_request_materials .column_wrap,
  .cta_request_materials ul {
    flex-direction: column;
  }

  .cta_request_materials .cta_left {
    width: 100%;
    order: 2;
  }

  .cta_request_materials .cta_right {
    width: 100%;
    order: 1;
    margin-bottom: 60px;
  }

  .speechBubble {
    font-size: 5vw;
  }

  .cta_request_materials h2 {
    font-size: 9vw;
    margin-bottom: 3rem;
  }

  .cta_request_materials ul {
    width: 100%;
    gap: 15px;
  }

  .cta_request_materials ul li {
    width: 100%;
    font-size: 4vw;
    padding: 20px 0;
  }

  .cta_request_materials a.cta_btn {
    width: 100%;
    min-width: 0;
    margin-top: 3rem;
  }

  .pc_br {
    display: inline;
  }
}

a.cta_btn {
  position: relative;
  display: inline-block;
  color: var(--color-Text-Usually);
/*  font-size: 30px;*/
  font-size: 24px;
  padding: 0.8rem 2rem;
  background-color: var(--color-Background-CTA);
  text-align: center;
  text-decoration: none;
  transition-duration: 0.3s;
  border-radius: 50px;
  font-weight: 700;
  margin-top: 40px;
  border: 4px solid #E8430C;
  box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
  z-index: 1;
}

a.cta_btn:hover {
  background: var(--color-Background-Primary);
  color: var(--color-Background-CTA);
  border: 4px solid #E8430C;
}

a.cta_btn span {
  position: relative;
  padding-right: 80px;
}

a.cta_btn span:before {
  content: '';
  width: 50px;
  height: 50px;
  border: 4px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -25px;
  transition-duration: 0.3s;
}

a.cta_btn span:after {
  content: '';
  width: 18px;
  height: 18px;
  border: 0;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  transform: rotate(135deg);
  position: absolute;
  top: 50%;
  right: 16px;
  margin-top: -13px;
  transition-duration: 0.3s;
}

a.cta_btn:hover span:before {
  border: 4px solid #E8430C;
}

a.cta_btn:hover span:after {
  border-top: 4px solid #E8430C;
  border-right: 4px solid #E8430C;
}

@media (width > 1366px) {
  a.cta_btn {
/*    font-size: 30px;*/
    font-size: 22px;
  }
  a.cta_btn span {
    padding-right: 60px;
  }
}

@media (width < 1350px) {
  a.cta_btn {
    font-size: 2vw;
    margin-top: 3%;
  }

  a.cta_btn span:before {
    width: 3.5vw;
    height: 3.5vw;
/*    margin-top: -6%;*/
    margin-top: -4%;
  }

  a.cta_btn span:after {
    width: 1.5vw;
    height: 1.5vw;
    right: 1vw;
/*    margin-top: -3.5%;*/
    margin-top: -2.5%;
  }
}

@media (width < 768px) {
  a.cta_btn span {
    padding-right: 60px;
  }
}

@media (width < 750px) {
  a.cta_btn {
    font-size: 4.5vw;
    margin-top: 10%;
    width: 100%;
    z-index: 1;
  }

  a.cta_btn span {
    padding-right: 20%;
    font-size: 1.1rem;
  }

  a.cta_btn span:before {
    width: 7vw;
    height: 7vw;
    margin-top: -5.5%;
  }

  a.cta_btn span:after {
    width: 2.5vw;
    height: 2.5vw;
    right: 2.3vw;
    margin-top: -2.5%;
  }
}

@media (width < 450px) {
  a.cta_btn {
    font-size: 5vw;
    padding: 0.8rem 1rem;
  }
  a.cta_btn span {
    font-size: 0.9rem;
  }
  a.cta_btn span:before {
    width: 8vw;
    height: 8vw;
/*    margin-top: -1.5%;*/
    margin-top: -4.5%;
    border: 3px solid #fff;
  }

  a.cta_btn span:after {
/*    right: 2.7vw;
    margin-top: 7.5%;*/
    right: 3vw;
    margin-top: -1.5%;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  }

  a.cta_btn:hover span:before {
    border: 3px solid #E8430C;
  }

  a.cta_btn:hover span:after {
    border-top: 3px solid #E8430C;
    border-right: 3px solid #E8430C;
  }
}


/*---------------------------------
    cta top
---------------------------------*/
.cta.section_wrapper {
  /*      background-color: #fff8f3;*/
  background-color: #fff;
  padding: 0 0 170px;
}

.section_wrapper.only-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .section_wrapper.only-sp {
    display: block;
  }
}
.cta h2 {
  font-size: 34px;
  font-weight: bold;
  color: #333333;
  text-align: center;
  margin-bottom: 64px;
}

.cta h2 span {
  font-size: 1.6rem;
  color: #ed582d;
}

.cta_flex_r {
  margin: 24px auto 0;
}

.cta_flex_r .title {
  color: #ed582d;
  font-size: 16px;
  font-weight: 700;
}

.cta_flex_r .list {
  margin: 16px auto 32px;
}

.cta_flex_r .list li {
  padding-left: 1.2em;
  position: relative;
}

.cta_flex_r .list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.cta_btn {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 9999px;
  text-align: center;
  transform: translate(0, 0);
  transition: 0.3s;
}

.cta_btn.pc_only {
  display: none;
}

.cta_btn a {
  width: 100%;
  height: 100%;
  padding: 20px 0;
  display: inline-block;
}

.cta_btn p {
  display: inline-block;
}

.cta_btn p:first-child {
  color: #e2ec48;
  font-weight: 700;
  font-size: 18px;
}

.cta_btn p:last-child {
  color: white;
  font-weight: 700;
  font-size: 24px;
  padding-right: 40px;
  position: relative;
}

.cta_btn p:last-child::before {
  content: "";
  width: 30px;
  height: 18px;
  background-image: url(/ai-ocr/img/top/icon_arrow_down.svg);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.cta .list li {
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .cta_flex {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1024px;
    padding: 0 2%;
    margin: 0 auto;
    gap: 3%;
  }

  .cta_flex_l {
    width: 42%;
  }

  .cta_flex_r {
    width: 55%;
    margin: 0;
  }
}

@media (max-width: 768px) {
  .cta .section_inner {
    width: 90%;
    margin-inline: auto;
  }

  .cta h2 span {
    font-size: 14px;
  }

  .cta h2 {
    font-size: 25px;
  }
}



/*---------------------------------
202507 top 中間CTA改修
** cta-202507 **
---------------------------------*/
.cta-202507.section_wrapper {
  width: 100%;
  background-color: #ec7b5a;
  /*  background-color: #E95429;
ity: 76%;*/
}

.cta-202507.section_wrapper .section_inner {
  margin: 0 auto;
  padding: 65px 12px 95px;
}

.cta-202507.section_wrapper .section_inner h2 {
  margin-bottom: 30px;
  font-size: 34px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.cta-202507.section_wrapper .section_inner h2 span {
  font-size: 1.6rem;
  color: #e8440b;
}

.cta-202507.section_wrapper .section_inner .cta_flex {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 30px auto;
  padding: 36px 0px;
  width: 100%;
  max-width: 1000px;
  background: #fff;
  border-radius: 16px;
}

.cta-202507.section_wrapper .section_inner .cta_flex p {
  color: #333;
}

.cta-202507.section_wrapper .section_inner .cta_flex_l {
  align-items: center;
  align-self: center;
  padding: 0 12px;
  width: 50%;
  border-right: 1px solid #9f9c9c;
}

.cta-202507.section_wrapper .section_inner .cta_flex_r {
  flex: 1;
  align-items: center;
  align-self: center;
  padding: 0 12px;
  width: 50%;
}

.cta-202507.section_wrapper .section_inner .cta_flex img {
  display: block;
  margin: 0 auto 12px;
  width: auto;
  height: 100px;
  text-align: center;
}

.cta-202507.section_wrapper .section_inner p.title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.cta-202507.section_wrapper .section_inner p.txt-cv {
  margin-bottom: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

.cta-202507.section_wrapper .section_inner p.txt-a {
  margin: 12px 0;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}

.cta-202507.section_wrapper .section_inner p.txt-b {
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
}
/*
.cta-202507.section_wrapper .section_inner p.tel {
  color: #e8440b;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
}
*/
.cta-202507.section_wrapper .section_inner .cta_btn {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 400px;
  background-color: #fff;
  border-radius: 10px;
/*    border: 2px solid #0abe62;*/
  border: 2px solid #E8440B;
  margin: 0 auto;
  text-align: center;
  transition: 0.3s;
  filter: drop-shadow(6px 6px 6px rgba(0, 0, 0, 0.15));
}

.cta-202507.section_wrapper .section_inner .cta_btn::before {
  display: block;
  content: "";
  position: absolute;
  z-index: -1;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border-radius: 10px;
/*    background: #07dd7c;
  background: linear-gradient(
    to bottom,
    rgba(7, 221, 124, 1) 0%,
    rgba(11, 188, 96, 1) 100%
  );*/
  background: #E8440B;
  background: linear-gradient(
    to bottom,
    rgba(232, 123, 56, 1) 0%,
    rgba(232, 68, 11, 1) 100%
  );
  
  transition: all 0.3s;
}

.cta-202507.section_wrapper .section_inner .cta_btn.pc_only {
  display: none;
}

.cta-202507.section_wrapper .section_inner .cta_btn a {
  width: 100%;
  height: 100%;
  padding: 15px 0;
  display: inline-block;
}

.cta-202507.section_wrapper .section_inner .cta_btn p {
  color: white;
  font-weight: 700;
  font-size: 22px;
  padding-right: 40px;
  position: relative;
  transition: all 0.3s;
}

.cta-202507.section_wrapper .section_inner .cta_btn p::before {
  content: "";
  width: 30px;
  height: 18px;
  background-image: url("/tanomu/assets/images/icon_arrow_down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.3s;
}

.cta-202507.section_wrapper .section_inner .cta_btn:hover p {
/*    color: #0abe62;*/
  color: #E8440B;
}

.cta-202507.section_wrapper .section_inner .cta_btn:hover::before {
  opacity: 0;
}

.cta-202507.section_wrapper .section_inner .cta_btn:hover p::before {
  background-image: url("/tanomu/assets/images/icon_arrow_down_h.svg");
  transform: translateY(-25%);
}

@media screen and (max-width: 768px) {
  .cta-202507.section_wrapper .section_inner {
    margin: 0 auto;
/*      padding: 45px 12px 75px;*/
    padding: 12px;
  }

  .cta-202507.section_wrapper .section_inner h2 {
    margin-bottom: 20px;
    font-size: calc(36vw / 768 * 100);
    font-weight: bold;
    color: #fff;
    text-align: center;
  }

  .cta-202507.section_wrapper .section_inner h2 span {
    font-size: 1.6rem;
    color: #ed582d;
  }

  .cta-202507.section_wrapper .section_inner .cta_flex {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px auto;
    padding: 24px 12px;
    width: 96%;
  }

  .cta-202507.section_wrapper .section_inner .cta_flex_l {
    padding: 36px 12px;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #9f9c9c;
  }

  .cta-202507.section_wrapper .section_inner .cta_flex_r {
    margin: 0 auto;
    padding: 12px;
    width: 100%;
  }

  .cta-202507.section_wrapper .section_inner .cta_flex img {
    display: block;
    margin: 0 auto 12px;
    width: auto;
    height: 80px;
    text-align: center;
  }

  .cta-202507.section_wrapper .section_inner .cta_btn p {
    padding-right: calc(25vw / 390 * 100);
    font-size: calc(20vw / 390 * 100);
  }

  .cta-202507.section_wrapper .section_inner .cta_btn p::before {
    content: "";
    width: calc(19vw / 390 * 100);
    height: calc(11vw / 390 * 100);
  }

  .cta-202507.section_wrapper .section_inner p.title {
    font-size: calc(24vw / 768 * 100);
  }

  .cta-202507.section_wrapper .section_inner p.txt-cv {
    margin-bottom: 8px;
    font-size: 1rem;
  }

  .cta-202507.section_wrapper .section_inner p.txt-a {
    margin: 12px 0;
    font-size: 0.88rem;
  }

  .cta-202507.section_wrapper .section_inner p.txt-b {
    font-size: 0.78rem;
  }

  .cta-202507.section_wrapper .section_inner p.tel {
    position: relative;
    z-index: 1;
    margin-top: 12px;
    padding: 8px 12px;
/*    align-items: center;
    justify-content: center;
    gap: 5px;*/
    width: auto;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.15));
    background-color: #E8440B;
    border-radius: 10px;
  }
  .cta-202507.section_wrapper .section_inner p.tel a{
    display: block;
  }
  .cta-202507.section_wrapper .section_inner p.tel a::before{
    display: inline-block;
    content: "\f879";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    color: #fff;
    padding-right: 1.4rem;
  }
}
