/*
Theme Name: a
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, u, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, input {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  color: #000;
  font: inherit;
  vertical-align: baseline;
  line-height: 1.6;
  font-family: "Zen Kaku Gothic New","Noto Sans JP","Poppins","游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
input {
  font-family:"Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  font: inherit;
  --scrollbar-width: 15px;
  background: #FFF8F0;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  table-layout: fixed;
}
a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}
a:hover img {
  opacity: 0.8;
}
img, iframe {
  vertical-align: bottom;
  max-width: 100%;
  background: transparent;
  transition: 0.3s;
}
input[type=submit], input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
        appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type=submit]::-webkit-search-decoration, input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus, input[type=button]::focus {
  outline-offset: -2px;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}
.grecaptcha-badge {
  display: none;
}
.clear:after {
  content: "";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}
.df {
  display: flex;
}
.sb {
  justify-content: space-between;
}
.fw {
  flex-wrap: wrap;
}
.w90 {
  margin: 0 auto;
  width: 90%;
}
.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 500ms;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
.pageTop .bg1 {
    position: relative;
}
.pageTop .bg1 .bg1Wrap {
    background: #f05521;
    background: linear-gradient(0deg, rgb(254 182 123) 0%, rgb(239 83 31) 100%);
}
.pageTop .bg1:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3835/539;
  background: url('/wp-content/themes/a/img/bg1Top.png')0 0 no-repeat;
  background-size: 100%;
}
.pageTop .bg1:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3831/410;
  background: url('/wp-content/themes/a/img/bg1Bottom.png')0 0 no-repeat;
  background-size: 100%;
}
.topBlock1 {
    margin-bottom: 180px;
}
.topBlock1 h2 img {
    display: block;
    margin: 0 auto;
}
.topBlock1 .txt1 {
    font-size: 22px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    margin-top: 20px;
}
  :root{
    --bg: #e96439;        /* 背景色 */
    --ring: 255,255,255;  /* 輪っかの色（RGB） */
    --size: 80px;        /* 波紋の直径 */
    --border: 4px;        /* 輪っかの太さ */
    --duration: 2.4s;     /* アニメーション時間 */
  }
