@charset "UTF-8";
/*=============================================
* body
*=============================================*/
:root {
  /* カラーパレット */
  --primary: #333;
  --color1: #E9BA3A;
  --color2: #34ABDE;
  --color3: #F9F3DA;
  --color4: #42B8A7;
  --color5: #F76E76;
  
  /* 背景色 */
  --bg-white: #fff;
  --bg-light: #FDFAF1;
  --bg-light-blue: #EBF7FC;
  --bg-light-green: #ECF8F6;
  --bg-light-gray: #F3F3F3;
  --bg-gray: #F9F9F9;
  --bg-fa: #FAFAFA;
  
  /* グレースケール */
  --gray-dark: #333;
  --gray-medium: #D9D9D9;
  --gray-light: #DBDBDB;
  --gray-lighter: #E1E1E1;
  --gray-lightest: #E8E8E8;
  --gray-text: #D0D0D0;
  --gray-placeholder: #BCBCBC;
  
  /* ボーダー */
  --border-color: #DBDBDB;
  --border-light: #E1E1E1;
  
  /* メディアクエリブレークポイント */
  --breakpoint-xs: 480px;
  --breakpoint-sm: 767px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 980px;
  --breakpoint-xl: 1100px;
  --breakpoint-xxl: 1250px;
  --breakpoint-xxxl: 1320px;
  
  /* 共通値 */
  --border-radius-sm: 5px;
  --border-radius-md: 10px;
  --border-radius-lg: 15px;
  --border-radius-xl: 30px;
  --border-radius-xxl: 50px;
  --transition-base: ease 0.3s;
  --transition-slow: all 0.5s;
}

body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--primary);
  letter-spacing: 0;
  font-family: "Noto Sans JP";
  min-width: inherit;
  min-height: inherit;
  max-height: 100%;
  background: var(--bg-white);
}

.nav--opened {
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.nav--opened #pagetop, .nav--opened .fx-btn {
  z-index: -1;
  opacity: 0;
}

body.nav--opened, body.nav--opened *, body.nav--opened *:hover, body.nav--opened *:focus, body.nav--opened *:active {
  pointer-events: none !important;
  -ms-touch-action: none !important;
  touch-action: none !important;
}

body.nav--opened .hamburger, body.nav--opened #menu_toggle, body.nav--opened #menu_toggle * {
  pointer-events: visible !important;
  -ms-touch-action: auto !important;
  touch-action: auto !important;
}

/*=============================================
 * fonts - DON'T EDIT
 *=============================================*/
.fnt-mincho {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.fnt-meiryo {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴシックPro", "ＭＳ ゴシック", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.fnt-gothic {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.fnt-belanosima {
  font-family: "Belanosima", sans-serif;
  font-weight: 600;
}

/*=============================================
 * main
 *=============================================*/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* 共通ユーティリティクラス */
.flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

a[href^="tel:"]:hover {
  text-decoration: none;
}

/*=============================================
 * animation
 *=============================================*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn[style*=visible] {
  opacity: 1;
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.animated {
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-duration: 1s;
  animation-fill-mode: both;
}

@media (prefers-brownuced-motion) {
  .animated {
    -webkit-animation: unset !important;
    -webkit-transition: none !important;
    animation: unset !important;
    transition: none !important;
  }
}
i {
  display: flex;
  line-height: 1;
  position: relative;
}

.txt-yellow {
  color: var(--color1);
}

.txt-blue {
  color: var(--color2);
}

.txt-red {
  color: var(--color5);
}

.txt-green {
  color: var(--color4);
}

/*=============================================
 * nav
 *=============================================*/
.gnav {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1;
}
.gnav a, .gnav p {
  display: flex;
}
.gnav .menu-child {
  padding: 10px 0 10px 15px;
}
.gnav .menu-child li {
  margin-top: 10px;
}
.gnav .menu-child a span {
  display: inline-block;
  color: var(--color1);
  margin-right: 5px;
}

/*=============================================
 * header
 *=============================================*/
.logo a {
  display: block;
}
.logo img {
  width: 135px;
}
.logo span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8;
  margin-top: 1px;
}
@media only screen and (min-width: 768px) {
  .logo img {
    width: 234px;
  }
  .logo span {
    font-size: 12px;
    margin-top: 10px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding-left: 15px;
  transition: var(--transition-base);
}
header .nav1 {
  display: none;
}
header .nav2 {
  height: 80px;
}
header .nav2 li {
  height: 100%;
  width: 80px;
}
header .nav2 li a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  width: 100%;
  color: var(--bg-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}
header .nav2 li a.btn-member {
  background: var(--color2);
}
header .nav2 li a.btn-mail {
  background: var(--color1);
}
header .nav2 li a i {
  margin: 0 auto;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
}
header .nav2 li a i img {
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 768px) {
  header {
    height: 90px;
    padding-left: 45px;
  }
  header .header-nav {
    display: flex;
    align-items: center;
  }
  header .header-nav a {
    transition: var(--transition-base);
  }
  header .header-nav a:hover {
    opacity: 0.7;
  }
  header .nav1 {
    display: flex;
  }
  header .nav1 li {
    margin-right: 20px;
  }
  header .nav1 li a {
    font-size: 17px;
    font-weight: 700;
  }
  header .nav2 {
    height: 90px;
  }
  header .nav2 li {
    width: 140px;
  }
  header .nav2 li a {
    font-size: 17px;
  }
  header .nav2 li a.btn-mail i {
    width: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1250px) {
  header {
    padding-left: 20px;
  }
  header .logo a img {
    width: 190px;
  }
  header .logo a span {
    font-size: 9px;
  }
  header .nav2 li {
    width: 100px;
  }
  header .nav2 li a {
    font-size: 14px;
  }
  header .nav1 li {
    margin-right: 15px;
  }
  header .nav1 li a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 999px) {
  header .nav1 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  header {
    height: 60px;
  }
  header .nav2 {
    height: 60px;
  }
}
@media screen and (max-width: 480px) {
  header .nav2 li {
    width: 60px;
  }
  header .nav2 li a {
    font-size: 10px;
  }
  header .logo span {
    font-size: 9px;
  }
  header .logo img {
    width: 125px;
  }
}

.has_scroll header {
  background: var(--bg-white);
}

section {
  z-index: 0;
}

/*=============================================
 * main-title
 *=============================================*/
.main-ttl {
  background: var(--bg-light) url("../img/shared/main_head.jpg") no-repeat bottom center/100% auto;
  text-align: center;
  padding: 110px 20px 55px;
}
.main-ttl p:nth-child(1) {
  color: var(--color1);
  font-family: "Belanosima", sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0.05em;
}
.main-ttl p:nth-child(2), .main-ttl h1 {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.4;
  margin-top: 3px;
}
@media only screen and (min-width: 768px) {
  .main-ttl {
    padding: 112px 20px 85px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px;
  }
  .main-ttl div {
    margin: 0 auto;
    max-width: 1290px;
  }
  .main-ttl p:nth-child(2), .main-ttl h1 {
    font-size: 38px;
  }
}

/*=============================================
 * breadcrumb
 *=============================================*/
.breadcrumb {
  margin-bottom: 85px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 500;
  overflow-x: auto;
}
.breadcrumb ul {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  flex-wrap: wrap;
  max-width: 1290px;
  margin: 0 auto;
}
.breadcrumb ul li {
  display: flex;
  align-items: center;
}
.breadcrumb ul li:not(:last-child):after {
  content: "";
  background: url("../img/shared/ttl_icon.svg") no-repeat center/100% auto;
  width: 17px;
  height: 14px;
  display: block;
  margin: 0 10px;
}
.breadcrumb a:hover {
  opacity: 0.7;
}
@media only screen and (min-width: 768px) {
  .breadcrumb {
    font-size: 15px;
    padding: 8px 30px;
  }
}

/*=============================================
 * menu_toggle
 *=============================================*/
#menu_toggle {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow-y: auto;
  z-index: 999;
  padding: 20vw 0;
  background: var(--bg-white);
  transition: var(--transition-slow) ease 0s;
  -moz-transition: var(--transition-slow) ease 0s;
  -webkit-transition: var(--transition-slow) ease 0s;
  text-align: center;
}
#menu_toggle .inner {
  padding: 0 20px;
  /*height: 100%;*/
}
@media only screen and (max-width: 999px) {
  #menu_toggle .gnav > ul > li {
    border-bottom: 1px solid var(--border-color);
    margin-top: 20px;
  }
  #menu_toggle .gnav a, #menu_toggle .gnav p {
    padding-bottom: 10px;
  }
  #menu_toggle .gnav .menu-child {
    padding: 0 0 10px 0;
  }
  #menu_toggle .gnav .menu-child ul {
    margin-left: 22px;
  }
  #menu_toggle .gnav .toggle .toggle-link {
    position: relative;
  }
  #menu_toggle .gnav .toggle .toggle-link:after, #menu_toggle .gnav .toggle .toggle-link:before {
    content: "";
    background: var(--color1);
    position: absolute;
  }
  #menu_toggle .gnav .toggle .toggle-link:after {
    height: 2px;
    width: 14px;
    top: 7px;
    right: 0;
  }
  #menu_toggle .gnav .toggle .toggle-link:before {
    width: 2px;
    height: 14px;
    top: 1px;
    right: 6px;
    transition: ease 0.3s;
  }
  #menu_toggle .gnav .toggle.active .toggle-link:before {
    transform: rotate(90deg);
  }
}
@media only screen and (min-width: 1000px) {
  #menu_toggle .gnav .toggle-main {
    display: block !important;
  }
  #menu_toggle .gnav .toggle-main ul {
    margin-left: 20px;
  }
}

