@charset "UTF-8";
/* ==============================================================
*  ベース
* ============================================================ */
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;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

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

_:lang(x)::-ms-backdrop, .selector {
  font-family: "Segoe UI", "メイリオ", Meiryo, sans-serif;
}

/*
*  font
* ----------------------------------------*/
@font-face {
  font-family: 'NotoSerifCJKjp';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSerifCJKjp-Regular.otf") format("opentype"), url("../fonts/NotoSerifCJKjp-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: 'NotoSerifCJKjp';
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/NotoSerifCJKjp-Medium.otf") format("opentype"), url("../fonts/NotoSerifCJKjp-Medium.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: 'NotoSerifCJKjp';
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/NotoSerifCJKjp-Bold.otf") format("opentype"), url("../fonts/NotoSerifCJKjp-Bold.woff") format("woff");
  font-display: swap;
}
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*:focus {
  outline: none;
}

html, body {
  height: 100%;
}

html {
  font-size: 62.5%;
  font-feature-settings: "pkna" 1;
  overflow: auto;
}

body {
  color: #231815;
  font-size: 1.5rem;
  font-family: "游ゴシック", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  letter-spacing: 0.025em;
  line-height: 1.85;
  font-size: 1.6rem;
  -webkit-text-size-adjust: none;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 1.3rem;
    line-height: 1.65;
  }
}

body.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  transition: none !important;
}

a {
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}