.ripple{
  position:relative;
  width:var(--size);
  height:var(--size);
  display:grid;
  place-items:center;
  isolation:isolate;
}
.ripple .label {
    position: relative;
    z-index: 2;
    color: #fff;
    font-weight: 700;
    letter-spacing: .02em;
    font-size: 9px;
}
.ripple i{
  position:absolute;
  inset:0;
  border-radius:50%;
  border:var(--border) solid rgba(var(--ring), .55);
  filter: blur(0.2px);
  box-shadow: 0 0 18px rgba(var(--ring), .22) inset, 0 0 22px rgba(var(--ring), .22);
  opacity: 0;
  animation: ripple var(--duration) ease-out infinite;
}
.ripple i:nth-child(2){ animation-delay: calc(var(--duration) * .33); }
.ripple i:nth-child(3){ animation-delay: calc(var(--duration) * .66); }
.ripple i:nth-child(1){
  animation-name: rippleFadeIn;
}
@keyframes rippleFadeIn {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: scale(0.55);
  }
  70% {
    opacity: 0.35;
    transform: scale(1.0);
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    transform: scale(0.55);
    opacity: 0.9;
  }
  70% {
    opacity: 0.35;
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}
.topBlock1 .box1 {
    width: 90%;
    padding: 30px 0;
    position: absolute;
    top: 250px;
    left: 0;
    right: 0;
    margin: auto;
}
.rashisaBnr2 {
    position: absolute;
    right: -4%;
    top: 130px;
    overflow: hidden;
    width: 316px;
    border-radius: 10px;
    z-index: 21;
}
.topMessageWrap {
    height: 100vh;
}
.topMessage {
    width: min(1444px, 90%);
    margin: auto;
    background: #FFF3EC;
    box-sizing: border-box;
    padding: 50px;
    border-radius: 10px;
}
.topMessage.fixed {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: min(1444px, 90%);
}
.topMessage .box1 {
  width: 90%;
  margin: 10px auto;
  align-items: center;
}
.topMessage .box1 .txt1 {
    font-size: 20px;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.8s ease;
    position: absolute;
    transform: translate(0,-50%);
    width: 90%;
}
.topMessage .txt1.active {
  opacity: 1;
}
.topMessage .box1 .left {
    width: 45%;
    padding-right: 5%;
    position: relative;
}
.topMessage .box1 .right {
    width: 50%;
}
.topMessage.fixed {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(1444px, 90%);
  z-index: 1000;
}
.topProf {
    width: min(1200px,90%);
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    align-items: center;
}
.topProf > img {
    width: 45%;
}
.topProf .right{
  width: 55%;
  padding: 5%;
  box-sizing: border-box;
}
.topProf .right .txt1 {
    font-size: 16px;
    font-weight: 700;
}
.topProf .right h2 {
    color: #ED4E1D;
    font-size: 39px;
    margin: 10px 0 30px;
}
.topProf .right h2 span {
    color: #3B3B3B;
    font-size: 14px;
    margin-left: 10px;
}
.topProf .right .box1 p {
    background: #FFF3EC;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    padding: 5%;
    box-sizing: border-box;
}
.topPholosophy {
    width: min(1210px,90%);
    margin: 20px auto 0;
}
.topPholosophy .box1{
  align-items: center;
  flex-wrap: wrap;
}
.topPholosophy .box1 ul{
  width: 100%;
}
.topPholosophy .box1 .tit1 {
    width: 46%;
    margin-right: 4%;
}
.topPholosophy .right {
    width: 46%;
}
.topPholosophy .box1 .tit1 span {
    display: block;
    font-size: 22px;
    font-weight: 700;
    margin-top: -6px;
}
.topPholosophy .box1 ul{
  margin-top: 40px;
}
.topPholosophy .box1 ul li {
    width: 30%;
    background: #EFA123;
    border-radius: 10px;
    position: relative;
    margin-top: 100px;
    padding: 100px 40px 30px;
    box-sizing: border-box;
}
.topPholosophy .box1 ul li:nth-child(2) {
    background: #EF7923;
}
.topPholosophy .box1 ul li:nth-child(3) {
    background: #EF5523;
}
.topPholosophy .box1 ul li img {
    position: absolute;
    top: -70px;
    width: fit-content;
    height: 130px;
    left: 0;
    right: 0;
    margin: auto;
}
.topPholosophy .box1 ul li h3 {
    font-family: "Montserrat";
    display: block;
    color: #fff;
    text-align: center;
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.topPholosophy .box1 ul li h3 span {
    display: block;
    color: #fff;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    margin-top: -10px;
}
.topPholosophy .box1 ul li p {
    color: #fff;
    font-size: 15px;
    margin-top: 30px;
}
.bg2 {
    margin-top: 200px;
    background: #FFB980;
    background: linear-gradient(0deg, rgba(255, 185, 128, 1) 0%, rgba(237, 78, 29, 1) 100%);
    border-radius: 20px;
    padding: 200px 0 1px;
}
.topService {
    width: min(1200px,90%);
    margin: 0 auto;
}
.topService h2 {
    text-align: center;
}
.topService h2 span {
    display: block;
    text-align: center;
    color: #ffff;
    font-size: 15px;
    margin-top: -6px;
}
.topService .box1 {
    margin-top: 100px;
}
.topService .box1 h3 {
    width: fit-content;
    margin: 0 auto;
    background: #EFA124;
    color: #fff;
    padding: 14px 30px 14px 87px;
    position: relative;
    border-radius: 50px;
    font-size: 28px;
    font-weight: 700;
}
.topService .box1 h3:before {
    content: "";
    display: block;
    width: 58px;
    height: 58px;
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    background: url(/wp-content/themes/a/img/iconService1.svg)0 0 no-repeat;
    background-size: 100%;
    margin: auto;
}
.topService .box1 h3:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 15px solid #EFA124;
    border-bottom: 0;
    position: absolute;
    bottom: -13px;
    left: 0;
    right: 0;
    margin: auto;
}
.topService .box1 ul {
    flex-wrap: wrap;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
.topService .box1 ul li {
    width: 49%;
    background: #fff;
    margin-top: 40px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.topService .box1 ul li h4 {
    padding: 30px 0 40px;
    text-align: center;
    position: relative;
    margin-top: 40px;
    font-size: 25px;
    font-weight: 700;
    color: #ED4E1D;
}
.topService .box1 ul li h4:before {
    content: "";
    display: block;
    position: absolute;
    width: 15px;
    height: 15px;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    background: url(/wp-content/themes/a/img/iconDot1.svg)0 0 no-repeat;
    background-size: 100%;
}
.topService .box1 ul li .txt1 {
    font-size: 15px;
    font-weight: 600;
    padding: 0 50px 40px;
}
.topService .box1 ul li .inner1 {
    background: #EFA124;
    position: relative;
    padding: 30px;
    margin-top: 26px;
    box-sizing: border-box;
    border-radius: 0 0 10px 10px;
}
.topService .box1 ul li .inner1 > img {
    position: absolute;
    top: -26px;
}
.topService .box1 ul li .inner2 {
  align-items: center;
}
.topService .box1 ul li .inner2 .txt2 {
    width: 70%;
    margin-right: 5%;
}
.topService .box1 ul li .inner2 img {
  width: 25%;
}
.topService .box1 ul li .inner2 .txt2 {
    width: 70%;
    margin-right: 5%;
    color: #fff;
    font-size: 18px;
    text-decoration: underline;
}
.topService .box1.ver2 h3,
.topService .box1.ver2 ul li .inner1 {
    background: #E54900;
}
.topService .box1.ver2 h3:before{
  background: url(/wp-content/themes/a/img/iconService2.svg) 0 0 no-repeat;
  background-size: 100%;
}
.topService .box1.ver2 h3:after{
  border-top: 15px solid #EFA124;
}
.topService .box1.ver3 h3,
.topService .box1.ver3 ul li .inner1 {
    background: #F73B00;
}
.topService .box1.ver3 h3:before{
  background: url(/wp-content/themes/a/img/iconService3.svg) 0 0 no-repeat;
  background-size: 100%;
}
.topService .box1.ver3 h3:after{
  border-top: 15px solid #EFA124;
}
.topFlow {
    width: 100%;
    margin: 200px 0;
    padding: 150px 0;
    position: relative;
    box-sizing: border-box;
}
.topFlow:before {
  content: "";
  background: #FFF9F1;
  border-radius: 0 20px 20px 0;
  box-sizing: border-box;
  display: block;
  width: 96%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.topFlow h2 {
    text-align: center;
    position: relative;
    z-index: 2;
}
.topFlow h2 span {
    display: block;
    margin-top: 10px;
}
.topFlowSlide .swiper-slide {
    background: url(/wp-content/themes/a/img/flowListBg.jpg) 0 0 no-repeat;
    background-size: cover;
    background-position: center;
    padding: 30px;
    box-sizing: border-box;
    border-radius: 10px;
    opacity: 0.7;
    transition: .3s;
}
.topFlowSlide .swiper-slide.swiper-slide-active {
    opacity: 1;
}
.topFlowSlide .swiper-slide .box1 {
    align-items: center;
}
.topFlowSlide .swiper-slide .box1 .left{
  width: 55%;
  margin-right: 5%;
}
.topFlowSlide .swiper-slide .box1 > img{
  width: 40%;
}
.topFlowSlide .swiper-slide .box1 .left .label {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    font-family: "Montserrat";
}
.topFlowSlide .swiper-slide .box1 .left h3 {
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    margin-top: 6px;
}
.topFlowSlide .swiper-slide .txt1 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-top: 70px;
}
.topFlowSlide {
    padding: 80px 0 100px;
}
.topFlowSlide .swiper-navi {
    position: absolute;
    bottom: 0;
    text-align: center;
    margin: auto;
    left: 0;
    right: 0;
    width: min(400px,90%);
    height: 74px;
    display: flex;
    align-items: center;
}
.swiper-pagination-bullet {
    background: #FF8058;
    width: 36px;
    height: 3px;
    border-radius: 20px;
}
.swiper-button-next, .swiper-button-prev {
    background: url(/wp-content/themes/a/img/arrow1.svg)0 0 no-repeat;
    background-size: 100%;
    width: 58px;
    height: 58px;
    color: transparent;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
   width: 58px;
   height: 58px;
}
.swiper-pagination {
    top: 28px;
}
.swiper-button-prev {
    transform: scale(-1, 1);
}
.rashisaBnr {
    display: block;
    width: min(1200px,90%);
    margin: 150px auto;
}
.sp{
  display: none;
}
.topVoice {
    overflow: hidden;
}
.topVoice .box1 {
    width: min(1200px,90%);
    margin: 0 auto;
    align-items: end;
}
.topVoice .box1 p {
    font-size: 22px;
    font-weight: 700;
    margin-left: 30px;
}
.topVoiceSlide {
    overflow: visible;
    position: relative;
    padding: 110px 0 0;
}
.topVoiceSlide .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition-property: transform;
    box-sizing: content-box;
    flex-direction: row !important;
    display: flex !important;
    align-items: stretch !important;
    margin-top: 50px;
}
.topVoiceSlide .swiper-slide {
    flex-direction: row;
    background: #fff;
    display: flex;
    align-items: stretch;
    height: auto !important;
    overflow: hidden;
    border-radius: 16px;
}
.topVoiceSlide .box2 {
  border-radius: 10px;
  box-sizing: border-box;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.topVoiceSlide .box2 .txt1 {
  flex-grow: 1;
}
.topVoiceSlide .box2 .inner1 {
    background: #EF5523;
    padding: 60px 50px 30px;
    box-sizing: border-box;
    position: relative;
}
.topVoiceSlide .box2 .inner1 h3 {
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
}
.topVoiceSlide .box2 .inner1 .txt1 {
    text-align: center;
    margin: 36px 0 26px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}
.topVoiceSlide .box2 .inner1 .txt2 {
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}
.topVoiceSlide .box2 .inner1:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 15px solid #EF5523;
    border-bottom: 0;
    position: absolute;
    bottom: -13px;
    left: 0;
    right: 0;
    margin: auto;
}
.topVoiceSlide .box2 .inner2 {
    box-sizing: border-box;
    padding: 60px;
}
.topVoiceSlide .box2 .inner2 .txt3{
  font-size: 18px;
  font-weight: 700;
}
.topVoiceSlide .swiper-slide:nth-child(odd) {
    top: -40px;
}
.topVoiceSlide .swiper-slide:nth-child(odd) .box2 .inner1 {
  background: #EFA124;
}
.topVoiceSlide .swiper-slide:nth-child(odd) .box2 .inner1:after {
  border-top: 15px solid #EFA124;
}
.topCompany {
    padding-top: 200px;
    width: min(1200px,90%);
    margin: 0 auto;
}
.topCompany .tit1 {
    text-align: center;
}
.topCompany .tit1 span {
    display: block;
    text-align: center;
    font-size: 22px;
    font-weight: 900;
    margin-top: 8px;
}
.topCompany .box1 {
    margin-top: 100px;
}
.topCompany .box1 iframe {
    width: 40%;
    height: 100%;
    margin-right: 5%;
    aspect-ratio: 1/1;
}
.topCompany .box1 .right{
    width: 52%;
}
.topCompany .box1 .right dl {
    flex-wrap: wrap;
    display: flex;
}
.topCompany .box1 .right dl > * {
    font-size: 15px;
    border-bottom: 1px solid #E3C64A;
    padding: 25px 0;
}
.topCompany .box1 .right dl dt {
  font-weight: 900;
  width: 30%;
}
.topCompany .box1 .right dl dd {
  width: 70%;
}
.topCompany .box1 .right dl dd a:after {
    content: "";
    display: inline-block;
    background: url(/wp-content/themes/a/img/iconLink.svg)0 0 no-repeat;
    background-size: 100%;
    width: 16px;
    height: 16px;
    margin-left: 8px;
}
.topCompany .box1 .right dl dd span {
    background: #FCEDDA;
    border-radius: 4px;
    margin-right: 10px;
    padding: 6px 10px;
    display: inline-block;
    margin-top: 10px;
}
.topNews {
    width: min(1200px, 90%);
    margin: 0 auto;
    padding-top: 200px;
}
.topNews .tit1 {
  margin-bottom: 70px;
}
.topNews .tit1 span {
    font-size: 26px;
    font-weight: 900;
    margin-left: 20px;
}
.topNews .newsList {
    margin-bottom: 40px;
}
.newsList li a {
    width: 100%;
    box-shadow: 0 0 20px #EFE7DE;
    border-radius: 8px;
    box-sizing: border-box;
    padding: 34px;
    background: #fff;
    position: relative;
}
.newsList li a:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom:0;
  right: 30px;
  margin: auto;
  background: url(/wp-content/themes/a/img/arrow1.svg)0 0 no-repeat;
  background-size: 100%;
  width: 48px;
  height: 48px;
}
.newsList li a .label {
    background: #FFF2E8;
    color: #ED4E1D;
    font-size: 14px;
    font-weight: 600;
    padding: 3px 5px;
}
.newsList li a .day {
    margin: 0 50px 0 16px;
    color: #848484;
    font-family: "Montserrat";
    font-size: 16px;
    font-weight: 500;
}
.newsList li a h3 {
    font-size: 15px;
    font-weight: 700;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.newsList li a:hover {
  background: #ED4D1C;
}
.newsList li a:hover h3,
.newsList li a:hover .day{
  color: #fff;
}
.linkBtn1 {
    background: #000;
    color: #fff;
    border: 1px solid #000;
    padding: 24px 130px 24px 20px;
    display: block;
    width: fit-content;
    border-radius: 50px;
    margin: 0 auto;
    position: relative;
    font-size: 18px;
    font-weight: 700;
}
.linkBtn1:hover {
    background: #fff;
    color: #000;
}
.linkBtn1:after {
    content: "";
    background: url(/wp-content/themes/a/img/arrow2.svg)0 0 no-repeat;
    background-size: 100%;
    width: 48px;
    height: 48px;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
}
.linkBtn1:hover:after {
    background: url(/wp-content/themes/a/img/arrow1.svg)0 0 no-repeat;
    background-size: 100%;
}
footer {
    margin-top: 200px;
    background: #FFB980;
    background: linear-gradient(0deg, rgba(255, 185, 128, 1) 0%, rgba(237, 78, 29, 1) 100%);
    border-radius: 40px 40px 0 0;
}
.fbox1 {
    width: min(1200px,90%);
    margin: auto;
    padding: 120px 0;
    align-items: end;
}
.fbox1 .left {
    width: 45%;
    margin-right: 5%;
}
.fbox1 .right {
    width: 50%;
}
.fbox1 .left .tit1 span {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    display: block;
    margin-top: 10px;
}
.fbox1 .left p {
    margin-top: 40px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}
.fbox2 {
    width: min(1200px,90%);
    margin: 0 auto;
    border: 1px solid #fff;
    border-radius: 30px;
}
.fbox2 a {
    width: 50%;
    position: relative;
    padding: 60px 0;
    text-align: center;
}
.fbox2 .left img {
    position: absolute;
    width: 118px;
    top: -42%;
    right: 14%;
}
.fbox2 .right img {
    position: absolute;
    width: 228px;
    top: -33%;
    right: 8%;
}
.fbox2 a.left{
  background: #f59047;
  background: linear-gradient(135deg, rgba(245, 144, 71, 1) 0%, rgba(237, 78, 29, 1) 100%);
  border-radius: 30px 0 0 30px;
}
.fbox2 a.right{
background: #ebcb75;
background: linear-gradient(135deg, rgba(235, 203, 117, 1) 0%, rgba(237, 181, 28, 1) 100%);
border-radius:0 30px 30px 0;
}
.fbox2 a .txt1 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}
.fbox2 a h3 {
    font-size: 32px;
    color: #fff;
    font-weight: 700;
}
.fbox2 a h3:before {
    content: "";
    display: inline-block;
    width: 31px;
    height: 31px;
    background: url(/wp-content/themes/a/img/arrow1.svg)0 0 no-repeat;
    background-size: 100%;
    margin-right: 8px;
    position: relative;
    top: 2px;
}