.nav--opened #menu_toggle {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}

/*=============================================
 * footer
 *=============================================*/
footer {
  background: var(--bg-white);
  border-radius: 70px 70px 0 0;
  box-shadow: 0px 0px 20px 0px rgba(190, 174, 146, 0.1);
  padding-top: 80px;
  /*@media only screen and (max-width: 959px) {		
  	.df-pc{
  		display: block !important;
  	}
  	.footer-contact{
  		display: block !important;
  	}

   }*/
}
footer .logo {
  display: flex;
  justify-content: flex-start;
  text-align: left;
}
footer .logo img {
  width: 234px;
}
footer .logo span {
  font-size: 12px;
  margin-top: 10px;
}
footer .footer-contact {
  text-align: center;
  font-size: 15px;
  letter-spacing: 0;
}
footer .footer-txt {
  line-height: 22px;
  margin: 30px 0;
}
footer .tel .df {
  justify-content: center;
  align-items: center;
  font-size: 12px;
  line-height: 30px;
}
footer .tel .df span {
  font-weight: 700;
  font-size: 24px;
  display: inline-block;
  margin: 0 3px 0 8px;
}
footer .tel .df i {
  line-height: 18px;
  margin-top: 2px;
}
footer .footer-mail {
  text-align: center;
  margin-top: 10px;
}
footer .footer-mail a {
  justify-content: center;
  align-items: center;
  display: inline-flex;
  font-weight: 700;
  font-size: 22px;
  line-height: 40px;
}
footer .footer-mail a i {
  line-height: 15px;
  margin-top: 2px;
  margin-right: 15px;
}
footer address {
  text-align: center;
  color: var(--gray-text);
  font-size: 10px;
  letter-spacing: 0;
  font-weight: 600;
  font-family: "Belanosima", sans-serif;
  padding: 20px;
}
@media only screen and (min-width: 768px) {
  footer {
    padding: 100px 30px 0;
  }
  footer .footer-nav {
    width: 734px;
    justify-content: space-between;
  }
  footer .footer-nav li {
    margin-bottom: 18px;
  }
  footer .footer-nav li.menu-parent {
    margin-bottom: 10px;
  }
  footer .footer-nav .menu-child {
    padding: 10px 0 10px 15px;
  }
  footer .footer-nav .menu-child li {
    margin-top: 10px;
  }
  footer .footer-nav .menu-child a span {
    display: inline-block;
    color: var(--color1);
    margin-right: 5px;
  }
  footer address {
    border-top: 1px solid var(--border-color);
  }
}
@media only screen and (max-width: 1100px) {
  footer .wrap > .df-pc {
    display: block !important;
  }
  footer .logo {
    margin-bottom: 40px;
  }
  footer .footer-nav {
    width: 100%;
    max-width: 734px;
  }
}
@media only screen and (max-width: 767px) {
  footer .logo {
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  footer .gnav {
    margin: 50px auto 0;
    width: 100%;
    max-width: 480px;
  }
  footer .gnav > ul > li {
    border-bottom: 1px solid var(--border-color);
    margin-top: 20px;
  }
  footer .gnav a, footer .gnav p {
    padding-bottom: 10px;
  }
  footer .gnav p.pc {
    display: none !important;
  }
  footer .gnav .menu-child {
    padding: 0 0 10px 0;
  }
  footer .gnav .menu-child ul {
    margin-left: 22px;
  }
  footer .gnav .toggle .toggle-link {
    position: relative;
  }
  footer .gnav .toggle .toggle-link:after, footer .gnav .toggle .toggle-link:before {
    content: "";
    background: var(--color1);
    position: absolute;
  }
  footer .gnav .toggle .toggle-link:after {
    height: 2px;
    width: 14px;
    top: 7px;
    right: 0;
  }
  footer .gnav .toggle .toggle-link:before {
    width: 2px;
    height: 14px;
    top: 1px;
    right: 6px;
    transition: ease 0.3s;
  }
  footer .gnav .toggle.active .toggle-link:before {
    transform: rotate(90deg);
  }
}
@media only screen and (min-width: 768px) {
  footer .gnav .toggle-main {
    display: block !important;
  }
  footer .gnav .toggle-main ul {
    margin-left: 20px;
  }
}

iframe {
  width: 100%;
  height: 100%;
}

#pagetop {
  position: fixed;
  right: 20px;
  bottom: 50px;
  font-size: 17px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-base);
}
#pagetop a {
  display: block;
  text-align: center;
}
#pagetop i {
  width: 28px;
  justify-content: center;
	margin: 0 auto;
}

/*=============================================
 * general
 *=============================================*/
.slick-slide > div {
  display: flex;
}

.slick-dots {
  font-size: 0;
  line-height: 0;
  text-align: center;
  margin-top: 50px;
}

.slick-dots li {
  display: inline-block;
  line-height: 0;
  padding: 0 15px;
  cursor: pointer;
  box-sizing: border-box;
}

.slick-dots li button {
  border: none;
  position: relative;
  cursor: pointer;
  outline: none;
  background: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-medium);
}

.slick-dots .slick-active button {
  background: var(--color1);
}

.slick-arrow {
  top: 50%;
  z-index: 2;
  border: none;
  outline: none;
  color: transparent;
  position: absolute;
  cursor: pointer;
  background: transparent;
  width: 47px;
  height: 47px;
  margin-top: -60px;
  transition: var(--transition-base);
}

.slick-arrow.slick-prev {
  left: -10px;
  background: url("../img/index/arrow_left.png") no-repeat center/100% auto;
}

.slick-arrow.slick-next {
  right: -10px;
  background: url("../img/index/arrow_right.png") no-repeat center/100% auto;
}

.slick-arrow.slick-prev:hover {
  background: url("../img/index/arrow_left_on.png") no-repeat center/100% auto;
}

.slick-arrow.slick-next:hover {
  right: -10px;
  background: url("../img/index/arrow_right_on.png") no-repeat center/100% auto;
}

@media only screen and (min-width: 768px) {
  .slick-arrow.slick-prev {
    left: -17px;
  }
  .slick-arrow.slick-next {
    right: -25px;
  }
}
@media only screen and (max-width: 767px) {
  .df-sp {
    display: flex;
    justify-content: space-between;
  }
}
img {
  max-width: 100%;
  height: auto;
}

@media only screen and (max-width: 767px) {
  .wrap {
    padding: 0 20px;
    position: relative;
  }
}
@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  img {
    width: auto;
  }
  .wrap {
    margin: auto;
    max-width: 1290px;
    width: 100%;
    padding: 0;
    position: relative;
    z-index: 0;
    box-sizing: border-box;
  }
  .txt-vertical-pc {
    cursor: vertical-text;
    writing-mode: vertical-rl;
    text-orientation: upright;
    word-wrap: break-word;
  }
  .txt-vertical-pc .int {
    writing-mode: horizontal-tb;
    line-height: 1;
    display: inline-block;
    margin-left: 19px;
  }
  .df-pc {
    display: flex !important;
    justify-content: space-between;
  }
}
.df {
  display: flex;
  justify-content: space-between;
}

