@charset "UTF-8";
html {
  font-size: 62.5%;
}

@font-face {
  font-family: "NotoSansJP";
  src: url(../fonts/NotoSansJP-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "NotoSansJP";
  src: url(../fonts/NotoSansJP-Medium.ttf) format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: "NotoSansJP";
  src: url(../fonts/NotoSansJP-Bold.ttf) format("truetype");
  font-weight: 900;
}
/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-break: break-all;
}

html,
body {
  margin: 0 auto;
  padding: 0;
  font-family: "NotoSansJP";
  font-size: 18px;
  text-align: left;
  color: #333;
  min-width: 840px;
}

@media screen and (max-width: 767px) {
  html,
  body {
    min-width: 240px;
    max-width: 767px;
  }
}
/*img*/
img {
  border-style: none;
  vertical-align: bottom;
  padding: 0;
  line-height: 0em;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0 auto;
  text-align: center;
}

/*txt*/
p {
  line-height: 1.5em;
  margin: 0 0 1em;
  padding: 0;
}

p:last-child {
  margin: 0;
}

strong {
  font-weight: bold;
}

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

.under_line {
  text-decoration: underline;
}

.line_through {
  text-decoration: line-through;
}

.white {
  color: #fff;
}

.black {
  color: #333;
}

.gy {
  color: #666;
}

.red {
  color: #f35222;
}

.green {
  color: #69b600;
}

.brown {
  color: #c17f28;
}

.marker_y {
  background: linear-gradient(to bottom, rgba(255, 241, 0, 0) 0%, rgba(255, 241, 0, 0) 74%, rgb(255, 241, 0) 75%, rgb(255, 241, 0) 100%);
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.small {
  font-size: 16px;
}

/*link*/
a {
  color: inherit;
  text-decoration: none;
}

.opa {
  transition: opacity 0.3s;
}

.opa:hover {
  opacity: 0.7;
}

/*メイン*/
#content {
  overflow: hidden;
}

section {
  width: 100%;
  margin: 0 auto;
}

.maincontent {
  padding: 0;
  margin: 0 auto;
  width: 900px;
}

@media screen and (max-width: 767px) {
  .maincontent {
    width: 92.5%;
  }
}
/*tit*/
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.25em;
}

h2 {
  font-size: 58px;
  text-align: center;
  color: #69b600;
  font-weight: 900;
}

h3 {
  font-size: 32px;
  text-align: center;
  line-height: 1.5em;
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 10vw;
    letter-spacing: normal;
  }
  h3 {
    font-size: 5.3vw;
  }
}
/* ---------------ヘッダー（FV)---------------- */
header {
  background: url(../images/header-bg.png) no-repeat center bottom/cover;
  background-size: 120%;
}

#FV {
  position: relative;
}
#FV p {
  position: absolute;
  right: 31%;
  bottom: 40px;
  font-weight: bold;
  color: #0027b3;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  #FV p {
    right: 10%;
    bottom: 30px;
    font-size: 15px;
  }
}

#FV {
  width: 1000px;
  margin: 0 auto;
}

#FV .logo {
  margin-top: 60px;
}

#FV h1 {
  padding-bottom: 30px;
  position: relative;
  top: -50px;
}

#FV h1 img {
  padding-bottom: 30px;
}

@media screen and (max-width: 767px) {
  #FV {
    width: auto;
  }
  #FV h1 {
    position: static;
    padding-bottom: 20px;
  }
  #FV .logo {
    margin: 20px auto 15px;
    width: 75%;
  }
}
/* ---------------お悩み--------------- */
#worry .worry-cont {
  position: relative;
  top: -80px;
}

#worry h3 {
  margin-bottom: 35px;
}

#worry .worry-list {
  margin-bottom: 30px;
}

#worry .question-ttl {
  position: relative;
  display: flex;
  background: #cee59d;
  font-size: 28px;
  font-weight: 900;
  padding: 20px 120px 15px 20px;
  line-height: 1.5em;
  cursor: pointer;
}

#worry .question-ttl:before {
  content: url("../images/Question.png");
  margin-right: 15px;
  display: block;
}

