@charset "utf-8";

/*==========================================
 共通設定
===========================================*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

/*=== フォント ===*/
html {
  font-size: 62.5%;
}

body {
  color: #000;
  -webkit-text-size-adjust: 100%;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  position: relative;
}

/*IE*/
@media all and (-ms-high-contrast:none) {
  body {
    font-family: "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  }
}

.anton {
  font-family: 'Anton', sans-serif;
}

/*=== リンク ===*/
a {
  color: #000;
  text-decoration: none;
  transition: .2s ease-in-out;
}

a.img-link,
.img-link-wrap a {
  display: block;
  font-size: 0;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none !important;
    cursor: default !important;
  }
}

/*=== 画像 ===*/
img {
  max-width: 100%;
}

body img[src$=".svg"] {
  width: 100%;
}

/*==========================================
 汎用css
===========================================*/
/*=== hover Action ===*/
/*memo 【_d】aタグに直*/
/*=== opacity ===*/
.hover-oc_d:hover,
.hover-oc a:hover {
  opacity: 0.5;
}

/*=== under line ===*/
.hover-ul_d,
.hover-ul a,
.hover-ulL_d,
.hover-ulL a,
.hover-ulF_d,
.hover-ulF a {
  position: relative;
  display: inline-block;
}

/*=== under line【CENTER】 ===*/
.hover-ul_d::after,
.hover-ul a::after {
  position: absolute;
  bottom: -1px;
  left: 50%;
  content: '';
  width: 0;
  height: 2px;
  background-color: #9f1012;
  transition: .3s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/*=== under line【LEFT】 ===*/
.hover-ulL_d::after,
.hover-ulL a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 0;
  height: 2px;
  background-color: #9f1012;
  transition: .3s;
}

/*=== under line【FADE】 ===*/
.hover-ulF_d::after,
.hover-ulF a::after {
  position: absolute;
  bottom: .3em;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #000;
  opacity: 0;
  transition: .3s;
}

.hover-ul_d:hover::after,
.hover-ul a:hover::after,
.hover-ulL_d:hover::after,
.hover-ulL a:hover::after {
  width: 100%;
}

.hover-ulF_d:hover::after,
.hover-ulF a:hover::after {
  bottom: 0;
  opacity: 1;
}

/*==== MARKER ===*/
.gray-line {
  background: linear-gradient(transparent 60%, #f5f5f5 60%);
}

.green-line {
  background: linear-gradient(transparent 60%, #e8f1ec 60%);
}

/*=== 幅 ===*/
.wrap {
  max-width: 1140px;
  margin: 0 auto;
}

.wrap-inner {
  padding: 0 2.5%;
}

@media screen and (min-width: 1060px) {
  .wrap-inner {
    padding: 0 25px;
  }
}

/*=== 余白 ===*/
.sec-Mtop {
  margin-top: 130px;
}

@media screen and (max-width: 480px) {
  .sec-Mtop {
    margin-top: 80px;
  }
}

/*=== PC none / SP none ===*/
@media screen and (min-width:481px) {
  .pc-none_s {
    display: none;
  }
}

@media screen and (min-width:768px) {
  .pc-none {
    display: none;
  }
}

@media screen and (min-width:961px) {
  .pc-none_960 {
    display: none;
  }
}

@media screen and (max-width:960px) {
  .sp-none_960 {
    display: none;
  }
}

@media screen and (max-width:767px) {
  .sp-none {
    display: none;
  }
}

@media screen and (max-width:480px) {
  .sp-none_s {
    display: none;
  }
}

/*=== アニメーション ===*/
/*バウンド*/
.bound {
  animation: bound 2s ease infinite;
}

@keyframes bound {
  0% {
    transform: translateY(0)
  }

  5% {
    transform: translateY(0)
  }

  10% {
    transform: translateY(0)
  }

  20% {
    transform: translateY(-15px)
  }

  25% {
    transform: translateY(0)
  }

  30% {
    transform: translateY(-15px)
  }

  50% {
    transform: translateY(0)
  }

  100% {
    transform: translateY(0)
  }
}

/*ふわふわ*/
.fuwafuwa {
  animation: fuwafuwa 2s ease infinite;
}

@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, -10px);
  }

  100% {
    transform: translate(0, 0);
  }
}

/*=== パララックス ===*/
.parallax {
  min-height: 400px;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

/*==========================================
 アンカーリンク
===========================================*/
.anchor_link {
  position: relative;
  top: -89px;
  display: block;
}

@media screen and (max-width: 768px) {
  .anchor_link {
    top: -70px;
  }
}

/*==========================================
 HEADER
===========================================*/
#header {
  background: #fff;
  margin-top: 0;
  padding: 0 0 16px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  transition: .4s;
}

#header.scrl {
  margin-top: 0;
}

#header .header-inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}

#header .header-l {
  font-size: 0;
  flex-basis: 280px;
  max-width: 280px;
  width: 100%;
}

#header .header-l a {
  display: block;
}

#header .header-l img {
  width: 100%;
  backface-visibility: hidden;
}

#header .header-logo {
  width: 100%;
  transition: .3s;
  display: block;
  height: 60px;
}

#header svg.header-logo {
  width: 100%;
  transition: .3s;
}

#header .header-r {
  max-width: calc(100% - 280px);
  width: 100%;
}

#header .header-contents {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

#header .header-menu {
  font-size: 1.6rem;
  font-weight: 500;
  display: block;
  text-align: center;
  line-height: 1;
}

#header .header-menu.menu04 {
  margin-right: 20px;
}

#header .header-menu a {
  display: block;
  max-width: 160px;
  color: #9f1012;
  font-weight: bold;
}