em {
  font-style: normal;
}

.shadow {
  box-shadow: 0px 0px 20px 0px rgba(190, 174, 146, 0.15);
}

.btn-global1 {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color1);
  color: var(--bg-white);
  border-radius: var(--border-radius-xl);
  font-weight: 700;
  line-height: 1.5;
  padding: 14px 0;
  border: 2px solid var(--color1);
  transition: var(--transition-base);
}
.btn-global1 span {
  display: block;
}
.btn-global1:after {
  content: "";
  display: block;
  margin-left: 20px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent var(--bg-white);
  transform: rotate(0deg);
  transition: var(--transition-base);
}
.btn-global1:hover {
  background: var(--bg-white);
  color: var(--color1);
}
.btn-global1:hover:after {
  border-color: transparent transparent transparent var(--color1);
}
@media only screen and (min-width: 768px) {
  .btn-global1 {
    padding: 14px 56px;
    letter-spacing: 1.5px;
    font-size: 18px;
  }
}

.btn-global2 {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-light-gray);
  color: var(--bg-white);
  border-radius: var(--border-radius-md);
  font-weight: 700;
  line-height: 1.5;
  padding: 15px 0;
  transition: var(--transition-base);
}
.btn-global2 span {
  display: block;
}
.btn-global2:hover {
  background: var(--color1);
  color: var(--bg-white);
}
@media only screen and (min-width: 768px) {
  .btn-global2 {
    width: 407px;
  }
}

.btn-global3 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--color2);
  color: var(--bg-white);
  border-radius: var(--border-radius-xl);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  padding: 3px 15px;
  transition: var(--transition-base);
  border: 2px solid var(--color2);
}
.btn-global3:hover {
  background: var(--bg-white);
  color: var(--color2);
}
@media only screen and (min-width: 768px) {
  .btn-global3 {
    width: 407px;
  }
}

.txt-link a {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  transition: var(--transition-base);
}
.txt-link a:after {
  content: "";
  transition: var(--transition-base);
  background: url("../img/shared/arrow_off.png") no-repeat center/100% auto;
  width: 21px;
  height: 21px;
  display: block;
  margin-left: 10px;
}
.txt-link a:hover {
  color: var(--color1);
}
.txt-link a:hover:after {
  background: url("../img/shared/arrow_on.png") no-repeat center/100% auto;
}

.list-cate {
  display: flex;
  flex-wrap: wrap;
  padding: 8px 0;
}
.list-cate li {
  margin: 0 20px 10px 0;
}
@media only screen and (min-width: 768px) {
  .list-cate .btn-global3 {
    width: auto;
  }
}

#contact {
  margin-bottom: -70px;
}
#contact .contact-bg {
  line-height: normal;
}
#contact .contact-bg img {
  min-height: 24px;
}
#contact .wrap {
  padding: 80px 20px 140px;
}
#contact .contact-deco1 {
  position: absolute;
  width: 67px;
  top: -74px;
  right: 105px;
}
#contact .contact-deco2 {
  position: absolute;
  width: 98px;
  top: 64px;
  right: 20px;
}
#contact .ttl2 {
  margin-bottom: 40px;
}
#contact .contact-right {
  border-radius: var(--border-radius-md);
  background: var(--bg-white);
  margin-top: 80px;
  box-sizing: border-box;
  padding: 30px 20px;
  text-align: center;
}
#contact .contact-txt2 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
}
#contact .tel {
  font-size: 12px;
  line-height: 1.5;
}
#contact .tel .df {
  justify-content: center;
  align-items: center;
}
#contact .tel .df span {
  font-weight: 700;
  font-size: 36px;
  display: inline-block;
  margin: 0 3px 0 8px;
}
#contact .tel .df i {
  line-height: 18px;
  margin-top: 2px;
}
#contact .contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  font-weight: 700;
  color: var(--bg-white);
  border-radius: var(--border-radius-xl);
  height: 50px;
  margin-top: 20px;
  transition: var(--transition-base);
}
#contact .contact-btn i {
  margin-right: 10px;
  transition: var(--transition-base);
}
#contact .contact-btn i img {
  transition: var(--transition-base);
}
#contact .contact-col:nth-child(1) {
  padding-bottom: 25px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}
#contact .contact-col:nth-child(1) .contact-btn {
  background: var(--color2);
  border: 2px solid var(--color2);
}
#contact .contact-col:nth-child(1) .contact-btn i {
  width: 20px;
}
#contact .contact-col:nth-child(1) .contact-btn:hover {
  color: var(--color2);
  background: var(--bg-white);
}
#contact .contact-col:nth-child(1) .contact-btn:hover i {
  background: url("../img/shared/icon_member_blue.svg") no-repeat center/100% auto;
}
#contact .contact-col:nth-child(1) .contact-btn:hover i img {
  opacity: 0;
}
#contact .contact-col:nth-child(2) .contact-btn {
  background: var(--color1);
  border: 2px solid var(--color1);
}
#contact .contact-col:nth-child(2) .contact-btn i {
  width: 17px;
}
#contact .contact-col:nth-child(2) .contact-btn:hover {
  color: var(--color1);
  background: var(--bg-white);
}
#contact .contact-col:nth-child(2) .contact-btn:hover i {
  background: url("../img/shared/icon_mail_yellow2.svg") no-repeat center/100% auto;
}
#contact .contact-col:nth-child(2) .contact-btn:hover i img {
  opacity: 0;
}
@media only screen and (min-width: 768px) {
  #contact .bg2 {
    padding: 0 30px;
  }
  #contact .wrap {
    padding: 120px 0 170px;
  }
  #contact .contact-deco1 {
    width: 105px;
    top: -152px;
    right: 246px;
  }
  #contact .contact-deco2 {
    width: 154px;
    top: -52px;
    right: 22px;
  }
  #contact .contact-left {
    width: 400px;
    margin-right: 30px;
  }
  #contact .ttl2 {
    margin-bottom: 57px;
  }
  #contact .ttl2 h2 {
    margin-top: 27px;
  }
  #contact .contact-right {
    margin-top: 28px;
    padding: 30px 20px;
    max-width: 846px;
    width: calc(100% - 430px);
    position: relative;
  }
  #contact .contact-right:before {
    content: "";
    position: absolute;
    left: 50%;
    width: 1px;
    background: var(--border-color);
    top: 30px;
    bottom: 30px;
  }
  #contact .contact-txt2 {
    line-height: 22px;
    margin-bottom: 24px;
  }
  #contact .tel {
    font-size: 12px;
    line-height: 1;
  }
  #contact .tel .df-pc {
    align-items: flex-end;
    justify-content: center;
  }
  #contact .tel .df {
    margin-right: 10px;
  }
  #contact .tel .df span {
    font-size: 26px;
    margin: 0 3px 0 8px;
  }
  #contact .tel .df i {
    line-height: 18px;
    margin-top: 2px;
  }
  #contact .contact-col {
    width: 50%;
    box-sizing: border-box;
    padding: 0 30px !important;
  }
  #contact .contact-col:nth-child(1) {
    margin-bottom: 0;
    border-bottom: none;
  }
  #contact .contact-col:nth-child(1) .contact-btn {
    margin-top: 14px;
  }
  #contact .contact-col:nth-child(2) .contact-txt2 {
    margin-bottom: 30px;
  }
  #contact .contact-col:nth-child(2) .contact-btn {
    margin-top: 7px;
  }
}
@media only screen and (max-width: 1320px) and (min-width: 768px) {
  #contact .contact-col {
    width: 340px;
    padding: 0 !important;
  }
}
@media only screen and (max-width: 1250px) and (min-width: 768px) {
  #contact .contact-col {
    width: calc(50% - 30px);
  }
  #contact .contact-col:nth-child(2) .contact-txt2 {
    margin-bottom: 50px;
  }
  #contact .tel .df-pc {
    display: block !important;
  }
  #contact .tel .df-pc .df {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 1100px) and (min-width: 768px) {
  #contact .wrap > .df-pc {
    display: block !important;
  }
  #contact .contact-right {
    width: 100%;
    max-width: 700px;
    margin: 28px auto 0;
  }
}