a, button, input[type=button], input[type=reset], input[type=submit] {
  touch-action: manipulation;
}
@media only screen and (min-width: 769px) {
  a, button, input[type=button], input[type=reset], input[type=submit] {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

.wrapper {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
}
.wrapper footer {
  margin-top: auto;
}

.sec {
  margin-top: -140px;
  padding-top: 140px;
}

.inner, .inner-m {
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}

.inner {
  max-width: 1200px;
}

.inner-m {
  max-width: 800px;
}

.fadeIn {
  position: relative;
  animation: fade 1.5s ease-out 0s 1;
}

@keyframes fade {
  0% {
    opacity: 0;
    bottom: -20px;
  }
  60% {
    opacity: 0;
    bottom: -20px;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}
@-webkit-keyframes fade {
  0% {
    opacity: 0;
    bottom: -20px;
  }
  60% {
    opacity: 0;
    bottom: -20px;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}
@-moz-keyframes fade {
  0% {
    opacity: 0;
    bottom: -20px;
  }
  60% {
    opacity: 0;
    bottom: -20px;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}
.anime {
  position: relative;
  opacity: 0;
  bottom: -20px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.anime.on {
  opacity: 1;
  bottom: 0;
}

/* ==============================================================
*  レイアウト
* ============================================================ */
/*
*  header
* ----------------------------------------*/
header {
  width: 100%;
  height: 60px;
}
header .header_wrap {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  padding: 20px 0 20px 10px;
  background-color: #fff;
}
header .header_wrap .logo_area {
  width: 80%;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
header .header_wrap .logo_area .logo_01 {
  display: block;
  padding-right: 10px;
  border-right: 1px solid #696969;
  width: 36.8%;
}
header .header_wrap .logo_area .logo_02 {
  display: block;
  padding-left: 10px;
  width: 55%;
  padding-bottom: 1.5%;
}
header .header_wrap .header_btn_area {
  display: none;
}
header .logo {
  max-width: 330px;
  width: 25%;
  padding: 6px 0;
  margin-bottom: 5px;
  text-align: center;
}
header .logo img {
  max-width: 260px;
  width: 86%;
}
@media only screen and (min-width: 769px) {
  header {
    height: 90px;
    position: fixed;
    z-index: 1;
  }
  header .header_wrap {
    padding: 25px 20px;
    height: 90px;
    transition: all 0.3s;
  }
  header .header_wrap.fix {
    height: 55px;
  }
  header .header_wrap .logo_area {
    width: 34%;
    max-width: 356px;
  }
  header .header_wrap .logo_area .logo_01 {
    max-width: 124px;
    width: 34.8%;
  }
  header .header_wrap .logo_area .logo_02 {
    max-width: 184px;
    width: 52%;
    margin-bottom: 2px;
  }
  header .header_wrap .header_btn_area {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
  }
  header .header_wrap .header_btn_area .btn {
    font-size: 1.4rem;
    padding: 10px 20px;
    margin-left: 10px;
    width: 160px;
  }
}
@media only screen and (max-width: 767px) {
  header .logo {
    max-width: 240px;
    width: 45%;
    padding: 4px 0;
    margin-bottom: 3px;
  }
  header .lang-sp {
    display: block;
    position: absolute;
    top: 10px;
    right: 55px;
    z-index: 2;
    font-size: 0;
  }
  header .lang-sp a {
    display: inline-block;
    min-width: 44px;
    text-align: center;
    color: #231815;
    font-size: 1.2rem;
    line-height: 1;
    padding: 10px;
    position: relative;
  }
  header .lang-sp a + a::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 15px;
    background-color: #000;
    position: absolute;
    top: 8px;
    left: 0;
  }
}

/*
*  navigation
* ----------------------------------------*/
.nav-btn {
  display: none;
}

nav .nav_btn_area {
  display: block;
  margin-top: 25px;
}
nav .nav_btn_area .btn {
  font-size: 1.4rem;
  padding: 8px 20px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 769px) {
  nav {
    width: 100%;
    background-color: #004dce;
  }
  nav ul {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    max-width: 1300px;
    width: 100%;
    padding: 17px 0;
    margin-left: auto;
    margin-right: auto;
  }
  nav ul li {
    padding: 0 15px;
    border-right: 1px solid #7aa3e5;
    line-height: 1.3;
    text-align: center;
  }
  nav ul li.last {
    border-right: none;
  }
  nav ul li a {
    color: #fff;
  }
  nav li > a {
    position: relative;
  }
  nav li > a:after {
    position: absolute;
    bottom: 6px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background-color: #fff;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }
  nav li > a:hover {
    color: #fff !important;
  }
  nav li > a:hover:after {
    bottom: 0;
    opacity: 1;
  }
  nav .nav_btn_area {
    display: none;
  }
  nav.g_nav ul > li ul {
    display: none;
    top: 100%;
    left: 0;
    width: 100%;
    position: absolute;
    padding-bottom: 0;
  }
  nav.g_nav ul > li {
    width: 20%;
    position: relative;
    box-sizing: border-box;
  }
  nav.g_nav ul > li li {
    width: 100%;
    border-top: 1px solid #7aa3e5;
    transition: all 0.3s ease-out 0s;
  }
  nav.g_nav ul > li li a {
    display: block;
    transition: all 0.3s ease-out 0s;
    padding: 18px 0;
  }
  nav.g_nav ul > li li a:after {
    position: static;
  }
  nav.g_nav ul > li li:hover {
    background-color: rgba(255, 255, 255, 0.3);
  }
  nav.g_nav ul {
    background-color: #004dce;
  }
  nav.g_nav ul li:hover ul {
    display: block;
  }
}
@media only screen and (min-width: 900px) {
  nav li > a {
    font-size: 1.4rem;
    padding: 2px 5px;
  }
}

@media only screen and (min-width: 768px) {
  _:-ms-lang(x)::-ms-backdrop, body.en nav .lang a,
  _:-ms-lang(x)::-ms-backdrop, body.ch nav .lang a {
    min-width: 64px;
    width: auto !important;
    width: 64px;
  }
}
@media only screen and (max-width: 767px) {
  #overlay {
    content: '';
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: transparent;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    z-index: 1;
  }

  .nav-btn {
    display: block;
    height: 60px;
    width: 60px;
    background-color: rgba(255, 255, 255, 0.7);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }
  .nav-btn span {
    position: absolute;
    left: 15px;
    top: 50%;
    width: 30px;
    height: 2px;
    background-color: #696969;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }
  .nav-btn span:nth-child(1) {
    transform: translateY(-9px);
    animation-delay: 100ms;
  }
  .nav-btn span:nth-child(3) {
    transform: translateY(9px);
    animation-delay: 250ms;
  }

  nav {
    background: #2068e0;
    background: -moz-linear-gradient(top, #2068e0 0%, #004dce 100%);
    background: -webkit-linear-gradient(top, #2068e0 0%, #004dce 100%);
    background: linear-gradient(to bottom, #2068e0 0%, #004dce 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$start-color', endColorstr='$end-color',GradientType=0 );
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    z-index: 10;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    text-align: center;
  }
  nav .g_nav_top {
    margin-top: 40px;
  }
  nav ul {
    width: 100%;
  }
  nav li + li {
    margin-top: 5px;
  }
  nav li a {
    display: block;
    color: #fff;
    font-size: 1.4rem;
    padding: 6px;
  }
  nav .lang {
    margin-top: 25px;
    font-size: 0;
  }
  nav .lang a {
    min-width: 60px;
    display: inline-block;
    color: #fff;
    font-size: 1.3rem;
    border: 1px solid #fff;
    margin: 0 5px;
    padding: 5px;
  }

  .open #overlay {
    visibility: visible;
    background: rgba(0, 0, 0, 0.75);
  }
  .open .nav-btn {
    background: none;
  }
  .open .nav-btn span {
    background-color: #fff;
  }
  .open .nav-btn span:nth-of-type(1) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .open .nav-btn span:nth-child(2) {
    opacity: 0;
  }
  .open .nav-btn span:nth-of-type(3) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .open nav {
    opacity: 1;
    max-width: 400px;
    width: 80%;
    right: 0;
    overflow: auto;
  }
}
/*
*  footer
* ----------------------------------------*/
footer {
  font-family: "Noto Sans Japanese", sans-serif;
}
footer a {
  color: #fff;
  display: block;
  margin-bottom: 10px;
}
@media only screen and (min-width: 769px) {
  footer a {
    margin-bottom: 10px;
  }
  footer .footer_logo {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
  }
}
@media only screen and (max-width: 767px) {
  footer {
    padding-top: 40px;
  }
}
footer .btn-grade {
  max-width: 370px;
  margin: 0 auto 60px;
  padding: 17px 10px;
}
footer .btn-grade b {
  display: block;
  font-size: 2.4rem;
  font-family: "NotoSerifCJKjp","游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
  letter-spacing: 0.25rem;
  line-height: 1;
  margin-bottom: 6px;
}
footer .btn-grade small {
  font-size: 1.5rem;
}
@media only screen and (max-width: 767px) {
  footer .btn-grade {
    max-width: 92%;
    margin-bottom: 40px;
    padding: 15px 5px;
  }
  footer .btn-grade b {
    font-size: 1.8rem;
    margin-bottom: 4px;
  }
  footer .btn-grade small {
    font-size: 1.1rem;
  }
}
footer .footer-nav {
  background-color: #3a3b45;
  padding: 45px 0;
  font-size: 1.4rem;
  letter-spacing: 0.15rem;
  line-height: 1.7;
}
footer .footer-nav .inner {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
footer .footer-nav .inner div {
  text-align: center;
  margin-bottom: 30px;
}
footer .footer-nav .logo_sp {
  display: block;
  text-align: center;
  margin-top: 20px;
}
footer .footer-nav a {
  color: #fff;
}
@media only screen and (min-width: 769px) {
  footer .footer-nav a:hover {
    text-decoration: underline;
  }
}
footer .footer-nav .company {
  font-weight: bold;
  font-size: 2.0rem;
  line-height: 1;
}
footer .footer-nav .arrow {
  position: relative;
}
footer .footer-nav .arrow:before {
  content: '';
  width: 11px;
  height: 11px;
  background-color: #014099;
  position: absolute;
  top: 6px;
  left: -15px;
}
footer .footer-nav .arrow a, footer .footer-nav .arrow span {
  display: inline-block;
}
footer .footer-nav .arrow a:before, footer .footer-nav .arrow a:after, footer .footer-nav .arrow span:before, footer .footer-nav .arrow span:after {
  content: '';
  position: absolute;
}
footer .footer-nav .arrow a:before, footer .footer-nav .arrow span:before {
  top: 11px;
  left: -13px;
  width: 5px;
  height: 1px;
  background-color: #fff;
}
footer .footer-nav .arrow a:after, footer .footer-nav .arrow span:after {
  top: 9px;
  left: -12px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
footer .footer-nav .mt {
  margin-top: 12px;
}
@media only screen and (min-width: 769px) {
  footer .footer-nav .inner {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: horizontal;
    -webkit-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  footer .footer-nav .inner > div {
    margin-left: 60px;
  }
  footer .footer-nav .inner div {
    text-align: left;
    margin-bottom: 0;
  }
  footer .footer-nav .logo_sp {
    display: none;
  }
}
footer .copy {
  display: block;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  footer .copy {
    padding: 8px 4%;
    font-size: 1.0rem;
  }
}

.footer .footer_school {
  text-align: center;
  margin-bottom: 50px;
}
.footer .footer_school .footer_logo {
  margin-bottom: 30px;
}
.footer .footer_school .sns ul {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}
.footer .footer_school .sns ul .fb, .footer .footer_school .sns ul .tw {
  margin-right: 15px;
}
.footer .footer_copy {
  color: #999;
  font-size: 12px;
  border-top: 1px solid #ddd;
}
.footer .footer_copy .copy {
  color: #999;
}
@media only screen and (max-width: 767px) {
  .footer .footer_school .footer_logo img {
    width: 63%;
  }
  .footer .sns ul {
    width: 100%;
    text-align: center;
  }
  .footer .sns ul .fb iframe {
    width: 92px;
  }
  .footer .footer_nav ul li {
    border-top: 1px dotted #bbbebf;
  }
  .footer .footer_nav ul li.nav1 {
    border: none;
  }
  .footer .footer_nav ul li a {
    background: url(https://www.shirayuri.ac.jp/common/images/ico_arr_02@2x.gif) no-repeat 10px 50%;
    -webkit-background-size: 5px 8px;
    -moz-background-size: 5px 8px;
    background-size: 5px 8px;
    padding: 15px 0 15px 22px;
    display: block;
    text-decoration: none;
    color: #999;
  }
  .footer .copy {
    padding: 15px 0;
    color: #999;
    border-top: 1px solid #c7c7c7;
  }
}
@media only screen and (min-width: 769px) {
  .footer .footer_school {
    margin-bottom: 80px;
  }
  .footer .footer_school .footer_logo {
    margin-bottom: 40px;
  }
  .footer .footer_school .footer_logo a:hover {
    opacity: 0.7;
  }
  .footer .footer_school .sns ul {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
  .footer .footer_school .sns ul .fb, .footer .footer_school .sns ul .tw {
    margin-right: 40px;
  }
  .footer .footer_school .sns ul .fb iframe {
    width: 92px;
  }
  .footer .footer_copy .inner {
    padding: 20px 0px 55px;
    overflow: hidden;
  }
  .footer .footer_copy .footer_nav {
    float: right;
  }
  .footer .footer_copy .footer_nav ul {
    overflow: hidden;
  }
  .footer .footer_copy .footer_nav ul li {
    margin-left: 9px;
    padding-left: 9px;
    float: left;
    border-left: 1px solid #ccc;
  }
  .footer .footer_copy .footer_nav ul li.nav1 {
    margin: 0;
    padding: 0;
    border-style: none;
  }
  .footer .footer_copy .footer_nav ul li a {
    color: #999;
    text-decoration: none;
  }
  .footer .footer_copy .footer_nav ul li a:hover {
    text-decoration: underline;
  }
  .footer .footer_copy .copy {
    color: #999;
    float: left;
  }
}

/*----- ページトップへ */
.pagetop {
  width: 32px;
  height: 32px;
  position: fixed;
  right: 5%;
  bottom: 16px;
}

.scrollToTop {
  position: absolute;
  bottom: 10px;
  opacity: 0.7;
}
.scrollToTop a {
  position: fixed;
  bottom: 20px;
  right: 20px;
  height: 50px;
  line-height: 48px;
}
@media only screen and (min-width: 769px) {
  .scrollToTop {
    width: 50px;
    height: 50px;
    opacity: 1.0;
  }
  .scrollToTop a {
    position: fixed;
    z-index: 9999;
    display: block;
    width: 50px;
    height: 50px;
    text-align: center;
    margin-bottom: 0;
  }
  .scrollToTop:hover {
    opacity: 0.7;
  }
}

/* ==============================================================
*  モジュール（汎用的に使用できるスタイル）
* ============================================================ */
/*----- clearfix */
.clear {
  overflow: hidden;
  *zoom: 1;
}

/*----- インライン要素化、ブロック要素化 */
.ib {
  display: inline-block !important;
}

.db {
  display: block !important;
}

/*----- ブロック要素の位置 */
.f-l {
  float: left !important;
}

.f-r {
  float: right !important;
}

/*----- 文字位置：横 */
.t-c {
  text-align: center !important;
}

.t-r {
  text-align: right !important;
}

.t-l {
  text-align: left !important;
}

/*----- 文字位置：縦 */
.va-t {
  vertical-align: top !important;
}

.va-m {
  vertical-align: middle !important;
}

.va-b {
  vertical-align: bottom !important;
}

/*----- 文字の太さ */
.fw-n {
  font-weight: normal !important;
}

.fw-b {
  font-weight: bold !important;
}

.fs-it {
  font-style: italic !important;
}

/*----- 文字の色 */
.fc_r {
  color: #dd0034 !important;
}

.fc_o {
  color: #f5a100 !important;
}

/*----- リンクテキスト */
.link_txt {
  color: #0058dd;
  text-decoration: underline;
}
@media only screen and (min-width: 769px) {
  .link_txt:hover {
    text-decoration: none;
  }
}

/*----- コンテンツの中心に配置 */
.t-center {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*----- リスト */
.ol {
  list-style: decimal;
  padding-left: 18px;
  line-height: 1.4;
}
.ol li + li {
  margin-top: 8px;
}
@media only screen and (max-width: 767px) {
  .ol {
    padding-left: 16px;
    line-height: 1.3;
  }
  .ol li + li {
    margin-top: 6px;
  }
}

.ul {
  padding-left: 16px;
}
.ul li {
  position: relative;
  line-height: 1.4;
}
.ul li + li {
  margin-top: 8px;
}
.ul li:before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #009FA8;
  position: absolute;
  top: 6px;
  left: -14px;
}
@media only screen and (max-width: 767px) {
  .ul {
    padding-left: 14px;
  }
  .ul li {
    line-height: 1.3;
  }
  .ul li + li {
    margin-top: 6px;
  }
  .ul li:before {
    top: 3px;
    left: -12px;
  }
}

.list_disc {
  margin-left: 1em;
}
.list_disc li {
  position: relative;
  margin-bottom: 5px;
}
.list_disc li:after {
  display: block;
  content: '';
  position: absolute;
  top: 10px;
  left: -1em;
  width: 8px;
  height: 8px;
  background-color: #004dce;
  border-radius: 100%;
}

.arrow_list li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}
.arrow_list li:before {
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  border-top: solid 2px #004dce;
  border-right: solid 2px #004dce;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  left: 0;
  margin-top: -3px;
}
.arrow_list li a {
  text-decoration: none;
  font-size: 1.6rem;
  color: #333;
}

/*----- 備考 */
p.note {
  padding-left: 30px;
  line-height: 1.4;
  font-size: 1.3rem;
  margin-top: 10px;
  position: relative;
}
p.note span {
  position: absolute;
  top: 0;
  left: 0;
  font-style: italic;
  letter-spacing: 0.25rem;
}
@media only screen and (max-width: 767px) {
  p.note {
    padding-left: 25px;
    font-size: 1.1rem;
    margin-top: 6px;
  }
}

small.note {
  font-size: 1.3rem;
  font-style: italic;
  letter-spacing: 0.25rem;
}
@media only screen and (max-width: 767px) {
  small.note {
    font-size: 1.1rem;
  }
}

/*----- tel */
/*----- 画像 */
.img-full {
  width: 100% !important;
}

.img_wrap {
  margin: 40px 0;
  text-align: center;
}

/*----- 改行 */
@media only screen and (min-width: 769px) {
  .pc {
    display: none;
  }
}

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

a.a {
  color: #231815;
  text-decoration: underline;
}
@media only screen and (min-width: 769px) {
  a.a:hover {
    text-decoration: none;
  }
}

@media only screen and (min-width: 769px) {
  a.a-img:hover {
    opacity: 0.6;
  }
}

.mtn {
  margin-top: 0 !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mbn {
  margin-bottom: 0 !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

/*
*  button
* ----------------------------------------*/
.btn {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  text-align: center;
  line-height: 1.1;
  border: 2px solid transparent;
  border-radius: 25px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-family: "Noto Sans Japanese", sans-serif;
}
.btn.btn_w {
  border: 2px solid #004dce;
  background-color: #fff;
  color: #004dce;
  font-weight: bold;
}
.btn.btn_G {
  border: 2px solid #8fc321;
  background-color: #8fc321;
  color: #fff;
  font-weight: bold;
}
.btn.btn_G.btn_arrow:before {
  display: block;
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: 20px;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.btn.btn_P {
  border: 2px solid #ec6d7b;
  background-color: #ec6d7b;
  color: #fff;
  font-weight: bold;
}
.btn.btn_P.btn_arrow:before {
  display: block;
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: 20px;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.btn.btn_y {
  border: 2px solid #f6d418;
  background-color: #f6d418;
  color: #3a424c;
  font-weight: bold;
}
.btn.btn_O {
  border: 2px solid #f5a100;
  background-color: #f5a100;
  color: #fff;
  font-weight: bold;
}
.btn.btn_O.btn_arrow:before {
  display: block;
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: 20px;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.btn.btn_arrow:before {
  display: block;
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: 20px;
  border-top: solid 3px #2f3032;
  border-right: solid 3px #2f3032;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.btn.arrow::before, .btn.arrow::after {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.btn.external_link:after {
  display: block;
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  right: 38px;
  top: 22px;
  font-family: "Font Awesome 5 Free";
  content: '\f35d';
  font-weight: 900;
  color: #fff;
}
.btn input {
  background-color: transparent;
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  font-family: "游ゴシック", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  letter-spacing: 0.025em;
}
.btn input::-webkit-search-decoration {
  display: none;
}
.btn input::focus {
  outline-offset: -2px;
}
@media only screen and (min-width: 769px) {
  .btn:hover.btn_w {
    border: 2px solid #004dce;
    background-color: #004dce;
    color: #fff;
  }
  .btn:hover.btn_G {
    border: 2px solid #8fc321;
    background-color: #fff;
    color: #8fc321;
  }
  .btn:hover.btn_G.btn_arrow:before {
    border-top: solid 3px #8fc321;
    border-right: solid 3px #8fc321;
  }
  .btn:hover.btn_P {
    border: 2px solid #ec6d7b;
    background-color: #fff;
    color: #ec6d7b;
  }
  .btn:hover.btn_P.btn_arrow:before {
    border-top: solid 3px #ec6d7b;
    border-right: solid 3px #ec6d7b;
  }
  .btn:hover.btn_y {
    border: 2px solid #f6d418;
    background-color: #fff;
    color: #3a424c;
  }
  .btn:hover.btn_O {
    border: 2px solid #f5a100;
    background-color: #fff;
    color: #f5a100;
  }
  .btn:hover.btn_O.btn_arrow:before {
    border-top: solid 3px #f5a100;
    border-right: solid 3px #f5a100;
  }
  .btn.btn_O .btn_arrow {
    left: 40px;
  }
  .btn.external_link:after {
    display: block;
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    right: 38px;
    top: 22px;
    font-family: "Font Awesome 5 Free";
    content: '\f35d';
    font-weight: 900;
    color: #fff;
  }
  .btn.external_link.btn_P:hover:after {
    color: #ec6d7b;
  }
  .btn.external_link.btn_G:hover:after {
    color: #8fc321;
  }
}

.btn-main {
  background-color: #014099;
  color: #fff;
  font-weight: bold;
  padding: 22px 35px;
}
.btn-main.arrow::after {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  right: 20px;
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}
.btn-main.arrow::before {
  content: '';
  width: 16px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 16px;
}
@media only screen and (min-width: 769px) {
  .btn-main:hover {
    border-color: #014099;
    background-color: #fff;
    color: #014099;
  }
  .btn-main:hover.arrow::after {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    right: 20px;
    width: 9px;
    height: 9px;
    border-top: 2px solid #014099;
    border-right: 2px solid #014099;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
  }
  .btn-main:hover.arrow::before {
    background-color: #014099;
  }
}
@media only screen and (max-width: 767px) {
  .btn-main {
    padding: 20px 25px;
  }
  .btn-main.arrow::after {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    right: 15px;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
  }
  .btn-main.arrow::before {
    width: 12px;
    right: 12px;
  }
}

.btn-br {
  background-color: #fff;
  border-color: #014099;
  color: #014099;
  font-weight: bold;
  padding: 16px 26px;
}
.btn-br .arrow02 {
  padding-left: 1.2rem;
}
@media only screen and (min-width: 769px) {
  .btn-br:hover {
    background-color: #014099;
    color: #fff;
  }
}
@media only screen and (max-width: 767px) {
  .btn-br {
    padding: 15px 10px;
  }
}

.btn-gray {
  background-color: #ECECEC;
}
@media only screen and (min-width: 769px) {
  .btn-gray:hover {
    border-color: #ECECEC;
    background-color: #fff;
  }
}

.btn-biz {
  background-color: #fff;
  color: #014099;
  font-weight: bold;
  padding: 11px 10px 10px;
  font-size: 1.6rem;
  letter-spacing: 0.15rem;
}
.btn-biz.arrow::after {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  right: 20px;
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}
.btn-biz.arrow::before {
  content: '';
  width: 16px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 16px;
}
@media only screen and (min-width: 769px) {
  .btn-biz:hover {
    border-color: #014099;
    background-color: #fff;
    color: #014099;
  }
  .btn-biz:hover.arrow::after {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    right: 20px;
    width: 9px;
    height: 9px;
    border-top: 2px solid #014099;
    border-right: 2px solid #014099;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
  }
  .btn-biz:hover.arrow::before {
    background-color: #014099;
  }
}
@media only screen and (max-width: 767px) {
  .btn-biz {
    font-size: 1.2rem;
    padding: 15px 10px;
  }
  .btn-biz.arrow::after {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    right: 15px;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
  }
  .btn-biz.arrow::before {
    width: 12px;
    right: 12px;
  }
}

.btn-s {
  display: block;
  text-align: center;
  line-height: 1.1;
  position: relative;
  border: 1px solid #014099;
  color: #014099;
  font-size: 1.4rem;
}
.btn-s.arrow::after {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  right: 10px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #014099;
  border-right: 1px solid #014099;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}
.btn-s.arrow::before {
  content: '';
  width: 10px;
  height: 1px;
  border-top: 1px solid #014099;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 7px;
}
@media only screen and (min-width: 769px) {
  .btn-s:hover {
    background-color: rgba(1, 64, 153, 0.1);
  }
}

.btn-grade {
  -webkit-flex-direction: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  color: #fff;
}
.btn-grade:before {
  content: '';
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  position: absolute;
  top: -2px;
  left: -2px;
  background: #009FA8;
  background: -moz-linear-gradient(top, #009FA8 0%, #014099 100%);
  background: -webkit-linear-gradient(top, #009FA8 0%, #014099 100%);
  background: linear-gradient(to bottom, #009fa8 0%, #014099 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$start-color', endColorstr='$end-color',GradientType=0 );
  border-radius: 4px;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 769px) {
  .btn-grade:hover {
    border-color: #009FA8;
    color: #009FA8;
  }
  .btn-grade:hover:before {
    opacity: 0;
  }
}

.none-link {
  pointer-events: none;
}

/*
*  grid
* ----------------------------------------*/
@media only screen and (min-width: 768px) {
  .row {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }

  .col-6 {
    width: calc(50% - 20px);
  }

  .col-4 {
    width: calc(33.3333% - 25px);
  }
}
@media only screen and (max-width: 767px) {
  .row > div + div {
    margin-top: 18px;
  }
}
/*
*  table
* ----------------------------------------*/
.table {
  width: 100%;
}
.table tr + tr {
  border-top: 1px solid #ECECEC;
}
.table tr.brn {
  border-top: none;
}
.table tr.brn th, .table tr.brn td {
  padding-top: 0;
}
.table th, .table td {
  line-height: 1.4;
  vertical-align: top;
}
.table th {
  font-weight: bold;
  white-space: nowrap;
  padding: 12px 18px 12px 0;
}
.table td {
  padding: 12px 18px;
  position: relative;
}
.table td:before {
  content: '';
  width: 1px;
  height: 100%;
  background-image: linear-gradient(to bottom, #d3d3d3, #d3d3d3 66.66667%, rgba(0, 0, 0, 0) 66.66667%, rgba(0, 0, 0, 0) 100%);
  background-size: 6px 6px;
  width: 1px;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
}
.table .w-s {
  width: 20%;
  min-width: 85px;
}
@media only screen and (max-width: 767px) {
  .table th {
    padding: 9px 15px 9px 0;
  }
  .table td {
    padding: 9px 15px;
  }
}

/*----- SP時ブロック */
@media only screen and (max-width: 767px) {
  .table-block th, .table-block td {
    display: block;
    width: 100%;
  }
  .table-block th {
    padding: 16px 8px 0 !important;
  }
  .table-block td {
    padding: 8px 8px 16px !important;
  }
  .table-block td:before {
    display: none;
  }
}

/*----- license */
.license_table table th, .license_table table td {
  border: 1px solid #0058dd;
  padding: 10px;
}
.license_table table th {
  background-color: #0058dd;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.license_table table td {
  background-color: #fff;
}
.license_table table .border_w {
  border-right: 1px solid #7aa3e5;
}

.license2_table table {
  width: 100%;
}
.license2_table table th, .license2_table table td {
  border: 1px solid #0058dd;
  padding: 10px;
}
.license2_table table th {
  background-color: #0058dd;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.license2_table table td {
  background-color: #fff;
  text-align: center;
}
.license2_table table .border_w {
  border-right: 1px solid #7aa3e5;
}
.license2_table table .border_wb {
  border-bottom: 1px solid #7aa3e5;
}
.license2_table table .th_1 {
  width: 50%;
}
.license2_table table .th_2 {
  width: 50%;
}
.license2_table table .td_h {
  background-color: #ebf1fb;
  text-align: left;
}

/*----- company */
.company_table {
  margin-bottom: 20px;
}
.company_table table {
  width: 100%;
}
.company_table table th, .company_table table td {
  padding: 10px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.company_table table th {
  width: 18.4%;
  font-weight: bold;
  background-color: #f4f4f4;
  vertical-align: top;
}
@media only screen and (min-width: 769px) {
  .company_table th, .company_table td {
    padding: 10px 20px;
  }
}

/*
*  title
* ----------------------------------------*/
.title_head {
  padding: 0 4%;
  height: 180px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  margin-bottom: 35px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  color: #fff;
  line-height: 1;
}
.title_head h2 {
  display: block;
  font-size: 2.2rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.15rem;
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .title_head {
    padding: 0 8%;
    height: 240px;
    margin-bottom: 70px;
  }
  .title_head h2 {
    font-size: 4.0rem;
    letter-spacing: 0.3rem;
  }
}

body.about .title_head {
  background-image: url(../../about/img/ttl_img.jpg);
}

body.solution .title_head {
  background-image: url(../../solution/img/ttl_img.jpg);
}

body.solution.events .title_head {
  background-image: url(../../solution/img/ttl_img02.jpg);
}
body.solution.gateway .title_head {
  background-image: url(../../solution/img/ttl_img03.jpg);
}
body.solution.support .title_head {
  background-image: url(../../solution/img/ttl_img04.jpg);
}

body.company .title_head {
  background-image: url(../../company/img/ttl_img.jpg);
}

body.partner .title_head {
  background-image: url(../../partner/img/ttl_img.jpg);
}

body.contact .title_head {
  background-image: url(../../contact/img/ttl_img.jpg);
}

.com_h3 {
  color: #3a424c;
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 15px;
}

.com_h4 {
  color: #0058dd;
  font-size: 2.0rem;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  background-color: rgba(0, 90, 238, 0.08);
  margin-bottom: 15px;
  padding: 15px 0;
}

.com_h5 {
  color: #3a424c;
  font-weight: bold;
  font-family: "Noto Sans Japanese", sans-serif;
  font-size: 1.6rem;
  margin-bottom: 5px;
  line-height: 1.45;
}

@media only screen and (min-width: 769px) {
  .com_h3 {
    font-size: 4.0rem;
    margin-bottom: 30px;
  }

  .com_h4 {
    font-size: 2.6rem;
    line-height: 1.25;
    margin-bottom: 30px;
    padding: 20px 0;
  }

  .com_h5 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    line-height: 1.45;
  }
}
.title-l {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
  padding: 17px 18px 18px;
  margin: 60px 0 20px;
  border-bottom: 2px solid #009FA8;
  border-left: 2px solid #009FA8;
}
@media only screen and (max-width: 767px) {
  .title-l {
    font-size: 1.6rem;
    padding: 13px 15px 14px;
    margin: 40px 0 15px;
  }
}

.title-m {
  background-color: #F8F8F8;
  color: #009FA8;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.25;
  padding: 13px 16px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .title-m {
    font-size: 1.4rem;
    padding: 12px 12px 11px;
    margin-bottom: 10px;
  }
}

.title-s {
  font-weight: bold;
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
}
.title-s:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #009FA8;
  position: absolute;
  top: 7px;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .title-s {
    padding-left: 16px;
    margin-bottom: 5px;
  }
  .title-s:before {
    top: 4px;
  }
}

.title-b {
  font-weight: bold;
  margin-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  .title-b {
    margin-bottom: 5px;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-slide:focus {
  outline: none;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*----- 3列デフォルトスライダー */
.default_slider .slick-slide {
  margin: 0 5px;
}
.default_slider .slick-arrow {
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  z-index: 1;
}
.default_slider .slick-arrow:before {
  content: '';
  width: 15px;
  height: 15px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.default_slider .slick-prev {
  left: 0;
}
.default_slider .slick-prev:before {
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
}
.default_slider .slick-next {
  right: 0;
}
.default_slider .slick-next:before {
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}
@media only screen and (min-width: 768px) {
  .default_slider .slick-slide {
    margin: 0 20px;
  }
  .default_slider .slick-arrow {
    width: 100px;
  }
  .default_slider .slick-arrow:before {
    width: 18px;
    height: 18px;
  }
}

/* ==============================================================
*  各ページ固有のスタイル
* ============================================================ */
/*
*  top
* ----------------------------------------*/
#main-contents {
  height: 100%;
}

@-webkit-keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 0.5s;
  display: block;
  text-align: center;
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.note_txt {
  font-size: 1.3rem;
}

.btn_area .btn {
  width: 80%;
  padding: 10px 15px;
  font-size: 1.6rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  font-weight: bold;
}

@media only screen and (min-width: 769px) {
  .btn_area .btn {
    width: 350px;
    padding: 18px 38px;
    font-size: 1.8rem;
  }
}
.top .logo {
  background-color: #fff;
}
.top .wrapper {
  width: 100%;
  padding: 0;
  margin-right: auto;
  margin-left: auto;
}
.top.kv {
  background-image: url(../../img/kv_bg.jpg);
  padding-bottom: 60px;
  background-repeat: none;
  background-position: top center;
  background-size: cover;
}
.top.kv #top_logo {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}
.top.kv .kv_wrapper {
  margin-left: auto;
  margin-right: auto;
  width: 89%;
}
.top.kv .kv_catch {
  width: auto;
  padding: 30px 0;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.top.kv .swiper-slide {
  text-align: center;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.top.kv .swiper-slide a {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.top.kv .swiper-slide img {
  width: 85%;
}
.top.kv .kv_innerbg {
  position: relative;
}
.top.kv .kv_innerbg:before {
  position: absolute;
  content: '';
  display: inline-block;
  background-image: url(../../img/kv_bg_parts01.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 120px;
  height: 142px;
  bottom: -60px;
  left: -35px;
}
@media only screen and (min-width: 769px) {
  .top.kv .kv_wrapper {
    width: 85%;
    margin-left: auto;
    margin-right: 0;
  }
  .top.kv #top_logo {
    margin-top: 20px;
    margin-left: 0;
    margin-right: 0;
  }
  .top.kv #top_logo a:hover {
    opacity: 0.7;
  }
  .top.kv .kv_catch {
    width: 100%;
    padding: 40px 0 60px;
  }
  .top.kv .swiper-slide a:hover {
    opacity: 0.7;
  }
  .top.kv .swiper-slide img {
    width: 100%;
    max-width: 290px;
  }
  .top.kv .kv_innerbg {
    position: relative;
  }
  .top.kv .kv_innerbg:before {
    position: absolute;
    content: '';
    display: inline-block;
    background-image: url(../../img/kv_bg_parts01.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 200px;
    height: 237px;
    bottom: -60px;
    left: -173px;
  }
}
@media only screen and (min-width: 769px) {
  .top .wrapper {
    width: 1200px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media only screen and (min-width: 768px) {
  .top header {
    top: 0;
    left: 0;
    z-index: 2;
  }
  .top nav li > a {
    color: #fff;
  }
}
@media only screen and (max-width: 767px) {
  .top header .logo {
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 2;
  }
}
.top .sec01 {
  padding-bottom: 50px;
  margin-top: 30px;
}
.top .top_h2 {
  color: #3a424c;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 20px;
}
.top .top_h2 span {
  color: #004dce;
  font-size: 1.6rem;
  font-weight: bold;
  display: block;
}
.top .top_features_area ul {
  margin-bottom: 30px;
}
.top .top_features_area ul li {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  width: 100%;
  border: 1px solid #002e91;
  border-radius: 10px;
  padding: 20px 15px;
  margin-bottom: 15px;
  color: #3a424c;
  background-color: #fff;
}
.top .top_features_area ul li .top_features_ico {
  margin-bottom: 20px;
}
.top .top_features_area ul li .top_features_txt_area .top_features_h {
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
  font-family: "Noto Sans Japanese", sans-serif;
}
.top .top_features_area ul li .top_features_txt_area .top_features_txt {
  font-size: 1.6rem;
  font-weight: 200;
  line-height: 1.5;
  font-family: "Noto Sans Japanese", sans-serif;
}
.top .top_features_area .btn_area .btn {
  width: 312px;
  padding: 10px 15px;
  font-size: 1.6rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 30px;
  -moz-box-shadow: 5px 5px 15px 2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 5px 5px 15px 2px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 5px 5px 15px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 5px 5px 15px 2px rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 769px) {
  .top .sec01 {
    margin-top: 220px;
    padding-bottom: 50px;
    background: linear-gradient(#ffffff 62%, #ececec 62%);
  }
  .top .top_h2 {
    font-size: 4.0rem;
    margin-bottom: 40px;
  }
  .top .top_h2 span {
    font-size: 1.8rem;
  }
  .top .top_features_area ul {
    margin-bottom: 60px;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
  }
  .top .top_features_area ul li {
    width: 31.3%;
    padding: 40px 30px 10px;
    min-height: 380px;
    margin-bottom: 0;
  }
  .top .top_features_area ul li .top_features_ico {
    height: 90px;
    margin-bottom: 40px;
  }
  .top .top_features_area ul li .top_features_h {
    margin-bottom: 15px;
  }
  .top .top_features_area .btn_area .btn {
    width: 312px;
    padding: 18px 38px;
    font-size: 1.8rem;
  }
}
.top .movie-wrap {
  background-color: #ececec;
  padding: 40px 0 0;
}
.top .movie-wrap .inner-s {
  max-width: 800px;
  width: 96%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-bottom: 50px;
}
.top .movie-wrap .movie_h {
  color: #2f3032;
  font-weight: bold;
  font-size: 2.0rem;
  text-align: center;
  margin-bottom: 10px;
}
.top .movie-wrap .youtube_wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  margin-bottom: 10px;
}
.top .movie-wrap .youtube_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top .movie-wrap .movie_note {
  font-size: 1.4rem;
  color: #2f3032;
}
@media only screen and (min-width: 769px) {
  .top .movie-wrap .movie_h {
    font-size: 3.0rem;
    margin-bottom: 25px;
  }
  .top .movie-wrap .movie_note {
    font-size: 1.5rem;
  }
  .top .movie-wrap .inner-s {
    padding-bottom: 110px;
  }
}
.top .solution-wrap {
  margin-top: 0;
  padding: 50px 0;
  background-color: #fff;
}
.top .solution-wrap ul {
  margin-bottom: 20px;
}
.top .solution-wrap ul li {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
  color: #3a424c;
}
.top .solution-wrap ul li .top_solution_img {
  margin-bottom: 10px;
  width: 80%;
}
.top .solution-wrap ul li .top_solution_txt {
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: "Noto Sans Japanese", sans-serif;
  font-weight: 200;
}
.top .solution-wrap .btn_area .btn {
  width: 312px;
  padding: 10px 15px;
  font-size: 1.6rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 30px;
  -moz-box-shadow: 5px 5px 15px 2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 5px 5px 15px 2px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 5px 5px 15px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 5px 5px 15px 2px rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 769px) {
  .top .solution-wrap {
    padding: 100px 0;
  }
  .top .solution-wrap ul {
    margin-bottom: 40px;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
  }
  .top .solution-wrap ul li {
    width: 31%;
  }
  .top .solution-wrap ul li .top_solution_img {
    min-height: 290px;
    height: 100%;
    margin-bottom: 20px;
    width: 100%;
  }
  .top .solution-wrap ul .item_01 .top_solution_img {
    margin-bottom: 10px;
  }
  .top .solution-wrap ul .item_02 .top_solution_img {
    padding-top: 25px;
  }
  .top .solution-wrap ul .item_03 .top_solution_img {
    padding-top: 65px;
  }
  .top .solution-wrap .btn_area .btn {
    width: 312px;
    padding: 18px 38px;
    font-size: 1.8rem;
  }
}
.top .service-wrap {
  background-color: #ececec;
  padding: 40px 0;
}
.top .service-wrap ul li {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
}
.top .service-wrap ul li .top_service_h {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #fff;
  padding: 10px;
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Noto Sans Japanese", sans-serif;
  line-height: 1.4;
  text-align: center;
  height: 70px;
  vertical-align: middle;
  background-color: #004dce;
  -moz-border-radius: 10px 10px 0 0;
  -webkit-border-radius: 10px 10px 0 0;
  -ms-border-radius: 10px 10px 0 0;
  border-radius: 10px 10px 0 0;
}
.top .service-wrap ul li .box_inner {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 15px 15px;
}
.top .service-wrap ul li .box_inner .top_service_h_sub {
  color: #004dce;
  font-weight: bold;
  font-size: 2.4rem;
  font-family: 'Roboto', sans-serif;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 10px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.top .service-wrap ul li .box_inner .top_service_h_sub small {
  font-weight: normal;
  font-size: 1.5rem;
  display: block;
  line-height: 1;
}
.top .service-wrap ul li .box_inner .top_solution_img {
  margin-bottom: 0px;
}
.top .service-wrap ul li .top_solution_txt {
  margin-bottom: 15px;
  line-height: 1.4;
}
.top .service-wrap ul li .btn_area .btn {
  width: 220px;
  padding: 10px 10px;
  font-size: 1.4rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 30px;
  -moz-box-shadow: 5px 5px 15px 2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 5px 5px 15px 2px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 5px 5px 15px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 5px 5px 15px 2px rgba(0, 0, 0, 0.1);
}
.top .service-wrap ul li .btn_area .btn.btn_arrow:before {
  left: 15px;
  width: 7px;
  height: 7px;
}
.top .service-wrap ul .item_03 .btn_area .btn {
  padding: 8px 20px;
}
@media only screen and (min-width: 769px) {
  .top .service-wrap {
    padding: 60px 0 90px;
  }
  .top .service-wrap ul {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .top .service-wrap ul li {
    width: 31%;
    margin-bottom: 0px;
  }
  .top .service-wrap ul li .box_inner {
    padding: 30px 20px 20px;
    min-height: 550px;
  }
  .top .service-wrap ul li .box_inner .top_service_h_sub {
    font-size: 3.0rem;
    height: 78px;
    margin-bottom: 0px;
  }
  .top .service-wrap ul li .box_inner .top_service_h_sub small {
    font-size: 1.6rem;
  }
  .top .service-wrap ul li .box_inner .top_solution_img {
    margin-bottom: 20px;
  }
  .top .service-wrap ul li .box_inner .top_solution_txt {
    margin-bottom: 0px;
    height: 160px;
  }
  .top .service-wrap ul li .btn_area .btn {
    width: 220px;
    padding: 15px 20px;
  }
}
.top .contact-wrap {
  background-image: url(../../img/contact_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 30px 30px;
}
.top .contact-wrap .contact_h {
  font-size: 3.0rem;
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
}
.top .contact-wrap .contact_box_area .contact_box_L {
  margin-bottom: 40px;
}
.top .contact-wrap .contact_box_area .contact_box {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-direction: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  color: #4a4e67;
  margin-bottom: 25px;
}
.top .contact-wrap .contact_box_area .contact_box .contact_box_h {
  font-weight: bold;
  font-size: 2.0rem;
  font-family: "Noto Sans Japanese", sans-serif;
  line-height: 1.5;
  padding-bottom: 20px;
  border-bottom: 1px dotted #4a4e67;
  margin-bottom: 20px;
  width: 100%;
  text-align: center;
}
.top .contact-wrap .contact_box_area .contact_box .contact_box_txt {
  font-size: 1.6rem;
  font-family: "Noto Sans Japanese", sans-serif;
  font-weight: 200;
  line-height: 1.5;
  margin-bottom: 30px;
  text-align: center;
}
.top .contact-wrap .contact_box_area .contact_box .contact_box_txt .tel {
  font-size: 2.0rem;
  font-weight: bold;
}
.top .contact-wrap .contact_box_area .contact_box .contact_box_txt .tel a {
  color: #4a4e67;
}
.top .contact-wrap .contact_box_area .contact_box .btn_area .btn {
  width: 260px;
  padding: 10px;
  font-size: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 30px;
  -moz-box-shadow: 5px 5px 15px 2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 5px 5px 15px 2px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 5px 5px 15px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 5px 5px 15px 2px rgba(0, 0, 0, 0.1);
}
.top .contact-wrap .contact_box_area .contact_box .btn_area .btn.btn_arrow:before {
  left: 20px;
}
.top .contact-wrap .contact_box_area .btn_area_02 .btn {
  width: 100%;
  padding: 15px 20px 15px 45px;
  font-size: 1.6rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 30px;
  moz-box-shadow: 5px 5px 15px 2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 5px 5px 15px 2px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 5px 5px 15px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 5px 5px 15px 2px rgba(0, 0, 0, 0.1);
}
.top .contact-wrap .contact_box_area .btn_area_02 .btn.btn_arrow:before {
  left: 20px;
}
@media only screen and (min-width: 769px) {
  .top .contact-wrap {
    padding: 60px 65px;
  }
  .top .contact-wrap .contact_h {
    font-size: 4.0rem;
    margin-bottom: 40px;
  }
  .top .contact-wrap .contact_box_area {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .top .contact-wrap .contact_box_area .contact_box_L, .top .contact-wrap .contact_box_area .contact_box_R {
    width: 48%;
    margin-bottom: 0;
  }
  .top .contact-wrap .contact_box_area .contact_box {
    padding: 40px;
    min-height: 440px;
    margin-bottom: 70px;
  }
  .top .contact-wrap .contact_box_area .contact_box .contact_box_h {
    font-size: 2.0rem;
    padding-bottom: 35px;
  }
  .top .contact-wrap .contact_box_area .contact_box .contact_box_txt {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 40px;
  }
  .top .contact-wrap .contact_box_area .contact_box .contact_box_txt .tel {
    font-size: 3.5rem;
    margin: 10px 0;
  }
  .top .contact-wrap .contact_box_area .contact_box .contact_box_txt .tel:hover {
    pointer-events: none;
    text-decoration: none;
    cursor: default;
  }
  .top .contact-wrap .contact_box_area .contact_box .contact_box_txt .tel a {
    text-decoration: none;
    pointer-events: none;
  }
  .top .contact-wrap .contact_box_area .contact_box .contact_box_txt .tel a:hover {
    pointer-events: none;
    text-decoration: none;
    cursor: default;
  }
  .top .contact-wrap .contact_box_area .contact_box .btn_area {
    width: 100%;
  }
  .top .contact-wrap .contact_box_area .contact_box .btn_area .btn {
    width: 90%;
    max-width: 370px;
    padding: 15px 35px;
  }
  .top .contact-wrap .contact_box_area .contact_box .btn_area .btn.btn_arrow:before {
    left: 20px;
  }
  .top .contact-wrap .contact_box_area .btn_area_02 .btn {
    width: 100%;
    padding: 15px 25px;
    font-size: 1.8rem;
  }
  .top .contact-wrap .contact_box_area .btn_area_02 .btn:hover.btn_arrow:before {
    left: 20px;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
  }
}

#top .accordion-container {
  position: relative;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
}
#top .accordion-container .accordion-title {
  display: block;
  position: relative;
  margin: 0 0 20px 0;
  padding: 10px 0;
  border-radius: 32px;
  font-size: 2.0rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
#top .accordion-container .accordion-title:after {
  content: "";
  position: absolute;
  top: 20px;
  right: 25px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-top-color: #fff;
}
#top .accordion-container .accordion-title.open {
  margin-bottom: 0;
}
#top .accordion-container .accordion-title.open:after {
  content: "";
  position: absolute;
  top: 10px;
  border: 8px solid transparent;
}
#top .accordion-container .accordion-title.acc_ttl01 {
  background-color: #8fc321;
  border: 2px solid #8fc321;
  color: #fff;
}
#top .accordion-container .accordion-title.acc_ttl01:active {
  background-color: #fff;
  border: 2px solid #8fc321;
  color: #8fc321;
}
#top .accordion-container .accordion-title.acc_ttl01.open {
  border: 2px solid #8fc321;
  color: #8fc321;
  background-color: #fff;
}
#top .accordion-container .accordion-title.acc_ttl01.open:after {
  border-bottom-color: #8fc321;
}
#top .accordion-container .accordion-title.acc_ttl02 {
  background-color: #ec6d7b;
  border: 2px solid #ec6d7b;
  color: #fff;
}
#top .accordion-container .accordion-title.acc_ttl02:active {
  background-color: #fff;
  border: 2px solid #ec6d7b;
  color: #ec6d7b;
}
#top .accordion-container .accordion-title.acc_ttl02.open {
  border: 2px solid #ec6d7b;
  color: #ec6d7b;
  background-color: #fff;
}
#top .accordion-container .accordion-title.acc_ttl02.open:after {
  border-bottom-color: #ec6d7b;
}
#top .accordion-container .accordion-content {
  display: none;
  margin-bottom: 40px;
}
#top .accordion-container .accordion-content .inner_bg {
  width: 100%;
  background-image: url(../../img/lead_bg01.png);
  background-position: top center;
  background-repeat: repeat-x;
}
#top .accordion-container .accordion-content .lead_area {
  padding-top: 35px;
  text-align: left;
  margin-bottom: 30px;
}
#top .accordion-container .accordion-content .lead_area img {
  margin-bottom: 30px;
}
@media only screen and (min-width: 769px) {
  #top .accordion-container {
    margin-top: 90px;
    margin-bottom: 90px;
  }
  #top .accordion-container .accordion-title {
    width: 75%;
    font-size: 2.4rem;
    padding: 15px 0;
    margin-bottom: 0 0 40px 0;
    line-height: 1.3;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }
  #top .accordion-container .accordion-title:hover {
    opacity: 0.7;
  }
  #top .accordion-container .accordion-title:after {
    border: 12px solid transparent;
    border-top-color: #fff;
    right: 45px;
    top: 25px;
  }
  #top .accordion-container .accordion-title.open {
    margin-bottom: 0;
  }
  #top .accordion-container .accordion-title.open:after {
    border: 12px solid transparent;
    top: 15px;
  }
  #top .accordion-container .accordion-content {
    margin-bottom: 90px;
  }
  #top .accordion-container .accordion-content .lead_area {
    padding-top: 50px;
    text-align: center;
  }
}
#top .theme_list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
#top .theme_list li {
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}
#top .theme_list li:nth-of-type(odd) {
  background-color: #fffcd7;
}
#top .theme_list li:nth-of-type(2n) {
  background-color: #ffeec3;
}
#top .theme_list li .class_link {
  font-weight: bold;
  font-size: 1.7rem;
  margin-bottom: 10px;
  line-height: 1;
  position: relative;
  padding-left: 15px;
}
#top .theme_list li .class_link:before {
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 6px;
  height: 6px;
}
#top .theme_list li .class_link.class_01 {
  color: #605293;
}
#top .theme_list li .class_link.class_01:before {
  border-top: 3px solid #605293;
  border-right: 3px solid #605293;
}
#top .theme_list li .class_link.class_02 {
  color: #35b597;
}
#top .theme_list li .class_link.class_02:before {
  border-top: 3px solid #35b597;
  border-right: 3px solid #35b597;
}
#top .theme_list li .class_link.class_03 {
  color: #cb4837;
}
#top .theme_list li .class_link.class_03:before {
  border-top: 3px solid #cb4837;
  border-right: 3px solid #cb4837;
}
#top .theme_list li .class_link.class_04 {
  color: #86b81b;
}
#top .theme_list li .class_link.class_04:before {
  border-top: 3px solid #86b81b;
  border-right: 3px solid #86b81b;
}
#top .theme_list li .class_link.class_05 {
  color: #8476b5;
}
#top .theme_list li .class_link.class_05:before {
  border-top: 3px solid #8476b5;
  border-right: 3px solid #8476b5;
}
#top .theme_list li .class_link.class_06 {
  color: #de82a7;
}
#top .theme_list li .class_link.class_06:before {
  border-top: 3px solid #de82a7;
  border-right: 3px solid #de82a7;
}
#top .theme_list li .theme_top {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  margin-bottom: 10px;
  margin-top: 8px;
}
#top .theme_list li .theme_top .theme_flag {
  margin-right: 10px;
  width: 34%;
}
#top .theme_list li .theme_top .theme_R {
  width: 90%;
}
#top .theme_list li .theme_top .theme_R .marker {
  margin-bottom: 5px;
  line-height: 1.6;
  font-weight: bold;
}
#top .theme_list li .theme_top .theme_R .marker span {
  background: linear-gradient(rgba(0, 0, 0, 0) 60%, #ffea00 60%);
}
#top .theme_list li .theme_top .theme_R .theme_lead {
  font-weight: bold;
  font-size: 1.7rem;
  line-height: 1.4;
}
#top .theme_list li .theme_top .theme_R .theme_lead.lead_green {
  color: #86b81b;
}
#top .theme_list li .theme_top .theme_R .theme_lead.lead_pink {
  color: #ec6d7b;
}
#top .theme_list li .theme_main {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 15px;
}
#top .theme_list li .theme_main .theme_txt {
  width: 70%;
  margin-right: 10px;
  line-height: 1.5;
}
#top .theme_list li .theme_main .theme_img {
  width: 30%;
  max-width: 125px;
}
#top .theme_list li .theme_main.img_l .theme_txt {
  width: 60%;
}
#top .theme_list li .theme_main.img_l .theme_img {
  width: 38%;
  max-width: 200px;
}
#top .theme_list li .approach_area {
  width: 100%;
  padding: 10px 12px;
  background-color: #fff;
  border-radius: 10px;
  font-size: 1.4rem;
}
#top .theme_list li .approach_area.approach_G .approach_h {
  color: #86b81b;
}
#top .theme_list li .approach_area.approach_G .approach_list p:before {
  border-color: transparent transparent transparent #86b81b;
}
#top .theme_list li .approach_area.approach_P .approach_h {
  color: #ec6d7b;
}
#top .theme_list li .approach_area.approach_P .approach_list p:before {
  border-color: transparent transparent transparent #ec6d7b;
}
#top .theme_list li .approach_area .approach_h {
  font-weight: bold;
  line-height: 1;
  margin-bottom: 3px;
}
#top .theme_list li .approach_area .approach_list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}
#top .theme_list li .approach_area .approach_list p {
  margin-right: 12px;
  padding-left: 10px;
  position: relative;
}
#top .theme_list li .approach_area .approach_list p:before {
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  width: 0;
  height: 0;
  border-width: 5px;
  border-style: solid;
}
#top .theme_list li .theme_main02 {
  margin-bottom: 15px;
}
#top .theme_list li .theme_main03 {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
#top .theme_list li .theme_main03 .approach_area {
  width: 70%;
  margin-right: 10px;
}
#top .theme_list li .theme_main03 .theme_img {
  width: 40%;
}
@media only screen and (min-width: 769px) {
  #top .theme_list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  #top .theme_list li {
    width: 48.5%;
    max-width: 585px;
    padding: 30px;
  }
  #top .theme_list li .class_link {
    font-size: 1.8rem;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }
  #top .theme_list li .class_link:hover {
    opacity: 0.7;
  }
  #top .theme_list li .theme_top {
    margin-top: 10px;
  }
  #top .theme_list li .theme_top .theme_flag {
    width: auto;
  }
  #top .theme_list li .theme_top .theme_R {
    width: auto;
  }
  #top .theme_list li .theme_top .theme_R .theme_lead {
    font-size: 2.0rem;
    line-height: 1.5;
  }
  #top .theme_list li .theme_main {
    margin-bottom: 25px;
  }
  #top .theme_list li .theme_main .theme_txt {
    width: 73%;
    max-width: 385px;
  }
  #top .theme_list li .theme_main .theme_img {
    width: 24.0%;
  }
  #top .theme_list li .approach_area {
    padding: 15px;
  }
  #top .theme_list li .theme_main03 .approach_area {
    width: 58%;
    max-width: 385px;
  }
  #top .theme_list li .theme_main03 .theme_img {
    width: 42%;
  }
}
#top .line_bg {
  background-image: url(../../img/line.png);
  background-position: top center;
  background-repeat: repeat-x;
}
#top .class_area {
  margin-bottom: 30px;
}
#top .class_area .lead_area2 {
  padding-top: 35px;
  margin-bottom: 30px;
  text-align: center;
}
#top .class_area .lead_area2 img {
  margin-bottom: 25px;
  margin-right: auto;
  margin-left: auto;
}
#top .class_area .lead_area2 p {
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}
#top .class_area .class_list_area {
  margin-bottom: 30px;
}
#top .class_area .class_list_area .class_h_G {
  background-color: #8fc321;
  font-size: 2.0rem;
  font-weight: bold;
  color: #fff;
  padding: 10px 20px;
  line-height: 1;
  margin-bottom: 20px;
}
#top .class_area .class_list_area .class_h_P {
  background-color: #ec6d7b;
  font-size: 2.0rem;
  font-weight: bold;
  color: #fff;
  padding: 10px 20px;
  line-height: 1;
  margin-bottom: 20px;
}
#top .class_area .class_list_area ul li {
  margin-bottom: 20px;
  padding: 8px 15px 15px;
}
#top .class_area .class_list_area ul li .class_h {
  font-weight: bold;
  font-size: 2.0rem;
  margin-bottom: 5px;
}
#top .class_area .class_list_area ul li .class_txt {
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.45;
}
#top .class_area .class_list_area ul li .txt {
  margin-bottom: 10px;
  line-height: 1.45;
}
#top .class_area .class_list_area ul li .img_area {
  text-align: center;
}
#top .class_area .class_list_area ul #class01 {
  border: 2px solid #615293;
}
#top .class_area .class_list_area ul #class01 .class_h {
  color: #615293;
  border-bottom: 1px solid #615293;
}
#top .class_area .class_list_area ul #class01 .class_txt {
  color: #615293;
}
#top .class_area .class_list_area ul #class02 {
  border: 2px solid #35b597;
}
#top .class_area .class_list_area ul #class02 .class_h {
  color: #35b597;
  border-bottom: 1px solid #35b597;
}
#top .class_area .class_list_area ul #class02 .class_txt {
  color: #35b597;
}
#top .class_area .class_list_area ul #class03 {
  border: 2px solid #cb4837;
}
#top .class_area .class_list_area ul #class03 .class_h {
  color: #cb4837;
  border-bottom: 1px solid #cb4837;
}
#top .class_area .class_list_area ul #class03 .class_txt {
  color: #cb4837;
}
#top .class_area .class_list_area ul #class04 {
  border: 2px solid #86b81b;
}
#top .class_area .class_list_area ul #class04 .class_h {
  color: #86b81b;
  border-bottom: 1px solid #86b81b;
}
#top .class_area .class_list_area ul #class04 .class_txt {
  color: #86b81b;
}
#top .class_area .class_list_area ul #class05 {
  border: 2px solid #8476b5;
}
#top .class_area .class_list_area ul #class05 .class_h {
  color: #8476b5;
  border-bottom: 1px solid #8476b5;
}
#top .class_area .class_list_area ul #class05 .class_txt {
  color: #8476b5;
}
#top .class_area .class_list_area ul #class06 {
  border: 2px solid #de82a7;
}
#top .class_area .class_list_area ul #class06 .class_h {
  color: #de82a7;
  border-bottom: 1px solid #de82a7;
}
#top .class_area .class_list_area ul #class06 .class_txt {
  color: #de82a7;
}
@media only screen and (min-width: 769px) {
  #top .class_area {
    margin-bottom: 50px;
  }
  #top .class_area .lead_area2 {
    padding-top: 70px;
    margin-bottom: 60px;
  }
  #top .class_area .lead_area2 img {
    margin-bottom: 40px;
  }
  #top .class_area .lead_area2 p {
    width: 56%;
    max-width: 675px;
  }
  #top .class_area .class_list_area {
    margin-bottom: 40px;
  }
  #top .class_area .class_list_area .class_h_G {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
  #top .class_area .class_list_area .class_h_P {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
  #top .class_area .class_list_area ul {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  #top .class_area .class_list_area ul li {
    width: 31.5%;
    padding: 10px 20px 20px;
  }
  #top .class_area .class_list_area ul li .class_h {
    font-size: 2.0rem;
  }
  #top .class_area .class_list_area ul li .txt {
    margin-bottom: 15px;
  }
}