#worry .question-ttl:after {
  position: absolute;
  display: block;
  font-family: "Font Awesome 5 Free";
  content: "+";
  top: 20px;
  right: 30px;
  font-size: 38px;
  color: #f65a0f;
  transition: all 0.3s ease-in-out;
}

#worry .question-ttl.open:after {
  transform: rotate(-180deg);
  top: 20px;
  font-size: 28px;
  content: "\f068";
}

#worry .answer-text {
  background-color: #fff;
  border: solid 0.5px #999;
  display: none;
  padding: 20px 40px 20px 80px;
}

#worry .answer-text.default {
  display: block;
}

#worry .method-hidden:after {
  position: absolute;
  display: block;
  font-family: "Font Awesome 5 Free";
  content: "+";
  top: 20px;
  right: 50%;
  font-size: 38px;
  color: #f65a0f;
  transition: all 0.3s ease-in-out;
  z-index: 50;
}

#worry .method-hidden.open:after {
  transform: rotate(-180deg);
  top: 20px;
  font-size: 28px;
  content: "\f068";
}

@media screen and (max-width: 767px) {
  #worry {
    margin-top: 20px;
    margin-bottom: 60px;
  }
  #worry .worry-cont {
    position: static;
  }
  #worry .worry-list {
    margin-bottom: 20px;
  }
  #worry .question-ttl {
    position: relative;
    padding: 15px 60px 15px 15px;
    font-size: 5vw;
    line-height: 1.25em;
  }
  #worry .question-ttl:after {
    top: 13px;
    right: 20px;
  }
  #worry .answer-text {
    padding: 20px 30px 20px 30px;
  }
}
/* --------------- 解決方法 --------------- */
#method {
  padding-bottom: 50px;
  background: url(../images/method-bg01.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 120%;
  z-index: 1;
}

#method h3 {
  margin: 10px 0 40px;
}

/*4つのコンテンツ*/
#method .method-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 10px);
  justify-content: space-between;
}

#method .method-list.start {
  align-items: flex-start;
}

#method .sub-ttl {
  font-size: 24px;
  color: #fff;
  background-color: #9dcb3c;
  text-shadow: 1px 1px #000;
  text-align: center;
  padding: 10px 0;
}

/*「過払金請求」「任意整理」*/
#method .method-item {
  width: calc(50% - 10px);
  margin-bottom: 30px;
  background-color: #fff;
  outline: 2px solid #9dcb3c;
  outline-offset: -2px;
  border-radius: 15px;
  padding-bottom: 20px;
}

/*「個人再生」「自己破産」*/
#method .method-ttl {
  width: calc(50% - 10px);
  margin-bottom: 30px;
  background-color: #fff;
  outline: 2px solid #9dcb3c;
  outline-offset: -2px;
  border-radius: 15px;
  position: relative;
  min-height: auto;
}

#method .method-ttl.open {
  min-height: 30rem;
}

/*アコーディオンで現れるエリア*/
#method .method-box {
  display: none; /*はじめは非表示*/
  margin-top: 20px;
}

#method .method-ttl .arrow {
  display: block;
  margin: -20px auto 0;
  position: relative;
  top: 15px;
}

#method .method-ttl.open .arrow {
  transform: rotate(-180deg);
}

/*共通*/
#method h4 {
  font-size: 37px;
  font-weight: 900;
  text-align: center;
  margin: 15px 0 10px;
}

#method p {
  font-size: 20px;
  padding: 10px 45px 10px;
}

#method .recommend {
  margin: 0 45px;
}

#method .recommend h5 {
  background-color: #ff7856;
  color: #fff;
  padding: 5px 0px;
  text-align: center;
}

#method .recommend ul {
  font-size: 18px;
  padding: 15px 15px 10px;
  background-color: #ffeee4;
}

#method .recommend ul li:before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  content: "\f058";
  font-weight: 900;
  color: #ff7856;
  padding-right: 3px;
}

#method .recommend ul li {
  margin-bottom: 10px;
  line-height: 1.3em;
}