.bg2 {
  background: var(--bg-light);
}

.bg3 {
  background: url("../img/business/service_bg1.jpg") no-repeat top center/100% auto, url("../img/business/service_bg2.jpg") no-repeat bottom center/100% auto var(--bg-light);
  padding: 80px 0 50px;
  margin-bottom: 130px;
}
@media only screen and (min-width: 768px) {
  .bg3 {
    padding: 155px 30px 88px;
  }
}

.bg4 {
  background: url("../img/wordpress/bg_top.jpg") no-repeat top center/100% auto, url("../img/wordpress/bg_bottom.jpg") no-repeat bottom center/100% auto var(--bg-light);
  padding: 80px 0 50px;
  margin-bottom: 130px;
}
@media only screen and (min-width: 768px) {
  .bg4 {
    padding: 155px 30px 88px;
  }
}

.ttl {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media only screen and (min-width: 768px) {
  .ttl {
    font-size: 38px;
    line-height: 56px;
  }
}

.ttl-sub {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
}
@media only screen and (min-width: 768px) {
  .ttl-sub {
    font-size: 30px;
    line-height: 48px;
  }
}

.ttl2 .fnt-belanosima {
  font-size: 50px;
  line-height: 56px;
}
.ttl2 h2 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 13px;
  font-weight: 700;
  margin-top: 10px;
}
.ttl2 h2 i {
  width: 14px;
  margin-right: 5px;
}
@media only screen and (min-width: 768px) {
  .ttl2 .fnt-belanosima {
    font-size: 70px;
    line-height: 56px;
  }
  .ttl2 h2 {
    font-size: 20px;
    margin-top: 30px;
    line-height: 1;
  }
  .ttl2 h2 i {
    width: 17px;
    margin-right: 5px;
  }
}

.ttl26 {
  font-size: 22px;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .ttl26 {
    font-size: 26px;
  }
}

.ttl28 {
  font-size: 24px;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .ttl28 {
    font-size: 28px;
  }
}