/* ここから追加0618 キャリアデザインsp*/
#top .cdp_area {
  background: #f9f6f1;
  padding: 15px;
  width: 100%;
}
#top .cdp_area .cdp_lead {
  font-family: "NotoSerifCJKjp", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.45;
  text-align: center;
  margin-top: 20px;
}
#top .cdp_area .cdp_lead .marker {
  background: linear-gradient(transparent 90%, #ffea00 90%);
}
#top .cdp_area .cdp_lead .cdp_lead_blue {
  color: #0078b5;
}
#top .cdp_area .cdp_head {
  display: flex;
  align-items: center;
  border-left: 7px solid #0078b5;
  padding-left: 5px;
  margin-top: 30px;
}
#top .cdp_area .cdp_head .cdp_head_main {
  color: #0078b5;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.45;
  margin-right: 5px;
}
#top .cdp_area .cdp_head .cdp_head_sub {
  position: relative;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #0078b5;
}
#top .cdp_area .cdp_head .cdp_head_sub span {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 65px;
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  line-height: 1.3;
}
#top .cdp_area .cdp_list .cdp_item {
  margin-top: 20px;
}
#top .cdp_area .cdp_list .cdp_item .cdp_item_head {
  font-size: 1.4rem;
  font-weight: bold;
}
#top .cdp_area .cdp_list .cdp_item .cdp_item_img {
  width: 100%;
  margin-top: 5px;
}
#top .cdp_area .cdp_list .cdp_item .cdp_item_txt {
  margin-top: 5px;
}
/* ここまで追加0618 キャリアデザインsp*/
/* ここから追加0618 キャリアデザインpc*/
@media only screen and (min-width: 769px) {
  #top .cdp_area {
    padding: 20px 15px;
    width: 92%;
  }
  #top .cdp_area .cdp_lead {
    font-size: 3.2rem;
  }
  #top .cdp_area .cdp_head {
    justify-content: center;
    margin-top: 50px;
    padding-left: 0;
    border-left: none;
  }
  #top .cdp_area .cdp_head .cdp_head_main {
    font-size: 2.4rem;
    margin-right: 15px;
    border-left: 7px solid #0078b5;
    padding-left: 5px;
  }
  #top .cdp_area .cdp_head .cdp_head_sub {
    width: 75px;
    height: 75px;
  }
  #top .cdp_area .cdp_head .cdp_head_sub span {
    width: 75px;
    font-size: 1.3rem;
  }
  #top .cdp_area .cdp_list {
    display: flex;
    /* column-gap: 25px; */
  }
  #top .cdp_area .cdp_list .cdp_item {
    width: calc(100%/3);
    margin-top: 30px;
    border-right: 1px solid #0078b5;
    padding: 0 15px;
  }
  #top .cdp_area .cdp_list .cdp_item:last-child {
    border-right: none;
  }
  #top .cdp_area .cdp_list .cdp_item .cdp_item_head {
    font-size: 1.7rem;
    line-height: 1.45;
  }
}
/* ここまで追加0618 キャリアデザインpc*/