#header .header-menu-btn {
  flex-basis: 210px;
}

#header .header-menu-btn a {
  display: block;
}

#header .header-contents-btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

#header .header-btn01 {
  margin-right: 4%;
}

#header .header-btn01 a {
  color: #000;
  font-size: 1.4rem;
  font-weight: bold;
}

#header .header-btn02 {
  margin-right: 4%;
  display: none;
}

#header .header-btn02 a {
  color: #000;
  font-weight: bold;
  background-color: #fcfcfc;
  background-image: radial-gradient(rgba(229, 16, 18, .3) 10%, transparent 20%), radial-gradient(rgba(229, 16, 18, .3) 10%, transparent 20%);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  border: solid 1px #9f1012;
  padding: 8px 12px;
  display: block;
}

#header .header-btn02 i {
  margin-left: 1em;
}

#header .header-btn03 {}

#header .header-btn03 a {
  color: #fff;
  font-weight: bold;
  background: #9f1012;
  border: solid 1px #9f1012;
  padding: 8px 12px;
  display: block;
}

#header .header-btn03 a:hover {
  color: #9f1012;
  background: #fff;
}

#header .header-btn03 i {
  margin-left: 1em;
}

@media screen and (max-width: 1120px) {
  #header .header-l {
    font-size: 0;
    flex-basis: 200px;
    max-width: 200px;
    width: 100%;
  }

  #header .header-r {
    max-width: calc(100% - 200px);
    width: 100%;
  }
}

@media screen and (max-width: 980px) {
  #header {
    padding: 8px 0;
  }

  #header .header-r {
    flex-basis: 210px;
  }

  #header .header-contents {
    margin-top: 0;
  }

  #header .header-contents-btn {
    display: none;
  }

  #header .header-menu {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  #header .header-menu-btn {
    /* display: none; */
  }
}


/*===== ハンバーガーメニュー =====*/
#header .hamburger-btn_block {
  display: flex;
  justify-content: space-between;
  width: 29px;
  margin: 0 auto;
}

#header .hamburger-btn {
  width: 28px;
}

#header .hamburger-bar,
#header .hamburger-btn:before,
#header .hamburger-btn:after {
  display: block;
  width: 28px;
  height: 1px;
  content: '';
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-bottom: solid 1px #000;
}

#header .hamburger-menu {
  cursor: pointer;
  margin-left: 20px;
  z-index: 10;
  position: relative;
  display: none;
}

#header .hamburger-bar {
  position: relative;
  margin: 7px 0;
}

/*===== scrl =====*/
#header .hamburger-menu.active .hamburger-btn span,
#header .hamburger-menu.active .hamburger-btn:before,
#header .hamburger-menu.active .hamburger-btn:after {}

#header.scrl {
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
}









@media screen and (max-width: 980px) {
  #header .hamburger-menu {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  #header .header-inner {
    padding: 0 4%;
  }
}

/*==========================================
 GLOBAL NAV
===========================================*/
#header .gnav-wrap {
  display: none;
}

@media screen and (max-width: 980px) {
  #header .gnav-wrap {
    display: block;
    top: -100vh;
    opacity: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    transition: .4s ease-in-out;
    z-index: -3;
    background: #fff;
    -ms-overflow-style: none;
    overflow-x: hidden;
  }

  #header .gnav-wrap.open {
    opacity: 1;
    z-index: 9;
  }

  #header .gnav {
    width: 100%;
    margin: 0 auto;
    color: #fff;
  }

  #header .gnav-main-block {
    background: #fff;
    min-height: 100vh;
  }

  #header .gnav-main-block01 {
    background: #fff;
    padding: 20px;
    /* padding: 24px 4% 30px; */
  }

  #header .header-row {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #header .gnav-company {
    /* width: 100%;
    max-width: 200px;
    margin-bottom: 10px; */
    font-size: 0;
    flex-basis: 200px;
    max-width: 200px;
    width: 100%;
  }

  #header .gnav-mitsui {
    /* width: 100%;
    max-width: 150px;
    margin-bottom: 30px; */
    flex-basis: 155px;
    max-width: 210px;
    width: 100%;
    margin-left: 5%;
    margin-right: 50px;
  }

  #header .gnav-mitsui a img {
    display: flex;
  }

  #header .gnav-btn a {
    color: #9f1012;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.05rem;
    display: block;
    border: solid 2px #9f1012;
    padding: 16px 2.5%;
  }

  #header .gnav-btn i {
    margin-left: 1em;
  }
   #header .gnav-main-block02{
    overflow-y: scroll;
  }
  #header .gnav-main-block02.mt-30{
    margin-top: 3rem;
  }
  #header .gnav-main-block02 .tag{
    color: #fff;
    background-color: #971e23;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: left;
    padding: 0.4rem 2rem 0.2rem;
  }

  #header .gnav-main-block02 li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0;
    padding: 1.3rem 1.5rem 1.2rem 1.5rem;
    margin: 0 2rem;
    border-bottom: 1px solid #971e23;
  }
  #header .gnav-main-block02 li .border-none{
    border-bottom: none;
  }
  #header .gnav-main-block02 .justify-none{
    justify-content: unset;
  }

  #header .gnav-main-block02 i {
    margin-left: 1em;
  }
}
@media screen and (max-width: 380px){
  #header .gnav-wrap {
    overflow-y: scroll;
  }
  #header .gnav-main-block {
        margin-bottom: 60px;
    }
} 


/*==========================================
 フッター
===========================================*/
#footer {
  margin: 80px 0 0;
}

.footer_flex {
  display: flex;
  flex-direction: row-reverse;
}