.bg_white {
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  box-sizing: border-box;
  padding: 30px 20px;
}
@media only screen and (min-width: 768px) {
  .bg_white {
    padding: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1100px) {
  .bg_white {
    padding: 40px 30px;
  }
}

.bg-blue {
  padding: 30px 20px;
  border-radius: var(--border-radius-md);
  background: var(--bg-light-blue);
}
@media only screen and (min-width: 768px) {
  .bg-blue {
    padding: 50px 60px 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1100px) {
  .bg-blue {
    padding: 40px 30px;
  }
}

.bg-green {
  padding: 30px 20px;
  border-radius: var(--border-radius-md);
  background: var(--bg-light-green);
}
@media only screen and (min-width: 768px) {
  .bg-green {
    padding: 50px 60px 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1100px) {
  .bg-green {
    padding: 40px 30px;
  }
}

.bg_yellow2 {
  background: var(--bg-light);
  border-radius: var(--border-radius-md);
  box-sizing: border-box;
  padding: 30px 20px;
}
@media only screen and (min-width: 768px) {
  .bg_yellow2 {
    padding: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1100px) {
  .bg_yellow2 {
    padding: 40px 30px;
  }
}

.group_hover .group-item {
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  margin-bottom: 30px;
  display: grid;
}
.group_hover .group-item .group-ttl {
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  margin: 0 -20px 20px;
}
.group_hover .group-item .item-icon {
  margin: 0 auto;
  text-align: center;
  max-width: 236px;
}
.group_hover .group-item i {
  position: absolute;
  background: var(--color1);
  border-radius: var(--border-radius-md) 0 0 0;
  bottom: -1px;
  right: -1px;
  width: 33px;
  height: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.group_hover .group-off, .group_hover .group-on {
  align-content: start;
  grid-column: 1/-1;
  grid-row: 1/-1;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.6, 0, 0.4, 1);
  border: 2px solid var(--color1);
  border-radius: var(--border-radius-md);
}
.group_hover .group-off {
  /*position: absolute;
  top: 0;
  left: 0;
  z-index: 1;*/
  background: var(--bg-white);
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  backface-visibility: visible;
  transform: rotateY(0deg);
}
.group_hover .group-on {
  color: var(--bg-white);
  background: var(--color1);
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  transform: rotateY(180deg);
  backface-visibility: hidden;
}
.group_hover .group-on .group-ttl {
  padding-bottom: 28px;
  margin-bottom: 30px;
  position: relative;
}
.group_hover .group-on .group-ttl:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 25px);
  width: 50px;
  height: 2px;
  background: var(--bg-white);
}
.group_hover .group-on .group-txt {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .group_hover .group-item:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 768px) {
  .group_hover .group-item.active .group-off {
    transform: rotateY(-180deg);
  }
  .group_hover .group-item.active .group-on {
    transform: rotateY(0deg);
  }
}
@media only screen and (min-width: 768px) {
  .group_hover {
    flex-wrap: wrap;
  }
  .group_hover .group-item {
    width: calc(50% - 25px);
    margin-bottom: 50px;
  }
  .group_hover .group-item .group-on {
    min-height: 330px;
  }
}
@media only screen and (min-width: 769px) {
  .group_hover .group-item:hover .group-off {
    transform: rotateY(-180deg);
  }
  .group_hover .group-item:hover .group-on {
    transform: rotateY(0deg);
  }
}
.group_hover.box-green .group-item .group-off, .group_hover.box-green .group-item .group-on {
  border-color: var(--color4);
}
.group_hover.box-green .group-item .group-ttl {
  color: var(--color4);
}
.group_hover.box-green .group-item i {
  background: var(--color4);
}
.group_hover.box-green .group-on {
  background: var(--color4);
  color: var(--bg-white);
}
.group_hover.box-blue .group-item .group-off, .group_hover.box-blue .group-item .group-on {
  border-color: var(--color2);
}
.group_hover.box-blue .group-item .group-ttl {
  color: var(--color2);
}
.group_hover.box-blue .group-item i {
  background: var(--color2);
}
.group_hover.box-blue .group-on {
  background: var(--color2);
  color: var(--bg-white);
}

.style1 {
  margin-bottom: 30px;
}
.style1:last-child {
  margin-bottom: 0;
}
.style1 dt {
  text-align: center;
  border-radius: var(--border-radius-md);
  line-height: 1.4;
  font-weight: 700;
  font-size: 18px;
  padding: 19px 10px;
}
.style1 dd {
  margin-top: 20px;
  line-height: 1.4;
}
.style1 dd .sec6-txt3 {
  font-weight: 700;
  margin-bottom: 5px;
}
.style1 dd .sec6-txt3 span {
  font-size: 26px;
}
.style1.bg_grey dt {
  background: var(--gray-medium);
}
.style1.bg_blue dt {
  background: var(--color2);
  color: var(--bg-white);
}
.style1.bg_yellow dt {
  background: var(--color1);
  color: var(--bg-white);
}
@media only screen and (min-width: 768px) {
  .style1 dt {
    width: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    padding: 19px 10px;
  }
  .style1 dd {
    width: calc(100% - 240px);
    margin: 0;
  }
}

.style3 {
  background: var(--bg-light);
  padding: 50px 20px;
  margin-bottom: 80px;
  border-radius: var(--border-radius-md);
}
.style3 h2 {
  margin: 40px 0;
  text-align: left !important;
}
@media only screen and (min-width: 981px) {
  .style3 {
    padding: 50px 60px;
    margin-bottom: 140px;
  }
  .style3 h2 {
    margin: 0 0 40px;
  }
  .style3 .df-pc {
    align-items: center;
  }
  .style3 .style3-img {
    order: 2;
    width: 418px;
  }
  .style3 .style3-info {
    width: calc(100% - 450px);
    max-width: 622px;
  }
}
@media only screen and (min-width: 981px) and (max-width: 1350px) {
  .style3 {
    width: calc(100% - 60px);
  }
}
@media only screen and (min-width: 981px) and (max-width: 1200px) {
  .style3 {
    padding: 50px 40px;
  }
  .style3 .style3-img {
    width: 320px;
  }
  .style3 .style3-info {
    width: calc(100% - 400px);
  }
  .style3 h2 br {
    display: none !important;
  }
}
@media only screen and (max-width: 980px) {
  .style3 {
    margin-left: 30px;
    margin-right: 30px;
    width: calc(100% - 60px);
  }
  .style3 .df-pc {
    display: block !important;
  }
  .style3 .style3-img {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .style3 .style3-info {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .style3 {
    margin-left: 20px;
    margin-right: 20px;
    width: calc(100% - 40px);
  }
}

.style4 {
  margin-bottom: 70px;
}
.style4 dl {
  margin-bottom: 50px;
}
.style4 dl dt {
  color: var(--color1);
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .style4 {
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 140px;
  }
}

.tabs-switch .tab-link li {
  width: 100%;
  margin-bottom: 20px;
}
.tabs-switch .tab-link li p {
  background: var(--bg-light-gray);
  border-radius: var(--border-radius-md);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  padding: 25px 10px;
  width: 100%;
  text-align: center;
}
.tabs-switch .tab-link li:after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 10px 8px 0 8px;
  border-color: var(--color1) transparent transparent transparent;
  display: none;
}
.tabs-switch .tab-link li.active p {
  background: var(--color1);
  color: var(--bg-white);
}
.tabs-switch .tab-link li.active:after {
  display: block;
}
.tabs-switch .tab-link li:hover p {
  background: var(--color1);
  color: var(--bg-white);
}
.tabs-switch .toggle {
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  box-sizing: border-box;
  margin-bottom: 20px;
  padding: 15px 40px 15px 15px;
}
.tabs-switch .toggle .df {
  align-items: flex-start;
}
.tabs-switch .toggle .q, .tabs-switch .toggle .a {
  color: var(--color1);
  font-size: 26px;
  font-family: "Belanosima", sans-serif;
  width: 22px;
  line-height: 1;
}

.tabs-switch .toggle .toggle-txt {
  width: calc(100% - 36px);
}
.tabs-switch .toggle .toggle-link {
  position: relative;
}
.tabs-switch .toggle .toggle-link:before, .tabs-switch .toggle .toggle-link:after {
  content: "";
  position: absolute;
  background: var(--color1);
}
.tabs-switch .toggle .toggle-link:before {
  height: 2px;
  width: 14px;
  right: -22px;
  top: calc(50% - 1px);
}
.tabs-switch .toggle .toggle-link:after {
  width: 2px;
  height: 14px;
  right: -16px;
  top: calc(50% - 7px);
  transition: var(--transition-base);
}
.tabs-switch .toggle .toggle-link .toggle-txt {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
}
.tabs-switch .toggle .toggle-main {
  margin-top: 15px;
  font-size: 15px;
  line-height: 32px;
}
.tabs-switch .toggle.active .toggle-link:after {
  transform: rotate(90deg);
}
@media only screen and (max-width: 767px) {
	.tabs-switch .toggle .q {
		transform: translateY(-3px);
	}
  .tabs-switch .tab-link {
    margin-bottom: 35px;
  }
}
@media only screen and (min-width: 768px) {
  .tabs-switch .tab-link {
    margin-bottom: 28px;
  }
  .tabs-switch .tab-link li {
    width: calc((100% - 28px) / 3);
    margin-bottom: 0;
  }
  .tabs-switch .toggle {
    width: calc(50% - 25px);
    margin-bottom: 30px;
    padding: 18px 40px 18px 19px;
  }
  .tabs-switch .toggle .q, .tabs-switch .toggle .a {
    font-size: 30px;
  }
  .tabs-switch .toggle .toggle-link .toggle-txt {
    padding-top: 5px;
  }
  .tabs-switch .toggle .toggle-main {
    margin-top: 24px;
  }
  .tabs-switch .toggle .toggle-main .toggle-txt {
    margin-top: -5px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 980px) {
  .tabs-switch .tab-link li {
    width: calc((100% - 20px) / 3);
  }
  .tabs-switch .tab-link li p {
    letter-spacing: 0;
    font-size: 16px;
  }
  .tabs-switch .toggle {
    width: calc(50% - 15px);
  }
}

.point-item {
  padding-right: 0;
  padding-left: 0;
  margin-bottom: 40px;
}
.point-item:last-child {
  margin-bottom: 0;
}
.point-item .toggle-link {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 15px;
}
.point-item .toggle-link:before, .point-item .toggle-link:after {
  display: none;
}
.point-item .toggle-main {
  margin-top: 30px;
}
.point-item .point-num {
  font-weight: 400;
  color: var(--bg-white);
  background: var(--color1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  line-height: 1;
  border-radius: var(--border-radius-md);
  width: 115px;
  height: 36px;
}
.point-item .point-num span {
  display: block;
  font-weight: 400;
  margin-left: 7px;
}
.point-item .point-ttl {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  margin-top: 20px;
  padding-right: 40px;
  position: relative;
}
.point-item .point-link {
  position: absolute;
  width: 26px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.point-item .point-link i {
  width: 100%;
  transform: rotate(90deg);
  transition: var(--transition-base);
}
.point-item .point-link i img {
  max-width: inherit;
  width: 100%;
}
.point-item.active .point-link i {
  transform: rotate(-90deg);
}
.point-item .point-txt2 {
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 20px;
}
.point-item .point-box {
  box-sizing: border-box;
  padding: 27px 20px;
  border-radius: var(--border-radius-md);
  margin-bottom: 50px;
}
.point-item .checklist li {
  margin-bottom: 20px;
  align-items: flex-start;
  justify-content: space-between;
}
.point-item .checklist li i {
  width: 18px;
  margin-top: 5px;
}
.point-item .checklist li p {
  width: calc(100% - 31px);
}
.point-item .box1 {
  background: var(--bg-light);
}
.point-item .box1 .checklist strong {
  font-size: 18px;
  font-weight: 700;
}
.point-item .box2 {
  background: rgba(247, 110, 118, 0.1);
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .point-item .txt_close, .point-item .txt_open {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .point-item {
    margin-bottom: 73px;
  }
  .point-item .toggle-link {
    padding-bottom: 20px;
  }
  .point-item .toggle-main {
    margin-top: 30px;
  }
  .point-item .point-num {
    font-size: 30px;
    width: 150px;
    height: 46px;
  }
  .point-item .point-ttl {
    font-size: 28px;
    line-height: 40px;
    margin-top: 0;
    padding-right: 160px;
    position: relative;
    width: calc(100% - 180px);
  }
  .point-item .point-link {
    width: 120px;
    font-weight: 700;
    align-items: center;
    justify-content: flex-end;
    line-height: 1;
    font-size: 16px;
  }
.point-item .point-link span {
  top: 7px;
  right: 30px;
  position: absolute;
  transition: var(--transition-base);
}
  .point-item .point-link span.txt_close {
    opacity: 0;
  }
  .point-item .point-link i {
    width: 26px;
    margin: 3px 0 0 13px;
  }
  .point-item .point-box {
    padding: 38px 40px 20px;
  }
  .point-item.active .point-link span.txt_close {
    opacity: 1;
  }
  .point-item.active .point-link span.txt_open {
    opacity: 0;
  }
}

.step {
  position: relative;
  margin-bottom: 70px;
}
.step:before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 100%;
  background: var(--color1);
}
@media only screen and (min-width: 768px) {
  .step:before {
    left: 130px;
  }
}

.step-item {
  margin-bottom: 30px;
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 20px;
  position: relative;
  z-index: 1;
}
.step-item .step-ttl {
  text-align: center;
  margin-bottom: 15px;
}
.step-item .step-ttl p:nth-child(1) {
  color: var(--color1);
  line-height: 1;
  font-weight: 400;
  font-size: 80px;
  margin-bottom: 5px;
}
.step-item .step-ttl p:nth-child(2) {
  font-size: 18px;
  font-weight: 700;
}
.step-item a {
  display: inline-flex;
  color: var(--bg-white);
  border-radius: var(--border-radius-xl);
  justify-content: center;
  align-items: center;
  width: 262px;
  height: 50px;
  background: var(--color2);
  margin-top: 15px;
  font-size: 17px;
  font-weight: 700;
  border: 2px solid var(--color2);
}
.step-item a i {
  margin-right: 10px;
  width: 20px;
  transition: var(--transition-base);
}
.step-item a i img {
  transition: var(--transition-base);
}
.step-item a:hover {
  color: var(--color2);
  background: var(--bg-white);
}
.step-item a:hover i {
  background: url("../img/shared/icon_member_blue.svg") no-repeat center/100% auto;
}
.step-item a:hover i img {
  opacity: 0 !important;
}
@media only screen and (max-width: 767px) {
  .step-item a {
    margin: 15px auto 0;
    display: flex;
  }
}
@media only screen and (min-width: 768px) {
  .step-item {
    padding: 0;
    align-items: center;
  }
  .step-item:nth-child(1) {
    align-items: flex-start;
  }
  .step-item .step-ttl {
    width: 258px;
    margin-bottom: 0;
    padding: 30px 0;
  }
  .step-item .step-txt {
    width: calc(100% - 258px);
    box-sizing: border-box;
    padding: 40px 30px 40px 0;
  }
  .step-item a {
    display: inline-flex;
    color: var(--bg-white);
    border-radius: var(--border-radius-xl);
    justify-content: center;
    align-items: center;
    width: 262px;
    height: 52px;
    background: var(--color2);
    margin-top: 15px;
    font-size: 17px;
    font-weight: 700;
  }
  .step-item a i {
    margin-right: 10px;
  }
}

.case-item {
  margin-bottom: 50px;
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 20px 20px 30px;
}
.case-item .case-ttl {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 18px;
  margin-bottom: 25px;
}
.case-item .case-ttl p:nth-child(1) {
  color: var(--color1);
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
}
.case-item .case-ttl p:nth-child(1) span {
  display: inline-block;
  margin-left: 3px;
  font-size: 50px;
}
.case-item .case-ttl p:nth-child(2) {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.4;
  margin-top: 10px;
}
@media only screen and (min-width: 768px) {
  .case-item {
    padding: 70px 60px 60px;
  }
  .case-item .case-ttl {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 18px;
    margin-bottom: 25px;
    justify-content: flex-start;
  }
  .case-item .case-ttl p:nth-child(1) {
    width: 120px;
  }
  .case-item .case-ttl p:nth-child(2) {
    width: calc(100% - 120px);
    margin-top: 9px;
  }
}

.style2 .style2-img {
  margin: 0 auto;
  border-radius: 50%;
  width: 145px;
}
.style2 .style2-box {
  border: 2px solid var(--color1);
  position: relative;
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  margin-top: 25px;
  padding: 20px 20px 10px;
  font-size: 17px;
  line-height: 2;
}
.style2 .style2-box:before, .style2 .style2-box:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 0px;
  height: 0px;
  border-style: solid;
}
.style2 .style2-box:before {
  border-width: 0 9px 12px 9px;
  border-color: transparent transparent var(--bg-white) transparent;
  z-index: 1;
}
.style2 .style2-box:after {
  border-width: 0 12px 15px 12px;
  border-color: transparent transparent var(--color1) transparent;
}
.style2 .b18 {
  text-align: center;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .style2 + .style2 {
    margin-top: 40px;
  }
}

.list-dot li {
  padding-left: 10px;
  position: relative;
}
.list-dot li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gray-dark);
}

.list-num {
  list-style: auto;
  margin-left: 17px;
}

.b18 {
  font-weight: 700;
  font-size: 18px;
}

.mb30 {
  margin-bottom: 30px;
}

/*=============================================
 * shared add - 追加スタイル
 *=============================================*/
.btn-cus a {
  background: var(--color1);
  display: block;
  color: var(--bg-white);
  font-weight: bold;
  font-size: 17px;
  padding: 10px;
  border-radius: var(--border-radius-xl);
  text-align: center;
  position: relative;
  max-width: 80%;
  margin: 0 auto;
}

.btn-cus a::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 0 solid transparent;
  border-bottom: 10px solid var(--bg-white);
  position: absolute;
  left: 30px;
  bottom: 20px;
  margin-left: -11px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  box-sizing: border-box;
  border-left: 10px solid transparent;
}

@media only screen and (min-width: 768px) {
  .btn-cus a {
    margin: 0;
    width: 320px;
    padding: 12px;
    border: 2px solid var(--color1);
    transition: var(--transition-slow);
  }
  .btn-cus a::before {
    border-bottom: 8px solid var(--bg-white);
    border-left: 8px solid transparent;
    width: 8px;
    height: 8px;
    bottom: 23px;
  }
  .btn-cus a:hover {
    background: var(--bg-white);
    border: 2px solid var(--color1);
    color: var(--color1);
    transition: var(--transition-slow);
  }
  .btn-cus a:hover::before {
    border-bottom: 8px solid var(--color1);
  }
}
.pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 60px;
}

.pager li a {
  padding: 5px;
  display: block;
  background: var(--bg-white);
  border: 1px solid var(--color1);
  color: var(--color1);
  margin-right: 10px;
  margin-bottom: 10px;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 600;
}

.pager li a.active {
  background: var(--color1);
  border: 1px solid var(--bg-white);
  color: var(--bg-white);
}

@media only screen and (min-width: 768px) {
  .pager {
    margin-top: 10px;
  }
  .pager li a {
    font-size: 17px;
    width: 36px;
    height: 36px;
  }
  .pager li a:hover {
    background: var(--color1);
    color: var(--bg-white);
    transition: var(--transition-slow);
  }
}
.ob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-shared {
  display: flex;
  flex-direction: column;
}

.content-shared .sidebar {
  padding-top: 15vw;
}

.content-shared .sidebar .box-contact {
  padding: 8vw 5vw;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
  border-radius: var(--border-radius-lg);
  margin-bottom: 10vw;
}

.content-shared .sidebar .box-contact .title4 {
  font-weight: bold;
  text-align: center;
  margin-bottom: 1vw;
  font-size: 17px;
}

.content-shared .sidebar .box-contact .form-txt {
  margin-bottom: 3vw;
  font-size: 14px;
  text-align: center;
}

.content-shared .sidebar .box-contact .form-row {
  margin-bottom: 6vw;
}

.content-shared .sidebar .box-contact .form-row .caption-inline {
  font-weight: bold;
  margin-bottom: 5px;
}

.content-shared .sidebar .box-contact .form-row .caption-inline .caption--text {
  font-size: 15px;
  margin-right: 5px;
}

.content-shared .sidebar .box-contact .form-row .caption-inline .caption--required {
  background: var(--color2);
  color: var(--bg-white);
  border-radius: var(--border-radius-xxl);
  text-align: center;
  font-weight: 500;
  padding: 1px 12px;
  font-size: 14px;
}

.content-shared .sidebar .box-contact .form-row .form-value input {
  color: var(--gray-dark);
  font-weight: 500;
  font-size: 15px;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
}

.content-shared .sidebar .box-contact .form-row .form-value input::placeholder {
  color: var(--gray-placeholder);
}

.content-shared .sidebar .box-contact .form-button button,
.content-shared .sidebar .box-contact .form-button input[type="submit"] {
  background: url("../img/whitepaper/arrow_right.png") no-repeat;
  background-position: right 10px top 13px;
  background-color: var(--color1);
  display: block;
  color: var(--bg-white);
  font-weight: bold;
  font-size: 15px;
  padding: 10px;
  border-radius: var(--border-radius-xl);
  text-align: center;
  position: relative;
  border: none;
  width: 100%;
  padding: 13px;
  background-size: 27px;
}

.content-shared .sidebar .row .article-news {
  margin-bottom: 6vw;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 5vw;
  margin-bottom: 5vw;
}

.content-shared .sidebar .row .article-news .date {
  margin-bottom: 4vw;
}

.content-shared .sidebar .row .article-news .article-title {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 2vw;
}

.content-shared .sidebar .row .article-blog {
  padding-bottom: 5vw;
  margin-bottom: 1vw;
  margin-top: 5vw;
}

.content-shared .sidebar .row .article-blog .img {
  margin-bottom: 3vw;
  height: 55vw;
  position: relative;
}

.content-shared .sidebar .row .article-blog .article-title {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 2vw;
  white-space: normal;
}

.content-shared .sidebar .row {
  margin-bottom: 10vw;
}

.content-shared .sidebar .row .title {
  font-weight: bold;
  font-size: 5.5vw;
  border-bottom: 1px solid var(--color1);
  margin-bottom: 3vw;
  padding-bottom: 3vw;
}

.content-shared .sidebar .row .list-cate {
  display: flex;
  flex-wrap: wrap;
}

.content-shared .sidebar .row .list-cate li a {
  display: block;
  background: var(--gray-lightest);
  padding: 5px 15px;
  color: var(--gray-dark);
  border-radius: var(--border-radius-xl);
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 14px;
  border: 2px solid var(--gray-lightest);
}

.content-shared .sidebar .row .list-cate li a.active {
  background: var(--color2);
  color: var(--bg-white);
  border-color: var(--color2);
}

.content-shared .sidebar .row .archive-date {
  width: 100%;
  font-size: 17px;
  font-weight: bold;
  padding: 10px;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-sm);
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--color1) 50%), linear-gradient(135deg, var(--color1) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), 100% 0;
  background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
  background-repeat: no-repeat;
}