/* ここから追加0618 就職sp*/
#top .work_area {
  background: #d3edfb;
  padding: 15px;
  margin-bottom: 30px;
  width: 100%;
}
#top .work_area .work_topic {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
}
#top .work_area .work_topic::before {
  content: "";
  background: url(../../img/topic_treat.png) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 60px;
  height: 60px;
}
#top .work_area .work_topic .work_topic_head {
  font-family: "NotoSerifCJKjp", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  color: #0078b5;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.45;
  text-align: center;
  margin-top: -40px;
}
#top .work_area .work_topic .work_topic_txt {
  margin-top: 20px;
}
#top .work_area .work_topic .work_topic_no {
  max-width: 564px;
  margin: 15px auto 0 auto;
}
#top .work_area .work_topic .work_topic_no img {
  width: 100%;
}
#top .work_area .work_topic .work_topic_no .work_topic_no_txt {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}
#top .work_area .work_topic .work_topic_no .work_topic_no_txt .arrow {
  margin-top: -5px;
}
#top .work_area .work_topic .work_topic_no .work_topic_no_txt .arrow div {
  background: #0078b5;
  height: calc(tan(60deg) * 15px / 2);
  width: 15px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin: 0 auto;
}
#top .work_area .work_topic .work_topic_no .work_topic_no_txt_01 {
  margin-top: -10px;
}
/* #top .work_area .work_topic .work_topic_no .work_topic_no_txt_02 {
  margin-top: -15px;
} */
#top .work_area .work_topic .work_topic_no .work_topic_no_txt .marker {
  background: linear-gradient(transparent 60%, #ffea00 60%);
}
#top .work_area .work_topic .work_topic_no .work_topic_no_txt .work_topic_no_txt_blue {
  font-family: "NotoSerifCJKjp", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  color: #0078b5;
  font-size: 1.8rem;
}
#top .work_area .work_topic .work_topic_no .work_topic_no_txt .work_topic_no_txt_l {
  font-size: 3.2rem;
}
#top .work_area .work_topic .work_topic_graph {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}
#top .work_area .work_topic .work_topic_graph .work_topic_graph_img {
  width: 100px;
  margin-right: 10px;
}
#top .work_area .work_topic .work_topic_graph .work_topic_graph_txt .work_topic_graph_txt_l {
  font-family: "NotoSerifCJKjp", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  color: #0078b5;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.45;
}
#top .work_area .work_topic .work_topic_graph .work_topic_graph_txt .work_topic_graph_txt_s {
  font-size: 1.0rem;
  line-height: 1.45;
  margin-top: 5px;
}
/* 0621修正分 */
#top .work_area .work_right {
  margin-top: 30px;
}
#top .work_area .work_right .work_rate_container .work_rate_sub {
  font-size: 1.1rem;
  font-weight: bold;
  color: #0078b5;
  text-align: center;
}
#top .work_area .work_right .work_rate_container .work_rate_sub span {
  border: 1px solid #0078b5;
  background: #fff;
  padding: 5px 30px 5px 30px;
  border-radius: 50px;
}
#top .work_area .work_right .work_rate_container .work_rate_txt {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}
#top .work_area .work_right .work_rate_container .work_rate_notes {
  font-size: 1.0rem;
  text-align: center;
}
#top .work_area .work_right .work_rate_container .work_rate_txt .marker {
  background: linear-gradient(transparent 60%, #ffea00 60%);
}
#top .work_area .work_right .work_rate_container .work_rate_txt .work_rate_txt_blue {
  font-family: "NotoSerifCJKjp", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  color: #0078b5;
  font-size: 1.8rem;
}
#top .work_area .work_right .work_rate_container .work_rate_txt .work_rate_txt_l {
  font-size: 3.2rem;
}
/* 0621修正分ここまで */
#top .work_area .work_strengths_container {
  background: #dff2fc;
  padding: 10px;
  margin-top: 15px;
  border-radius: 10px;
}
#top .work_area .work_strengths {
  display: flex;
  justify-content: space-between;
}
#top .work_area .work_strengths .work_strengths_txt {
  width: 60%;
} 
#top .work_area .work_strengths .work_strengths_txt .work_strengths_head {
  font-family: "NotoSerifCJKjp", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: bold;
  line-height: 1.45;
  text-align: center;
}
#top .work_area .work_strengths .work_strengths_txt .work_strengths_head .work_strengths_head_s {
  font-size: 1.1rem;
}
#top .work_area .work_strengths .work_strengths_txt .work_strengths_head .work_strengths_head_l {
  position: relative;
  font-size: 1.8rem;
}
#top .work_area .work_strengths .work_strengths_txt .work_strengths_head .work_strengths_head_l::before {
  position: absolute;
  left: -8px;
  bottom: 0;
  content: "";
  background: url(../../img/strengths_head_left.png) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 16px;
  height: 16px;
}
#top .work_area .work_strengths .work_strengths_txt .work_strengths_head .work_strengths_head_l::after {
  position: absolute;
  right: -16px;
  bottom: 0;
  content: "";
  background: url(../../img/strengths_head_right.png) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 16px;
  height: 16px;
}
#top .work_area .work_strengths .work_strengths_txt .work_strengths_list {
  margin: 10px 10px 0 0;
}
#top .work_area .work_strengths .work_strengths_txt .work_strengths_list .work_strengths_item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #fff;
}
#top .work_area .work_strengths .work_strengths_txt .work_strengths_list .work_strengths_item:last-child {
  border: none;
}
#top .work_area .work_strengths .work_strengths_txt .work_strengths_list .work_strengths_item .work_strengths_item_no {
  font-family: "NotoSerifCJKjp", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  color: #0078b5;
  font-size: 1.8rem;
  font-weight: bold;
  margin-right: 15px;
}
#top .work_area .work_strengths .work_strengths_txt .work_strengths_list .work_strengths_item .work_strengths_item_no .work_strengths_item_no_l {
  font-size: 3.2rem;
}
#top .work_area .work_strengths .work_strengths_txt .work_strengths_list .work_strengths_item .work_strengths_item_txt {
  font-size: 1.8rem;
  font-weight: bold;
  padding-top: 10px;
}
#top .work_area .work_strengths .work_strengths_txt .work_strengths_list .work_strengths_item .work_strengths_item_txt .marker {
  background: linear-gradient(transparent 70%, #ffea00 70%);
}
#top .work_area .work_strengths .work_strengths_img {
  width: 40%;
}
#top .work_area .work_strengths .work_strengths_img img {
  width: 100%;
}
#top .work_area .work_strengths .work_strengths_img .work_strengths_img_02 {
  margin-top: 10px;
}
#top .work_area .work_strengths_notes {
  font-size: 1.0rem;
  margin-top: 15px;
}
/* ここまで追加0618 就職sp*/
/* ここから追加0618 就職tab*/
@media only screen and (min-width: 769px) {
  #top .work_area {
    width: 92%;
    margin-top: 40px;
  }
  #top .work_area .work_topic::before {
    width: 90px;
    height: 90px;
  }
  #top .work_area .work_topic .work_topic_head {
    font-size: 2.4rem;
    margin-top: -50px;
  }
  #top .work_area .work_topic .work_topic_no .work_topic_no_txt .arrow {
    margin-top: -8px;
  }
  #top .work_area .work_topic .work_topic_no .work_topic_no_txt .arrow div {
    height: calc(tan(60deg) * 20px / 2);
    width: 20px;
  }
  #top .work_area .work_topic .work_topic_no .work_topic_no_txt {
    font-size: 2.2rem;
  }
  #top .work_area .work_topic .work_topic_no .work_topic_no_txt .work_topic_no_txt_blue {
    font-size: 3.2rem;
  }
  #top .work_area .work_topic .work_topic_no .work_topic_no_txt .work_topic_no_txt_l {
    font-size: 5.6rem;
  }
  #top .work_area .work_topic .work_topic_graph .work_topic_graph_img {
    width: 150px;
    margin-right: 25px;
  }
  #top .work_area .work_topic .work_topic_graph .work_topic_graph_txt .work_topic_graph_txt_l {
    font-size: 1.7rem;
  }
  #top .work_area .work_topic .work_topic_graph .work_topic_graph_txt .work_topic_graph_txt_s {
    font-size: 1.3rem;
  }
  /* 0621修正分 */
  #top .work_area .work_right .work_rate_container .work_rate_sub {
    font-size: 3.1rem;
  }
  #top .work_area .work_right .work_rate_container .work_rate_sub span {
    padding: 8px 120px 8px 120px;
  }
  #top .work_area .work_right .work_rate_container .work_rate_txt {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  #top .work_area .work_right .work_rate_container .work_rate_notes {
    font-size: 1.3rem;
    margin-top: 10px;
  }
  #top .work_area .work_right .work_rate_container .work_rate_txt .work_rate_txt_blue {
    font-size: 3.2rem;
  }
  #top .work_area .work_right .work_rate_container .work_rate_txt .work_rate_txt_l {
    font-size: 5.6rem;
  }
  /* 0621修正分ここまで */
  #top .work_area .work_strengths .work_strengths_txt .work_strengths_head .work_strengths_head_s {
    font-size: 1.3rem;
  }
  #top .work_area .work_strengths .work_strengths_txt .work_strengths_head .work_strengths_head_l {
    position: relative;
    font-size: 2.4rem;
  }
  #top .work_area .work_strengths .work_strengths_txt .work_strengths_head .work_strengths_head_l::before {
    left: -10px;
    width: 20px;
    height: 20px;
  }
  #top .work_area .work_strengths .work_strengths_txt .work_strengths_head .work_strengths_head_l::after {
    right: -20px;
    width: 20px;
    height: 20px;
  }
  #top .work_area .work_strengths .work_strengths_txt .work_strengths_list .work_strengths_item .work_strengths_item_no {
    font-size: 2.4rem;
  }
  #top .work_area .work_strengths .work_strengths_txt .work_strengths_list .work_strengths_item .work_strengths_item_no .work_strengths_item_no_l {
    font-size: 4.2rem;
  }
  #top .work_area .work_strengths .work_strengths_txt .work_strengths_list .work_strengths_item .work_strengths_item_txt {
    font-size: 2.4rem;
  }
  #top .work_area .work_strengths_notes {
    font-size: 1.3rem;
  }
}
/* ここまで追加0618 就職tab*/
/* ここから追加0618 就職pc*/
@media only screen and (min-width: 1000px) {
  #top .work_area {
    display: flex;
    align-items: center;
    padding: 0;
  }
  #top .work_area .work_topic {
    width: 50%;
    padding: 20px;
    margin: 30px 15px 30px 30px;
  }
  #top .work_area .work_topic .work_topic_no .work_topic_no_txt_01 {
    line-height: 1.2;
  }
  #top .work_area .work_topic .work_topic_graph {
    margin-top: 25px;
  }
  #top .work_area .work_right {
    width: 50%;
    margin: 30px 30px 30px 15px;
    display: flex;
    flex-direction: column;
  }
  #top .work_area .work_right .work_rate_container {
    display: flex;
    justify-content: center;
  }
  #top .work_area .work_strengths_container {
    padding: 20px;
    margin-top: 40px;
  }
}