@media screen and (max-width: 767px) {
  #method {
    padding-bottom: 20px;
  }
  #method h2 {
    width: 85%;
    margin: 0 auto;
  }
  #method h3 {
    font-weight: 600;
  }
  #method .method-list {
    display: block;
    width: 100%;
  }
  #method .sub-ttl {
    font-size: 5vw;
    font-weight: 600;
  }
  #method .method-item {
    width: 100%;
  }
  #method .method-ttl {
    width: 100%;
  }
  #method p {
    padding: 10px 20px 0;
  }
  #method .recommend {
    margin: 0 20px;
  }
  #method .recommend ul {
    font-size: 4.5vw;
  }
}
/* --------------- 過払金cont01 --------------- */
#cont01 {
  position: relative;
  padding: 15px 0 150px;
  background-position: center top, center bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: 100%, 100%;
  background-color: #ff8b76;
}

#cont01 h2 {
  margin-top: 50px;
}

#cont01 p {
  text-align: center;
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 0;
}

@media screen and (max-width: 767px) {
  #cont01 {
    padding: 10px 0 75px;
  }
  #cont01 h2 {
    margin: 30px 0 20px;
  }
  #cont01 p {
    padding: 0px;
  }
}
/* --------------- 過払金cont02 --------------- */
#cont02 {
  padding: 0px 0 120px;
}

#cont02 h2 {
  width: 100%;
  margin-bottom: 20px;
}

#cont02 p {
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  #cont02 {
    padding: 30px 0 100px;
  }
  #cont02 h2 {
    margin-bottom: 5px;
  }
  #cont02 p {
    font-size: 5.5vw;
    letter-spacing: -0.05em;
  }
}
/* --------------- 過払金cont03 --------------- */
#cont03 {
  background: url(../images/cont03-bg.png) repeat center top/auto;
  position: relative;
  padding: 80px 0 80px;
  z-index: 0;
  border-bottom-left-radius: 50% 15%;
  border-bottom-right-radius: 50% 15%;
}

#cont03 .att-box {
  margin-top: 10px;
  background-color: #fff;
  padding-bottom: 30px;
}

#cont03 .ttl-attention img {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}

#cont03 .catch p {
  color: #000;
  font-size: 50px;
  text-align: center;
  line-height: 1.25em;
  margin-top: 10px;
}

#cont03 h2 {
  color: #fff;
  background-color: #231815;
  font-size: 58px;
  font-weight: bold;
  text-align: center;
  padding: 8px 0 12px;
  margin-bottom: 30px;
}

#cont03 .att-box p {
  color: #f35222;
  text-align: left;
  font-size: 30px;
  padding: 0 40px;
  line-height: 1.5em;
  margin-top: 25px;
}

#cont03 .note {
  color: #000;
  font-size: 16px;
  line-height: 1.5em;
  margin-top: 10px;
  padding: 0;
}

@media screen and (max-width: 767px) {
  #cont03 {
    padding-bottom: 60px;
    border-bottom-left-radius: 50% 10%;
    border-bottom-right-radius: 50% 10%;
  }
  #cont03 h2 {
    font-size: 9vw;
  }
  #cont03 .catch p {
    font-size: 8vw;
    letter-spacing: -0.05em;
    margin-top: 0;
  }
  #cont03 .att-box {
    padding-bottom: 20px;
  }
  #cont03 .att-box p {
    font-size: 5vw;
    font-weight: 600;
    padding: 0 15px;
    text-align: center;
  }
  #cont03 .att-box figure {
    padding: 0 20px;
  }
  #cont03 .note {
    padding: 0 25px;
  }
}
/* --------------- 実績 --------------- */
#achievements {
  margin: 80px 0 80px;
}

#achievements h2 {
  margin-bottom: 5px;
}

#achievements .chart {
  display: flex;
  align-items: flex-end;
}

@media screen and (max-width: 767px) {
  #achievements {
    margin: 50px 0 50px;
  }
  #achievements h2 {
    margin-bottom: 30px;
  }
  #achievements .chart {
    display: block;
  }
  #achievements .chart figure {
    margin-bottom: 50px;
  }
  #achievements .chart figure img {
    width: 100%;
  }
}
/* ---------------ボタンエリア--------------- */
.cv {
  padding: 35px 0 35px;
  position: relative;
  background: #a7d04f;
  z-index: 10;
}

.cv h2 {
  margin-bottom: 20px;
}

