@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quattrocento+Sans:wght@700&display=swap");

@font-face {
  src: local("Yu Gothic Medium");
  font-family: YuGothicM;
}

@font-face {
  src: url('../fonts/A-OTF Outai Kaisho Std Light.otf') format('truetype');
  font-family: A-OTF-OutaiKaiStd;
}

/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  line-height: 150%;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* =========================================================
base - 基本設定
========================================================= */

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

@media screen and (max-width: 760px) {
  html {
    font-size: 72%;
  }
}

html,
body {
  overflow-x: hidden;
  background: #F8F8F8;
}

body {
  color: #333;
  font-family: "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
}

body.is-fixed {
  position: fixed;
  overflow: hidden;
}

a {
  cursor: pointer;
}

a:hover {
  color: inherit;
}

.l-main {
  margin-top: 170px;
}

@media screen and (max-width: 991px) {
  .l-main {
    margin-top: 130px;
  }
}

@media screen and (max-width: 760px) {
  .l-main {
    margin-top: 106px;
  }
}

/* =========================================================
header の大枠
========================================================= */
.l-container_header {
  width: 100%;
  padding: 0 50px;
}

@media screen and (max-width: 1199px) {
  .l-container_header {
    padding: 0 15px;
  }
}

.l-header_topline {
  height: 5px
}

/* =========================================================
body - ボディ
========================================================= */

/* =========================================================
section - コンテンツの大枠
========================================================= */

.l-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}

@media screen and (max-width: 1199px) {
  /*.l-container {
    padding: 0 15px;
  }*/
}

.l-container_small {
  width: 100%;
  max-width: 1015px;
  margin: 0 auto;
}

@media only screen and (max-width: 1139px) {
  .l-container_small {
    width: 95%;
  }
}

/* =========================================================
footer - フッターのレイアウト
========================================================= */

.l-footer__foot .youtube {
  margin-top: 5px;
}

.l-footer__foot ul {
  display: flex;
  justify-content: center;
  margin: auto;
}

.l-footer__foot .l-container {
  background-color: #1D3138;
  padding: 20px;
  max-width: none;
}

.l-footer__foot .l-container a {
  color: white;
  margin-left: 5px;
  margin-right: 5px;
  display: block;
}

@media screen and (max-width: 767px) {
  .l-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 0 auto;
    padding: 0 0 1rem 0;
  }
  .l-footer__foot .l-container a {
    font-size: 1rem;
  }
}

.f-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 991px) {
  .f-flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.f-flex_sb {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.f-phone {
  width: 100%;
  max-width: 400px;
}

@media screen and (max-width: 991px) {
  .f-phone {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

.f-phone p {
  display: block;
  position: relative;
  margin-bottom: 10px;
  color: #fff;
  font-size: 2rem;
  text-align: center;
}

.f-phone p.bg-red {
  margin-bottom: 0;
  background: #F24133;
}

.f-phone a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
  opacity: 1;
}

.f-phone a img {
  width: 67px;
  height: auto;
  padding-top: 10px;
}

.f-phone a span {
  display: block;
  color: #fff;
  font-size: 4rem;
  font-weight: bold;
  line-height: 50px;
}

@media screen and (max-width: 767px) {
  .f-phone a span {
    font-size: 1.6rem;
    line-height: 35px;
  }
}

.f-phone a small {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .f-phone a small {
    font-size: 1.2rem;
  }
}

.f-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 991px) {
  .f-contact {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .f-contact {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.f-contact_mail {
  margin-right: 20px;
}

@media screen and (max-width: 991px) {
  .f-contact_mail {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .f-contact_mail {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.f-contact_mail a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 230px;
  height: 135px;
  border-radius: 5px;
  background: #FBD434;
  text-decoration: none;
}

@media screen and (min-width: 1200px) {
  .f-contact_mail a {
    width: 275px;
  }
}

@media screen and (max-width: 991px) {
  .f-contact_mail a {
    width: 100%;
  }
}

.f-contact_mail a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.f-contact_mail a img {
  width: 36px;
  height: auto;
  margin-bottom: 5px;
}

.f-contact_mail a small {
  display: block;
  width: 100%;
  color: #333;
  font-size: 2rem;
  font-weight: bold;
  line-height: 25px;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .f-contact_line {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .f-contact_line {
    width: 100%;
  }
}

.f-contact_line a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 230px;
  height: 135px;
  border-radius: 5px;
  background: #1FAE01;
  text-decoration: none;
}

@media screen and (min-width: 1200px) {
  .f-contact_line a {
    width: 275px;
  }
}

@media screen and (max-width: 991px) {
  .f-contact_line a {
    width: 100%;
  }
}

.f-contact_line a span {
  color: #333;
  font-size: 1.45rem;
  font-weight: bold;
  text-align: center;
}

.f-contact_line a span img {
  width: 37px;
  height: auto;
  margin-left: 0;
}

.f-contact_line a span small {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}

.f-contact_line a img {
  width: 88px;
  height: auto;
  margin-left: 40px;
}

.f-contact a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.f-contact a:hover {
  opacity: 0.7;
}

.f-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .f-nav {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.f-nav .col {
  margin-right: 80px;
}

@media screen and (max-width: 991px) {
  .f-nav .col {
    margin-right: 50px;
  }
}

@media screen and (max-width: 767px) {
  .f-nav .col {
    width: calc(100% / 2 - 15px);
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.f-nav .col:last-child {
  margin-right: 0;
}

.f-nav_items h3 {
  position: relative;
  padding-bottom: 20px;
  border-bottom: 1px solid #BCBCBC;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 20px;
}

@media screen and (max-width: 991px) {
  .f-nav_items h3 {
    padding-bottom: 15px;
  }
}

.f-nav_items h3:after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 20px;
  height: 1px;
  background: #333333;
  content: "";
}

.f-nav_items ul {
  margin-top: 25px;
}

@media screen and (max-width: 991px) {
  .f-nav_items ul {
    margin-top: 15px;
  }
}

.f-nav_items li {
  margin-bottom: 20px;
}

.f-nav_items li:last-child {
  margin-bottom: 0;
}

.f-nav_items a {
  position: relative;
  padding-left: 10px;
  color: #7E7E7E;
  font-size: 1.2rem;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.f-nav_items a:hover {
  color: #92ab23;
}

.f-nav_items a:after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 1px;
  background: #7E7E7E;
  content: "";
}

.f-nav_items01 li {
  margin-bottom: 20px;
}

.f-nav_items01 li:last-child {
  margin-bottom: 0;
}

.f-nav_items01 a {
  position: relative;
  color: #333333;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 20px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.f-nav_items01 a:hover {
  color: #92ab23;
}

.f-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.f-banner_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 30%;
  padding: 20px 0;
  border: 1px solid #AAAAAA;
}

@media screen and (max-width: 991px) {
  .f-banner_items {
    width: 100%;
  }

  .f-banner_items~.f-banner_items {
    margin-top: 15px;
  }
}

.f-banner_items:nth-child(1) img {
  width: 280px;
}

.f-banner_items:nth-child(2) img {
  width: 250px;
}

.f-banner_items:nth-child(3) img {
  width: 206px;
}

.f-logo {
  margin-bottom: 20px;
}

.f-logo img {
  width: 225px;
  height: auto;
}

.f-address {
  margin-bottom: 35px;
}

@media screen and (max-width: 991px) {
  .f-address {
    margin-bottom: 15px;
  }
}

.f-address p {
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 24px;
}

.f-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

@media screen and (max-width: 991px) {
  .f-social {
    margin-bottom: 15px;
  }
}

.f-social li {
  margin-right: 15px;
}

@media screen and (max-width: 991px) {
  .f-social li {
    margin-right: 10px;
  }
}

.f-social img {
  width: 40px;
  height: auto;
}

.f-copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #000;
  padding: 10px;
}

.f-copyright ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 991px) {
  .f-copyright ul {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}

.f-copyright ul li {
  margin-right: 40px;
}

@media screen and (max-width: 991px) {
  .f-copyright ul li {
    margin-right: 20px;
  }
}

.f-copyright ul li:last-child {
  margin-right: 0;
}

.f-copyright ul a {
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 24px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.f-copyright ul a:hover {
  opacity: 0.7;
}

.f-copyright p {
  color: #fff;
  font-size: 1.2rem;
  line-height: 24px;
  text-decoration: none;
  width: 100%;
  text-align: center;
}

/* =========================================================
bootstrap4のグリッドシステム
========================================================= */

/*!
 * Bootstrap Grid v4.1.1 (https://getbootstrap.com/)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

@-ms-viewport {
  width: device-width;
}

html {
  -ms-overflow-style: scrollbar;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.l-row {
  -ms-flex-wrap: wrap;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.l-row--no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.l-row--no-gutters>.l-row__col,
.l-row--no-gutters>[class*="l-row__col--"] {
  padding-right: 0;
  padding-left: 0;
}

.l-row__col--1,
.l-row__col--2,
.l-row__col--3,
.l-row__col--4,
.l-row__col--5,
.l-row__col--6,
.l-row__col--7,
.l-row__col--8,
.l-row__col--9,
.l-row__col--10,
.l-row__col--11,
.l-row__col--12,
.l-row__col,
.l-row__col--auto,
.l-row__col--sm-1,
.l-row__col--sm-2,
.l-row__col--sm-3,
.l-row__col--sm-4,
.l-row__col--sm-5,
.l-row__col--sm-6,
.l-row__col--sm-7,
.l-row__col--sm-8,
.l-row__col--sm-9,
.l-row__col--sm-10,
.l-row__col--sm-11,
.l-row__col--sm-12,
.l-row__col--sm,
.l-row__col--sm-auto,
.l-row__col--md-1,
.l-row__col--md-2,
.l-row__col--md-3,
.l-row__col--md-4,
.l-row__col--md-5,
.l-row__col--md-6,
.l-row__col--md-7,
.l-row__col--md-8,
.l-row__col--md-9,
.l-row__col--md-10,
.l-row__col--md-11,
.l-row__col--md-12,
.l-row__col--md,
.l-row__col--md-auto,
.l-row__col--lg-1,
.l-row__col--lg-2,
.l-row__col--lg-3,
.l-row__col--lg-4,
.l-row__col--lg-5,
.l-row__col--lg-6,
.l-row__col--lg-7,
.l-row__col--lg-8,
.l-row__col--lg-9,
.l-row__col--lg-10,
.l-row__col--lg-11,
.l-row__col--lg-12,
.l-row__col--lg,
.l-row__col--lg-auto,
.l-row__col--xl-1,
.l-row__col--xl-2,
.l-row__col--xl-3,
.l-row__col--xl-4,
.l-row__col--xl-5,
.l-row__col--xl-6,
.l-row__col--xl-7,
.l-row__col--xl-8,
.l-row__col--xl-9,
.l-row__col--xl-10,
.l-row__col--xl-11,
.l-row__col--xl-12,
.l-row__col--xl,
.l-row__col--xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.l-row__col {
  -ms-flex-preferred-size: 0;
  -ms-flex-positive: 1;
  flex-basis: 0;
  -webkit-box-flex: 1;
  flex-grow: 1;
  max-width: 100%;
  word-break: break-all;
}

.l-row__col--auto {
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.l-row__col--1 {
  -ms-flex: 0 0 8.333333%;
  -webkit-box-flex: 0;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.l-row__col--2 {
  -ms-flex: 0 0 16.666667%;
  -webkit-box-flex: 0;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.l-row__col--3 {
  -ms-flex: 0 0 25%;
  -webkit-box-flex: 0;
  flex: 0 0 25%;
  max-width: 25%;
}

.l-row__col--4 {
  -ms-flex: 0 0 33.333333%;
  -webkit-box-flex: 0;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.l-row__col--5 {
  -ms-flex: 0 0 41.666667%;
  -webkit-box-flex: 0;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.l-row__col--6 {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
}

.l-row__col--7 {
  -ms-flex: 0 0 58.333333%;
  -webkit-box-flex: 0;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.l-row__col--8 {
  -ms-flex: 0 0 66.666667%;
  -webkit-box-flex: 0;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.l-row__col--9 {
  -ms-flex: 0 0 75%;
  -webkit-box-flex: 0;
  flex: 0 0 75%;
  max-width: 75%;
}

.l-row__col--10 {
  -ms-flex: 0 0 83.333333%;
  -webkit-box-flex: 0;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.l-row__col--11 {
  -ms-flex: 0 0 91.666667%;
  -webkit-box-flex: 0;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.l-row__col--12 {
  -ms-flex: 0 0 100%;
  -webkit-box-flex: 0;
  flex: 0 0 100%;
  max-width: 100%;
}

.l-row__col--order-first {
  -ms-flex-order: -1;
  -webkit-box-ordinal-group: 0;
  order: -1;
}

.l-row__col--order-last {
  -ms-flex-order: 13;
  -webkit-box-ordinal-group: 14;
  order: 13;
}

.l-row__col--order-0 {
  -ms-flex-order: 0;
  -webkit-box-ordinal-group: 1;
  order: 0;
}

.l-row__col--order-1 {
  -ms-flex-order: 1;
  -webkit-box-ordinal-group: 2;
  order: 1;
}

.l-row__col--order-2 {
  -ms-flex-order: 2;
  -webkit-box-ordinal-group: 3;
  order: 2;
}

.l-row__col--order-3 {
  -ms-flex-order: 3;
  -webkit-box-ordinal-group: 4;
  order: 3;
}

.l-row__col--order-4 {
  -ms-flex-order: 4;
  -webkit-box-ordinal-group: 5;
  order: 4;
}

.l-row__col--order-5 {
  -ms-flex-order: 5;
  -webkit-box-ordinal-group: 6;
  order: 5;
}

.l-row__col--order-6 {
  -ms-flex-order: 6;
  -webkit-box-ordinal-group: 7;
  order: 6;
}

.l-row__col--order-7 {
  -ms-flex-order: 7;
  -webkit-box-ordinal-group: 8;
  order: 7;
}

.l-row__col--order-8 {
  -ms-flex-order: 8;
  -webkit-box-ordinal-group: 9;
  order: 8;
}

.l-row__col--order-9 {
  -ms-flex-order: 9;
  -webkit-box-ordinal-group: 10;
  order: 9;
}

.l-row__col--order-10 {
  -ms-flex-order: 10;
  -webkit-box-ordinal-group: 11;
  order: 10;
}

.l-row__col--order-11 {
  -ms-flex-order: 11;
  -webkit-box-ordinal-group: 12;
  order: 11;
}

.l-row__col--order-12 {
  -ms-flex-order: 12;
  -webkit-box-ordinal-group: 13;
  order: 12;
}

.l-row__col--offset-1 {
  margin-left: 8.333333%;
}

.l-row__col--offset-2 {
  margin-left: 16.666667%;
}

.l-row__col--offset-3 {
  margin-left: 25%;
}

.l-row__col--offset-4 {
  margin-left: 33.333333%;
}

.l-row__col--offset-5 {
  margin-left: 41.666667%;
}

.l-row__col--offset-6 {
  margin-left: 50%;
}

.l-row__col--offset-7 {
  margin-left: 58.333333%;
}

.l-row__col--offset-8 {
  margin-left: 66.666667%;
}

.l-row__col--offset-9 {
  margin-left: 75%;
}

.l-row__col--offset-10 {
  margin-left: 83.333333%;
}

.l-row__col--offset-11 {
  margin-left: 91.666667%;
}

@media screen and (min-width: 576px) {
  .l-row__col--sm {
    -ms-flex-preferred-size: 0;
    -ms-flex-positive: 1;
    flex-basis: 0;
    -webkit-box-flex: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .l-row__col--sm-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .l-row__col--sm-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .l-row__col--sm-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .l-row__col--sm-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .l-row__col--sm-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .l-row__col--sm-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .l-row__col--sm-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .l-row__col--sm-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .l-row__col--sm-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .l-row__col--sm-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .l-row__col--sm-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .l-row__col--sm-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .l-row__col--sm-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .l-row__col--order-sm-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .l-row__col--order-sm-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
    order: 13;
  }

  .l-row__col--order-sm-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
    order: 0;
  }

  .l-row__col--order-sm-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }

  .l-row__col--order-sm-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    order: 2;
  }

  .l-row__col--order-sm-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
    order: 3;
  }

  .l-row__col--order-sm-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
    order: 4;
  }

  .l-row__col--order-sm-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
    order: 5;
  }

  .l-row__col--order-sm-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
    order: 6;
  }

  .l-row__col--order-sm-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
    order: 7;
  }

  .l-row__col--order-sm-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
    order: 8;
  }

  .l-row__col--order-sm-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
    order: 9;
  }

  .l-row__col--order-sm-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
    order: 10;
  }

  .l-row__col--order-sm-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
    order: 11;
  }

  .l-row__col--order-sm-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
    order: 12;
  }

  .l-row__col--offset-sm-0 {
    margin-left: 0;
  }

  .l-row__col--offset-sm-1 {
    margin-left: 8.333333%;
  }

  .l-row__col--offset-sm-2 {
    margin-left: 16.666667%;
  }

  .l-row__col--offset-sm-3 {
    margin-left: 25%;
  }

  .l-row__col--offset-sm-4 {
    margin-left: 33.333333%;
  }

  .l-row__col--offset-sm-5 {
    margin-left: 41.666667%;
  }

  .l-row__col--offset-sm-6 {
    margin-left: 50%;
  }

  .l-row__col--offset-sm-7 {
    margin-left: 58.333333%;
  }

  .l-row__col--offset-sm-8 {
    margin-left: 66.666667%;
  }

  .l-row__col--offset-sm-9 {
    margin-left: 75%;
  }

  .l-row__col--offset-sm-10 {
    margin-left: 83.333333%;
  }

  .l-row__col--offset-sm-11 {
    margin-left: 91.666667%;
  }
}

@media screen and (min-width: 768px) {
  .l-row__col--md {
    -ms-flex-preferred-size: 0;
    -ms-flex-positive: 1;
    flex-basis: 0;
    -webkit-box-flex: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .l-row__col--md-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .l-row__col--md-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .l-row__col--md-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .l-row__col--md-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .l-row__col--md-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .l-row__col--md-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .l-row__col--md-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .l-row__col--md-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .l-row__col--md-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .l-row__col--md-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .l-row__col--md-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .l-row__col--md-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .l-row__col--md-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .l-row__col--order-md-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .l-row__col--order-md-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
    order: 13;
  }

  .l-row__col--order-md-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
    order: 0;
  }

  .l-row__col--order-md-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }

  .l-row__col--order-md-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    order: 2;
  }

  .l-row__col--order-md-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
    order: 3;
  }

  .l-row__col--order-md-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
    order: 4;
  }

  .l-row__col--order-md-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
    order: 5;
  }

  .l-row__col--order-md-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
    order: 6;
  }

  .l-row__col--order-md-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
    order: 7;
  }

  .l-row__col--order-md-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
    order: 8;
  }

  .l-row__col--order-md-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
    order: 9;
  }

  .l-row__col--order-md-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
    order: 10;
  }

  .l-row__col--order-md-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
    order: 11;
  }

  .l-row__col--order-md-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
    order: 12;
  }

  .l-row__col--offset-md-0 {
    margin-left: 0;
  }

  .l-row__col--offset-md-1 {
    margin-left: 8.333333%;
  }

  .l-row__col--offset-md-2 {
    margin-left: 16.666667%;
  }

  .l-row__col--offset-md-3 {
    margin-left: 25%;
  }

  .l-row__col--offset-md-4 {
    margin-left: 33.333333%;
  }

  .l-row__col--offset-md-5 {
    margin-left: 41.666667%;
  }

  .l-row__col--offset-md-6 {
    margin-left: 50%;
  }

  .l-row__col--offset-md-7 {
    margin-left: 58.333333%;
  }

  .l-row__col--offset-md-8 {
    margin-left: 66.666667%;
  }

  .l-row__col--offset-md-9 {
    margin-left: 75%;
  }

  .l-row__col--offset-md-10 {
    margin-left: 83.333333%;
  }

  .l-row__col--offset-md-11 {
    margin-left: 91.666667%;
  }
}

@media screen and (min-width: 992px) {
  .l-row__col--lg {
    -ms-flex-preferred-size: 0;
    -ms-flex-positive: 1;
    flex-basis: 0;
    -webkit-box-flex: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .l-row__col--lg-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .l-row__col--lg-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .l-row__col--lg-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .l-row__col--lg-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .l-row__col--lg-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .l-row__col--lg-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .l-row__col--lg-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .l-row__col--lg-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .l-row__col--lg-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .l-row__col--lg-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .l-row__col--lg-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .l-row__col--lg-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .l-row__col--lg-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .l-row__col--order-lg-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .l-row__col--order-lg-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
    order: 13;
  }

  .l-row__col--order-lg-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
    order: 0;
  }

  .l-row__col--order-lg-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }

  .l-row__col--order-lg-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    order: 2;
  }

  .l-row__col--order-lg-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
    order: 3;
  }

  .l-row__col--order-lg-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
    order: 4;
  }

  .l-row__col--order-lg-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
    order: 5;
  }

  .l-row__col--order-lg-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
    order: 6;
  }

  .l-row__col--order-lg-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
    order: 7;
  }

  .l-row__col--order-lg-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
    order: 8;
  }

  .l-row__col--order-lg-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
    order: 9;
  }

  .l-row__col--order-lg-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
    order: 10;
  }

  .l-row__col--order-lg-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
    order: 11;
  }

  .l-row__col--order-lg-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
    order: 12;
  }

  .l-row__col--offset-lg-0 {
    margin-left: 0;
  }

  .l-row__col--offset-lg-1 {
    margin-left: 8.333333%;
  }

  .l-row__col--offset-lg-2 {
    margin-left: 16.666667%;
  }

  .l-row__col--offset-lg-3 {
    margin-left: 25%;
  }

  .l-row__col--offset-lg-4 {
    margin-left: 33.333333%;
  }

  .l-row__col--offset-lg-5 {
    margin-left: 41.666667%;
  }

  .l-row__col--offset-lg-6 {
    margin-left: 50%;
  }

  .l-row__col--offset-lg-7 {
    margin-left: 58.333333%;
  }

  .l-row__col--offset-lg-8 {
    margin-left: 66.666667%;
  }

  .l-row__col--offset-lg-9 {
    margin-left: 75%;
  }

  .l-row__col--offset-lg-10 {
    margin-left: 83.333333%;
  }

  .l-row__col--offset-lg-11 {
    margin-left: 91.666667%;
  }
}

@media screen and (min-width: 1200px) {
  .l-row__col--xl {
    -ms-flex-preferred-size: 0;
    -ms-flex-positive: 1;
    flex-basis: 0;
    -webkit-box-flex: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .l-row__col--xl-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .l-row__col--xl-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .l-row__col--xl-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .l-row__col--xl-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .l-row__col--xl-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .l-row__col--xl-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .l-row__col--xl-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .l-row__col--xl-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .l-row__col--xl-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .l-row__col--xl-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .l-row__col--xl-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .l-row__col--xl-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .l-row__col--xl-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .l-row__col--order-xl-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .l-row__col--order-xl-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
    order: 13;
  }

  .l-row__col--order-xl-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
    order: 0;
  }

  .l-row__col--order-xl-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }

  .l-row__col--order-xl-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    order: 2;
  }

  .l-row__col--order-xl-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
    order: 3;
  }

  .l-row__col--order-xl-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
    order: 4;
  }

  .l-row__col--order-xl-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
    order: 5;
  }

  .l-row__col--order-xl-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
    order: 6;
  }

  .l-row__col--order-xl-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
    order: 7;
  }

  .l-row__col--order-xl-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
    order: 8;
  }

  .l-row__col--order-xl-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
    order: 9;
  }

  .l-row__col--order-xl-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
    order: 10;
  }

  .l-row__col--order-xl-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
    order: 11;
  }

  .l-row__col--order-xl-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
    order: 12;
  }

  .l-row__col--offset-xl-0 {
    margin-left: 0;
  }

  .l-row__col--offset-xl-1 {
    margin-left: 8.333333%;
  }

  .l-row__col--offset-xl-2 {
    margin-left: 16.666667%;
  }

  .l-row__col--offset-xl-3 {
    margin-left: 25%;
  }

  .l-row__col--offset-xl-4 {
    margin-left: 33.333333%;
  }

  .l-row__col--offset-xl-5 {
    margin-left: 41.666667%;
  }

  .l-row__col--offset-xl-6 {
    margin-left: 50%;
  }

  .l-row__col--offset-xl-7 {
    margin-left: 58.333333%;
  }

  .l-row__col--offset-xl-8 {
    margin-left: 66.666667%;
  }

  .l-row__col--offset-xl-9 {
    margin-left: 75%;
  }

  .l-row__col--offset-xl-10 {
    margin-left: 83.333333%;
  }

  .l-row__col--offset-xl-11 {
    margin-left: 91.666667%;
  }
}

.l-row__col--column-between-center {
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.l-row__col--column-around-center {
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.l-row--gap>.l-row__col:nth-of-type(n+2),
.l-row--gap>[class*="l-row__col--"]:nth-of-type(n+2) {
  margin-top: 30px;
}

@media screen and (min-width: 576px) {

  .l-row--gap-sm-2col>.l-row__col:nth-of-type(n+1),
  .l-row--gap-sm-2col>[class*="l-row__col--"]:nth-of-type(n+1) {
    margin-top: 0;
  }

  .l-row--gap-sm-2col>.l-row__col:nth-of-type(n+3),
  .l-row--gap-sm-2col>[class*="l-row__col--"]:nth-of-type(n+3) {
    margin-top: 30px;
  }
}

@media screen and (min-width: 768px) {

  .l-row--gap-md-2col>.l-row__col:nth-of-type(n+1),
  .l-row--gap-md-2col>[class*="l-row__col--"]:nth-of-type(n+1) {
    margin-top: 0;
  }

  .l-row--gap-md-2col>.l-row__col:nth-of-type(n+3),
  .l-row--gap-md-2col>[class*="l-row__col--"]:nth-of-type(n+3) {
    margin-top: 30px;
  }

  .l-row--gap-md-3col>.l-row__col:nth-of-type(n+1),
  .l-row--gap-md-3col>[class*="l-row__col--"]:nth-of-type(n+1) {
    margin-top: 0;
  }

  .l-row--gap-md-3col>.l-row__col:nth-of-type(n+4),
  .l-row--gap-md-3col>[class*="l-row__col--"]:nth-of-type(n+4) {
    margin-top: 30px;
  }
}

@media screen and (min-width: 992px) {

  .l-row--gap-lg-3col>.l-row__col:nth-of-type(n+1),
  .l-row--gap-lg-3col>[class*="l-row__col--"]:nth-of-type(n+1) {
    margin-top: 0;
  }

  .l-row--gap-lg-3col>.l-row__col:nth-of-type(n+4),
  .l-row--gap-lg-3col>[class*="l-row__col--"]:nth-of-type(n+4) {
    margin-top: 30px;
  }

  .l-row--gap-lg-4col>.l-row__col:nth-of-type(n+1),
  .l-row--gap-lg-4col>[class*="l-row__col--"]:nth-of-type(n+1) {
    margin-top: 0;
  }

  .l-row--gap-lg-4col>.l-row__col:nth-of-type(n+5),
  .l-row--gap-lg-4col>[class*="l-row__col--"]:nth-of-type(n+5) {
    margin-top: 30px;
  }
}

@media screen and (min-width: 1200px) {

  .l-row--gap-xl-4col>.l-row__col:nth-of-type(n+1),
  .l-row--gap-xl-4col>[class*="l-row__col--"]:nth-of-type(n+1) {
    margin-top: 0;
  }

  .l-row--gap-xl-4col>.l-row__col:nth-of-type(n+5),
  .l-row--gap-xl-4col>[class*="l-row__col--"]:nth-of-type(n+5) {
    margin-top: 30px;
  }
}

/* =========================================================
header - ヘッダー
========================================================= */

.l-header {
  z-index: 99;
  position: fixed;
  left: 0;
  width: 100%;
  background-color: #f8f8f8;
}

@media screen and (max-width: 991px) {
  .l-header {
    z-index: 99;
    position: fixed;
    left: 0;
    width: 100%;
    background-color: #f8f8f8;
  }
}

.catch {
  direction: ltr;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  width: 100%;
  min-width: 600px;
  z-index: 99999;
  background: #92ab23;
  padding: 0.5rem 1.5rem;
}

@media screen and (max-width: 500px) {
  .catch {
    font-size: 1rem;
    zoom: 0.8
  }
}

.l-header__top {
  padding: 10px 0;
  background-color: #fff;
}

.l-header__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.l-header__nav {
  background: #fff;
  padding: 5px 0 15px 0;
}

@media screen and (max-width: 991px) {
  .l-header__nav {
    z-index: 99;
    position: absolute;
    position: fixed;
    right: 5px;
    left: 5px;
    height: 0;
    overflow: hidden;
    background: #fff;
    -webkit-transition: height 0.3s ease-in-out;
    transition: height 0.3s ease-in-out;
    padding: 0;
    display: none;
  }

  .l-header__nav.is-active {
    height: 100vh;
  }
}

.h-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.h-logo img {
  display: block;
  width: auto;
  height: 55px;
}

.h-logo:hover img {
  opacity: 0.7;
}

.h-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.h-phone p {
  display: block;
  position: relative;
  width: 170px;
  height: 25px;
  margin-bottom: 7px;
  border-radius: 25px;
  background: #92ab23;
  color: #fff;
  font-size: 1.4rem;
  line-height: 22px;
  text-align: center;
}

.h-phone p:after {
  position: absolute;
  bottom: -4px;
  left: calc(50% - 5px);
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #92ab23;
  content: "";
}

.h-phone .time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-decoration: none;
  opacity: 1;
}

.h-phone .time img {
  width: 33px;
  height: auto;
  padding-top: 3px;
}

.h-phone .time span {
  display: block;
  color: #333;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}

.h-phone .time small {
  display: block;
  font-size: 0.9rem;
  line-height: 12px;
}

.h-mail {
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 15px;
}

.h-mail a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 250px;
  height: 55px;
  border-radius: 5px;
  background: #fbd434;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.h-mail a:hover {
  opacity: 0.7;
}

.h-mail a img {
  width: 20px;
  height: auto;
  margin-right: 5px;
}

.h-mail a span {
  color: #333;
  font-size: 1.45rem;
  font-weight: bold;
}

@media screen and (max-width: 991px) {
  .h-nav {
    height: 100vh;
    margin: 0 -10px;
    overflow: auto;
    display: none;
  }

  .h-nav__sub {
    display: none;
    background-color: #f6f6f6;
  }

  .h-nav__sub.is-active {
    display: block;
  }

  .h-nav__sub li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    padding: 15px 10px;
    padding-left: 20px;
    border-bottom: 1px solid #ccc;
    color: #333;
    font-size: 1.4rem;
    text-decoration: none;
  }

  .h-nav__sub li a:after {
    position: absolute;

    top: 50%;
    right: 15px;
    width: 14px;
    height: 14px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../images/common/ico-right-arrow.svg) no-repeat right center;
    background-size: 14px;
    content: "";
  }

  .h-nav>li>a {
    display: block;
    position: relative;
    border-bottom: 1px solid #ccc;
    color: #333;
    font-size: 1.4rem;
    font-weight: 400;
    text-decoration: none;
    font-weight: bold；
  }

  .h-nav>li>span {
    display: block;
    position: relative;
    padding: 0 15px;
    padding: 15px 10px;
    border-bottom: 1px solid #ccc;
    color: #333;
    font-size: 1.4rem;
    font-weight: 400;
    text-decoration: none;
    font-weight: bold；
  }

  .h-nav>li>a:after,
  .h-nav>li>span:after {
    position: absolute;
    top: 50%;
    right: 15px;
    width: 14px;
    height: 14px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../images/common/ico-right-arrow.svg) no-repeat right center;
    background-size: 14px;
    content: "";
    font-weight: bold；
  }

  .h-nav>li.has-sub>a,
  .h-nav>li.has-sub>span {
    position: relative;
    pointer-events: none;
  }

  .h-nav>li.has-sub>a:after,
  .h-nav>li.has-sub>span:after {
    position: absolute;
    top: 50%;
    right: 15px;
    width: 14px;
    height: 14px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../images/common/ico-plus.svg) no-repeat right center;
    background-size: 14px;
    content: "";
  }

  .h-nav>li.has-sub>a.is-active:after,
  .h-nav>li.has-sub>span.is-active:after {
    background: url(../images/common/ico-minus.svg) no-repeat right center;
    background-size: 14px;
  }
}

@media screen and (min-width: 992px) {
  .h-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
  }

  .h-nav>li>a {
    display: block;
    position: relative;
    color: #92ab23;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 70px;
    text-decoration: none;
  }

  .h-nav>li.is-active>a:after,
  .h-nav>li:hover>a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #fff;
    content: "";
  }

  .h-nav>li:hover .h-nav__sub {
    display: block;
  }

  .h-nav__sub {
    display: none;
    z-index: 99;
    position: absolute;
    right: -100%;
    left: -100%;
    background-color: #f8f8f8;
  }

  .h-nav__sub--inner {
    max-width: 1015px;
    margin: 0 auto;
  }

  .h-nav__sub ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 117px;
  }

  .h-nav__sub li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    margin-right: 30px;
    padding-left: 20px;
    background: url(../images/common/icon_arrow_menu.svg) no-repeat left center;
    background-size: 3px auto;
    color: #333;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
  }

  .h-nav__sub li a:hover {
    opacity: 0.7;
  }
}

.h-btn {
  display: none;
  z-index: 9999;
  position: absolute;
  top: 38px;
  right: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 42.5px;
  height: 42.5px;
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  .h-btn {
    top: 30px;
  }
}

@media screen and (max-width: 991px) {
  .h-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.h-btn span {
  display: block;
  position: relative;
  width: 30px;
  height: 2px;
  background: #000;
}

.h-btn span:before {
  display: block;
  position: absolute;
  top: -7px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  content: "";
}

.h-btn span:after {
  display: block;
  position: absolute;
  top: 7px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  content: "";
}

.h-btn.is-active span {
  background: transparent;
}

.h-btn.is-active span:after {
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.h-btn.is-active span:before {
  top: 0;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

/* =========================================================
main - メイン
========================================================= */

/* =========================================================
section - セクションの大枠など
========================================================= */

/* =========================================================
sidebar - サイドバー
========================================================= */

/* =========================================================
article - 記事のクラスなど
========================================================= */

/* =========================================================
breadcrumbs - パンくずリスト
========================================================= */

.c-breakcrumds {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 60px;
}

@media screen and (max-width: 991px) {
  .c-breakcrumds {
    height: 40px;
    padding-left: 20px
  }
}

.c-breakcrumds span,
.c-breakcrumds a {
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.c-breakcrumds span[property="itemListElement"] {
  margin: 0 0px;
  color: #a2a2a2;
}

.c-breakcrumds a {
  color: #a2a2a2;
}

.c-breakcrumds a:hover {
  color: #333;
}

/* =========================================================
button - ボタン関係のコンポーネント
========================================================= */

.c-btn01 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 300px;
  height: 65px;
  border: 1px solid transparent;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 28px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.c-btn01 a svg {
  position: absolute;
  top: 50%;
  right: 25px;
  width: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .c-btn01 a {
    width: 200px;
    height: 30px;
    font-size: 1.4rem;
  }

  .c-btn01 a svg {
    width: 12px;
  }
}

.c-btn01__center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.c-btn01__blue svg {
  fill: #fff;
}

.c-btn01__blue a {
  background-color: #92ab23;
  color: #fff;
}

.c-btn01__blue a:hover {
  border-color: #92ab23;
  background-color: #fff;
  color: #92ab23;
}

.c-btn01__blue a:hover svg {
  fill: #92ab23;
}

.c-btn01__blue a {
  width: 100%;
}


.c-btn01__white svg {
  fill: #92ab23;
}

.c-btn01__white a {
  background-color: #fff;
  color: #92ab23;
}

.c-btn01__white a:hover {
  border-color: #fff;
  background-color: #92ab23;
  color: #fff;
}

.c-btn01__white a:hover svg {
  fill: #fff;
}

/* =========================================================
card - カード式レイアウトのオブジェクト
========================================================= */

/* =========================================================
category - 記事のカテゴリー表示など
========================================================= */

/* =========================================================
checkbox - チェックボックス
========================================================= */

/* =========================================================
copyright - コピーライト
========================================================= */

/* =========================================================
footer - フッター内のクラス
========================================================= */

/* =========================================================
form - フォームのオブジェクト
========================================================= */

/* =========================================================
gmap - Google Maps埋め込み
========================================================= */

/* =========================================================
header - ヘッダー内のクラス
========================================================= */

/* =========================================================
list - リストのオブジェクト
========================================================= */

/* =========================================================
media - 画像関係のコンポーネント
========================================================= */

.c-responsive-img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* =========================================================
navigation - グローバルナビなど
========================================================= */

/* =========================================================
page-head - 子ページのタイトル
========================================================= */

/* =========================================================
pagenation - ページ送り
========================================================= */

/* =========================================================
post - wysiwygなどを使用して出力した投稿にデフォルトのスタイルを当てる
========================================================= */

/* =========================================================
radio - ラジオボタン
========================================================= */

/* =========================================================
select - セレクトボックス
========================================================= */

/* =========================================================
sidebar - サイドバー
========================================================= */

.l-sidebar {
  width: 37%;
  margin: 0 0 0 3%;
}

@media screen and (max-width: 767px) {
  .l-sidebar {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}

@media screen and (min-width: 767px) and (max-width: 991px) {
  .l-sidebar {
    width: 100%;
    max-width: 100%;
    margin: 0;
    margin-top: -1%;
  }
}

/* =========================================================
site-branding - サイトのロゴなど
========================================================= */

/* =========================================================
slider - スライダー
========================================================= */

/* =========================================================
text-field - テキストボックス
========================================================= */

/* =========================================================
text - 共通のテキストなど
========================================================= */

.c-txt {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}

@media screen and (min-width: 992px) {
  .c-txt {
    font-size: 16px;
    font-size: 1rem;
  }
}

.c-txt--sm {
  font-size: 12px;
  font-size: 0.75rem;
}

@media screen and (min-width: 992px) {
  .c-txt--sm {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.c-txt--md {
  font-size: 18px;
  font-size: 1.125rem;
}

@media screen and (min-width: 992px) {
  .c-txt--md {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

.c-txt--lg {
  font-size: 22px;
  font-size: 1.375rem;
}

@media screen and (min-width: 992px) {
  .c-txt--lg {
    font-size: 32px;
    font-size: 2rem;
  }
}

.c-txt--xl {
  font-size: 32px;
  font-size: 2rem;
}

@media screen and (min-width: 992px) {
  .c-txt--xl {
    font-size: 48px;
    font-size: 3rem;
  }
}

.c-txt--xxl {
  font-size: 48px;
  font-size: 3rem;
}

@media screen and (min-width: 992px) {
  .c-txt--xxl {
    font-size: 72px;
    font-size: 4.5rem;
  }
}

.c-txt--en {
  font-family: "Lato", sans-serif;
  font-weight: 900;
}

.c-txt__small {
  font-size: 80%;
}

.c-txt__link {
  color: #000;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .c-txt__link {
    -webkit-transition: .3s;
    transition: .3s;
  }

  .c-txt__link:hover {
    opacity: .7;
  }
}

@media screen and (min-width: 768px) {
  .c-txt__link--tel {
    pointer-events: none;
  }
}

.c-txt--center {
  text-align: center;
}

/* =========================================================
textarea - テキストエリア
========================================================= */

/* =========================================================
title - 共通のタイトルやテキストなど
========================================================= */

.c-tlt01 h2 {
  position: relative;
  font-size: 3rem;
  font-weight: bold;
  line-height: 32px;
  text-align: center;
}

.c-tlt01 h2 span {
  display: block;
  margin-top: 15px;
  font-size: 1.3rem;
  line-height: 18px;
}

@media screen and (max-width: 991px) {
  .c-tlt01 h2 span {
    margin-top: 10px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 767px) {
  .c-tlt01 h2 span {
    margin-top: 6px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 991px) {
  .c-tlt01 h2 {
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 767px) {
  .c-tlt01 h2 {
    font-size: 2.4rem;
  }
}

.c-tlt01__small h2 {
  font-size: 2.4rem;
}

@media screen and (max-width: 991px) {
  .c-tlt01__small h2 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .c-tlt01__small h2 {
    font-size: 1.8rem;
  }
}

.c-tlt01__black h2,
.c-tlt01__black span {
  color: #333;
}

.c-tlt01__white h2,
.c-tlt01__white span {
  color: #fff;
}

.c-tlt01__line {
  position: relative;
  padding-bottom: 20px;
}

@media screen and (max-width: 991px) {
  .c-tlt01__line {
    padding-bottom: 15px;
  }
}

@media screen and (max-width: 767px) {
  .c-tlt01__line {
    padding-bottom: 10px;
  }
}

/*.c-tlt01__line:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100px;
  height: 1px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  }*/
.c-tlt01__line--white:after {
  background-color: #fff;
}

.c-tlt01__line--black:after {
  background-color: #333;
}

.c-tlt01__line--gray:after {
  background-color: #8f8f8f;
}

.c-mainTitle {
  background-color: #fff;
}

.c-mainTitle img {
  display: block;
  max-width: 100%;
}

.c-mainTitle h1 {
  position: relative;
  font-size: 4rem;
  font-weight: bold;
  line-height: 32px;
  text-align: center;
}

.c-mainTitle h1 span {
  display: block;
  margin-top: 5px;
  margin-top: 20px;
  color: #8f8f8f;
  font-size: 1.7rem;
  line-height: 18px;
  text-transform: uppercase;
}

@media screen and (max-width: 991px) {
  .c-mainTitle h1 span {
    margin-top: 10px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .c-mainTitle h1 span {
    margin-top: 5px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 991px) {
  .c-mainTitle h1 {
    font-size: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .c-mainTitle h1 {
    font-size: 2.2rem;
  }
}

.c-mainTitle_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 9;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  max-width: 962px;
  height: 277px;
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
}

.content-service {}

@media screen and (max-width: 991px) and (min-width: 768px) {
  .content-service {}
}

@media screen and (max-width: 768px) {
  .content-service {
    margin-top: 106px !important;
  }
}

@media screen and (max-width: 991px) {
  .c-mainTitle_content {
    max-width: 762px;
    height: 227px;
    margin-top: -57px;
  }
}

@media screen and (max-width: 767px) {
  .c-mainTitle_content {
    width: 90%;
    max-width: 462px;
    height: 107px;
    margin-top: 0;
  }
}

.c-tlt02 {
  margin-bottom: 3rem;
  font-weight: bold;
}

.c-tlt02 h2 {
  font-size: 2.2rem;
}

@media screen and (max-width: 767px) {
  .c-tlt02 {
    margin-bottom: 60px;
  }
}

.c-tlt02 span {
  color: #8f8f8f;
  font-size: 1.3rem;
}

.c-tlt02--center {
  text-align: center;
}

div#企業概要 {
  background-color: #f6fae6;
  padding: 0;
  margin: 0;
}

.p-about {
  background-color: white;
  padding: 30px 0;
}

.p-about_groupContent {
  background: none !important;
  display: flex !important;
  width: 100% !important;
  margin: auto !important;
}

.p-access_groupContent {
  width: 100% !important;
  margin: auto !important;
}

.p-about_group .c-tlt02--center {
  text-align: left !important;
  color: white !important;
  background-color: #92ab23;
  padding: 0.9rem 2rem 1rem 2rem;
}

.p-about_history .c-tlt02--center {
  text-align: left !important;
  color: white !important;
  background-color: #92ab23;
  padding: 0.9rem 2rem 1rem 2rem;
  margin-bottom: 30px !important;
}

.company_left {
  position: static !important;
  width: auto !important;
  flex: 1 0 50% !important;
  padding-right: 30px !important;
}

.company_right {
  position: static !important;
  width: auto !important;
  flex: 1 0 50% !important;
  padding-left: 30px !important;
}

.company_right a {
  margin-left: 20px;
  color: #92ab23;
  text-decoration: none;
}

.accessChange {
  margin-left: 12px !important;
}

.company_right img {
  max-width: 30px;
}

.p-about_groupContent dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 0px;
  font-size: 1.44rem;
  border-bottom: dotted 1px #ccc;
}

.p-about_groupContent dl:first-child {
}

.p-about_groupContent dl dt {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 210px;
  flex: 0 0 17%;
  text-align: right;
  margin-right: 10px;
}

.company_right dl dt {
  text-align: left !important;
  border: none !important;
  flex: 0 0 25%;
  margin-right: -4px;
}

.t-company_list {
  /*margin-top: 20px;*/
}

.p-about_intro img {
  max-width: 100%;
}

.p-about_introHead {
  margin-bottom: 50px;
  font-weight: bold;
  text-align: center;
}

.p-about_introHead p {
  margin-bottom: 10px;
  color: #92ab23;
  font-size: 1.6rem;
}

.p-about_introHead h3 {
  font-family: "Noto Serif JP", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 3.2rem;
}

.p-about_introContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 767px) {
  .t-company_list {
    padding: 0 2rem;
  }
  .p-about_introContent {
    flex-wrap: wrap;
  }

  .accessChange {
    margin-left: 13px !important;
  }
}

.p-about_introContent figure {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 570px;
  flex: 0 0 570px;
}

@media only screen and (max-width: 991px) {
  .p-about_introContent figure {
    flex: 0 0 400px;
  }
}

@media only screen and (max-width: 767px) {
  .p-about_introContent figure {
    flex: inherit;
    width: 100%;
  }
}

.p-about_intro figure {
  z-index: 1;
  position: relative;
}

.p-about_introRight {
  margin-top: 60px;
  margin-left: -60px;
  padding: 45px 60px 45px 120px;
  background-color: #fff;
}

@media only screen and (max-width: 767px) {
  .p-about_introRight {
    flex: inherit;
    width: 90%;
    margin-left: 5%;
    margin-top: -60px;
    padding: 25px 20px;
    position: relative;
    z-index: 1;
  }

  .p-about_introRight .c-tlt02 {
    margin-bottom: 40px;
  }
}

.p-about_groupItems {
  margin-bottom: 47.5px;
}

.p-about_groupItems:last-child {
  margin-bottom: 0;
}

.p-about hr {
  border: none;
  border-bottom: 1px dotted;
}

.p-about_groupItems dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 22.5px 10px;
  border-bottom: 1px solid #707070;
  font-size: 1.5rem;
  font-weight: bold;
}

.p-about_groupItems dl dt {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 200px;
  flex: 0 0 200px;
}

.p-about_history {
  padding: 0 0 0 0;
}
.p-about_historyContent {
  /*margin: 0 25px;*/
}

.p-about_historyContent dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.44rem;
  border-bottom: 1px dotted;
  padding: 15px 10px;
}

.p-about_historyContent dl dt {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 125px;
  flex: 0 0 125px;
}

.p-about_historyContent dl dd {
  position: relative;
  width: 100%;
}

.p-about_historyContent dl dd h4 {
  margin-bottom: 15px;
  font-size: 1.75rem;
  font-weight: bold;
}

.p-about_historyContent dl:first-child {
  padding-top: 0;
}

.p-about_historyContent span {
  font-weight: bold;
  color: #92ab23;
}

@media screen and (max-width: 767px) {
  .p-about_historyContent dl dt {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0;
    flex: 0;
  }
  .p-about_groupItems dl {
    flex-wrap: wrap;
  }

  .p-about_groupItems dl dt {
    flex: inherit;
    width: 100%;
  }

  .p-about_groupItems dl dd {
    font-weight: normal;
    margin-top: 10px;
  }

  .p-about_historyContent {
    /*padding: 50px 20px;
      margin: 0;*/
  }
  .p-about_historyTime dl {
    display: inline-block;
    padding: 0 2rem;
  }
  .p-about_historyTime dl dt {
    font-weight: bold;
    font-size: 1.2rem;
    padding: 0 0 1rem 0;
  }

  .p-about_historyTime dl dd {
    padding: 0px;
  }

  .p-about_historyTime dl dd h4 {
    font-size: 1.6rem;
  }

  .p-about_historyTime dl dd p {
    font-size: 1.4rem;
  }
}

.p-column img {
  display: block;
  max-width: 100%;
  height: auto;
}

.p-column .c-mainTitle {
  padding: 50px 0;
  background: #f8f8f8;
}

@media screen and (max-width: 991px) {
  .p-column .c-mainTitle {
    padding: 35px 0;
  }
}

@media screen and (max-width: 767px) {
  .p-column .c-mainTitle {
    margin-bottom: 20px;
    padding: 25px 0;
  }
}

.p-column .c-pagenation {
  padding: 70px 0;
  text-align: center;
}

.p-column .c-pagenation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-column .c-pagenation ul li {
  margin: 0 5px;
}

.p-column .c-pagenation ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  color: #3b3c3e;
  font-family: YuGothicM;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
}

.p-column .c-pagenation ul li.is-active a,
.p-column .c-pagenation ul li:hover a {
  border-color: #92ab23;
  background-color: #92ab23;
  color: #fff;
}

.p-column .c-tlt04 {
  padding: 0.9rem 2rem 1rem 2rem;
  background-color: #92ab23;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  margin: 0;
}

.p-column .l-sidebar .c-list__cat {
  margin: 0;
}

.p-column .c-list__cat li {
  padding: 0.9rem 0 1rem 2rem;
  border-bottom: 1px solid #f6fae6;
  background-color: #fff;
}

.p-column .c-list__cat li a {
  display: block;
  padding: 0;
  color: #333;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
}

.p-column .c-list__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 0 0 0;
}

.p-column .c-list__tag li {
  margin-right: 5px;
  margin-bottom: 5px;
  border-radius: 5px;
  background-color: #e1e1e1;
  font-size: 1rem;
}

.p-column .c-list__tag li a {
  display: block;
  padding: 5px 12px;
  color: #333333;
  font-size: 1rem;
  text-decoration: none;
}

.p-column .c-list__01 {
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid #adadad;
}

.p-column .c-list__01 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 5px;
  font-size: 1.5rem;
}

.p-column .c-list__01 li::before {
  display: block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background-color: #333333;
  content: "";
}

.p-column__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 575px) {
  .p-column__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.p-column__list .item {
  position: relative;
  width: 32%;
  margin-right: 2%;
}

.p-column__list .item:nth-child(3n) {
  margin-right: 0;
}

@media screen and (max-width: 575px) {
  .p-column__list .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
  }
}

.p-column__list .item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

@media screen and (max-width: 991px) {
  .p-column__list .item .txt {
    padding: 20px 0;
  }
}

@media screen and (max-width: 767px) {
  .p-column .l-sidebar .c-list__cat {
    margin: 0 0 1rem 0;
  }  
  .p-column__list .item .txt {
    padding: 15px 0;
  }
}

.p-column__list .item .txt .date-cat {
  /*display: -webkit-box;*/
  /*display: -ms-flexbox;*/
  /*display: flex;*/
  /*-webkit-box-align: center;*/
  /*-ms-flex-align: center;*/
  /*align-items: center;*/
  margin-bottom: 2%;
}

@media screen and (max-width: 991px) {
  .p-column__list .item .txt .date-cat {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 5px;
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .p-column__list .item .txt .date-cat {
    /*display: flex;*/
    /*-webkit-box-align: center;*/
    /*-ms-flex-align: center;*/
    /*align-items: center;*/
    margin-top: -3%;
  }
}

.p-column__list .item .txt .date {
  color: #8e8e8e;
  font-size: 1.4rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-column__list .item .txt .date {
    font-size: 1rem !important;
  }
}

.p-column__list .item .txt .cat {
  padding: 2px 5px;
  background-color: #92ab23;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .p-column__list .item .txt .cat {
    padding: 2px 5px;
    background-color: #92ab23;
    color: white;
    font-size: 1rem !important;
    font-weight: bold;
  }
}

.p-column__list .item .txt .title {
  margin-bottom: 40px;
  font-size: 1.9rem;
  font-weight: bold;
}

@media screen and (max-width: 991px) {
  .p-column__list .item .txt .title {
    margin-bottom: 20px;
    font-size: 1.9rem;
  }
}

@media screen and (max-width: 767px) {
  .p-column__list .item .txt .title {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }

  .p-column__list .item .txt .content {
    font-size: 1rem !important;
  }

  .columns_title_icon {
    border: 1px solid black;
    border-radius: 20px;
    height: 15%;
    margin-top: 3%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("../images/top/news_more.png");
    background-repeat: no-repeat;
    background-position: right 5% center;
    background-size: 7%;
    font-size: 1rem;
  }
}

.p-column__list .item .txt .content {
  font-size: 1.2rem;
}

.p-column__01 {
  margin-bottom: 50px;
  padding: 45px 30px;
  background-color: #fff;
}

@media screen and (max-width: 991px) {
  .p-column__01 {
    margin-bottom: 35px;
    padding: 25px;
  }
}

@media screen and (max-width: 767px) {
  .p-column__01 {
    margin-bottom: 20px;
    padding: 0;
  }
}

.p-column__01 .c-tlt03 {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 2px solid #707070;
  color: #333333;
  font-size: 2.5rem;
  font-weight: bold;
}

.p-column__01 .c-tlt03::after {
  display: block;
  position: absolute;
  bottom: -2px;
  width: 20%;
  height: 2px;
  background-color: #92ab23;
  content: "";
}

@media screen and (max-width: 991px) {
  .p-column__01 .c-tlt03 {
    margin-bottom: 30px;
    padding-bottom: 10px;
    font-size: 2.3rem;
  }
}

@media screen and (max-width: 767px) {
  .p-column__01 .c-tlt03 {
    margin-bottom: 20px;
    padding-bottom: 5px;
    font-size: 1.8rem;
  }
}

.p-column__02,
.p-column__03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {

  .p-column__02,
  .p-column__03 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.p-column__03 {
  margin-top: 0;
  padding: 0 0 0 0;
}

.p-column__main {
  width: 60%;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .p-column__03 {
    margin-top: 0;
    padding: 0 0 0 0;
  }
  .p-column__main {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
}

@media screen and (min-width: 767px) and (max-width: 991px) {
  .p-column__main {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-left: 5.5%;
    margin-right: 5.5%;
  }
}

.p-column__main .p-column__list {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-column__main .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-around;
  width: 100%;
  margin-right: 0;
  padding: 2rem;
  border-bottom: 1px dotted #6B696A;
  background-color: #fff;
}

@media screen and (max-width: 991px) {
  .p-column__main .item {
    padding: 25px 0;
  }
}

@media screen and (max-width: 767px) {
  .p-column__main .item {
    padding: 1.5rem;
  }
}

.p-column__main .item .image {
  width: calc(100% /2 - 10px);
}

@media screen and (max-width: 991px) {
  .p-column__main .item .image {
    width: 35%;
  }
}

@media screen and (max-width: 767px) {
  .p-column__main .item .image {
    width: calc(100% /2 + 5px);
  }
}

.p-column__main .item .txt {
  width: calc(100% /2 - 10px);
  padding: 0 0 0 1rem;
}

.p-column__main .item .txt .date {
  font-size: 1.2rem;
  float: right;
}

.p-column__main .item .txt .title {
  margin-bottom: 8px;
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  .p-column__main .item .txt {
    width: calc(100% /1.5 - 10px);
    padding: 0 0 0 1rem;
  }
  .p-column__main .item .txt .title {
    font-size: 1rem;
    width: 100%;
  }
}

.p-column__post {
  padding: 0;
}

.p-news__post {
  margin-left: 5.5%;
  margin-right: 5.5%;
  padding-bottom: 2%;
}

.p-news__post .box {
  padding: 20px;
  background-color: #fff;
  margin-top: 20px;
}

.p-column__post .box {
  padding: 2rem 2rem 4rem 2rem;
  background-color: #fff;
  margin-top: 0;
}

.p-column__post .box .date-cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}

.p-column__post .box .date {
  margin-right: 20px;
  color: #8e8e8e;
  font-size: 1.4rem;
  font-weight: bold;
}

.p-column__post .box .cat {
  padding: 2px 10px;
  background-color: #92ab23;
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
}

.p-column__post .box__title {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.7;
  padding-bottom: 2rem;
}

.p-column__post .box .c-list__tag {
  margin-bottom: 25px;
  padding-left: 0;
}

.p-column__post .box__image {
  margin-bottom: 20px;
}

.p-column__post .box h2 {
  margin-bottom: 20px;
  padding: 6px 20px 8px 20px;
  background-color: #92ab23;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 120%;
}

.p-column__post .box h2.txt150 {
  background-color: #fff !important;
}
.p-column__post .box h3 {
  margin-bottom: 20px;
  padding: 6px 20px;
  background-color: #ececec;
  font-size: 2rem;
  font-weight: bold;
  line-height: 120% !important;
}

.p-column__post .box h4 {
  margin-bottom: 20px;
  padding: 3px 15px;
  border-left: 4px solid #92ab23;
  font-size: 1.5rem;
  line-height: 120% !important;
  font-weight: bold;
}

.p-column__post .box p {
  margin-bottom: 20px;
  font-size: 1.5rem;
  line-height: 27px;
  text-align: justify;
}

.p-column__post .box ol {
  margin-bottom: 50px;
  padding: 20px 20px 20px 35px;
  border: 1px solid #adadad;
  list-style: decimal;
}

.p-column__post .box ol li {
  margin-bottom: 5px;
  font-size: 1.5rem;
}

.p-column__post .box ._content ul {
  margin-bottom: 50px;
  padding: 20px 20px 20px 35px;
  border: 1px solid #adadad;
  list-style: decimal;
}

.p-column__post .box ._content ul li {
  margin-bottom: 5px;
  font-size: 1.5rem;
}

.p-column__post .box__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 50px;
  padding: 25px 30px 25px 15px;
  background-color: #f8f8f8;
}

.p-column__post .box__author .image {
  width: 13.5%;
}

.p-column__post .box__author .profile {
  width: 83%;
}

.p-column__post .box__author .profile__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 16px;
}

.p-column__post .box__author .profile__name .job {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.6rem;
}

.p-column__post .box__author .profile__name .job::after {
  display: block;
  width: 1px;
  height: 15px;
  margin: 0 10px;
  background-color: #333333;
  content: "";
}

.p-column__post .box__author .profile__name .name {
  font-size: 1.3rem;
}

.p-column__post .box__author .profile .content {
  font-size: 1.4rem;
  line-height: 25px;
  text-align: justify;
  word-break: break-all;
}

@media only screen and (max-width: 767px) {
  .p-column__post {
    width: 100%;
    padding: 25px 20px;
  }
  .p-column__post .box {
    padding: 2.5rem;
    background-color: #fff;
    margin-top: 0;
  }
  .p-column__post .box__title {
    font-size: 2rem;
  }

  .p-column__post .box__author {
    padding: 25px 20px;
  }

  .p-column__post .box__author .image {
    width: 25%;
  }

  .p-column__post .box__author .profile {
    width: 70%;
  }
}

.p-column .c-title {
  margin-bottom: 25px;
  padding-bottom: 15px;

  border-bottom: 1px solid #b1b1b1;
  font-size: 1.9rem;
  font-weight: bold;
  line-height: 28px;
}

.p-column__slider {
  margin-bottom: 70px;
}

.p-column__slider .p-column__list {
  border: 1px solid #9f9f9f;
}

.p-column__slider .p-column__list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-right: 0;
  padding: 10px 20px;
  width: 50%;
  margin-bottom: 0;
}

.p-column__slider .p-column__list .item {
  position: relative;
}

.p-column__slider .p-column__list .item::after {
  display: block;
  width: 1px;
  height: 80%;
  background-color: #b0b0b0;
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
}

.p-column__slider .p-column__list .item .image {
  width: 40%;
  padding-left: 30px;
}

.p-column__slider .p-column__list .item .image figure {
  width: 100%;
  padding-top: 75%;
  position: relative;
}

.p-column__slider .p-column__list .item .image figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}

.p-column__slider .p-column__list .item .txt {
  width: 54%;
  padding: 0;
}

.p-column__slider .p-column__list .item .txt .content {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
}

.p-column__slider .p-column__list .item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.p-column__slider .p-column__list .item:nth-child(even) .image {
  padding-right: 30px;
  padding-left: 0;
}

.p-column__slider .p-column__list .slick-next,
.p-column__slider .p-column__list .slick-prev {
  z-index: 1;
  position: absolute;
  top: 50%;
  width: 35px !important;
  height: 100%;
  padding: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: none;
  background: #92ab23;
  color: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-column__slider .p-column__list .slick-prev {
  left: 0;
}

.p-column__slider .p-column__list .slick-prev::before {
  display: inline-block;
  padding: 8px;
  -webkit-transform: rotate(135deg) translateY(-7px);
  transform: rotate(135deg) translateY(-7px);
  border: solid #fff;
  border-width: 0 3px 3px 0;
  content: "";
  margin-top: -7px;
}

.p-column__slider .p-column__list .slick-next {
  right: 0;
}

.p-column__slider .p-column__list .slick-next::before {
  display: inline-block;
  padding: 8px;
  -webkit-transform: rotate(-45deg) translate(-7px);
  transform: rotate(-45deg) translate(-7px);
  border: solid #fff;
  border-width: 0 3px 3px 0;
  content: "";
  margin-top: -7px;
}

@media only screen and (max-width: 767px) {
  .p-column__slider .p-column__list .item {
    height: 50px;
  }

  .p-column__slider .p-column__list .slick-next::before {
    padding: 4px;
    margin-top: -7px;
    margin-left: 9px;
  }

  .p-column__slider .p-column__list .slick-prev::before {
    padding: 4px;
    margin-top: -7px;
    margin-right: 9px;
  }

  .p-column__slider .p-column__list .item .txt {
    display: none;
  }

  .p-column__slider .p-column__list .item .image {
    display: none;
  }

  .p-column__slider .p-column__list .item a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    font-size: 1.6rem;
  }

  .p-column__slider .p-column__list .item a.nextArrow:before {
    content: attr(data-next);
    padding: 10px;
    display: block;
    padding-right: 35px;
  }

  .p-column__slider .p-column__list .item a.preArrow:before {
    content: attr(data-prev);
    padding: 10px;
    display: block;
    padding-left: 35px;
  }
}

.p-column__New-Article .p-column__list .txt .date,
.p-column__wellRead-Article .p-column__list .txt .date,
.p-column__related-Article .p-column__list .txt .date {
  color: #333333;
  font-size: 1rem;
}

.p-column__New-Article .p-column__list .txt .title,
.p-column__wellRead-Article .p-column__list .txt .title,
.p-column__related-Article .p-column__list .txt .title {
  font-size: 1.4rem;
}

.p-column__related-Article .p-column__list {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-column__related-Article .p-column__list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  margin-right: 0;
  margin-bottom: 20px;
}

.p-column__related-Article .p-column__list .item .image {
  width: 30%;
}

.p-column__related-Article .p-column__list .item .txt {
  width: 67%;
  padding: 0;
}

.p-column__related-Article .p-column__list .item .txt .title {
  margin-bottom: 30px;
}

.p-column__related-Article .p-column__list .item .c-list__tag {
  padding: 0;
}

.p-column__related-Article .p-column__list .item .c-list__tag li {
  margin-right: 10px;
}

.p-column__related-Article .p-column__list .item .c-list__tag li a {
  position: unset;
  padding: 3px 5px;
  font-size: 1.2rem;
}

@media only screen and (max-width: 767px) {
  .p-column__related-Article .p-column__list .item .txt .title {
    margin-bottom: 10px;
  }

}

.p-column .l-sidebar .p-column__list {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 2rem;
  margin: 0;
  background: white;
}

.p-column .l-sidebar .p-column__list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  margin-right: 0;
  padding: 10px 10px 10px 10px;
}

.p-column .l-sidebar .p-column__list .item .image {
  position: relative;
  width: 43%;
}

@media screen and (max-width: 991px) {
  .p-column .l-sidebar .p-column__list .item .image {
    width: 100px;
  }
}

.p-column .l-sidebar .p-column__list .item .image .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
}

.p-column .l-sidebar .p-column__list .item .image .number__yl {
  background-color: #fff601;
}

.p-column .l-sidebar .p-column__list .item .image .number__gray {
  background-color: #bebdbd;
}

.p-column .l-sidebar .p-column__list .item .image .number__brown {
  background-color: #a0620a;
}

.p-column .l-sidebar .p-column__list .item .image .number__gray-dark {
  background-color: #333333;
}

.p-column .l-sidebar .p-column__list .item .txt {
  width: 53%;
  padding: 0;
}

@media screen and (max-width: 991px) {
  .p-column .l-sidebar .p-column__list .item .txt {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    padding-left: 10px;
  }
}

.p-column .l-sidebar .p-column__list .item .txt .date {
  color: #333333;
  font-size: 1.2rem;
}

.p-column .l-sidebar .p-column__list .item .txt .title {
  margin-bottom: 15px;
  font-size: 1.8rem;
  line-height: 29px;
}

.p-column .l-sidebar .p-column__list .item .txt .content {
  margin-bottom: 10px;
  font-weight: bold;
}

@media screen and (max-width: 991px) {
  .p-column .l-sidebar .p-column__list .item .txt .content {
    margin-bottom: 5px;
  }
}

.p-column .l-commonNew-Article {
  margin-bottom: 45px;
  background-color: #fff;
}

.p-column .l-formSearch {
  margin-bottom: 30px;
  background-color: #fff;
}

.p-column .l-formSearch form {
  position: relative;
  padding: 15px;
}

.p-column .l-formSearch form input {
  position: relative;
  width: 100%;
  height: 50px;
  padding-left: 15px;
  border: 1px solid #bebdbd;
  border-radius: 30px;
  outline: none;
  font: 400 16px"Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.p-column .l-formSearch form button {
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: none;
  background: transparent;
}

.p-column .l-formSearch form button img {
  width: 22px;
  height: 22px;
}

.p-column .l-formSearch form button:hover {
  cursor: pointer;
}

.p-column .l-commonPopular-Article {
  margin-bottom: 30px;

}

.p-column .l-commonCategories {
  margin: 0 0 4rem 0;
  padding: 0;
}

@media screen and (max-width: 991px) and (min-width: 760px) {
  .p-column .l-commonCategories {
    margin: 0;
    padding-bottom: 30px;
  }
}

.p-column .l-commonCategories .c-tlt04 {
  margin-bottom: 0;
}

.p-column .l-commonTag {
  padding-bottom: 30px;
  background-color: #fff;
}

.p-column .l-commonTag .c-tlt04 {
  margin-bottom: 25px;
}

.p-member__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  margin-top: 30px;
  margin-left: 1.6%;
  margin-right: 1.6%;

}

@media screen and (max-width: 760px) {
  .p-member__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    margin-top: -2%;
  }
}

@media screen and (max-width: 575px) {
  .p-member__list {
    padding-bottom: 40px;
  }
}

.p-member__list img {
  display: block;
  max-width: 100%;
  height: auto;
}

.p-member__list:after {
  /*-webkit-box-flex: 1;*/
  /*-ms-flex: 1;*/
  /*flex: 1;*/
  /*content: "";*/
}

.p-member__list .item {
  position: relative;
  width: calc(100% / 4.1);
  margin-bottom: 40px;
  margin-left: 2px;
  margin-right: 2px;
  padding: 10px 10px 10px 10px;
  border: 1px solid;
}

.p-member__list .item .image {
  width: 100%;
  height: 70%;
}

@media screen and (max-width: 767px) {
  .p-member__list .item {
    width: calc(100% / 3);
  }
}

@media screen and (max-width: 575px) {
  .p-member__list .item {
    width: 48%;
    padding: 0 5px;
  }
}

.p-member__list .item a {
  display: block;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-member__list .item .txt {
  padding: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 991px) {
  .p-member__list .item .txt {
    padding: 15px;
  }
}

@media screen and (max-width: 575px) {
  .p-member__list .item .txt {
    padding: 10px;
  }
}

.p-member__list .item .job {
  margin-bottom: 5px;
  font-size: 1.2rem;
  font-weight: 400;
}

.p-member__list .item .name {
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (max-width: 575px) {
  .p-member__list .item .name {
    font-size: 1.4rem;
  }
}

.p-member__list .item .name::after {
  /*display: block;*/
  /*width: 26px;*/
  /*height: 26px;*/
  /*margin-left: auto;*/
  /*background: url(../images/member/icon.svg) no-repeat center;*/
  /*background-size: cover;*/
  /*content: "";*/
}

@media screen and (max-width: 575px) {
  .p-member__list .item .name::after {
    width: 17px;
    height: 17px;
  }
}

.p-member01__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 50px 0;
  flex-wrap: wrap;
}

.p-member01__link li {
  margin: 0 15px 10px;
  border: 2px solid #92ab23;
  background: #fff;
}

@media screen and (max-width: 575px) {
  .p-member01__link li {
    margin: 0 5px 10px;
  }
}

.p-member01__link li a {
  display: block;
  min-width: 85px;
  height: 30px;
  color: #92ab23;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 30px;
  text-align: center;
  text-decoration: none;
  padding: 0 15px;
}

.p-member01__link li.is-active,
.p-member01__link li:hover {
  background: #92ab23;
}

.p-member01__link li.is-active a,
.p-member01__link li:hover a {
  color: #fff;
}

.p-member01 .item:hover .txt {
  background-color: #92ab23;
  color: #fff;
}

.p-member02__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 70px;
  padding: 4rem;
  background: #fff;
  margin-top: 10px;
}

@media screen and (max-width: 991px) {
  .p-member02__box {
    margin-bottom: 50px;
    padding: 20px 20px;
  }
}

@media screen and (max-width: 767px) {
  .p-member02__box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 575px) {
  .p-member02__box {
    margin-bottom: 35px;
    padding: 0 0;
  }
}

.p-member02__box img {
  display: block;
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 991px) {
  .p-member02__box img {
    margin-bottom: 20px;
  }
}

.p-member02__box .image {
  width: 41%;
}

@media screen and (max-width: 767px) {
  .p-member02__box .image {
    width: 100%;
  }
}

.p-member02__box .txt {
  width: 55%;
}

@media screen and (max-width: 767px) {
  .p-member02__box .txt {
    width: 100%;
  }
}

.p-member02__box .txt .job {
  display: inline-block;
  padding: 0 10px;
  height: 36px;
  margin-bottom: 10px;
  background: #92ab23;
  color: #fff;
  font-size: 1.5rem;
  line-height: 36px;
  text-align: center;
  margin-top: 3%;
  margin-right: 1%;
}


@media screen and (max-width: 767px) {
  .p-member02__box .txt .job {
    height: 32px;
    margin-bottom: 5px;
    font-size: 1.2rem;
    line-height: 32px;
    margin-top: 30px;
    margin-right: 1%;
  }

}

.p-member02__box .txt .name {
  margin-bottom: 20px;
  padding-bottom: 17px;
  border-bottom: 1px solid #707070;
  font-size: 2.3rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .p-member02__box .txt .name {
    margin-bottom: 30px;
    font-size: 1.5rem;
  }
}

.p-member02__box .txt .content {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: left;
}

.p-member01 .item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 23%;
  padding: 20px 20px 20px 20px;
  background-color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 1px solid;
  margin-top: 1px;
}

.p-member02 .item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 23%;
  margin-right: 1%;
  padding: 20px 20px 20px 20px;
  background-color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 1px solid;
  margin-top: 1px;
}

@media screen and (max-width: 1199px) {
  .p-member02 .item {
    margin-right: 1%;
  }
}

@media screen and (max-width: 991px) {
  .p-member02 .item {
    width: 47%;
    padding: 20px;
  }
}

.p-member02 .item:nth-child(4n) {
  margin-right: 3.5%;
}

@media screen and (max-width: 1199px) {
  .p-member02 .item:nth-child(4n) {
    margin-right: 1%;
  }
}

.p-member02 .item:nth-child(3n) {
  margin-right: 0;
}

@media screen and (max-width: 575px) {
  .p-member02 .item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 50%;
    margin-right: 0;
    margin-bottom: 10px;
    padding: 10px;
    align-items: flex-start;
  }

  .p-member02 .item:nth-child(4n) {
    margin-right: 0;
  }
}

.p-member02 .item .image {
  width: 100%;
  height: 70%;
}

@media screen and (max-width: 991px) {
  .p-member02 .item .image {
    height: auto;
  }
}

@media screen and (max-width: 575px) {
  .p-member02 .item .image {
    width: 100%;
    margin-bottom: 10px;
  }
}

.p-member02 .item .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 991px) {
  .p-member02 .item .image img {
    width: auto;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .p-member02 .item .image img {
    width: 100%;
    height: 220px;
  }
}

.p-member02 .item .txt {
  width: 100%;
  padding: 0;
  margin-top: 3%;
}

@media screen and (max-width: 575px) {
  .p-member02 .item .txt {
    width: 100%;
  }
}

.p-member02 .item .txt .c-job {
  margin-bottom: 19px;
  font-size: 1.4rem;
}

@media screen and (max-width: 575px) {
  .p-member02 .item .txt .c-job {
    margin-bottom: 0;
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 768px) {
  .p-member02 .item:hover {
    background-color: #92ab23;
  }

  .p-member02 .item:hover .txt {
    color: #fff;
  }
}

/* .p-new01 .c-mainTitle_content {
       margin-top: -69px;
  } */
@media screen and (max-width: 991px) {
  .p-new01 .c-mainTitle_content {
    max-width: 762px;
    height: 227px;
    /*     margin-top: -57px; */
  }
}

@media screen and (max-width: 767px) {
  .p-new01 .c-mainTitle_content {
    width: 90%;
    max-width: 462px;
    height: 107px;
    margin-top: -37px;
  }
}

.c-new-content {
  /*padding-bottom: 129px;*/
  background: #f6fae6;
  margin: 0;
  padding: 6rem 6rem 6rem 6rem;
}

@media screen and (max-width: 991px) {
  .p-new01 .c-new-content {
    padding-bottom: 90px;
  }
}

@media screen and (max-width: 767px) {
  .p-new01 .c-new-content {
    padding-bottom: 50px;
  }
}

.p-new01 .c-new-content .c-list-news {
  margin-top: 42px;
  padding: 40px 52px;
  background: #fff;
}

@media screen and (max-width: 575px) {
  .p-new01 .c-new-content .c-list-news {
    padding: 10px;
  }
}

.p-new01 .c-new-content .c-list-news .c-new {
  display: block;
  margin-bottom: 16px;
  color: #333333;
  text-decoration: none;
}

.p-new01 .c-new-content .c-list-news .c-new:nth-child(2),
.p-new01 .c-new-content .c-list-news .c-new:nth-child(4),
.p-new01 .c-new-content .c-list-news .c-new:nth-child(5) {
  margin-bottom: 17px;
}

.p-new01 .c-new-content .c-list-news .c-new__date {
  margin-left: 2px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 33px;
}

@media screen and (max-width: 767px) {
  .p-new01 .c-new-content .c-list-news .c-new__date {
    line-height: 25px;
    padding: 0 0 1rem 0;
  }
}


.p-new01 .c-new-content .c-list-news .c-new__title {
  margin-top: -27px;
  font-size: 1.8rem;
  padding: 20px 0;
  line-height: 29px;
}

@media screen and (max-width: 767px) {
  .p-new01 .c-new-content .c-list-news .c-new__title {
    font-size: 1rem;
    line-height: 15px;
  }
}

.p-new01 .c-new-content .c-list-news .c-new .c-line-bottom {
  border: none;
  height: 1px;
  margin-top: 26px;
  border-width: 1px;
  border-bottom: gray 1px dotted;
  background: #D5D5D5;
}

.c-line-bottom {
  border: none;
  height: 1px;
  margin-top: 10px;
  border-width: 1px;
  border-bottom: gray 1px dotted;
  background: #D5D5D5;
}

.c-pagination {
  margin-top: 82px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .c-pagination {
    margin-top: 41px;
  }
}

.c-pagination .pages {
  display: none;
}

.c-pagination a,
.c-pagination span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid #CCCCCC !important;
  border-radius: 2px;
  margin: 0 4px !important;
}

.c-pagination span.current,
.c-pagination a:hover {
  background: #92ab23;
}

.c-pagination span.current,
.c-pagination a:hover {
  color: #FFFFFF;
}

.c-pagination a {
  color: #3B3C3E;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
}

.p-new02 .c-new-content {
  padding-bottom: 111px;
  background: #F8F8F8;
}

@media screen and (max-width: 767px) {
  .p-new02 .c-new-content {
    padding-bottom: 80px;
  }
  .p-new01 .c-new-content .c-list-news .c-new .c-line-bottom {
    border: none;
    height: 1px;
    margin-top: 0;
    border-width: 1px;
    border-bottom: gray 1px dotted;
    background: #D5D5D5;
  }
}

@media screen and (max-width: 575px) {
  .p-new02 .c-new-content {
    padding-bottom: 50px;
  }
}

.p-new02 .c-new-content .c-wrap-new {
  margin-top: 44px;
  padding: 48px 52px;
  background: #fff;
}

@media screen and (max-width: 575px) {
  .p-new02 .c-new-content .c-wrap-new {
    padding: 20px 10px;
  }
}

.p-new02 .c-new-content .c-wrap-new .date {
  margin-left: 2px;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 17px;
}

.p-new02 .c-new-content .c-wrap-new .title {
  margin-top: 12px;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 51px;
}

@media screen and (max-width: 767px) {
  .p-new02 .c-new-content .c-wrap-new .title {
    font-size: 2rem;
    line-height: 30px;
  }
}

.p-new02 .c-new-content .c-wrap-new .content {
  margin-top: 101px;
  font-size: 1.5rem;
  line-height: 24px;
}

@media screen and (max-width: 767px) {
  .p-new02 .c-new-content .c-wrap-new .content {
    margin-top: 90px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 575px) {
  .p-new02 .c-new-content .c-wrap-new .content {
    margin-top: 45px;
  }
}

.p-new02 .c-new-content .c-wrap-new .c-back-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  height: 65px;
  margin-top: 142px;
  margin-right: auto;
  margin-left: auto;
  background: #92ab23;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  line-height: 27px;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .p-new02 .c-new-content .c-wrap-new .c-back-list {
    margin-top: 112px;
  }
}

@media screen and (max-width: 575px) {
  .p-new02 .c-new-content .c-wrap-new .c-back-list {
    margin-top: 60px;
  }
}

.p-new02 .c-new-content .c-wrap-new .c-back-list .i-arrow {
  position: absolute;
  top: 50%;
  left: 22px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-new02 .c-new-content .c-wrap-new .c-back-list .i-arrow img {
  width: 22px;
}

.qa_container {
  background-color: #f6fae6 !important;
  max-width: none !important;
  margin-top: 30px
}

.p-qa__faq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 48px 0 51px;
  padding-right: 41px;
  padding-left: 27px;
}

.p-qa__faq a {
  display: block;
  padding: 24px 0;
  border: 2px solid #92ab23;
  color: #92ab23;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
}

.p-qa__content {
  padding: 6rem 5.5% 0 5.5%;
}

@media only screen and (max-width: 767px) {
  .p-qa__faq {
    flex-wrap: wrap;
    padding: 0;
  }

  .p-qa .c-tab {
    flex: inherit;
    flex-basis: inherit;
    width: 49%;
    margin: 1% 0;
  }

  .p-qa__content {
    padding: 25px 20px;
    margin: 0;
  }
}

/* =========================================================
list - リストのオブジェクト
========================================================= */

.c-qa-list {
}

.c-qa-list__title {
  position: relative;
  margin-bottom: 29px;
  padding: 0.9rem 2rem 1rem 2rem;
  border-top: 2px solid #C3C3C3;
}

.c-qa-list__title:after {
  position: absolute;
  top: 0;
  width: 166px;
  height: 2px;
  background-color: #92ab23;
  content: '';
}

.c-qa-list__title p {
  font-size: 2.2rem;
  font-weight: 500;
  font-weight: 700;
}

/* =========================================================
navigation - グローバルナビなど
========================================================= */

.c-tab {
  -ms-flex-preferred-size: 255px;
  flex-basis: 255px;
  text-align: center;
}

.is-focused {
  background-color: #92ab23;
  color: #fff !important;
}

.c-qa {
  margin-bottom: 17px;
  position: relative;
}

.c-qa__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 16px 34px 16px 28px;
  border: 1px solid #C3C3C3;
  cursor: pointer;
  position: relative;
}

.c-qa__question:after {
  content: "\002B";
  font-size: 2.4rem;
  position: absolute;
  right: 10px;
  font-weight: bold;
  transition: all .3s;
}

.c-qa.is-active .c-qa__question:after {
  content: "\2212";
}

.c-qa__question--icon {
  margin-right: 16px;
  font-size: 2rem;
  font-weight: bold;
}

.c-qa__question--text {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 1.6rem;
  font-weight: 700;
}

.c-qa__answer {
  display: none;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 16px 90px 67px 31px;
  border: 1px solid #C3C3C3;
  background-color: #F4F6FA;
  cursor: pointer;
}

.c-qa__answer___main {
  display: flex;
}

.c-qa__answer--icon {
  margin-right: 16px;
  color: #92ab23;
  font-size: 2rem;
  font-weight: bold;
}

.c-qa__answer--text {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 1.4rem;
  line-height: 24px;
}

@media only screen and (max-width: 767px) {
  .c-qa__question {
    padding: 10px 30px 10px 20px;
  }

  .c-qa__answer {
    padding: 20px;
  }
}

/* recruit */
.p-recruit {
  background-color: #fff;
  margin-top: 30px
}

div#新卒採用 {
  margin-left: 0;
}

.t-recruit {
  background-color: #f6fae6;
  padding: 6rem 0 6rem 0;
  width: 100%;
}

.company_infomation {
  margin: 30px 5.5% 30px 5.5%;
  font-size: 1.44rem;
}

.t-recruitContent {
  display: block;
  width: 100%;
}
.t-recruitContent2 {
  display: block;
  width: calc(100% / 2);
  margin-left: 30px;
}
.t-recruitContent3 {
  display: block;
  width: calc(100% / 3);
  margin-left: 30px;
}

.t-recruitHead {
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 60px;
  background-color: #92ab23;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.t-recruitContent__list {
  background-color: white;
  padding: 10px;
}

.recruit-container {
  width: 100%;
  display: flex;
}

.t-recruitContent dl,
.t-recruitContent2 dl,
.t-recruitContent3 dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.5rem;
  border-bottom: 1px dotted #707070;
  font-size: 1.44rem;
}


.t-recruitContent dl:first-child,
.t-recruitContent2 dl:first-child,
.t-recruitContent3 dl:first-child {
}
.t-recruitContent dl:last-child,
.t-recruitContent2 dl:last-child,
.t-recruitContent3 dl:last-child {
  border: none;
}

.t-recruitContent dl dt,
.t-recruitContent2 dl dt,
.t-recruitContent3 dl dt {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 210px;
  flex: 0 0 20%;
  font-weight: bold;
}

@media screen and (max-width: 991px) {
  .recruit-container {
    display: block;
    margin: auto;
  }


  .t-recruitContent,
  .t-recruitContent2,
  .t-recruitContent3 {
    margin: auto !important;
    width: 100%;
    padding-top: 20px;
  }

  .t-recruitHead {
    font-size: 2rem;
  }

  .t-recruitContent dl,
  .t-recruitContent2 dl,
  .t-recruitContent3 dl {
    font-size: 1.6rem;
  }

  .t-recruitContent dl dt,
  .t-recruitContent2 dl dt,
  .t-recruitContent3 dl dt {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 210px;
    flex: 0 0 15%;
  }
}

.p-recruitBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 30px;
}

.p-recruitBtn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  border-radius: 4px;
  background: linear-gradient(45deg, #6e8311 30%, #92ab23 50%, #a5c80c 70%);
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  box-shadow: 6px 6px 6px 1px rgb(0 0 0 / 10%);
}

@media screen and (max-width: 767px) {
  .p-recruitBtn a {
    width: 100%;
    height: 50px;
    font-size: 1.3rem;
  }
}

.p-recruitBtn a:hover::after {
  right: 10px;
}

.p-recruitBtn img {
  fill: #fff;
  width: 30px;
  margin-right: 10px;
}

.p-service__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 75px;
  padding-bottom: 37.5px;
}

@media screen and (max-width: 991px) {
  .p-service__list {
    padding-top: 55px;
    padding-bottom: 27.5px;
  }
}

@media screen and (max-width: 767px) {
  .p-service__list {
    padding-top: 30px;
    padding-bottom: 15px;
  }
}

.p-service__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: calc(100% / 2 - 20px);
  height: 62.5px;
  margin-bottom: 30px;
  border: 3px solid #92ab23;
  color: #92ab23;
  font-size: 1.9rem;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 991px) {
  .p-service__list a {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 767px) {
  .p-service__list a {
    width: 100%;
    height: 52.5px;
    margin-bottom: 15px;
    border: 2px solid #92ab23;
    font-size: 1.4rem;
  }
}

.p-service__list a svg {
  fill: #92ab23;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 22.5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .p-service__list a svg {
    width: 14px;
  }
}

.p-service__list a:hover,
.p-service__list a.is-active {
  background-color: #92ab23;
  color: #fff;
}

.p-service__list a:hover svg,
.p-service__list a.is-active svg {
  fill: #fff;
}

.p-service__detail img {
  display: block;
  max-width: 100%;
}

.p-service__detail--items {
  margin-bottom: 75px;
}

@media screen and (max-width: 991px) {
  .p-service__detail--items {
    margin-bottom: 45px;
  }
}

@media screen and (max-width: 767px) {
  .p-service__detail--items {
    margin-bottom: 35px;
  }
}

.p-service__detail--image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  max-width: 852px;
  margin-top: 64px;
  margin-right: auto;
  margin-bottom: 55px;
  margin-left: auto;
}

@media screen and (max-width: 991px) {
  .p-service__detail--image {
    margin-top: 44px;
    margin-bottom: 45px;
  }
}

@media screen and (max-width: 767px) {
  .p-service__detail--image {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 24px;
    margin-bottom: 25px;
  }
}

.p-service__detail--image figure {
  width: calc(100% / 2 - 20px);
  overflow: hidden;
  border-radius: 10px;
}

@media screen and (max-width: 991px) {
  .p-service__detail--image figure {
    width: calc(100% / 2 - 10px);
  }
}

@media screen and (max-width: 767px) {
  .p-service__detail--image figure {
    width: 90%;
    margin-bottom: 15px;
  }
}

.p-service__detail--content {
  width: 100%;
  max-width: 634px;
  margin: 0 auto;
  padding: 68px;
  background-color: #fff;
}

@media screen and (max-width: 991px) {
  .p-service__detail--content {
    padding: 48px;
  }
}

@media screen and (max-width: 767px) {
  .p-service__detail--content {
    padding: 20px;
  }
}

.p-service__detail--content h3 {
  margin-right: 10px;
  margin-bottom: 75px;
  margin-left: 10px;
  padding-bottom: 20px;
  border-bottom: 3px solid #333;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .p-service__detail--content h3 {
    margin-bottom: 55px;
    padding-bottom: 15px;
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 767px) {
  .p-service__detail--content h3 {
    margin-bottom: 35px;
    padding-bottom: 10px;
    border-bottom: 2px solid #333;
    font-size: 1.8rem;
  }
}

.p-service__detail--content h4 {
  margin-bottom: 5px;
  font-size: 1.75rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .p-service__detail--content h4 {
    font-size: 1.6rem;
  }
}

.p-service__detail--i {
  padding: 15px;
}

/* =========================================================
top - Topページ固有のオブジェクト
========================================================= */

.p-top img {
  max-width: 100%;
}

.t-block {
  padding: 30px
}

@media screen and (max-width: 991px) {
  .t-block {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 767px) {
  .t-block {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.t-banner {
  padding-top: 35px;
  padding-bottom: 35px;
  background-color: #fff;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .t-banner {
    padding: 20px 15px;
  }

  .t-banner img {
    width: 90%;
    max-width: 100%;
  }
}

.t-mv {
  position: relative;
  background-color: #fff;
}

.t-mv_arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 991px) {
  .t-mv_arrows {
    height: 100%;
  }
}

@media screen and (max-width: 767px) {
  .t-mv_arrows {
    height: 100%;
  }
}

.t-mv_arrows img {
  width: 22.5px;

}

@media screen and (max-width: 991px) {
  .t-mv_arrows img {
    width: 15px;
  }
}

@media screen and (max-width: 767px) {
  .t-mv_arrows img {
    width: 10px;
  }
}

.t-mv_arrowsItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 66px;
  height: 100%;
  background-color: #1B274A;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 991px) {
  .t-mv_arrowsItem {
    width: 30px;
  }
}

@media screen and (max-width: 767px) {
  .t-mv_arrowsItem {
    width: 23px;
  }
}

.t-mv_arrowsItem:hover {
  opacity: 0.7;
}

.t-mv_prev {
  position: absolute;
}

@media screen and (max-width: 991px) {
  .t-mv_prev {
    left: 0px;
  }
}

@media screen and (max-width: 767px) {
  .t-mv_prev {
    left: 0px;
  }
}

.t-mv_next {
  position: absolute;
  right: 0;
}

@media screen and (max-width: 991px) {
  .t-mv_next {
    right: 0px;
  }
}

@media screen and (max-width: 767px) {
  .t-mv_next {
    right: 0px;
  }
}

.t-mv .items {
  width: 3.75%;
  height: 100%;
  padding: 0 20px;
}

@media screen and (max-width: 991px) {
  .t-mv .items {
    width: 3.11%;
    padding: 0 10px;
  }
}

@media screen and (max-width: 767px) {
  .t-mv .items {
    width: 310px;
    padding: 0 5px;
  }
}

.t-mv ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 99;
}

.t-mv ul li {
  display: block;
  width: 9px;
  height: 9px;
  margin: 0 4px;
  border-radius: 50%;
  background-color: #d6d6d6;
  cursor: pointer;
}

.t-mv ul li.slick-active {
  background-color: #92ab23;
}

.t-mv ul li button {
  width: 0;
  height: 0;
  border: none;
  outline: none;
  background: none;
  font-size: 0;
}

.t-news {
  padding: 70px 0;
}

@media screen and (max-width: 991px) {
  .t-news {
    padding: 50px;
  }
}

@media screen and (max-width: 767px) {
  .t-news {
    padding: 35px 0;
  }
}

.t-news_main {
  padding: 45px 70px;
  background: #fff;
}

@media screen and (max-width: 991px) {
  .t-news_main {
    padding: 35px 50px;
  }
}

@media screen and (max-width: 767px) {
  .t-news_main {
    padding: 20px 15px;
  }
}

.t-news_list {
  margin-top: 30px;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .t-news_list {
    margin-top: 15px;
    margin-bottom: 20px;
  }
}

.t-news_list li {
  padding: 25px 0;
  border-top: 1px solid #e9ebf3;
}

.t-news_list li:last-child {
  border-bottom: 1px solid #e9ebf3;
}

.t-news_list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #333;
  text-decoration: none;
}

.t-news_list time,
.t-news_list span {
  font-size: 1.5rem;
  line-height: 19px;
}

.t-news_list time {
  padding: 0 15px;
}

@media screen and (max-width: 767px) {
  .t-news_list time {
    padding: 0;
  }
}

.t-news_list span {
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .t-news_list span {
    padding-left: 10px;
  }
}

.t-news_list_topbox {
  margin: 15px 15px;
}

.t-news_list_topbox li {
  padding: 0;
  border-top: 1px solid #e9ebf3;
}

.t-news_list_topbox li:last-child {
  border-bottom: 1px solid #e9ebf3;
}

.t-news_list_topbox a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #333;
  text-decoration: none;
  padding: 1.5rem 2rem;
}

.t-news_list_topbox .time {
  font-size: 1.5rem;
  line-height: 180%;
  margin: 0;
  padding: 0 2rem;
}

.t-column_ul {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .t-column_ul {
    display: block;
  }
  .t-news_list_topbox {
    margin: 0;
  }
}

li.column_post {
  width: 32%;
  position: relative;
  transition: all .5s;
}

li.column_post:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  li.column_post {
    width: 100%;
  }
}

li.column_post a {
  text-decoration: none;
}

li.column_post .column_post_cat {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #d3f6ff;
  color: #333;
  padding: 2px 10px;
  font-weight: bold;
}

.column_post_date {
  color: #8e8e8e;
  font-weight: bold;
}

.column_post_ttl {
  color: #333;
  font-weight: bold;
}

.t-column_list {
  margin-top: 2em;
  margin-bottom: 3em;
}

.t-about {
  background-color: #92ab23;
}

.t-about_main {
  width: 100%;
  max-width: 660px;
  margin-right: auto;
  margin-left: auto;
}

.t-about_main p {
  margin-top: 50px;
  margin-bottom: 75px;
  color: #fff;
  font-size: 1.6rem;
  line-height: 2.8rem;
}

@media screen and (max-width: 991px) {
  .t-about_main p {
    margin-top: 35px;
    margin-bottom: 55px;
  }
}

@media screen and (max-width: 767px) {
  .t-about_main p {
    margin-top: 25px;
    margin-bottom: 35px;
  }
}

.t-about_video {
  margin-bottom: 75px;
}

@media screen and (max-width: 991px) {
  .t-about_video {
    margin-bottom: 55px;
  }
}

@media screen and (max-width: 767px) {
  .t-about_video {
    margin-bottom: 35px;
  }
}

.t-voice {
  background-color: #fff;
}

.t-voice_main {
  width: 100%;
  max-width: 804px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 50px;
  padding-bottom: 75px;
}

@media screen and (max-width: 991px) {
  .t-voice_main {
    padding-top: 35px;
    padding-bottom: 55px;
  }
}

@media screen and (max-width: 767px) {
  .t-voice_main {
    padding-top: 25px;
    padding-bottom: 0;
  }
}

.c-voicePost {
  display: flex;
  flex-wrap: wrap;
  padding-left: 5.5%;
  padding-right: 3.35%;
}

.c-voicePost .c-voicePost__items {
  display: block;
  width: calc(100% / 3);
  margin-bottom: 3rem;
  padding: 0 30px 0 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.c-voicePost .c-voicePost__items a {
  text-decoration: none;
}

.c-voicePost .c-voicePost__img img {
  width: 100%;
  height: auto;
}

.c-voicePost__img figure {
  text-align: center;
}

.c-voicePost .c-voicePost__tlt {
  font-size: 1.6rem;
  line-height: 22px;
  letter-spacing: 0;
  color: #333;
  font-weight: bold;
  text-align: center;
}

.c-voicePost .c-voicePost__name {
  font-size: 1.4rem;
  line-height: 19px;
  letter-spacing: 0;
  color: #8B8B8B;
  font-weight: bold;
  margin-top: 5px;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .c-voicePost .c-voicePost__items {
    margin-bottom: 20px;
    /*padding: 0 10px;*/
  }

  .c-voicePost {
    padding-right: 1.9%;
  }
}

@media screen and (max-width: 767px) {
  .c-voicePost .c-voicePost__items {
    width: calc(100% / 2);
    padding: 0 12px 0 0
  }
}

.c-voicePost .c-voicePost__items:hover {
  opacity: 0.7;
}

.t-reason {
  position: relative;
  background-color: #fff;
}

.t-reason_main {
  padding-top: 90px;
}

@media screen and (max-width: 991px) {
  .t-reason_main {
    padding-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .t-reason_main {
    padding-top: 45px;
  }
}

.t-reason_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-bottom: 120px;
}

@media screen and (max-width: 991px) {
  .t-reason_items {
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 767px) {
  .t-reason_items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
}

.t-reason_items span {
  position: absolute;
  top: -45px;
  color: #92ab23;
  font-family: "Oswald", sans-serif;
  font-size: 4.5rem;
}

@media screen and (max-width: 991px) {
  .t-reason_items span {
    top: -45px;
    font-size: 4rem;
  }
}

@media screen and (max-width: 767px) {
  .t-reason_items span {
    top: -25px;
    font-size: 3rem;
  }
}

.t-reason_items h3 {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #cecece;
  font-size: 2rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .t-reason_items h3 {
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 1.8rem;
  }
}

.t-reason_items p {
  line-height: 1.9;
}

.t-reason_content {
  z-index: 9;
  width: 50%;
  min-height: 303px;

  padding: 27px 20px;
  -webkit-transform: translateX(43px);
  transform: translateX(43px);
  background-color: #fff;
}

@media screen and (max-width: 991px) {
  .t-reason_content {
    width: 55%;
    padding: 20px 15px;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@media screen and (max-width: 767px) {
  .t-reason_content {
    width: 100%;
    min-height: auto;
    padding: 20px 10px;
  }
}

.t-reason_img {
  width: 50%;
  -webkit-transform: translateY(43px);
  transform: translateY(43px);
}

@media screen and (max-width: 991px) {
  .t-reason_img {
    width: 45%;
  }
}

@media screen and (max-width: 767px) {
  .t-reason_img {
    width: 100%;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.t-member_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -20px;
  padding: 60px 0;
}

@media screen and (max-width: 991px) {
  .t-member_main {
    margin: 0 -10px;
    padding: 45px 0;
  }
}

@media screen and (max-width: 767px) {
  .t-member_main {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 30px 0;
  }
}

.t-member_items {
  width: calc(100% / 3);
  padding: 0 20px;
}

@media screen and (max-width: 991px) {
  .t-member_items {
    padding: 0 10px;
  }
}

@media screen and (max-width: 767px) {
  .t-member_items {
    width: 100%;
    margin-bottom: 20px;
  }
}

.t-member_items a {
  display: block;
  background-color: #fff;
  color: #333;
  text-decoration: none;
}

.t-member_items a:hover {
  background-color: #92ab23;
  color: #fff;
}

.t-member_items ._inner {
  padding: 13px 20px;
}

@media screen and (max-width: 991px) {
  .t-member_items ._inner {
    padding: 10px 15px;
  }
}

.t-member_items span {
  display: block;
  margin-bottom: 7px;
  font-size: 1.4rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .t-member_items span {
    margin-bottom: 5px;
  }
}

.t-member_items h3 {
  font-size: 2rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .t-member_items h3 {
    font-size: 1.6rem;
  }
}

.t-links {
  background-color: #fff;
}

.t-links img {
  display: block;
}

.t-links_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 991px) {
  .t-links_main {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.t-links_main a {
  display: block;
  position: relative;
  width: calc(100% / 4);
  color: #fff;
}

.t-links_main a:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(21, 63, 111, 0.85);
  content: "";
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.t-links_main a:hover:after {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .t-links_main a {
    width: calc(100% / 2);
  }
}

.t-links_ja {
  z-index: 9;
  position: absolute;
  bottom: 65px;
  left: 30px;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
}

@media screen and (max-width: 991px) {
  .t-links_ja {
    bottom: 50px;
    left: 20px;
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .t-links_ja {
    bottom: 43px;
    left: 15px;
    font-size: 2rem;
  }
}

.t-links_en {
  z-index: 9;
  position: absolute;
  bottom: 35px;
  left: 30px;
  font-family: "Quattrocento Sans", sans-serif;
  font-size: 1.6rem;
}

@media screen and (max-width: 991px) {
  .t-links_en {
    bottom: 20px;
    left: 20px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 991px) {
  .t-links_en {
    left: 15px;
    font-size: 1.3rem;
  }
}

.t-access {
  background-color: #fff;
}

.t-access img {
  width: 100%;
}

.t-access_main {
  position: relative;
}

.t-access_img {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
}

@media screen and (max-width: 991px) {
  .t-access_img {
    position: relative;
    width: 60%;
    width: 100%;
  }
}

.t-access_map {
  height: 430px;
}

@media screen and (max-width: 991px) {
  .t-access_map {
    height: 350px;
  }
}

@media screen and (max-width: 767px) {
  .t-access_map {
    height: 250px;
  }
}

.t-access_content {
  z-index: 9;
  position: relative;
  width: 100%;
  max-width: 650px;
  padding-top: 75px;
  padding-right: 57px;
  padding-bottom: 50px;
  padding-left: 62.5px;
  background-color: #fff;
}

@media screen and (max-width: 991px) {
  .t-access_content {
    max-width: 580px;
    padding: 20px 0px;
    /*     padding: 40px; */
  }
}

@media screen and (max-width: 991px) {
  .t-access_content {
    padding: 20px;
  }
}

.t-access_content h2 {
  text-align: left;
}

.t-access_content h4 {
  width: 100%;
  max-width: 460px;
  border-bottom: 1px solid #cecece;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 180%;
  padding: 0 0 1rem 0;
  margin: 0 0 1rem 0;
}

@media screen and (max-width: 991px) {
  .t-access_content h4 {
    margin-bottom: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 1.5rem;
  }
}

.t-access ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 !important;
  font-size: 2.2rem;
  line-height: 180%;
}

.t-access ul li span {
}

.accstyle {
  margin-top: 30px
}

@media screen and (max-width: 991px) {
  .t-access ul li {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1.4rem
  }
}

.t-access ul li a {
  position: relative;
  width: 226px;
  height: 31px;
  padding-left: 60px;
  border: 1px solid #92ab23;
  background-color: #92ab23;
  color: #fff;
  font-size: 2.2rem;
  line-height: 180%;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 991px) {
  .t-access ul li a {
    width: 100%;
    margin-top: 5px;
  }
}

.t-access ul li a:hover {
  background-color: #fff;
  color: #92ab23;
}

.t-access ul li a:hover svg {
  fill: #92ab23;
}

.t-access ul li a svg {
  fill: #fff;
  position: absolute;
  top: 50%;
  right: 40px;
  width: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* =========================================================
display - ブレイクポイントごとに表示切替
========================================================= */

.u-none {
  display: none !important;
}

.u-inline {
  display: inline !important;
}

.u-inline-block {
  display: inline-block !important;
}

.u-block {
  display: block !important;
}

.u-table {
  display: table !important;
}

.u-table-row {
  display: table-row !important;
}

.u-table-cell {
  display: table-cell !important;
}

.u-flex {
  display: -ms-flexbox !important;
  display: -webkit-box !important;
  display: flex !important;
}

.u-inline-flex {
  display: -ms-inline-flexbox !important;
  display: -webkit-inline-box !important;
  display: inline-flex !important;
}

@media screen and (min-width: 576px) {
  .u-sm-none {
    display: none !important;
  }

  .u-sm-inline {
    display: inline !important;
  }

  .u-sm-inline-block {
    display: inline-block !important;
  }

  .u-sm-block {
    display: block !important;
  }

  .u-sm-table {
    display: table !important;
  }

  .u-sm-table-row {
    display: table-row !important;
  }

  .u-sm-table-cell {
    display: table-cell !important;
  }

  .u-sm-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }

  .u-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}

@media screen and (min-width: 768px) {
  .u-mu-none {
    display: none !important;
  }

  .u-mu-inline {
    display: inline !important;
  }

  .u-mu-inline-block {
    display: inline-block !important;
  }

  .u-mu-block {
    display: block !important;
  }

  .u-mu-table {
    display: table !important;
  }

  .u-mu-table-row {
    display: table-row !important;
  }

  .u-mu-table-cell {
    display: table-cell !important;
  }

  .u-mu-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }

  .u-mu-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}

@media screen and (min-width: 992px) {
  .u-lg-none {
    display: none !important;
  }

  .u-lg-inline {
    display: inline !important;
  }

  .u-lg-inline-block {
    display: inline-block !important;
  }

  .u-lg-block {
    display: block !important;
  }

  .u-lg-table {
    display: table !important;
  }

  .u-lg-table-row {
    display: table-row !important;
  }

  .u-lg-table-cell {
    display: table-cell !important;
  }

  .u-lg-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }

  .u-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}

@media screen and (min-width: 1200px) {
  .u-xl-none {
    display: none !important;
  }

  .u-xl-inline {
    display: inline !important;
  }

  .u-xl-inline-block {
    display: inline-block !important;
  }

  .u-xl-block {
    display: block !important;
  }

  .u-xl-table {
    display: table !important;
  }

  .u-xl-table-row {
    display: table-row !important;
  }

  .u-xl-table-cell {
    display: table-cell !important;
  }

  .u-xl-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }

  .u-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}

@media print {
  .u-print-none {
    display: none !important;
  }

  .u-print-inline {
    display: inline !important;
  }

  .u-print-inline-block {
    display: inline-block !important;
  }

  .u-print-block {
    display: block !important;
  }

  .u-print-table {
    display: table !important;
  }

  .u-print-table-row {
    display: table-row !important;
  }

  .u-print-table-cell {
    display: table-cell !important;
  }

  .u-print-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }

  .u-print-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}

/* =========================================================
flex - flexを使った位置調整など
========================================================= */

.u-flex-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
}

.u-flex-row {
  -ms-flex-direction: row !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  flex-direction: row !important;
}

.u-flex-column {
  -ms-flex-direction: column !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  flex-direction: column !important;
}

.u-flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  flex-direction: row-reverse !important;
}

.u-flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  flex-direction: column-reverse !important;
}

.u-flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.u-flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.u-flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.u-flex-fill {
  -ms-flex: 1 1 auto !important;
  -webkit-box-flex: 1 !important;
  flex: 1 1 auto !important;
}

.u-flex-grow-0 {
  -ms-flex-positive: 0 !important;
  -webkit-box-flex: 0 !important;
  flex-grow: 0 !important;
}

.u-flex-grow-1 {
  -ms-flex-positive: 1 !important;
  -webkit-box-flex: 1 !important;
  flex-grow: 1 !important;
}

.u-flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

.u-flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}

.u-justify-content-start {
  -ms-flex-pack: start !important;
  -webkit-box-pack: start !important;
  justify-content: flex-start !important;
}

.u-justify-content-end {
  -ms-flex-pack: end !important;
  -webkit-box-pack: end !important;
  justify-content: flex-end !important;
}

.u-justify-content-center {
  -ms-flex-pack: center !important;
  -webkit-box-pack: center !important;
  justify-content: center !important;
}

.u-justify-content-between {
  -ms-flex-pack: justify !important;
  -webkit-box-pack: justify !important;
  justify-content: space-between !important;
}

.u-justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.u-align-items-start {
  -ms-flex-align: start !important;
  -webkit-box-align: start !important;
  align-items: flex-start !important;
}

.u-align-items-end {
  -ms-flex-align: end !important;
  -webkit-box-align: end !important;
  align-items: flex-end !important;
}

.u-align-items-center {
  -ms-flex-align: center !important;
  -webkit-box-align: center !important;
  align-items: center !important;
}

.u-align-items-baseline {
  -ms-flex-align: baseline !important;
  -webkit-box-align: baseline !important;
  align-items: baseline !important;
}

.u-align-items-stretch {
  -ms-flex-align: stretch !important;
  -webkit-box-align: stretch !important;
  align-items: stretch !important;
}

.u-align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.u-align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.u-align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.u-align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.u-align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.u-align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.u-align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.u-align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.u-align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.u-align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.u-align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.u-align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

@media screen and (min-width: 576px) {
  .u-flex-sm-row {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    flex-direction: row !important;
  }

  .u-flex-sm-column {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    flex-direction: column !important;
  }

  .u-flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    flex-direction: row-reverse !important;
  }

  .u-flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    flex-direction: column-reverse !important;
  }

  .u-flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .u-flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .u-flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .u-flex-sm-fill {
    -ms-flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
    flex: 1 1 auto !important;
  }

  .u-flex-sm-grow-0 {
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important;
  }

  .u-flex-sm-grow-1 {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
    flex-grow: 1 !important;
  }

  .u-flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .u-flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

  .u-justify-content-sm-start {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
    justify-content: flex-start !important;
  }

  .u-justify-content-sm-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
    justify-content: flex-end !important;
  }

  .u-justify-content-sm-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
    justify-content: center !important;
  }

  .u-justify-content-sm-between {
    -ms-flex-pack: justify !important;
    -webkit-box-pack: justify !important;
    justify-content: space-between !important;
  }

  .u-justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .u-align-items-sm-start {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
    align-items: flex-start !important;
  }

  .u-align-items-sm-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
    align-items: flex-end !important;
  }

  .u-align-items-sm-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
    align-items: center !important;
  }

  .u-align-items-sm-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
    align-items: baseline !important;
  }

  .u-align-items-sm-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
    align-items: stretch !important;
  }

  .u-align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .u-align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .u-align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .u-align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .u-align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .u-align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .u-align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .u-align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .u-align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .u-align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .u-align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .u-align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {

  .u-flex-md-row {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    flex-direction: row !important;
  }

  .u-flex-md-column {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    flex-direction: column !important;
  }

  .u-flex-md-row-reverse {
    -ms-flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    flex-direction: row-reverse !important;
  }

  .u-flex-md-column-reverse {
    -ms-flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    flex-direction: column-reverse !important;
  }

  .u-flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .u-flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .u-flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .u-flex-md-fill {
    -ms-flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
    flex: 1 1 auto !important;
  }

  .u-flex-md-grow-0 {
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important;
  }

  .u-flex-md-grow-1 {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
    flex-grow: 1 !important;
  }

  .u-flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .u-flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

  .u-justify-content-md-start {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
    justify-content: flex-start !important;
  }

  .u-justify-content-md-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
    justify-content: flex-end !important;
  }

  .u-justify-content-md-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
    justify-content: center !important;
  }

  .u-justify-content-md-between {
    -ms-flex-pack: justify !important;
    -webkit-box-pack: justify !important;
    justify-content: space-between !important;
  }

  .u-justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .u-align-items-md-start {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
    align-items: flex-start !important;
  }

  .u-align-items-md-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
    align-items: flex-end !important;
  }

  .u-align-items-md-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
    align-items: center !important;
  }

  .u-align-items-md-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
    align-items: baseline !important;
  }

  .u-align-items-md-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
    align-items: stretch !important;
  }

  .u-align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .u-align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .u-align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .u-align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .u-align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .u-align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .u-align-self-md-auto {

    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .u-align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .u-align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .u-align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .u-align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .u-align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media screen and (min-width: 992px) {
  .u-flex-lg-row {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    flex-direction: row !important;
  }

  .u-flex-lg-column {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    flex-direction: column !important;
  }

  .u-flex-lg-row-reverse {
    -ms-flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    flex-direction: row-reverse !important;
  }

  .u-flex-lg-column-reverse {
    -ms-flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    flex-direction: column-reverse !important;
  }

  .u-flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .u-flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .u-flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .u-flex-lg-fill {
    -ms-flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
    flex: 1 1 auto !important;
  }

  .u-flex-lg-grow-0 {
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important;
  }

  .u-flex-lg-grow-1 {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
    flex-grow: 1 !important;
  }

  .u-flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .u-flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

  .u-justify-content-lg-start {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
    justify-content: flex-start !important;
  }

  .u-justify-content-lg-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
    justify-content: flex-end !important;
  }

  .u-justify-content-lg-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
    justify-content: center !important;
  }

  .u-justify-content-lg-between {
    -ms-flex-pack: justify !important;
    -webkit-box-pack: justify !important;
    justify-content: space-between !important;
  }

  .u-justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .u-align-items-lg-start {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
    align-items: flex-start !important;
  }

  .u-align-items-lg-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
    align-items: flex-end !important;
  }

  .u-align-items-lg-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
    align-items: center !important;
  }

  .u-align-items-lg-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
    align-items: baseline !important;
  }

  .u-align-items-lg-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
    align-items: stretch !important;
  }

  .u-align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .u-align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .u-align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .u-align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .u-align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .u-align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .u-align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .u-align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .u-align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .u-align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .u-align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .u-align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media screen and (min-width: 1200px) {
  .u-flex-xl-row {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    flex-direction: row !important;
  }

  .u-flex-xl-column {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    flex-direction: column !important;
  }

  .u-flex-xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    flex-direction: row-reverse !important;
  }

  .u-flex-xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    flex-direction: column-reverse !important;
  }

  .u-flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .u-flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .u-flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .u-flex-xl-fill {
    -ms-flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
    flex: 1 1 auto !important;
  }

  .u-flex-xl-grow-0 {
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
    flex-grow: 0 !important;
  }

  .u-flex-xl-grow-1 {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
    flex-grow: 1 !important;
  }

  .u-flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .u-flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

  .u-justify-content-xl-start {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
    justify-content: flex-start !important;
  }

  .u-justify-content-xl-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
    justify-content: flex-end !important;
  }

  .u-justify-content-xl-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
    justify-content: center !important;
  }

  .u-justify-content-xl-between {
    -ms-flex-pack: justify !important;
    -webkit-box-pack: justify !important;
    justify-content: space-between !important;
  }

  .u-justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .u-align-items-xl-start {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
    align-items: flex-start !important;
  }

  .u-align-items-xl-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
    align-items: flex-end !important;
  }

  .u-align-items-xl-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
    align-items: center !important;
  }

  .u-align-items-xl-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
    align-items: baseline !important;
  }

  .u-align-items-xl-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
    align-items: stretch !important;
  }

  .u-align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .u-align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .u-align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .u-align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .u-align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .u-align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .u-align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .u-align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .u-align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .u-align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .u-align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .u-align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

/* =========================================================
margin - 余白の調整
========================================================= */

.u-m-0 {
  margin: 0rem !important;
}

.u-mt-0,
.u-my-0 {
  margin-top: 0rem !important;
}

.u-mr-0,
.u-mx-0 {
  margin-right: 0rem !important;
}

.u-mb-0,
.u-my-0 {
  margin-bottom: 0rem !important;
}

.u-ml-0,
.u-mx-0 {
  margin-left: 0rem !important;
}

.u-m-1 {
  margin: 0.5rem !important;
}

.u-mt-1,
.u-my-1 {
  margin-top: 0.5rem !important;
}

.u-mr-1,
.u-mx-1 {
  margin-right: 0.5rem !important;
}

.u-mb-1,
.u-my-1 {
  margin-bottom: 0.5rem !important;
}

.u-ml-1,
.u-mx-1 {
  margin-left: 0.5rem !important;
}

.u-m-2 {
  margin: 1rem !important;
}

.u-mt-2,
.u-my-2 {
  margin-top: 1rem !important;
}

.u-mr-2,
.u-mx-2 {
  margin-right: 1rem !important;
}

.u-mb-2,
.u-my-2 {
  margin-bottom: 1rem !important;
}

.u-ml-2,
.u-mx-2 {
  margin-left: 1rem !important;
}

.u-m-3 {
  margin: 1.5rem !important;
}

.u-mt-3,
.u-my-3 {
  margin-top: 1.5rem !important;
}

.u-mr-3,
.u-mx-3 {
  margin-right: 1.5rem !important;
}

.u-mb-3,
.u-my-3 {
  margin-bottom: 1.5rem !important;
}

.u-ml-3,
.u-mx-3 {
  margin-left: 1.5rem !important;
}

.u-m-4 {
  margin: 2rem !important;
}

.u-mt-4,
.u-my-4 {
  margin-top: 2rem !important;
}

.u-mr-4,
.u-mx-4 {
  margin-right: 2rem !important;
}

.u-mb-4,
.u-my-4 {
  margin-bottom: 2rem !important;
}

.u-ml-4,
.u-mx-4 {
  margin-left: 2rem !important;
}

.u-m-5 {
  margin: 2.5rem !important;
}

.u-mt-5,
.u-my-5 {
  margin-top: 2.5rem !important;
}

.u-mr-5,
.u-mx-5 {
  margin-right: 2.5rem !important;
}

.u-mb-5,
.u-my-5 {
  margin-bottom: 2.5rem !important;
}

.u-ml-5,
.u-mx-5 {
  margin-left: 2.5rem !important;
}

.u-m-6 {
  margin: 3rem !important;
}

.u-mt-6,
.u-my-6 {
  margin-top: 3rem !important;
}

.u-mr-6,
.u-mx-6 {
  margin-right: 3rem !important;
}

.u-mb-6,
.u-my-6 {
  margin-bottom: 3rem !important;
}

.u-ml-6,
.u-mx-6 {
  margin-left: 3rem !important;
}

.u-m-7 {
  margin: 3.5rem !important;
}

.u-mt-7,
.u-my-7 {
  margin-top: 3.5rem !important;
}

.u-mr-7,
.u-mx-7 {
  margin-right: 3.5rem !important;
}

.u-mb-7,
.u-my-7 {
  margin-bottom: 3.5rem !important;
}

.u-ml-7,
.u-mx-7 {
  margin-left: 3.5rem !important;
}

.u-m-8 {
  margin: 4rem !important;
}

.u-mt-8,
.u-my-8 {
  margin-top: 4rem !important;
}

.u-mr-8,
.u-mx-8 {
  margin-right: 4rem !important;
}

.u-mb-8,
.u-my-8 {
  margin-bottom: 4rem !important;
}

.u-ml-8,
.u-mx-8 {
  margin-left: 4rem !important;
}

.u-m-9 {
  margin: 4.5rem !important;
}

.u-mt-9,
.u-my-9 {
  margin-top: 4.5rem !important;
}

.u-mr-9,
.u-mx-9 {
  margin-right: 4.5rem !important;
}

.u-mb-9,
.u-my-9 {
  margin-bottom: 4.5rem !important;
}

.u-ml-9,
.u-mx-9 {
  margin-left: 4.5rem !important;
}

.u-m-10 {
  margin: 5rem !important;
}

.u-mt-10,
.u-my-10 {
  margin-top: 5rem !important;
}

.u-mr-10,
.u-mx-10 {
  margin-right: 5rem !important;
}

.u-mb-10,
.u-my-10 {
  margin-bottom: 5rem !important;
}

.u-ml-10,
.u-mx-10 {
  margin-left: 5rem !important;
}

.u-m-11 {
  margin: 5.5rem !important;
}

.u-mt-11,
.u-my-11 {
  margin-top: 5.5rem !important;
}

.u-mr-11,
.u-mx-11 {
  margin-right: 5.5rem !important;
}

.u-mb-11,
.u-my-11 {
  margin-bottom: 5.5rem !important;
}

.u-ml-11,
.u-mx-11 {
  margin-left: 5.5rem !important;
}

.u-m-12 {
  margin: 6rem !important;
}

.u-mt-12,
.u-my-12 {
  margin-top: 6rem !important;
}

.u-mr-12,
.u-mx-12 {
  margin-right: 6rem !important;
}

.u-mb-12,
.u-my-12 {
  margin-bottom: 6rem !important;
}

.u-ml-12,
.u-mx-12 {
  margin-left: 6rem !important;
}

.u-p-0 {
  padding: 0rem !important;
}

.u-pt-0,
.u-py-0 {
  padding-top: 0rem !important;
}

.u-pr-0,
.u-px-0 {
  padding-right: 0rem !important;
}

.u-pb-0,
.u-py-0 {
  padding-bottom: 0rem !important;
}

.u-pl-0,
.u-px-0 {
  padding-left: 0rem !important;
}

.u-p-1 {
  padding: 0.5rem !important;
}

.u-pt-1,
.u-py-1 {
  padding-top: 0.5rem !important;
}

.u-pr-1,
.u-px-1 {
  padding-right: 0.5rem !important;
}

.u-pb-1,
.u-py-1 {
  padding-bottom: 0.5rem !important;
}

.u-pl-1,
.u-px-1 {
  padding-left: 0.5rem !important;
}

.u-p-2 {
  padding: 1rem !important;
}

.u-pt-2,
.u-py-2 {
  padding-top: 1rem !important;
}

.u-pr-2,
.u-px-2 {
  padding-right: 1rem !important;
}

.u-pb-2,
.u-py-2 {
  padding-bottom: 1rem !important;
}

.u-pl-2,
.u-px-2 {
  padding-left: 1rem !important;
}

.u-p-3 {
  padding: 1.5rem !important;
}

.u-pt-3,
.u-py-3 {
  padding-top: 1.5rem !important;
}

.u-pr-3,
.u-px-3 {
  padding-right: 1.5rem !important;
}

.u-pb-3,
.u-py-3 {
  padding-bottom: 1.5rem !important;
}

.u-pl-3,
.u-px-3 {
  padding-left: 1.5rem !important;
}

.u-p-4 {
  padding: 2rem !important;
}

.u-pt-4,
.u-py-4 {
  padding-top: 2rem !important;
}

.u-pr-4,
.u-px-4 {
  padding-right: 2rem !important;
}

.u-pb-4,
.u-py-4 {
  padding-bottom: 2rem !important;
}

.u-pl-4,
.u-px-4 {
  padding-left: 2rem !important;
}

.u-p-5 {
  padding: 2.5rem !important;
}

.u-pt-5,
.u-py-5 {
  padding-top: 2.5rem !important;
}

.u-pr-5,
.u-px-5 {
  padding-right: 2.5rem !important;
}

.u-pb-5,
.u-py-5 {
  padding-bottom: 2.5rem !important;
}

.u-pl-5,
.u-px-5 {
  padding-left: 2.5rem !important;
}

.u-p-6 {
  padding: 3rem !important;
}

.u-pt-6,
.u-py-6 {
  padding-top: 3rem !important;
}

.u-pr-6,
.u-px-6 {
  padding-right: 3rem !important;
}

.u-pb-6,
.u-py-6 {
  padding-bottom: 3rem !important;
}

.u-pl-6,
.u-px-6 {
  padding-left: 3rem !important;
}

.u-p-7 {
  padding: 3.5rem !important;
}

.u-pt-7,
.u-py-7 {
  padding-top: 3.5rem !important;
}

.u-pr-7,
.u-px-7 {
  padding-right: 3.5rem !important;
}

.u-pb-7,
.u-py-7 {
  padding-bottom: 3.5rem !important;
}

.u-pl-7,
.u-px-7 {
  padding-left: 3.5rem !important;
}

.u-p-8 {
  padding: 4rem !important;
}

.u-pt-8,
.u-py-8 {
  padding-top: 4rem !important;
}

.u-pr-8,
.u-px-8 {
  padding-right: 4rem !important;
}

.u-pb-8,
.u-py-8 {
  padding-bottom: 4rem !important;
}

.u-pl-8,
.u-px-8 {
  padding-left: 4rem !important;
}

.u-p-9 {
  padding: 4.5rem !important;
}

.u-pt-9,
.u-py-9 {
  padding-top: 4.5rem !important;
}

.u-pr-9,
.u-px-9 {
  padding-right: 4.5rem !important;
}

.u-pb-9,
.u-py-9 {
  padding-bottom: 4.5rem !important;
}

.u-pl-9,
.u-px-9 {
  padding-left: 4.5rem !important;
}

.u-p-10 {
  padding: 5rem !important;
}

.u-pt-10,
.u-py-10 {
  padding-top: 5rem !important;
}

.u-pr-10,
.u-px-10 {
  padding-right: 5rem !important;
}

.u-pb-10,
.u-py-10 {
  padding-bottom: 5rem !important;
}

.u-pl-10,
.u-px-10 {
  padding-left: 5rem !important;
}

.u-p-11 {
  padding: 5.5rem !important;
}

.u-pt-11,
.u-py-11 {
  padding-top: 5.5rem !important;
}

.u-pr-11,
.u-px-11 {
  padding-right: 5.5rem !important;
}

.u-pb-11,
.u-py-11 {
  padding-bottom: 5.5rem !important;
}

.u-pl-11,
.u-px-11 {
  padding-left: 5.5rem !important;
}

.u-p-12 {
  padding: 6rem !important;
}

.u-pt-12,
.u-py-12 {
  padding-top: 6rem !important;
}

.u-pr-12,
.u-px-12 {
  padding-right: 6rem !important;
}

.u-pb-12,
.u-py-12 {
  padding-bottom: 6rem !important;
}

.u-pl-12,
.u-px-12 {
  padding-left: 6rem !important;
}

.u-m-auto {
  margin: auto !important;
}

.u-mt-auto,
.u-my-auto {
  margin-top: auto !important;
}

.u-mr-auto,
.u-mx-auto {
  margin-right: auto !important;
}

.u-mb-auto,
.u-my-auto {
  margin-bottom: auto !important;
}

.u-ml-auto,
.u-mx-auto {
  margin-left: auto !important;
}

@media screen and (min-width: 576px) {
  .u-m-sm-0 {
    margin: 0rem !important;
  }

  .u-mt-sm-0,
  .u-my-sm-0 {
    margin-top: 0rem !important;
  }

  .u-mr-sm-0,
  .u-mx-sm-0 {
    margin-right: 0rem !important;
  }

  .u-mb-sm-0,
  .u-my-sm-0 {
    margin-bottom: 0rem !important;
  }

  .u-ml-sm-0,
  .u-mx-sm-0 {
    margin-left: 0rem !important;
  }

  .u-m-sm-1 {
    margin: 0.5rem !important;
  }

  .u-mt-sm-1,
  .u-my-sm-1 {
    margin-top: 0.5rem !important;
  }

  .u-mr-sm-1,
  .u-mx-sm-1 {
    margin-right: 0.5rem !important;
  }

  .u-mb-sm-1,
  .u-my-sm-1 {
    margin-bottom: 0.5rem !important;
  }

  .u-ml-sm-1,
  .u-mx-sm-1 {
    margin-left: 0.5rem !important;
  }

  .u-m-sm-2 {
    margin: 1rem !important;
  }

  .u-mt-sm-2,
  .u-my-sm-2 {
    margin-top: 1rem !important;
  }

  .u-mr-sm-2,
  .u-mx-sm-2 {
    margin-right: 1rem !important;
  }

  .u-mb-sm-2,
  .u-my-sm-2 {
    margin-bottom: 1rem !important;
  }

  .u-ml-sm-2,
  .u-mx-sm-2 {
    margin-left: 1rem !important;
  }

  .u-m-sm-3 {
    margin: 1.5rem !important;
  }

  .u-mt-sm-3,
  .u-my-sm-3 {
    margin-top: 1.5rem !important;
  }

  .u-mr-sm-3,
  .u-mx-sm-3 {
    margin-right: 1.5rem !important;
  }

  .u-mb-sm-3,
  .u-my-sm-3 {
    margin-bottom: 1.5rem !important;
  }

  .u-ml-sm-3,
  .u-mx-sm-3 {
    margin-left: 1.5rem !important;
  }

  .u-m-sm-4 {
    margin: 2rem !important;
  }

  .u-mt-sm-4,
  .u-my-sm-4 {
    margin-top: 2rem !important;
  }

  .u-mr-sm-4,
  .u-mx-sm-4 {
    margin-right: 2rem !important;
  }

  .u-mb-sm-4,
  .u-my-sm-4 {
    margin-bottom: 2rem !important;
  }

  .u-ml-sm-4,
  .u-mx-sm-4 {
    margin-left: 2rem !important;
  }

  .u-m-sm-5 {
    margin: 2.5rem !important;
  }

  .u-mt-sm-5,
  .u-my-sm-5 {
    margin-top: 2.5rem !important;
  }

  .u-mr-sm-5,
  .u-mx-sm-5 {
    margin-right: 2.5rem !important;
  }

  .u-mb-sm-5,
  .u-my-sm-5 {
    margin-bottom: 2.5rem !important;
  }

  .u-ml-sm-5,
  .u-mx-sm-5 {
    margin-left: 2.5rem !important;
  }

  .u-m-sm-6 {
    margin: 3rem !important;
  }

  .u-mt-sm-6,
  .u-my-sm-6 {
    margin-top: 3rem !important;
  }

  .u-mr-sm-6,
  .u-mx-sm-6 {
    margin-right: 3rem !important;
  }

  .u-mb-sm-6,
  .u-my-sm-6 {
    margin-bottom: 3rem !important;
  }

  .u-ml-sm-6,
  .u-mx-sm-6 {
    margin-left: 3rem !important;
  }

  .u-m-sm-7 {
    margin: 3.5rem !important;
  }

  .u-mt-sm-7,
  .u-my-sm-7 {
    margin-top: 3.5rem !important;
  }

  .u-mr-sm-7,
  .u-mx-sm-7 {
    margin-right: 3.5rem !important;
  }

  .u-mb-sm-7,
  .u-my-sm-7 {
    margin-bottom: 3.5rem !important;
  }

  .u-ml-sm-7,
  .u-mx-sm-7 {
    margin-left: 3.5rem !important;
  }

  .u-m-sm-8 {
    margin: 4rem !important;
  }

  .u-mt-sm-8,
  .u-my-sm-8 {
    margin-top: 4rem !important;
  }

  .u-mr-sm-8,
  .u-mx-sm-8 {
    margin-right: 4rem !important;
  }

  .u-mb-sm-8,
  .u-my-sm-8 {
    margin-bottom: 4rem !important;
  }

  .u-ml-sm-8,
  .u-mx-sm-8 {
    margin-left: 4rem !important;
  }

  .u-m-sm-9 {
    margin: 4.5rem !important;
  }

  .u-mt-sm-9,
  .u-my-sm-9 {
    margin-top: 4.5rem !important;
  }

  .u-mr-sm-9,
  .u-mx-sm-9 {
    margin-right: 4.5rem !important;
  }

  .u-mb-sm-9,
  .u-my-sm-9 {
    margin-bottom: 4.5rem !important;
  }

  .u-ml-sm-9,
  .u-mx-sm-9 {
    margin-left: 4.5rem !important;
  }

  .u-m-sm-10 {
    margin: 5rem !important;
  }

  .u-mt-sm-10,
  .u-my-sm-10 {
    margin-top: 5rem !important;
  }

  .u-mr-sm-10,
  .u-mx-sm-10 {
    margin-right: 5rem !important;
  }

  .u-mb-sm-10,
  .u-my-sm-10 {
    margin-bottom: 5rem !important;
  }

  .u-ml-sm-10,
  .u-mx-sm-10 {
    margin-left: 5rem !important;
  }

  .u-m-sm-11 {
    margin: 5.5rem !important;
  }

  .u-mt-sm-11,
  .u-my-sm-11 {
    margin-top: 5.5rem !important;
  }

  .u-mr-sm-11,
  .u-mx-sm-11 {
    margin-right: 5.5rem !important;
  }

  .u-mb-sm-11,
  .u-my-sm-11 {
    margin-bottom: 5.5rem !important;
  }

  .u-ml-sm-11,
  .u-mx-sm-11 {
    margin-left: 5.5rem !important;
  }

  .u-m-sm-12 {
    margin: 6rem !important;
  }

  .u-mt-sm-12,
  .u-my-sm-12 {
    margin-top: 6rem !important;
  }

  .u-mr-sm-12,
  .u-mx-sm-12 {
    margin-right: 6rem !important;
  }

  .u-mb-sm-12,
  .u-my-sm-12 {
    margin-bottom: 6rem !important;
  }

  .u-ml-sm-12,
  .u-mx-sm-12 {
    margin-left: 6rem !important;
  }

  .u-p-sm-0 {
    padding: 0rem !important;
  }

  .u-pt-sm-0,
  .u-py-sm-0 {
    padding-top: 0rem !important;
  }

  .u-pr-sm-0,
  .u-px-sm-0 {
    padding-right: 0rem !important;
  }

  .u-pb-sm-0,
  .u-py-sm-0 {
    padding-bottom: 0rem !important;
  }

  .u-pl-sm-0,
  .u-px-sm-0 {
    padding-left: 0rem !important;
  }

  .u-p-sm-1 {
    padding: 0.5rem !important;
  }

  .u-pt-sm-1,
  .u-py-sm-1 {
    padding-top: 0.5rem !important;
  }

  .u-pr-sm-1,
  .u-px-sm-1 {
    padding-right: 0.5rem !important;
  }

  .u-pb-sm-1,
  .u-py-sm-1 {
    padding-bottom: 0.5rem !important;
  }

  .u-pl-sm-1,
  .u-px-sm-1 {
    padding-left: 0.5rem !important;
  }

  .u-p-sm-2 {
    padding: 1rem !important;
  }

  .u-pt-sm-2,
  .u-py-sm-2 {
    padding-top: 1rem !important;
  }

  .u-pr-sm-2,
  .u-px-sm-2 {
    padding-right: 1rem !important;
  }

  .u-pb-sm-2,
  .u-py-sm-2 {
    padding-bottom: 1rem !important;
  }

  .u-pl-sm-2,
  .u-px-sm-2 {
    padding-left: 1rem !important;
  }

  .u-p-sm-3 {
    padding: 1.5rem !important;
  }

  .u-pt-sm-3,
  .u-py-sm-3 {
    padding-top: 1.5rem !important;
  }

  .u-pr-sm-3,
  .u-px-sm-3 {
    padding-right: 1.5rem !important;
  }

  .u-pb-sm-3,
  .u-py-sm-3 {
    padding-bottom: 1.5rem !important;
  }

  .u-pl-sm-3,
  .u-px-sm-3 {
    padding-left: 1.5rem !important;
  }

  .u-p-sm-4 {
    padding: 2rem !important;
  }

  .u-pt-sm-4,
  .u-py-sm-4 {
    padding-top: 2rem !important;
  }

  .u-pr-sm-4,
  .u-px-sm-4 {
    padding-right: 2rem !important;
  }

  .u-pb-sm-4,
  .u-py-sm-4 {
    padding-bottom: 2rem !important;
  }

  .u-pl-sm-4,
  .u-px-sm-4 {
    padding-left: 2rem !important;
  }

  .u-p-sm-5 {
    padding: 2.5rem !important;
  }

  .u-pt-sm-5,
  .u-py-sm-5 {
    padding-top: 2.5rem !important;
  }

  .u-pr-sm-5,
  .u-px-sm-5 {
    padding-right: 2.5rem !important;
  }

  .u-pb-sm-5,
  .u-py-sm-5 {
    padding-bottom: 2.5rem !important;
  }

  .u-pl-sm-5,
  .u-px-sm-5 {
    padding-left: 2.5rem !important;
  }

  .u-p-sm-6 {
    padding: 3rem !important;
  }

  .u-pt-sm-6,
  .u-py-sm-6 {
    padding-top: 3rem !important;
  }

  .u-pr-sm-6,
  .u-px-sm-6 {
    padding-right: 3rem !important;
  }

  .u-pb-sm-6,
  .u-py-sm-6 {
    padding-bottom: 3rem !important;
  }

  .u-pl-sm-6,
  .u-px-sm-6 {
    padding-left: 3rem !important;
  }

  .u-p-sm-7 {
    padding: 3.5rem !important;
  }

  .u-pt-sm-7,
  .u-py-sm-7 {
    padding-top: 3.5rem !important;
  }

  .u-pr-sm-7,
  .u-px-sm-7 {
    padding-right: 3.5rem !important;
  }

  .u-pb-sm-7,
  .u-py-sm-7 {
    padding-bottom: 3.5rem !important;
  }

  .u-pl-sm-7,
  .u-px-sm-7 {
    padding-left: 3.5rem !important;
  }

  .u-p-sm-8 {
    padding: 4rem !important;
  }

  .u-pt-sm-8,
  .u-py-sm-8 {
    padding-top: 4rem !important;
  }

  .u-pr-sm-8,
  .u-px-sm-8 {
    padding-right: 4rem !important;
  }

  .u-pb-sm-8,
  .u-py-sm-8 {
    padding-bottom: 4rem !important;
  }

  .u-pl-sm-8,
  .u-px-sm-8 {
    padding-left: 4rem !important;
  }

  .u-p-sm-9 {
    padding: 4.5rem !important;
  }

  .u-pt-sm-9,
  .u-py-sm-9 {
    padding-top: 4.5rem !important;
  }

  .u-pr-sm-9,
  .u-px-sm-9 {
    padding-right: 4.5rem !important;
  }

  .u-pb-sm-9,
  .u-py-sm-9 {
    padding-bottom: 4.5rem !important;
  }

  .u-pl-sm-9,
  .u-px-sm-9 {
    padding-left: 4.5rem !important;
  }

  .u-p-sm-10 {
    padding: 5rem !important;
  }

  .u-pt-sm-10,
  .u-py-sm-10 {
    padding-top: 5rem !important;
  }

  .u-pr-sm-10,
  .u-px-sm-10 {
    padding-right: 5rem !important;
  }

  .u-pb-sm-10,
  .u-py-sm-10 {
    padding-bottom: 5rem !important;
  }

  .u-pl-sm-10,
  .u-px-sm-10 {
    padding-left: 5rem !important;
  }

  .u-p-sm-11 {
    padding: 5.5rem !important;
  }

  .u-pt-sm-11,
  .u-py-sm-11 {
    padding-top: 5.5rem !important;
  }

  .u-pr-sm-11,
  .u-px-sm-11 {
    padding-right: 5.5rem !important;
  }

  .u-pb-sm-11,
  .u-py-sm-11 {
    padding-bottom: 5.5rem !important;
  }

  .u-pl-sm-11,
  .u-px-sm-11 {
    padding-left: 5.5rem !important;
  }

  .u-p-sm-12 {
    padding: 6rem !important;
  }

  .u-pt-sm-12,
  .u-py-sm-12 {
    padding-top: 6rem !important;
  }

  .u-pr-sm-12,
  .u-px-sm-12 {
    padding-right: 6rem !important;
  }

  .u-pb-sm-12,
  .u-py-sm-12 {
    padding-bottom: 6rem !important;
  }

  .u-pl-sm-12,
  .u-px-sm-12 {
    padding-left: 6rem !important;
  }

  .u-m-sm-auto {
    margin: auto !important;
  }

  .u-mt-sm-auto,
  .u-my-sm-auto {
    margin-top: auto !important;
  }

  .u-mr-sm-auto,
  .u-mx-sm-auto {
    margin-right: auto !important;
  }

  .u-mb-sm-auto,
  .u-my-sm-auto {
    margin-bottom: auto !important;
  }

  .u-ml-sm-auto,
  .u-mx-sm-auto {
    margin-left: auto !important;
  }
}

@media screen and (min-width: 768px) {
  .u-m-md-0 {
    margin: 0rem !important;
  }

  .u-mt-md-0,
  .u-my-md-0 {
    margin-top: 0rem !important;
  }

  .u-mr-md-0,
  .u-mx-md-0 {
    margin-right: 0rem !important;
  }

  .u-mb-md-0,
  .u-my-md-0 {
    margin-bottom: 0rem !important;
  }

  .u-ml-md-0,
  .u-mx-md-0 {
    margin-left: 0rem !important;
  }

  .u-m-md-1 {
    margin: 0.5rem !important;
  }

  .u-mt-md-1,
  .u-my-md-1 {
    margin-top: 0.5rem !important;
  }

  .u-mr-md-1,
  .u-mx-md-1 {
    margin-right: 0.5rem !important;
  }

  .u-mb-md-1,
  .u-my-md-1 {
    margin-bottom: 0.5rem !important;
  }

  .u-ml-md-1,
  .u-mx-md-1 {
    margin-left: 0.5rem !important;
  }

  .u-m-md-2 {
    margin: 1rem !important;
  }

  .u-mt-md-2,
  .u-my-md-2 {
    margin-top: 1rem !important;
  }

  .u-mr-md-2,
  .u-mx-md-2 {
    margin-right: 1rem !important;
  }

  .u-mb-md-2,
  .u-my-md-2 {
    margin-bottom: 1rem !important;
  }

  .u-ml-md-2,
  .u-mx-md-2 {
    margin-left: 1rem !important;
  }

  .u-m-md-3 {
    margin: 1.5rem !important;
  }

  .u-mt-md-3,
  .u-my-md-3 {
    margin-top: 1.5rem !important;
  }

  .u-mr-md-3,
  .u-mx-md-3 {
    margin-right: 1.5rem !important;
  }

  .u-mb-md-3,
  .u-my-md-3 {
    margin-bottom: 1.5rem !important;
  }

  .u-ml-md-3,
  .u-mx-md-3 {
    margin-left: 1.5rem !important;
  }

  .u-m-md-4 {
    margin: 2rem !important;
  }

  .u-mt-md-4,
  .u-my-md-4 {
    margin-top: 2rem !important;
  }

  .u-mr-md-4,
  .u-mx-md-4 {
    margin-right: 2rem !important;
  }

  .u-mb-md-4,
  .u-my-md-4 {
    margin-bottom: 2rem !important;
  }

  .u-ml-md-4,
  .u-mx-md-4 {
    margin-left: 2rem !important;
  }

  .u-m-md-5 {
    margin: 2.5rem !important;
  }

  .u-mt-md-5,
  .u-my-md-5 {
    margin-top: 2.5rem !important;
  }

  .u-mr-md-5,
  .u-mx-md-5 {
    margin-right: 2.5rem !important;
  }

  .u-mb-md-5,
  .u-my-md-5 {
    margin-bottom: 2.5rem !important;
  }

  .u-ml-md-5,
  .u-mx-md-5 {
    margin-left: 2.5rem !important;
  }

  .u-m-md-6 {
    margin: 3rem !important;
  }

  .u-mt-md-6,
  .u-my-md-6 {
    margin-top: 3rem !important;
  }

  .u-mr-md-6,
  .u-mx-md-6 {
    margin-right: 3rem !important;
  }

  .u-mb-md-6,
  .u-my-md-6 {
    margin-bottom: 3rem !important;
  }

  .u-ml-md-6,
  .u-mx-md-6 {
    margin-left: 3rem !important;
  }

  .u-m-md-7 {
    margin: 3.5rem !important;
  }

  .u-mt-md-7,
  .u-my-md-7 {
    margin-top: 3.5rem !important;
  }

  .u-mr-md-7,
  .u-mx-md-7 {
    margin-right: 3.5rem !important;
  }

  .u-mb-md-7,
  .u-my-md-7 {
    margin-bottom: 3.5rem !important;
  }

  .u-ml-md-7,
  .u-mx-md-7 {
    margin-left: 3.5rem !important;
  }

  .u-m-md-8 {
    margin: 4rem !important;
  }

  .u-mt-md-8,
  .u-my-md-8 {
    margin-top: 4rem !important;
  }

  .u-mr-md-8,
  .u-mx-md-8 {
    margin-right: 4rem !important;
  }

  .u-mb-md-8,
  .u-my-md-8 {
    margin-bottom: 4rem !important;
  }

  .u-ml-md-8,
  .u-mx-md-8 {
    margin-left: 4rem !important;
  }

  .u-m-md-9 {
    margin: 4.5rem !important;
  }

  .u-mt-md-9,
  .u-my-md-9 {
    margin-top: 4.5rem !important;
  }

  .u-mr-md-9,
  .u-mx-md-9 {
    margin-right: 4.5rem !important;
  }

  .u-mb-md-9,
  .u-my-md-9 {
    margin-bottom: 4.5rem !important;
  }

  .u-ml-md-9,
  .u-mx-md-9 {
    margin-left: 4.5rem !important;
  }

  .u-m-md-10 {
    margin: 5rem !important;
  }

  .u-mt-md-10,
  .u-my-md-10 {
    margin-top: 5rem !important;
  }

  .u-mr-md-10,
  .u-mx-md-10 {
    margin-right: 5rem !important;
  }

  .u-mb-md-10,
  .u-my-md-10 {
    margin-bottom: 5rem !important;
  }

  .u-ml-md-10,
  .u-mx-md-10 {
    margin-left: 5rem !important;
  }

  .u-m-md-11 {
    margin: 5.5rem !important;
  }

  .u-mt-md-11,
  .u-my-md-11 {
    margin-top: 5.5rem !important;
  }

  .u-mr-md-11,
  .u-mx-md-11 {
    margin-right: 5.5rem !important;
  }

  .u-mb-md-11,
  .u-my-md-11 {
    margin-bottom: 5.5rem !important;
  }

  .u-ml-md-11,
  .u-mx-md-11 {
    margin-left: 5.5rem !important;
  }

  .u-m-md-12 {
    margin: 6rem !important;
  }

  .u-mt-md-12,
  .u-my-md-12 {
    margin-top: 6rem !important;
  }

  .u-mr-md-12,
  .u-mx-md-12 {
    margin-right: 6rem !important;
  }

  .u-mb-md-12,
  .u-my-md-12 {
    margin-bottom: 6rem !important;
  }

  .u-ml-md-12,
  .u-mx-md-12 {
    margin-left: 6rem !important;
  }

  .u-p-md-0 {
    padding: 0rem !important;
  }

  .u-pt-md-0,
  .u-py-md-0 {
    padding-top: 0rem !important;
  }

  .u-pr-md-0,
  .u-px-md-0 {
    padding-right: 0rem !important;
  }

  .u-pb-md-0,
  .u-py-md-0 {
    padding-bottom: 0rem !important;
  }

  .u-pl-md-0,
  .u-px-md-0 {
    padding-left: 0rem !important;
  }

  .u-p-md-1 {
    padding: 0.5rem !important;
  }

  .u-pt-md-1,
  .u-py-md-1 {
    padding-top: 0.5rem !important;
  }

  .u-pr-md-1,
  .u-px-md-1 {
    padding-right: 0.5rem !important;
  }

  .u-pb-md-1,
  .u-py-md-1 {
    padding-bottom: 0.5rem !important;
  }

  .u-pl-md-1,
  .u-px-md-1 {
    padding-left: 0.5rem !important;
  }

  .u-p-md-2 {
    padding: 1rem !important;
  }

  .u-pt-md-2,
  .u-py-md-2 {
    padding-top: 1rem !important;
  }

  .u-pr-md-2,
  .u-px-md-2 {
    padding-right: 1rem !important;
  }

  .u-pb-md-2,
  .u-py-md-2 {
    padding-bottom: 1rem !important;
  }

  .u-pl-md-2,
  .u-px-md-2 {
    padding-left: 1rem !important;
  }

  .u-p-md-3 {
    padding: 1.5rem !important;
  }

  .u-pt-md-3,
  .u-py-md-3 {
    padding-top: 1.5rem !important;
  }

  .u-pr-md-3,
  .u-px-md-3 {
    padding-right: 1.5rem !important;
  }

  .u-pb-md-3,
  .u-py-md-3 {
    padding-bottom: 1.5rem !important;
  }

  .u-pl-md-3,
  .u-px-md-3 {
    padding-left: 1.5rem !important;
  }

  .u-p-md-4 {
    padding: 2rem !important;
  }

  .u-pt-md-4,
  .u-py-md-4 {
    padding-top: 2rem !important;
  }

  .u-pr-md-4,
  .u-px-md-4 {
    padding-right: 2rem !important;
  }

  .u-pb-md-4,
  .u-py-md-4 {
    padding-bottom: 2rem !important;
  }

  .u-pl-md-4,
  .u-px-md-4 {
    padding-left: 2rem !important;
  }

  .u-p-md-5 {
    padding: 2.5rem !important;
  }

  .u-pt-md-5,
  .u-py-md-5 {
    padding-top: 2.5rem !important;
  }

  .u-pr-md-5,
  .u-px-md-5 {
    padding-right: 2.5rem !important;
  }

  .u-pb-md-5,
  .u-py-md-5 {
    padding-bottom: 2.5rem !important;
  }

  .u-pl-md-5,
  .u-px-md-5 {
    padding-left: 2.5rem !important;
  }

  .u-p-md-6 {
    padding: 3rem !important;
  }

  .u-pt-md-6,
  .u-py-md-6 {
    padding-top: 3rem !important;
  }

  .u-pr-md-6,
  .u-px-md-6 {
    padding-right: 3rem !important;
  }

  .u-pb-md-6,
  .u-py-md-6 {
    padding-bottom: 3rem !important;
  }

  .u-pl-md-6,
  .u-px-md-6 {
    padding-left: 3rem !important;
  }

  .u-p-md-7 {
    padding: 3.5rem !important;
  }

  .u-pt-md-7,
  .u-py-md-7 {
    padding-top: 3.5rem !important;
  }

  .u-pr-md-7,
  .u-px-md-7 {
    padding-right: 3.5rem !important;
  }

  .u-pb-md-7,
  .u-py-md-7 {
    padding-bottom: 3.5rem !important;
  }

  .u-pl-md-7,
  .u-px-md-7 {
    padding-left: 3.5rem !important;
  }

  .u-p-md-8 {
    padding: 4rem !important;
  }

  .u-pt-md-8,
  .u-py-md-8 {
    padding-top: 4rem !important;
  }

  .u-pr-md-8,
  .u-px-md-8 {
    padding-right: 4rem !important;
  }

  .u-pb-md-8,
  .u-py-md-8 {
    padding-bottom: 4rem !important;
  }

  .u-pl-md-8,
  .u-px-md-8 {
    padding-left: 4rem !important;
  }

  .u-p-md-9 {
    padding: 4.5rem !important;
  }

  .u-pt-md-9,
  .u-py-md-9 {
    padding-top: 4.5rem !important;
  }

  .u-pr-md-9,
  .u-px-md-9 {
    padding-right: 4.5rem !important;
  }

  .u-pb-md-9,
  .u-py-md-9 {
    padding-bottom: 4.5rem !important;
  }

  .u-pl-md-9,
  .u-px-md-9 {
    padding-left: 4.5rem !important;
  }

  .u-p-md-10 {
    padding: 5rem !important;
  }

  .u-pt-md-10,
  .u-py-md-10 {
    padding-top: 5rem !important;
  }

  .u-pr-md-10,
  .u-px-md-10 {
    padding-right: 5rem !important;
  }

  .u-pb-md-10,
  .u-py-md-10 {
    padding-bottom: 5rem !important;
  }

  .u-pl-md-10,
  .u-px-md-10 {
    padding-left: 5rem !important;
  }

  .u-p-md-11 {
    padding: 5.5rem !important;
  }

  .u-pt-md-11,
  .u-py-md-11 {
    padding-top: 5.5rem !important;
  }

  .u-pr-md-11,
  .u-px-md-11 {
    padding-right: 5.5rem !important;
  }

  .u-pb-md-11,
  .u-py-md-11 {
    padding-bottom: 5.5rem !important;
  }

  .u-pl-md-11,
  .u-px-md-11 {
    padding-left: 5.5rem !important;
  }

  .u-p-md-12 {
    padding: 6rem !important;
  }

  .u-pt-md-12,
  .u-py-md-12 {
    padding-top: 6rem !important;
  }

  .u-pr-md-12,
  .u-px-md-12 {
    padding-right: 6rem !important;
  }

  .u-pb-md-12,
  .u-py-md-12 {
    padding-bottom: 6rem !important;
  }

  .u-pl-md-12,
  .u-px-md-12 {
    padding-left: 6rem !important;
  }

  .u-m-md-auto {
    margin: auto !important;
  }

  .u-mt-md-auto,
  .u-my-md-auto {
    margin-top: auto !important;
  }

  .u-mr-md-auto,
  .u-mx-md-auto {
    margin-right: auto !important;
  }

  .u-mb-md-auto,
  .u-my-md-auto {
    margin-bottom: auto !important;
  }

  .u-ml-md-auto,
  .u-mx-md-auto {
    margin-left: auto !important;
  }
}

@media screen and (min-width: 992px) {
  .u-m-lg-0 {
    margin: 0rem !important;
  }

  .u-mt-lg-0,
  .u-my-lg-0 {
    margin-top: 0rem !important;
  }

  .u-mr-lg-0,
  .u-mx-lg-0 {
    margin-right: 0rem !important;
  }

  .u-mb-lg-0,
  .u-my-lg-0 {
    margin-bottom: 0rem !important;
  }

  .u-ml-lg-0,
  .u-mx-lg-0 {
    margin-left: 0rem !important;
  }

  .u-m-lg-1 {
    margin: 0.5rem !important;
  }

  .u-mt-lg-1,
  .u-my-lg-1 {
    margin-top: 0.5rem !important;
  }

  .u-mr-lg-1,
  .u-mx-lg-1 {
    margin-right: 0.5rem !important;
  }

  .u-mb-lg-1,
  .u-my-lg-1 {
    margin-bottom: 0.5rem !important;
  }

  .u-ml-lg-1,
  .u-mx-lg-1 {
    margin-left: 0.5rem !important;
  }

  .u-m-lg-2 {
    margin: 1rem !important;
  }

  .u-mt-lg-2,
  .u-my-lg-2 {
    margin-top: 1rem !important;
  }

  .u-mr-lg-2,
  .u-mx-lg-2 {
    margin-right: 1rem !important;
  }

  .u-mb-lg-2,
  .u-my-lg-2 {
    margin-bottom: 1rem !important;
  }

  .u-ml-lg-2,
  .u-mx-lg-2 {
    margin-left: 1rem !important;
  }

  .u-m-lg-3 {
    margin: 1.5rem !important;
  }

  .u-mt-lg-3,
  .u-my-lg-3 {
    margin-top: 1.5rem !important;
  }

  .u-mr-lg-3,
  .u-mx-lg-3 {
    margin-right: 1.5rem !important;
  }

  .u-mb-lg-3,
  .u-my-lg-3 {
    margin-bottom: 1.5rem !important;
  }

  .u-ml-lg-3,
  .u-mx-lg-3 {
    margin-left: 1.5rem !important;
  }

  .u-m-lg-4 {
    margin: 2rem !important;
  }

  .u-mt-lg-4,
  .u-my-lg-4 {
    margin-top: 2rem !important;
  }

  .u-mr-lg-4,
  .u-mx-lg-4 {
    margin-right: 2rem !important;
  }

  .u-mb-lg-4,
  .u-my-lg-4 {
    margin-bottom: 2rem !important;
  }

  .u-ml-lg-4,
  .u-mx-lg-4 {
    margin-left: 2rem !important;
  }

  .u-m-lg-5 {
    margin: 2.5rem !important;
  }

  .u-mt-lg-5,
  .u-my-lg-5 {
    margin-top: 2.5rem !important;
  }

  .u-mr-lg-5,
  .u-mx-lg-5 {
    margin-right: 2.5rem !important;
  }

  .u-mb-lg-5,
  .u-my-lg-5 {
    margin-bottom: 2.5rem !important;
  }

  .u-ml-lg-5,
  .u-mx-lg-5 {
    margin-left: 2.5rem !important;
  }

  .u-m-lg-6 {
    margin: 3rem !important;
  }

  .u-mt-lg-6,
  .u-my-lg-6 {
    margin-top: 3rem !important;
  }

  .u-mr-lg-6,
  .u-mx-lg-6 {
    margin-right: 3rem !important;
  }

  .u-mb-lg-6,
  .u-my-lg-6 {
    margin-bottom: 3rem !important;
  }

  .u-ml-lg-6,
  .u-mx-lg-6 {
    margin-left: 3rem !important;
  }

  .u-m-lg-7 {
    margin: 3.5rem !important;
  }

  .u-mt-lg-7,
  .u-my-lg-7 {
    margin-top: 3.5rem !important;
  }

  .u-mr-lg-7,
  .u-mx-lg-7 {
    margin-right: 3.5rem !important;
  }

  .u-mb-lg-7,
  .u-my-lg-7 {
    margin-bottom: 3.5rem !important;
  }

  .u-ml-lg-7,
  .u-mx-lg-7 {
    margin-left: 3.5rem !important;
  }

  .u-m-lg-8 {
    margin: 4rem !important;
  }

  .u-mt-lg-8,
  .u-my-lg-8 {
    margin-top: 4rem !important;
  }

  .u-mr-lg-8,
  .u-mx-lg-8 {
    margin-right: 4rem !important;
  }

  .u-mb-lg-8,
  .u-my-lg-8 {
    margin-bottom: 4rem !important;
  }

  .u-ml-lg-8,
  .u-mx-lg-8 {
    margin-left: 4rem !important;
  }

  .u-m-lg-9 {
    margin: 4.5rem !important;
  }

  .u-mt-lg-9,
  .u-my-lg-9 {
    margin-top: 4.5rem !important;
  }

  .u-mr-lg-9,
  .u-mx-lg-9 {
    margin-right: 4.5rem !important;
  }

  .u-mb-lg-9,
  .u-my-lg-9 {
    margin-bottom: 4.5rem !important;
  }

  .u-ml-lg-9,
  .u-mx-lg-9 {
    margin-left: 4.5rem !important;
  }

  .u-m-lg-10 {
    margin: 5rem !important;
  }

  .u-mt-lg-10,
  .u-my-lg-10 {
    margin-top: 5rem !important;
  }

  .u-mr-lg-10,
  .u-mx-lg-10 {
    margin-right: 5rem !important;
  }

  .u-mb-lg-10,
  .u-my-lg-10 {
    margin-bottom: 5rem !important;
  }

  .u-ml-lg-10,
  .u-mx-lg-10 {
    margin-left: 5rem !important;
  }

  .u-m-lg-11 {
    margin: 5.5rem !important;
  }

  .u-mt-lg-11,
  .u-my-lg-11 {
    margin-top: 5.5rem !important;
  }

  .u-mr-lg-11,
  .u-mx-lg-11 {
    margin-right: 5.5rem !important;
  }

  .u-mb-lg-11,
  .u-my-lg-11 {
    margin-bottom: 5.5rem !important;
  }

  .u-ml-lg-11,
  .u-mx-lg-11 {
    margin-left: 5.5rem !important;
  }

  .u-m-lg-12 {
    margin: 6rem !important;
  }

  .u-mt-lg-12,
  .u-my-lg-12 {
    margin-top: 6rem !important;
  }

  .u-mr-lg-12,
  .u-mx-lg-12 {
    margin-right: 6rem !important;
  }

  .u-mb-lg-12,
  .u-my-lg-12 {
    margin-bottom: 6rem !important;
  }

  .u-ml-lg-12,
  .u-mx-lg-12 {
    margin-left: 6rem !important;
  }

  .u-p-lg-0 {
    padding: 0rem !important;
  }

  .u-pt-lg-0,
  .u-py-lg-0 {
    padding-top: 0rem !important;
  }

  .u-pr-lg-0,
  .u-px-lg-0 {
    padding-right: 0rem !important;
  }

  .u-pb-lg-0,
  .u-py-lg-0 {
    padding-bottom: 0rem !important;
  }

  .u-pl-lg-0,
  .u-px-lg-0 {
    padding-left: 0rem !important;
  }

  .u-p-lg-1 {
    padding: 0.5rem !important;
  }

  .u-pt-lg-1,
  .u-py-lg-1 {
    padding-top: 0.5rem !important;
  }

  .u-pr-lg-1,
  .u-px-lg-1 {
    padding-right: 0.5rem !important;
  }

  .u-pb-lg-1,
  .u-py-lg-1 {
    padding-bottom: 0.5rem !important;
  }

  .u-pl-lg-1,
  .u-px-lg-1 {
    padding-left: 0.5rem !important;
  }

  .u-p-lg-2 {
    padding: 1rem !important;
  }

  .u-pt-lg-2,
  .u-py-lg-2 {
    padding-top: 1rem !important;
  }

  .u-pr-lg-2,
  .u-px-lg-2 {
    padding-right: 1rem !important;
  }

  .u-pb-lg-2,
  .u-py-lg-2 {
    padding-bottom: 1rem !important;
  }

  .u-pl-lg-2,
  .u-px-lg-2 {
    padding-left: 1rem !important;
  }

  .u-p-lg-3 {
    padding: 1.5rem !important;
  }

  .u-pt-lg-3,
  .u-py-lg-3 {
    padding-top: 1.5rem !important;
  }

  .u-pr-lg-3,
  .u-px-lg-3 {
    padding-right: 1.5rem !important;
  }

  .u-pb-lg-3,
  .u-py-lg-3 {
    padding-bottom: 1.5rem !important;
  }

  .u-pl-lg-3,
  .u-px-lg-3 {
    padding-left: 1.5rem !important;
  }

  .u-p-lg-4 {
    padding: 2rem !important;
  }

  .u-pt-lg-4,
  .u-py-lg-4 {
    padding-top: 2rem !important;
  }

  .u-pr-lg-4,
  .u-px-lg-4 {
    padding-right: 2rem !important;
  }

  .u-pb-lg-4,
  .u-py-lg-4 {
    padding-bottom: 2rem !important;
  }

  .u-pl-lg-4,
  .u-px-lg-4 {
    padding-left: 2rem !important;
  }

  .u-p-lg-5 {
    padding: 2.5rem !important;
  }

  .u-pt-lg-5,
  .u-py-lg-5 {
    padding-top: 2.5rem !important;
  }

  .u-pr-lg-5,
  .u-px-lg-5 {
    padding-right: 2.5rem !important;
  }

  .u-pb-lg-5,
  .u-py-lg-5 {
    padding-bottom: 2.5rem !important;
  }

  .u-pl-lg-5,
  .u-px-lg-5 {
    padding-left: 2.5rem !important;
  }

  .u-p-lg-6 {
    padding: 3rem !important;
  }

  .u-pt-lg-6,
  .u-py-lg-6 {
    padding-top: 3rem !important;
  }

  .u-pr-lg-6,
  .u-px-lg-6 {
    padding-right: 3rem !important;
  }

  .u-pb-lg-6,
  .u-py-lg-6 {
    padding-bottom: 3rem !important;
  }

  .u-pl-lg-6,
  .u-px-lg-6 {
    padding-left: 3rem !important;
  }

  .u-p-lg-7 {
    padding: 3.5rem !important;
  }

  .u-pt-lg-7,
  .u-py-lg-7 {
    padding-top: 3.5rem !important;
  }

  .u-pr-lg-7,
  .u-px-lg-7 {
    padding-right: 3.5rem !important;
  }

  .u-pb-lg-7,
  .u-py-lg-7 {
    padding-bottom: 3.5rem !important;
  }

  .u-pl-lg-7,
  .u-px-lg-7 {
    padding-left: 3.5rem !important;
  }

  .u-p-lg-8 {
    padding: 4rem !important;
  }

  .u-pt-lg-8,
  .u-py-lg-8 {
    padding-top: 4rem !important;
  }

  .u-pr-lg-8,
  .u-px-lg-8 {
    padding-right: 4rem !important;
  }

  .u-pb-lg-8,
  .u-py-lg-8 {
    padding-bottom: 4rem !important;
  }

  .u-pl-lg-8,
  .u-px-lg-8 {
    padding-left: 4rem !important;
  }

  .u-p-lg-9 {
    padding: 4.5rem !important;
  }

  .u-pt-lg-9,
  .u-py-lg-9 {
    padding-top: 4.5rem !important;
  }

  .u-pr-lg-9,
  .u-px-lg-9 {
    padding-right: 4.5rem !important;
  }

  .u-pb-lg-9,
  .u-py-lg-9 {
    padding-bottom: 4.5rem !important;
  }

  .u-pl-lg-9,
  .u-px-lg-9 {
    padding-left: 4.5rem !important;
  }

  .u-p-lg-10 {
    padding: 5rem !important;
  }

  .u-pt-lg-10,
  .u-py-lg-10 {
    padding-top: 5rem !important;
  }

  .u-pr-lg-10,
  .u-px-lg-10 {
    padding-right: 5rem !important;
  }

  .u-pb-lg-10,
  .u-py-lg-10 {
    padding-bottom: 5rem !important;
  }

  .u-pl-lg-10,
  .u-px-lg-10 {
    padding-left: 5rem !important;
  }

  .u-p-lg-11 {
    padding: 5.5rem !important;
  }

  .u-pt-lg-11,
  .u-py-lg-11 {
    padding-top: 5.5rem !important;
  }

  .u-pr-lg-11,
  .u-px-lg-11 {
    padding-right: 5.5rem !important;
  }

  .u-pb-lg-11,
  .u-py-lg-11 {
    padding-bottom: 5.5rem !important;
  }

  .u-pl-lg-11,
  .u-px-lg-11 {
    padding-left: 5.5rem !important;
  }

  .u-p-lg-12 {
    padding: 6rem !important;
  }

  .u-pt-lg-12,
  .u-py-lg-12 {
    padding-top: 6rem !important;
  }

  .u-pr-lg-12,
  .u-px-lg-12 {
    padding-right: 6rem !important;
  }

  .u-pb-lg-12,
  .u-py-lg-12 {
    padding-bottom: 6rem !important;
  }

  .u-pl-lg-12,
  .u-px-lg-12 {
    padding-left: 6rem !important;
  }

  .u-m-lg-auto {
    margin: auto !important;
  }

  .u-mt-lg-auto,
  .u-my-lg-auto {
    margin-top: auto !important;
  }

  .u-mr-lg-auto,
  .u-mx-lg-auto {
    margin-right: auto !important;
  }

  .u-mb-lg-auto,
  .u-my-lg-auto {
    margin-bottom: auto !important;
  }

  .u-ml-lg-auto,
  .u-mx-lg-auto {
    margin-left: auto !important;
  }
}

@media screen and (min-width: 1200px) {
  .u-m-xl-0 {
    margin: 0rem !important;
  }

  .u-mt-xl-0,
  .u-my-xl-0 {
    margin-top: 0rem !important;
  }

  .u-mr-xl-0,
  .u-mx-xl-0 {
    margin-right: 0rem !important;
  }

  .u-mb-xl-0,
  .u-my-xl-0 {
    margin-bottom: 0rem !important;
  }

  .u-ml-xl-0,
  .u-mx-xl-0 {
    margin-left: 0rem !important;
  }

  .u-m-xl-1 {
    margin: 0.5rem !important;
  }

  .u-mt-xl-1,
  .u-my-xl-1 {
    margin-top: 0.5rem !important;
  }

  .u-mr-xl-1,
  .u-mx-xl-1 {
    margin-right: 0.5rem !important;
  }

  .u-mb-xl-1,
  .u-my-xl-1 {
    margin-bottom: 0.5rem !important;
  }

  .u-ml-xl-1,
  .u-mx-xl-1 {
    margin-left: 0.5rem !important;
  }

  .u-m-xl-2 {
    margin: 1rem !important;
  }

  .u-mt-xl-2,
  .u-my-xl-2 {
    margin-top: 1rem !important;
  }

  .u-mr-xl-2,
  .u-mx-xl-2 {
    margin-right: 1rem !important;
  }

  .u-mb-xl-2,
  .u-my-xl-2 {
    margin-bottom: 1rem !important;
  }

  .u-ml-xl-2,
  .u-mx-xl-2 {
    margin-left: 1rem !important;
  }

  .u-m-xl-3 {
    margin: 1.5rem !important;
  }

  .u-mt-xl-3,
  .u-my-xl-3 {
    margin-top: 1.5rem !important;
  }

  .u-mr-xl-3,
  .u-mx-xl-3 {
    margin-right: 1.5rem !important;
  }

  .u-mb-xl-3,
  .u-my-xl-3 {
    margin-bottom: 1.5rem !important;
  }

  .u-ml-xl-3,
  .u-mx-xl-3 {
    margin-left: 1.5rem !important;
  }

  .u-m-xl-4 {
    margin: 2rem !important;
  }

  .u-mt-xl-4,
  .u-my-xl-4 {
    margin-top: 2rem !important;
  }

  .u-mr-xl-4,
  .u-mx-xl-4 {
    margin-right: 2rem !important;
  }

  .u-mb-xl-4,
  .u-my-xl-4 {
    margin-bottom: 2rem !important;
  }

  .u-ml-xl-4,
  .u-mx-xl-4 {
    margin-left: 2rem !important;
  }

  .u-m-xl-5 {
    margin: 2.5rem !important;
  }

  .u-mt-xl-5,
  .u-my-xl-5 {
    margin-top: 2.5rem !important;
  }

  .u-mr-xl-5,
  .u-mx-xl-5 {
    margin-right: 2.5rem !important;
  }

  .u-mb-xl-5,
  .u-my-xl-5 {
    margin-bottom: 2.5rem !important;
  }

  .u-ml-xl-5,
  .u-mx-xl-5 {
    margin-left: 2.5rem !important;
  }

  .u-m-xl-6 {
    margin: 3rem !important;
  }

  .u-mt-xl-6,
  .u-my-xl-6 {
    margin-top: 3rem !important;
  }

  .u-mr-xl-6,
  .u-mx-xl-6 {
    margin-right: 3rem !important;
  }

  .u-mb-xl-6,
  .u-my-xl-6 {
    margin-bottom: 3rem !important;
  }

  .u-ml-xl-6,
  .u-mx-xl-6 {
    margin-left: 3rem !important;
  }

  .u-m-xl-7 {
    margin: 3.5rem !important;
  }

  .u-mt-xl-7,
  .u-my-xl-7 {
    margin-top: 3.5rem !important;
  }

  .u-mr-xl-7,
  .u-mx-xl-7 {
    margin-right: 3.5rem !important;
  }

  .u-mb-xl-7,
  .u-my-xl-7 {
    margin-bottom: 3.5rem !important;
  }

  .u-ml-xl-7,
  .u-mx-xl-7 {
    margin-left: 3.5rem !important;
  }

  .u-m-xl-8 {
    margin: 4rem !important;
  }

  .u-mt-xl-8,
  .u-my-xl-8 {
    margin-top: 4rem !important;
  }

  .u-mr-xl-8,
  .u-mx-xl-8 {
    margin-right: 4rem !important;
  }

  .u-mb-xl-8,
  .u-my-xl-8 {
    margin-bottom: 4rem !important;
  }

  .u-ml-xl-8,
  .u-mx-xl-8 {
    margin-left: 4rem !important;
  }

  .u-m-xl-9 {
    margin: 4.5rem !important;
  }

  .u-mt-xl-9,
  .u-my-xl-9 {
    margin-top: 4.5rem !important;
  }

  .u-mr-xl-9,
  .u-mx-xl-9 {
    margin-right: 4.5rem !important;
  }

  .u-mb-xl-9,
  .u-my-xl-9 {
    margin-bottom: 4.5rem !important;
  }

  .u-ml-xl-9,
  .u-mx-xl-9 {
    margin-left: 4.5rem !important;
  }

  .u-m-xl-10 {
    margin: 5rem !important;
  }

  .u-mt-xl-10,
  .u-my-xl-10 {
    margin-top: 5rem !important;
  }

  .u-mr-xl-10,
  .u-mx-xl-10 {
    margin-right: 5rem !important;
  }

  .u-mb-xl-10,
  .u-my-xl-10 {
    margin-bottom: 5rem !important;
  }

  .u-ml-xl-10,
  .u-mx-xl-10 {
    margin-left: 5rem !important;
  }

  .u-m-xl-11 {
    margin: 5.5rem !important;
  }

  .u-mt-xl-11,
  .u-my-xl-11 {
    margin-top: 5.5rem !important;
  }

  .u-mr-xl-11,
  .u-mx-xl-11 {
    margin-right: 5.5rem !important;
  }

  .u-mb-xl-11,
  .u-my-xl-11 {
    margin-bottom: 5.5rem !important;
  }

  .u-ml-xl-11,
  .u-mx-xl-11 {
    margin-left: 5.5rem !important;
  }

  .u-m-xl-12 {
    margin: 6rem !important;
  }

  .u-mt-xl-12,
  .u-my-xl-12 {
    margin-top: 6rem !important;
  }

  .u-mr-xl-12,
  .u-mx-xl-12 {
    margin-right: 6rem !important;
  }

  .u-mb-xl-12,
  .u-my-xl-12 {
    margin-bottom: 6rem !important;
  }

  .u-ml-xl-12,
  .u-mx-xl-12 {
    margin-left: 6rem !important;
  }

  .u-p-xl-0 {
    padding: 0rem !important;
  }

  .u-pt-xl-0,
  .u-py-xl-0 {
    padding-top: 0rem !important;
  }

  .u-pr-xl-0,
  .u-px-xl-0 {
    padding-right: 0rem !important;
  }

  .u-pb-xl-0,
  .u-py-xl-0 {
    padding-bottom: 0rem !important;
  }

  .u-pl-xl-0,
  .u-px-xl-0 {
    padding-left: 0rem !important;
  }

  .u-p-xl-1 {
    padding: 0.5rem !important;
  }

  .u-pt-xl-1,
  .u-py-xl-1 {
    padding-top: 0.5rem !important;
  }

  .u-pr-xl-1,
  .u-px-xl-1 {
    padding-right: 0.5rem !important;
  }

  .u-pb-xl-1,
  .u-py-xl-1 {
    padding-bottom: 0.5rem !important;
  }

  .u-pl-xl-1,
  .u-px-xl-1 {
    padding-left: 0.5rem !important;
  }

  .u-p-xl-2 {
    padding: 1rem !important;
  }

  .u-pt-xl-2,
  .u-py-xl-2 {
    padding-top: 1rem !important;
  }

  .u-pr-xl-2,
  .u-px-xl-2 {
    padding-right: 1rem !important;
  }

  .u-pb-xl-2,
  .u-py-xl-2 {
    padding-bottom: 1rem !important;
  }

  .u-pl-xl-2,
  .u-px-xl-2 {
    padding-left: 1rem !important;
  }

  .u-p-xl-3 {
    padding: 1.5rem !important;
  }

  .u-pt-xl-3,
  .u-py-xl-3 {
    padding-top: 1.5rem !important;
  }

  .u-pr-xl-3,
  .u-px-xl-3 {
    padding-right: 1.5rem !important;
  }

  .u-pb-xl-3,
  .u-py-xl-3 {
    padding-bottom: 1.5rem !important;
  }

  .u-pl-xl-3,
  .u-px-xl-3 {
    padding-left: 1.5rem !important;
  }

  .u-p-xl-4 {
    padding: 2rem !important;
  }

  .u-pt-xl-4,
  .u-py-xl-4 {
    padding-top: 2rem !important;
  }

  .u-pr-xl-4,
  .u-px-xl-4 {
    padding-right: 2rem !important;
  }

  .u-pb-xl-4,
  .u-py-xl-4 {
    padding-bottom: 2rem !important;
  }

  .u-pl-xl-4,
  .u-px-xl-4 {
    padding-left: 2rem !important;
  }

  .u-p-xl-5 {
    padding: 2.5rem !important;
  }

  .u-pt-xl-5,
  .u-py-xl-5 {
    padding-top: 2.5rem !important;
  }

  .u-pr-xl-5,
  .u-px-xl-5 {
    padding-right: 2.5rem !important;
  }

  .u-pb-xl-5,
  .u-py-xl-5 {
    padding-bottom: 2.5rem !important;
  }

  .u-pl-xl-5,
  .u-px-xl-5 {
    padding-left: 2.5rem !important;
  }

  .u-p-xl-6 {
    padding: 3rem !important;
  }

  .u-pt-xl-6,
  .u-py-xl-6 {
    padding-top: 3rem !important;
  }

  .u-pr-xl-6,
  .u-px-xl-6 {
    padding-right: 3rem !important;
  }

  .u-pb-xl-6,
  .u-py-xl-6 {
    padding-bottom: 3rem !important;
  }

  .u-pl-xl-6,
  .u-px-xl-6 {
    padding-left: 3rem !important;
  }

  .u-p-xl-7 {
    padding: 3.5rem !important;
  }

  .u-pt-xl-7,
  .u-py-xl-7 {
    padding-top: 3.5rem !important;
  }

  .u-pr-xl-7,
  .u-px-xl-7 {
    padding-right: 3.5rem !important;
  }

  .u-pb-xl-7,
  .u-py-xl-7 {
    padding-bottom: 3.5rem !important;
  }

  .u-pl-xl-7,
  .u-px-xl-7 {
    padding-left: 3.5rem !important;
  }

  .u-p-xl-8 {
    padding: 4rem !important;
  }

  .u-pt-xl-8,
  .u-py-xl-8 {
    padding-top: 4rem !important;
  }

  .u-pr-xl-8,
  .u-px-xl-8 {
    padding-right: 4rem !important;
  }

  .u-pb-xl-8,
  .u-py-xl-8 {
    padding-bottom: 4rem !important;
  }

  .u-pl-xl-8,
  .u-px-xl-8 {
    padding-left: 4rem !important;
  }

  .u-p-xl-9 {
    padding: 4.5rem !important;
  }

  .u-pt-xl-9,
  .u-py-xl-9 {
    padding-top: 4.5rem !important;
  }

  .u-pr-xl-9,
  .u-px-xl-9 {
    padding-right: 4.5rem !important;
  }

  .u-pb-xl-9,
  .u-py-xl-9 {
    padding-bottom: 4.5rem !important;
  }

  .u-pl-xl-9,
  .u-px-xl-9 {
    padding-left: 4.5rem !important;
  }

  .u-p-xl-10 {
    padding: 5rem !important;
  }

  .u-pt-xl-10,
  .u-py-xl-10 {
    padding-top: 5rem !important;
  }

  .u-pr-xl-10,
  .u-px-xl-10 {
    padding-right: 5rem !important;
  }

  .u-pb-xl-10,
  .u-py-xl-10 {
    padding-bottom: 5rem !important;
  }

  .u-pl-xl-10,
  .u-px-xl-10 {
    padding-left: 5rem !important;
  }

  .u-p-xl-11 {
    padding: 5.5rem !important;
  }

  .u-pt-xl-11,
  .u-py-xl-11 {
    padding-top: 5.5rem !important;
  }

  .u-pr-xl-11,
  .u-px-xl-11 {
    padding-right: 5.5rem !important;
  }

  .u-pb-xl-11,
  .u-py-xl-11 {
    padding-bottom: 5.5rem !important;
  }

  .u-pl-xl-11,
  .u-px-xl-11 {
    padding-left: 5.5rem !important;
  }

  .u-p-xl-12 {
    padding: 6rem !important;
  }

  .u-pt-xl-12,
  .u-py-xl-12 {
    padding-top: 6rem !important;
  }

  .u-pr-xl-12,
  .u-px-xl-12 {
    padding-right: 6rem !important;
  }

  .u-pb-xl-12,
  .u-py-xl-12 {
    padding-bottom: 6rem !important;
  }

  .u-pl-xl-12,
  .u-px-xl-12 {
    padding-left: 6rem !important;
  }

  .u-m-xl-auto {
    margin: auto !important;
  }

  .u-mt-xl-auto,
  .u-my-xl-auto {
    margin-top: auto !important;
  }

  .u-mr-xl-auto,
  .u-mx-xl-auto {
    margin-right: auto !important;
  }

  .u-mb-xl-auto,
  .u-my-xl-auto {
    margin-bottom: auto !important;
  }

  .u-ml-xl-auto,
  .u-mx-xl-auto {
    margin-left: auto !important;
  }
}

/* =========================================================
typography - 文字の装飾など
========================================================= */

.u-fc-primary {
  color: #000 !important;
}

.u-fc-secondary {
  color: #000 !important;
}

.u-fc-tertiary {
  color: #000 !important;
}

.u-fc-white {
  color: #ffffff !important;
}

.u-fc-red {
  color: #d90b23 !important;
}

.u-fw-100 {
  font-weight: 100 !important;
}

.u-fw-200 {
  font-weight: 200 !important;
}

.u-fw-300 {
  font-weight: 300 !important;
}

.u-fw-400 {
  font-weight: 400 !important;
}

.u-fw-500 {
  font-weight: 500 !important;
}

.u-fw-600 {
  font-weight: 600 !important;
}

.u-fw-700 {
  font-weight: 700 !important;
}

.u-fw-800 {
  font-weight: 800 !important;
}

.u-fw-900 {
  font-weight: 900 !important;
}

.u-ta-l {
  text-align: left !important;
}

.u-ta-c {
  text-align: center !important;
}

.u-ta-r {
  text-align: right !important;
}

@media screen and (min-width: 576px) {
  .u-ta-sm-l {
    text-align: left !important;
  }

  .u-ta-sm-c {
    text-align: center !important;
  }

  .u-ta-sm-r {
    text-align: right !important;
  }
}

@media screen and (min-width: 768px) {
  .u-ta-md-l {
    text-align: left !important;
  }

  .u-ta-md-c {
    text-align: center !important;
  }

  .u-ta-md-r {
    text-align: right !important;
  }
}

@media screen and (min-width: 992px) {
  .u-ta-lg-l {
    text-align: left !important;
  }

  .u-ta-lg-c {
    text-align: center !important;
  }

  .u-ta-lg-r {
    text-align: right !important;
  }
}

@media screen and (min-width: 1200px) {
  .u-ta-xl-l {
    text-align: left !important;
  }

  .u-ta-xl-c {
    text-align: center !important;
  }

  .u-ta-xl-r {
    text-align: right !important;
  }
}

.u-lh-md {
  line-height: 1.6 !important;
}

.u-lh-lg {
  line-height: 2 !important;
}

.tagcloud {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.tagcloud a {
  display: block;
  padding: 5px 12px;
  color: #333333;
  font-size: 1.4rem !important;
  text-decoration: none;
  background-color: #e1e1e1;
  margin-bottom: 10px;
  border-radius: 5px;
  margin-right: 10px;
}

/* 05-20-2021 */
.h-phone .time {
  text-decoration: none;
}

.h-phone .time:hover {
  opacity: 0.7;
}

.f-banner_items:hover {
  opacity: 0.7;
}

.f-social a:hover {
  opacity: 0.7;
}

.p-new01 .c-new-content .c-list-news .c-new:hover {
  opacity: 0.7;
}

.t-news_list a:hover {
  opacity: 0.7;
}

.p-qa__faq a {
  transition: .3s ease;
}

.p-qa__faq a:hover {
  background: #92ab23;
  color: #fff;
}


.archiveVoice {
  background-color: #E4E8F1;
  padding: 30px 0 6rem 0;
  margin-top: 30px;
}

.singleVoice {
  padding: 0 0;
}

.singleVoice-main {
  width: 90%;
  margin: 0 auto;
}


.singleVoice-title h5 {
  font-size: 3rem;
  line-height: 27px;
  padding: 20px 20px;
  text-align: center;
  border-top: 1px dashed #ccc;
  margin-top: 30px;
  font-weight: bold;
}

.singleVoice-title h6 {
  font-size: 2rem;
  line-height: 27px;
  padding: 0px 20px;
  margin-bottom: 25px;
  text-align: center;
  border-bottom: 1px dashed #ccc;
  margin-bottom: 0px;
}


.singleVoice-content h2 {
  font-size: 2rem;
  line-height: 27px;
  padding: 10px 20px;
  background: linear-gradient(to right, #92ab23 40%, #2170ca 80%, #f6fae6 100%);
  color: #fff;
  margin-bottom: 25px;
  font-weight: bold;
}

.singleVoice-content h3 {
  font-size: 1.9rem;
  line-height: 40px;
  color: #333;
  font-weight: bold;
  padding-left: 20px;
  border-left: 5px solid #92ab23;
  margin-bottom: 20px;
  background: linear-gradient(to right, #92ab23 40%, #2170ca 80%, #f6fae6 100%);
}

.singleVoice-content__img {
  margin-bottom: 25px;
}

.singleVoice-content__img img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 767px) {
  .archiveVoice {
    background-color: #E4E8F1;
    padding: 15px 0 0 0;
    margin-top: 15px;
  }

  .singleVoice {
    padding: 30px 0;
  }

  .singleVoice-content h2 {
    font-size: 1.5rem;
    line-height: 16px;
    padding: 5px 10px;
    margin-bottom: 15px;
  }

  .singleVoice-content h3 {
    font-size: 1.5rem;
    line-height: 30px;
    padding-left: 5px;
    margin-bottom: 10px
  }

  .singleVoice-content h5 {
    font-size: 1.4rem;
    border-top: 0;
    margin-top: 0px;
  }

  .singleVoice-content h6 {
    font-size: 1.2rem;
    border-bottom: 0px;
    margin-bottom: 0px;
  }

  .singleVoice-content {
    margin-bottom: 0px;
  }

  .singleVoice01 {
    padding: 0 0;
  }

  .singleVoice-main {
    width: 100%;
  }

}

.singleService-main {
  width: 100%;
  margin: 0 auto;
  padding: 30px 0px 10px 34px;
}

.singleService-block {
  margin-bottom: 70px;
}

.singleService-block:last-child {
  margin-bottom: 0;
}

.singleService-block__tlt {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.singleService-block__tlt h2 {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 32px;
  padding: 0 15px 10px 15px;
  border-bottom: 3px solid #333333;
}

.singleService-block__txt {
  margin-top: 50px;
}

.singleService-block__txt p {
  font-size: 1.4rem;
  line-height: 18px;
  text-align: center;
}

.singleService-block__image {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.singleService-block__image figure {
  width: calc(100% / 2 - 20px);
  overflow: hidden;
  border-radius: 10px;
}

.singleService-block__image figure img {
  width: 100%;
  height: auto;
  margin-top: 0;
}

.singleService-block__content img {
  width: 100%;
  height: auto;
  margin-top: 50px;
}

.singleService-block__content h4 {
  font-size: 1.7rem;
  line-height: 24px;
  margin-top: 30px;
  font-weight: bold;
}

.singleService-block__content p {
  font-size: 1.4rem;
  line-height: 19px;
  margin-top: 30px;
}

@media only screen and (max-width: 767px) {
  .singleService-main {
    padding: 30px 0;
  }

  .singleService-block__tlt h2 {
    font-size: 2rem;
  }

  .singleService-block__txt {
    margin-top: 30px;
  }

  .singleService-block__image {
    margin-top: 30px;
  }

  .singleService-block__image figure {
    width: 100%;
  }

  .singleService-block__content img {
    margin-top: 30px;
  }
}

/* 05-28-2021 */
.singleVoice-content p {
  margin-bottom: 30px;
}

.singleVoice-content {
  padding-bottom: 30px;
}

.p-about_groupItems h4 {
  margin-bottom: 20px;
  padding-left: 13px;
  border-left: 4px solid #92ab23;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .p-about_groupItems h4 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}


/* 05-31-2021 */
img {
  height: auto;
}

.singleService-main h2 {
  text-align: left;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 32px;
  padding: 0 15px 10px 15px;
  position: relative;
  margin: 0 auto 50px;
}

.singleService-main h3 {
  font-size: 1.7rem;
  line-height: 24px;
  margin-bottom: 30px;
  font-weight: bold;
}

.singleService-main p {
  font-size: 1.4rem;
  line-height: 19px;
  margin-bottom: 30px;
}

.singleService-main .singleService-block__image {
  margin-bottom: 70px;
}

.singleService-main .wp-block-image {
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .singleService-main h2 {
    font-size: 2rem;
  }

  .singleService-main h2 {
    margin-bottom: 30px;
  }
}

.p-about_groupContent h3,
.cm-ttl01 {
  margin-bottom: 20px;
  padding-left: 10px;
  border-left: 4px solid #92ab23;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 2;
}

.p-about_groupContent .wp-block-table {
  margin-bottom: 70px;
}

.p-about_groupContent .wp-block-table:last-child {
  margin-bottom: 0;
}

.p-about_groupContent .wp-block-table tr {
  font-size: 1.5rem;
  border-bottom: 1px solid #707070;
}

.p-about_groupContent .wp-block-table td {
  padding: 22.5px 10px;
}

.p-about_groupContent .wp-block-table td:first-child {
  width: 200px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {

  .p-about_groupContent h3,
  .cm-ttl01 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .p-about_groupContent .wp-block-table td {
    display: block;
    padding: 0 10px;
  }

  .p-about_groupContent .wp-block-table td:first-child {
    width: 100%;
    padding-top: 22.5px;
  }

  .p-about_groupContent .wp-block-table td:last-child {
    padding-bottom: 22.5px;
    margin-top: 10px;
  }
}

/* p-access */
.p-access_groupContent h3,
.cm-ttl01 {
  margin-bottom: 2rem;
  padding: 0 0 0 1.6rem;
  border-left: 4px solid #92ab23;
  font-size: 2.2rem;
  font-weight: normal;
  line-height: 100%;
}
.cm-ttl01 span {
  font-weight: bold;
  line-height: 100%;
}
.p-access_groupContent .wp-block-table {
  margin-bottom: 70px;
}

.p-access_groupContent .wp-block-table:last-child {
  margin-bottom: 0;
}

.p-access_groupContent .wp-block-table tr {
  font-size: 1.5rem;
  border-bottom: 1px solid #707070;
}

.p-access_groupContent .wp-block-table td {
  padding: 22.5px 10px;
}

.p-access_groupContent .wp-block-table td:first-child {
  width: 200px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {

  .p-access_groupContent h3,
  .cm-ttl01 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .cm-ttl01 span {
    font-weight: bold;
    line-height: 150%;
  }
  .p-access_groupContent .wp-block-table td {
    display: block;
    padding: 0 10px;
  }

  .p-access_groupContent .wp-block-table td:first-child {
    width: 100%;
    padding-top: 22.5px;
  }

  .p-access_groupContent .wp-block-table td:last-child {
    padding-bottom: 22.5px;
    margin-top: 10px;
  }
}

/**/

/* 06-02-2021 */
.p-column .c-mainTitle {
  padding: 0 0;
  background: #fff;
  margin-bottom: 42px;
}

/* 06-03-2021 */

.c-qa {
  background: #fff;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.16);
  padding: 0 25px;
}

.c-qa-list__title:after {
  display: none;
}

.c-qa-list__title {
  border: none;
  color: white;
  margin-bottom: 3rem;
  background-color: #92ab23;
}

.c-qa__question--icon,
.c-qa__answer--icon {
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  background: #C6BEB9;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 10px;
}

.c-qa__answer--icon {
  color: #fff;
  background: #92ab23;
}

.c-qa__question {
  border: none;
  padding: 18px 0px;
  align-items: flex-start;
}

.c-qa__question--text {
  font-size: 1.7rem;
  padding-right: 15px;
}

.c-qa__answer {
  background: transparent;
  border: none;
  padding: 14px 0px 18px;
  border-top: 1px solid #7F8B9B;
}

.c-qa__answer--text {
  font-size: 1.44rem;
}

.c-qa__question:after {
  content: '';
  border: 3px solid black;
  border-top: none;
  border-left: none;
  width: 7px;
  height: 7px;
  display: inline-block;
  transform: rotate(45deg);
  margin-left: 10px;
  margin-bottom: 1px;
  transition: 0.3s ease;
  right: 0;
  margin-left: 0;
  top: 24px;
}

.c-qa.is-active .c-qa__question:after {
  content: '';
  transform: rotate(-135deg);
  top: 28px;
}

.c-qa:last-child {
  margin-bottom: 0;
}


.p-qa__faq {
  margin-bottom: 0;
}

.c-qa-list {
  padding-bottom: 6rem;
  padding-top: 0;
}

.c-qa-list:last-child {
}

@media screen and (max-width: 767px) {
  .c-qa-list {
    padding: 0 0 4rem 0;
  }
  .c-qa {
    padding: 0 15px;
  }

  .c-qa__question--icon,
  .c-qa__answer--icon {
    margin-right: 10px;
  }

  .c-qa__question--text {
    font-size: 1.6rem;
    padding-top: 3px;
  }

  .c-qa__answer--text {
    padding-top: 4px;
  }
}

.contactBox {
  /*background: #f6fae6;*/
  padding-bottom: 30px;
  margin-top: 30px
}

.contactBox__intro {
  background: #fff;
  text-align: center;
  font-size: 1.6rem;
  padding: 15px;
}

.c-form .row {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  margin-bottom: 45px;
}

.c-form .row.end {
  margin-bottom: 0 !important;
}

.c-form .row.protection {
  margin-top: 0;
}

.mwform-checkbox-field-text {
  font-weight: 800;
}

.c-form .row.last {
  margin-bottom: 0 !important;
}

.c-form .row .head {
  font-weight: bold;
  display: flex;
  align-items: center;
  width: 250px;
  flex-shrink: 0;
  font-size: 1.6rem;
}

.c-form .row .head.start {
  align-self: flex-start;
  margin-top: 25px;
}

.c-form .head .required {
  height: 14px;
  width: 28px;
  background: red;
  display: flex;
  font-size: 1rem;
  align-items: center;
  justify-content: center;
  color: #fff;
  line-height: 1;
  margin-left: 13px;
}

.c-form .head .nonerequired {
  height: 14px;
  width: 28px;
  display: flex;
  font-size: 1rem;
  align-items: center;
  justify-content: center;
  color: #fff;
  line-height: 1;
  margin-left: 13px;
}

.c-form dd {
  flex: auto;
}

.c-form .row .dd.checkboxLeft {
  flex: initial;
}

.c-form .row input[type="text"],
.c-form .row textarea {
  width: 100%;
  height: 45px;
  border-radius: 8px;
  border: 2px solid #CCCCCC;
  padding: 0 15px;
  outline: none;
  font-size: 1.6rem;
}

.c-form .row textarea {
  height: 200px;
  padding: 10px 15px;
  font-family: inherit;
  resize: none;
}

.c-form input[type="submit"] {
  width: 100%;
  height: 80px;
  background: linear-gradient(45deg, #6e8311 30%, #92ab23 50%, #a5c80c 70%);
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s ease;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: 6px 6px 6px 1px rgb(0 0 0 / 10%);
  border: none;
}

.c-form input[type="submit"]:hover {
  /*background:#fff;
  color:#92ab23;*/
}

.c-form .row input[type="text"]:focus,
.c-form .row textarea:focus {
  border-color: #92ab23;
}

.c-form .row.is-error {
  margin-bottom: 65px;
}

.c-form .row.is-error dd {
  position: relative;
}

.c-form .row.is-error .error {
  position: absolute;
  position: absolute;
  bottom: -5px;
  left: 0;
  transform: translateY(100%);
  font-size: 1.4rem;
}

.c-form .row.is-error input[type="text"],
.c-form .row.is-error textarea {
  color: #B94A48;
  background-color: #F2DEDE;
  border-color: #EED3D7;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .contactBox {
    /*padding-left:50px;
    padding-right:50px;*/
  }

  .c-form .row .head {
    width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .contactBox {
    padding-bottom: 0;
    margin-top: 15px
  }

  .contactBox__intro {
    /*margin-bottom:40px;*/
    font-size: 1.5rem;
    padding: 15px 1rem 15px 1rem;
  }

  .c-form {
    padding: 0;
  }

  .c-form .row {
    display: block;
    align-items: left;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    vertical-align: top
  }

  .c-form .row.end {
    margin-bottom: 0 !important;
  }

  .c-form .row.protection {
    margin-top: 0;
  }

  .mwform-checkbox-field-text {
    font-weight: 800;
  }

  .c-form .row.last {
    margin-bottom: 0 !important;
  }

  .c-form .row .head {
    font-weight: bold;
    display: flex;
    align-items: center;
    margin-top: 0;
    margin: 0 0 0.5rem 0;
    width: 140px;
    flex-shrink: 0;
    font-size: 1rem;
  }

  .c-form .row .head.start {
    align-self: flex-start;
    margin-top: 1px;
    width: 100%;
  }

  .c-form .head .required {
    height: 14px;
    width: 28px;
    background: red;
    display: flex;
    font-size: 1rem;
    align-items: center;
    justify-content: center;
    color: #fff;
    line-height: 1;
  }

  .c-form .head .nonerequired {
    height: 14px;
    width: 28px;
    display: flex;
    font-size: 1rem;
    align-items: center;
    justify-content: center;
    color: #fff;
    line-height: 1;
  }

  .c-form dd {
    flex: auto;
  }

  .c-form .row .dd.checkboxLeft {
    flex: initial;
  }

  .c-form .row input[type="text"],
  .c-form .row textarea {
    width: 100%;
    height: 25px;
    border-radius: 8px;
    border: 1px solid #CCCCCC;
    padding: 0 15px;
    outline: none;
    font-size: 1.3rem;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
  }

  .c-form .row textarea {
    height: 75px;
    padding: 10px 15px;
    font-family: inherit;
    resize: none;
  }

  .c-form input[type="submit"] {
    width: 100%;
    height: 50px;
    background: linear-gradient(45deg, #6e8311 30%, #92ab23 50%, #a5c80c 70%);
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  .c-form input[type="submit"]:hover {
    /*background:#fff;
    color:#92ab23;*/
  }

  .c-form .row input[type="text"]:focus,
  .c-form .row textarea:focus {
    border-color: #92ab23;
  }

  .c-form .row.is-error {
    margin-bottom: 65px;
  }

  .c-form .row.is-error dd {
    position: relative;
  }

  .c-form .row.is-error .error {
    position: absolute;
    bottom: -5px;
    left: 0;
    transform: translateY(100%);
    font-size: 1rem;
  }

  .c-form .row.is-error input[type="text"],
  .c-form .row.is-error textarea {
    color: #B94A48;
    background-color: #F2DEDE;
    border-color: #EED3D7;
  }
}

.contactBox__thanks {
  text-align: center;
}

.contactBox__thanks .ico {
  margin-bottom: 30px;
}

.contactBox__thanks .ico img {
  width: 100px;
}

.contactBox__thanks p {
  margin-bottom: 30px;
  font-size: 1.5rem;
}

/* 06-04-2021 */
.c-mainTitle_content {
  background: transparent;
}

.p-service .c-mainTitle,
.s-service .c-mainTitle {
  background: url('../images/mv/img_jc-mv-service.png') no-repeat;
  background-size: cover;
  background-position: center center;
}

.service_1-mainTitle2 {
  background: url('../images/mv/img_jc-mv-recruit.png') no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
}

@media screen and (min-width: 768px) and (max-width: 991px) {

  .p-service .c-mainTitle,
  .s-service .c-mainTitle {
    background: url('../images/mv/img_jc-mv-service.png') no-repeat;
    background-size: cover;
    background-position: center center;
    margin-left: 5.5%;
    margin-right: 5.5%;
    margin-top: 6%;
  }

}

.p-qa .c-mainTitle {
  background: url('../images/mv/img_jc-mv-faq.png') no-repeat;
  background-size: cover;
  background-position: center center;
  margin-left: 5.5%;
  margin-right: 5.5%
}

.p-qa {
  margin-top: 30px;
}

.p-voice .c-mainTitle {
  background: url('../images/mv/img_jc-mv-voice.png') no-repeat;
  background-size: cover;
  background-position: center center;
  margin-left: 5.5%;
  margin-right: 5.5%;
}

.p-voice {
  background-color: #fff;
  padding-top: 30px;
}

.p-recruit .c-mainTitle {
  background: url('../images/mv/img_jc-mv-recruit.png') no-repeat;
  background-size: cover;
  background-position: center center;
  margin-left: 5.5%;
  margin-right: 5.5%
}

.p-about .c-mainTitle {
  background: url('../images/mv/img_jc-mv-about.png') no-repeat;
  background-size: cover;
  background-position: center center;
  margin-left: 5.5%;
  margin-right: 5.5%;
  margin-bottom: 0;
}

.p-contact .c-mainTitle {
  background: url('../images/mv/mv-contact.jpg?v=20250709') no-repeat;
  background-size: cover;
  background-position: center right;
  margin-left: 5.5%;
  margin-right: 5.5%
}

.p-member01 .c-mainTitle {
  background: url('../images/mv/mv-member.jpg') no-repeat;
  background-size: cover;
  background-position: center center;
}

.p-member02 .c-mainTitle {
  background: url('../images/mv/mv-member.jpg') no-repeat;
  background-size: cover;
  background-position: center center;
}

/* 06-29-2021 */
#toc_container {
  padding: 1em 2em 1em !important;
  min-width: 100%;
  margin: auto;
  background: #fff !important;
  background: rgba(255, 255, 255, .5) !important;
  border: 1px solid #eee !important;
  margin-bottom: 30px !important;
}

#toc_container ul {
  margin: 0 !important;
  border: none !important;
}

#toc_container li a {
  display: block;
  padding: .5em 0;
  border-top: 1px dotted #ddd;
  font-size: 1.4rem;
  color: inherit;
  transition: .3s ease;
}

#toc_container li a:hover {
  opacity: 0.7;
}

#toc_container li li a {
  padding-left: .7em;
}

#toc_container a {
  text-decoration: none;
  text-shadow: none;
}

#toc_container p.toc_title {
  position: relative;
  padding: 0 65px;
}

.toc_toggle {
  position: absolute;
  top: 50%;
  left: calc(100%);
  height: 26px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-indent: -9999px;
}

.toc_toggle a {
  position: absolute;
  right: 0;
  top: 0;
  text-indent: 0;
  display: inline-block;
  text-align: center;
  border: none;
  cursor: pointer;
  line-height: 1;
  font-size: 1.2rem;
  color: #707070;
  background-color: #F2F2F2;
  padding: 8px 12px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  text-decoration: none;
  width: 50px;
}

.toc_toggle a:after {
  display: none;
}

#toc_container p.toc_title+ul.toc_list {
  margin-top: 1em !important;
}

/* 06-30-2021 */

.p-column__slider .p-column__list {
  border: none;
}

.p-column__slider .p-column__list .item {
  border: 1px solid #9f9f9f;
}

.p-column__slider .p-column__list .item.prev {
  border-right: none;
}

.p-column__slider .p-column__list .item.next {
  border-left: none;
}

.p-column__slider .p-column__list .item.prev:only-child {
  border-right: 1px solid #9f9f9f;
}

.p-column__slider .p-column__list .item.prev:only-child::after {
  display: none;
}

.p-column__slider .p-column__list .item.next:only-child {
  border-left: 1px solid #9f9f9f;
  flex-direction: row-reverse;
  margin-left: auto;
}

.p-column__slider .p-column__list .item.next:only-child .image {
  padding-left: 0;
  padding-right: 30px;
}

.line-clamp {
  display: -webkit-box;

  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp--2 {
  -webkit-line-clamp: 2;
}

.line-clamp--3 {
  -webkit-line-clamp: 2;
}

.line-clamp--4 {
  -webkit-line-clamp: 2;
}

.line-clamp--5 {
  -webkit-line-clamp: 2;
}

.f-phone a {
  transition: .3s ease;
}

.f-phone a:hover {
  opacity: 0.7;
}

.p-column__list {
  flex-wrap: wrap;
}

/* 07-15-2021 */

.p-access .accessbox {
  background: #f6fae6 !important;
  padding: 30px 15px !important;
}

.p-access .t-access_add {
  font-size: 1.6rem !important;
  margin: auto !important;
  line-height: 150%;
}

.p-about_groupContent h3.cm-ttl01 {
  border-left: 4px solid #92ab23 !important;
  line-height: 1.5 !important;
}

.p-access .c-mainTitle {
  background: url(../images/mv/mv-access.png) no-repeat;
  background-size: cover;
  background-position: center right;
  margin-bottom: 30px;
}

.p-access {
  background-color: #fff;
}

.p-access .t-access {
  padding: 0
}

.p-access .t-access_main {
  display: flex;
  padding: 0 0 4rem 0;
}

.p-access .t-access_img {
  position: static;
  width: auto;
  flex: 1 0 345px;
}

.p-access .t-access_content {
  padding: 0 0;
  margin-right: 30px;
  flex: auto;
}

.p-access .t-access_content h4 {
  color: #92ab23;
  max-width: 100%;
  padding-top: 0;
}

.p-access .access {
  margin-top: 30px;
}

.p-access .access ul {
  display: flex;
  align-items: flex-start;
}

.p-access .access li {
  width: 22.5%;
  margin-right: 3.33%;
  position: relative;
}

.p-access .access li:after {
  content: '';
  position: absolute;
  border: 14px solid transparent !important;
  right: -17% !important;
  top: 85px !important;
  border-left-color: #92ab23 !important;
  width: 0 !important;
  height: 0 !important;
  transform: none !important;
}

.p-access .access li:nth-child(4n) {
  margin-right: 0;
}

.p-access .access li:last-child::after {
  display: none;
}

.p-access .access p {
  font-size: 1.6rem;
  line-height: 1.34;
}

.p-access .access .thumb {
  margin-bottom: 15px;
  line-height: 0;
}

img {
  max-width: 100%;
}
.thumb img {
  padding: 0 0 1rem 0;
}

@media screen and (max-width: 1140px) {
  /*.p-access .p-access_groupContent{
    padding-left:20px;
    padding-right:20px;
  }*/
}

@media screen and (max-width: 767px) {
  .p-access .access ul {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .p-access .access li {
    width: 47%;
    margin-right: 0%;
    margin-bottom: 40px;
  }

  .p-access .access li:nth-child(2n)::after {
    display: none;
  }

  .p-access .access li:after {
    width: 8px;
    height: 8px;
    border-width: 4px;
    right: -8%;
    top: 33%;
    display: none;
  }

  .p-access .t-access_main {
    flex-wrap: wrap;
  }

  .p-access .t-access_img {
    margin-bottom: 15px;
    flex: auto;
    width: 100%;
  }

  .p-access .cm-ttl01 {
    margin-bottom: 15px;
  }

  .p-access .access {
    margin-top: 0px;
  }

  .p-access .t-access {
    margin-bottom: 0px;
  }

  .p-access .access .thumb {
    position: relative;
  }

  .p-access .access .thumb:after {
    content: '';
    position: absolute;
    width: 0 !important;
    height: 2 !important;
    border: 20px solid transparent !important;
    transform: rotate(135deg) translateY(-50%) translateX(100%) !important;
    border-left: none !important;
    border-bottom: none !important;
    right: -12% !important;
    top: 30% !important;
    border-top-color: #92ab23 !important;
  }

  .p-access .access-title {
    background-color: #92ab23 !important;
    color: #fff !important;
    font-size: 1.5rem !important;
    font-weight: bold !important;
    line-height: 1.5 !important;
    padding-left: 2rem !important;
  }

  .p-access .access li:nth-child(2n) .thumb::after {
    display: none;
  }
}

/* 07-19-2021 */
.fx-contact {
  display: none;
}

@media screen and (max-width: 767px) {
  body {
    padding-bottom: 60px;
  }

  .fx-contact {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #92ab23;
    padding: 8px 10px;
    display: block;
    z-index: 999;
  }

  .fx-contact_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
    height: 100%;
    max-width: 365px;
    margin: 0 auto;
  }

  .fx-contact .fx-contact_btn {
    text-decoration: none;
    height: 100%;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5px;
  }

  a.fx-contact_btn.tel {
    background: #F24133;
    border-radius: 4px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    width: 47.2%;
    line-height: 1.5;
    text-align: center;
  }

  a.fx-contact_btn.tel img {
    width: 18px;
  }

  a.fx-contact_btn.tel p {
    font-size: 1.3rem;
    line-height: 1.5;
  }

  a.fx-contact_btn.tel span {
    font-size: 1rem;
    line-height: 1.5;
  }

  a.fx-contact_btn.contact {
    background: #FBD434;
    border-radius: 4px;
    width: 23.5%;
    text-align: center;
  }

  a.fx-contact_btn.contact img {
    width: 15px;
    margin: 1px auto 1px;
  }

  a.fx-contact_btn.contact span {
    display: block;
    color: #333;
    font-size: 1rem;
    text-align: center;
  }

  a.fx-contact_btn.line {
    background: #1FAE01;
    border-radius: 4px;
    width: 23.5%;
    text-align: center;
    font-size: 1rem;
    color: #fff;
    text-align: center;
  }

  a.fx-contact_btn.line img {
    width: 15px;
    margin: 0 auto;
  }

  a.fx-contact_btn.line span {
    display: block;
  }
}

@media screen and (max-width: 359px) {
  .fx-contact .fx-contact_btn {
    padding: 0 3px;
  }

  a.fx-contact_btn.tel span {
    font-size: 0.9rem;
  }

  a.fx-contact_btn.line {
    font-size: 0.9rem;
  }

  a.fx-contact_btn.contact span {
    font-size: 0.9rem;
  }

  a.fx-contact_btn.contact img {
    margin-bottom: 2px;
  }
}

/* 07-27-2021 */
.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .c-mainTitle_content {
    margin-top: 1rem;
  }

  .p-column__post .box h2 {
    font-size: 1.5rem;
  }

  .p-column__post .box h3 {
    font-size: 1.5rem;
  }

  .p-qa__faq {
    margin-top: 30px;
  }

  .sp {
    display: block;
  }

  .pc {
    display: none;
  }
}

/* 07-29-2021 */
.fx-contact-pc {
  display: none;
}

@media screen and (min-width:768px) {

  .fx-contact-pc {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #92ab23;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    padding: 8px 10px;
  }

  .fx-contact-pc_inner {
    width: 760px;
    margin: 0 auto;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .fx-contact-pc .tel {
    display: flex;
    align-items: flex-start;
    font-weight: bold
  }

  .fx-contact-pc .tel_box {
    color: #fff;
    background: #F24133;
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 154px;
    margin-right: 10px;
    height: 100%;
  }

  .fx-contact-pc .tel_part {
    display: flex;
    align-items: flex-start;
  }

  .fx-contact-pc .tel_part dt {
    width: 38px;
  }

  .fx-contact-pc .tel_part a {
    font-size: 2.2rem;
    color: #fff;
    text-decoration: none;
    line-height: 1;
    transition: .3s ease;
  }

  .fx-contact-pc .tel_part a:hover {
    opacity: 0.7;
  }

  .fx-contact-pc .tel_part p {
    font-size: 1rem;
    font-weight: bold;
  }

  .fx-contact-pc .btn {
    display: flex;
    align-items: flex-start;
  }

  .fx-contact-pc .fx-contact_btn {
    width: 178px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    background: #FBD434;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    transition: .3s ease;
    height: 100%;
  }

  .fx-contact-pc .fx-contact_btn.contact {
    color: #333;
  }

  .fx-contact-pc .fx-contact_btn:hover {
    opacity: 0.7;
  }

  .fx-contact-pc .fx-contact_btn.contact img {
    width: 17px;
    flex-shrink: 0;
  }

  .fx-contact-pc .fx-contact_btn.line img {
    width: 15px;
    flex-shrink: 0;
  }

  .fx-contact-pc .fx-contact_btn span {
    margin-left: 10px;
  }

  .fx-contact-pc .fx-contact_btn.line {
    background: #1FAE01;
  }
}

.fx-contact-pc .tel_part p span:nth-child(1) {
  margin-right: 10px;
}

.t-youtube .banner {
  position: relative;
  text-align: center;
  width: 536px;
  margin: 0 auto;
  max-width: 100%;
  transition: .3s ease;
}

@media screen and (max-width: 767px) {
  .t-youtube .banner {
    padding: 0 15px;
  }
}

.t-youtube .banner:hover {
  opacity: 0.7;
}

.t-youtube .banner-part {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
  padding: 0 15px;
}

.t-youtube .banner-part .c-tlt01 {
  margin-bottom: 10px;
}

.t-youtube {
  background: #f8f8f8;
}

/* 08-04-2021 */
.voice-content01 .qa-part .ttl {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 25px;
}

.voice-content01 .more-content {
  margin-top: 12px;
}

.singleVoice01 {
  background-color: #E4E8F1;
  padding: 30px 0 0 0;
}

.choice-part {
  display: flex;
  align-items: center;
}

.choice-part .choice {
  border: 2px solid #AFAFAF;
  width: 19%;
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 4px;
  margin-bottom: 1%;
  background: #fff;
}

.choice-part.cols-5 .choice:not(:nth-child(5n)) {
  margin-right: 1%;
}

.choice-part .choice.is-active {
  background: #92ab23;
  color: #fff;
  border-color: #92ab23;
}

.choice-part.cols-4 .choice:not(:nth-child(4n)) {
  margin-right: 1%;
}

.choice-part.cols-4 .choice {
  width: 25%;
}

.more-content .more-contentTtl {
  font-size: 1.6rem;
  font-weight: bold;
  color: #92ab23;
  margin-bottom: 8px;
}

.more-content p {
  font-size: 1.6rem;
  line-height: 1.34;
  margin: 0 0;
}

.qa-part {
  margin-bottom: 40px;
}

.voice-content {
  margin-bottom: 70px;
}

.voice-content02 .part {
  margin-bottom: 25px;
}

.check-part .head {
  font-size: 1.6rem;
  font-weight: bold;
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.check-part .checkbox {
  width: 17px;
  height: 17px;
  border: 1px solid #92ab23;
  border-radius: 4px;
  background: #fff;
  position: relative;
  flex-shrink: 0;
  margin-right: 10px;
  top: 4px;
}

.check-part dd {
  line-height: 1.5;
  color: #9A9A9A;
  font-weight: bold;
}

.check-part {
  margin-bottom: 30px;
}

.check-part .checkbox.is-active:before {
  content: '';
  position: absolute;
  top: 1px;
  left: 4px;
  border: 3px solid #C30000;
  height: 7px;
  width: 4px;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.voice-content.voice-content03 {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .choice-part {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .choice-part .choice {
    width: 49%;
    margin-bottom: 2%;
    font-size: 1.3rem;
    padding: 0 5px;
  }

  .choice-part.cols-4 .choice {
    width: 49%;
  }

  .choice-part.cols-4 .choice:not(:nth-child(4n)) {
    margin-right: 0%;
  }

  .choice-part.cols-5 .choice:not(:nth-child(5n)) {
    margin-right: 0;
  }

  .voice-content01 .qa-part .ttl {
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 16px;
  }

  .more-content .more-contentTtl {
    font-size: 1.5rem;
    margin-bottom: 0px;
  }

  .qa-part {
    margin-bottom: 15px;
  }

  .voice-content {
    margin-bottom: 15px;
  }
}

.p-about_introRight .c-tlt02 {
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) {
  .p-about_introRight {
    padding: 45px 35px 45px 105px;
  }
}

.singleVoice-content__img figure {
  margin-bottom: 20px;
}

.singleVoice-content__img figure:last-child {
  margin-bottom: 0;
}

/* 08-18-2021 */
.privacy-policy .l-content h2,
.page-id-918 .l-content h2 {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: bold;
}

.privacy-policy .l-content p,
.page-id-918 .l-content p {
  font-size: 14px;
  margin-bottom: 30px;
}

.privacy-policy .l-content,
.page-id-918 .l-content {
  padding: 50px 0;
  color: #575A5F;
}

/* 10-22-2021 */
.disabled-hover {
  pointer-events: none;
}

/* 10-25-2021 */
body.post-type-archive-members .p-member__list .item .image,
body.tax-taxonomy_position .p-member__list .item .image {
  position: relative;
  padding-bottom: 133.3%;
}

body.post-type-archive-members .p-member__list img,
body.tax-taxonomy_position .p-member__list img {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==================================================
	pagination
================================================== */
.pagination .page-of {
  display: none;
}

.pagination .inner {
  display: flex;
  justify-content: center;
}

.pagination .pn-numbers,
.pagination .current,
.pagination .pn-next,
.pagination .pn-prev,
.pagination .m-next,
.pagination .m-prev {
  background: #fff;
  color: #92ab23;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  border: 1px solid #92ab23;
  font-weight: bold;
  text-decoration: none
}

.pagination .current {

  height: 50px;
  width: 50px;
  background: #92ab23;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 0 5px;
  border: 1px solid #92ab23;
  font-weight: bold;
  text-decoration: none;
}
.txt p {
  padding: 0.75rem 0;
}
.c-job {
  display: flex;
  flex-wrap: wrap;
  padding: 0rem !important;
  margin: 0 0 2rem 0;
  line-height: 100%;
}

.c-job .job {
  margin-right: 1px;
  padding: 0;
}

.p-new01 .c-mainTitle {
  background: url('../images/mv/mv-news.png') no-repeat;
  background-size: cover;
  background-position: center center;
}

.p-column .c-mainTitle {
  background: url('../images/mv/img_jc-mv-columns.png') no-repeat center center;
  background-size: cover;
  background-color: #f6fae6;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .p-column .c-mainTitle {
    background: url('../images/mv/img_jc-mv-columns.png') no-repeat;
    background-size: cover;
    background-position: center center;

  }
}

.google-map iframe {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .google-map iframe {
    height: 300px;
  }
}

/* 10-28-2021 */
.p-service .p-column__main {
  width: 724px;
  max-width: 724px;
  margin-left: auto;
  margin-right: auto;
}

.c-member {
  border: 1px solid #92ab23;
}

.c-member_ttl {
  background: #92ab23;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 5px 20px;
}

.c-member_ava {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 12px;
  position: absolute;
  top: 20px;
  left: 20px;
}

.c-member_main {
  padding: 20px 20px 25px;
  position: relative;
  padding-left: 150px;
}

.c-member_ava img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.c-member_main .name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.c-member_main .job-list {
  line-height: 1;
}

.c-member_main .job-list .job {
  font-weight: bold;
  color: #959595;
  font-size: 1.2rem;
  margin-right: 10px;
  margin-bottom: 5px;
  display: inline-block;
  line-height: 1.2;
}

.c-member_main .bio {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 15px;
}

.c-member_main a {
  width: 100%;
  max-width: 260px;
  height: 45px;
  background: #92ab23;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-weight: bold;
  padding: 0 25px;
  justify-content: space-between;
  border: 1px solid #92ab23;
}

.c-member_main a svg {
  width: 13px;
  margin-left: 5px;
  fill: #fff;
}

.c-member_main a:hover {
  background: #fff;
  color: #92ab23;
}

.c-member_main a:hover svg {
  fill: #92ab23;
}

.p-column__post .c-member {
  margin-bottom: 50px;
}

@media only screen and (max-width: 749px) {
  .c-member_main {
    padding: 20px;
  }

  .c-member_ava {
    position: static;
    width: 75px;
    height: 75px;
    flex-shrink: 0;
  }

  .c-memberTop {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
  }

  .c-member_main a {
    margin: 0 auto;
  }

  .p-column__post .c-member {
    margin-top: 0;
    margin-bottom: 30px;
  }
}

.p-member02__box .txt .content a {
  color: black;
}

.p-member02__box .txt .content a:hover {
  opacity: 0.7;
}

/* 10-29-2021 */
.f-banner_items:nth-child(4) img {
  width: 250px;
}

@media screen and (min-width:992px) {
  .f-banner.cols-4 .f-banner_items {
    width: 24%;
    padding: 12px 15px;
  }
}

.p-column__slider .p-column__list .item {
  background: #fff;
}

.single-voice .p-column__post {
  margin: 70px auto;
  padding: 0;
  background: transparent;
}

.single-voice .p-column__post h2 {
  font-size: 2rem;
  line-height: 27px;
  padding: 10px 20px;
  background: #92ab23;
  color: #fff;
  margin-bottom: 25px;
}

.single-voice .p-column__post h3 {
  font-size: 1.9rem;
  line-height: 25px;
  color: #333;
  font-weight: bold;
  padding-left: 20px;
  border-left: 5px solid #92ab23;
  margin-bottom: 20px;
  background: transparent;
}

.single-voice .p-column__post h4 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 25px;
  line-height: 1.8;
  border: none;
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .single-voice .p-column__post {
    margin: 30px auto;
  }

  .single-voice .p-column__post h2 {
    font-size: 1.8rem;
  }

  .single-voice .p-column__post h3 {
    font-size: 1.6rem;
  }

  .single-voice .p-column__post h4 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}

.voice-textBox {
  max-width: 500px;
  margin: 0 auto 50px;
  text-align: center;
  padding: 0 15px;
}

@media only screen and (max-width: 767px) {
  .voice-textBox {
    margin-bottom: 30px;
  }
  .p-service {
    padding: 0;
    margin: 0;
  }
}


.c-voicePost__text {
  margin-top: 5px;
  color: #333;
  text-align: center;
  font-size: 1.5rem
}

.s-service {
  background: #fff;
}

.s-service .entry-content h2 {
  margin-bottom: 20px;
  padding: 6px 20px 8px 20px;
  background-color: #92ab23;
  background: linear-gradient(to right, #92ab23 100%);
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 120%;
}

.s-service .entry-content h3 {
  margin-bottom: 20px;
  padding: 6px 20px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 120% !important;
  color: #92ab23;
}

.s-service .entry-content ul {
  background: #fff;
  padding: 20px 50px 20px 25px;
  margin: 0 0 4rem 0;
  display: table;
  width: 100%;
}

.s-service .entry-content ul li {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}

.s-service .entry-content ul li:before {
  content: '';
  width: 4px;
  height: 4px;
  background: #92ab23;
  border-radius: 50%;
  position: absolute;
  top: 11px;
  left: 0;
}

.s-service .entry-content ul li span {
  line-height: inherit;
}

.s-service .entry-content ul li:last-child {
  margin-bottom: 0;
}

.s-service .entry-content h4 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
  border-left: 4px solid #92ab23;
  padding: 0 0 0 15px;
  margin: 0 0 1.5rem 0;
}

.s-service .entry-content p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .s-service .entry-content ul {
    background: #fff;
    padding: 20px 50px 20px 25px;
    margin: 0 0 2rem 0;
    display: table;
    width: 100%;
  }
  .s-service .entry-content h2 {
    font-size: 1.5rem;
    margin: 20px 0;
  }

  .s-service .entry-content h3 {
    font-size: 2rem;
    padding: 4px 15px;
  }

  .s-service .entry-content ul {
    margin-top: 30px;
    padding: 20px 30px 20px 20px;
  }

  .s-service .entry-content ul li {
    font-size: 1.2rem;
    line-height: inherit;
  }

  .s-service .entry-content h4 {
    font-size: 1.5rem;
    margin-top: 15px;
    margin-left: 2%;
  }

  .s-service .entry-content p {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 0;
  }
}

/* 11-30-2021 */
.serviceItem {
  display: inline-grid;
  margin-bottom: 45px;
  border: 1px solid;
  width: calc(100% / 2.3);
  padding: 8px 8px 8px 8px;
  background: white;
  margin-left: 2.5%;
}

.c-serviceList {
  max-width: 1400px;
  margin: 0 auto;
  margin-top: -5%;
  margin-left: 5.5%;
  margin-right: 5.5%;
}

.c-serviceList1 {
  max-width: 1400px;
  margin: 0 auto;
  margin-left: 5.5%;
  margin-right: 5.5%;
  text-align: center;
}

.serviceItem .thumb {
  flex-shrink: 0;
  margin: auto;
  line-height: 0;
  width: 100%;

}

.serviceItem .ttl {
  font-weight: bold;
  margin-bottom: 10px;
  padding: 8px 20px;
  background-color: #92ab23;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 20px;
}

.serviceItem .ttl2 {
  font-weight: bold;
  line-height: 1.4;
  padding: 8px 20px;
  background-color: #92ab23;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  font-weight: bold;
  line-height: 32px;
}

.serviceItem p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.68;
  margin-bottom: 50px;
}

.serviceItem .c-btn01 a {
  height: 50px;
  font-size: 1.6rem;
  width: 265px;
}

.serviceItem:last-child {
  margin-bottom: 0;
}

.l-content {
  padding: 80px 0;
}

@media screen and (max-width: 768px) {
  .serviceItem {
    width: 100%;
  }

  .serviceItem .thumb {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .serviceItem .ttl {
    font-size: 1.5rem;
  }

  .serviceItem p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .serviceItem .c-btn01 a {
    margin: 0 auto
  }

  .l-content {
    padding: 0;
  }
}


.c-mainTitle-overlay {
  position: relative;
}

.c-mainTitle-overlay:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.92);
}

/* 01-05-2022 */
.h-mail.h-mail--1 a {
  width: 180px;
}

.h-mail.h-mail--2 a {
  width: 180px;
  background: #26A69A;
}

.h-mail.h-mail--2 a span {
  color: #fff;
}

.h-mail.h-mail--2 a img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(158deg) brightness(103%) contrast(101%);
}

.h-mail.h-mail--3 a {
  width: 180px;
  background: #00A75B;
}

.h-mail.h-mail--3 a span {
  color: #fff;
}

.h-mail.h-mail--3 a img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(158deg) brightness(103%) contrast(101%);
}

.h-mail.h-mail--4 a {
  width: 60px;
  background-color: #fff;
}

.h-mail.h-mail--4 a span {
  color: #fff;
}

.h-mail.h-mail--4 img {
  width: auto;
  height: 55px;
}

.h-mail.h-mail--5 a {
  width: 50px;
  background-color: #f6f6f6;
}

.search_icon {
  width: 50px;
  height: auto;
  cursor: pointer;
}

.f-contact_mail a {
  width: 213px
}

.f-contact_line a {
  width: 218px;
}

.f-contact_mail.f-contact_mail--2 {
  margin-right: 0;
  margin-left: 20px;
}

.f-contact_mail.f-contact_mail--2 a {
  background: #26A69A;
}

.f-contact_mail.f-contact_mail--2 img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(158deg) brightness(103%) contrast(101%);
  width: 30px;
}

.f-contact_mail.f-contact_mail--2 small {
  color: #fff;
}

.l-footer__contact .l-container_small {
  max-width: 1130px;
  /* width: 100%; */
}

.f-contact_mail a small {
  font-size: 1.6rem;
}

.f-contact_line a span small {
  font-size: 1.6rem;
}

.f-contact_line a img {
  margin-left: 20px;
}

.fx-contact-pc_inner {
  width: 940px;
}

.fx-contact_btn.contact.contact--2 {
  background: #26A69A;
}

.fx-contact_btn.contact.contact--2 span {
  color: #fff;
}

.fx-contact_btn.contact.contact--2 img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(158deg) brightness(103%) contrast(101%);
}

.f-contact_mail.f-contact_mail--1 {
  margin-left: 20px;
}

@media screen and (min-width: 992px) and (max-width:1100px) {
  .f-phone a span {
    font-size: 2.6rem;
  }

  .f-phone a img {
    width: 50px;
  }

  .f-phone a small {
    font-size: 1.5rem;
  }

  .f-phone p {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 991px) {
  .f-contact {
    justify-content: center;
  }

  .f-contact_mail.f-contact_mail--2 {
    margin-left: 0;
  }

  .f-contact_mail.f-contact_mail--1 {
    margin-left: 0;
  }

  .f-contact>* {
    width: 30%;
    margin: 0 1% !important;
  }

  .f-contact>*>a {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .f-contact>* {
    width: 100%;
    margin: 0 0 10px !important;
  }

  .f-contact>*>a {
    max-width: 220px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  .fx-contact-pc .fx-contact_btn {
    width: 135px;
  }

  .fx-contact-pc .tel_box {
    width: 100px;
    font-size: 1.4rem;
  }

  .fx-contact-pc .fx-contact_btn {
    font-size: 1.1rem;
  }

  .fx-contact-pc_inner {
    justify-content: center;
  }

  .fx-contact-pc .fx-contact_btn span {
    margin-left: 5px
  }
}

@media screen and (max-width: 767px) {
  a.fx-contact_btn.tel {
    width: 32.5% !important;
    padding: 0;
    margin: 0;
  }

  .fx-contact .fx-contact_btn {
    width: 21.3% !important;
  }

  a.fx-contact_btn.line {
    padding: 0;
  }

  .fx-contact .fx-contact_btn {
    padding: 0;
  }

  .fx-contact_btn.contact.contact--2 img {
    width: 13px;
  }
}

@media screen and (max-width: 359px) {
  a.fx-contact_btn.tel p {
    font-size: 1.1rem;
  }
}

.h-mail a span {
  line-height: 1.3;
}

.h-mail.h-mail--2 img {
  margin-right: 12px;
}

.h-mail.h-mail--3 img {
  margin-right: 12px;
}


.fx-contact-pc .fx-contact_btn span {
  line-height: 1.3;
}

.single_title {
  font-size: 2.5rem;
  line-height: 20px;
  font-weight: bold;
  line-height: 150%;
}

.c-new__date {
  font-weight: bold;
}

.service-line-bottom {
  height: 1px;
  margin-top: 26px;
  border-width: 1px;
  border-bottom: gray 1px dotted;
  background: #D5D5D5;
  width: 80%;
}

.vertical-line {
  border-right: 1px solid rgb(20, 19, 19);
  padding: 0 25px;
}

.vertical-line_head {
  border-right: 1px solid rgb(20, 19, 19);
  border-left: 1px solid rgb(20, 19, 19);
  padding: 0 25px;
}

.serviceItem-sz {
  width: 48%;
  float: left;
  height: 300px;
  border: 1px solid;
  margin: 3px;
}

.thumb-sz {
  flex-shrink: 0;
  margin-right: 37px;
  line-height: 0;
  float: left;
  height: 100px;
}

.block_wrap {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 30px;
  padding-top: 6rem;
  border: 0px solid #e3e3e3;
  background-color: #fff
}

.title_item_wrap {
  width: 210px;
  height: 30px;
  padding: 0px 40px 0px 20px;
  margin: 0 0 0 5.5%;
  border-bottom: none;
  display: flex;
  align-items: center;
  background: linear-gradient(-135deg, transparent 31px, #92ab23 0);
  cursor: pointer;
  border-radius: 0 0 0 0;
}

/*アイコン描画*/
.title_item_wrap::after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
  display: inline-block;
  transition: 0.3s;
  margin-left: -12px;
  border-color: #fff #fff transparent transparent;
}

.active {
  border-bottom: 0px solid #F0F0F0;
}

.active::after {
  transform: rotate(-45deg);
  margin-top: 6px;
}

.chapter_title {
  font-size: 18px;
  font-weight: bold;
  padding: 0;
  margin: 0;
  width: calc(100% - 30px);
  color: white;
}

.node_wrap {
  overflow: hidden;
  overflow-y: scroll;
  transition: 0.3s;
}

.node_wrap p {
  padding: 0;
  margin: 0;
}

/*scrollbarを隠す*/
.node_wrap::-webkit-scrollbar {
  display: none;
}

.node_wrap_hide {
  max-height: 0;
}

/*内容をコントロールする*/
.node_wrap_show {
  width: 100%;
  padding: 0 6rem 4rem 6rem;
  /* height: 400px; */
  display: flex;
  overflow-x: hidden;
  overflow-y: auto;
  flex-wrap: wrap;
  justify-content: space-between;
}

.node_wrap_show_new {
  width: 100%;
  overflow-x: hidden;
  flex-wrap: wrap;
}

.circle {
  width: 22px;
  height: 22px;
  /*background-color: #3F6D97;*/
  border-radius: 50%;
  position: relative;
  left: 10px;
  top: 1px;
}

.border-bt {
  border: 2px solid #92ab23;
  border-top: none;
  border-left: none;
  border-right: none;
  height: 30px;
  /*background-image: url("../images/common/title_line.png");*/
  width: 100%;
  background-repeat: repeat-x;
  background-position-y: bottom;
}

.border-text {
  position: relative;
  left: -5px;
  font-weight: bold;
  color: #676767;
  font-size: 18px;
  margin-top: -6px;
}

.border-text-controll {
  display: none;
}

.a-back-color {
  text-align: center;
  border-bottom: #0a53be;

}

.p-new01 .c-back-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  max-width: 1400px;
  height: 50px;
  margin-top: 42px;
  margin-right: auto;
  margin-left: auto;
  background: #92ab23;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 27px;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .p-new01 .c-back-list {
    margin-top: 112px;
  }

  .p-new01 .c-back-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    height: 50px;
    margin-top: 42px;
    margin-right: auto;
    margin-left: auto;
    background: #92ab23;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 27px;
    text-decoration: none;
  }

  .p-new01 .c-back-list .i-arrow {
    position: absolute;
    top: 50%;
    left: 25%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-40%);
  }
}

@media screen and (max-width: 575px) {
  .p-new01 .c-back-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    height: 50px;
    margin-top: 22px;
    margin-right: auto;
    margin-left: auto;
    background: #92ab23;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 27px;
    text-decoration: none;
  }

  .p-new01 .c-back-list .i-arrow {
    position: absolute;
    top: 50%;
    left: 25% !important;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%) !important;
  }

  .p-new01 .c-back-list .i-arrow img {
    width: 15px !important;
  }
}

.p-new01 .c-back-list .i-arrow {
  position: absolute;
  top: 50%;
  left: 40%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-new01 .c-back-list .i-arrow img {
  width: 22px;
}

.term-description {
  margin-top: 1.5%;
  margin-left: 7.8%;
  margin-right: 8.8%;
  font-size: 15px;
}

.term-excerpt {
  font-size: 1.5rem;
  margin-left: 7.5%;
  margin-right: 5.5%;
}

* {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.imageplay {
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-bottom: 50%;
}

.imageplay ul {
  position: absolute;
  left: 0;
  width: 600%;
}

.imageplay ul li {
  float: left;
  width: 16.67%;
}

.imageplay ul li img {
  width: 100%;
  height: auto;
}

.left {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 5%;
}

.right {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 5%;
}

.arrowstyle-left {
  height: 40px;
  position: relative;
  top: 50%;
  left: 20%;
}

.arrowstyle-right {
  height: 40px;
  position: relative;
  top: 50%;
  left: 50%;
}

.imageplay ol {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 3%;
  line-height: 10%;
  text-align: center;
}

.imageplay ol li {
  float: left;
  width: 10px;
  height: 10px;
  background-color: rgba(0, 0, 0, .5);
  border-radius: 50%;
  margin-left: 5px;
}

.imageplay ol .current {
  background-color: #92ab23;
}

.arrowstyle-left,
.arrowstyle-right,
ol li {
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  /*.imageplay {
    padding-bottom:42%
  }

  .imageplay ul {
    height: 400px;
  }

  .imageplay ul li img {
    width: 92%;
  padding-left: 8%;
  }*/

  .arrowstyle-left {
    height: 25px;
    top: 45%;
    left: 15%
  }

  .arrowstyle-right {
    height: 25px;
    left: 65%;
    top: 45%;
  }

  .imageplay ol {
    height: 5%;
  }

  .left {
    width: 8%;
  }

  .right {
    width: 8%;
  }
}

@media screen and (max-width: 767px) {
  .imageplay {
    /*padding-bottom:40%*/
    margin-top: -16px
  }

  /*.imageplay ul {
    height: 250px;
  }

  .imageplay ul li img {
    width: 90%;
  padding-left: 10%;
  }*/

  .arrowstyle-left {
    height: 15px;
    top: 45%;
    left: 15%
  }

  .arrowstyle-right {
    height: 15px;
    left: 66%;
    top: 45%;
  }

  .imageplay ol {
    height: 8%;
  }

  .left {
    width: 10%;
  }

  .right {
    width: 10%;
  }
}

.news_style1 {
  width: 49%;
}

.news_style2 {
  width: 100%;
  height: 270px;
  /*margin-left: 2%;*/
  overflow-y: auto;
  overflow-x: hidden;
}

@media screen and (max-width: 991px) {
  /* .node_wrap_show{
    height:360px;
  } */
}

@media screen and (max-width: 767px) {
  /* .node_wrap_show{
    height:100%;
  } */

  .news_style1 {
    width: 100%;
  }

  .news_style2 {
    width: 100%;
    height: auto;
    margin: 0 0 2rem 0;
    overflow-y: auto;
    overflow-x: hidden;
    border: none;
  }
}

.block_wrap1 {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 6rem;
  border: 0px solid #e3e3e3;
  background-color: #fff
}

.title_item_wrap1 {
  width: 210px;
  height: 30px;
  padding: 0px 40px 0px 20px;
  margin: 0 0 0 5.5%;
  border-bottom: none;
  display: flex;
  align-items: center;
  background: linear-gradient(-135deg, transparent 31px, #92ab23 0);
  cursor: pointer;
  border-radius: 0 0 0 0;
}

/*アイコン描画*/
.title_item_wrap1::after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
  display: inline-block;
  transition: 0.3s;
  margin-left: -12px;
  border-color: #fff #fff transparent transparent;
}

.active1 {
  border-bottom: 0px solid #F0F0F0;
}

.active1::after {
  transform: rotate(-45deg);
  margin-top: 6px;
}

.chapter_title1 {
  font-size: 18px;
  font-weight: bold;
  padding: 0;
  margin: 0;
  width: calc(100% - 30px);
  color: white;
}

.node_wrap1 {
  overflow: hidden;
  overflow-y: scroll;
  transition: 0.3s;
}

/*scrollbarを隠す*/
.node_wrap1::-webkit-scrollbar {
  display: none;
}

.node_wrap_hide1 {
  max-height: 0;
}

/*内容をコントロールする*/
.node_wrap_show1 {
  width: 100%;
  display: flex;
  overflow-x: hidden;
  overflow-y: auto;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px
}

.circle1 {
  width: 22px;
  height: 22px;
  /*background-color: #3F6D97;*/
  border-radius: 50%;
  position: relative;
  left: 10px;
  top: 1px;
}

.border-bt1 {
  border: 2px solid #92ab23;
  border-top: none;
  border-left: none;
  border-right: none;
  width: 100%;
}

.border-text1 {
  width: 300px;
  position: relative;
  left: 300px;
  top: 30px;
}

.read-more {
  padding: 1px 1px 10px 1px;
}

.menberTtile {
  padding: 0.9rem 2rem 1rem 2rem;
  font-weight: bold;
  font-size: 2.2rem;
  margin: 0 0 0 0;
  color: white;
  background-color: #92ab23;
}

.Message_style1 {
  width: 49%;
  overflow-y: auto;
  padding-left: 5.5%;
}

.Message_style2 {
  width: 49%;
  height: 330px;
  margin-left: 2%;
  padding-right: 5.5%;
}

.Message_style1_p1 {
  font-size: 14px;
  color: #92ab23;
  font-weight: bold;
  padding: 0 0 0 0;
}

.Message_style1_p2 {
  font-size: 28px;
  color: #92ab23;
  font-weight: bold;
  padding: 0 0 2rem 0;
}

.Message_style1_p3 {
  font-size: 1.4rem;
  line-height: 180%;
  font-family: "A-OTF-OutaiKaiStd";
  padding: 0 0 2rem 0;
}

.Message_style1_p4 {
  font-size: 1.4rem;
  line-height: 180%;
  text-align: right;
  font-family: "A-OTF-OutaiKaiStd";
}

.Message_style1_p5 {
  font-size: 2.5rem;
  line-height: 24px;
  padding-bottom: 15px;
  text-align: right;
  font-family: "A-OTF-OutaiKaiStd";
}

.Message_style2 img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .Message_style1_p1 {
    font-size: 1rem;
    zoom: 0.9;
    padding-top: 0px
  }

  .Message_style1_p2 {
    font-size: 1.8rem;
    line-height: 16px;
    padding-top: 0px;
    padding-bottom: 10px
  }

  .Message_style1_p3 {
    font-size: 1rem;
    line-height: 16px;
    padding-bottom: 0px;
    zoom: 0.9
  }

  .Message_style1_p4 {
    font-size: 1rem;
    zoom: 0.9
  }

  .Message_style1_p5 {
    font-size: 1.4rem;
    line-height: 12px;
    padding-bottom: 10px;
  }

  /* .Message_style1{
    height:356px;
  } */
  .Message_style2 {
    height: auto;
  }
}

@media screen and (max-width: 767px) {

  .Message_style1_p1 {
    font-size: 12px;
  }

  .Message_style1_p2 {
    font-size: 24px;
  }

  .node_wrap_show1 {
    height: 100%;
  }

  .Message_style1 {
    width: 100%;
    padding-right: 5.5%;
    height: auto;
  }

  .Message_style2 {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0 2rem;
  }
}

.has-medium-font-size {
  color: #92ab23 !important;
  ;
}

.column-read-more {
  margin: 0 5% 5% 5%;
  width: 90%;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1px;
  margin-top: 5%;
}

.column-read-more img {
  margin: auto;
  height: 35px;
}

.sixreasons_bg {
  background-color: #f6fae6;
  height: 100%;
  width: 100%;
  padding: 6rem 0 3rem 0;
}

.title_bg {
  background-color: transparent;
  background-color: #92ab23;
  padding: 0.9rem 1rem 1rem 1rem;
}

.title_wd {
  font-size: 2.2rem;
  color: white;
  font-weight: bold;
  padding-left: 10px
}

.reasonline1 {
  width: 100%;
  margin-top: 30px;
  padding-left: 5.5%;
  padding-right: 5.5%;
  margin-bottom: 3rem;
  height: 100%;
  display: flex;
  overflow-x: hidden;
  flex-wrap: wrap;
}

.reason01_style1 {
  width: 49%;
  height: 100%;
  background-color: white;
  padding: 3rem;
}

.reason02_style1 {
  width: 49%;
  height: 100%;
  background-color: white;
  margin-left: 2%;
  padding: 3rem;
}

.reason01_style1_span1 {
  color: #92ab23;
  font-family: "Impact", sans-serif;
  font-size: 7rem;
  line-height: 58px;
}

.reason01_style1_span2 {
  padding-left: 20px;
  padding-top: 10px;
  font-weight: bold;
  font-size: 1.8rem;
}

.reason01_style1_borderin1 {
  padding: 0;
}

.reason01_style1_p1 {
  font-size: 1.44rem;
  line-height: 24px;
  margin-top: 5px;
}

.reason01_style1_img1 {
  margin-top: 28px;
  padding: 0;
}

.reason01_style1_img1_1 {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}

.reason02_style1_span1 {
  color: #92ab23;
  font-family: "Impact", sans-serif;
  font-size: 7rem;
  line-height: 58px;
}

.reason02_style1_span2 {
  padding-left: 20px;
  padding-top: 10px;
  font-weight: bold;
  font-size: 1.8rem;
}

.reason02_style1_borderin1 {
  padding: 0;
}

.reason02_style1_p1 {
  font-size: 1.44rem;
  line-height: 24px;
  margin-top: 5px;
}

.reason02_style1_img1 {
  margin-top: 28.5px;
}

.reason02_style1_img1_1 {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}


@media screen and (max-width: 991px) {

  .reason01_style1_span1 {
    font-size: 4rem;
    line-height: 100%;
  }

  .reason01_style1_p1 {
    font-size: 1rem;
    line-height: 16px;
    zoom: 0.9
  }

  .reason02_style1_span1 {
    font-size: 4rem;
    line-height: 100%;
  }

  .reason02_style1_p1 {
    font-size: 1rem;
    line-height: 16px;
    zoom: 0.9
  }

  .reason02_style1_img1 {
    margin-top: 28px;
  }

  .reason01_style1_span2 {
    font-size: 1.05rem !important;
    padding: 0 0 0 1rem;
    line-height: 180%;
  }

  .reason02_style1_span2 {
    font-size: 1.05rem !important;
    padding: 0 0 0 1rem;
    line-height: 180%;
  }

  .title_wd {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .sixreasons_bg {
    background-color: #f6fae6;
    height: 100%;
    width: 100%;
    padding: 0 0 3rem 0;
  }
  .reason01_style1 {
    width: 100%;
    height: auto;
    padding: 2rem;
    margin: 0 0 1rem 0;
  }

  .reason02_style1 {
    width: 100%;
    height: auto;
    margin: 0 0 1rem 0;
    padding: 2rem;
  }
  .reason06_style1_span2 {
    padding-top: 0;
  }
}

.reasonline2 {
  width: 100%;
  margin-top: 10px;
  padding-left: 5.5%;
  padding-right: 5.5%;
  margin-bottom: 2%;
  height: 100%;
  display: flex;
  overflow-x: hidden;
  flex-wrap: wrap;
}

.reason03_style1 {
  width: 49%;
  height: 100%;
  background-color: white;
  padding: 3rem;
}

.reason04_style1 {
  width: 49%;
  height: 100%;
  background-color: white;
  margin-left: 2%;
  padding: 3rem;
}

.reason03_style1_span1 {
  color: #92ab23;
  font-family: "Impact", sans-serif;
  font-size: 7rem;
  line-height: 58px;
}

.reason03_style1_span2 {
  padding-left: 20px;
  padding-top: 10px;
  font-weight: bold;
  font-size: 1.8rem;
}

.reason03_style1_borderin1 {
  padding: 0;
}

.reason03_style1_p1 {
  font-size: 1.44rem;
  line-height: 24px;
  margin-top: 5px;
}

.reason03_style1_img1 {
  margin-top: 8px;
  padding: 0;
}

.reason03_style1_img1_1 {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}

.reason04_style1_span1 {
  color: #92ab23;
  font-family: "Impact", sans-serif;
  font-size: 7rem;
  line-height: 58px;
}

.reason04_style1_span2 {
  font-weight: bold;
  font-size: 1.8rem;
  padding-left: 20px;
  padding-top: 10px
}

.reason04_style1_borderin1 {
  padding: 0;
}

.reason04_style1_p1 {
  font-size: 1.44rem;
  line-height: 24px;
  margin-top: 5px;
}

.reason04_style1_img1 {
  margin-top: 33px;
}

.reason04_style1_img1_1 {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}


@media screen and (max-width: 991px) {

  .reason03_style1_span1 {
    font-size: 4rem;
    line-height: 100%;
  }

  .reason03_style1_p1 {
    font-size: 1rem;
    line-height: 16px;
    zoom: 0.9
  }

  .reason04_style1_span2 {
    font-size: 1.05rem !important;
    padding: 0 0 0 1rem;
    line-height: 180%;
  }

  .reason04_style1_span1 {
    font-size: 4rem;
    line-height: 100%;
  }

  .reason04_style1_img1 {
    margin-top: 32px;
  }

  .reason04_style1_p1 {
    font-size: 1rem;
    line-height: 16px;
    zoom: 0.9
  }

  .reason03_style1_img1 {
    margin-top: 18px;
    padding: 0;
  }

  .reason03_style1_span2 {
    font-size: 1.05rem !important;
    padding: 0 0 0 1rem;
    line-height: 180%;
  }


}

@media screen and (max-width: 767px) {
  .reason03_style1 {
    width: 100%;
    height: auto;
    padding: 2rem;
    margin: 0 0 1rem 0;
  }

  .reason04_style1 {
    width: 100%;
    height: auto;
    padding: 2rem;
    margin: 0 0 1rem 0;
  }
}

.reasonline3 {
  width: 100%;
  margin-top: 10px;
  padding-left: 5.5%;
  padding-right: 5.5%;
  margin-bottom: 2%;
  height: 100%;
  display: flex;
  overflow-x: hidden;
  flex-wrap: wrap;
}

.reason05_style1 {
  width: 49%;
  height: 100%;
  background-color: white;
  padding: 3rem;
}

.reason06_style1 {
  width: 49%;
  height: 100%;
  background-color: white;
  margin-left: 2%;
  padding: 3rem;
}


.reason05_style1_span1 {
  color: #92ab23;
  font-family: "Impact", sans-serif;
  font-size: 7rem;
  line-height: 58px;
}

.reason05_style1_span2 {
  font-weight: bold;
  font-size: 1.8rem;
  padding-left: 20px;
  padding-top: 10px
}

.reason05_style1_borderin1 {
  padding: 0;
}

.reason05_style1_p1 {
  font-size: 1.44rem;
  line-height: 24px;
  margin-top: 5px;
}

.reason05_style1_img1 {
  margin-top: 31px;
  padding: 0;
}

.reason05_style1_img1_1 {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}

.reason06_style1_span1 {
  color: #92ab23;
  font-family: "Impact", sans-serif;
  font-size: 7rem;
  line-height: 58px;
}

.reason06_style1_span2 {
  padding-top: 6px;
  padding-left: 20px;
  padding-bottom: 3px;
  font-weight: bold;
  line-height: 24px;
  font-size: 1.8rem;
}

.reason06_style1_borderin1 {
  padding: 0;
}

.reason06_style1_p1 {
  font-size: 1.44rem;
  line-height: 24px;
  margin-top: 5px;
}

.reason06_style1_img1 {
  margin-top: 8px;
}

.reason06_style1_img1_1 {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}

.reason05_style1_title {
  display: flex;
  padding-bottom: 10px;
  overflow-x: hidden;
  overflow-y: hidden;
  height: 100%;
  border-bottom: 1px dotted #707070;
}

.reason06_style1_title {
  display: flex;
  padding-bottom: 10px;
  overflow-x: hidden;
  overflow-y: hidden;
  height: 100%;
  border-bottom: 1px dotted #707070;
}

@media screen and (max-width: 991px) {

  .reason05_style1_title {
    padding-bottom: 5px;
  }

  .reason05_style1_span1 {
    font-size: 4rem;
    line-height: 100%;
  }

  .reason05_style1_p1 {
    font-size: 1rem;
    line-height: 16px;
    zoom: 0.9
  }
  .reason06_style1_span1 {
    font-size: 4rem;
    line-height: 100%;
  }

  .reason06_style1_p1 {
    font-size: 1rem;
    line-height: 16px;
    zoom: 0.9
  }

  .reason06_style1_span2 {
    font-size: 1.05rem !important;
    padding: 0 0 0 1rem;
    line-height: 180%;
  }

  .reason05_style1_img1 {
    margin-top: 22px;
  }

  .reason06_style1_img1 {
    margin-top: 8px;
  }

  .reason06_style1_title {
    padding-bottom: 5px;
  }

  .reason05_style1_span2 {
    font-size: 1.05rem !important;
    padding: 0 0 0 1rem;
    line-height: 180%;
  }
}

@media screen and (max-width: 767px) {

  .reason05_style1 {
    width: 100%;
    height: auto;
    padding: 2rem;
    margin: 0 0 1rem 0;
  }

  .reason06_style1 {
    width: 100%;
    height: auto;
    padding: 2rem;
    margin: 0 0 1rem 0;
  }
}

.block_wrap2 {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 6rem;
  border: 0px solid #e3e3e3;
  background-color: #fff
}

.title_item_wrap2 {
  width: 210px;
  height: 30px;
  padding: 0px 40px 0px 20px;
  margin: 0 0 0 5.5%;
  border-bottom: none;
  display: flex;
  align-items: center;
  background: linear-gradient(-135deg, transparent 31px, #92ab23 0);
  cursor: pointer;
  border-radius: 0 0 0 0;
}

/*アイコン描画*/
.title_item_wrap2::after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
  display: inline-block;
  transition: 0.3s;
  margin-left: -12px;
  border-color: #fff #fff transparent transparent;
}

.active2 {
  border-bottom: 0px solid #F0F0F0;
}

.active2::after {
  transform: rotate(-45deg);
  margin-top: 6px;
}

.chapter_title2 {
  font-size: 18px;
  font-weight: bold;
  padding: 0;
  margin: 0;
  width: calc(100% - 30px);
  color: white;
}

.node_wrap2 {
  overflow: hidden;
  overflow-y: scroll;
  transition: 0.3s;
}

/*scrollbarを隠す*/
.node_wrap2::-webkit-scrollbar {
  display: none;
}

.node_wrap_hide2 {
  max-height: 0;
}

/*内容をコントロールする*/
.node_wrap_show2 {
  width: 100%;
  padding: 0 5.5% 0 5.5%;
  display: flex;
  overflow-x: hidden;
  overflow-y: hidden;
  flex-wrap: wrap;
  justify-content: space-between;
  /* margin-top: 30px */
}

.circle2 {
  width: 22px;
  height: 22px;
  /*background-color: #3F6D97;*/
  border-radius: 50%;
  position: relative;
  left: 10px;
  top: 1px;
}

.border-bt2 {
  border: 2px solid #92ab23;
  border-top: none;
  border-left: none;
  border-right: none;
  width: 100%;
}

.border-text2 {
  width: 300px;
  position: relative;
  left: 300px;
  top: 30px;
}

.Strada_style {
  width: 100%;
  height: 100%;
}

.Strada_style_img1 {
  width: 100%;
  padding: 0;
}

.Strada_style_img1_1 {
  width: 100%;
  height: 100%;
}

.block_wrap3 {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 6rem;
  border: 0px solid #e3e3e3;
  background-color: #fff
}

.title_item_wrap3 {
  width: 210px;
  height: 30px;
  padding: 0px 40px 0px 20px;
  margin: 0 0 0 5.5%;
  border-bottom: none;
  display: flex;
  align-items: center;
  background: linear-gradient(-135deg, transparent 31px, #92ab23 0);
  cursor: pointer;
  border-radius: 0 0 0 0;
}

/*アイコン描画*/
.title_item_wrap3::after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
  display: inline-block;
  transition: 0.3s;
  margin-left: -12px;
  border-color: #fff #fff transparent transparent;
}

.active3 {
  border-bottom: 0px solid #F0F0F0;
}

.active3::after {
  transform: rotate(-45deg);
  margin-top: 6px;
}

.chapter_title3 {
  font-size: 18px;
  font-weight: bold;
  padding: 0;
  margin: 0;
  width: calc(100% - 30px);
  color: white;
}

.node_wrap3 {
  overflow: hidden;
  overflow-y: scroll;
  transition: 0.3s;
}

/*scrollbarを隠す*/
.node_wrap3::-webkit-scrollbar {
  display: none;
}

.node_wrap_hide3 {
  max-height: 0;
}

/*内容をコントロールする*/
.node_wrap_show3 {
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  flex-wrap: wrap;
}

.circle3 {
  width: 22px;
  height: 22px;
  /*background-color: #3F6D97;*/
  border-radius: 50%;
  position: relative;
  left: 10px;
  top: 1px;
}

.border-bt3 {
  border: 2px solid #92ab23;
  border-top: none;
  border-left: none;
  border-right: none;
  width: 100%;
}

.border-text3 {
  width: 300px;
  position: relative;
  left: 300px;
  top: 30px;
}

.block_wrap4 {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 6rem;
  border: 0px solid #e3e3e3;
  background-color: #fff
}

.title_item_wrap4 {
  width: 210px;
  height: 30px;
  padding: 0px 40px 0px 20px;
  margin: 0 0 0 5.5%;
  border-bottom: none;
  display: flex;
  align-items: center;
  background: linear-gradient(-135deg, transparent 31px, #92ab23 0);
  cursor: pointer;
  border-radius: 0 0 0 0;
}

/*アイコン描画*/
.title_item_wrap4::after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
  display: inline-block;
  transition: 0.3s;
  margin-left: -12px;
  border-color: #fff #fff transparent transparent;
}

.active4 {
  border-bottom: 0px solid #F0F0F0;
}

.active4::after {
  transform: rotate(-45deg);
  margin-top: 6px;
}

.chapter_title4 {
  font-size: 18px;
  font-weight: bold;
  padding: 0;
  margin: 0;
  width: calc(100% - 30px);
  color: white;
}

.node_wrap4 {
  overflow: hidden;
  overflow-y: scroll;
  transition: 0.3s;
}

/*scrollbarを隠す*/
.node_wrap4::-webkit-scrollbar {
  display: none;
}

.node_wrap_hide4 {
  max-height: 0;
}

/*内容をコントロールする*/
.node_wrap_show4 {
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  flex-wrap: wrap;
}

.circle4 {
  width: 22px;
  height: 22px;
  /*background-color: #3F6D97;*/
  border-radius: 50%;
  position: relative;
  left: 10px;
  top: 1px;
}

.border-bt4 {
  border: 2px solid #92ab23;
  border-top: none;
  border-left: none;
  border-right: none;
  width: 100%;
}

.border-text4 {
  width: 300px;
  position: relative;
  left: 300px;
  top: 30px;
}

.block_wrap5 {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 6rem;
  border: 0px solid #e3e3e3;
  background-color: #fff
}

.title_item_wrap5 {
  width: 210px;
  height: 30px;
  padding: 0px 40px 0px 20px;
  margin: 0 0 0 5.5%;
  border-bottom: none;
  display: flex;
  align-items: center;
  background: linear-gradient(-135deg, transparent 31px, #92ab23 0);
  cursor: pointer;
  border-radius: 0 0 0 0;
}

/*アイコン描画*/
.title_item_wrap5::after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
  display: inline-block;
  transition: 0.3s;
  margin-left: -12px;
  border-color: #fff #fff transparent transparent;
}

.active5 {
  border-bottom: 0px solid #F0F0F0;
}

.active5::after {
  transform: rotate(-45deg);
  margin-top: 6px;
}

.chapter_title5 {
  font-size: 18px;
  font-weight: bold;
  padding: 0;
  margin: 0;
  width: calc(100% - 30px);
  color: white;
}

.node_wrap5 {
  overflow: hidden;
  overflow-y: scroll;
  transition: 0.3s;
}

/*scrollbarを隠す*/
.node_wrap5::-webkit-scrollbar {
  display: none;
}

.node_wrap_hide5 {
  max-height: 0;
}

/*内容をコントロールする*/
.node_wrap_show5 {
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  flex-wrap: wrap;
}

.circle5 {
  width: 22px;
  height: 22px;
  /*background-color: #3F6D97;*/
  border-radius: 50%;
  position: relative;
  left: 10px;
  top: 1px;
}

.border-bt5 {
  border: 2px solid #92ab23;
  border-top: none;
  border-left: none;
  border-right: none;
  width: 100%;
}

.border-text5 {
  width: 300px;
  position: relative;
  left: 300px;
  top: 30px;
}

.block_wrap6 {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 6rem;
  border: 0px solid #e3e3e3;
  background-color: #fff
}

.title_item_wrap6 {
  width: 210px;
  height: 30px;
  padding: 0px 40px 0px 20px;
  margin: 0 0 0 5.5%;
  border-bottom: none;
  display: flex;
  align-items: center;
  background: linear-gradient(-135deg, transparent 31px, #92ab23 0);
  cursor: pointer;
  border-radius: 0 0 0 0;
}

/*アイコン描画*/
.title_item_wrap6::after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
  display: inline-block;
  transition: 0.3s;
  margin-left: -12px;
  border-color: #fff #fff transparent transparent;
}

.active6 {
  border-bottom: 0px solid #F0F0F0;
}

.active6::after {
  transform: rotate(-45deg);
  margin-top: 6px;
}

.chapter_title6 {
  font-size: 18px;
  font-weight: bold;
  padding: 0;
  margin: 0;
  width: calc(100% - 30px);
  color: white;
}

.node_wrap6 {
  overflow: hidden;
  overflow-y: scroll;
  transition: 0.3s;
}

/*scrollbarを隠す*/
.node_wrap6::-webkit-scrollbar {
  display: none;
}

.node_wrap_hide6 {
  max-height: 0;
}

/*内容をコントロールする*/
.node_wrap_show6 {
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  flex-wrap: wrap;
}

.circle6 {
  width: 22px;
  height: 22px;
  /*background-color: #3F6D97;*/
  border-radius: 50%;
  position: relative;
  left: 10px;
  top: 1px;
}

.border-bt6 {
  border: 2px solid #92ab23;
  border-top: none;
  border-left: none;
  border-right: none;
  width: 100%;
}

.border-text6 {
  width: 300px;
  position: relative;
  left: 300px;
  top: 30px;
}

.block_wrap7 {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 6rem;
  border: 0px solid #e3e3e3;
  background-color: #fff
}

.title_item_wrap7 {
  width: 210px;
  height: 30px;
  padding: 0px 40px 0px 20px;
  margin: 0 0 0 5.5%;
  border-bottom: none;
  display: flex;
  align-items: center;
  background: linear-gradient(-135deg, transparent 31px, #92ab23 0);
  cursor: pointer;
  border-radius: 0 0 0 0;
}

/*アイコン描画*/
.title_item_wrap7::after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
  display: inline-block;
  transition: 0.3s;
  margin-left: -12px;
  border-color: #fff #fff transparent transparent;
}

.active7 {
  border-bottom: 0px solid #F0F0F0;
}

.active7::after {
  transform: rotate(-45deg);
  margin-top: 6px;
}

.chapter_title7 {
  font-size: 18px;
  font-weight: bold;
  padding: 0;
  margin: 0;
  width: calc(100% - 30px);
  color: white;
}

.node_wrap7 {
  overflow: hidden;
  overflow-y: scroll;
  transition: 0.3s;
}

/*scrollbarを隠す*/
.node_wrap7::-webkit-scrollbar {
  display: none;
}

.node_wrap_hide7 {
  max-height: 0;
}

/*内容をコントロールする*/
.node_wrap_show7 {
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  flex-wrap: wrap;
}

.circle7 {
  width: 22px;
  height: 22px;
  /*background-color: #3F6D97;*/
  border-radius: 50%;
  position: relative;
  left: 10px;
  top: 1px;
}

.border-bt7 {
  border: 2px solid #92ab23;
  border-top: none;
  border-left: none;
  border-right: none;
  width: 100%;
}

.border-text7 {
  width: 300px;
  position: relative;
  left: 300px;
  top: 30px;
}

.block_wrap8 {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 30px;
  border: 0px solid #e3e3e3;
  background-color: #fff
}

.title_item_wrap8 {
  width: 210px;
  height: 30px;
  padding: 0px 40px 0px 20px;
  margin: 0 0 0 5.5%;
  border-bottom: none;
  display: flex;
  align-items: center;
  background: linear-gradient(-135deg, transparent 31px, #92ab23 0);
  cursor: pointer;
  border-radius: 0 0 0 0;
}

/*アイコン描画*/
.title_item_wrap8::after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
  display: inline-block;
  transition: 0.3s;
  margin-left: -12px;
  border-color: #fff #fff transparent transparent;
}

.active8 {
  border-bottom: 0px solid #F0F0F0;
}

.active8::after {
  transform: rotate(-45deg);
  margin-top: 6px;
}

.chapter_title8 {
  font-size: 18px;
  font-weight: bold;
  padding: 0;
  margin: 0;
  width: calc(100% - 30px);
  color: white;
}

.node_wrap8 {
  overflow: hidden;
  overflow-y: scroll;
  transition: 0.3s;
}

/*scrollbarを隠す*/
.node_wrap8::-webkit-scrollbar {
  display: none;
}

.node_wrap_hide8 {
  max-height: 0;
}

/*内容をコントロールする*/
.node_wrap_show8 {
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  flex-wrap: wrap;
}

.circle8 {
  width: 22px;
  height: 22px;
  /*background-color: #3F6D97;*/
  border-radius: 50%;
  position: relative;
  left: 10px;
  top: 1px;
}

.border-bt8 {
  border: 2px solid #92ab23;
  border-top: none;
  border-left: none;
  border-right: none;
  width: 100%;
}

.border-text8 {
  width: 300px;
  position: relative;
  left: 300px;
  top: 30px;
}

.block_wrap9 {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 30px;
  border: 0px solid #e3e3e3;
  background-color: #fff
}

.title_item_wrap9 {
  width: 210px;
  height: 30px;
  padding: 0px 40px 0px 20px;
  margin: 0 0 0 5.5%;
  border-bottom: none;
  display: flex;
  align-items: center;
  background: linear-gradient(-135deg, transparent 31px, #92ab23 0);
  cursor: pointer;
  border-radius: 0 0 0 0;
}

/*アイコン描画*/
.title_item_wrap9::after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
  display: inline-block;
  transition: 0.3s;
  margin-left: -12px;
  border-color: #fff #fff transparent transparent;
}

.active9 {
  border-bottom: 0px solid #F0F0F0;
}

.active9::after {
  transform: rotate(-45deg);
  margin-top: 6px;
}

.chapter_title9 {
  font-size: 18px;
  font-weight: bold;
  padding: 0;
  margin: 0;
  width: calc(100% - 30px);
  color: white;
}

.node_wrap9 {
  overflow: hidden;
  overflow-y: scroll;
  transition: 0.3s;
}

/*scrollbarを隠す*/
.node_wrap9::-webkit-scrollbar {
  display: none;
}

.node_wrap_hide9 {
  max-height: 0;
}

/*内容をコントロールする*/
.node_wrap_show9 {
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  flex-wrap: wrap;
}

.circle9 {
  width: 22px;
  height: 22px;
  /*background-color: #3F6D97;*/
  border-radius: 50%;
  position: relative;
  left: 10px;
  top: 1px;
}

.border-bt9 {
  border: 2px solid #92ab23;
  border-top: none;
  border-left: none;
  border-right: none;
  width: 100%;
}

.border-text9 {
  width: 300px;
  position: relative;
  left: 300px;
  top: 30px;
}

.contents_number {
  display: inline-block;
  background: #92ab23;
  color: white;
  padding: 1px 5px;
  float: right;
  width: 40%;
  font-size: 14px;
  margin-right: 1rem;
}

@media screen and (max-width: 767px) {
  .contents_number {
    display: inline-block;
    background: #92ab23;
    color: white;
    padding: 0 10px;
    float: right;
    width: 40%;
    font-size: 1rem;
  }
}

@media screen and (max-width: 991px) and (min-width: 760px) {

  .contents_number {
    display: inline-block;
    background: #92ab23;
    color: white;
    padding: 1px 5px;
    float: right;
    width: 50%;
    font-size: 14px;
  }
}

.p-contact {
  background-color: #fff;
  margin-top: 0;
}

.menberTtile3 {
  padding: 1rem 2rem;
  line-height: 40px;
  font-weight: bold;
  font-size: 2.2rem;
  color: white;
  background: linear-gradient(to right, #92ab23 0%, #f6fae6 96%);
  width: 100%;
  margin-top: 2%;
}

.service-line-bottom2 {
  height: 1px;
  margin-top: 5px;
  border-width: 1px;
  border-bottom: gray 1px dotted;
  background: #D5D5D5;
}

.service-line-bottom-top {
  height: 1px;
  margin-top: -2%;
  border-width: 1px;
  border-bottom: gray 1px dotted;
  background: #D5D5D5;
}

.service-line-bottom-top2 {
  height: 1px;
  margin-top: 10px;
  border-width: 1px;
  border-bottom: gray 1px dotted;
  background: #D5D5D5;
}

.serviceItem_top {
  display: inline-grid;
  margin-bottom: 3px;
  width: calc(100% / 3.26);
  padding: 2rem;
  background: white;
}

@media screen and (max-width: 760px) {
  .serviceItem_top {
    display: inline-grid;
    margin-bottom: 1rem;
    width: calc(100% / 1);
    padding: 2rem;
    background: white;
  }
}

@media screen and (max-width: 991px) and (min-width: 760px) {
  .serviceItem_top {
    display: inline-grid;
    margin-bottom: 1rem;
    width: calc(100% / 2);
    padding: 2rem;
    background: white;
  }
}

.serviceItem_top2 {
  display: inline-grid;
  margin-bottom: 3px;
  width: calc(100% / 3.26);
  padding: 2rem;
  background: white;
  margin-left: 0;
}

@media screen and (max-width: 760px) {
  .serviceItem_top2 {
    display: inline-grid;
    margin-bottom: 1rem;
    width: calc(100% / 1);
    padding: 2rem;
    background: white;
  }
}

@media screen and (max-width: 991px) and (min-width: 760px) {
  .serviceItem_top2 {
    display: inline-grid;
    margin-bottom: 45px;
    border: 1px solid;
    width: calc(100% / 2.01);
    padding: 8px 8px 8px 8px;
    background: white;
    margin-left: 0;
  }
}

.description_box {
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  display: -webkit-box;
  margin-top: 1%;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 150%;
  font-size: 1.5rem
}

.service_title_icon {
  border: 1px solid black;
  border-radius: 20px;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../images/top/news_more.png");
  background-repeat: no-repeat;
  background-position: right 5% center;
  background-size: 7%;
  padding: 1rem;
}

@media screen and (max-width: 760px) {}

.txt a {
  text-decoration: none;
}

@media screen and (max-width: 760px) {}

.service_title_icon span {
  font-size: 1.8rem;
  font-weight: bold;
  color: black;
}

@media screen and (max-width: 760px) {
  .service_title_icon span {
    font-size: 1.3rem;
    font-weight: bold;
    color: black;
  }
}

.service_title_icon img {
  width: 30px;
  position: relative;
  left: 10%;
  top: -5px;
}

.p-member02 .newItem {
  width: calc(100% / 4.1);
  padding: 2rem;
  background-color: #fff;
  margin-top: 10px;
}

.p-member02 .newItem2 {
  width: calc(100% / 4.1);
  padding: 10px 10px 10px 10px;
  background-color: #fff;
  border: 1px solid;
  margin-top: 10px;
  margin-left: 0.7%;
}

@media screen and (max-width: 991px) and (min-width: 760px) {
  .p-member02 .newItem {
    width: calc(100% / 2.03);
    padding: 10px 10px 10px 10px;
    background-color: #fff;
    border: 1px solid;
    margin-top: 10px;
    margin-left: 5px;
  }
}

@media screen and (max-width: 991px) and (min-width: 760px) {
  .p-member02 .newItem2 {
    width: calc(100% / 2.03);
    padding: 10px 10px 10px 10px;
    background-color: #fff;
    border: 1px solid;
    margin-top: 10px;
    margin-left: 5px;

  }
}

.service_title_01 {
  padding: 1% 5.5%;
  background: white
}

@media screen and (max-width: 991px) and (min-width: 760px) {
  .c-serviceList {
    max-width: 1400px;
    margin: 0 auto;
    margin-top: -10%;
    margin-left: 5.5%;
    margin-right: 5.5%;

  }
}

@media screen and (max-width: 760px) {
  .c-serviceList {
    max-width: 1400px;
    margin: 0 auto;
    margin-top: -20%;
    margin-left: 0;
    margin-right: 0;

  }

  .c-serviceList-add {
    margin-left: 2.5% !important;
    margin-right: 7% !important;
    margin-top: -10%;
  }
}


@media screen and (max-width: 760px) {
  .p-member02 .newItem {
    width: calc(100% / 2.1);
    padding: 1rem;
    background-color: #fff;
    margin-top: 10px;
  }
}

@media screen and (max-width: 760px) {
  .p-member02 .newItem2 {
    width: calc(100% / 2.1);
    padding: 10px 10px 10px 10px;
    background-color: #fff;
    border: 1px solid;
    margin-top: 10px;
    margin-left: 5px;
  }
}

.Message_style1_extra {
  display: flex;
  overflow-x: hidden;
  overflow-y: hidden;
  flex-wrap: wrap;
  padding: 0 0 6rem 0;
}
@media screen and (max-width: 760px) {
  .Message_style1_extra {
    display: flex;
    overflow-x: hidden;
    overflow-y: hidden;
    flex-wrap: wrap;
    padding: 0 0 0 0;
  }
}

@media screen and (max-width: 991px) {
  .p-voice {
    padding-top: 87px;
  }

  .p-qa {
    padding-top: 0;
  }

  .p-contact {
    padding-top: 0;
  }

  .p-recruit {
    margin-top: 0;
  }

  .p-about {
    margin-top: 0;
  }

  .p-about_groupContent dl dt {
    flex: 0 0 26%
  }

  .p-about_groupContent dl {
    font-size: 1rem;
    zoom: 0.9
  }

  .company_right dl dt {
    flex: 0 0 30% !important;
  }

  .t-recruit {
    padding: 10px 0 30px 0;
  }

  .accessStyle {
    margin-top: 60px
  }
}

.p-column__post1 {
  width: 60%;
  margin: 0;
}

.p-member__list_single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  margin-top: -3%;
  margin-left: 5.5%;
  margin-right: 5.2%;
}

@media screen and (max-width: 760px) {
  .c-qa-list {
    padding-top: 0;
  }

  .p-voice {
    padding-top: 24%;
  }

  .p-qa {
    padding-top: 0;
  }

  .p-contact {
    padding-top: 0;
  }

  .p-recruit {
  }

  .p-about_groupContent {
    flex-wrap: wrap;

  }

  .company_left {
    flex: 1 0 100% !important;
    padding-right: 0px !important;

  }

  .p-about_groupContent dl dt {
    flex: 0 0 24% !important;
    margin-right: 5px;
  }

  .company_right {
    padding-left: 0 !important;
    padding-top: 30px !important;
  }

  .t-recruitHead {
    font-size: 1.3rem;
    height: 30px;
  }


  .p-qa__content {
    padding: 0;

  }

  .accessStyle {
    margin-top: 0;
  }

  .p-about_historyContent dl {
    font-size: 1.2rem;
  }

  .term-excerpt {
    font-size: 1.4rem;
    margin-left: 5.5%;
  }

  .s-service .entry-content h3 {
    margin-top: 40px;
    font-size: 1.5rem;
    padding: 4px 15px;
  }

  .single-service {
    margin-top: 3%;
  }

  .service_content_add {
    margin-top: 20% !important;
  }

  .c-serviceList1 {
    max-width: 1400px;
    margin: 0 auto;
  }

  .term-description {
    margin-top: -1.5%;
    margin-left: 7.8%;
    margin-right: 8.8%;
    font-size: 14px;
  }

  .term-description—service {
    margin-left: 5% !important;
    margin-right: 5% !important;
    font-size: 12px;
  }


  .news_content_add {
    margin-top: 15px !important;
  }

  .p-new01 .c-new-content .c-list-news {
    margin-top: -10%;
    background: #fff;
  }

  .columns_content {
    margin-top: 3% !important;
  }

  .columns_content2 {
    margin-top: 1% !important;
  }

  .p-column__main .p-column__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 0 1rem 0;
  }

  .column_main02 {}

  .cloumn_sidebar02 {}

  .single-column-info {
    margin-top: 15px;
  }

  .p-column__post1 {
    width: 100% !important;
    padding: 0;

  }

  .column_sidebar02 {}

  .menber-content {
    margin-top: 1%;
  }

  .p-member__list_single {
    margin-left: 3%;
    margin-right: 3%;
  }

  .menber-single-content {
    margin-top: 15px;
  }
}

@media screen and (max-width: 991px) and (min-width: 760px) {
  .menber-single-content {
    margin-top: 1%;
  }

  .p-member__list_single {}

  .menber-content {
    margin-top: 1%;
  }

  .column_sidebar02 {
    width: 135%;
  }

  .p-column__post1 {
    margin-top: -6.5%;
    width: 200%;
  }

  .single-column-info {
    margin-top: 1%;
  }

  .cloumn_sidebar02 {
    width: 45%;
    margin-top: 0.5%;
  }

  .column_main02 {
    width: 45%;
  }

  .single-service {}

  .c-serviceList1 {
    max-width: 1400px;
    margin-right: 5.5%;
    margin-left: 5.5%;
    margin-top: -5%;
  }

  .term-excerpt {
    margin-left: 5.5%;
    margin-right: 5.5%;
    font-size: 1.5rem;
  }

  .s-service .entry-content p {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 0;
    margin-right: 2%;
  }

  .service_content_add {}

  .service_title_01 {
    padding: 1% 5%;
    background: white;
  }

  .term-description {
    margin-top: 2%;
    margin-left: 7.8%;
    margin-right: 8.8%;
    font-size: 15px;
  }

  .news_content_add {
    margin-top: 1% !important;
  }

  .p-new01 .c-new-content .c-list-news {
    margin-top: -10%;
    background: #fff;
  }

  .columns_content {
    margin-top: 2%;
  }

  .columns_content2 {
    margin-top: 1% !important;
  }

}

.menber-single-content {}

.target-fix {
  position: relative;
  top: -158px;
  display: block;
  height: 0;
  overflow: hidden;
}

.target-fix1 {
  position: relative;
  top: -100px;
  display: block;
  height: 0;
  overflow: hidden;
}

.p-voice01 .c-mainTitle {
  background: url('../images/mv/img_jc-mv-voice.png') no-repeat;
  background-size: cover;
  background-position: center center;
}

.p-voice01 {
  background-color: #fff;
}

.archiveVoice01 {
  background-color: #E4E8F1;
  padding: 30px 0 30px 0;
  margin-top: 30px;
}

.p-voice02 .c-mainTitle {
  background: url('../images/mv/img_jc-mv-voice.png') no-repeat;
  background-size: cover;
  background-position: center center;
}

.p-voice02 {
  background-color: #fff;
}

.template-sz-serviceList {
  width: 1400px;
  margin: 0 auto;
  padding: 6rem 0 6rem 0;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .Voicestyle {
  }

  .singleVoicestyle {
    margin-top: 60px
  }
}
@media screen and (max-width: 760px) {
  .Voicestyle {
  }

  .archiveVoice01 {
    margin-top: 15px;
    padding: 15px 0 15px 0
  }

  .singleVoicestyle {
    margin-top: 90px
  }

  .singleVoice-content h5 {
    font-size: 1.4rem;
    border-top: 0;
    margin-top: 0px;
    border-top: 0px dashed #ccc;
    padding: 5px;
  }

  .singleVoice-title h6 {
    border-bottom: 0px dashed #ccc;
    line-height: 15px;
  }

  .singleVoice {
    padding: 0
  }

  .singleVoice01 {
    padding: 15px 3% 0 3%
  }

  .template-sz-serviceList {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }
}

.columns_title_icon {
  border: 1px solid black;
  border-radius: 20px;
  height: 15%;
  margin-top: 3%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../images/top/news_more.png");
  background-repeat: no-repeat;
  background-position: right 5% center;
  background-size: 7%;
}

.page-entry {
  margin-left: 5.5%;
  margin-right: 5.5%;
}

.template-sz-service {
  padding: 0;
}

.menber-name {
  font-size: 1.8rem;
  font-weight: 500;
}

.menber-representative {
  height: 20px;
}

@media screen and (min-width: 991px) {
  .term-description—service {
    margin-left: 6% !important;
    margin-right: 8% !important;
  }

  .c-serviceList-add {
    margin-left: 4% !important;
    margin-right: 0.5% !important;
  }
}

.Youtube_text {
  padding: 0;
  margin: 0;
  border: 0;
  font-size: 1.44rem
}

.news_title {
  width: 90%;
  color: #92ab23;
  font-weight: bold;
  font-size: 2rem;
  padding: 2rem;
}

.news_title_readmore {
  width: 100px;
  color: black;
  font-size: 1.44rem;
  text-align: center
}

.StradaStyle {
  font-size: 1.38rem;
  padding: 2rem 0;
  line-height: 180%;
  border-top: 1px dotted #707070;
  border-bottom: 1px dotted #707070;
}

.contactStyle {
  padding: 15px;
  font-size: 1.44rem
}

.ssbtnwidth {
  padding-left: 5.5%;
  padding-right: 5.5%
}

.ssbtn {
  background: linear-gradient(45deg, #6e8311 30%, #92ab23 50%, #a5c80c 70%);
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 1rem 2rem;
  font-weight: bold;
  font-size: 2.4rem
}

.aboutcomstyle {
  margin-left: 5.5%;
  margin-right: 5.5%
}

.p-member__list_extra {
  margin-left: 5.5%;
  margin-right: 5.5%
}

.companyss {
  margin-left: 5.5%;
  margin-right: 5.5%
}

.recruit-contain_style {
  margin-left: 5.5%;
  margin-right: 5.5%
}

.contact_containStyle {
  margin-left: 5.5%;
  margin-right: 5.5%
}

@media screen and (max-width: 991px) {
  .StradaStyle {
    font-size: 1rem;
    zoom: 0.81
  }
  .c-qa-list__title {
    border: none;
    color: white;
    margin-bottom: 1rem;
    background-color: #92ab23;
  }
  .c-qa-list__title p {
    font-size: 1.5rem;
  }

  .c-qa__question--text {
    font-size: 1.3rem;
    padding-top: 3px;
  }

  .c-qa__question--icon,
  .c-qa__answer--icon {
    height: 30px;
    width: 30px;
  }

  .c-qa__answer--text {
    font-size: 1rem;
    zoom: 0.9;
    line-height: 16px
  }

  .accessChange {
    margin-left: 14.5px !important
  }

  .c-tlt02 h2 {
    font-size: 1.5rem
  }

  .p-about_historyContent dl {
    font-size: 1rem;
    zoom: 0.9
  }

  .contactStyle {
    font-size: 1rem;
    zoom: 0.9
  }

  .company_infomation {
    font-size: 1rem;
    zoom: 0.9;
  }

  .p-access .access-title {
    font-size: 2rem !important
  }

  .p-access .t-access_add {
    font-size: 1.4rem !important
  }

  .p-access_groupContent h3,
  .cm-ttl01 {
    font-size: 2rem
  }

  .p-access .access p {
    font-size: 1.4rem
  }
}

@media screen and (max-width: 767px) {
  .block_wrap {
    padding-top: 15px;
    padding-bottom: 15px
  }

  .title_item_wrap {
    margin: 0;
  }

  .node_wrap_show {
    padding: 0;
    margin: 0;
  }

  .block_wrap1 {
    padding-bottom: 4rem;
  }

  .title_item_wrap1 {
    margin: 0;
  }

  .node_wrap_show1 {
    margin-top: 15px
  }

  .block_wrap2 {
    padding-bottom: 2rem;
  }

  .title_item_wrap2 {
    margin: 0;
  }

  .node_wrap_show2 {
    padding: 0 3% 0 3%;
    margin-top: 15px
  }

  .block_wrap3 {
    padding-bottom: 4rem;
  }

  .title_item_wrap3 {
    margin: 0;
  }

  .node_wrap_show3 {
    padding: 0;
    margin-top: 0;
  }

  .block_wrap4 {
    padding-bottom: 4rem;
  }

  .title_item_wrap4 {
    margin: 0;
  }

  .block_wrap5 {
    padding-bottom: 4rem;
  }

  .title_item_wrap5 {
    margin: 0;
  }

  .block_wrap6 {
    padding-bottom: 4rem;
  }

  .title_item_wrap6 {
    margin: 0;
  }

  .block_wrap7 {
    padding-bottom: 4rem;
  }

  .title_item_wrap7 {
    margin: 0;
  }

  .block_wrap8 {
    padding-bottom: 4rem;
  }

  .title_item_wrap8 {
    margin: 0;
  }

  .block_wrap9 {
    padding-bottom: 4rem;
  }

  .title_item_wrap9 {
    margin: 0;
  }


  .Message_style1 {
    padding: 0 2rem;
  }

  .title_bg {
    margin: 0;
  }

  .reasonline1 {
    margin: 0;
    padding: 0;
  }

  .reasonline2 {
    margin: 0;
    padding: 0;
  }

  .reasonline3 {
    margin: 0;
    padding: 0;
  }

  .reason01_style1_span2 {
    font-size: 1.08rem
  }

  .reason02_style1_span2 {
    font-size: 1.08rem
  }

  .reason03_style1_span2 {
    font-size: 1.08rem
  }

  .reason04_style1_span2 {
    font-size: 1.08rem
  }

  .reason05_style1_span2 {
    font-size: 1.08rem
  }

  .reason06_style1_span2 {
    font-size: 1.08rem
  }

  .reason01_style1_p1 {
    line-height: 180%;
    zoom: 0.92
  }

  .reason02_style1_p1 {
    line-height: 180%;
    zoom: 0.92
  }

  .reason03_style1_p1 {
    line-height: 180%;
    zoom: 0.92
  }

  .reason04_style1_p1 {
    line-height: 180%;
    zoom: 0.92
  }

  .reason05_style1_p1 {
    line-height: 180%;
    zoom: 0.92
  }

  .reason06_style1_p1 {
    line-height: 180%;
    zoom: 0.92
  }

  .reason03_style1_img1 {
    margin-top: 8px
  }

  .reason04_style1_img1 {
    margin-top: 8px
  }

  .Message_style1_p1 {
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    zoom: 0.92;
    line-height: 180%;
    padding: 1rem 0 0 0;
  }

  .Message_style1_p2 {
    font-size: 1.84rem;
    line-height: 180%;
  }

  .Message_style1_p3 {
    zoom: 0.92;
    line-height: 180%;
    padding: 0 0 1rem 0;
  }

  .Message_style1_p4 {
    zoom: 0.92;
    line-height: 180%;
  }
  .Message_style1_p5 {
    zoom: 0.92;
    line-height: 180%;
  }
  .StradaStyle {
    zoom: 0.8;
  }

  .sixreasons_bg {
    margin-top: 0;
  }

  .reason02_style1 {
  }

  .reason04_style1 {
  }

  .reason06_style1 {
  }

  .p-voice .c-mainTitle {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .p-voice {
    padding-top: 0;
    margin: 0;
  }

  .c-voicePost {
    padding-left: 3%;
    padding-right: 0;
  }

  .c-voicePost .c-voicePost__tlt {
    font-size: 1rem;
  }

  .c-voicePost__text {
    font-size: 1rem;
    margin-top: 0px;
  }

  .c-voicePost .c-voicePost__name {
    font-size: 1rem;
    line-height: 1px;
  }

  .ssbtn {
    font-size: 1.3rem;
  }

  .ssbtnwidth {
    padding-left: 3%;
    padding-right: 3%;
  }

  .tempalte_menber-list {
    margin-left: 2.5% !important;
    margin-right: 2.5% !important;
  }

  .p-qa .c-mainTitle {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .qa_container {
    margin-top: 15px;
  }

  .p-qa {
    padding-top: 0;
    margin: 0;
  }

  .c-qa__question--icon,
  .c-qa__answer--icon {
    height: 25px;
    width: 25px;
  }

  .c-qa__question--text {
    font-size: 1.2rem;
    padding-top: 6px;
    line-height: 16px;
  }

  .c-qa__answer--text {
    zoom: 0.92;
  }

  .p-about .c-mainTitle {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .c-new-content {
    background: #f6fae6;
    margin: 0;
    padding: 0;
  }

  .p-about {
    padding: 0;
  }

  .c-qa-list:last-child {
  }

  div#企業概要 {
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 15px
  }

  .aboutcomstyle {
    margin: 0;
  }

  .p-about_group .c-tlt02--center {
    margin-bottom: 15px !important;
  }

  .company_right {
    padding-top: 15px !important
  }

  .p-member__list_extra {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .companyss {
    margin: 0;
  }

  .p-about_history .c-tlt02--center {
    margin-bottom: 15px !important
  }

  .p-member__list {
    margin-left: 0;
    margin-right: 0;
  }

  .p-recruit .c-mainTitle {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .p-recruit {
  }

  .t-recruitContent,
  .t-recruitContent2,
  .t-recruitContent3 {
    padding-top: 15px
  }

  .recruit-contain_style {
    margin-left: 3%;
    margin-right: 3%
  }

  .p-about_historyContent dl {
    zoom: 0.92
  }

  .contactStyle {
    zoom: 0.92
  }

  .company_infomation {
    zoom: 0.92;
    margin: 15px 3% 15px 3%
  }

  .t-recruitContent dl,
  .t-recruitContent2 dl,
  .t-recruitContent3 dl {
    font-size: 1rem;
    zoom: 0.92;
  }

  .t-recruitContent dl dt,
  .t-recruitContent2 dl dt,
  .t-recruitContent3 dl dt {
    flex: 0 0 15%;
  }

  .t-recruit {
    padding: 0 0 15px 0
  }

  .p-recruitBtn {
    margin-top: 15px
  }

  .contact_containStyle {
    margin-left: 3%;
    margin-right: 3%
  }

  .p-contact .c-mainTitle {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .p-contact {
    padding-top: 0;
  }

  .contactStyle {
    padding: 5px 15px 5px 15px
  }

  .company_left dl dt {
    margin: 0;
    text-align: left;
  }

  .company_right dl dt {
    margin-left: 0px !important;
    margin-right: 0px !important
  }

  .p-about_historyContent dl {
    padding: 1.5rem 2rem;
  }

  .p-access .c-mainTitle {

    margin-bottom: 15px
  }

  .Youtube_text {
    font-size: 1rem;
    zoom: 0.92
  }
}

.mob_access {
  margin-left: 5.5%;
  margin-right: 5.5%
}

.template-service-mainTitle {
  margin-left: 5.5%;
  margin-right: 5.5%;
  margin-top: -10%
}

.template-service-title {
  margin-left: 5.5%;
  margin-right: 5.5%;
  margin-top: 2rem;
  margin-bottom: 6rem;
  font-size: 1.5rem;
}

.c-new-content-service {
  background: #f6fae6;
  margin-top: 0 !important;
}

@media screen and (max-width: 767px) {
  .template-service-mainTitle {
    margin-left: 1rem;
    margin-right: 1rem;
    margin-top: 0;
  }

  .template-service-title {
    margin: 0;
    padding: 2rem 2rem;
    font-size: 1rem !important;
  }

  .c-new-content-service {
    background: #f6fae6;
    margin: 0;
  }

  .news_title {
    width: 85%;
    color: #92ab23;
    font-weight: bold;
    font-size: 1.5rem;
    padding: 1.5rem 2rem;
  }

  .news_title_readmore {
    width: 100px;
    color: black;
    font-size: 1rem;
    text-align: center;
    padding: 0.65rem 0 0 0;
  }

  .t-news_list_topbox .time {
    font-size: 1rem;
    line-height: 180%;
    padding: 0 1rem 0 0;
  }

  .menberTtile {
    padding: 0.9rem 2rem 1rem 2rem;
    line-height: 35px;
    font-weight: bold;
    font-size: 1.5rem;
    color: white;
    background-color: #92ab23;
  }

  .description_box {
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    display: -webkit-box;
    margin-top: 1%;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 150%;
    font-size: 1rem;
  }

  .p-column .c-tlt04 {
    padding: 0.9rem 0 1rem 2rem;
    background-color: #92ab23;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
  }

  .p-column .l-commonCategories {
    margin: 0;
    padding: 0;
  }

  .p-column .c-list__cat li a {
    display: block;
    padding: 0;
    color: #333;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
  }

  .menberTtile3 {
    padding: 0 2rem;
    line-height: 40px;
    font-weight: bold;
    font-size: 1.5rem;
    color: white;
    background: #92ab23;
    width: 100%;
    margin-top: 2%;
  }

  .menber-representative {
    height: 20px;
    font-size: 10px;
  }

  .menber-name {
    font-size: 1.3rem;
    font-weight: 500;
  }

  .c-job {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 1rem 0;
    font-size: 10px;
  }

  .p-news__post {
    margin-left: 3%;
    margin-right: 3%;
    padding-bottom: 2%;
  }

  .p-news__post .box {
    padding: 20px;
    background-color: #fff;
    margin-top: 20px;
  }

  .c-new__date {
    font-size: 10px;
  }

  .single_title {
    font-size: 1.5rem;
    line-height: 20px;
    font-weight: bold;
  }

  .p-column__post .box p {
    margin-bottom: 20px;
    font-size: 1.44rem;
    line-height: 27px;
    text-align: justify;
  }

  .service_title_01 {
    background: white;
    margin-left: 3%;
    margin-right: 3%;
    font-size: 10px;
    padding: 0;
  }

  .service-line-bottom2 {
    height: 1px;
    margin-top: 10px;
    border-width: 1px;
    border-bottom: gray 1px dotted;
    background: #D5D5D5;
    margin-left: -1px;
  }

  .p-column__post .box .date {
    margin-right: 20px;
    color: #8e8e8e;
    font-size: 1.2rem;
    font-weight: bold;
  }

  .p-column__post .box .cat {
    padding: 2px 10px;
    background-color: #92ab23;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
  }

  .p-column__post .box ._content ul li {
    margin-bottom: 5px;
    font-size: 1.2rem;
  }

  .wp-block-table .has-fixed-layout td,
  .wp-block-table .has-fixed-layout th {
    word-break: break-word;
    font-size: 1.2rem;
  }

  .c-member_main .bio {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .p-column .l-commonPopular-Article {
    margin-bottom: 30px;
    margin-left: -3%;
    margin-right: -3%
  }

  .service_title_icon_archive {
    border: 1px solid black;
    border-radius: 20px;
    display: flex;
    margin-top: 5px;
    height: 12%;
    font-size: 1.2rem;
    font-weight: 400;
    justify-content: center;
    align-items: center;
    background-image: url("../images/top/news_more.png");
    background-repeat: no-repeat;
    background-position: right 3% center;
    background-size: 10%;
  }

  .p-member02__box .txt .content {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: left;
  }
}

.service_title_icon_archive {
  border: 1px solid black;
  border-radius: 20px;
  display: flex;
  height: 15%;
  justify-content: center;
  align-items: center;
  background-image: url("../images/top/news_more.png");
  background-repeat: no-repeat;
  background-position: right 3% center;
  background-size: 10%;
}

@media screen and (max-width: 767px) {
  .mob_access {
    margin: 0;
  }

  .p-access .accessbox {
    padding: 15px 0px !important;
  }

  .p-access .t-access_content {
    margin-right: 0px;
  }

  .p-access .access-title {
    font-size: 1.5rem !important
  }

  .t-access_content h4 {
    font-size: 1.6rem
  }

  .p-access .t-access_add {
    font-size: 1.4rem !important;
    line-height: 180%;
  }

  .accstyle {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .p-access_groupContent h3,
  .cm-ttl01 {
    font-size: 1.5rem;
    line-height: 140%;
    padding: 0 0 0 1rem;
    font-weight: bold;
  }

  .p-access .access p {
    font-size: 1rem;
  }

  .c-breakcrumds {
    height: 40px;
    margin-top: 0;
    padding: 0 2rem 0 2rem;
  }

  .menber_single-width {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .single_p-member02__box {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 2rem;
  }

  .pagination .m-prev {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

  .pagination .pn-numbers {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

  .pagination .pn-prev {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

  .pagination .current {
    width: 20px;
    height: 20px;
    font-size: 10px;

  }

  .pagination .pn-next {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

  .pagination .m-next {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

  .has-medium-font-size-new {
    font-size: 14px !important;
  }
}

.search_content {
  height: auto;
  width: 90%;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 5%;
  top: 149px;
  z-index: 9999;
  display: none;
}

.search_content_a {
  display: none;
}


@keyframes slide-down {
  0% {
    transform: scale(1, 0);
  }

  100% {
    transform: scale(1, 1);
  }
}

@-webkit-keyframes slide-down {
  0% {
    -webkit-transform: scale(1, 0);
  }

  100% {
    -webkit-transform: scale(1, 1);
  }
}

.search_content_show {
  display: block;
  max-height: auto;
  transition: max-height .3s ease-in;
  transform-origin: 50% 0;
  animation: slide-down 0.3s ease-in;
  -webkit-animation: slide-down 0.3s ease-in;
  -webkit-transition: max-height .3s ease-in;
  -moz-transition: max-height .3s ease-in;
  -ms-transition: max-height .3s ease-in;
  -o-transition: max-height .3s ease-in;
}

.search_content a {
  text-decoration: none;
}

.search_content_style {
  font-size: 2rem;
  text-align: center;
  border-radius: 10px;
  margin: 10px;
  background-color: #92ab23;
  color: #fff;
}


.search_content_style1 {
  display: flex;
  border-radius: 10px;
  border: 1px solid black;
  margin: 10px;
}

.search_content_style1_1 {
  width: 97%;
}

.menber_single-width {
  margin-left: 5.5%;
  margin-right: 5.5%;
}

.search_content_style1_2 {
  width: 3%;
}

.single_p-member02__box {
  margin-left: 5.5%;
  margin-right: 5.5%;
}

.search_content_style1_1 input {
  width: 100%;
  height: 100%;
  font-size: 2rem;
  border-radius: 10px 0px 0px 10px;
  border: 0;
  background-color: #F3F5F6;
  outline: none;
}

.pagination {
  margin: 4rem 0 4rem 0;
}

@media screen and (max-width: 767px) {
  {
    margin: 2rem 0 2rem 0;
  }
}

.search_content_style1_2 button {
  width: 100%;
  height: 100%;
  border-radius: 0px 10px 10px 0px;
  border: 0;
  cursor: pointer;
  background-color: #F3F5F6;
}

.search_content_style1_1 input::-webkit-input-placeholder {
  /*padding-left: 8px;*/
  font-size: 2rem;
}

.has-medium-font-size-new {
  font-size: 20px;
  color: #92ab23 !important;
}

/**2023 08 10 footer**/
.l-footer_info {
  display: none;
}

@media screen and (max-width: 767px) {
  .l-footer_info {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    background: #fff;
    padding: 5px 0px;
  }

  .l-footer_phone {
    height: 40px;
    width: 30%
  }

  .l-footer_phone p {
    display: block;
    position: relative;
    width: 115px;
    height: 15px;
    margin-bottom: 1px;
    border-radius: 25px;
    background: #92ab23;
    color: #fff;
    font-size: 1rem;
    line-height: 15px;
    text-align: center;
  }

  .l-footer_phone p:after {
    position: absolute;
    bottom: -4px;
    left: calc(50% - 5px);
    /*width: 5px;
    height: 5px;*/
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background: #92ab23;
    content: "";
  }

  .l-footer_phone .time {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-decoration: none;
    opacity: 1;
  }

  .l-footer_phone .time img {
    width: 33px;
    height: auto;
    padding-top: 3px;
  }

  .l-footer_h-phone .time span {
    display: block;
    color: #333;
    font-size: 0.9rem;
    font-weight: bold;
    line-height: 1;
  }

  .l-footer_phone .time small {
    display: block;
    font-size: 0.6rem;
    line-height: 6px;
  }

  .l-footer_mail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 2%;
    width: 30%
  }

  .l-footer_mail a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 120px;
    height: 40px;
    border-radius: 5px;
    background: #fbd434;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .l-footer_mail a:hover {
    opacity: 0.7;
  }

  .l-footer_mail a img {
    width: 15px;
    height: auto;
    margin-right: 5px;
  }

  .l-footer_mail a span {
    color: #333;
    font-size: 1rem;
    zoom: 0.8;
    font-weight: bold;
    line-height: 15px
  }

  /*.l-footer_mail.l-footer_mail--1 a {
    width:120px
  }*/
  .l-footer_mail.l-footer_mail--2 a {
    background: #26A69A;
    padding-left: 2px;
    padding-right: 2px
  }

  .l-footer_mail.l-footer_mail--2 a span {
    color: #fff;
  }

  .l-footer_mail.l-footer_mail--2 a img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(158deg) brightness(103%) contrast(101%);
  }

  .l-footer_mail.l-footer_mail--3 a {
    background: #00A75B;
  }

  .l-footer_mail.l-footer_mail--3 a span {
    color: #fff;
  }

  .l-footer_h-mail.l-footer_mail--3 a img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(158deg) brightness(103%) contrast(101%);
  }

  .l-footer_mail.l-footer_mail--4 a {
    width: 60px;
    background-color: #f6f6f6;
  }

  .l-footer_mail.l-footer_mail--4 a span {
    color: #fff;
  }

  .l-footer_mail.l-footer_mail--4 a img {
    width: 60px;
  }

  .muriosodan {
    padding-left: 2px
  }

  .muriosodan_tel {
    line-height: 15px;
    font-size: 1rem;
    zoom: 0.96;
    font-weight: bold;
    color: #000;
  }

  .muriosodan_jikan {
    line-height: 10px;
    font-size: 1rem;
    zoom: 0.6;
    color: #000
  }
}

/**2023 08 10 footer**/

/**2023 08 13 header**/
@media screen and (max-width: 991px) {
  .h-mail a {
    height: 35px;
  }

  .h-phone {
    display: none;
  }

  .h-mail.h-mail--1 {
    display: none;
  }

  .h-mail.h-mail--2 {
    display: none;
  }

  .h-mail.h-mail--3 {
    display: none;
  }

  .h-mail.h-mail--4 a {
    width: 45px;
    /*background-color: #f6f6f6;*/
  }

  .h-mail.h-mail--4 img {
    width: auto;
    height: 45px;
  }

  .h-mail.h-mail--5.search_icon {
    width: 45px;
    height: auto;
  }

  .search_icon {
    width: 40px;
    height: auto
  }

  .h-logo img {
    width: auto;
    height: 45px
  }

  .search_content {
    top: 120px;
  }

  .search_content_a {
    display: block;
  }
}

.singleService .c-back-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  max-width: 1400px;
  height: 50px;
  margin-top: 42px;
  margin-right: auto;
  margin-left: auto;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 27px;
  text-decoration: none;
  background: #92ab23;
}

@media screen and (max-width: 767px) {
  .h-mail a {
    height: 35px;
  }

  .h-phone {
    display: none
  }

  .h-mail.h-mail--1 {
    display: none
  }

  .h-mail.h-mail--2 {
    display: none
  }

  .h-mail.h-mail--3 {
    display: none
  }

  .h-mail {
    margin-left: 5px
  }

  .h-mail.h-mail--4 a {
    width: 40px;
    /*background-color: #f6f6f6;*/
  }

  .h-mail.h-mail--4 a img {
    width: auto;
    height: 35px;
  }

  .h-mail.h-mail--5.search_icon {
    width: 35px;
    height: auto;
  }

  .search_icon {
    width: 30px;
    height: auto
  }

  .h-logo img {
    width: auto;
    height: 35px
  }

  .search_content {
    top: 80px;
  }

  .search_content_a {
    display: block;
  }

  .c-breakcrumds div {
    line-height: 10px
  }

  .c-breakcrumds span {
    line-height: 10px
  }

  .singleVoice-title h5 {
    line-height: 15px;
  }

  .singleVoice-content {
    padding-bottom: 10px;
    padding-top: 5px;
  }

  .more-content p {
    font-size: 1.5rem
  }

  .search_content_style1_2 {
    width: 10%;
  }

  .template-column_add {
    margin-left: 3% !important;
    margin-right: 3% !important;
    margin-top: -22% !important;
    margin-bottom: 0px !important;
  }

  .singleService .c-back-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    height: 50px;
    margin-top: 42px;
    margin-right: auto;
    margin-left: auto;
    background: #92ab23;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 27px;
    text-decoration: none;
  }
}

/**2023 08 13 header**/

.p-service {
  background-color: #fff;
}

.p-member02 {
  background-color: #fff;
}

.p-new01 {
  background-color: #fff;
}

.p-column {
  background-color: #fff;
}

.template-column_add {
  margin-left: 5.5%;
  margin-right: 5.5%;
  margin-top: -10%;
}

/* //事業内容二列表示 */
body .is-layout-flex>* {
  margin: 0;
  width: 50%;
}

body .is-layout-flex {
  gap: 5em !important
}

@media screen and (max-width: 767px) {
  body .is-layout-flex>* {
    margin: 0;
    width: 100%;
  }

  .wp-container-3.wp-container-3,
  .wp-container-6.wp-container-6,
  .wp-container-9.wp-container-9,
  .wp-container-12.wp-container-12,
  .wp-container-15.wp-container-15,
  .wp-container-18.wp-container-18 {
    flex-wrap: wrap !important;
  }
}

/* ----------------------------------------------------------------------------------
　Search
---------------------------------------------------------------------------------- */
.search_words {
  background-color: yellow;
}

.search-title {
  background-color: #DCDDDD;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.search-title1 {
  position: relative;
  font-size: 4rem;
  font-weight: bold;
  line-height: 32px;
  text-align: center;
}

.search-title2 {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  line-height: 32px;
  text-align: center;
}

.search-content {
  background: #F4F4F4;
  margin: 25px 0 25px 0;
  padding: 25px 120px 0px 120px;
}

.search-content2 {
  background: #FFFFFF;
  padding: 15px 25px 15px 25px;
}

.search-result-diva {
  padding: 15px 0px 0px 0px;
}

.search-result-a {
  text-decoration: none;
  color: inherit;
}

.search-result-title {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;

}

.search-result-title1 {

  background: #92ab23;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  padding: 0px 10px 0px 10px;
  margin-right: 10px;
  border-radius: 5px;
}

.search-result-title2 {
  font-size: 1.5rem;
}

.search-result-content {
  font-size: 1.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-page {
  padding: 10px 0px 10px 0px;
}

.search-nodata {
  padding-top: 20px;
  font-size: 2rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .search-title {
    height: 75px;
  }

  .search-title1 {
    font-size: 2rem;
    line-height: 16px;
  }

  .search-title2 {
    font-size: 1rem;
    line-height: 16px;
  }

  .search-content {
    background: #F4F4F4;
    margin: 15px 0 15px 0;
    padding: 15px 0px 0px 0px;
  }

  .search-content2 {
    background: #FFFFFF;
    padding: 5px 15px 5px 15px;
  }

  .search-result-diva {
    padding: 5px 0px 0px 0px;
  }

  .search-result-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .search-result-title1 {
    font-size: 1.0rem;
  }

  .search-result-title2 {
    font-size: 1.0rem;
  }

  .search-result-content {
    font-size: 1.0rem;
    height: 50px;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

@media screen and (max-width: 991px) {
  .search-title {
    height: 75px;
  }

  .search-title1 {
    font-size: 2rem;
    line-height: 16px;
  }

  .search-title2 {
    font-size: 1rem;
    line-height: 16px;
  }

  .search-content {
    background: #F4F4F4;
    margin: 15px 0 15px 0;
    padding: 15px 0px 0px 0px;
  }

  .search-content2 {
    background: #FFFFFF;
    padding: 5px 15px 5px 15px;
  }

  .search-result-diva {
    padding: 5px 0px 0px 0px;
  }

  .search-result-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .search-result-title1 {
    font-size: 1.0rem;
  }

  .search-result-title2 {
    font-size: 1.0rem;
  }

  .search-result-content {
    font-size: 1.0rem;
    height: 40px;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

/* ----------------------------------------------------------------------------------
　headerHide
---------------------------------------------------------------------------------- */
#header {
  transform: translateY(0);
  transition: all 0.3s ease;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2)
}

#header.hide {
  transform: translateY(-100%);
}

/*----------end headerHide----------*/

/* ----------------------------------------------------------------------------------
　privacyPolicy
---------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------
　privacyPolicy
---------------------------------------------------------------------------------- */
.privacyPolicy .privacyPolicyBox {
  background: #f6fae6 !important;
  padding: -30px 15px
}

.mob_privacyPolicy {
  margin-left: 5.5%;
  margin-right: 5.5%
}

.privacyPolicy-main {
  width: 100%;
  margin: -60px auto;
  padding: 30px 0px 10px 34px;
}

.privacyPolicy-main h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  font-weight: bold;
}

.privacyPolicy-main p {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .privacyPolicy .privacyPolicyBox {
    padding: 5px 0px
  }

  .privacyPolicy-main {
    margin: -60px auto;
    padding: 15px 0;
  }

  .privacyPolicy-main h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .mob_privacyPolicy {
    margin-left: 3%;
    margin-right: 3%
  }

  .privacyPolicyStyle {
    margin-top: 80px
  }

  .privacyPolicy-main p {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 15px;
  }
}

/*----------end privacyPolicy----------*/
/* ----------------------------------------------------------------------------------
　privacyStatement
---------------------------------------------------------------------------------- */
.privacyStatement .privacyStatementBox {
  background: #f6fae6 !important;
  padding: -30px 15px
}

.mob_privacyStatement {
  margin-left: 5.5%;
  margin-right: 5.5%
}

.privacyStatement-main {
  width: 100%;
  margin: -60px auto;
  padding: 30px 0px 10px 34px;
}

.privacyStatement-main h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: bold;
  background-color: #92ab23;
  color: #fff;
  width: 100%;
  padding: 5px 15px;
}

.privacyStatement-main p {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 30px;
  padding: 5px 15px;
  background: #fff;
}

.c-line-dotted {
  border: none;
  height: 1px;
  border-width: 1px;
  border-bottom: gray 1px dotted;
  background: #D5D5D5;
}


@media only screen and (max-width: 767px) {
  .privacyStatement .privacyStatementBox {
    padding: 5px 0px
  }

  .privacyStatement-main {
    margin: -60px auto;
    padding: 15px 0;
  }

  .privacyStatement-main h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    padding: 2px 5px;
  }

  .mob_privacyStatement {
    margin-left: 3%;
    margin-right: 3%
  }

  .privacyStatementStyle {
    margin-top: 80px
  }

  .privacyStatement-main p {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 15px;
    padding: 2px 5px;
    background: #fff;
  }
}


/*----------end privacyStatement----------*/
/*----------strat reciuit----------*/
.l-thanks {
  text-align: center;
}

.l-reciuit .c-form {
  padding: 0px 15px 0px 15px;
}

.c-form .row select {
  width: 100%;
  height: 45px;
  border-radius: 8px;
  border: 2px solid #CCCCCC;
  padding: 0 15px;
  outline: none;
  font-size: 1.6rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("../images/common_sz/arrow_down.png") left center no-repeat;
  background-size: 10px;
  background-color: #fff
}

.c-form .row select::-ms-expand {
  display: none;
}

@media only screen and (max-width: 767px) {
  .c-form .row select {
    width: 100%;
    height: 45px;
    border-radius: 8px;
    border: 2px solid #CCCCCC;
    padding: 0 15px;
    outline: none;
    font-size: 1rem;
  }
  .l-reciuit .c-form {
    padding: 0px 15px 0px 15px;
  }

  .l-reciuit .c-form .row select {
    width: 100%;
    height: 30px;
    border-radius: 8px;
    border: 1px solid #CCCCCC;
    padding: 0 15px;
    outline: none;
    font-size: 1.3rem;
    -webkit-border-radius: 8px;
  }

  .l-reciuit .c-form .row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 2rem;
  }

  .l-reciuit dd {
    width: 100%;
  }
}

@media only screen and (max-width: 991px) {
  .l-reciuit .c-form {
    padding: 0px 15px 0px 15px;
  }
}

/*----------end reciuit----------*/
/*----------start 追加 CSS クラス p-news__post-----------*/
.p-news__post h3 {
  margin-top: 60px;
  font-size: 2.2rem;
  background: linear-gradient(to right, #92ab23 40%, #2170ca 80%, #f6fae6 100%);
  color: #fff;
  line-height: 1.6;
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 0;
  width: 100%;
}

.p-news__post p {
  margin-top: 30px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .p-news__post h3 {
    margin-top: 40px;
    font-size: 1.5rem;
    padding: 4px 15px;
  }

  .p-news__post p {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 0;
  }

  .f-copyright {
    margin-bottom: -60px;
  }
}

/*----------end 追加 CSS クラス p-news__post-----------*/
.service-line-bottom1 {
  height: 1px;
  margin-top: 30px;
  border-width: 1px;
  border-bottom: gray 1px dotted;
  background: #D5D5D5;
}

.c-line-bottom1 {
  border: none;
  height: 1px;
  margin-top: 30px;
  border-width: 1px;
  border-bottom: gray 1px dotted;
  background: #D5D5D5;
}

.c-line-bottom2 {
  border: none;
  height: 1px;
  margin-top: 5px;
  border-width: 1px;
  border-bottom: gray 1px dotted;
  background: #D5D5D5;
}

/*----------Strat Price-----------*/
.l-primary {
  background-color: #f6fae6;
  padding-top: 30px;
}

.price_style {
  margin-left: 5.5%;
  margin-right: 5.5%;
}

.t-price {
  background-color: white;
}

.t-price p {
  margin-top: 30px;
  margin-bottom: 30px;
}

.price_head {
  text-align: left !important;
  color: white !important;
  background: linear-gradient(90deg, #92ab23, #F3F5F6) !important;
  margin-bottom: 30px !important;
  font-size: 2.2rem;
  font-weight: bold;
  padding-left: 10px;
}

.t-price .has-text-align-center {
  border: 1px solid black !important;
  background-color: #F3F5F6;
}

.t-price thead {
  border: none !important;
}

.price_note {
  background-color: white !important;
  padding: 10px 0 !important;
}

.price_note {
  margin-left: 5.5%;
  margin-right: 5.5%;
  font-size: 1.44rem;
  line-height: 24px;
}

.t-price strong {
  font-weight: bold !important;
}

.c-price {
  background: url('../images/mv/img_jc-mv-fees.png?v=20250709') no-repeat;
  background-size: cover;
  background-position: center center;
  margin-left: 5.5%;
  margin-right: 5.5%;
}

.priceStyle {
  margin-top: 30px
}

.price_note1 {
  font-size: 1.44rem;
  line-height: 24px;
  margin-top: 10px !important;
  margin-bottom: 0px !important;
}

.left_heading {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 5px solid #92ab23;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  border-bottom: 1px dotted;
  padding-bottom: 10px;
}

.left_heading_span {
  font-size: 1.44rem !important;
  padding-left: 15px;
  font-weight: normal;
}

.is-style-stripes {
  margin: 0;
  padding-bottom: 4rem;
}

.wp-block-table.is-style-stripes {
  border-bottom: 0px !important;
}

.is-style-stripes1 {
  padding-bottom: 0px
}

.body1 .has-text-align-centerh10 {
  text-align: center;
  vertical-align: middle;
  color: #000000 !important;
  background-color: #EFEFEF !important;
  border: 1px solid black !important;
  width: 10%;
  font-size: 1.44rem;
  line-height: 1.2;
}

.body1 .has-text-align-center10 {
  text-align: center;
  color: #000000 !important;
  border: 1px solid black !important;
  background-color: #fff !important;
  width: 10%;
  font-size: 1.44rem;
  padding-left: 0;
  padding-right: 0;
}

.body1 .has-text-align-center15 {
  text-align: center;
  color: #000000 !important;
  border: 1px solid black !important;
  background-color: #fff !important;
  width: 15%;
  font-size: 1.44rem;
}

.body1 .has-text-align-center18 {
  text-align: center;
  color: #000000 !important;
  border: 1px solid black !important;
  background-color: #fff !important;
  width: 18%;
  font-size: 1.44rem;
}

.body1 .has-text-align-center30 {
  text-align: center;
  color: #000000 !important;
  border: 1px solid black !important;
  background-color: #fff !important;
  width: 30%;
  font-size: 1.44rem;
}

.body1 .has-text-align-center33 {
  text-align: center;
  color: #000000 !important;
  border: 1px solid black !important;
  background-color: #fff !important;
  width: 33%;
  font-size: 1.44rem;
}

.body1 .has-text-align-center34 {
  text-align: center;
  color: #000000 !important;
  border: 1px solid black !important;
  background-color: #fff !important;
  width: 34%;
  font-size: 1.44rem;
}

.body1 .has-text-align-center45 {
  text-align: center;
  color: #000000 !important;
  border: 1px solid black !important;
  background-color: #fff !important;
  width: 45%;
  font-size: 1.44rem;
}

.body1 .has-text-align-center90 {
  padding-left: 15px;
  vertical-align: middle;
  color: #000000 !important;
  border: 1px solid black !important;
  background-color: #fff !important;
  width: 90%;
  font-size: 1.44rem;
}

.body1 .has-text-align-center1125 {
  text-align: center;
  color: #000000 !important;
  border: 1px solid black !important;
  background-color: #fff !important;
  width: 11.25%;
  font-size: 1.44rem;
}

.has-text-align-center3 {
  width: 15%;
  text-align: center;
  color: black !important;
  border-right: 1px solid #ccc !important;
  border-bottom: 1px solid #ccc !important;
  background-color: #f4f4f4 !important;
  font-size: 1.44rem;
}

.has-text-align-center4 {
  text-align: center;
  color: black !important;
  border-right: 1px solid #ccc !important;
  border-bottom: 1px solid #ccc !important;
  background-color: #fff !important;
  font-size: 1.44rem;
}

.has-text-align-center5 {
  text-align: center;
  font-weight: bold;
  color: #fff !important;
  background-color: #92ab23 !important;
  border-right: 1px solid #ccc !important;
  border-bottom: 1px solid #ccc !important;
  width: 50%;
  font-size: 1.44rem;
}

@media screen and (max-width: 767px) {
  .c-price {
    margin-left: 3%;
    margin-right: 3%;
  }

  .price_style {
    margin-left: 3%;
    margin-right: 3%;
  }

  .priceStyle {
    margin-top: 15px
  }

  .price_head {
    font-size: 1.5rem;
    margin-bottom: 15px !important
  }

  .price_note {
    font-size: 1rem;
    zoom: 0.92;
    line-height: 16px;
    margin-left: 3%;
    margin-right: 3%;
  }

  .t-price p {
    margin-top: 15px;
    margin-bottom: 15px
  }

  .price_note1 {
    font-size: 1rem;
    zoom: 0.92;
    line-height: 16px;
  }

  .t-price .has-text-align-center {
    border: 0.84px solid black !important;
  }

  .has-text-align-left {
    border: 0.84px solid black !important;
  }

  .body1 .has-text-align-centerh10 {
    border: 0.84px solid black !important;
  }

  .body1 .has-text-align-center10 {
    border: 0.84px solid black !important;
  }

  .body1 .has-text-align-center15 {
    border: 0.84px solid black !important;
  }

  .body1 .has-text-align-center18 {
    border: 0.84px solid black !important;
  }

  .body1 .has-text-align-center30 {
    border: 0.84px solid black !important;
  }

  .body1 .has-text-align-center33 {
    border: 0.84px solid black !important;
  }

  .body1 .has-text-align-center34 {
    border: 0.84px solid black !important;
  }

  .body1 .has-text-align-center45 {
    border: 0.84px solid black !important;
  }

  .body1 .has-text-align-center90 {
    border: 0.84px solid black !important;
  }

  .body1 .has-text-align-center1125 {
    border: 0.84px solid black !important;
  }

  .left_heading {
    font-size: 1.4rem;
    padding-left: 1rem;
    border-left: 5px solid #92ab23;
    line-height: 100%;
  }

  .left_heading_span {
    font-size: 1rem !important;
  }

  .is-style-stripes {
    padding-bottom: 15px
  }

  .body1 .has-text-align-centerh10 {
    font-size: 1rem;
    zoom: 0.8;
  }

  .body1 .has-text-align-center10 {
    font-size: 1rem;
    zoom: 0.8;
  }

  .body1 .has-text-align-center15 {
    font-size: 1rem;
    zoom: 0.8;
  }

  .body1 .has-text-align-center18 {
    font-size: 1rem;
    zoom: 0.8;
  }

  .body1 .has-text-align-center30 {
    font-size: 1rem;
    zoom: 0.8;
  }

  .body1 .has-text-align-center33 {
    font-size: 1rem;
    zoom: 0.8;
  }

  .body1 .has-text-align-center34 {
    font-size: 1rem;
    zoom: 0.8;
  }

  .body1 .has-text-align-center45 {
    font-size: 1rem;
    zoom: 0.8;
  }

  .body1 .has-text-align-center90 {
    font-size: 1rem;
    zoom: 0.8;
  }

  .body1 .has-text-align-center1125 {
    font-size: 1rem;
    zoom: 0.8;
  }
}


/*----------End Price-----------*/

/** 2024-3-20 stone add ->tr -> Strada Group*/

.Group_style1_extra {
  display: flex;
  overflow-x: hidden;
  overflow-y: hidden;
  flex-wrap: wrap;
}

.Group_style1 {
  width: 49%;
  padding-left: 3.5%;
  height: auto;
}

.Group_style1_p1 {
  font-weight: bold;
  color: black;
  font-size: 28px;
  margin-left: 1%;
  line-height: 1.2;
}

.Group_style1_p2 {
  font-weight: bold;
  color: black;
  font-size: 28px;
  margin-left: 5%;
  line-height: 1.2;
}

.Group_style2 {
  width: 49%;
  /*height: 330px;*/
  margin-left: 1%;
  padding-right: 4.5%;
}

.Group_youtube_style1 {
  width: 100%;
  height: 43%;
}

.circle-container {
  margin-top: -5%;
  position: relative;
  height: 100%;
  border-radius: 50%;
  background-image: url(../images/common/groupImg.png);
  /* background-color: lightblue; */
  background-size: 95%;
  width: auto;
  margin-left: 2%;
  background-repeat: no-repeat;
}

.image_div {
  background-color: #DCDDDD;
  margin-left: 5%;
  margin-top: 30px;
  height: 620px;
  border-radius: 10px;
}

.youtube_div {
  margin-top: 30px;
  padding: 0 0 0 1%;
  display: grid;
}

.circle10 {
  position: absolute;
  top: 32%;
  left: 34%;
  width: 34%;
  height: 34%;
  border-radius: 50%;
  /*background-color: white;*/
}

.circle100 {
  position: absolute;
  top: 28%;
  left: 28%;
  width: 17%;
  height: 16%;
  border-radius: 30%;
  /* background-color: #7b4646; */
  transform-origin: 120% 120%;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.floating-div {
  position: absolute;
  left: 21.5%;
  width: 14%;
  height: 60%;
  background-color: red;
  border-radius: 50%;
  margin-top: 9.5%;
}

.StradaStyle_div {
  margin-top: 2%;
  width: 100%;
  height: 55%;
}

.title_div_p {
  padding: 3%;
}


.circle100:nth-child(1) {
  transform: rotate(0deg) translateY(-50%) translateX(-50%);
}

.circle100:nth-child(2) {
  transform: rotate(45deg) translateY(-50%) translateX(-50%);
}

.circle100:nth-child(3) {
  transform: rotate(90deg) translateY(-50%) translateX(-50%);
}

.circle100:nth-child(4) {
  transform: rotate(135deg) translateY(-50%) translateX(-50%);
}

.circle100:nth-child(5) {
  transform: rotate(180deg) translateY(-50%) translateX(-50%);
}


.circle100:nth-child(6) {
  transform: rotate(225deg) translateY(-50%) translateX(-50%);
}

.circle100:nth-child(7) {
  transform: rotate(270deg) translateY(-50%) translateX(-50%);
}

.circle100:nth-child(8) {
  transform: rotate(315deg) translateY(-50%) translateX(-50%);
}

.StradaStyle_span1 {
  line-height: 180%;
  color: #153d6e;
  font-weight: bold;
}

.StradaStyle_span2 {
  line-height: 180%;
  color: #00a159;
  font-weight: bold;
}

.StradaStyle_span3 {
  line-height: 180%;
  color: #684799;
  font-weight: bold;
}

.StradaStyle_span4 {
  line-height: 180%;
  color: #e17401;
  font-weight: bold;
}

.StradaStyle_span5 {
  line-height: 180%;
  color: #b3752a;
  font-weight: bold;
}

.StradaStyle_span6 {
  line-height: 180%;
  color: #808C96;
  font-weight: bold;
}

.StradaStyle_span7 {
  line-height: 180%;
  color: #b8183f;
  font-weight: bold;
}

.StradaStyle_span8 {
  line-height: 180%;
  color: black;
  font-weight: bold;
}

.StradaStyle_span9 {
  line-height: 180%;
  color: #221815;
}
.StradaStyle_span10 {
  line-height: 1.1;
  color: #92ab23;
  font-weight: bold;
}

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

  .Group_style1 {
    width: 100%;
    padding-left: 2%;
    padding-right: 2%;
    height: auto;
  }

  .Group_style2 {
    width: 100%;
    height: 100%;
    padding-left: 2%;
    padding-right: 2%;
  }

  .circle-container {
    height: 330px;
  }

  .Group_style1_p1 {
    font-size: 19px;
  }

  .Group_style1_p2 {
    font-size: 18px;
  }

  .Group_youtube_style1 {
    width: 100%;
  }

  .image_div {
    margin-left: 1%;
    margin-right: 1%;
    margin-top: 10px;
    height: 380px;

  }

  .youtube_div {
    margin-top: 10px;
    display: grid;
    padding: 0 2% 0 0;
  }

  .StradaStyle_div {
    margin-top: 2%;
  }

  .StradaStyle:span {
    font-size: 10px;
  }

  .circle10 {
    position: absolute;
    top: 35%;
    left: 33%;
    width: 34%;
    height: 34%;
    border-radius: 50%;
    /*background-color: white;*/
  }

  .circle100 {
    top: 30%;
    left: 24%;
    width: 20%;
    height: 20%;
    border-radius: 30%;
    /*background-color: white;*/
    transform-origin: 110% 110%;
  }
}

/*----------strat reciuit----------*/
.l-thanks {
  text-align: center;
}

.l-reciuit .c-form {
  padding: 0px 15px 0px 15px;
}

.c-form .row select {
  width: 100%;
  height: 45px;
  border-radius: 8px;
  border: 2px solid #CCCCCC;
  padding: 0 15px;
  outline: none;
  font-size: 1.6rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("../images/common_sz/arrow_down.png") left center no-repeat;
  background-size: 10px;
  background-color: #fff
}

.c-form .row select::-ms-expand {
  display: none;
}

@media only screen and (max-width: 767px) {
  .l-reciuit .c-form {
    padding: 0px 15px 0px 15px;
  }

  .l-reciuit .c-form .row select {
    width: 100%;
    height: 30px;
    border-radius: 8px;
    border: 1px solid #CCCCCC;
    padding: 0 15px;
    outline: none;
    font-size: 1.3rem;
    -webkit-border-radius: 8px;
  }

  .l-reciuit .c-form .row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 2rem;
  }

  .l-reciuit dd {
    width: 100%;
  }
}

@media only screen and (max-width: 991px) {
  .l-reciuit .c-form {
    padding: 0px 15px 0px 15px;
  }
}

/*----------end reciuit----------*/
/* tang add */
.Group_style2_extra {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}

.Group_style_left {
  width: 49%;
  padding-left: 5%;
}

.Group_style_right {
  width: 49%;
  padding: 0 4%;
}

.image_div2 {
  background-color: #DCDDDD;
  margin: 3rem 0 0 0;
  padding: 1rem 3rem 0 3rem;
  border-radius: 10px;
}

.circle-container_2 {
  position: relative;
  height: 100%;
  border-radius: 50%;
  /* background-image: url(../images/common/groupImg.png); */
  background-color: lightblue;
  background-size: 95%;
  width: auto;
  margin-left: 2%;
  background-repeat: no-repeat;
  z-index: 999;
  /* 位于上方 */
}

.circle-container_2_1 {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: red;
}

.div-relative {
  position: relative;
  color: #000;
  height: 560px;
}
@media screen and (max-width: 410px) {
  .div-relative {
    position: relative;
    color: #000;
    height: 320px;
  }
}
.div-a {
  position: absolute;
  z-index: 1;
  /* background-color: lightblue; */
}

.div-b {
  position: absolute;
  z-index: 2;
  /* background-color: red; */
  border-radius: 50%;
}

.youtube_div_2 {
  margin-top: 5%;
  padding: 0 0 0 1%;
  height: 100%;
}

.title_div_p_2 {
  padding-top: 5%;
}

@media screen and (max-width: 760px) {
  .Group_style2_extra {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }

  .image_div2 {
    margin-top: 3%;
    margin-left: 0;
    padding-left: 3%;
    padding-right: 3%;
  }

  .Group_style_left {
    width: 100%;
    padding: 0 1rem;
  }

  .Group_style_right {
    width: 100%;
    padding: 0 1rem;
  }

  .youtube_div_2 {
    margin-top: 3%;
    padding: 0 0 0 1%;
  }
}

/* tang end */

/*Footer Sticky BTN*/
.fixed-footer-sp {
  display: none;
  visibility: hidden;
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100vw;
  background: #fff;
  opacity: 0;
  box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: all 0.8s ease;
}

@media screen and (max-width: 768px) {
  .fixed-footer-sp {
    display: block;
    visibility: inherit;
  }

  .fixed-footer-sp.fixed {
    bottom: 0;
    opacity: 1;
  }

}

.fixed-footer-sp-menu {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  margin: 0;
  border-top: 2px solid #333;
}

.fixed-footer-sp-menu>li {
  cursor: pointer;
  flex-basis: 50%;
  text-align: center;
  transition: all 0.3s ease-in-out
}

.fixed-footer-sp-menu>li:hover {
  opacity: .75;
}

.fixed-footer-sp-menu>li:nth-of-type(1) {
  background: #fbd434;
}

.fixed-footer-sp-menu>li:nth-of-type(2) {
  background: #26A69A;
}

.fixed-footer-sp-menu>li:nth-of-type(3) {
  background: #00A75B;
}

.fixed-footer-sp-menu>li>a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.fixed-footer-sp-menu>li:nth-of-type(2)>a {
  color: #fff;
}

.fixed-footer-sp-menu>li:nth-of-type(3)>a {
  color: #fff;
}

.fixed-footer-sp-menu>li>a>span {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.fixed-footer-sp-menu>li>a>img {
  width: 25px;
  height: auto;
  margin-bottom: 5px;
}


/*
.toc_list {
  counter-reset: parent !important;
}

.toc_list li {
  list-style: decimal !important;
}

.parent > li::before{
  counter-increment: parent;
  content: counter(parent) ". ";
}

.parent > li{
  counter-reset: child;    
}

.child > li::before{
  counter-increment: child;  
  content: "-" counter(child) "." ;
}

.child{
    counter-reset: grandchild;    
}

.grandchild > li::before{
  counter-increment: grandchild;  
  content: "-" counter(child) "-" counter(grandchild) "." ;
}
*/

.toc_list li a {
  border: none !important;
}

.parent li {
  list-style: decimal !important;
  margin: 0 2rem 0 2rem !important;
}

.child li {
  list-style: none !important;
  position: relative;
  margin: 0 1rem !important;
  padding: 0 !important;
}
.child li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  left: -5px;
  top: calc(1.5em - 6px);
}

.child_2 li {
  list-style: none !important;
  position: relative;
  padding: 0 1rem;
}
.child_2 li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  left: -5px;
  top: calc(1.15em - 3px);
}

.column_cv {
  margin: 40px 0;
}
.column_cv p {
  margin-bottom:0 !important;
  background-color: none;
}
.column_cv img {
  vertical-align: top;
}
.fleft100 {
}
.fleft49 {
  width: 49%;
  float: left;
}

.fright49 {
  width: 49%;
  float: right;
}

.fleft50 {
  width: 50%;
  float: left;
}

.fright50 {
  width: 50%;
  float: right;
}
.marker-y {
  background: linear-gradient(transparent 66%, #f0ff00 0%);
  font-weight: bold;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.hmds-count {
  counter-increment: number;
}
.hmds-count::before {
  content: ""counter(number) ". ";
}
body .btn-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 62px;
  height: 62px;
  z-index: 10;
}

body .btn-top img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 760px) {
  .parent li {
    margin: 0 0 0 1rem !important;
  }
  .child li {
    list-style: none !important;
    position: relative;
  }
  .child li::before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #000;
    position: absolute;
    left: -5px;
    top: calc(1.9em - 6px);
  }
  body .btn-top {
    width: 48px;
    height: 48px;
    right: 20px;
    bottom: 95px;
  }
}
.b1 {
  padding-bottom: 1rem !important;
}
.b2 {
  padding-bottom: 2rem !important;
}
.b3 {
  padding-bottom: 3rem !important;
}
.b4 {
  padding-bottom: 4rem !important;
}

@media screen and (max-width: 760px) {
  .b1 {
    padding-bottom: 1rem !important;
  }
  .b2 {
    padding-bottom: 1rem !important;
  }
  .b3 {
    padding-bottom: 1.5rem !important;
  }
  .b4 {
    padding-bottom: 2rem !important;
  }
}

.big-headline {
  position: relative;
  padding: 1rem 0 !important;
  margin: 0 0 1.5rem 0 !important;
}
.big-headline::before,
.big-headline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
}
.big-headline::before {
  width: 20%;
  background-color: #92ab23;
}
.big-headline::after {
  width: 80%;
  background-color: #fff;
  left: 20%;
}
.table_1 {
  width: 100%;
  border-top: solid 1px #eff6ef;
  border-left: solid 1px #eff6ef;
  margin: 0 0 2rem 0;
}
.table_1 th {
  width: 50%;
  border-right: solid 1px #eff6ef;
  border-bottom: solid 1px #eff6ef;
  padding: 1rem;
  background-color: #666;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
}
.lgrey {
  font-size: 1.5rem !important;
  color: #333 !important;
  background-color: #f4f4f4 !important;
}
.table_1 td {
  width: 50%;
  border-right: solid 1px #eff6ef;
  border-bottom: solid 1px #eff6ef;
  padding: 2rem 3rem;
  background-color: #fff;
  font-size: 1.5rem;
}
.table_1 td span {
  font-weight: bold;
}
.table_3 {
  border-top: solid 1px #eff6ef;
  border-left: solid 1px #eff6ef;
  margin: 0 0 2rem 0;
}
.table_3 th {
  width: 33%;
  border-right: solid 1px #eff6ef;
  border-bottom: solid 1px #eff6ef;
  padding: 1rem;
  background-color: #666;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
}
.table_3 td {
  width: 20%;
  border-right: solid 1px #eff6ef;
  border-bottom: solid 1px #eff6ef;
  padding: 2rem 3rem;
  background-color: #fff;
}
.table_3 td span {
  font-weight: bold;
}
.table_4 {
  border-top: solid 1px #eff6ef;
  border-left: solid 1px #eff6ef;
  margin: 0 0 2rem 0;
}
.table_4 th {
  width: 25%;
  border-right: solid 1px #eff6ef;
  border-bottom: solid 1px #eff6ef;
  padding: 1rem;
  background-color: #666;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
}
.table_4 td {
  width: 20%;
  border-right: solid 1px #eff6ef;
  border-bottom: solid 1px #eff6ef;
  padding: 2rem 3rem;
  background-color: #fff;
}
.table_4 td span {
  font-weight: bold;
}
.table_5 {
  border-top: solid 1px #eff6ef;
  border-left: solid 1px #eff6ef;
  margin: 0 0 2rem 0;
}
.table_5 th {
  width: 20%;
  border-right: solid 1px #eff6ef;
  border-bottom: solid 1px #eff6ef;
  padding: 1rem;
  background-color: #666;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
}
.table_5 td {
  width: 20%;
  border-right: solid 1px #eff6ef;
  border-bottom: solid 1px #eff6ef;
  padding: 2rem 3rem;
  background-color: #fff;
}
.table_5 td span {
  font-weight: bold;
}
.btn-m {
  width: 60%;
  margin: auto;
}
.img-zone01 {
  width: 100%;
  padding: 0 0 2rem 0;
}
.fleft-service {
  width: 49% !important;
  float: left;
}
.fright-service {
  width: 49% !important;
  float: right;
}
@media screen and (max-width: 760px) {
  .big-headline {
    position: relative;
    padding: 1rem 0 !important;
  }
  .big-headline::before,
  .big-headline::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
  }
  .big-headline::before {
    width: 20%;
  }
  .big-headline::after {
    width: 80%;
    background-color: #fff;
    left: 20%;
  }
  .table_1 {
    border-top: solid 1px #eff6ef;
    border-left: solid 1px #eff6ef;
  }
  .table_1 th {
    width: 50%;
    border-right: solid 1px #eff6ef;
    border-bottom: solid 1px #eff6ef;
    padding: 0.75rem;
    background-color: #666;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
  }
  .table_1 td {
    font-size: 1rem;
    padding: 0.75rem;
  }
  .table_3 {
    border-top: solid 1px #eff6ef;
    border-left: solid 1px #eff6ef;
  }
  .table_3 th {
    width: 33%;
    border-right: solid 1px #eff6ef;
    border-bottom: solid 1px #eff6ef;
    padding: 0.75rem;
    background-color: #666;
    color: #fff;
    font-weight: bold;
    font-size: 1rem !important;
  }  
  .table_3 td {
    font-size: 1rem;
    padding: 0.75rem;
  }
  .table_4 {
    border-top: solid 1px #eff6ef;
    border-left: solid 1px #eff6ef;
  }
  .table_4 th {
    width: 25%;
    border-right: solid 1px #eff6ef;
    border-bottom: solid 1px #eff6ef;
    padding: 0.75rem;
    background-color: #666;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
  }
  .table_4 td {
    font-size: 1rem;
    padding: 0.75rem;
  }
  .table_5 {
    border-top: solid 1px #eff6ef;
    border-left: solid 1px #eff6ef;
  }
  .table_5 th {
    width: 20%;
    border-right: solid 1px #eff6ef;
    border-bottom: solid 1px #eff6ef;
    padding: 0.75rem;
    background-color: #666;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
  }
  .table_5 td {
    font-size: 1rem;
    padding: 0.75rem;
  }
  .lgrey {
    font-size: 1rem !important;
    color: #333 !important;
    background-color: #f4f4f4 !important;
  }
  .btn-m {
    width: 90%;
    margin: auto;
  }
  .fleft-service {
    width: 100%;
    float: left;
  }
  .fright-service {
    width: 100%;
    float: right;
  }
}
.tc {
  text-align: center;
  font-weight: bold;
}
.mb2 {
  margin: 0 0 2rem 0;
}
.s-red {
  font-weight: bold;
  color: #cf2e2e;
}
.recruit_bn {
  text-align: center;
  padding: 30px 0 0 0;
}
.recruit_bn li {
  display: inline;
  line-height: 100%;
  margin: 2rem 2rem;
}
@media screen and (max-width: 760px) {
  .recruit_bn {
    text-align: center;
    padding: 30px 0 30px 0;
  }
  .recruit_bn li {
    display: inline;
    line-height: 100%;
    margin: 2rem 0;
  }
  .recruit_bn li img {
    width: 100%;
  }
}
.p-access .access-title {
  font-size: 2.2rem;
  color: white;
  font-weight: bold;
  padding-left: 10px;
  background-color: #92ab23;
  padding: 0.9rem 1rem 1rem 4rem;
}
.p-access .p-access_groupContent {
  width: 1400px;
  background-color: white;
  padding: 4rem;
}

.strada_access-info li {
    float: left;
    width: 50%;
    position: relative;
    padding: 0 0 4rem 0;
}

.strada_access-info li:after {
  content: '';
  position: absolute;
  border: 20px solid transparent;
  right: 0;
  top: 34%;
  border-left-color: #92ab23;
  transform: none;
  margin: 0 auto;
}

.strada_access-info li:nth-child(4n) {
  margin-right: 0;
}

.strada_access-info li.lifin:last-child::after {
  display: none;
}

.strada_access-info li dl {
  width: 89%;
}
.strada_access-info li dl img {
  width: 100%;
}
.strada_access-info li dl dd {
  padding: 1rem 0;
  font-size: 1.6rem;
}
@media screen and (max-width: 970px) {
  .strada_access-info li {
      float: left;
      width: 100%;
      position: relative;
      padding: 0 0 4rem 0;
  }
  .strada_access-info li:after {
    content: '';
    position: absolute;
    border: 20px solid transparent;
    right: 44%;
    top: 90%;
    border-left-color: #92ab23;
    transform: none;
    margin: 0 auto;
    vertical-align: middle;
    color: #92ab23;
    line-height: 1;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    border-width: 1.14952em 1.375em;
    border-top-color: currentColor;
    border-bottom: 0;
  }
  .strada_access-info li:nth-child(4n) {
    margin-right: 0;
  }
  .strada_access-info li dl {
    width: 100%;
  }
  .strada_access-info li dl img {
    width: 100%;
  }
  .strada_access-info li dl dd {
    padding: 1rem 0;
    font-size: 1.4rem;
  }
  .p-access .p-access_groupContent {
    width: 100%;
    background-color: white;
    padding: 2rem;
  }
  .t-access_content {
    z-index: 9;
    position: inherit;
    width: 100%;
    max-width: 650px;
    padding: 0;
    background-color: #fff;
  }
  .access_googlemap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
  }
  .access_googlemap iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
}

.info-list-navi {
    text-align: center;
    padding: 2rem 0;
}
.info-list-navi li {
    display: inline-block;
    margin: 0 2rem;
    padding: 0.25rem 0.5rem;
    font-size: 16px;
}
.info-list-navi li div {
    width: 40px;
    height: 16px;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    float: right;
}
@media screen and (max-width:767px) {
    .info-list-navi {
        text-align: center;
        padding: 1rem 0;
    }
    .info-list-navi li {
        font-size: 1.4rem;
        display: inline-block;
        margin: 0 1rem;
    }
}
.arrow_nav::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 1px solid #1c2c43;
    border-right: 1px solid #1c2c43;
}
.arrow_nav.-bottom::before{
    transform: rotate(135deg);
}
.arrow_gl {
    line-height: 1;
    position: relative;
}
.arrow_gl.-left{
    width: 60px;
    height: 8px;
    border-right: 1px solid #818c96;
    border-bottom: 1px solid #818c96;
    transform: skew(-45deg);
}
.arrow_gl.-right{
    width: 60px;
    height: 8px;
    border-right: 1px solid #818c96;
    border-bottom: 1px solid #818c96;
    transform: skew(45deg);
}

.info-list {
    width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.info-list li {
    width: 520px;
    float: left;
    margin: 0 15px 30px 15px;
}
.info-list li span {
    font-weight: bold;
}
.info-list li div {
    width: 40px;
    height: 16px;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    float: right;
}
.info-list li a:hover {
    opacity: 0.7;
    transition: all .3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (max-width:1024px) {
    .info-list {
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    .info-list li {
        width: 100%;
        float: left;
        margin: 0 0 30px 0;
    }
    .info-list li div {
        width: 40px;
        height: 16px;
        margin: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        float: right;
    }
}
.txt150 {
  font-size: 2.5rem !important;
  text-align: center !important;
  padding: 0 2rem 3rem 2rem !important;
  line-height: 200% !important;
  background-color: none !important;
  color: #333 !important;
  font-weight: normal !important;
}
@media screen and (max-width:767px) {
  .txt150 {
    font-size: 1.44rem !important;
    text-align: center !important;
    padding: 0 0 2rem 0 !important;
    line-height: 180% !important;
    margin: 0 !important;
  }
}
.txt_c {
  text-align: center;
}
picture {
  margin: 0;
  padding: 0;
  vertical-align: top;
  line-height: 100%;
}
.w800 {
  width: 800px;
  margin: 0 auto;
}
@media screen and (max-width:767px) {
  .w800 {
    width: 100%;
    margin: 0 auto;
  }
}
.p-access_groupContent p {
  font-size: 1.5rem;
}
.child_1 {
  margin-bottom: 50px;
  padding: 20px 20px 20px 35px;
  border: 1px solid #adadad;
  list-style: decimal;
}
.child_1 li {
  line-height: 180%;
}

/* 全体レイアウト：Flexboxで均等配置 */
.square_list_all {
  display: flex;
  flex-wrap: wrap;
  gap: 0; /* 適宜調整 */
  border: 1px solid #fff; /* 任意 */
}

/* 各ブロック */
.square_li {
  flex: 1 1 calc(20% - 12px); /* 3列表示（gap考慮） */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
  padding: 2rem;
  background: #f4f4f4; /* 任意 */
  border: 1px solid #fff; /* 任意 */
}

/* 画像の高さ固定＋中央揃え */
.square_img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  overflow: hidden;
}

/* 見出しの上下調整 */
.sq_h3 {
  border: none !important;
  line-height: 150% !important;
  padding: 0 !important;
  font-weight: bold !important;
}
.cont-limg_s1 {
  width: 50%;
  float: left;
}
.cont-ltxt_s1 {
  width: 50%;
  float: left;
  padding: 0 0 0 4rem;
}
.cont-limg_s2 {
  width: 50%;
  float: right;
}
.cont-ltxt_s2 {
  width: 50%;
  float: right;
  padding: 0 4rem 0 0;
}
@media screen and (max-width:767px) {
  .square_li {
    flex: 1 calc(100% - 12px); /* 3列表示（gap考慮） */
    display: inline;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    padding: 2rem;
    background: #f4f4f4; /* 任意 */
    border: 1px solid #fff; /* 任意 */
  }
  .cont-limg_s1 {
    width: 100%;
    float: left;
  }
  .cont-ltxt_s1 {
    width: 100%;
    float: left;
    padding: 0 0 0 0;
  }
  .cont-limg_s2 {
    width: 100%;
    float: right;
  }
  .cont-ltxt_s2 {
    width: 100%;
    float: right;
    padding: 0 0 0 0;
  }
}
.nostyle li:before {
  background: none !important;
}
.b1 {
  padding-bottom: 1rem !important;
}
.b2 {
  padding-bottom: 2rem !important;
}
.b3 {
  padding-bottom: 3rem !important;
}
.b4 {
  padding-bottom: 4rem !important;
}

@media screen and (max-width: 760px) {
  .b1 {
    padding-bottom: 1rem !important;
  }
  .b2 {
    padding-bottom: 1rem !important;
  }
  .b3 {
    padding-bottom: 1.5rem !important;
  }
  .b4 {
    padding-bottom: 2rem !important;
  }
}

.table_01 {
  border-collapse: collapse;
  width: 100%;
  margin: 0 0 2rem 0;
}
.table_01 .thtd_1 {
  width: 33%;
  text-align: center;
  color: black !important;
  border-right: 1px solid #ccc !important;
  border-bottom: 1px solid #ccc !important;
  background-color: #f4f4f4 !important;
  font-size: 1.44rem;
  padding: 1rem;
}

.table_01 .thtd_2 {
  width: 33%;
  text-align: center;
  color: black !important;
  border-right: 1px solid #ccc !important;
  border-bottom: 1px solid #ccc !important;
  background-color: #fff !important;
  font-size: 1.44rem;
  padding: 1rem;
}

.table_01 .thtd_3 {
  width: 33%;
  text-align: center;
  color: #fff !important;
  background-color: #92ab23 !important;
  border-right: 1px solid #ccc !important;
  border-bottom: 1px solid #ccc !important;
  font-size: 1.44rem;
  padding: 1rem;
}