#top .gbp_area {
  margin-bottom: 30px;
}
#top .gbp_area .line_bg02 {
  background-image: url(../../img/lead_04_bg01.png), url(../../img/ad_04_bg02.png);
  background-position: top center, bottom center;
  background-repeat: no-repeat;
}
#top .gbp_area .lead_area3 {
  padding-top: 20px;
  margin-bottom: 30px;
  text-align: center;
  padding-bottom: 25px;
}
#top .gbp_area .lead_area3 img {
  margin-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
}
#top .gbp_area .lead_area3 p {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
#top .gbp_area .gbp_lead {
  font-family: "NotoSerifCJKjp", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 10px;
}
#top .gbp_area .gbp_lead_txt {
  margin-bottom: 20px;
}
#top .gbp_area .gbp_lead_txt .fw-b {
  line-height: 1;
}
#top .gbp_area .gbp_flow .gbp_flow_box {
  background-color: #f4efe9;
  padding: 10px;
  position: relative;
}
#top .gbp_area .gbp_flow .gbp_flow_box.num1 {
  margin-bottom: 40px;
}
#top .gbp_area .gbp_flow .gbp_flow_box.num1:after {
  position: absolute;
  content: '';
  display: block;
  width: 0;
  border: 20px solid transparent;
  border-top-color: #0078b5;
  border-bottom-width: 0;
  bottom: -30px;
  left: 50%;
  transform: translate(-50%, 0px);
}
#top .gbp_area .gbp_flow .gbp_flow_box .gbp_flow_h {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 5px;
}
#top .gbp_area .gbp_flow .gbp_flow_box .gbp_flow_h span {
  margin-right: 5px;
}
#top .gbp_area .gbp_flow .gbp_flow_box .txt {
  line-height: 1.45;
}
#top .gbp_area .gbp_flow .program_txt {
  margin-top: 10px;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}