.footer_r {
  /* flex-basis: 40%; */
  flex-basis: 45%;
  /* padding: 50px 0 4px; */
  padding: 0 0 4px;
}

.footer_r_inr {
  width: 100%;
  max-width: 450px;
  /* margin: 0 auto 0 0; */
  margin: 0 0 0 8%;
  padding: 0 2.5%;
}

.footer_r_inr_inr {
  width: 100%;
  /* max-width: 280px; */
  max-width: 410px;
  margin: 0 auto;
}

.footer_btn {
  margin-bottom: 30px;
}

.footer_btn a {
  color: #fff;
  font-weight: bold;
  background: #9f1012;
  border: solid 1px #9f1012;
  padding: 8px 12px;
  display: block;
  text-align: center;
}

.footer_btn a:hover {
  color: #9f1012;
  background: #fff;
  border: solid 1px #9f1012;
}

.footer_btn i {
  margin-left: 2em;
}

.footer_company {
  width: 100%;
  margin-bottom: 10px;
  max-width: 300px;
}

.footer_company a {
  display: block;
}

.footer_mitsui {
  width: 100%;
  max-width: 180px;
  margin-bottom: 20px;
}

.footer_mitsui a {
  display: block;
}

.footer_link {
  width: 100%;
  font-size: 1.8rem;
  font-weight: 100;
  /* margin-bottom: 35px;
  white-space: nowrap; */
}

.footer_link_item {
  margin-bottom: 8px;
}

.footer_link_item i {
  margin-left: 1em;
}

.footer_link_bottom {
  display: flex;
  flex-wrap: wrap;
  max-width: 410px;
  margin-top: 50px;
  margin-bottom: 10px;
}

.footer_link_bottom_inner {
  border-right: 1px solid #000;
  padding-right: 15px;
  line-height: 1;
}

.footer_link_bottom_item {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
}

.footer_link_bottom_inner:nth-child(2) {
  padding-left: 15px;
}

.footer_link_bottom_inner:nth-child(n+3) {
  margin-top: 5px;
}

@media screen and (max-width: 980px) {
  .footer_link_bottom_inner:nth-child(5) {
    padding-left: 0;
  }
}

.footer_link_bottom_inner:last-child {
  border-right: none;
  padding-left: 15px;
  padding-right: 0;
}

.footer_l {
  /* flex-basis: 60%; */
  flex-basis: 55%;
  background: #9f1012;
  /* padding: 80px 0 4px; */
  padding: 30px 0 30px 0;
  /* margin-top: 10px; */
}

.footer_l_inr {
  width: 100%;
  max-width: 690px;
  margin: 0 auto;
  padding: 0 2.5%;

  /* 2025/09/12 追記 */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.footer_catch {
  color: #fff;
  font-size: 4.1rem;
  font-weight: bold;
  line-height: 1.8;
  /* margin-bottom: 60px; */
  /* 2025/09/12 追記 */
  margin-top: 18px;
}

.copyright {
  color: #fff;
  font-size: 1.2rem;
}

.copyright a {
  color: #fff;
}

.copyright a::after {
  background-color: #fff;
}

@media screen and (max-width:980px) {
  #footer {
    margin: 40px 0 56px;
  }

  .footer_catch {
    font-size: 3.4rem;
  }

  .footer_link_bottom_inner:last-child {
    width: 100%;
    padding-left: 0;
  }
}