.content-shared .content .item {
  margin-bottom: 10vw;
}

.content-shared .content .item .ttl {
  font-size: 5vw;
  margin-bottom: 2vw;
  font-weight: 500;
}

.content-shared .content .item .list-cate {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1vw;
}

.content-shared .content .item .list-cate li a {
  display: block;
  background: var(--color2);
  padding: 5px 15px;
  color: var(--bg-white);
  border-radius: var(--border-radius-xl);
  font-weight: 500;
  font-size: 14px;
  box-sizing: border-box;
  border: 2px solid var(--color2);
}

.content-shared .content .item .img {
  height: 57vw;
  margin-bottom: 6vw;
}

.content-shared .content .detail .title {
  font-size: 6vw;
  font-weight: bold;
  margin-bottom: 6vw;
  line-height: 1.5;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 5vw;
  white-space: normal;
}

.content-shared .content .detail .date {
  margin-bottom: 10vw;
}

.content-shared .content .detail .slide {
  margin-bottom: 8vw;
}

.content-shared .content .detail .slide iframe {
  height: 100vw;
}

.content-shared .content .detail .box-solution {
  padding: 8vw 5%;
  border: 2px solid var(--color1);
  margin-bottom: 10vw;
  border-radius: var(--border-radius-md);
}

.content-shared .content .detail .box-solution .title5 {
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 5vw;
  margin-bottom: 5vw;
  font-weight: bold;
  font-size: 18px;
}