#top .gbp_area .gbp_flow .program_txt:after {
  position: absolute;
  content: '';
  display: block;
  width: 0;
  border: 20px solid transparent;
  border-top-color: #0078b5;
  border-bottom-width: 0;
  bottom: -30px;
  left: 50%;
  transform: translate(-50%, 0px);
}
#top .gbp_area .gbp_flow .num3_inner .txt {
  margin-bottom: 10px;
}
#top .gbp_area .gbp_flow .num3_inner .gbp_flow_table {
  width: 100%;
}
#top .gbp_area .gbp_flow .num3_inner .gbp_flow_table p {
  color: #0078b7;
}
#top .gbp_area .gbp_flow .num3_inner .gbp_flow_table table {
  border: 1px solid #231816;
  font-size: 1.4rem;
  width: 100%;
}
#top .gbp_area .gbp_flow .num3_inner .gbp_flow_table table th, #top .gbp_area .gbp_flow .num3_inner .gbp_flow_table table td {
  border: 1px solid #231816;
  padding: 3px 5px;
}
#top .gbp_area .gbp_flow .num3_inner .gbp_flow_table table th {
  background-color: #0078b7;
  color: #fff;
}
#top .gbp_area .gbp_flow .num3_inner .gbp_flow_table table td.th {
  background-color: #fffeef;
}
#top .gbp_area .gbp_flow .num3_inner .gbp_flow_table table td.rl {
  padding: 5px 2px;
  width: 25px;
  text-align: center;
  line-height: 1.0;
}
#top .gbp_area .gbp_flow .num3_inner .gbp_flow_table .note_txt {
  color: #231816;
  line-height: 1.35;
  margin-top: 5px;
}
@media only screen and (min-width: 769px) {
  #top .gbp_area {
    margin-bottom: 90px;
  }
  #top .gbp_area .lead_area3 {
    padding-top: 30px;
    margin-bottom: 40px;
    padding-bottom: 35px;
  }
  #top .gbp_area .lead_area3 img {
    margin-bottom: 25px;
  }
  #top .gbp_area .lead_area3 p {
    width: 56%;
    max-width: 675px;
  }
  #top .gbp_area .gbp_lead {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
  #top .gbp_area .gbp_flow {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  #top .gbp_area .gbp_flow .gbp_flowL {
    width: 46%;
    max-width: 454px;
  }
  #top .gbp_area .gbp_flow .gbp_flowR {
    width: 59%;
  }
  #top .gbp_area .gbp_flow .gbp_flow_box {
    padding: 15px;
  }
  #top .gbp_area .gbp_flow .gbp_flow_box.num2:after {
    position: absolute;
    content: '';
    display: block;
    width: 0;
    border: 20px solid transparent;
    border-top-color: #0078b5;
    border-bottom-width: 0;
    top: 38%;
    right: -8.5%;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
  }
  #top .gbp_area .gbp_flow .program_txt {
    position: static;
    margin-bottom: 0;
  }
  #top .gbp_area .gbp_flow .program_txt:after {
    display: none;
  }
  #top .gbp_area .gbp_flow .num3_inner {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  #top .gbp_area .gbp_flow .num3_inner .txt {
    width: 46%;
  }
  #top .gbp_area .gbp_flow .num3_inner .gbp_flow_table {
    width: 50%;
  }
  #top .gbp_area .gbp_flow .num3_inner .gbp_flow_table table td.rl {
    line-height: 1.25;
  }
  #top .gbp_area .gbp_flow .num3_inner .gbp_flow_table p {
    line-height: 1.45;
  }
}
@media all and (-ms-high-contrast: none) {
  #top .gbp_area *::-ms-backdrop, #top .gbp_area .gbp_area .gbp_flow .num3_inner .gbp_flow_table table td.rl {
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
  }
  #top .gbp_area *::-ms-backdrop, #top .gbp_area .gbp_area .gbp_flow .num3_inner .gbp_flow_table table td.th {
    padding: 3px 4px;
  }
  #top .gbp_area *::-ms-backdrop, #top .gbp_area .gbp_area .gbp_flow .num3_inner .gbp_flow_table table td, #top .gbp_area .gbp_area .gbp_flow .num3_inner .gbp_flow_table table th {
    font-size: 1.2rem !important;
  }
}
#top .career_area .career_bg {
  background-color: #edf4fc;
  border-radius: 10px;
  padding: 15px;
}
#top .career_area .career_h {
  text-align: center;
  border-bottom: 1px solid #0078b5;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