@media screen and (max-width:768px) {
  .footer_r {
    padding: 0;
  }

  .footer_flex {
    display: block;
  }

  .footer_r_inr {
    max-width: 460px;
    margin: 0 auto;
  }

  .footer_r_inr_inr {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .footer_company {
    max-width: 240px;
    margin-top: 20px;
  }

  .footer_l {
    padding: 30px 0 20px;
  }

  .footer_l_inr {
    max-width: 100%;
  }

  .footer_catch {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }

  .footer_link {
    display: none;
  }

  .footer_mitsui {
    margin-bottom: 0;
  }

  .footer_btn a {
    padding: 20px 12px;
    font-size: 1.8rem;
  }

  .footer_link_bottom_item:last-child {
    padding-left: 0;
  }
}

/*==========================================
 FOOTER 【SP】
===========================================*/
@media screen and (min-width:981px) {
  .footer-nav-sp {
    display: none !important;
  }
}

@media screen and (max-width:980px) {
  .footer-nav-sp {
    position: fixed;
    bottom: 0;
    left: 0;
    flex-wrap: nowrap;
    width: 100%;
    z-index: 1000;
    line-height: 1.5rem;
    letter-spacing: normal;
    display: flex;
    border-top: 1px solid #fff;
    background: #9f1012;
  }

  .footer-nav-sp li {
    margin: 0;
    width: calc(100% * 1/3);
    text-align: center;
  }

  .footer-nav-sp li a {
    height: 100%;
    font-size: 1.4rem;
    padding: 7px 0 5px;
    display: block;
    color: #fff;
  }

  .footer-nav-sp .span {
    display: inline-block;
  }

  .footer-nav-sp li a>i {
    display: block;
    font-size: 2.6rem;
    margin: 0 auto 2px;
    color: #fff;
  }

  .footer-nav-sp li a:active {
    background: #333;
    color: #fff;
  }

  .footer-nav-sp li a:active>i {
    color: #fff;
  }
}

@media screen and (max-width:480px) {
  .footer-nav-sp li a {
    font-size: 1.2rem;
  }
}

/* @media screen and (max-width:380px) {
  .footer-nav-sp li a {
    font-size: 1rem;
  }
  .footer-nav-sp li a>i {
    font-size: 2.2rem;
  }
} */

/*==========================================
 リンク集
===========================================*/
.bottom-link-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.bottom-link-item {
  display: block;
  margin: 0 0 80px;
}

.bottom-link-item-ttl {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

.bottom-link-item-img {
  position: relative;
  height: 0;
  overflow: hidden;
  width: 100%;
  padding-top: 100%;
  margin: 20px auto;
}

.bottom-link-item-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: auto;
  width: 100%;
}

@media screen and (min-width:961px) {
  .bottom-link-list::before {
    content: "";
    display: block;
    width: 23%;
    order: 1;
  }

  .bottom-link-list::after {
    content: "";
    display: block;
    width: 23%;
  }

  .bottom-link-item {
    width: 23%;
  }
}

@media screen and (min-width:481px) and (max-width:960px) {
  .bottom-link-list::after {
    content: "";
    display: block;
    width: 32%;
  }

  .bottom-link-item {
    width: 32%;
  }
}

@media screen and (max-width:767px) {
  .bottom-link-item {
    display: block;
    margin: 0 0 40px;
  }

  .bottom-link-item-img {
    margin: 15px auto;
  }

  .bottom-link-item-ttl {
    font-size: 1.6rem;
  }

  .bottom-link-item-txt {
    font-size: 1.4rem;
  }
}

@media screen and (max-width:480px) {
  .bottom-link-item {
    width: 48%;
    margin: 0 0 25px;
  }

  .bottom-link-item-img {
    margin: 5px auto;
  }

  .bottom-link-item-ttl {
    font-size: 1.4rem;
  }

  .bottom-link-item-txt {
    font-size: 1.2rem;
  }
}

/*==========================================
 【SIDE BUTTON】
===========================================*/
.side-conversion-btn {
  position: fixed;
  right: -130px;
  top: 120px;
  display: block;
  z-index: 5;
}

.side-conversion-btn li {
  font-size: 0;
}

.side-conversion-btn li:not(:last-child) {
  margin-bottom: 10px;
}

@media screen and (max-width:1090px) {
  .side-conversion-btn li {
    max-width: 55px;
  }
}

@media screen and (max-width:768px) {
  .side-conversion-btn {
    display: none;
  }
}

/*==========================================
 トップに戻るボタン
===========================================*/
.pagetop {
  position: fixed;
  bottom: 20px;
  display: block;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  right: calc(50% - 700px);
  transform: translate(-50%, 0);
}

.pagetop a {
  color: #fff;
  font-size: 3rem;
  width: 50px;
  height: 50px;
  display: block;
  background: #9f1012;
  border: solid 1px #fff;
  border-radius: 50px;
  line-height: 1.4;
}

.pagetop a:hover {
  background: #000;
}

@media screen and (max-width: 1400px) {
  .pagetop {
    right: 10px;
    transform: translate(0);
  }
}

@media screen and (max-width: 980px) {
  .pagetop {
    display: none !important;
  }
}

/*==========================================
 トリミング
===========================================*/
.trim_h,
.trim_w {
  position: relative;
  height: 0;
  overflow: hidden;
  width: 100%;
  display: block;
  padding-bottom: 100%;
}

.trim_h img,
.trim_w img {
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.trim_h img {
  /*縦*/
  height: 100%;
  max-width: inherit;
  transition: .3s;
}

.trim_w img {
  /*横*/
  height: auto;
  width: 100%;
  transition: .3s;
}

/*==========================================
 文字数制限
===========================================*/
/* 一列表示 */
.clamp01 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2rem;
}

/* 二列表示 */
.clamp02 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 7rem;
}

/*==========================================
 中ページ見出し
===========================================*/
.main_content {
  padding: 130px 0;
  display: block;
}

/* Edge */
@supports (-ms-ime-align: auto) {
  .main_content {
    padding: 100px 0;
  }
}

/* IE11 */
_:-ms-lang(x)::-ms-backdrop,
.main_content {
  padding: 100px 0;
}

.page_ttl {
  text-align: center;
  margin: 0 auto 60px;
}

.page_ttl_en {
  color: #9f1012;
  font-size: 4.8rem;
  font-weight: bold;
  position: relative;
  display: block;
  margin-bottom: 25px;
}

.page_ttl_en::after {
  content: "";
  width: 45px;
  border-bottom: solid 4px #9f1012;
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 4px;
}

.page_ttl_ja {
  color: #000;
  font-size: 2.4rem;
  font-weight: bold;
  display: block;
}

@media screen and (max-width: 768px) {
  .main_content {
    padding: 40px 0;
  }
  .sec_voice {
    margin-bottom: 50px;
  }

  .page_ttl_en {
    font-size: 3.6rem;
    margin-bottom: 10px;
  }

  .page_ttl_ja {
    font-size: 2rem;
  }

  .voi_wrap {
    padding: 0;
  }
}

/*==========================================
 パンくず
===========================================*/
.breadcrumb {
  color: #808080;
  font-weight: 500;
  margin-bottom: 60px;
}

.breadcrumb a {
  color: #808080;
  border-bottom: solid 1px #fff;
}

.breadcrumb a:hover {
  border-bottom: solid 1px #808080;
}

.breadcrumb .current-item {
  color: #000;
}
@media screen and (max-width: 768px) {
  .breadcrumb{
    opacity: 0;
  }
}

/*==========================================
 バナー
===========================================*/
/* バナー1 */
.conversion_blc01 {}

.banner01_flex {
  display: flex;
  text-align: center;
}

.banner01_item {
  flex-basis: calc(88% * 1/2);
}

.banner01_item a {
  padding: 56.5px 0;
  display: block;
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  position: relative;
}

.banner01_item.right {
  margin-right: 12%;
}