.cv .cv-box {
  background-color: #fff;
  border-radius: 30px;
  padding: 20px 30px;
}

.cv .cv-box h1 {
  text-align: center;
  font-weight: bold;
  color: #d4000b;
}
@media screen and (max-width: 767px) {
  .cv .cv-box h1 {
    font-size: 15px;
    margin-bottom: 10px;
  }
}

.cv ul {
  display: flex;
  flex-wrap: wrap;
}

.cv ul li {
  flex: auto;
  width: 50%;
  margin-bottom: 5px;
}

@media screen and (max-width: 767px) {
  .cv {
    padding: 20px 0 25px;
  }
  .cv .cv-box {
    border-radius: 20px;
    padding: 20px 20px;
  }
  .cv ul {
    display: block;
    margin-bottom: 20px;
  }
  .cv ul li {
    width: 100%;
    margin-bottom: 10px;
  }
  .cv .cv-box p {
    margin-top: 20px;
  }
}
/* --------------- 選ばれる理由 --------------- */
#reason {
  padding: 60px 0 60px;
}

@media screen and (max-width: 767px) {
  #reason {
    padding: 40px 0 30px;
  }
  #reason figure {
    width: 90%;
  }
}
/* --------------- お客様の声 --------------- */
#voice {
  background: url(../images/voice-bg.png);
  background-position: center top;
  background-repeat: repeat;
  padding: 80px 0 10px;
  display: inline-block;
  min-width: 120px;
  max-width: 100%;
}

#voice h2 {
  margin-bottom: 60px;
}

#voice .cus-voice {
  display: flex;
  margin-bottom: 50px;
}

#voice .cus-icon {
  width: 100%;
  flex-basis: 23%;
}

#voice .cus-txt {
  position: relative;
  background-color: #fff;
  border-radius: 30px;
  padding: 30px;
  flex-basis: 78%;
}

#voice .cus-txt p {
  font-size: 20px;
  line-height: 1.75em;
}

/* 吹き出し口 */
#voice .cus-txt :after {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-color: rgba(90, 230, 40, 0);
  border-top-width: 15px;
  border-bottom-width: 15px;
  border-left-width: 40px;
  border-right-width: 40px;
  margin-top: -10px;
  border-right-color: #fff;
  right: 100%;
  top: 13%;
}

@media screen and (max-width: 767px) {
  #voice {
    padding: 50px 0 40px;
  }
  #voice h2 {
    margin-bottom: 0px;
  }
  #voice .cus-voice {
    display: block;
    margin-bottom: 0px;
  }
  #voice .cus-txt {
    padding: 45px 30px 10px;
  }
  #voice .cus-icon {
    text-align: center;
    height: 70px;
  }
  #voice .cus-icon img {
    display: block;
    margin: 0 auto;
    width: 30%;
    position: relative;
    top: 25px;
    z-index: 5;
  }
  #voice .cus-txt :after {
    display: none;
  }
  #voice .cus-txt .age {
    padding: 5px 15px;
    font-size: 18px;
    font-weight: 600;
    background-color: #9ecb3c;
    margin-bottom: 10px;
  }
  #voice .cus-txt p {
    font-size: 18px;
    line-height: 1.5em;
  }
}
/* ---------------解決までの流れ---------------- */
#flow {
  padding: 100px 0 60px;
}

#flow h3 {
  font-size: 30px;
  text-align: center;
  margin: 10px 0 50px;
}

#flow .step {
  margin-bottom: 70px;
}

#flow .step:last-of-type {
  margin-bottom: 20px;
}

#flow .cv-btn {
  background-color: #dcedb9;
  border-radius: 30px;
  padding: 20px 30px;
  margin: 20px 25px;
}

#flow .cv-btn ul {
  display: flex;
  margin-bottom: 10px;
  gap: 20px;
}