#top .career_area .career_lead {
  font-family: "NotoSerifCJKjp", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 10px;
}
#top .career_area .career_2col p {
  line-height: 1.45;
}
#top .career_area .career_2col .career_2colL {
  margin-bottom: 20px;
}
#top .career_area .career_2col .career_2colL .career_box {
  border-radius: 10px;
  background-color: #fff;
  padding: 10px;
  margin-top: 15px;
}
#top .career_area .career_2col .career_2colL .career_box .career_box_h {
  color: #0078b5;
  font-weight: bold;
  border-bottom: 1px solid #0078b5;
  font-size: 1.8rem;
  line-height: 1.45;
  margin-bottom: 10px;
}
#top .career_area .career_2col .career_2colL .career_box .career_box_h small {
  font-size: 1.4rem;
}
#top .career_area .career_2col .career_2colR .per_img {
  margin-bottom: 20px;
  text-align: center;
}
#top .career_area .career_2col .career_2colR .per_img img {
  width: 48%;
}
#top .career_area .career_2col .career_2colR .career_box {
  border: 1px solid #231816;
  border-radius: 10px;
  padding: 10px 15px 15px;
}
#top .career_area .career_2col .career_2colR .career_box .career_box_h {
  color: #0078b5;
  font-weight: bold;
  border-bottom: 2px solid #0078b5;
  font-size: 1.8rem;
  padding-bottom: 5px;
  line-height: 1.45;
  margin-bottom: 15px;
}
#top .career_area .career_2col .career_2colR .career_box img {
  margin-bottom: 15px;
}
#top .career_area .btn_area {
  margin: 50px auto;
}
#top .career_area .btn_area a {
  margin-bottom: 15px;
}
#top .career_area .btn_area .btn {
  padding: 15px 10px;
  width: 90%;
}
#top .career_area .btn_area .btn.btn_arrow:before {
  left: 15px;
}
#top .career_area .btn_area .btn.external_link:after {
  right: 20px;
  top: 15px;
}
@media only screen and (min-width: 769px) {
  #top .career_area .career_bg {
    padding: 20px;
  }
  #top .career_area .career_h {
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
  #top .career_area .career_2col {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  #top .career_area .career_2col .career_2colR {
    width: 48.5%;
    max-width: 565px;
  }
  #top .career_area .career_2col .career_2colR .per_img {
    margin-top: 45px;
    margin-bottom: 25px;
  }
  #top .career_area .career_2col .career_2colR .per_img img {
    width: auto;
  }
  #top .career_area .career_2col .career_2colR .per_img img:first-child {
    margin-right: 25px;
  }
  #top .career_area .career_2col .career_2colR .career_box {
    padding: 15px 20px 20px;
  }
  #top .career_area .career_2col .career_2colL {
    width: 48%;
    max-width: 560px;
    margin-bottom: 0;
  }
  #top .career_area .career_2col .career_2colL .career_box {
    padding: 15px;
  }
  #top .career_area .career_lead {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
  #top .career_area .btn_area {
    margin: 100px auto;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  #top .career_area .btn_area .btn {
    width: 480px;
    padding: 22px 38px;
  }
  #top .career_area .btn_area .btn.btn_arrow:before {
    left: 20px;
  }
  #top .career_area .btn_area .btn.external_link:after {
    right: 38px;
    top: 21px;
  }
}