.banner01_item.right a {
  background: url(../../img/common/arrow_b.svg) no-repeat 92% 50%, #9f1012;
}

.banner01_item.right a:hover {
  background: url(../../img/common/arrow_b.svg) no-repeat 100% 50%, #000;
}

.banner01_item.left a {
  background: url(../../img/common/arrow_r.svg) no-repeat 92% 50%, #000;
}

.banner01_item.left a:hover {
  background: url(../../img/common/arrow_r.svg) no-repeat 100% 50%, #9f1012;
}

_:-ms-fullscreen,
:root .banner01_item.right a {
  background: #9f1012;
}

_:-ms-fullscreen,
:root .banner01_item.right a:hover {
  background: #000;
}

_:-ms-fullscreen,
:root .banner01_item.left a {
  background: #000;
}

_:-ms-fullscreen,
:root .banner01_item.left a:hover {
  background: #9f1012;
}

@media screen and (max-width: 980px) {
  .banner01_item.right {
    margin-right: 4%;
  }

  .banner01_item {
    flex-basis: calc(96% * 1/2);
  }
}

@media screen and (max-width: 768px) {
  .banner01_flex {
    display: block;
  }

  .banner01_item.right {
    margin: 0 0 20px 0;
  }

  .banner01_item a {
    padding: 36.5px 0;
  }
}

/* バナー2 */
.conversion_blc02 {
  text-align: center;
}

.conversion_blc02 a {
  padding: 56.5px 0;
  display: block;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
  width: 100%;
  max-width: 790px;
  margin: 0 auto;
  position: relative;
}

.conversion_blc02 a {
  background: url(../../img/common/arrow_r.svg) no-repeat 92% 50%, #000;
}

.conversion_blc02 a:hover {
  background: url(../../img/common/arrow_r.svg) no-repeat 100% 50%, #9f1012;
}

.conversion_blc02 .span {
  display: inline-block;
  font-weight: bold;
}

.conversion_blc02 a span.btn_subtxt {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .conversion_blc02 a {
    padding: 36.5px 0;
  }
}

.conv_cap {
  margin-top: 20px;
  text-align: center;
  line-height: 1.6;
}

.conv_cap span {
  display: block;
  font-size: 14px;
  text-align: center;
}

/* バナー3 */
.banner03_lead {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 40px;
}

.conversion_blc03 {}

.banner03_flex {
  display: flex;
  text-align: center;
}

.banner03_item {
  flex-basis: calc(96% * 1/2);
}

.banner03_item a {
  padding: 14px;
  display: block;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  position: relative;
  border: solid 5px #9f1012;
  background: #ebebeb;
}

.banner03_item .span {
  display: block;
  border: dashed 2px #9f1012;
  border-radius: 16px;
  background: #fff;
  padding: 38px 0;
  transition: .3s;
}

.banner03_item .span_br {
  display: inline-block;
}

.banner03_item a:hover {
  background: #fff;
}

.banner03_item a:hover .span {
  background: #ebebeb;
}

.banner03_item.right {
  margin-right: 4%;
}

.banner03_item.right a::before {
  content: "Reform order";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #707070;
  font-size: 4.8rem;
  font-weight: bold;
  line-height: 1;
  width: 100%;
}

.banner03_item.left a::before {
  content: "Company";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #707070;
  font-size: 4.8rem;
  font-weight: bold;
  line-height: 1;
}

.banner03_item.left a::after {
  content: "提携までの流れ";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translate(-50%, 0);
  margin: auto;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  background: #9f1012;
  width: 180px;
  text-align: center;
  padding: 2px 0;
  display: none;
}

/*/sumaisupport/ .three_links_btn*/
.three_links_btn .conversion_blc06 {
  width: 31%;
  margin: 0 3% 0 0;
  display: flex;
}

.three_links_btn .conversion_blc06:nth-last-child(1) {
  margin: 0;
}

.three_links_btn .conversion_blc06 a {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 110px;
}

.three_links_btn .conversion_blc06 a {
  background: url(../../img/common/arrow_b.svg) no-repeat 92% 50%, #9f1012;
}

.three_links_btn .conversion_blc06 a:hover {
  background: url(../../img/common/arrow_r.svg) no-repeat 92% 50%, #000;
}

@media all and (-ms-high-contrast:none) {

  /* IE11ブラウザハック */
  *::-ms-backdrop,
  .three_links_btn .conversion_blc06 a {
    background: #9f1012;
  }

  *::-ms-backdrop,
  .three_links_btn .conversion_blc06 a:hover {
    background: #000;
  }
}

.three_links_btn .conversion_blc06 a .link_s_txt {
  font-size: 1.4rem;
  display: block;
}

/*/sumaisupport/ .three_links_btn reform_user*/
.three_links_btn .conversion_blc06 a.reform_user {
  background: url(../../img/common/arrow_r.svg) no-repeat 92% 50%, #000;
}

.three_links_btn .conversion_blc06 a.reform_user:hover {
  background: url(../../img/common/arrow_b.svg) no-repeat 92% 50%, #9f1012;
}

@media all and (-ms-high-contrast:none) {

  /* IE11ブラウザハック */
  *::-ms-backdrop,
  .three_links_btn .conversion_blc06 a.reform_user {
    background: #000;
  }

  *::-ms-backdrop,
  .three_links_btn .conversion_blc06 a.reform_user:hover {
    background: #9f1012;
  }
}

/*/reformmenu/ /reform-flow/ content_c*/
.col_reform {
  margin-bottom: 50px;
}

.content_c {
  display: flex;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}