#flow .cv-btn h1 {
  text-align: center;
  font-weight: bold;
  color: #d4000b;
}
@media screen and (max-width: 767px) {
  #flow .cv-btn h1 {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

#flow .kaiketsu img {
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  #flow {
    padding: 50px 0 40px;
  }
  #flow h3 {
    font-size: 5.5vw;
    margin-bottom: 30px;
  }
  #flow .cv-btn {
    border-radius: 15px;
    padding: 15px 15px;
    margin: 15px 10px 0;
  }
  #flow .cv-btn ul {
    display: block;
  }
  #flow .cv-btn ul li {
    margin-bottom: 15px;
  }
  #flow .step {
    margin-bottom: 50px;
  }
  #flow .step p {
    margin-top: 20px;
  }
  #flow .kaiketsu img {
    margin-top: 15px;
  }
}
/* ---------------費用---------------- */
#price {
  background-color: #eef6dc;
  padding: 70px 0 90px;
}

#price .catch {
  font-size: 40px;
  font-weight: 300;
  color: #333;
  line-height: 1em;
}

#price h3 {
  margin: 50px 0 50px;
  padding: 5px;
  text-align: center;
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  text-shadow: 1px 1px #000;
  background-color: #9dcb3c;
  border-radius: 30px;
  letter-spacing: 0.25em;
}

#price p {
  font-size: 38px;
  font-weight: 900;
  text-align: center;
  line-height: 0.2em;
}

#price .big {
  font-size: 75px;
  position: relative;
  top: 5px;
}

#price table {
  width: 97%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 50px auto 70px;
}

#price table th,
td {
  padding: 15px 0;
  text-align: left;
  border: none;
  border-top: 0.5px solid #3e3a39;
  /* 上罫線 */
  border-bottom: 0.5px solid #3e3a39;
  /* 下罫線 */
}

#price table th {
  width: 370px;
  font-size: 20px;
}

#price table td {
  font-size: 22px;
}

.nini p:last-of-type {
  font-size: 18px;
  font-weight: normal;
}

.kabarai-price {
  width: 900px;
  margin: auto;
}

@media screen and (max-width: 767px) {
  #price {
    padding: 40px 0 40px;
  }
  #price .catch {
    font-size: 7vw;
  }
  #price h3 {
    margin: 30px 0 10px;
    padding: 2px;
    font-size: 7vw;
    letter-spacing: 0.1em;
  }
  #price table {
    margin-top: 0;
  }
  #price table th,
  td {
    line-height: 1.5em;
    display: block;
    font-weight: 600;
    background-color: #fff;
  }
  #price table th {
    font-size: 4.5vw;
    width: 100%;
    padding: 8px 20px;
    background-color: #777;
    color: #fff;
  }
  #price table td {
    font-size: 5vw;
    padding: 8px 20px;
  }
  #price p {
    font-size: 8vw;
    line-height: 1.75em;
  }
  #price .big {
    font-size: 20vw;
  }
  #price .note {
    font-size: 0.8em;
  }
  .nini p:last-of-type {
    display: block;
    position: relative;
    top: -20px;
  }
  .kabarai-price {
    width: 92.5%;
    margin: auto;
  }
}
/* ---------------事務所案内---------------- */
#company {
  padding: 90px 0 30px;
}

#company h2 {
  margin-bottom: 60px;
}

#company .message-pc {
  margin-bottom: 45px;
}

#company .info table {
  width: 85%;
  margin: 0 auto 50px;
  border-collapse: collapse;
  border-spacing: 0;
}

#company .info table th,
td {
  padding: 15px 0;
  font-size: 18px;
  text-align: left;
  border: none;
  border-top: 0.5px solid #777;
  /* 上罫線 */
  border-bottom: 0.5px solid #777;
  /* 下罫線 */
}

#company .info table th {
  width: 180px;
  padding-left: 10px;
}

#company .info table td {
  padding: 0.75em 0;
  border-bottom: 0.5px solid #777;
  line-height: 1.5em;
}

#company .info table tr:first-child th,
#company .info table tr:first-child td {
  border-top: none;
}

#company .info table tr:last-child th,
#company .info table tr:last-child td {
  border-bottom: none;
}

#company h4 {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.5em;
}

#company .area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#company .area-info {
  width: calc(50% - 10px);
  background-color: #eae2d0;
  font-size: 20px;
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 15px;
}

#company .area-info .guide {
  font-size: 0.9em;
}

#company .area h5 {
  font-size: 28px;
  background-color: #fff;
  padding: 0.25em;
  margin-bottom: 10px;
}