.content-shared .content .detail .box-solution .check {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.content-shared .content .detail .box-solution .check li {
  font-weight: bold;
  padding-left: 27px;
  background: url("../img/whitepaper/check_circle.png") no-repeat left top 4px;
  background-size: 22px;
}

.content-shared .content .detail .row-cate {
  align-items: center;
  margin-bottom: 10vw;
}

.content-shared .content .detail .row-cate .date {
  margin-right: 10px;
  margin-bottom: 0;
}

.content-shared .content .detail .row-cate .category li a, .content-shared .content .detail .row-cate .category li span {
  display: block;
  padding: 3px 15px;
  margin-right: 10px;
  border-radius: var(--border-radius-xl);
  background: var(--color2);
  color: var(--bg-white);
  font-size: 14px;
}

.content-shared .content .detail .row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 8vw;
}

.content-shared .content .detail .row .col {
  display: flex;
  margin-bottom: 3vw;
  align-items: center;
}

.content-shared .content .detail .row .col .ttl {
  background: var(--bg-light);
  padding: 5px 15px;
  border-radius: var(--border-radius-sm);
  margin-right: 20px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
}

.content-shared .content .detail .row .col ul {
  display: flex;
}

.content-shared .content .detail .row .col ul li a {
  display: block;
  background: var(--color2);
  color: var(--bg-white);
  padding: 5px 15px;
  margin-right: 10px;
  border-radius: var(--border-radius-xl);
  font-size: 14px;
  font-weight: 500;
}

.content-shared .content .detail .inner .toc {
  padding: 10vw 5% 1vw;
  background: var(--bg-gray);
  border-radius: var(--border-radius-sm);
  margin-bottom: 11vw;
  font-weight: bold;
}

.content-shared .content .detail .inner .toc header, .content-shared .content .detail .inner .toc .ftwp-header {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  margin-bottom: 5vw;
}

.content-shared .content .detail .inner .toc ol {
  padding-left: 0px;
  list-style: none;
}

.content-shared .content .detail .inner .toc ol:last-of-type {
  margin-bottom: 0;
}

.content-shared .content .detail .inner p {
  margin-bottom: 30px;
}

.content-shared .content .detail .inner img {
  max-width: 100%;
  height: auto;
}

.content-shared .content .detail .inner h2 {
  background: var(--color1);
  color: var(--bg-white);
  padding: 10px;
  font-weight: bold;
  font-size: 6vw;
  border-radius: var(--border-radius-sm);
  margin-bottom: 20px;
}

.content-shared .content .detail .inner h3 {
  font-size: 5vw;
  font-weight: bold;
  position: relative;
  border-bottom: 1px solid var(--color1);
  margin-bottom: 20px;
}

.content-shared .content .detail .inner h4 {
  font-size: 4.5vw;
  margin-bottom: 10vw;
  font-weight: bold;
  position: relative;
  padding-left: 13px;
}

.content-shared .content .detail .inner h4::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 18px;
  background: var(--color1);
  transform: translateY(-50%);
}

.content-shared .content .detail .inner ul {
  list-style: disc;
  padding-left: 32px;
  margin-bottom: 50px;
}

.content-shared .content .detail .inner ol {
  list-style: decimal;
  padding-left: 27px;
  margin-bottom: 50px;
  margin-bottom: 50px;
}

.content-shared .content .detail .inner p a {
  font-weight: bold;
  color: var(--color1);
  border-bottom: 1px solid var(--color1);
  white-space: normal;
}