@media screen and (max-width: 768px) {
  .three_links_btn .conversion_blc06 {
    width: 100%;
    margin: 0 0 30px 0;
    display: block;
  }

  .three_links_btn .conversion_blc06 a {
    background: url(../../img/common/arrow_b.svg) no-repeat 92% 0%, #9f1012;
  }

  .three_links_btn .conversion_blc06 a:hover {
    background: url(../../img/common/arrow_b.svg) no-repeat 92% 0%, #9f1012;
  }

  /*/sumaisupport/ .three_links_btn reform_user*/
  .three_links_btn .conversion_blc06 a.reform_user {
    background: url(../../img/common/arrow_r.svg) no-repeat 92% 0%, #000;
  }

  .three_links_btn .conversion_blc06 a.reform_user:hover {
    background: url(../../img/common/arrow_r.svg) no-repeat 92% 0%, #000;
  }

  /*/reformmenu/ /reform-flow/ content_c*/
  .col_reform {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .banner03_item .span {
    max-height: 107px;
  }

  .banner03_flex {
    display: block;
  }

  .banner03_item.right {
    margin: 0 0 20px 0;
  }

  .banner03_item a {
    font-size: 1.8rem;
  }

  .banner03_item.left a::before,
  .banner03_item.right a::before {
    font-size: 4rem;
  }
}

/* バナー4 */
.conversion_blc04 {
  text-align: center;
}

.conversion_blc04 a {
  line-height: 0;
  display: inline-block;
}

.conversion_blc04 a:hover {
  box-shadow: 3px 3px 6px grey;
  opacity: .9;
}

.conversion_blc04 .img_sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .conversion_blc04 .img_pc {
    display: none;
  }

  .conversion_blc04 .img_sp {
    display: block;
  }
}

/* バナー5 */
.conversion_blc05 {
  text-align: center;
}

.conversion_blc05 a {
  padding: 56.5px 0;
  display: block;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
  width: 100%;
  max-width: 790px;
  margin: 0 auto;
  position: relative;
}

.conversion_blc05 a {
  background: url(../../img/common/arrow_b.svg) no-repeat 92% 50%, #9f1012;
}

.conversion_blc05 a:hover {
  background: url(../../img/common/arrow_b.svg) no-repeat 100% 50%, #000;
}

@media all and (-ms-high-contrast:none) {

  /* IE11ブラウザハック */
  *::-ms-backdrop,
  .conversion_blc05 a {
    background: #9f1012;
  }

  *::-ms-backdrop,
  .conversion_blc05 a:hover {
    background: #000;
  }
}

.conversion_blc05 .span {
  display: inline-block;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .conversion_blc05 a {
    padding: 36.5px 0;
  }
}

/* バナー6 */
.conversion_blc06 {
  text-align: center;
}

.conversion_blc06 a {
  padding: 56.5px 0;
  display: block;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
  width: 100%;
  max-width: 790px;
  margin: 0 auto;
  position: relative;
}

.conversion_blc06 a {
  background: url(../../img/common/arrow_b.svg) no-repeat 92% 50%, #9f1012;
}

.conversion_blc06 a:hover {
  background: url(../../img/common/arrow_b.svg) no-repeat 100% 50%, #000;
}

@media all and (-ms-high-contrast:none) {

  /* IE11ブラウザハック */
  *::-ms-backdrop,
  .conversion_blc06 a {
    background: #9f1012;
  }

  *::-ms-backdrop,
  .conversion_blc06 a:hover {
    background: #000;
  }
}

@media screen and (max-width: 768px) {
  .conversion_blc06 a {
    padding: 36.5px 0;
  }
}

/*==========================================
 ページャー
===========================================*/
.wp-pagenavi-wrap .wp-pagenavi {
  text-align: center;
  margin-bottom: 110px;
}

.wp-pagenavi-wrap .wp-pagenavi a,
.wp-pagenavi-wrap .wp-pagenavi span {
  color: #000;
  font-weight: 500;
  background: #fff;
  border: none;
  padding: 6.5px 10px;
  margin: 0 5px;
  min-width: 45px;
  display: inline-block;
  text-align: center;
  transition: 0.3s;
}

.wp-pagenavi-wrap .wp-pagenavi a:hover,
.wp-pagenavi-wrap .wp-pagenavi .current {
  color: #fff;
  font-weight: 500;
  background: #9f1012;
}

.wp-pagenavi-wrap .wp-pagenavi .nextpostslink,
.wp-pagenavi-wrap .wp-pagenavi .previouspostslink {
  background: none;
}

@media screen and (max-width: 768px) {
  .pager {
    margin-bottom: 60px;
  }
}

/*==========================================
 フォーマット
===========================================*/
.format_inner {
  width: 100%;
  max-width: calc(1090px + 4%);
  padding: 0 2%;
  margin: 0 auto;
}

.format_blc {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1rem;
  margin-bottom: 100px
}

.format_blc img {
  max-width: 100%;
}

.format_01 {
  color: #fff;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1rem;
  margin-bottom: 40px;
}

.format_01 .inner {
  padding: 4px 1rem;
  background: #000;
  display: inline;
}

.format_02 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1rem;
  margin-bottom: 40px;
}

.format_03 {
  margin: 0 auto 40px;
  padding: 40px 0;
}

.format_03 strong {
  font-weight: bold;
}

.format_03 em {
  font-style: italic;
}

.format_03 p {
  margin-bottom: 1em;
}

.format_03 ol {
  list-style: decimal;
  padding-left: 2em;
  margin-bottom: 1em;
}

.format_03 ul {
  list-style: inherit;
  padding-left: 2em;
  margin-bottom: 1em;
}

.format_03 ul.wp-block-gallery {
  padding-left: 0;
}