#company .area img {
  margin-top: 0px;
}

@media screen and (max-width: 767px) {
  #company {
    padding: 50px 0 10px;
  }
  #company h2 {
    margin-bottom: 40px;
  }
  #company .message-sp {
    background-color: #f1ecef;
    padding: 25px 15px;
    margin-bottom: 25px;
  }
  #company .message-sp img {
    width: 70%;
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  #company .message-sp h3 {
    color: #f35222;
    font-weight: 900;
    margin-bottom: 10px;
  }
  #company .info table {
    width: 100%;
  }
  #company .info table th {
    width: 110px;
    font-weight: 900;
  }
  #company h4 {
    font-size: 5.5vw;
    line-height: 1.5em;
    font-weight: 900;
    color: #4d2a0b;
  }
  #company .area-info {
    width: 100%;
    margin-bottom: 20px;
    padding: 20px;
  }
  #company .area-info:nth-child(even) {
    background-color: #cee59d;
  }
  #company .area-info p {
    margin-bottom: 10px;
  }
  #company .area h5 {
    font-size: 6vw;
    text-align: center;
    font-weight: 600;
  }
  #company .area img {
    margin-top: 5px;
  }
}
/* ---------------フッター---------------- */
footer {
  text-align: center;
  background-color: #9dcb3c;
  color: #fff;
  padding: 20px 0;
  text-shadow: 1px 1px #000;
}

footer a {
  color: #fff;
}

footer .copy {
  margin-bottom: 5px;
}

footer .privacy {
  text-decoration: underline;
}

@media print, screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* 
// スマホ追従ボタン */
#footer_CTA {
  position: fixed;
  background-color: rgba(72, 72, 72, 0.86);
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999999;
  /*はじめは非表示*/
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 6px 0;
}
#footer_CTA small {
  display: unset;
}
#footer_CTA img {
  width: 23px;
}
#footer_CTA .footer_CTA_call_img {
  width: 72%;
  margin: 7px 0;
  margin-left: 3px;
}
#footer_CTA .footer_CTA_mail_img {
  width: 80%;
  margin: 7px 0;
  margin-left: 3px;
}

.footer_CTA_call {
  display: flex;
  align-items: center;
  width: 48%;
  background-color: #004390;
  color: white;
  font-size: 80%;
  padding: 8px 13px;
  font-weight: 500;
  border-radius: 41px;
  justify-content: center;
}
.footer_CTA_call p {
  text-align: center;
  line-height: 1.3;
  font-size: 14px;
  margin-left: 5px;
  font-weight: bold;
}

.footer_CTA_mail {
  display: flex;
  align-items: center;
  width: 52%;
  background-color: #ff641a;
  color: white;
  font-size: 80%;
  padding: 8px 13px;
  font-weight: 500;
  border-radius: 41px;
  justify-content: center;
  position: relative;
  font-weight: bold;
}
.footer_CTA_mail::before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0e0";
  font-size: 21px;
  color: white;
  left: 15px;
  top: 53%;
  rotate: initial;
  transform: translateY(-50%);
}
.footer_CTA_mail p {
  margin-left: 30px;
  text-align: center;
}

.footer_CTA_mail_night {
  width: 100%;
  font-size: 100%;
  font-weight: bold;
  border-radius: 69px;
  padding: 10px 0 12px;
  text-decoration: underline;
}
.footer_CTA_mail_night p {
  margin-left: 20px;
}
.footer_CTA_mail_night::before {
  left: 77px;
}

#footer_CTA .attention {
  text-align: center;
  padding: 5px 0;
}
#footer_CTA .attention img {
  width: 75%;
  display: block;
  margin: 0px auto;
}

.marquee {
  margin: 0px auto 5px;
  background: #980000;
  overflow: hidden;
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  gap: 1rem;
}

.marquee .marquee-inner {
  animation: marquee 20s linear infinite;
  font-size: 15px;
  letter-spacing: 0.12em;
  padding: 5px 0;
  color: #fff;
}

@keyframes marquee {
  0% {
    translate: 0;
  }
  100% {
    translate: calc(-100% - 1rem);
  }
}
@media screen and (max-width: 768px) {
  .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
}/*# sourceMappingURL=main.css.map */