@media only screen and (min-width: 768px) {
  .content-shared {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .content-shared .content {
    width: calc(100% - 340px);
  }
  .content-shared .sidebar {
    padding-top: 0;
    width: 286px;
  }
  .content-shared .sidebar .box-contact {
    padding: 20px;
  }
  .content-shared .sidebar .box-contact .title4 {
    margin-bottom: 5px;
  }
  .content-shared .sidebar .box-contact .form-txt {
    line-height: 140%;
    margin-bottom: 15px;
  }
  .content-shared .sidebar .box-contact .form-row {
    margin-bottom: 15px;
  }
  .content-shared .sidebar .box-contact .form-row .caption-inline {
    margin-bottom: 13px;
  }
  .content-shared .sidebar .box-contact .form-row .caption-inline .caption--required {
    font-size: 12px;
    padding: 4px 15px;
  }
  .content-shared .sidebar .box-contact .form-row .form-value input {
    font-size: 15px;
  }
    .content-shared .sidebar .box-contact .form-button button,
    .content-shared .sidebar .box-contact .form-button input[type="submit"] {
      cursor: pointer;
      border: 2px solid var(--color1);
    }
    .content-shared .sidebar .box-contact .form-button button:hover,
    .content-shared .sidebar .box-contact .form-button input[type="submit"]:hover {
      border: 2px solid var(--color1);
      color: var(--color1);
      transition: var(--transition-slow);
      background: url(../img/whitepaper/arrow_right_on.png) no-repeat;
      background-position: right 10px top 13px;
      background-color: var(--bg-white);
      background-size: 26px;
    }
  .content-shared .sidebar .row .article-news {
    padding-bottom: 9px;
    margin-bottom: 20px;
  }
  .content-shared .sidebar .row .article-news .date {
    margin-top: 20px;
    margin-bottom: 19px;
  }
  .content-shared .sidebar .row .article-news .article-title {
    margin-bottom: 10px;
    line-height: 26px;
    transition: all 0.5s;
  }
    .content-shared .sidebar .row .article-news .article-title:hover {
      color: var(--color1);
    }
  .content-shared .sidebar .row .article-blog {
    padding-bottom: 11px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .content-shared .sidebar .row .article-blog .img {
    height: min(20vw, 174px);
    margin-bottom: 7px;
  }
  .content-shared .sidebar .row .article-blog .article-title {
    margin-bottom: 0;
    line-height: 22px;
    transition: all 0.5s;
  }
    .content-shared .sidebar .row .article-blog .article-title:hover {
      color: var(--color1);
    }
  .content-shared .sidebar .row {
    margin-bottom: 20px;
  }
  .content-shared .sidebar .row .title {
    font-size: 24px;
    padding-bottom: 8px;
    margin-bottom: 10px;
  }
  .content-shared .sidebar .row .list-cate li a {
    font-size: 15px;
    margin-bottom: 6px;
    padding: 2px 13px;
  }
    .content-shared .sidebar .row .list-cate li a:hover {
      background: var(--bg-white);
      border: 2px solid var(--color2);
      color: var(--color2);
      transition: var(--transition-slow);
    }
  .content-shared .sidebar .row .archive-date {
    padding: 14px 21px;
    margin-top: 8px;
    cursor: pointer;
  }
  .content-shared .content .list-post {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .content-shared .content .item {
    width: 446px;
    margin-bottom: 45px;
    max-width: 48%;
  }
  .content-shared .content .item .ttl {
    font-size: 17px;
    margin-bottom: 0;
    line-height: 39px;
  }
    .content-shared .content .item .ttl:hover {
      color: var(--color1);
      transition: var(--transition-slow);
    }
  .content-shared .content .item .list-cate {
    margin-bottom: 2px;
  }
  .content-shared .content .item .list-cate li {
    margin-right: 16px;
  }
  .content-shared .content .item .list-cate li a {
    padding: 2px 17px;
  }
    .content-shared .content .item .list-cate li a:hover {
      background: var(--bg-white);
      border: 2px solid var(--color2);
      color: var(--color2);
      transition: var(--transition-slow);
    }
  .content-shared .content .item .img {
    height: min(20vw, 283px);
    margin-bottom: 20px;
  }
  .content-shared .content .detail .title {
    font-size: 38px;
    padding-bottom: 17px;
    margin-bottom: 18px;
  }
  .content-shared .content .detail .date {
    margin-bottom: 80px;
  }
  .content-shared .content .detail .slide {
    margin-bottom: 73px;
  }
  .content-shared .content .detail .slide iframe {
    height: 508px;
  }
  .content-shared .content .detail .box-solution {
    padding: 40px 29px;
    margin-bottom: 80px;
  }
  .content-shared .content .detail .box-solution .title5 {
    font-size: 20px;
    letter-spacing: 1px;
    padding-bottom: 15px;
    margin-bottom: 16px;
  }
  .content-shared .content .detail .box-solution .check li {
    font-size: 18px;
    background-size: 25px;
    background-position: left 0 top 0;
  }
  .content-shared .content .detail .row-cate {
    margin-bottom: 40px;
  }
  .content-shared .content .detail .row-cate .category {
    display: flex;
  }
  .content-shared .content .detail .row {
    margin-bottom: 67px;
  }
  .content-shared .content .detail .row .col {
    margin-bottom: 0;
    margin-right: 47px;
  }
  .content-shared .content .detail .row .col .ttl {
    line-height: normal;
    font-size: 15px;
  }
    .content-shared .content .detail .row .col ul li a {
      font-size: 15px;
      border: 2px solid var(--color2);
      padding: 2px 18px;
      box-sizing: border-box;
    }
    .content-shared .content .detail .row .col ul li a:hover {
      background: var(--bg-white);
      border-color: var(--color2);
      color: var(--color2);
      transition: var(--transition-slow);
    }
  .content-shared .content .detail .inner {
    margin-bottom: 122px;
  }
  .content-shared .content .detail .inner .toc {
    margin-bottom: 60px;
    padding: 28px;
  }
  .content-shared .content .detail .inner .toc header, .content-shared .content .detail .inner .toc .ftwp-header {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .content-shared .content .detail .inner .toc ol {
    font-size: 18px;
    margin-bottom: 30px;
    padding-left: 20px;
  }
  .content-shared .content .detail .inner .toc ol ul {
    padding-left: 57px;
  }
  .content-shared .content .detail .inner .toc li li {
    font-size: 16px;
  }
    .content-shared .content .detail .inner .toc a:hover {
      color: var(--color1);
      transition: var(--transition-slow);
    }
  .content-shared .content .detail .inner h1 {
    font-size: 38px;
    padding: 10px 20px;
  }
  .content-shared .content .detail .inner h2 {
    font-size: 26px;
  }
  .content-shared .content .detail .inner h3 {
    font-size: 21px;
    margin-bottom: 20px;
  }
  .content-shared .content .detail .inner h3::before {
    height: 100%;
    width: 5px;
  }
  .content-shared .content .detail .inner ul {
    padding-left: 30px;
    margin-top: 9px;
    margin-bottom: 20px;
  }
  .content-shared .content .detail .inner p a:hover {
    border-bottom: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1100px) {
  .content-shared .content .detail .row .col {
    margin-right: 10px;
    margin-bottom: 10px;
  }
}
.title-shared {
  font-size: 6vw;
  text-align: center;
  margin-bottom: 5vw;
  font-weight: bold;
}

@media only screen and (min-width: 768px) {
  .title-shared {
    font-size: 38px;
    margin-bottom: 30px;
  }
}
/*=============================================
 * img_device
 *=============================================*/

.works-list-slide {
  margin: 60px 0 80px;
}
.works-list-ttl {
  font-weight: 700;
  font-size: 18px;
}
.works-list-item {
  margin-bottom: 40px;
}

@media only screen and (min-width: 768px) {
  .works-list-slide {
    flex-wrap: wrap;
    margin: 24px 0 50px;
  }
  .works-list-item {
    width: calc((100% - 100px) / 3);
    margin-left: 50px;
    margin-bottom: 55px;
  }
  .works-list-item:nth-child(3n+1) {
    margin-left: 0;
  }
}

.img_device {
  position: relative;
  width: 100%;
  background: url("../img/index/sec3_img.svg") no-repeat center/cover;
}
.img_device .img_device_inner {
  padding-top: 63.5%;
  height: 0;
  position: relative;
  display: block;
}
.img_device .img_pc {
  position: absolute;
  width: 74%;
  top: 4%;
  left: 3.2%;
  height: 68%;
  overflow-y: scroll;
  margin-bottom: 0 !important;
}
.img_device .img_pc img {
  width: 100%;
  object-fit: cover;
  max-width: none !important;
}
.img_device .img_sp {
  position: absolute;
  width: 14.1%;
  bottom: 8%;
  right: 1%;
  height: 40%;
  overflow-y: scroll;
  margin-bottom: 0 !important;
}
.img_device .img_sp img {
  width: 100%;
  object-fit: cover;
  max-width: none !important;
}

/*=============================================
 * table_style
 *=============================================*/
.table_style dl {
  margin-bottom: 13px;
}
.table_style dl dt, .table_style dl dd {
  text-align: center;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  font-weight: 700;
  line-height: 1.4;
  padding: 20px 0;
}
.table_style dl dt {
  width: 248px;
  background: var(--bg-fa);
  padding: 15px 20px;
  font-size: 18px;
}
.table_style dl dd {
  justify-content: center;
  width: 433px;
  margin-left: 30px;
}
.table_style dl dd:nth-child(2) {
  background: rgba(66, 184, 167, 0.1);
  text-align: left;
}
.table_style dl dd:nth-child(3) {
  background: rgba(52, 171, 222, 0.1);
  text-align: left;
}
.table_style dl dd .df {
  align-items: flex-end;
}
.table_style dl dd .df span {
  display: block;
  margin-bottom: -5px;
}
.table_style dl.table-ttl2 dt, .table_style dl.table-ttl2 dd {
  padding: 15px 0;
  font-size: 18px;
}
.table_style dl.table-ttl2 dt {
  padding: 15px 20px;
}
.table_style dl.table-ttl2 dd {
  color: var(--bg-white);
}
.table_style dl.table-ttl2 dd:nth-child(2) {
  background: var(--color4);
}
.table_style dl.table-ttl2 dd:nth-child(3) {
  background: var(--color2);
  text-align: center;
}
.table_style .txt-green {
  color: var(--color4);
  font-size: 26px;
}
.table_style .txt-blue {
  color: var(--color2);
  font-size: 26px;
}
.table_style .row-yellow {
  text-align: center;
  color: var(--bg-white);
  background: var(--color1);
  border-radius: var(--border-radius-md);
  line-height: 62px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

/*# sourceMappingURL=shared.css.map */