.format_03 a {
  transition: 0.3s;
  font-weight: bold;
  text-decoration: underline !important;
}

.format_03 a:hover {
  opacity: .7;
}

.format_04 {
  display: flex;
  margin: 0 auto 40px
}

.format_04 .item_img {
  flex-basis: 46%;
  width: 46%;
}

.format_04 .item_img_inr {
  display: inline-block;
  line-height: 0;
  padding-top: 75.392%;
  position: relative;
  background: #f0f0f0;
  height: 0;
  overflow: hidden;
  width: 100%;
}

.format_04 .item_img_inr img {
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 100%;
  max-width: inherit;
  transition: .3s;
}

.format_04 .item_txt {
  flex-basis: 50%;
  width: 50%;
  margin-left: 4%;
}

.format_05 {
  display: flex;
  flex-direction: row-reverse;
  margin: 0 auto 40px;
}

.format_05 .item_img {
  flex-basis: 46%;
  width: 46%;
}

.format_05 .item_img_inr {
  display: inline-block;
  line-height: 0;
  padding-top: 75.392%;
  position: relative;
  background: #f0f0f0;
  height: 0;
  overflow: hidden;
  width: 100%;
}

.format_05 .item_img_inr img {
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 100%;
  max-width: inherit;
  transition: .3s;
}

.format_05 .item_txt {
  flex-basis: 50%;
  width: 50%;
  margin-right: 4%;
}

.format_06 {
  margin: 0 auto 40px;
}

.format_06 .item_img_inr {
  display: inline-block;
  line-height: 0;
  padding-top: 50.46%;
  position: relative;
  background: #f0f0f0;
  height: 0;
  overflow: hidden;
  width: 100%;
}

.format_06 .item_img_inr img {
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 100%;
  max-width: inherit;
  transition: .3s;
}

.format_07 {
  display: flex;
  margin: 0 auto 40px;
}

.format_07 .item_img {
  flex-basis: 46%;
  width: 46%;
}

.format_07 .item_img:first-child {
  margin-right: 8%;
}

.format_07 .item_img_inr {
  display: inline-block;
  line-height: 0;
  padding-top: 75.392%;
  position: relative;
  background: #f0f0f0;
  height: 0;
  overflow: hidden;
  width: 100%;
}

.format_07 .item_img_inr img {
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 100%;
  max-width: inherit;
  transition: .3s;
}

.format_map_ttl {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05rem;
  border-bottom: solid 2px #009944;
  width: 100%;
  max-width: 370px;
  margin-bottom: 16px;
}

.format_map_add {
  color: #999;
  margin-top: 4px;
}

.format_map iframe {
  width: 100%;
  height: 360px;
}

.img_txt {
  margin-top: 12px;
  font-weight: 500;
}

.format_back {
  margin-bottom: 130px;
}

.format_back a {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 13.5px 0;
  width: 100%;
  max-width: 280px;
  border-radius: 50px;
  background: #808080;
  display: block;
  text-align: center;
  border: solid 1px #808080;
}

.format_back a:hover {
  color: #808080;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .format_blc {
    margin-bottom: 60px;
  }

  .format_01,
  .format_02 {
    margin-bottom: 20px;
  }

  .format_03 {
    padding: 30px 0;
  }

  .format_04 {
    display: block;
  }

  .format_04 .item_img {
    margin-bottom: 16px;
    width: 100%;
  }

  .format_04 .item_img_inner {
    padding-top: 50.46%;
  }

  .format_04 .item_txt {
    margin-left: 0;
    flex-basis: 100%;
    width: 100%;
  }

  .format_05 {
    display: block;
  }

  .format_05 .item_img {
    margin-bottom: 16px;
    width: 100%;
  }

  .format_05 .item_txt {
    margin-right: 0;
    flex-basis: 100%;
    width: 100%;
  }

  .format_06 .item_img_inr {
    padding-top: 75.392%;
  }

  .format_07 {
    display: block;
  }

  .format_07 .item_img {
    margin-bottom: 40px;
    width: 100%
  }

  .format_07 .item_img:first-child {
    margin-right: 0;
  }

  .format_07 .item_img_inner {
    padding-top: 50.46%;
  }

  .format_back {
    margin-bottom: 80px;
  }
}

/*==========================================
 グーテンベルク
===========================================*/
.editor_area {
  padding-bottom: 80px;
  line-height: 2;
  letter-spacing: 0.05rem;
  overflow: hidden;
}

.editor_area h2,
.editor_area h1 {
  color: #fff;
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.1rem;
  margin-bottom: 20px;
  padding: 4px 1rem;
  background: #000;
  display: block;
}

.editor_area h3 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.1rem;
}

.editor_area h4 {
  font-weight: bold;
}

.editor_area strong {
  font-weight: bold;
}

.editor_area em {
  font-style: italic;
}

.editor_area p {
  margin-bottom: 1em;
}

.editor_area ol {
  list-style: decimal;
  padding-left: 2em;
  margin-bottom: 1em;
}

.editor_area ul {
  list-style: inherit;
  padding-left: 2em;
  margin-bottom: 1em;
}

.editor_area ul.wp-block-gallery {
  padding-left: 0;
}

.editor_area a {
  transition: 0.3s;
  font-weight: bold;
  text-decoration: underline !important;
}

.editor_area a:hover {
  opacity: .7;
}

.editor_area .wp-block-quote {
  position: relative;
  padding: 35px 15px 10px 15px;
  box-sizing: border-box;
  font-style: italic;
  background: #f5f5f5;
  color: #777777;
  border-left: 4px solid #9dd4ff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14);
  margin-bottom: 20px;
}