.top-slide {
  position: relative;
  height: 100%;
  max-height: 550px;
}
.top-slide .slick-list {
  height: 100%;
}
.top-slide .slick-track {
  height: 100%;
}
.top-slide .slick-slide {
  background-repeat: no-repeat;
  background-position: top;
  background-size: auto;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  color: #fff;
}
.top-slide .slide1 {
  background-image: url(../../img/kv_01_sp.jpg);
}
.top-slide .slide2 {
  background-image: url(../../img/kv_02_sp.jpg);
}
.top-slide .slide3 {
  background-image: url(../../img/kv_03_sp.jpg);
}
.top-slide .slide4 {
  background-image: url(../../img/kv_04_sp.jpg);
}
.top-slide em {
  text-align: center;
  font-size: 10.0rem;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .top-slide em {
    font-size: 9.5vw;
    line-height: 1.2;
  }
}
.top-slide .kv_txt {
  font-size: 2.6rem;
  line-height: 1.50;
  color: #3a424c;
  margin-bottom: 75px;
  padding: 0 0 0 15px;
  margin-top: 50px;
  -moz-text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.8), -1px 1px 10px rgba(255, 255, 255, 0.8), -1px -1px 10px rgba(255, 255, 255, 0.8), 1px -1px 10px rgba(255, 255, 255, 0.8);
  -webkit-text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.8), -1px 1px 10px rgba(255, 255, 255, 0.8), -1px -1px 10px rgba(255, 255, 255, 0.8), 1px -1px 10px rgba(255, 255, 255, 0.8);
  -ms-text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.8), -1px 1px 10px rgba(255, 255, 255, 0.8), -1px -1px 10px rgba(255, 255, 255, 0.8), 1px -1px 10px rgba(255, 255, 255, 0.8);
  text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.8), -1px 1px 10px rgba(255, 255, 255, 0.8), -1px -1px 10px rgba(255, 255, 255, 0.8), 1px -1px 10px rgba(255, 255, 255, 0.8), 2px 0px 2px rgba(255, 255, 255, 0.8), 2px 0px 2px rgba(255, 255, 255, 0.8), 0px -2px 2px rgba(255, 255, 255, 0.8), -2px 0px 2px rgba(255, 255, 255, 0.8);
}
.top-slide .kv_point {
  padding: 15px 20px 10px;
  background-color: rgba(74, 78, 103, 0.5);
}
.top-slide .kv_point .point_h {
  padding: 10px 15px;
  line-height: 1;
  font-size: 1.8rem;
  color: #fff;
  background-color: #004dce;
  display: inline-block;
  border-radius: 8px;
  margin-bottom: 10px;
}
.top-slide .kv_point .point_txt {
  font-size: 1.6rem;
  color: #fff;
  font-weight: bold;
}
@media only screen and (min-width: 769px) {
  .top-slide {
    top: 143px;
    max-height: 690px;
  }
  .top-slide .kv_txt {
    font-size: 3.8rem;
    width: 100%;
    max-width: 1045px;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
    margin-top: 0;
  }
  .top-slide .kv_point {
    width: 46%;
    padding: 30px 0 25px;
    background-color: rgba(74, 78, 103, 0.3);
  }
  .top-slide .kv_point .point_h {
    padding: 10px 30px;
    font-size: 2.4rem;
    margin-bottom: 10px;
    margin-left: 23%;
  }
  .top-slide .kv_point .point_txt {
    font-size: 2.6rem;
    margin-left: 23%;
  }
  .top-slide .slick-slide {
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    background-position: center;
    background-size: cover;
  }
  .top-slide .slide1 {
    background-image: url(../../img/kv_01.jpg);
  }
  .top-slide .slide2 {
    background-image: url(../../img/kv_02.jpg);
  }
  .top-slide .slide3 {
    background-image: url(../../img/kv_03.jpg);
  }
  .top-slide .slide4 {
    background-image: url(../../img/kv_04.jpg);
  }
}

.news-wrap {
  margin-bottom: 60px;
}
.news-wrap dl {
  width: 100%;
  margin-bottom: 20px;
  font-size: 1.4rem;
  line-height: 1.6;
}
.news-wrap dl div {
  border-bottom: 1px solid #ccc;
}
.news-wrap dl dt, .news-wrap dl dd {
  padding: 12px 0;
}
.news-wrap dl dt {
  color: #009FA8;
}
.news-wrap .btn-s {
  display: inline-block;
  max-width: 70px;
  width: 100%;
  padding: 6px 10px 7px 6px;
}
.news-wrap .bana-area a, .news-wrap .bana-area span {
  display: block;
}
.news-wrap .bana-area a + a, .news-wrap .bana-area a + span, .news-wrap .bana-area span + a, .news-wrap .bana-area span + span {
  margin-top: 20px;
}
.news-wrap .bana-area img {
  width: 100%;
}
.news-wrap .fas {
  margin-left: 5px;
}
.news-wrap .new {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  background-color: #FF0000;
  display: inline-block;
  margin-left: 2px;
  padding: 3px 6px;
}
@media only screen and (min-width: 769px) {
  .news-wrap {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .news-wrap dl div {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .news-wrap dl dt {
    width: 90px;
  }
  .news-wrap dl dd {
    width: calc(100% - 100px);
  }
  .news-wrap .news-area {
    max-width: 650px;
    width: calc(70% - 80px);
  }
  .news-wrap .bana-area {
    max-width: 310px;
    width: 30%;
    margin-left: 80px;
  }
  .news-wrap .bana-area a:hover {
    opacity: 0.7;
  }
}
@media only screen and (max-width: 767px) {
  .news-wrap {
    margin-bottom: 30px;
  }
  .news-wrap dl {
    margin-bottom: 15px;
    font-size: 1.3rem;
  }
  .news-wrap dl dt, .news-wrap dl dd {
    width: 100%;
  }
  .news-wrap dl dt {
    padding: 12px 0 0;
  }
  .news-wrap dl dd {
    padding: 4px 0 12px;
  }
  .news-wrap .bana-area {
    margin-top: 20px;
  }
  .news-wrap .bana-area a + a, .news-wrap .bana-area a + span, .news-wrap .bana-area span + a, .news-wrap .bana-area span + span {
    margin-top: 10px;
  }
}

@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, .top .top_features_area ul li .top_features_ico {
    text-align: center;
  }

  *::-ms-backdrop, .top .top_features_area ul li {
    display: block;
    min-height: 430px;
  }

  *::-ms-backdrop, .top .solution-wrap ul li {
    display: block;
    min-height: 550px;
  }

  *::-ms-backdrop, .top .service-wrap ul li .box_inner {
    display: block;
  }

  *::-ms-backdrop, .top .service-wrap ul li .box_inner .top_solution_img {
    text-align: center;
  }

  *::-ms-backdrop, .top .service-wrap ul li .btn_area .btn {
    max-width: 220px;
    width: auto;
    padding: 15px 10px 15px 30px;
  }

  *::-ms-backdrop, .top .service-wrap ul li .box_inner .top_solution_txt {
    min-height: 140px;
    margin-bottom: 10px;
    height: auto;
  }

  *::-ms-backdrop, .top .contact-wrap .contact_box_area .contact_box {
    display: block;
  }

  *::-ms-backdrop, .top .contact-wrap .contact_box_area .contact_box .contact_box_txt {
    width: 100%;
  }

  *::-ms-backdrop, .top .contact-wrap .contact_box_area .btn_area_02 .btn {
    padding: 15px 10px 15px 30px;
  }
}