.editor_area .wp-block-quote:before {
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 15px;
  content: "";
  font-family: FontAwesome;
  color: #9dd4ff;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

.editor_area .wp-block-quote p {
  padding: 0;
  margin: 7px 0;
  line-height: 1.7;
}

.editor_area .wp-block-quote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}

/*新ロゴ差し替え等レイアウト調整 20240822*/
#logo_wrap_support img{
  width: 220px;
}

@media screen and (max-width: 768px) {
  #logo_wrap_support img{
    width: 180px;
  }
  #header .header-l {
    flex-basis: 180px;
  }
  #header .gnav-company_flex .gnav-company {
    flex-basis: 180px;
  }
}

@media screen and (min-width: 769px) {
.footer_flex_padding .footer_r {
  padding-top: 13px;
}
.footer_flex_padding .footer_l {
  /* padding-top: 120px; */
  display: flex;
  align-items: center;
  justify-content: center;
}
}

@media screen and (min-width: 981px) {
  #header .header-contents_margin {
    margin: 38px 0 5px;
  }
  #header .header-l_width .header-l img {
    width: 85%;
  }
}

.header-contents_flex{
  display: flex;
  align-items: baseline;
}

@media screen and (max-width: 980px) {
  #header .header-inner-align .header-inner{
    align-items: center;
  }
  #header .header-r {
    justify-content: flex-end;
  }
  #header .header-contents {
    justify-content: flex-end;
  }
}

#header .header-contents-btn{
  flex: 1;
}
#header .header-contents{
  gap: 20px;
}

#header .header-btn01_margin .header-btn01 {
  margin-right: 20px;
}

@media screen and (max-width: 1041px) {
  #header .header-menu {
    font-size: 1.5rem;
  }
  #header .header-btn01 a {
    font-size: 1.35rem;
  }
  #header .header-btn03 a {
    font-size: 1.35rem;
  }
}

/*topページ .two_links_btn*/
.two_links_btn_wrap{
  width: 100%;
  max-width: 708px;
  margin: 0 auto;
}
.two_links_flex {
  display: flex;
  text-align: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.two_links_btn .link_wrap {
  width: 48%;
  max-width: 337px;
  display: flex;
}
.two_links_btn .link_wrap a {
  font-size: 1.8rem;
  font-weight: bold;
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; 
  text-align: center; 
  height: 110px;
}
.two_links_btn .link_wrap.-sumaisupport a{
  font-size: 1.8rem;
}
.two_links_btn .link_wrap a {
  color: #fff;
  background: url(../../img/common/arrow_b.svg) no-repeat 92% 50%, #9f1012;
}
.two_links_btn .link_wrap a:hover {
  background: url(../../img/common/arrow_r.svg) no-repeat 92% 50%, #000;
}

.to_reform_link a{
  font-size: 1.8rem;
  width: 100%;
  color: #9f1012;
  font-weight: bold;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 110px;
  position: relative;
  z-index: 1;
}
.to_reform_link.-sumaisupport a{
  font-size: 1.8rem;
}
.to_reform_link a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #9f1012;
  box-sizing: border-box;
  z-index: -2;
}

.to_reform_link a::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border: 1px solid #9f1012;
  box-sizing: border-box;
  z-index: -1;
}
.to_reform_link a:hover{
  color: #fff;
  background-color: #9f1012;
}
.to_reform_link a::before,
.to_reform_link a::after {
  transition: border-color 0.3s ease;
}

.to_reform_link a:hover::before,
.to_reform_link a:hover::after {
  border-color: #fff;
}
.to_reform_link a span{
  font-size: 1.4rem;
}
.icon-red{
  color: #9f1012;
  margin-left: 5px;
  transition: color 0.3s ease;
}
.to_reform_link a:hover .icon-red {
  color: #fff;
}

@media all and (-ms-high-contrast:none) {

  /* IE11ブラウザハック */
  *::-ms-backdrop,
  .two_links_btn .link_wrap a {
    background: #9f1012;
  }

  *::-ms-backdrop,
  .two_links_btn .link_wrap a:hover {
    background: #000;
  }
}

.two_links_btn .link_wrap a .link_s_txt {
  font-size: 1.4rem;
  display: block;
}

/*/sumaisupport/ .two_links_btn reform_user*/
.two_links_btn .link_wrap a.reform_user {
  background: url(../../img/common/arrow_r.svg) no-repeat 92% 50%, #000;
}

.two_links_btn .link_wrap a.reform_user:hover {
  background: url(../../img/common/arrow_b.svg) no-repeat 92% 50%, #9f1012;
}

@media all and (-ms-high-contrast:none) {

  /* IE11ブラウザハック */
  *::-ms-backdrop,
  .two_links_btn .link_wrap a.reform_user {
    background: #000;
  }

  *::-ms-backdrop,
  .two_links_btn .link_wrap a.reform_user:hover {
    background: #9f1012;
  }
}

@media screen and (max-width: 1024px) {
  .two_links_btn .link_wrap {
  width: 48%;
  display: flex;
}
}
@media screen and (max-width: 768px) {
  .two_links_btn_wrap{
    padding: 0 2.5%;
  }
  .two_links_flex {
    display: block;
  }
  .two_links_btn .link_wrap {
  width: 100%;
  max-width: unset;
}
.two_links_btn{
  margin-bottom: 30px;
}
.two_links_btn .link_wrap:first-child{
  margin-bottom: 30px;
}
}
@media screen and (max-width: 480px) {
  .two_links_btn .link_wrap a{
    font-size: 1.8rem;
}
.to_reform_link a{
  font-size: 1.8rem;
}
.to_reform_link.-sumaisupport a{
  font-size: 1.8rem;
}
}