/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
  font-family: 'NotoSansjp';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/NotoSansjp-Regular.woff') format('woff'),
      url('../fonts/notosanscp_regular.eot')  format('eot');
  font-display: swap;
  }

  @font-face {
    font-family: 'NotoSansjp';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/NotoSansjp-Medium.otf') format('woff'),
        url('../fonts/notosansjp_Medium.eot')  format('eot');
    font-display: swap;
  }

@font-face {
  font-family: 'NotoSansjp';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/NotoSansjp-Bold.woff') format('woff'),
      url('../fonts/notosansjp-bold.eot')  format('eot');
  font-display: swap;
}

body, html {
  font-family: 'NotoSansjp', "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  color: #2b2b2b;
}

#main {
  overflow: hidden;
}

p {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 0;
}

a {
  color: #2b2b2b;
}

a:hover {
  color: #6c757d;
  text-decoration: none;
  outline: none;
}

.half_wrap {
  display: flex;
  width: 100%;
}

.half_wrap__1 {
  display: flex;
  max-width: 1300px;
  margin: auto;
}

.heading {
  display: flex;
  align-items: center;
  margin-bottom: 100px;
}

.heading h3 {
  white-space: nowrap;
}

.heading p {
  padding-left: 100px;
}

.heading__1 {
  margin-bottom: 80px;
}

.heading__1 p {
  border-left: 2px solid #2b2b2b;
  padding-left: 50px;
}

h3, .heading p.bigTxt {
  font-size: 35px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 60px;
  border-left: 2px solid #2b2b2b;
  padding-left: 50px;
}

@media(min-width : 1540px) {
  .container {
    max-width: 1440px;
  }
}

@media(max-width : 768px) {
  .half_wrap, .half_wrap__1 {
    display: block;
  }
  h3, .heading p.bigTxt {
    font-size: 26px;
    line-height: 40px;
    padding-left: 30px;
  }
  .heading p {
    padding-left: 50px;
  }
}

@media(max-width : 767px) {
  .btn {
    font-size: 15px;
  }
  p, a {
    font-size: 16px;
    line-height: 27px;
  }
  h3, .heading p.bigTxt {
    font-size: 22px;
    line-height: 28px;
    padding-left: 10px;
  }
  .heading p.bigTxt img {
    display: block;
    margin-bottom: 10px;
  }
  .heading {
    display: block;
    margin-bottom: 30px;
  }
  .heading h3 {
    white-space: initial;
  }
  .heading p {
    padding-left: 0;
    margin-top: 20px;
  }
  .heading__1 p {
    padding-left: 20px;
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
# Button
--------------------------------------------------------------*/
.btn.focus, .btn:focus {
  outline: 0;
  box-shadow: none;
}

.b_read {
  border: 1px solid #00b2d0;
  border-radius: 50px;
  color: #00b2d0;
  max-width: 250px;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.b_read:hover {
  border: 1px solid #00b2d0;
  border-radius: 50px;
  color: #fff;
  background: #00b2d0;
}

.b_readMore {
  border: 1px solid #2b2b2b;
  border-radius: 0;
  background: transparent;
  max-width: 300px;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.b_readMore:hover {
  background: #2b2b2b;
  color: #fff;
  transition: all .3s;
}

.b_store {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: #262626;
  color: #fff;
  padding: 0;
  max-width: 300px;
  width: 100%;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.b_store svg {
  width: 16px;
  height: 16px;
  transition: .3s;
}

.b_store:hover {
  background: #fff;
  color: #2b2b2b;
  border: 1px solid #2b2b2b;
  transition: .3s;
}

.b_store:hover svg {
  stroke: #eaeae9;
  transform: translate(10px);
  transition: .3s;
}

.b_black {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  border: 1px solid #2b2b2b;
  padding: 0;
  max-width: 300px;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.b_black svg {
  width: 18px;
  height: 18px;
  transition: .3s;
}

.b_black:hover {
  background: #214981;
  color: #fff;
  border: 1px solid #214981;
  transition: .3s;
}

.b_black:hover svg {
  stroke: #fff;
  transform: translate(10px);
  transition: .3s;
}

.b_blue {
  background: #214981;
  color: #fff;
  max-width: 250px;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.b_blue:hover {
  background: #28579a;
  color: #fff;
}

@media(max-width : 768px) {
  .b_store {
    margin: auto;
  }
}

@media(max-width : 575px) {
  .b_store {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Background
--------------------------------------------------------------*/
.bg-gray {
  background: #f5f5f5;
}

.bg-gray2 {
  background: #dcdcdb;
}

.bg-lightgray {
  background: #e5ecfa;
}

.bg-lightgray2 {
  background: #f4f4f4;
}

.pt50 {
  padding-top: 50px;
}

.pb100 {
  padding-bottom: 100px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #3fbbc0;
  border-top-color: #ecf8f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: rgb(0, 0, 0, .8);
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #444;
  color: #fff;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
h1 {
  margin-bottom: 0;
}

#header, #header_min {
  transition: all 0.5s;
  z-index: 997;
  padding: 0;
  background-color: #fff;
}

#header.header-scrolled, #header_min.header-scrolled {
  background: #fff;
  -moz-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo, #header_wh .logo, #header_min .logo {
  width: 154px;
  height: auto;
}

#header_wh {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 0;
  -moz-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

@media(max-width : 991px) {
  #header .logo, #header_wh .logo, #header_min .logo {
    width: 120px;
    height: auto;
  }
  #header .container, #header_wh .container, #header_min .container {
  	max-width: none;
	}
}

@media(max-width : 575px) {
  #header, #header_min {
    padding: 0;
  }
  #header .logo, #header_wh .logo, #header_min .logo {
    width: 100px;
    height: auto;
  }
  #header .container, #header_wh .container, #header_min .container {
  	max-width: none;
	}
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  i {
    font-size: 20px;
  }
  .user-menu {
      position: relative;
      align-items: center;
      display: flex;
  }

  .dropdown-menu {
      position: absolute;
      top: 100%;
      right: 0;
      background-color: #fff;
      border: 1px solid #ccc;
      list-style: none;
      padding: 10px;
      margin: 0;
      display: none;
  }

  .dropdown-menu li {
      margin: 0;
      padding: 0;
  }

  .dropdown-menu li a {
      display: block;
      padding: 10px;
      text-decoration: none;
      color: #333;
  }

  .dropdown-menu li a:hover {
      background-color: #f0f0f0;
  }

  .search-menu {
    position: relative;
    display: flex;
    align-items: center;
  }

  #search-input {
      padding: 5px;
      border: 1px solid #00B2D0;
      border-radius: 8px;
      outline: none;
      display: none;
      margin-right: 10px;
  }

  #search-input:focus {
      border-color: #00B2D0;
  }

  #search-input::placeholder {
      color: #bbb;
      font-size: 14px;
  }

  .fas.fa-search {
      cursor: pointer;
  }

}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #2b2b2b;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 2px;
  font-family: sans-serif;
  text-transform: uppercase;
  transition: ease 0.3s;
  font-weight: 600;
}

.nav-menu a:after {
  position: absolute;
  bottom: 0;
  left: 0%;
  content: '';
  width: 0;
  height: 1px;
  background-color: #2b2b2b;
  transition: ease 0.3s;
}

.nav-menu a:hover:after {
  width: 100%;
  color: #2b2b2b;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 15px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  -moz-box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  -webkit-box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #2b2b2b;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #214981;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 35px;
  top: 35px;
  z-index: 9998;
  border: 0;
  background: none;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle .barger, .mobile-nav-toggle .close {
  margin-bottom: 0;
  position: relative;
  display: block;
  padding: 8px 17px;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
}

.mobile-nav-toggle .barger {
  color: #5d5c59;
}

.mobile-nav-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: .4s;
}

.mobile-nav-toggle .barger span:nth-of-type(1) {
  top: 0;
  transition: .4s;
}

.mobile-nav-toggle .barger span:nth-of-type(2) {
  top: 41%;
}

.mobile-nav-toggle .barger span:nth-of-type(3) {
  bottom: 0;
  transition: .4s;
}

.mobile-nav-toggle .close {
  color: #fff;
}

.mobile-nav-toggle .close span:nth-of-type(1) {
  transform: rotate(45deg) translate(25%,10px);
  top: 0;
  transition: .4s;
}

.mobile-nav-toggle .close span:nth-of-type(2) {
  transform: rotate(0deg) translate(30%,-1px);
  opacity: 0;
}

.mobile-nav-toggle .close span:nth-of-type(3) {
  transform: rotate(-45deg) translate(25%,-10px);
  top: calc(100% + 10px);
  transition: .4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 9995;
  overflow-y: auto;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: 1.5s;
  transform: translate(400px);
}

.sp_logo {
  opacity: 0;
  visibility: hidden;
  transition: transform 1.5s;
  transform: translate(400px);
}

.sp_logo img {
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .sp_logo {
  position: fixed;
  z-index: 9998;
  top: 10px;
  left: 10px;
  opacity: 1;
  visibility: visible;
  transition: transform 1.5s;
  transform: translate(0px);
}

.mobile-nav-active .sp_logo img {
  display: block;
  width: 154px;
  height: auto;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
  transition: 1.5s;
  transform: translate(0px);
}

.mobile-nav ul {
  margin-top: 135px;
}

.mobile-nav ul li:last-of-type a {
  border-bottom: 0;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #2b2b2b;
  font-family: sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 300;
  outline: none;
  padding: 10px 20px;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #214981;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}
/*@media (max-width: 991px)
	.mobile-nav-toggle {
	    top: 35px;
	}
}*/
@media (max-width: 575px){
	.mobile-nav-toggle {
	    top: 26px;
	}
}
/*--------------------------------------------------------------
# modal
--------------------------------------------------------------*/
.modal_box {
  z-index: 9999;
  display: none;
  background-color: #fff;
  width: 90%;
  max-width: 800px;
  max-height: auto;
  margin: 0;
  padding: 60px 2vw 60px;
  text-align: center;
  background: #fff;
  box-sizing: border-box;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
}

.modal-img{
  opacity: 0;
  animation: appeare 0s ease 1.5s 1 normal forwards running;
}
@keyframes appeare {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*  modal表示されたら黒い背景をjsで設定  */
.modal_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6666;
  display: none;
  width: 100%;
  height: 120%;
  background-color: rgba(0,0,0,0.7);
}

/* modalを閉じるボタン */
.modal-close{
  position: absolute;
  top: 0;
  right: 0;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  background: #00b2d0;
  padding: 10px 20px 10px 20px;
  margin: 0;
  outline: none!important;
  border: 0;
  border-top-right-radius: 10px;
}

.modal_box img{
/*  margin-top: 50px;*/
  padding: 5% 10%;
}
.modal-box h2{
  color: #000;
}

.model-text{
  width: 90%;
  margin: 0 auto;
  text-align: left;
  color: #000;
}

.modal_area {
  color : #ffffff;
  background-color: #00b2d0;
  max-width: 200px;
  min-width: 70px;
  padding: 10px 30px ;
  border: 0;
  border-radius: 10px;
  overflow: hidden;
  margin: 35px auto 0 !important;
  text-align: center;
  text-decoration: none;
  outline: none!important;
}

.link_area {
  overflow: hidden;
  margin: 60px auto 0;
  text-align: center;
}

.link_area a:focus{
  outline:none;
}

.link_area ul{
  margin: 0;
  padding: 0;
}
.link_area ul li{
  display: inline-block;
  color : #ffffff;
  max-width: 200px;
  min-width: 100px;
  background-color: #00b2d0;
  padding: 20px 50px 20px 50px;
  border: 0;
  border-radius: 10px;
  margin: 0 10px;
}
.modal_switch{
  cursor: pointer;
  cursor: hand;
}
#modal1  h2.mt-5{
	font-family:dnp-shuei-gothic-gin-std,sans-serif;
	font-size: 20px;
	font-weight: 700;
	padding: 0 5%   !important;
	margin: 0 !important;
}
#modal1  .p{
	font-family:dnp-shuei-gothic-gin-std,sans-serif;
	font-size: 16px;
	font-weight: 500;
}
#modal1  .model-text.pt-5{
	padding: 20px 0 0 0 !important;
}
#modal1 .modal_link a{
	color: #ffffff;
}

/*  responsive  */
@media(max-width : 486px) {
  .modal-close{
    font-size: 20px;
  }

 .link_area ul li{
    display: block;
    padding: 10px 20px 10px 20px;
    border: 0;
    margin: 0 auto;
  }

.link_area ul li:first-child{
  margin-bottom: 10px;
  }
}

@media(max-width : 420px) {
  .modal_box img{
    margin: 0;
  }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/*.hero {
  width: 100%;
  overflow: hidden;
}

.hero #hero_img {
  position: relative;
  height: 800px;
  width: 100%;
}

.hero .hero_img {
  background-image: url(../images/top_img.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media (max-width: 1024px) {
  .hero #hero_img {
    height: 650px;
  }
}

@media(max-width : 768px) {
  .hero #hero_img {
    height: 500px;
  }
}

@media(max-width : 575px) {
  .hero #hero_img {
    height: 380px;
  }
}

@media(max-width : 375px) {
  .hero #hero_img {
    height: 280px;
  }
}
*/
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  overflow: hidden;
}

.hero #hero_img {
  position: relative;
  height: 800px;
  width: 100%;
}

.hero .hero_img {
 background-image: url(../images/top_img.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media (max-width: 1024px) {
  .hero #hero_img {
    height: 650px;
  }
}

@media(max-width : 768px) {
  .hero #hero_img {
    height: 500px;
  }
}

@media(max-width : 575px) {
  .hero #hero_img {
    height: 380px;
  }
}

@media(max-width : 375px) {
  .hero #hero_img {
    height: 280px;
  }
}

/*--------------------------------------------------------------
# Hero Section Crousel
--------------------------------------------------------------*/
/* #hero {
  width: 100%;
  background-color: rgba(60, 60, 60, 0.8);
  overflow: hidden;
  position: relative;
  margin-top: 125px;
}

#hero .carousel, #hero .carousel-inner, #hero .carousel-item,
#hero .carousel-item::before {
  position: initial;
}

#hero .carousel-item {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-left,
#hero .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev, #hero .carousel-control-next {
  top: 45%;
  width: 10%;
  height: 30px;
}


#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  width: 30px;
  height: 30px;
}

#hero .carousel-indicators li {
  cursor: pointer;
  width: 40px;
  height: 5px;
  margin-right: 5px;
  margin-left: 5px;
  opacity: .6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
}

@media (min-width: 1024px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 768px) {
  #hero {
    margin-top: 111px;
  }
}

@media (max-width: 575px) {
  #hero  .carousel-indicators {
    margin-bottom: 0;
  }
} */
/*--------------------------------------------------------------
# New VMV 2022
--------------------------------------------------------------*/
.main_column.content{
  margin: 60px auto 60px;
  padding-left: 100px !important;
  padding-right: 100px !important;
}
.main_column.notification{
	max-width: max-content !important;
  margin: 60px auto 60px;
}
.main_column.link{
	margin: 80px auto 140px;
	max-width: 960px;
	padding: 0 5%;
	text-align: left;
}
.main_column .box{
	margin: 5px;
	width: 150px;
  height: 115px;
	padding: 15px;
	text-align: center;
  vertical-align: middle;
  color: #fff;
  border-radius: 5px;
  background-color: #00B2D0;
}
.main_column .link-box{
	margin: 5px;
	width: 150px;
  height: 150px;
	text-align: center;
  color: #fff;
  border-radius: 5px;
}
.link-box img {
  width: 100px;
  height: 100px;
  padding-top: 10px;
}
.main_column .link{
	width: 150px;
	padding-top: 15px;
	text-align: center;
  color: #fff;
}
.noti_area {
	border: none;
	display: flex;
  flex-wrap: wrap;
  gap: 5px;
	font-family: soleil,sans-serif;
  font-size: 16px;
}
.main_column.newVMV{
	margin: 120px auto 100px;
	max-width: 960px;
	padding: 0 5%;
	text-align: center;
}
.vmv_area h3{
	border: none;
	padding: 0;
	font-size: 20px;
	font-family: soleil,sans-serif;
	font-weight: 600;
	color: #00b2d0;
}
.vmv_area p{
	line-height: 2em;
    font-family: dnp-shuei-gothic-gin-std,sans-serif;
    font-size: 25px;
    font-weight: 800;
    padding-bottom:75px;
}
.newVMV .text_area{
	line-height: 2em;
    font-family: dnp-shuei-gothic-gin-std,sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding: 55px 0 0;
}
.newVMV .banner{
	margin: 55px auto 0;
  padding: 10px;
  border-radius: 30px;
  max-width: 220px;
  color: #ffffff;
  background: #00b2d0;
}
.notification .text_area{
	line-height: 2em;
    font-family: dnp-shuei-gothic-gin-std,sans-serif;
    font-size: 18px;
    font-weight: 500;
    /* padding: 55px 0 0; */
}
.notification .banner{
	margin: 55px auto 0;
  padding: 10px;
  border-radius: 30px;
  max-width: 220px;
  color: #ffffff;
  background: #00b2d0;
  text-align: center;
}
.admin-notification.wp-list-table td.title, .admin-notification.wp-list-table td.message {
  white-space: normal;
  word-wrap: break-word;
}
.notification-search-form {
  padding-bottom: 10px;
}
.noti {
  width: 36px;
  height: 36px;
  background-image: url('../images/svg/new_icon.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: -15px;
}

/*--------------------------------------------------------------
# News & Trend
--------------------------------------------------------------*/
.main_column.news h2 {
  margin-bottom: 35px;
}

.main_column.news .left, .main_column.news .right {
  width: 50%;
  max-width: initial;
}

.main_column .left {
  margin-right: 25px;
}

.main_column .right {
  margin-left: 25px;
}

.main_column .news_list {
  height: 85px;
  overflow: hidden;
}

.main_column .mc_trend .news_list a {
  font-size: 18px;
  line-height: 30px;
}

.main_column .mc_trend .news_list p {
  margin-bottom: 0;
  margin-top: 5px;
  font-size: 16px;
  line-height: 25px;
}

.main_column .link_res {
  margin-top: 20px;
}

@media(max-width : 768px) {
  .main_column.news .left, .main_column.news .right {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  .main_column .right {
    margin-top: 50px;
  }
  .main_column .news_list {
    height: auto;
  }
}

@media(max-width : 575px) {
  .main_column .right {
    margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# News
--------------------------------------------------------------*/
.news {
  padding-top: 100px;
}

.news h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  border-left: 3px solid #444;
  padding-left: 30px;
}

.news .left {
  max-width: 280px;
  width: 100%;
}

.news .right {
  width: 100%;
}

.news .news-block {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.news .block-left {
  width: 50%;
  padding-right: 15px;
}

.news .block-right {
  width: 50%;
  padding-left: 15px;
}

.news .news_list {
  margin-bottom: 15px;
}

.news .news_list p {
  margin-bottom: 5px;
}

.news .new_tag {
  font-size: 12px;
  color: #fff;
  background: #000;
  border-radius: 50px;
  margin-left: 10px;
  font-weight: initial;
  padding: .25em 15px;
  vertical-align: 3px;
}

.news .link_res {
  text-align: right;
}

.news .readMore {
  position: relative;
  font-size: 22px;
}

.news .readMore:after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: '';
  width: 250px;
  height: 1px;
  background: #000;
}

.news .readMore img {
  width: 24px;
  height: 24px;
  margin-left: 50px;
  vertical-align: -4px;
}

.news_page {
  padding: 150px 0 100px 0;
}

.newsListItem {
  display: flex;
  width: 100%;
  margin-bottom: 50px;
}

.news .list_txt {
  padding-left: 40px;
}

.news .list_txt a {
  font-weight: 600;
  font-size: 18px;
}

.news .list_txt .date {
  font-size: 13px;
  line-height: 15px;
  margin-bottom: 20px;
}

.news .list_txt p:last-of-type {
  font-size: 14px;
  line-height: 22px;
}

/* ----- News Detail -----*/
.news_detail {
  padding: 150px 0 200px 0;
}

.news_detail .thumbImg {
  list-style: none;
  padding-left: 0;
  display: flex;
  margin-top: 30px;
  margin-bottom: 0;
}

.news_detail .thumbImg li {
  max-width: 150px;
  width: 100%;
  margin-right: 10px;
}

.news_detail .thumbImg li:last-of-type {
  margin-right: 0;
}

.news_detail .thumbImg li img {
  cursor: pointer;
  max-width: 150px;
  width: 100%;
}

.news_detail .news_cnt {
  margin-left: 20px;
}

.news_detail .news_cnt p:first-of-type {
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
}

.news_detail .news_cnt .date {
  margin-top: 10px;
  margin-bottom: 50px;
  font-size: 20px;
}

.news_detail .breadcrumbs {
  margin-bottom: 50px;
}

@media(max-width : 1024px) {
  .newsListItem {
    display: block;
  }
  .news .list_txt {
    padding-left: 0;
    margin-top: 20px;
  }
  .news_page .listItem_left, .news_page .listItem_right {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    align-items: flex-start;
  }
  .news_detail .news_cnt {
    margin-left: 0;
  }
}

@media(max-width : 768px) {
  .news .left {
    max-width: initial;
  }
  .news h2 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 30px;
    padding-left: 15px;
  }
  .news .news_list {
    margin-bottom: 20px;
  }
  .news .news-block {
    display: block;
  }
  .news .block-left, .news .block-right {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .news .readMore {
    font-size: 20px;
  }
  .news .readMore img {
    width: 22px;
    height: 22px;
    margin-left: 15px;
  }
  .news .readMore:after {
    width: 170px;
  }
  .news_page {
    padding: 80px 0 40px 0;
  }
  .news_detail {
    padding: 130px 0 200px 0;
  }
  .news_detail .breadcrumbs {
    display: block;
    margin-bottom: 30px;
  }

  .news_detail .news_cnt .date {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 16px;
  }
}

@media(max-width : 767px) {
  .news_detail .news_cnt {
    margin-top: 40px;
  }
  .news_detail .thumbImg {
    margin-top: 15px;
  }
}

@media(max-width : 575px) {
  .news {
    padding-top: 60px;
  }
  .news h2 {
    margin-bottom: 20px;
    padding-left: 10px;
  }
  .news .news_list p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 20px;
}
  .news .newsImg {
    max-width: 250px;
  }
  .news_detail p {
    line-height: 30px;
  }
  .news_detail {
    padding: 150px 0 80px 0;
  }
  .news_detail .news_cnt p:first-of-type {
    font-size: 22px;
    line-height: 30px;
  }
  .news_detail .thumbImg li {
    margin-right: 5px;
  }
}


/*--------------------------------------------------------------
  Project
--------------------------------------------------------------*/
.project {
  margin-top: 100px;
  padding: 100px 0;
}

.project .container {
  position: relative;
}

.project h2 {
  position: absolute;
  top: -140px;
  left: 70px;
  font-size: 70px;
  font-weight: 500;
  letter-spacing: 5px;
}

.project .card {
  margin-right: 20px;
  width: 30%;
}

.project .card:last-of-type {
  margin-right: 0;
}

.project .card-body {
  padding: 20px 30px;
}

.project .card-title {
  font-size: 22px;
}

.project .card-title span {
  border-bottom: 1px solid #2b2b2b;
}

.project .card-body p {
  font-size: 16px;
  line-height: 25px;
  margin-top: 20px;
}

@media(max-width : 768px) {
  .project {
    padding: 80px 0;
  }
  .project h2 {
    top: -115px;
    left: 15px;
    font-size: 55px;
  }
}

@media(max-width : 767px) {
  .project .card {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 30px;
    max-width: 425px;
    width: 100%;
  }
  .project .card:last-of-type {
    margin-right: auto;
    margin-bottom: 0;
  }
  .project .card-body {
    padding: 15px 20px;
  }
  .project .card-title {
    font-size: 20px;
  }
  .project .card-body p {
    margin-top: 15px;
  }
}

@media(max-width : 575px) {
  .project {
    padding: 60px 0;
  }
  .project h2 {
    top: -90px;
    font-size: 45px;
    letter-spacing: 3.5px;
  }
  .project .card-body {
    padding: 15px;
  }
}
/*--------------------------------------------------------------
  Infomation Site
--------------------------------------------------------------*/
.info_site {
  padding: 50px 0;
}

.info_site h2 {
  background: -moz-linear-gradient(bottom right, #FFF, #c0e5eb,#74cfdf,#00b2d0,#00b2d0);
  background: -webkit-linear-gradient(bottom right, #FFF, #c0e5eb,#74cfdf,#00b2d0,#00b2d0);
  background: linear-gradient(to bottom right,#FFF,#c0e5eb,#74cfdf,#00b2d0,#00b2d0);
  border-radius: 50px;
  color: #fff;
  font-size: 26px;
  max-width: 600px;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.info_site .info_site_cnt {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}

.info_site .circle {
  position: relative;
  width: 400px;
  height: 400px;
  margin-right: 130px;
  border-radius: 50%;
  background: linear-gradient(210deg, #fff 13%, #74cfdf 40%, #00b2d0 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.info_site .circle:last-of-type {
  margin-right: 0;
}
.info_site .circle.none{
	background: #fff ;
}
@media(max-width : 767px) {
	.info_site .circle.none{
	display: none;
	}
}


.info_site .circle .img_wrap {
  position: absolute;
  top: -35px;
  right: 10px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info_site .circle .img_wrap img {
  width: 100px;
  height: 100px;
}

.info_site .circle_txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 370px;
  height: 370px;
  background: #fff;
  border-radius: 50%;
  padding: 0 30px;
}

.info_site .circle_txt p {
  display: inline-block;
}

.info_site .circle_txt a {
  font-size: 24px;
  margin-bottom: 30px;
  text-align: center;
}

.info_site .circle_txt a span {
  border-bottom: 1px solid #2b2b2b;
}


@media(max-width : 1024px) {
  .info_site .circle {
    position: relative;
    width: 370px;
    height: 370px;
    margin-right: 100px;
  }
  .info_site .circle_txt {
    width: 340px;
    height: 340px;
  }
  .info_site .circle_txt p {
    font-size: 16px;
    line-height: 25px;
  }
}

@media(max-width : 991px) {
  .info_site .container {
    max-width: 991px;
  }
  .info_site .circle {
    width: 350px;
    height: 350px;
    margin-right: 30px;
  }
  .info_site .circle_txt {
    width: 320px;
    height: 320px;
  }
  .info_site .circle .img_wrap {
    top: -10px;
    right: 10px;
    width: 110px;
    height: 110px;
  }
  .info_site .circle .img_wrap img {
    width: 90px;
    height: 90px;
  }
}

@media(max-width : 767px) {
  .info_site .info_site_cnt {
    display: block;
  }
  .info_site .circle {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 50px;
  }
  .info_site .circle:last-of-type {
    margin-right: auto;
    margin-bottom: 0;
  }
  .info_site .circle .img_wrap {
    top: -25px;
  }
}

@media(max-width : 575px) {
  .info_site {
    padding: 30px 0 50px 0;
  }
  .info_site h2 {
    font-size: 22px;
  }
  .info_site .info_site_cnt {
    margin-top: 60px;
  }
  .info_site .circle {
    width: 320px;
    height: 320px;
  }
  .info_site .circle_txt {
    width: 300px;
    height: 300px;
  }
  .info_site .circle_txt a {
    font-size: 20px;
  }
  .info_site .circle_txt p {
    font-size: 15px;
}
  .info_site .circle .img_wrap {
    width: 90px;
    height: 90px;
    top: -20px;
    right: 15px;
  }
  .info_site .circle .img_wrap img {
    width: 70px;
    height: 70px;
  }
}

@media(max-width : 374px) {
  .info_site .circle {
    width: 280px;
    height: 280px;
  }
  .info_site .circle_txt {
    width: 260px;
    height: 260px;
  }
  .info_site .circle .img_wrap {
    width: 80px;
    height: 80px;
    top: -10px;
  }
  .info_site .circle .img_wrap img {
    width: 60px;
    height: 60px;
  }
}

/*--------------------------------------------------------------
  Contact
--------------------------------------------------------------*/
.contact {
  background: #00b2d0;
  color: #FFF;
  padding: 60px 0;
}

.contact h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.contact .tel {
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 4px;
  font-weight: 700;
  margin-top: 22px;
}

.contact p, .contact a {
  color: #fff;
  font-weight: 300;
}

.contact p:last-of-type {
  font-size: 15px;
  line-height: 25px;
}

.contact .link_res {
  margin-top: 30px;
}

.contact .b_white {
  background: #fff;
  color: #00b2d0;
  font-size: 18px;
  font-weight: 600;
  border-radius: 0;
  max-width: 300px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

@media(max-width : 575px) {
  .contact {
    padding: 30px 0;
  }
  .contact .tel {
    letter-spacing: 3.5px;
  }
  .contact p:last-of-type {
    font-size: 14px;
    line-height: 20px;
  }
  .contact .b_white {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000;
  text-align: center;
  padding: 150px 0 100px 0;
}

#footer .footer-info {
  display: flex;
  justify-content: center;
}

#footer .footer-info a {
  position: relative;
  color: #c0c0c0;
  font-size: 12px;
  padding: 0 50px;
}

#footer .footer-info a:first-of-type {
  padding-left: 0;
}

#footer .footer-info a:last-of-type {
  padding-right: 0;
}

#footer .footer-info a:after {
  content: '';
  width: 1px;
  height: 100%;
  background: #c0c0c0;
  position: absolute;
  top: 0;
  right: 0;
}

#footer .footer-info a:last-of-type:after {
  display: none;
}

#footer .copyright {
  margin-top: 30px;
  font-size: 14px;
  color: #c0c0c0;
}

@media(max-width : 768px) {
  #footer .footer-info a {
    padding: 0 30px;
  }
}

@media(max-width : 575px) {
  #footer {
    padding: 60px 0;
  }
  #footer .footer-info a {
    padding: 0 15px;
    line-height: 19px;
  }
  #footer .copyright {
    font-size: 12px;
    margin-top: 15px;
  }
}

@media(max-width : 575px) {
  #footer .footer-info a {
    padding: 0 10px;
    font-size: 10px;
  }
}

/*--------------------------------------------------------------
  Sub Footer
--------------------------------------------------------------*/
.sub_footer {
  background: #29292a;
  padding: 50px 0;
}

.sub_footer p {
  color: #fff;
  margin: 25px 0 40px 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
}

@media(max-width : 575px) {
  .sub_footer p {
    margin: 10px 0 20px 0;
    font-size: 13px;
    line-height: 21px;
  }
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  width: 100%;
  overflow: hidden;
}

.page-header #ph_img {
  position: relative;
  height: 700px;
  width: 100%;
  display: flex;
  align-items: flex-end;
}

.page-header .ph_sample {
  background-image: url(https://placehold.jp/1900x900.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.page-header .ph_company {
  background-image: url(../images/top_company.jpg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.page-header .ph_access {
  background-image: url(../images/top_access.jpg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.page-header .ph_business {
  background-image: url(../images/top_business.jpg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.page-header .ph_case {
  background-image: url(../images/top_case.jpg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.page-header .ph_seminar {
  background-image: url(../images/top_seminar.jpg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.page-header .ph_recruit {
  background-image: url(../images/top_recruit.jpg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.page-header #ph_img_min {
  position: relative;
  height: 700px;
  width: 100%;
  display: flex;
  align-items: flex-end;
}

.page-header .ph_support {
  background-image: url(../images/support/hero_support.png.webp);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom 0 center;
}

.page-header #ph_img__2 {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-end;
}

.page-header.white_header, .page-header .white_header {
  padding-top: 125px;
}

.page-header .container__2 {
  position: absolute;
  left: 0;
  right: 0;
}

.page-header .page-caption {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.page-header .page-caption p:first-of-type {
  position: relative;
  color: #fff;
  font-family: sans-serif;
  font-size: 32px;
  line-height: 46px;
  letter-spacing: 2.4px;
  padding-right: 40px;
}

.page-header .page-caption p:first-of-type:after {
  content: '';
  width: 1px;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
}

.page-header .page-caption p:last-of-type {
  color: #fff;
  font-size: 24px;
  padding-left: 40px;
}


@media(max-width : 1024px) {
  .page-header #ph_img {
    height: 600px;
  }
  .page-header #ph_img_min {
    height: 600px;
  }
  .page-header .ph_support {
    background-size: 120% auto;
  }
}

@media(max-width : 991px) {
  .page-header .partner_container {
    max-width: 991px;
  }
}

@media(max-width : 768px) {
  .page-header #ph_img {
    height: 500px;
  }
  .page-header #ph_img_min {
    height: 500px;
  }
  .page-header.white_header, .page-header .white_header {
    padding-top: 111px;
  }
  .page-header .container__2 .page-caption {
    margin-bottom: 10px;
  }
  .page-header .partner_cap p span {
    display: block;
  }
  .page-header .partner_cap p:first-of-type {
    font-size: 26px;
    line-height: 32px;
  }
}

@media(max-width : 575px) {
  .page-header #ph_img {
    height: 400px;
  }
  .page-header #ph_img_min {
    height: 350px;
  }
  .page-header .sp_white_header {
    padding-top: 111px;
  }
  .page-header .page-caption {
    margin-bottom: 10px;
  }
  .page-header .page-caption p:first-of-type {
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 1.96px;
    padding-right: 15px;
  }
  .page-header .page-caption p:last-of-type {
    font-size: 16px;
    padding-left: 15px;
  }
}

@media(max-width : 425px) {
  .page-header #ph_img_min {
    height: 280px;
  }
  .page-header #ph_img {
    height: 280px;
  }
}

/*--------------------------------------------------------------
  Company
--------------------------------------------------------------*/
.company {
  padding: 150px 0;
}

.company .container {
  max-width: 1200px;
}

.company h4 {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: .96px;
  line-height: 36px;
  margin: 50px 0;
}

.company .cnt_head {
  margin-top: 50px;
}

.company .cnt_head .links {
  font-size: 30px;
  margin-bottom: 15px;
}

.company .cnt_head .links:hover {
  color: #2b2b2b;
}

.company .cnt_head p {
  font-size: 20px;
  font-weight: 300;
  color: #a5a5a5;
}

.company .mt110 {
  margin-top: 110px;
}

@media(max-width : 575px) {
  .company {
    padding: 50px 0;
  }
  .company h4 {
    font-size: 19px;
    line-height: 30px;
    margin: 40px 0 20px 0;
  }
  .company .sp_wrap {
    display: flex;
    width: 100%;
    margin-bottom: 40px;
  }
  .company .sp_wrap .img_wrap {
    width: 60%;
    margin-right: 10px;
  }
  .company .sp_wrap .cnt_head {
    width: 40%;
    margin-left: 10px;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .company .cnt_head .links {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 5px;
  }
  .company .cnt_head p {
    font-size: 14px;
    line-height: 20px;
  }
  .company .mt110 {
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
  Company Principle
--------------------------------------------------------------*/
.company-principle {
  padding: 80px 0;
}

.company-principle .tab {
  display: flex;
}

.company-principle .tab a {
  position: relative;
  margin-right: -1px;
  border: 1px solid #515151;
  padding: 20px 0;
  width: 33.333%;
  font-size: 16px;
  font-weight: 600;
  color: #214981;
  transition: all .5s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.company-principle .tab a:hover {
  background: rgba(0, 0, 0, 0.05);
  transition: .5s;
}

.company-principle .tab a:after {
  position: absolute;
  top: 10px;
  right: 33%;
  content: url(../images/svg/arrow_double.svg);
  visibility: hidden;
  transform: translate(0px);
}

.company-principle .tab a:hover:after {
  visibility: visible;
  transform: translate(7px);
  transition: .5s;
}

.company-principle .tab a span {
  max-width: 160px;
  width: 100%;
  position: absolute;
  top: 8px;
  left: calc(50% - 75px);
  transform: translate(7px);
  transition: .5s;
  display: flex;
  justify-content: center;
}

.company-principle .tab a:hover span {
  transform: translate(0px);
  transition: .5s;
}

.company-principle h4 {
  margin-top: 100px;
}

.company-principle p {
  font-size: 18px;
}

.company-principle .tab_txt {
  margin: 50px 0 100px 0;
}

.company-principle .tab_txt p:first-of-type {
  margin-bottom: 20px;
}

.company-principle .tab_cnt_1 {
  padding-top: 100px;
}

.company-principle .tab_cnt_1 .half_wrap {
  padding-top: 100px;
  padding-bottom: 100px;
}

.company-principle .tab_cnt_1 .left {
  width: 50%;
  margin-right: 30px;
  display: flex;
  align-items: center;
}

.company-principle .tab_cnt_1 .right {
  width: 50%;
  margin-left: 30px;
}

.company-principle .tab_cnt_1 ul.type_deci {
  list-style-type: decimal;
  color: #214981;
  font-size: 18px;
  padding-left: 20px;
}

.company-principle .tab_cnt_1 ul li {
  padding: 10px 0;
}

.company-principle .tab_cnt_2 {
  padding-top: 100px;
}

.company-principle .tab_cnt_3 {
  padding-top: 100px;
}

.company-principle .tab_cnt_3 .half_wrap {
  padding: 30px 0;
}

.company-principle .tab_cnt_3 .left {
  margin-right: 40px;
  max-width: 400px;
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.company-principle .tab_cnt_3 .right {
  margin-left: 40px;
  width: 60%;
}

.company-principle .tab_cnt_3 .left a {
  font-size: 20px;
  transition: .3s;
}

.company-principle .tab_cnt_3 .left a:hover {
  color: #2b2b2b;
  text-decoration: underline;
  transition: .3s;
}

.company-principle .tab_cnt_3 .left p {
  margin-top: 20px;
  font-size: 16px;
}

.company-principle .tab_cnt_3 .bg_img {
  position: relative;
  z-index: 0;
  cursor: pointer;
  width: 100%;
  height: 280px;
  display: flex;
  align-items: center;
}

.company-principle .tab_cnt_3 .bg_img.mdImg_1 {
  background: url(../images/company/business_md_01.jpg.webp) center center / 100% no-repeat;
  background-size: contain;
}

.company-principle .tab_cnt_3 .bg_img.mdImg_2 {
  background: url(../images/company/business_md_02.jpg.webp) center center / 100% no-repeat;
  background-size: contain;
}

.company-principle .tab_cnt_3 .bg_img.mdImg_3 {
  background: url(../images/company/business_md_03.jpg.webp) center center / 100% no-repeat;
  background-size: contain;
}

.company-principle .tab_cnt_3 .bg_img.mdImg_4 {
  background: url(../images/company/business_md_04.jpg.webp) center center / 100% no-repeat;
  background-size: contain;
}

.company-principle .tab_cnt_3 .bg_img:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  background: rgba(0,0,0,0.5);
  opacity: 0;
  z-index: -1;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.company-principle .tab_cnt_3 .bg_img:hover:after {
  opacity: .7;
}

.company-principle .tab_cnt_3 .hover_txt {
  z-index: 1;
  width: 100%;
  opacity: 0;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
  padding: 40px;
}

.company-principle .tab_cnt_3 .bg_img:hover .hover_txt {
  opacity: 1;
}

.company-principle .tab_cnt_3 .hover_txt p {
  display: inline-block;
  overflow: hidden;
  transform: translate(200px);
  transition: 1.5s;
  font-size: 22px;
}

.company-principle .tab_cnt_3 .bg_img:hover .hover_txt p {
  transform: translate(100px);
  transition: 1.5s;
}

@media(max-width : 1440px) {
  .company-principle .tab a:after {
    right: 30%;
  }
}

@media(max-width : 1024px) {
  .company-principle .tab a:after {
    right: 23%;
  }
  .company-principle .tab_cnt_3 .bg_img {
    height: 225px;
  }
}

@media(max-width : 768px) {
  .company-principle .tab a:after {
    display: none;
  }
  .company-principle .tab a span {
    max-width: initial;
    position: initial;
    transform: translate(0);
  }
  .company-principle .tab_cnt_1, .company-principle .tab_cnt_2, .company-principle .tab_cnt_3 {
    padding-top: 80px;
  }
  .company-principle .tab_cnt_1 .half_wrap {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .company-principle .tab_cnt_1 .left, .company-principle .tab_cnt_1 .right {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  .company-principle .tab_cnt_1 .right {
    margin-top: 30px;
  }
  .company-principle .tab_cnt_1 ul li {
    padding: 7px 0;
  }
  .company-principle .tab_cnt_3 .half_wrap {
    padding: 0;
  }
  .company-principle .tab_cnt_3 .left, .company-principle .tab_cnt_3 .right {
    margin-right: auto;
    margin-left: auto;
    max-width: initial;
    width: 100%;
  }
  .company-principle .tab_cnt_3 .left {
    margin-top: 60px;
  }
  .company-principle .tab_cnt_3 .right {
    margin-top: 20px;
  }
  .company-principle .tab_cnt_3 .bg_img {
    height: 300px;
  }
  .company-principle .tab_cnt_3 .hover_txt {
    padding: 20px;
  }
}

@media(max-width : 575px) {
  .company-principle {
    padding: 30px 0;
  }
  .company-principle p {
    font-size: 15px;
    line-height: 25px;
  }
  .company-principle h4 {
    margin-top: 40px;
  }
  .company-principle .tab_cnt_1 {
    padding-top: 30px;
  }
  .company-principle .tab_cnt_1 .half_wrap {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .company-principle .tab_txt {
    margin: 20px 0;
  }
  .company-principle .tab_cnt_1 ul.type_deci {
    font-size: 15px;
  }
  .company-principle .tab_cnt_3 .bg_img {
    height: 223px;
  }
}

@media(max-width : 425px) {
  .company-principle .tab a {
    font-size: 13px;
    line-height: 20px;
    padding: 15px 0;
  }
  .company-principle .tab_cnt_3 .left {
    margin-top: 25px;
  }
  .company-principle .tab_cnt_3 .bg_img {
    height: 160px;
  }
  .company-principle .tab_cnt_3 .left a {
    font-size: 18px;
  }
  .company-principle .tab_cnt_3 .left p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 25px;
  }
  .company-principle .tab_cnt_3 .hover_txt p {
    transform: translate(100px);
    font-size: 20px;
    letter-spacing: .96px;
  }
  .company-principle .tab_cnt_3 .bg_img:hover .hover_txt p {
    transform: translate(20px);
  }
}

@media (max-width: 425px) {
  .company-principle .tab_cnt_3 .bg_img {
    height: 143px;
  }
}

/*--------------------------------------------------------------
  Company Business
--------------------------------------------------------------*/
.company-business .col-txt {
  margin-left: 30px;
}

.company-business .col-txt h4 {
  margin-top: 0;
  margin-bottom: 30px;
}

.company-business .bg-lightgray {
  padding: 180px 0;
  margin-top: 100px;
  background: #f4f4f4;
}

.company-business .contents {
  width: 90%;
  background: #FFF;
  padding-bottom: 80px;
  padding-left: 10%;
}

.company-business .cnts_inner {
  max-width: 1440px;
  margin: auto;
}

.company-business .cnt_head {
  font-size: 24px;
  letter-spacing: .96px;
  text-align: center;
  padding-top: 80px;
  margin-bottom: 50px;
}

.company-business .contents .half_wrap {
  padding-bottom: 100px;
}

.company-business .contents .left {
  max-width: 500px;
  width: 100%;
  padding-right: 60px;
}

.company-business .contents .left img {
  max-width: 370px;
  width: 100%;
}

.company-business .contents .middle, .company-business .contents .right {
  margin-top: 50px;
}

.company-business .contents .right {
  padding-left: 60px;
  padding-right: 60px;
}

.company-business .contents .num {
  font-size: 60px;
  font-family: serif;
  font-weight: 100;
  background: #404042;
  color: #fff;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.company-business .contents .spOnly {
  display: none;
}

.company-business .contents .txt_head {
  font-size: 22px;
  letter-spacing: 1.24px;
  margin-bottom: 60px;
  margin-top: 20px;
}

@media(max-width : 768px) {
  .company-business .bg-lightgray {
    padding: 100px 0;
  }
  .company-business .contents {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 20px;
  }
  .company-business .contents .middle {
    display: none;
  }
  .company-business .contents .spOnly {
    display: block;
  }
  .company-business .contents .num_sp {
    font-size: 45px;
    font-family: serif;
    background: #404042;
    color: #fff;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .company-business .contents .left {
    max-width: initial;
    padding-right: 0;
  }
  .company-business .contents .right {
    padding-left: 0;
    padding-right: 0;
    margin-top: 40px;
  }
  .company-business .contents .txt_head {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 30px;
  }
  .company-business .mb30 {
    margin-bottom: 30px;
  }
}

@media(max-width : 767px) {
  .company-business .col-txt {
    margin-left: 0;
    margin-top: 30px;
  }
}

@media(max-width : 575px) {
  .company-business .bg-lightgray {
    padding: 60px 0;
    margin-top: 60px;
  }
  .company-business .cnt_head {
    font-size: 20px;
    padding-top: 40px;
    margin-top: 0;
    margin-bottom: 40px;
  }
  .company-business .contents .left img {
    max-width: 250px;
  }
}

@media(max-width : 375px) {
  .company-business .contents .left img {
    max-width: 200px;
  }
  .company-business .contents .txt_head {
    font-size: 20px;
  }
  .company-business .contents .num_sp {
    font-size: 40px;
    width: 60px;
    height: 60px;
  }
}
/*--------------------------------------------------------------
  Company Message
--------------------------------------------------------------*/
.company-message {
  padding-top: 100px;
  padding-bottom: 0;
}

.company-message .pos_ab {
  position: relative;
  min-height: 350px;
  height: auto;
}

.company-message .pos_ab img {
  position: absolute;
  bottom: -80px;
  left: 0;
  right: 0;
  padding: 0 50px;
  max-width: 1000px;
  width: 100%;
}

.company-message .bg-gray2 {
  padding-top: 5px;
  padding-bottom: 60px;
  background: #ededed;
}

.company-message .bigTxt {
  max-width: 1200px;
  width: 95%;
  background: #fff;
  padding-top: 175px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
  -moz-box-shadow: 0px 15px 15px 10px rgb(0, 0, 0, .25);
  -webkit-box-shadow: 0px 15px 15px 10px rgb(0, 0, 0, .25);
  box-shadow: 0px 15px 15px 10px rgb(0, 0, 0, .25);
}

.company-message .bigTxt .head {
  max-width: 980px;
  margin: auto;
}

.company-message .bigTxt .head p {
  font-family: serif;
  font-size: 25px;
  line-height: 42px;
  font-weight: 500;
  border-top: 1px solid #2b2b2b;
  border-bottom: 1px solid #2b2b2b;
  padding: 30px 0;
  text-align: center;
}

.company-message .mes_txt {
  padding: 80px 0;
  max-width: 980px;
  margin: auto;
}

.company-message .mes_txt p {
  margin-bottom: 40px;
}

.company-message .mes_txt p:last-of-type {
  margin-bottom: 0;
}

@media(max-width : 1024px) {
  .company-message .pos_ab {
    min-height: 320px;
  }
}
@media(max-width : 768px) {
  .company-message .pos_ab {
    min-height: 220px;
  }
  .company-message .bigTxt {
    padding-top: 150px;
  }
  .company-message .mes_txt {
    padding: 40px 0;
  }
}

@media(max-width : 575px) {
  .company-message {
    padding-top: 50px;
  }
  .company-message .bg-gray2 {
    padding-bottom: 80px;
  }
  .company-message .pos_ab {
    min-height: 165px;
  }
  .company-message .pos_ab img {
    bottom: -50px;
    padding: 0 20px;
  }
  .company-message .bigTxt {
    padding-top: 85px;
  }
  .company-message .bigTxt .head p {
    font-size: 20px;
    line-height: 33px;
    padding: 15px 0;
  }
  .company-message .mes_txt {
    padding: 30px 0;
  }
  .company-message .mes_txt p {
    margin-bottom: 20px;
  }
}

@media(max-width : 375px) {
  .company-message .pos_ab {
    min-height: 100px;
  }
}
/*--------------------------------------------------------------
  Company Profile
--------------------------------------------------------------*/
.company-profile {
  padding-bottom: 200px;
}

.company table {
  width: 100%;
}

.company table tr {
  border-top: 1px solid #124489;
  border-bottom: 1px solid #124489;
}

.company table tr:last-of-type, .company table.bb_0 tr {
  border-bottom: 0;
}

.company table.bb_0 td {
  border-bottom: 1px solid #124489;
}

.company table.bb_0 td .tel {
  margin-top: 10px;
}

.company table.bb_0 td .tel span {
  margin-left: 15px;
}

.company table th, .company table td {
  font-size: 18px;
  font-weight: 400;
  padding: 50px 10px;
}

.company table th {
  width: 30%;
}

@media(max-width : 575px) {
  .company-profile {
    padding-bottom: 80px;
  }
  .company table th, .company table td {
    padding: 30px 10px;
    font-size: 15px;
  }
  .company table.bb_0 td {
    display: block;
    border-bottom: 0;
  }
  .company table.bb_0 td:first-of-type {
    padding-bottom: 0;
  }
  .company table.bb_0 td:last-of-type {
    padding-top: 15px;
  }
  .company table p {
    font-size: 15px;
  }
  .company table.bb_0 td .tel span {
    margin-left: 0;
    display: block;
  }
}
/*--------------------------------------------------------------
  Company Access
--------------------------------------------------------------*/
.company-access table tr:last-of-type {
  border-bottom: 1px solid #124489;
}

.company-access .parent {
  display: table;
  table-layout:fixed;
  width: 100%;
}

.company-access .child {
  display: table-cell;
  width: 30%;
  padding: 0 10px;
  padding-top: 50px;
}

.company-access .child_td {
  border-bottom: 1px solid #124489;
}

.company-access .td_txt {
  padding: 50px 10px 30px;
  display: flex;
}

.company-access .td_left {
  width: 40%;
}

.company-access .td_right {
  width: 60%;
}

.company-access .td_img {
  padding: 0 10px;
  padding-bottom: 50px;
}

.company-access .td_img img {
  margin-bottom: 30px;
}

.company-access iframe {
  max-width: 800px;
  width: 100%;
  height: 300px;
}


@media(max-width : 768px) {
  .company-access .parent {
    display: block;
  }
}

@media(max-width : 575px) {
  .company-access .child {
    display: block;
    width: 100%;
    padding-top: 30px;
  }
  .company-access .td_txt {
    display: block;
    padding: 30px 10px;
  }
  .company-access .td_left, .company-access .td_right {
    width: 100%;
  }
  .company-access .td_left {
    margin-bottom: 15px;
  }
  .company-access .td_img {
    padding-bottom: 30px;
  }
}

/*---------- Crousel ----------*/
.company-access .carousel_cnt {
  background: #000;
  max-width: 800px;
  width: 100%;
  margin: auto;
  margin-bottom: 30px;
}

.company-access .wrap {
  display: flex;
  align-items: center;
  height: 450px;
  padding: 50px;
}

.company-access .left {
  margin-right: 20px;
  width: 50%;
}

.company-access .right {
  margin-left: 20px;
  width: 50%;
}

.company-access .left img {
  max-width: 300px;
  width: 100%;
}

.company-access .right .head {
  font-size: 46px;
  line-height: 50px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #fff;
}

.company-access .right p {
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: .5px;
}

.company-access .wrap_sec .right .head {
  font-size: 28px;
  margin-bottom: 20px;
}

.company-access .wrap_sec .right p {
  line-height: 22px;
  letter-spacing: initial;
}

.company-access .right .b_res {
  margin-top: 20px;
}

.company-access .right .b_carousel {
  position: relative;
  color: #fff;
  font-weight: 300;
  border: 1px solid #fff;
  border-radius: 0;
  transform: translate(5px);
  transition: .3s;
}

.company-access .right .b_carousel svg {
  position: absolute;
  top: 10px;
  right: 5px;
  width: 18px;
  height: 18px;
  fill: none;
  stroke-width: 4px;
  stroke-linecap: round;
  stroke-linejoin: miter;
  transform: translate(-5px);
  transition: .3s;
}

.company-access .right .b_carousel:hover {
  background: #ffffff33;
  color: #fff;
  border: 1px solid #ffffff33;
  padding-right: 30px;
  transform: translate(0px);
  transition: .3s;
}

.company-access .right .b_carousel:hover svg {
  stroke: #fff;
  transform: translate(0px);
  transition: .3s;
}

.owl-carousel {
  overflow: hidden;
}

.owl-carousel .owl-item img {
  width: auto;
  display: inherit;
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
  display: block;
}

.company-access .carousel_cnt .owl-dots {
  position: absolute;
  bottom: 30px;
  left: calc(50% - 25px);
}

.company-access .carousel_cnt .owl-carousel button.owl-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #0c71c3;
  opacity: .5;
  margin: .3rem;
  outline: none;
}

.company-access .carousel_cnt .owl-carousel button.owl-dot.active {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #0c71c3;
  opacity: 1;
  margin: .3rem;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
   position: absolute;
   width: 40px;
   height: 40px;
   outline: none;
   bottom: 50%;
   -webkit-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;
   opacity: 0;
 }

.owl-carousel .owl-nav button.owl-prev {
  left: -20px;
}

.owl-carousel .owl-nav button.owl-next {
  right: -20px;
}

.owl-carousel:hover > .owl-nav button.owl-prev {
  left: 5px;
  opacity: 1;
}

.owl-carousel:hover > .owl-nav button.owl-next {
  right: 5px;
  opacity: 1;
}

.owl-carousel .owl-nav button.owl-prev svg,
.owl-carousel .owl-nav button.owl-next svg {
  fill: none;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: miter;
  width: 45px;
  height: 45px;
  stroke: #0c71c3;
 }

 .owl-carousel .owl-nav button.owl-prev svg {
  transform: scale(-1, 1);
 }

.owl-carousel .owl-nav button.owl-prev:hover svg,
.owl-carousel .owl-nav button.owl-next:hover svg {
   stroke: #0c71c3;
 }

 @media(max-width : 1024px) {
  .company-access .left img {
    max-width: 250px;
  }
 }

 @media(max-width : 768px) {
  .company-access .wrap {
    height: 350px;
  }
  .company-access .left {
    display: none;
  }
  .company-access .right {
    width: 100%;
    margin-left: 0;
  }
  .company-access .right .head {
    font-size: 23px;
    margin-bottom: 10px;
    text-align: center;
  }
  .company-access .right p {
    text-align: center;
  }
  .company-access .wrap_sec .right .head {
    font-size: 23px;
    margin-bottom: 10px;
  }
  .company-access .right .b_res {
    display: flex;
    justify-content: center;
  }
  .company-access .carousel_cnt .owl-dots {
    bottom: 10px;
  }
  .owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
    opacity: 1;
  }
  .owl-carousel .owl-nav button.owl-prev {
    left: 5px;
  }
  .owl-carousel .owl-nav button.owl-next {
    right: 5px;
  }
}


/*--------------------------------------------------------------
  Products
--------------------------------------------------------------*/
.products {
  padding: 150px 0;
}

.products img[usemap] {
  max-width: 100%;
  height: auto;
}

.products ul {
  list-style: none;
  padding-left: 0;
}

.products .dropdown_menu {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 50px 0 100px;
}

.products .dropdown_menu .cat_all {
  margin-right: 30px;
}

.products .menu_item .menu_category {
  position: relative;
  border: 1px solid #c0c0c0;
  width: 300px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.products .menu_item .menu_category:after {
  position: absolute;
  top: 6px;
  right: 36px;
  display: inline-block;
  content: url(../images/svg/arrow.svg);
  width: 24px;
  height: 24px;
  transform: rotate(90deg);
  border: 0;
}

.products .menu_item .parent_list {
  margin-top: 20px;
  border: 1px solid #c0c0c0;
  padding: 15px 20px;
  width: 300px;
  position: absolute;
  z-index: 5;
  background: #fff;
}

.products .menu_item .parent_item {
  padding: 7px 20px 7px 0;
  position: relative;
}

.products .menu_item .parent_item:after {
  position: absolute;
  top: 13px;
  right: 0;
  content: url(../images/svg/arrow.svg);
  transform: rotate(90deg);
  width: 16px;
  height: 16px;
}

.products .menu_item .parent_item .parent_name {
  font-size: 18px;
}

.products .child_list {
  margin-top: 7px;
}

.products .child_list .child_item {
  padding: 7px;
}

.products .child_list .child_item a {
  position: relative;
  display: block;
  font-size: 15px;
  margin-top: 0;
  transition: ease 0.3s;
}

.products .child_list .child_item a:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: '';
  width: 0;
  height: 1px;
  background-color: #c0c0c0;
  transition: ease 0.3s;
  transform: translateX(-50%);
}

.products .child_list .child_item a:hover:after {
  width: 100%;
  color: #c0c0c0;
}

.products .chartItem .img_wrap {
  max-width: 250px;
  width: 100%;
  max-height: 250px;
  margin: auto;
}

.products .chartItem .img_wrap:hover img {
  opacity: .7;
  transition: .3s;
}

.products .chartItem .img_wrap img {
  max-width: 200px;
  width: 100%;
  max-height: 200px;
  transition: .3s;
}

.products .catItem__1 .img_wrap {
  max-width: 400px;
  width: 100%;
  max-height: 400px;
  margin: auto;
}

.products .catItem__1 .img_wrap img {
  max-width: 300px;
  width: 100%;
  max-height: 300px;
}

.products .catItem__1 .col {
  margin-bottom: 60px;
}

.products .col_txt {
  width: 100%;
}

.products .col_txt p {
  font-size: 15px;
}

.products .col_txt p:first-of-type {
  font-size: 20px;
  margin-bottom: 30px;
}

/*----- Pager -----*/
.products .pager {
  margin-top: 50px;
}

.wp-pagenavi span {
  margin: 0;
}

.wp-pagenavi a, .wp-pagenavi span.current {
  border-radius: 10px;
  margin: 10px;
  font-size: 18px;
  font-weight: normal;
  display: inline-block;
  width: 35px;
  height: 35px;
}

.wp-pagenavi a:focus, .wp-pagenavi a:hover {
  outline: none;
  border: 1px solid #c0c0c0;
}

.products .pager span.current {
  background: #214981;
  color: #fff;
  border: 0;
}

.products .pager span.page_prev, .products .pager span.page_next {
  border: 0;
  width: 16px;
  height: 16px;
  padding: 0;
  content: url(../images/svg/arrow_case.svg);
}

.products .pager span.page_prev {
  transform: rotate(180deg);
}

@media(max-width : 575px) {
  .products .pager {
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .wp-pagenavi a, .wp-pagenavi span.current {
    margin: 8px;
    font-size: 16px;
    width: 32px;
    height: 32px;
  }
  .products .pager span.page_prev, .products .pager span.page_next {
    width: 14px;
    height: 14px;
  }
}

/*----- Side Bar -----*/
.side_bar {
  display: inline-block;
}

.side_bar .listItem {
  border-bottom: 1px solid #c0c0c0;
  margin-bottom: 0;
  font-size: 20px;
}


.side_bar li a {
  display: table;
  padding: 14px 5px;
  width: 100%;
  text-decoration: none;
  vertical-align: middle;
  overflow: hidden;
}

.side_bar li ul {
  margin: 0;
  padding: 0;
}

.side_bar li li a {
  position: relative;
  display: block;
  margin-top: 0;
  padding: 0 5px;
  height: 0;
  font-size: 15px;
  transition: .7s;
}

.side_bar > li:hover li a {
  display: table;
  margin-top: 1px;
  padding: 10px 5px;
  width: 100%;
  height: 1em;
}

.side_bar li li a:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: '';
  width: 0;
  height: 1px;
  background-color: #c0c0c0;
  transition: ease-in-out .5s;
  transform: translateX(-50%);
}

.side_bar li li a:hover:after {
  width: 100%;
  color: #c0c0c0;
}

@media(max-width : 991px) {
  .products {
    padding: 120px 0;
  }
}

@media(max-width : 768px) {
  .products {
    padding: 120px 0 80px 0;
  }
  .side_bar .parent_item {
    position: relative;
    padding-right: 40px;
  }
  .side_bar .parent_item:after {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 22px;
    height: 22px;
    content: url(../images/svg/arrow.svg);
    transform: rotate(90deg);
    z-index: 99;
  }
  .side_bar li {
    width: 100%;
    border-bottom: 1px solid #c0c0c0;
  }
  .side_bar .listItem {
    border-bottom: 0;
    font-size: 18px;
  }
  .side_bar li a {
    width: auto;
    padding: 10px 5px;
  }
  .side_bar li li {
    border-bottom: 0;
  }
}

@media(max-width : 575px) {
  .products .col_txt p:first-of-type {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .products .dropdown_menu {
    margin: 30px 0;
  }
  .products .dropdown_menu .cat_all {
    margin-right: 10px;
    font-size: 15px;
  }
  .products .menu_item .menu_category {
    width: 200px;
    height: 35px;
    font-size: 15px;
  }
  .products .menu_item .menu_category:after {
    width: 20px;
    height: 20px;
  }
  .products .menu_item .parent_list {
    width: 200px;
    padding: 10px;
    margin-top: 10px;
  }
  .products .menu_item .parent_item .parent_name {
    font-size: 16px;
    line-height: 25px;
  }
  .products .child_list .child_item a {
    font-size: 14px;
    line-height: 20px;
  }
  .side_bar {
    display: block;
  }
}

/*--------------------------------------------------------------
# segment
--------------------------------------------------------------*/

.products .fieldSelect{
	display: flex;
	justify-content:space-around;
	padding: 20px 0 ;

}
.products .fieldSelect .field{
	width: 100%;
    padding: 1px;
    display: flex;
	}

.products .fieldSelect .field a{
	text-align: center;
	margin: 0 auto;
	padding: 0 30px 1px;
	border-bottom:1px solid silver;
}
.products .fieldSelect .field p{
	text-align: center;
	font-size: 15px;
	letter-spacing: 1.5px;
	color: #717171;
}
@media(max-width : 575px) {
	.products .fieldSelect{
		display: block;
		padding-bottom: 5%;
	}
	.products .fieldSelect .field{
	width: 95%;
	margin: 0 auto 8%;
	}
	.products .fieldSelect .field a{
	width: 100%;
	padding: 0 0 1px;
	}
	.products .fieldSelect .field p{
	font-size: 13px;
	}
}
/*--------------------------------------------------------------
# Bread Crumb
--------------------------------------------------------------*/
.breadcrumbs {
  margin: 0;
  padding: 0;
  background: transparent;
}

.breadcrumbs a, .breadcrumbs span {
  font-size: 13px;
  line-height: 19px;
  color: #ccc;
  font-family: 'NotoSansjp', "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
}

@media(max-width : 768px) {
  .breadcrumbs {
    display: none;
  }
}

/*--------------------------------------------------------------
  Products Detail
--------------------------------------------------------------*/
.products_detail {
  padding-top: 200px;
}

.products_detail .left {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.products_detail .right {
  width: 40%;
  margin-left: 15px;
}

.products_detail .img-box {
  display: flex;
  align-items: center;
}

.products_detail .thumbImg {
  list-style: none;
  padding-left: 0;
  margin-right: 10px;
}

.products_detail .thumbImg li {
  max-width: 90px;
  width: 100%;
}

.products_detail .thumbImg img {
  margin-bottom: 10px;
  max-width: 90px;
  width: 100%;
  max-height: 90px;
  cursor: pointer;
}

.products_detail .img-box .box-main {
  max-width: 450px;
  width: 100%;
  margin-left: 10px;
}

.products_detail .mainImage {
  max-width: 450px;
  width: 100%;
  max-height: 450px;
}

.products_detail .wrap_txt {
  margin-top: 50px;
}

.products_detail .wrap_txt .itemName {
  font-size: 26px;
  line-height: 40px;
  letter-spacing: .96px;
  margin-bottom: 30px;
}

.products_detail .wrap_txt ul {
  font-size: 18px;
  padding-left: 35px;
  margin: 10px 0;
}

.products_detail .b_res {
  margin-top: 80px;
}

.products_detail .detail_desc {
  display: flex;
  margin-top: 100px;
}

.products_detail .desc_left {
  width: 35%;
}

.products_detail .desc_tab {
  display: inline-block;
  list-style: none;
  padding-left: 0;
  font-size: 20px;
  margin-bottom: 0;
}

.products_detail .desc_tab li {
  padding: 10px 0;
  cursor: pointer;
  transition: .3s;
}

.products_detail .desc_tab li.active {
  cursor: auto;
}

.products_detail .desc_right {
  display: none;
}

.products_detail .desc_right.show {
  display: block;
  width: 60%;
  height: 400px;
  overflow-y: scroll;
  direction: rtl;
  padding-left: 5%;
}

.products_detail .desc_right .desc_txt {
  margin-bottom: 20px;
  direction: ltr;
}

.products_detail .desc_right .desc_txt h4 {
  font-size: 22px;
  line-height: 32px;
}

.products_detail .desc_right .desc_txt ul {
  font-size: 18px;
  padding-left: 35px;
  margin: 10px 0;
}

.products_detail .desc_right .desc_txt iframe {
  margin-top: 15px;
}

.products_detail ::-webkit-scrollbar {
  width: 10px;
}

.products_detail ::-webkit-scrollbar-track {
  border-radius: 0;
  -moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, .1);
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, .1);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, .1);
}

.products_detail ::-webkit-scrollbar-thumb {
  background-color:  #b5b5b5/*rgba(0, 0, 50, .5)*/;
  border-radius:6px;
  -moz-box-shadow: 0 0 0 1px rgba(255, 255, 255, .3);
  -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, .3);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .3);
 }

.products_detail .relatedItem {
  padding: 80px 0 150px 0;
  margin-top: 100px;
}

.products_detail .relatedItem .head {
  font-size: 22px;
  letter-spacing: .96px;
  margin-bottom: 30px;
}

.products_detail .related_cnt {
  position: relative;
  max-width: 250px;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.products_detail .related_cnt img {
  width: 100%;
}

.products_detail .related_cnt .hover_txt {
  position: absolute;
  top: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.products_detail .related_cnt:hover .hover_txt {
  opacity: 1;
}

.products_detail .related_cnt .hover_txt p {
  font-size: 20px;
  color: #fff;
  text-align: center;
  margin-left: 15px;
  margin-right: 15px;
}

.products_detail.food_hy {
  padding-bottom: 100px;
}

@media(max-width : 991px) {
  .products_detail .desc_right .desc_txt iframe {
    max-width: 370px;
  }
}

@media(max-width : 768px) {
  .products_detail .left {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
  }
  .products_detail .left, .products_detail .right {
    width: 100%;
    margin-left: auto;
  }
  .products_detail .wrap_txt {
    margin-top: 30px;
  }
  .products_detail .wrap_txt .itemName {
    font-size: 28px;
    line-height: 42px;
  }
  .products_detail .b_res {
    margin-top: 30px;
  }
  .products_detail .relatedItem {
    padding: 40px 0 60px 0;
    margin-top: 80px;
  }
}

@media(max-width : 575px) {

  .products_detail {
    padding-top: 150px;
  }
  .products_detail .thumbImg li {
    max-width: 70px;
  }
  .products_detail .img-box .box-main {
    max-width: 350px;
  }
  .products_detail .wrap_txt {
    margin-top: 20px;
  }
  .products_detail .wrap_txt .itemName {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 15px;
  }
  .products_detail .detail_desc {
    margin-top: 60px;
    display: block;
  }
  .products_detail .desc_tab {
    display: flex;
    font-size: 18px;
    margin-bottom: 15px;
	overflow: scroll;
  }
  .products_detail .desc_tab li {
    padding: 0;
    margin-right: 20px;
  }
  .products_detail .desc_tab li:last-of-type {
    padding-right: 0;
  }
  .products_detail .desc_left {
    width: 100%;
  }
  .products_detail .desc_right.show {
    width: 100%;
    height: 300px;
    padding-left: 3%;
  }
  .products_detail ::-webkit-scrollbar {
    width: 7px;
    height: 7px;
  }
  .products_detail .desc_right .desc_txt h4 {
    font-size: 18px;
    line-height: 27px;
  }
  .products_detail .desc_right .desc_txt ul {
    font-size: 15px;
    line-height: 23px;
  }
  .products_detail .desc_right .desc_txt ul li {
    margin-bottom: 5px;
  }
  .products_detail .related_cnt {
    margin-bottom: 20px;
  }
  .products_detail .related_cnt .hover_txt p {
    font-size: 17px;
  }
  .products_detail .relatedItem {
    padding: 20px 0 60px 0;
  }
}

/*--------------------------------------------------------------
  Case
--------------------------------------------------------------*/
.case {
  padding: 100px 0;
}

.case .container {
  max-width: 1200px;
}

.case .wrap {
  display: flex;
}

.case .contents {
  background: #fff;
  width: 60%;
  min-height: 600px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: left;
  padding-left: 14%;
}

.case .contents .cnt_txt {
  max-width: 450px;
  width: 100%;
}

.case .contents .cnt_txt .link_res {
  margin-bottom: 20px;
}

.case .contents .txt_head {
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 1.4px;
}

.case .contents a:hover.txt_head {
  color: #2b2b2b;
  text-decoration: underline;
}

.case .img_wrap {
  position: relative;
  width: 50%;
}

.case .img_wrap img {
  position: absolute;
  top: 16%;
  left: -10%;
  max-width: 510px;
  width: 100%;
}

.case .tokatsu{
  width:85%;
  max-width: 800px;
  margin:  7% auto;
}
.case .tokatsu .small{
  padding-top: 5px;
  line-height: 130%;
}
.case .tokatsu .small a{
  font-size: 100%;
}
@media(max-width : 1440px) {
  .case .contents {
    padding-left: 8%;
    min-height: 500px;
  }
  .case .img_wrap img {
    right: 13%;
    top: 14%;
  }
}

@media(max-width : 1024px) {
  .case .contents .cnt_txt {
    max-width: 400px;
  }
}

@media(max-width : 991px) {
  .case .contents {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media(max-width : 768px) {
  .case .contents {
    min-height: 700px;
  }
  .case .contents .cnt_txt {
    max-width: 350px;
  }
  .case .contents .txt_head {
    font-size: 22px;
    line-height: 32px;
  }
  .case .img_wrap img {
    right: 8%;
  }
}

@media(max-width : 767px) {
  .case {
    padding: 80px 0;
  }
  .case .wrap {
    display: block;
  }
  .case .contents {
    width: 90%;
    min-height: initial;
    display: block;
    padding-top: 40px;
    padding-bottom: 30px;
  }
  .case .contents .cnt_txt {
    max-width: initial;
    margin-top: 30px;
  }
  .case .contents img {
    max-width: 450px;
    width: 100%;
  }
  .case .img_wrap {
  display: none;
  }
}

@media(max-width : 575px) {
  .case .contents img {
    max-width: 350px;
  }
  .case .contents .cnt_txt .link_res {
    margin-bottom: 10px;
  }
  .case .contents .txt_head {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
  Case Detail
--------------------------------------------------------------*/
.case_detail .container {
  max-width: 1440px;
}

.case_detail .heading {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.case_detail .img_wrap img {
  top: 14%;
}

.case_detail .img_wrap img {
  max-width: 550px;
}

.case_detail .underHead {
  margin-top: 80px;
  margin-bottom: 30px;
}

.case_detail .underHead span {
  font-size: 24px;
  color: #124489;
  border-bottom: 2px solid #124489;
}

/* .case_detail .img_wrap__1 img {
  width: 100%;
} */

.case_detail .img_wrap__2 {
  margin-top: 50px;
}

/* .case_detail .img_wrap__2 img {
  width: 100%;
} */

.case_detail .annotation {
  font-size: 16px;
  line-height: 25px;
  margin-top: 15px;
}

.case_detail ul.type_deci {
  list-style-type: decimal;
  font-size: 18px;
}

.case_detail .cd_cnt {
  padding: 30px 50px;
  background: #fff;
}

.case_detail .cd_cnt .sub_head {
  position: relative;
  display: inline-block;
  padding: 0 55px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.case_detail .cd_cnt .sub_head:before, .case_detail .cd_cnt .sub_head:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 1px;
  background-color: #2b2b2b;
}

.case_detail .cd_cnt .sub_head:before {
  left:0;
}
.case_detail .cd_cnt .sub_head:after {
  right: 0;
}

.case_detail .mt80 {
  margin-top: 80px;
}

.case_detail .doc_comment {
  display: flex;
  align-items: start;
  margin-bottom: 20px;
}

.case_detail .doc_comment p:first-of-type {
  position: initial;
  font-weight: initial;
  margin-left: 20px;
  padding: 0;
}

.case_detail .edit_wrap {
  display: flex;
}

.case_detail .edit_note {
  width: 55%;
  min-height: 450px;
  height: auto;
  display: flex;
  align-items: center;
  padding: 40px 10%;
  margin-top: 80px;
  margin-left: auto;
  background: #3a3a3a;
}

.case_detail .edit_txt p {
  color: #fff;
  font-size: 16px;
}

.case_detail .edit_txt p:first-of-type {
  display: inline-block;
  border-left: 4px solid #fff;
  font-size: 18px;
  line-height: 23px;
  padding-left: 10px;
  margin-bottom: 20px;
}

.case_detail .edit_txt .writer {
  margin-top: 15px;
  text-align: right;
}

.case_detail .cd_cnt .pro_list {
  position: relative;
  list-style: none;
  padding-left: 21px;
  margin-bottom: 0;
}

.case_detail .cd_cnt .pro_list li {
  padding: 5px 0;
}

.case_detail .cd_cnt .pro_list li:before {
  content: url(../images/svg/arrow_case.svg);
  position: absolute;
  left: 0;
  width: 12px;
  height: 12px;
}

.case_detail .card {
  margin-top: 80px;
  border-radius: 10px;
}

.case_detail .card-header {
  text-align: center;
  font-size: 24px;
  padding: 20px 0;
  border-radius: 10px 10px 0 0;
}

.case_detail .card-body {
  display: flex;
  align-items: center;
  padding: 40px;
}

.case_detail .card-img {
  width: 40%;
  margin-right: 20px;
}

.case_detail .card-img img {
  max-width: 420px;
  width: 100%;
}

.case_detail .card_txt {
  width: 60%;
  margin-left: 20px;
}

.case_detail .card_txt table th, .case_detail .card_txt table td {
  font-weight: normal;
  padding: 12px 5px;
}

.case_detail .card_txt table th {
  width: 28%;
}

.case_detail .b_res {
  margin-top: 80px;
}

.case_detail .b_black {
  margin: auto;
}

.case_detail .shimada_img_wrap {
  max-width: 334px;
}

.case_detail .shimada_img_wrap__2 {
  max-width: 630px;
  margin: 80px auto 0 auto;
}

.case_detail .ex_img_wrap img {
  width: 100%;
}

.case_detail .yachiyo_img_wrap img {
  max-width: 300px;
  width: 100%;
}

.case_detail .yachiyo_img_wrap__2 {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 80px;
}

.case_detail .yachiyo_img_wrap__2 img {
  max-width: 350px;
  width: 100%;
}

@media(min-width : 1650px) {
  .case_detail .contents .cnt_txt {
    max-width: 600px;
  }
}

@media(max-width : 1440px) {
  .case_detail .contents {
    min-height: 550px;
  }
}

@media(max-width : 1024px) {
  .case_detail .contents {
    min-height: 400px;
  }
}

@media(max-width : 768px) {
  .case_detail .card-body {
    padding: 20px;
  }
}

@media(max-width : 767px) {
  .case_detail .img_wrap__1, .case_detail .ex_img_wrap {
    margin-bottom: 40px;
  }
   .case_detail .shimada_img_wrap {
    margin: 40px auto 0 auto;
  }
  .case_detail .img_wrap__1 img, .case_detail .shimada_img_wrap img {
    display: flex;
    margin: auto;
  }
  .case_detail .case_detail .img_wrap__2 {
    margin-top: 40px;
  }
  .case_detail .ex_img_wrap img {
    width: auto;
    display: flex;
    margin: auto;
  }
  .case_detail .yachiyo_img_wrap img {
    display: flex;
    margin: 0 auto 40px auto;
  }
  .case_detail .yachiyo_img_wrap__2 {
    display: block;
    margin-top: 40px;
  }
  .case_detail .yachiyo_img_wrap__2 img {
    display: flex;
    margin: 0 auto 10px auto;
  }
  .case_detail .edit_wrap {
    display: block;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
  .case_detail .edit_note {
    width: 100%;
    min-height: initial;
  }
}

@media(max-width : 575px) {
  .case {
    padding: 50px 0;
  }
  .case .heading p {
    margin-top: 0;
  }
  .case_detail .cd_cnt {
    padding: 15px;
  }
  .case_detail .underHead {
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .case_detail .underHead span {
    font-size: 20px;
  }
  .case_detail .cd_cnt .sub_head {
    font-size: 18px;
    position: static;
    padding: 0;
    margin-bottom: 10px;
  }
  .case_detail .cd_cnt .sub_head:before, .case_detail .cd_cnt .sub_head:after {
    display: none;
  }
  .case_detail .card {
    margin-top: 50px;
  }
  .case_detail .card-header {
    font-size: 20px;
    padding: 15px 0;
  }
  .case_detail .card-body {
    display: block;
    padding: 15px;
  }
  .case_detail .card-img, .case_detail .card_txt {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  .case_detail .card_txt table {
    margin-top: 30px;
  }
  .case_detail .card_txt table th {
    width: 25%;
  }
  .case_detail .b_res {
    margin-top: 40px;
  }
  .case_detail .annotation {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px;
  }
  .case_detail .mt80 {
    margin-top: 40px;
  }
  .case_detail .edit_note {
    padding: 30px 20px;
    margin-top: 50px;
  }
  .case_detail .edit_txt p {
    font-size: 14px;
    line-height: 21px;
  }
  .case_detail .doc_comment {
    display: block;
  }
  .case_detail .doc_comment p:first-of-type {
    padding: 0;
    margin-left: 0;
    margin-top: 20px;
  }
  .case_detail .shimada_img_wrap__2 {
    margin: 40px auto 0 auto;
  }
}

/*--------------------------------------------------------------
  Trend
--------------------------------------------------------------*/
.trend {
  padding: 100px 0;
}

.trend .heading {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.trend .half_wrap {
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(14, 5, 5, 0.1);
  margin-bottom: 100px;
}

.trend .left {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trend .right {
  width: 70%;
  margin-left: 20px;
  display: flex;
  align-items: center;
}

.trend .cnt_txt {
  max-width: 350px;
  width: 100%;
  padding: 40px;
  padding-right: 20px;
}

.trend .cnt_txt .trend_head {
  font-size: 26px;
  letter-spacing: 1.3px;
  margin-bottom: 20px;
}

.trend .cnt_txt p {
  font-size: 16px;
}

.trend .trendImg {
	position: relative;
	display: block;
	overflow: hidden;
	width: 100%;
	height: 400px;
  margin: 0 auto;
}

.trend .trendImg img {
	display: block;
	position: absolute;
	width: 100%;
	-webkit-transition: 1.5s;
	transition: 1.5s;
}

.trend .trendImg:hover img:nth-of-type(2) {
	opacity: 0;
}

.trend .b_res {
  margin-top: 30px;
}

.trend .b_black {
  max-width: 200px;
  height: 40px;
  margin: auto;
}

.trend .b_black svg {
  position: absolute;
  top: 12px;
  right: 45px;
  width: 18px;
  height: 18px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
  transform: translate(0px);
  transition: .3s;
}

.trend .b_black:hover {
  background: rgba(0, 0, 0, 0.05);
  border: transparent;
  color: #2b2b2b;
  transition: .3s;
}

.trend .b_black:hover svg {
  stroke: #2b2b2b;
  transform: translate(10px);
  transition: .3s;
}


@media(max-width : 1024px) {
  .trend .trendImg {
    height: 269px;
  }
}

@media(max-width : 991px) {
  .trend .left {
    width: 40%;
  }
  .trend .right {
    width: 60%;
  }
}

@media(max-width : 768px) {
  .trend .left, .trend .right {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .trend .cnt_txt {
    max-width: initial;
  }
}

@media(max-width : 575px) {
  .trend .half_wrap {
    margin-bottom: 60px;
  }
  .trend .cnt_txt {
    padding: 20px;
    padding-bottom: 30px;
  }
  .trend .cnt_txt .trend_head {
    font-size: 21px;
    margin-bottom: 10px;
  }
  .trend .trendImg {
    height: 235px;
  }
}

@media(max-width : 425px) {
  .trend .trendImg {
    height: 170px;
  }
}

/*--------------------------------------------------------------
  Trend Detail
--------------------------------------------------------------*/
.trend_detail {
  padding-top: 100px;
}

.trend_detail .bg-lightgray {
  padding: 100px 0;
}

.trend_detail .heading {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.trend_detail .wrap {
  position: relative;
}

.trend_detail .contents {
  background: #fff;
  width: 60%;
  min-height: 600px;
  height: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
  margin-bottom: 100px;
  padding-right: 16%;
}

.trend_detail .contents .cnt_txt {
  max-width: 600px;
  width: 100%;
}

.trend_detail .contents .txt_head {
  font-size: 24px;
  margin-bottom: 20px;
}

.trend_detail .img_wrap {
  position: absolute;
  top: 13%;
  left: 13%;
}

.trend_detail .trend_cnt {
  padding: 50px;
}

.trend_detail .trend_cnt .cnt_title {
  font-size: 28px;
  padding: 10px;
  border-bottom: solid 2px #2b2b2b;
  margin-bottom: 40px;
}

.trend_detail .trend_cnt p {
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
  Recruit
--------------------------------------------------------------*/
.recruit {
  padding-top: 150px;
}

.recruit .container {
  max-width: 1200px;
}

.recruit .heading {
  justify-content: space-between;
}

.recruit .heading p {
  padding-left: 20px;
}

.recruit .heading .wantedly {
  max-width: 270px;
  width: 100%;
}

.recruit .contents {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.recruit .img_wrap__1 {
  width: 90%;
}

.recruit .contents .cnt_txt {
  position: absolute;
  top: 30%;
  right: -10%;
  z-index: 2;
  background: rgba(255, 255, 255, 0.8);
  padding: 70px;
  max-width: 700px;
  width: 100%;
}

.recruit .contents .cnt_txt p:first-of-type {
  font-family: serif;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 30px;
}

.recruit .bigTxt {
  padding-top: 80px;
  margin: 0 auto;
}

.recruit .bigTxt .head {
  font-size: 28px;
  font-family: serif;
  font-weight: 600;
  border-top: 1px solid #2b2b2b;
  border-bottom: 1px solid #2b2b2b;
  padding: 30px 0;
  margin: auto;
  text-align: center;
}

.recruit .mes_txt {
  padding: 80px 0;
}

.recruit .mes_txt p {
  margin-bottom: 40px;
}

.recruit .mes_txt p:last-of-type {
  margin-bottom: 0;
}

.recruit .mes_txt .img_wrap {
  margin-bottom: 40px;
}

.recruit .container.container_wide {
  max-width: 1245px;
}

.recruit .what_working {
  margin-bottom: 80px;
}

.recruit .what_working .head {
  text-align: center;
  font-size: 28px;
  margin-bottom: 50px;
}

.recruit .what_working .bg_img {
  position: relative;
  z-index: 0;
  cursor: pointer;
  max-width: 385px;
  width: 100%;
  height: 630px;
  display: flex;
  align-items: center;
  margin-right: 5px;
}

.recruit .what_working .bg_img:last-of-type {
  margin-right: 0;
}

.recruit .what_working .bg_img.recruitImg1 {
  background: url(../images/recruit/recruit_icr_m.jpg.webp) center right 0 / 100% no-repeat;
  background-size: cover;
}

.recruit .what_working .bg_img.recruitImg3 {
  background: url(../images/recruit/recruit_gm.jpg.webp) center right 0 / 100% no-repeat;
  background-size: cover;
}

.recruit .what_working .bg_img.recruitImg4 {
  background: url(../images/recruit/recruit_tech.jpg.webp) center center / 100% no-repeat;
  background-size: cover;
}

.recruit .what_working .bg_img:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  background: #214981;
  opacity: 0;
  z-index: -1;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.recruit .what_working .bg_img:hover:after {
  opacity: .7;
}

.recruit .what_working .hover_txt {
  z-index: 1;
  width: 100%;
  opacity: 0;
  color: #fff;
  padding: 0 20px;
}

.recruit .what_working .bg_img:hover .hover_txt {
  opacity: 1;
}

.recruit .what_working .bg_img .hover_txt p {
  font-size: 16px;
}

.recruit .what_working .bg_img .hover_txt .work_position {
  font-size: 19px;
}

.recruit .blogs {
  padding: 50px 0;
}

.recruit .card {
  max-width: 450px;
  width: 100%;
  margin-right: 20px;
}

.recruit .card:hover .card-body p {
  color: #2b2b2b;
}

.recruit .card:last-of-type {
  margin-right: 0;
}

.recruit .card-body {
  padding: 20px;
}

.recruit .card-body p:first-of-type {
  display: inline-block;
  border-bottom: 1px solid #2b2b2b;
  margin-bottom: 15px;
  font-size: 18px;
}

.recruit .card-body p:last-of-type {
  font-size: 13px;
  line-height: 19px;
}

@media(max-width : 1440px) {
  .recruit .contents .cnt_txt {
    right: -5%;
  }
}

@media(max-width : 1024px) {
  .recruit .contents .cnt_txt {
    right: 15px;
    top: 25%;
    padding: 70px 50px;
  }
  .recruit .what_working .bg_img {
    height: 600px;
  }
}

@media(max-width : 768px) {
  .recruit .heading {
    display: block;
  }
  .recruit .heading h3 {
    margin-bottom: 20px;
  }
  .recruit .heading .wantedly {
    max-width: 230px;
  }
  .recruit .img_wrap__1 {
    width: 100%;
  }
  .recruit .contents .cnt_txt {
    top: 22%;
    right: 0;
    padding: 50px;
    max-width: 500px;
  }
  .recruit .what_working .bg_img {
    max-width: 240px;
    height: 450px;
  }
}

@media(max-width : 575px) {
  .recruit {
    padding-top: 50px;
  }
  .recruit .heading .wantedly {
    max-width: 180px;
  }
  .recruit .heading p {
    margin-top: 0;
    margin-left: 0;
  }
  .recruit .contents .cnt_txt {
    padding: 30px;
    max-width: 380px;
  }
  .recruit .contents .cnt_txt span {
    display: block;
    margin-top: 7px;
  }
  .recruit .contents .cnt_txt p {
    font-size: 14px;
    line-height: 20px;
  }
  .recruit .contents .cnt_txt p:first-of-type {
    font-size: 19px;
    margin-bottom: 10px;
  }
  .recruit .bigTxt {
    padding-top: 40px;
  }
  .recruit .bigTxt .head {
      font-size: 22px;
      font-weight: 500;
      padding: 20px 0;
  }
  .recruit .mes_txt {
    padding: 20px 0 70px 0;
  }
  .recruit .mes_txt p {
    margin-bottom: 20px;
  }
  .recruit .what_working .head {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .recruit .what_working {
    width: 100%;
    justify-content: center;
  }
  .recruit .what_working .bg_img:after {
    opacity: .7;
  }
  .recruit .what_working .hover_txt {
    opacity: 1;
  }
  .recruit .what_working .bg_img {
    height: 350px;
  }
  .recruit .what_working .hover_txt {
    padding: 0 5px;
  }
  .recruit .what_working .bg_img .hover_txt p {
    font-size: 12px;
    line-height: 16px;
    margin-top: 10px;
  }
  .recruit .what_working .bg_img .hover_txt .work_position {
    font-size: 14px;
    line-height: 20px;
    margin-top: 0;
  }
  .recruit .card-body {
    padding: 10px;
  }
  .recruit .card-body p:first-of-type {
    border-bottom: 1px solid #2b2b2b;
    margin-bottom: 10px;
    font-size: 16px;
  }
}

@media(max-width : 375px) {
  .recruit .contents .cnt_txt {
    top: 15%;
    padding: 20px;
  }
  .recruit .what_working .bg_img {
    height: 300px;
  }
}

/*--------------------------------------------------------------
  Recruit Introduction
--------------------------------------------------------------*/
.introduction {
  padding-bottom: 80px;
}

.introduction .img_wrap {
  display: flex;
  justify-content: center;
}

.introduction .left {
  width: 100%;
  margin-right: -1px;
}

.introduction .right {
  max-width: 333px;
  width: 100%;
  margin-left: -1px;
}

.introduction .introImg {
  height: 500px;
}

.introduction .introImg_bg {
  background: url(../images/recruit/recruit_bgimage.jpg.webp) center center / 100% no-repeat;
  background-size: cover;
}

.introduction .introImg_0 {
  background: url(../images/recruit/recruit_02.jpg.webp) center center / 100% no-repeat;
  background-size: cover;
}

.introduction .introImg_1 {
  background: url(../images/recruit/recruit_icr_m.jpg.webp) top 0 center / 100% no-repeat;
  background-size: cover;
}

.introduction .introImg_2 {
  background: url(../images/recruit/recruit_icr_w.jpg.webp) top 0 center / 100% no-repeat;
  background-size: cover;
}

.introduction .introImg_3 {
  background: url(../images/recruit/recruit_gm.jpg.webp) top 0 center / 100% no-repeat;
  background-size: cover;
}

.introduction .introImg_4 {
  background: url(../images/recruit/recruit_tech.jpg.webp) top 0 center / 100% no-repeat;
  background-size: cover;
}

.introduction .contents .cnt_txt {
  background: transparent;
  max-width: initial;
  width: auto;
  right: auto;
  left: 13%;
  color: #fff;
  padding: 0;
}

.introduction .contents .cnt_txt p:first-of-type {
  font-family: 'NotoSansjp', "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  font-size: 28px;
  line-height: 46px;
  margin-bottom: 30px;
}

.introduction .contents .cnt_txt p:last-of-type {
  font-size: 16px;
  line-height: 25px;
}

.introduction .schedule {
  margin-top: 150px;
}

.introduction .schedule .timeline {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.introduction .schedule .timeline > li {
  overflow: visible;
  position: relative;
  margin: 0;
}

.introduction .schedule .timeline-content {
  border-left: 5px solid #214981;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 45px;
  padding-bottom: 45px;
  margin-left: 50px;
}

.introduction .schedule .timeline-content:before {
  position: absolute;
  left: 0;
  top: 80px;
  z-index: 5;
  content: url(../images/recruit/schedule.png);
  background: #f4f4f4;
}

.introduction .schedule .timeline-content p {
  color: #214981;
  font-family: serif;
  font-size: 32px;
  line-height: 46px;
  font-weight: 600;
  margin-left: 40px;
}

.introduction .schedule .timeline-content span {
  margin-left: 25px;
}

.introduction .schedule .timeline-content.imgNone {
  align-items: start;
  min-height: auto;
  padding-bottom: 145px;
}

.introduction .schedule .timeline-content.imgNone:before {
  content: '';
  background: transparent;
}

.introduction .desc {
  padding-top: 100px;
}

.introduction .desc p {
  margin-bottom: 50px;
}

.introduction .mes_txt {
  padding: 30px 0;
}

.introduction .desc .caption, .introduction .mes_txt .caption {
  font-size: 28px;
  margin-bottom: 20px;
}

@media(max-width : 1024px) {
  .introduction .contents .cnt_txt {
    top: 30%;
    left: 7%;
  }
}

@media(max-width : 768px) {
  .introduction .right {
    max-width: 230px;
  }
  .introduction .contents .cnt_txt {
    top: 35%;
    left: 5%;
  }
  .introduction .contents .cnt_txt p:first-of-type {
    font-size: 24px;
    line-height: 38px;
    margin-bottom: 20px;
  }
}

@media(max-width : 650px) {
  .introduction .right {
    max-width: 200px;
  }
  .introduction .introImg {
    height: 350px;
  }
}

@media(max-width : 575px) {
  .introduction .right {
    max-width: 140px;
  }
  .introduction .contents .cnt_txt {
    top: 25%;
    left: 15px;
  }
  .introduction .contents .cnt_txt p:first-of-type {
    font-size: 16px;
    line-height: 25px;
  }
  .introduction .contents .cnt_txt p:last-of-type {
    font-size: 13px;
    line-height: 19px;
  }
  .introduction .schedule {
    margin-top: 40px;
  }
  .introduction .schedule .timeline-content {
    min-height: 160px;
    margin-left: 40px;
    padding-bottom: 25px;
  }
  .introduction .schedule .timeline-content:before {
    top: 30px;
    content: url(../images/recruit/schedule_sp.png);
  }
  .introduction .schedule .timeline-content p {
    font-size: 20px;
    line-height: 28px;
    margin-left: 10px;
  }
  .introduction .schedule .timeline-content span {
    margin-left: 0;
    display: block;
    font-size: 16px;
    line-height: 25px;
  }
  .introduction .schedule .timeline-content.imgNone {
    padding-top: 40px;
    padding-bottom: 55px;
  }
  .introduction .desc {
    padding-top: 80px;
  }
  .introduction .mes_txt {
    padding: 20px 0;
  }
  .introduction .desc .caption, .introduction .mes_txt .caption {
    font-size: 20px;
  }
}

@media(max-width : 500px) {
  .introduction .contents .cnt_txt {
    max-width: 250px;
  }
}

@media(max-width : 455px) {
  .introduction .introImg {
    height: 280px;
  }
  .introduction .right {
    max-width: 120px;
  }
}

@media(max-width : 375px) {
  .introduction .bigTxt .head {
    font-size: 20px;
  }
  .introduction .contents .cnt_txt {
    max-width: 200px;
    top: 15%;
  }
}

@media(max-width : 350px) {
  .introduction .contents .cnt_txt {
    max-width: 150px;
  }
}

/*--------------------------------------------------------------
  Contact Form
--------------------------------------------------------------*/
.contact_form {
  padding-top: 127px;
}

.contact_form .bg-blue {
  padding: 150px;
  background: #214981;
}

.contact_form .container {
  position: relative;
  max-width: 1200px;
  min-height: 3000px;
  height: auto;
}

.contact_form .card {
  position: absolute;
  top: -150px;
  width: 100%;
  border: 1px solid #444;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, .7);
}

.contact_form .form_cnt {
  display: flex;
}

.contact_form .form_cnt .left {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  background: #e1e2e4;
  padding: 25px 0;
}

.contact_form .form_cnt .right {
  width: 60%;
  padding: 25px;
}

.contact_form .form_cnt:first-child .left,
.contact_form .form_cnt:first-child .right {
  padding-top: 80px;
}

.contact_form .form_cnt:last-child .left,
.contact_form .form_cnt:last-child .right {
  padding-bottom: 150px;
}

.contact_form .form_cnt label {
  margin-bottom: 0;
}

.contact_form .txt_red {
  color: #ff0000;
}

.contact_form .annotation {
  font-size: 15px;
  margin-top: 5px;
}

.contact_form .form-control {
  background: #e1e2e4;
  border: 0;
}

.contact_form .form_cnt .right.catalog {
  display: flex;
}

.contact_form .catalog_left, .contact_form .catalog_right {
  width: 50%;
}

.contact_form .catalog_left {
  margin-right: 5px;
}

.contact_form .catalog_right {
  margin-left: 5px;
}

.contact_form .txt_blue {
  color: #214981;
  font-weight: 600;
  margin-top: 20px;
}

.contact_form .txt_blue:first-of-type {
  margin-top: 0;
}

.contact_form .catalog .wpcf7-list-item {
  display: block;
  margin-left: 10px;
}

.contact_form .catalog .wpcf7-list-item label {
  font-size: 15px;
  line-height: 21px;
}

@media(max-width : 1024px) {
  .contact_form .card {
    width: 90%;
    left: 5%;
  }
}

@media(max-width : 991px) {
  .contact_form {
    padding-top: 120px;
  }
}

@media(max-width : 768px) {
  .contact_form .container {
    min-height: 3700px;
  }
  .contact_form .form_cnt .right.catalog {
    display: block;
  }
  .contact_form .catalog_left, .contact_form .catalog_right {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .contact_form .txt_blue, .contact_form .txt_blue:first-of-type {
    margin-top: 10px;
  }
}

@media(max-width : 575px) {
  .contact_form .bg-blue {
    padding: 80px;
  }
  .contact_form .container {
    min-height: 3200px;
  }
  .contact_form .card {
    top: -80px;
  }
  .contact_form .form_cnt label {
    font-size: 15px;
  }
  .contact_form .form_cnt:first-child .left, .contact_form .form_cnt:first-child .right {
    padding-top: 40px;
  }
  .contact_form .form_cnt .left {
    padding: 10px 5px;
  }
  .contact_form .form_cnt .right {
    padding: 10px;
  }
  .contact_form .form_cnt:last-child .right {
    padding-bottom: 80px;
    justify-content: right;
  }
  .contact_form .annotation {
    font-size: 13px;
  }
}

@media(max-width : 450px) {
  .contact_form .container {
    min-height: 3500px;
  }
}

@media(max-width : 375px) {
  .contact_form .container {
    min-height: 3700px;
  }
}

/*---------- Contact Form7 -----------*/
.wpcf7 {
  max-width: initial;
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.form-group, .wpcf7 .wpcf7-form p {
  margin-bottom: 0;
}

.wpcf7 .wpcf7-form label {
  width: auto;
}

.wpcf7 input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #e1e2e4 inset;
}

.wpcf7 input[type=submit] {
  background: #214981;
  color: #fff;
  max-width: 250px;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  border-color: transparent;
}

.wpcf7 input:hover[type=submit], .wpcf7 input:not(:disabled):not(.disabled):active[type=submit], .wpcf7 input:focus[type=submit],
.wpcf7 input:not(:disabled):not(.disabled):active:focus[type=submit] {
  color: #fff;
  background-color: #28579a;
  border-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
}

.form-control, .wpcf7 input[type=text], .wpcf7 input[type=email], .wpcf7 textarea {
  font-size: 16px;
  font-weight: initial;
  line-height: 30px;
  color: #2b2b2b;
  background-color: #e1e2e4;
  background-clip: padding-box;
  border: 0;
}

.form-control:focus, .wpcf7 input:focus[type=text], .wpcf7 input:focus[type=email], .wpcf7 textarea:focus {
  color: #2b2b2b;
  background-color: #e1e2e4;
  border-color: transparent;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.wpcf7 input[type=radio] {
  vertical-align: baseline;
}

.wpcf7 input[type=checkbox] {
  vertical-align: -1px;
}

.wpcf7 select {
  font-size: 16px;
  font-weight: initial;
  line-height: 30px;
  color: #2b2b2b;
}

.wpcf7 select:focus {
  color: #2b2b2b;
  border-color: #ced4da;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
  display: none;
}

@media(max-width : 575px) {
  .wpcf7 input[type=submit] {
    font-size: 15px;
  }
  .wpcf7 input[type=radio] {
    margin: 5px 0;
  }
}

/*--------------------------------------------------------------
  Contact Form Thanks
--------------------------------------------------------------*/
.contact_form.thanks {
  padding-bottom: 135px;
}

.contact_form.thanks .container {
  min-height: 200px;
}

.contact_form.thanks .card {
  padding: 50px;
}

.contact_form.thanks .card .head {
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
}

.contact_form.thanks .b_res {
  margin-top: 50px;
}
.contact_form.thanks .b_blue {
  margin: auto;
  height: 50px;
}

@media(max-width : 575px) {
  .contact_form.thanks .card {
    padding: 20px;
  }
  .contact_form.thanks .b_res {
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
  Support
--------------------------------------------------------------*/
.support .left {
  max-width: 450px;
  width: 100%;
  margin-right: 30px;
}

.support .left img {
  max-width: 300px;
  width: 100%;
}

.support .right {
  margin-left: 30px;
}

.support .sup_cnt {
  margin-top: 100px;
}

.support .sup_cnt .caption {
  font-size: 24px;
  border-left: 2px solid #2b2b2b;
  padding-left: 30px;
  margin-bottom: 50px;
}

.support .left .img_wrap img {
  max-width: 400px;
  width: 100%;
}

.support .left p {
  margin-top: 20px;
  color: #a5a5a5;
}

.support .right p:first-of-type {
  margin-bottom: 35px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}

.support .init .left p {
  margin-bottom: 60px;
}

.support .bigTxt {
  margin: 0 auto;
}

.support .bigTxt .head {
  font-size: 20px;
  font-family: serif;
  font-weight: 600;
  border-top: 1px solid #2b2b2b;
  border-bottom: 1px solid #2b2b2b;
  padding: 20px 0;
  margin: auto;
  text-align: center;
  margin-bottom: 30px;
}

.support .bigTxt .wrap_txt p {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: initial;
}

.support .bigTxt .wrap_txt p:last-of-type {
  margin-bottom: 0;
}

.support .mb50 {
  margin-bottom: 50px;
}

.support .left__2 {
  width: 60%;
  padding: 80px 0;
}

.support .right__2 {
  width: 40%;
  padding: 80px 0 80px 5%;
}

.support .left__2 .selif_head {
  font-family: serif;
  font-weight: 600;
  font-size: 50px;
}

.support .left__2 .selif_head span {
  display: block;
  font-size: 22px;
}

.support .left__2 .mt20 {
  margin-top: 20px;
}

.support .right__2 ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.support .right__2 ul li {
  padding: 7px 0;
}

.support .right__2 ul li > a {
  color: #214981;
  text-decoration: underline;
}

@media(max-width : 768px) {
  .support .left, .support .right {
    max-width: initial;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .support .left p, .support .init .left p {
    margin-top: 10px;
    margin-bottom: 30px;
  }
  .support .init .right {
    margin-bottom: 50px;
  }
  .support .right p:first-of-type {
    margin-bottom: 15px;
  }
  .support .left__2, .support .right__2 {
    max-width: initial;
    width: 100%;
    padding: 0;
  }
  .support .left__2 .selif_head {
    padding: 30px 0;
  }
  .support .left__2 .mt20 {
    margin-top: 10px;
  }
  .support .right__2 {
    padding-bottom: 30px;
  }
  .support .b_black {
    margin: auto;
  }
}

@media(max-width : 575px) {
  .support .bigTxt .wrap_txt p {
    font-size: 16px;
  }
  .support .left img {
    width: auto;
  }
  .support .sup_cnt {
    margin-top: 60px;
  }
  .support .sup_cnt .caption {
    font-size: 22px;
    padding-left: 15px;
    margin-bottom: 30px;
  }
  .support .left__2 .selif_head {
    font-size: 31px;
  }
  .support .left__2 .selif_head span {
    font-size: 19px;
  }
}

/*--------------------------------------------------------------
  FAQ
--------------------------------------------------------------*/
.faq {
  padding: 100px 0;
}
.faq .contents {
  padding: 30px;
  margin-bottom: 50px;
}

.faq .contents .caption {
  font-size: 24px;
  border-left: 2px solid #2b2b2b;
  padding-left: 30px;
  margin-bottom: 50px;
}

.faq .contents ul {
  list-style: none;
  padding-left: 0;
}

.faq .contents ul li {
  padding: 7px 0;
}

.faq .b_res {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.faq .b_read {
  border-radius: 0;
}

.faq .contact_tel {
  margin-left: 30px;
  text-align: center;
  color: #214981;
  padding: 10px 30px;
  border: 2px solid #ccc;
}

.faq .contact_tel p, .faq .contact_tel a {
  font-size: 23px;
  line-height: 32px;
  font-weight: 700;
  color: #214981;
}

.faq .contact_tel .caution {
  font-size: 12px;
  line-height: 15px;
}

.faq .faq_txt {
  margin-bottom: 30px;
}

.faq .faq_txt .faq_q {
  font-size: 24px;
  color: #214981;
  margin-right: 10px;
  font-weight: normal;
}

.faq .faq_txt .faq_a {
  font-size: 26px;
  color: #822921;
  margin-right: 10px;
}

.faq .faq_txt p {
  padding-left: 2em;
  text-indent: -2em;
}

.faq .faq_txt p:first-of-type {
  font-weight: 600;
  margin-bottom: 7px;
}

.faq .left, .faq .right {
  width: 50%;
  margin-bottom: 50px;
}

.faq .left {
  margin-right: 15px;
}

.faq .right {
  margin-left: 15px;
}

.faq .left .head, .faq .right .head {
  display: inline-block;
  background: #214981;
  color: #fff;
  padding: 10px 20px;
  margin: 20px 0;
}

.faq .half_wrap ul {
  list-style: none;
  padding: 0 30px 20px;
  margin-bottom: 0;
}

.faq .half_wrap ul li {
  padding: 7px 0;
}

.faq .left ul li > a {
  text-decoration: underline;
  color: #214981;
}

@media(max-width : 768px) {
  .faq .left, .faq .right {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
}

@media(max-width : 575px) {
  .faq {
    padding: 50px 0;
  }
  .faq .contents {
    padding: 15px;
    margin-bottom: 30px;
  }
  .faq .contents:last-of-type {
    margin-bottom: 0;
  }
  .faq .contents .caption {
    font-size: 20px;
    padding-left: 15px;
    margin-bottom: 20px;
  }
  .faq .b_res {
    flex-direction: column;
    justify-content: center;
  }
  .faq .contact_tel {
    margin-left: 0;
    margin-top: 20px;
    padding: 20px;
  }
  .faq .contact_tel p, .faq .contact_tel a {
    font-size: 20px;
  }
  .faq .faq_txt .faq_q {
    font-size: 21px;
  }
  .faq .faq_txt .faq_a {
    font-size: 23px;
  }
  .faq .half_wrap ul {
    padding: 0 20px 20px;
  }
}

/*--------------------------------------------------------------
  Partner
--------------------------------------------------------------*/
.partner {
  padding-top: 100px;
}

.partner .heading p.bigTxt {
  font-family: sans-serif;
}

.partner .heading p.bigTxt img {
  height: 50px;
}

.partner .container {
  max-width: 1200px;
}

.partner .bg-white {
  padding: 40px 20px;
}

.partner .card {
  max-width: 250px;
  margin: auto;
  margin-bottom: 50px;
}

.partner .card-img {
  overflow: hidden;
}

.partner .card-img img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  transition-duration: 0.5s;
}

.partner a.card:hover .card-img img {
  transform: scale(1.2);
  transition-duration: 0.5s;
}

.partner .card-body {
  padding: 20px 10px;
}

.partner .card-body img {
  max-height: 33px;
}

.partner .half_wrap__1 {
  padding-top: 250px;
  margin-bottom: 100px;
}

.partner .half_wrap__1 .left, .partner .half_wrap__1 .right {
  position: relative;
  max-width: 500px;
  width: 100%;
}

.partner .half_wrap__1 .left {
  margin-right: 30px;
}

.partner .half_wrap__1 .right {
  margin-left: 30px;
}

.partner .left .wrap_txt, .partner .right .wrap_txt {
  background: #fff;
  padding: 45px 25px 25px 25px;
  height: 100%;
  -moz-box-shadow: 0px 4px 10px 1px rgb(0, 0, 0, .25);
  -webkit-box-shadow: 0px 4px 10px 1px rgb(0 0 0 / 25%);
  box-shadow: 0px 4px 10px 1px rgb(0 0 0 / 25%);
}

.partner .wrap_txt p {
  font-size: 16px;
}

.partner .wrap_txt p:first-of-type {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.partner .half_wrap__1 img {
  position: absolute;
  z-index: 2;
  top: -150px;
  left: 20px;
}

.partner .contents {
  background: #fff;
  padding: 40px;
  margin-top: 50px;
  -moz-box-shadow: 0px 4px 10px 1px rgb(0, 0, 0, .25);
  -webkit-box-shadow: 0px 4px 10px 1px rgb(0 0 0 / 25%);
  box-shadow: 0px 4px 10px 1px rgb(0 0 0 / 25%);
}

.partner .contents p {
  font-size: 16px;
  letter-spacing: .42px;
  margin-bottom: 20px;
}

.partner .contents p:last-of-type {
  margin-bottom: 0;
}

@media(max-width : 768px) {
  .partner .half_wrap__1 {
    display: flex;
  }
  .partner .half_wrap__1 .left {
    margin-right: 15px;
  }
  .partner .half_wrap__1 .right {
    margin-left: 15px;
  }
}

@media(max-width : 575px) {
  .partner {
    padding-top: 50px;
  }
  .partner .bg-white {
    padding: 30px 10px;
    margin-left: 5px;
    margin-right: 5px;
  }
  .partner .card {
    margin-bottom: 30px;
    max-width: 150px;
  }
  .partner .half_wrap__1 {
    justify-content: center;
    padding-top: 200px;
    margin-bottom: 60px;
  }
  .partner .card-img img {
    width: 150px;
    height: 150px;
  }
  .partner .contents {
    padding: 20px;
  }
  .partner .contents p {
    font-size: 15px;
  }
  .partner .left .wrap_txt, .partner .right .wrap_txt {
    padding: 40px 20px 20px 20px;
  }
  .partner .wrap_txt p {
    font-size: 15px;
    line-height: 24px;
  }
}

@media(max-width : 375px) {
  .partner .half_wrap__1 .left {
    margin-right: 5px;
  }
  .partner .half_wrap__1 .right {
    margin-left: 5px;
  }
  .partner .half_wrap__1 img {
    left: 15px;
  }
}

/*--------------------------------------------------------------
  Seminar
--------------------------------------------------------------*/
.seminar {
  padding-top: 100px;
}

.seminar .container {
  max-width: 1200px;
}

.seminar .contents {
  background: #fff;
  padding: 40px;
  margin-top: 50px;
}

.seminar .contents .head {
  font-size: 24px;
  border-left: 2px solid #2b2b2b;
  padding-left: 30px;
  margin-bottom: 30px;
}

.seminar .contents ul li {
  padding: 5px 0;
  font-size: 15px;
}

@media(max-width : 768px) {
.seminar .contents ul {
  padding-left: 25px;
  }
}

@media(max-width : 575px) {
  .seminar {
    padding-top: 80px;
  }
  .seminar .contents {
    padding: 20px;
    margin-top: 30px;
  }
  .seminar .contents .head {
    font-size: 21px;
    padding-left: 15px;
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
  Privacy
--------------------------------------------------------------*/
.privacy {
  padding: 100px 0;
}

.privacy .contents {
  background: #fff;
  padding: 30px;
}

.privacy .contents .head {
  font-size: 28px;
  font-family: serif;
  font-weight: 600;
  margin: auto;
  margin-bottom: 30px;
}

.privacy .contents ol {
  padding-left: 20px;
}

.privacy .contents ol li {
  margin-bottom: 20px;
}

@media(max-width : 575px) {
  .privacy {
    padding: 80px 0;
  }
  .privacy .contents {
    padding: 15px;
  }
  .privacy .contents .head {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .privacy .contents ol li {
    font-size: 15px;
    line-height: 25px;
  }
}

/*--------------------------------------------------------------
  RSS Block
--------------------------------------------------------------*/
#rss h2 span {
  display: block;
}

@media(max-width : 768px) {
  #rss h2 span {
    display: initial;
  }
}

/*--------------------------------------------------------------
  Popup Modal
--------------------------------------------------------------*/
.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
}

.modal .modal__bg {
  background: rgba(0, 0, 0, 0.7);
  height: 100vh;
  position: absolute;
  width: 100%;
}

.modal .modal__content {
  background: #fff;
  left: 50%;
  padding: 40px;
  position: absolute;
  top: 40%;
  transform: translate(-50%,-50%);
  max-width: 880px;
  width: 100%;
}

.modal .modal__content .m_head {
  font-size: 20px;
  color: #214981;
  margin-bottom: 20px;
  text-align: center;
}

.modal .modal__content p {
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 10px;
}

.modal .modal__content .b_res {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
}

.modal .modal__content .m_btn {
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  padding: 0;
  max-width: 220px;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.modal .modal__content .b_yes {
  background: #2F60A3;
  color: #fff;
}

.modal .modal__content .b_no {
  background: #efefef;
  border: 1px solid #c0c0c0;
}

@media(max-width : 991px) {
  .modal .modal__content {
    padding: 20px;
    max-width: initial;
    width: 90%;
  }
}

@media(max-width : 575px) {
  .modal .modal__content .m_head {
    font-size: 18px;
  }
  .modal .modal__content p {
    font-size: 15px;
  }
  .modal .modal__content .b_res {
    margin-top: 30px;
}
  .modal .modal__content .m_btn {
    font-size: 15px;
    line-height: 25px;
  }
  .modal .modal__content .b_yes {
    margin-right: 5px;
  }
  .modal .modal__content .b_no {
    margin-left: 5px;
  }
}

/*--------------------------------------------------------------
 診療報酬改定2022
--------------------------------------------------------------*/

#rmf2022{
	padding-top: 128px;
	font-family: yu-gothic-pr6n, sans-serif;
	font-weight: 400;
	font-style: normal;
}
#rmf2022 h2{
	font-size: 48px;
	color: #1D1D1D;
}
#rmf2022 h2 b{
	font-size: 30px;
	color: #1D1D1D;
}

#rmf2022 h3{
	font-size: 30px;
	color: #1D1D1D;
	border-left: none;
	padding: 0;
}
#rmf2022 h3 b{
	font-size: 20px;
	color: #1D1D1D;
}
#rmf2022 h4{
	font-size: 25px;
	color: #1D1D1D;
}
#rmf2022 h4 b{
	font-size: 30px;
	color: #1D1D1D;
}
#rmf2022 h5{
	font-size: 25px;
	color: #1D1D1D;
}

#rmf2022 p{
	font-size: 20px;
	color: #1D1D1D;
}
#rmf2022 b{
	font-family: source-han-sans-cjk-ja,sans-serif;
    font-weight: 700;
    font-style: normal;
}
#rmf2022 ul{
	padding:0;
	margin:0;
}
#rmf2022 li{
	font-size: 18px;
	color: #1D1D1D;
	padding: 0;
	margin: 0;
	list-style:none;
}
#rmf2022 th{
	font-size: 18px;
}
#rmf2022 td{
	font-size: 18px;
}
#rmf2022 .small{
	font-size: 90%;
}
#rmf2022 a{
  word-break: break-all;
}

@media(max-width : 900px) {
	#rmf2022 h2{
		font-size: 30px;
	}
	#rmf2022 h2 b{
		font-size: 25px;
	}

	#rmf2022 h3{
		font-size: 25px;
	}
	#rmf2022 h3 b{
		font-size: 20px;
	}
	#rmf2022 h4{
		font-size: 20px;
	}
	#rmf2022 h4 b{
		font-size: 24px;
	}
	#rmf2022 h5{
		font-size: 20px;
	}
	#rmf2022 p{
		font-size: 20px;
	}
	#rmf2022 li{
		font-size: 18px;
	}


}
@media(max-width : 768px) {
	#rmf2022 h2{
		font-size: 22px;
	}
	#rmf2022 h2 b{
		font-size: 16px;
	}

	#rmf2022 h3{
		font-size: 18px;
	}
	#rmf2022 h3 b{
		font-size: 13px;
	}
	#rmf2022 h4{
		font-size: 15px;
	}
	#rmf2022 h4 b{
		font-size: 18px;
	}
	#rmf2022 h5{
		font-size: 15px;
	}
	#rmf2022 p{
		font-size: 15px;
	}
	#rmf2022 li{
		font-size: 15px;
	}
	#rmf2022 th{
		font-size: 15px;
	}
	#rmf2022 td{
		font-size: 15px;
	}

}

#rmf2022 .kv{
	background:  center / cover no-repeat url("https://www.moraine.co.jp/moraine_wp/wp-content/themes/moraine/images/rmf2022/rmf2022KV.png");
}
#rmf2022 .kv h2{
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 0 130px;
	font-family: a-otf-ryumin-pr6n, serif;
	font-style: normal;
	font-weight: 300;
	color: #ffffff;
	text-align: center;
	letter-spacing:0.38em;
	line-height: 200%;
}
#rmf2022 .kv h2 b{
	color: #ffffff;
}
@media(max-width : 768px) {
	#rmf2022 .kv h2{
		padding: 40px 0 75px;
	}
}

#rmf2022 .nemu{
	max-width: 1200px;
	margin: 0 auto;
	padding:50px 2%;

}
#rmf2022 .nemu .tab{
	display: flex;

}
#rmf2022 .nemu .tab li{
	border-top: #D3D3D3 3px solid;
	border-left: #D3D3D3 3px solid;
	border-right: #D3D3D3 3px solid;
	border-radius: 10px 10px 0px 0px ;
	text-align: center;
	padding:2%;
	background: #D3D3D3;
	color: #ffffff;
}
#rmf2022 .nemu .tab li h4{
	color: #ffffff;
}
#rmf2022 .nemu .tab li.active{
	background:  #ffffff;
}
#rmf2022 .nemu .tab li.active h4{
	color: #1D1D1D;
}
#rmf2022 .nemu .tab .tab_left{
	width: 38%;
}
#rmf2022 .nemu .tab .tab_right{
	width: 62%;
}
#rmf2022 .nemu .on_offBox{
	display: none;
}
#rmf2022 .nemu .on_offBox.show{
	display: block;
	border-bottom: #D3D3D3 3px solid;
	border-left: #D3D3D3 3px solid;
	border-right: #D3D3D3 3px solid;
	border-radius: 0px 0px 10px 10px ;
	padding: 4% 5% 5% 5%;

}
#rmf2022 .nemu .on_offBox li{
	padding-bottom: 2px;
	border-bottom: #D3D3D3 2px dotted ;
	margin-bottom: 22px;

}
#rmf2022 .nemu .on_offBox li::before {
  position: relative;
  top: -2px;
  left: -5px;
  display: inline-block;
  width: 10px;
  height: 10px;
  content: '';
  border-radius: 100%;
  background:#00B2D0;
}
#rmf2022 .nemu .on_offBox p{
	font-size: 18px;
	text-align: end;
}
#rmf2022 .nemu .on_offBox p a{
	padding: 0 2px 2px 2px;
	border-bottom: #D3D3D3 1px solid;
}

#rmf2022 .attention{
	max-width: 1200px;
    margin: -100px auto 120px;
    padding: 1.5% 3%;
}

#rmf2022_gaiyou .top{
	background:  center / cover no-repeat url("https://www.moraine.co.jp/moraine_wp/wp-content/themes/moraine/images/rmf2022/gaiyou2022.png");
}

#rmf2022 .columList h3{
	max-width: 1200px;
	margin: 0 auto 120px;
	padding: 30px 0 40px;
	font-family: a-otf-ryumin-pr6n, serif;
	font-style: normal;
	font-weight: 300;
	color: #ffffff;
	text-align: center;
	letter-spacing:0.38em;
	line-height: 200%;

}
#rmf2022 .columList h3 b{
	color: #ffffff;
}
#rmf2022 .columList .list{
	padding: 0 5%  0 2%;
	}
#rmf2022 .columList .colum{
	max-width: 1200px;
	margin: 0 auto 120px;
	padding: 1.5% 3%;
	border-radius: 10px;
}

#rmf2022 .columList .colum b{
	font-family: source-han-sans-cjk-ja, sans-serif;
	font-weight: 700;
	font-style: normal;
	}
#rmf2022 .columList .colum a{
	display: flex;
	align-items:center;
}
#rmf2022 .columList .colum .img{
	width: 40%;
	border-radius: 10px;
}
#rmf2022 .columList .colum .img img{
	border-radius: 10px;
}
#rmf2022 .columList .colum h4{
	width: 60%;
	padding: 2% 2% 2% 4%;
	line-height: 200%;
}

#rmf2022_gaiyou .colum{
	border: #9BB8D9 solid 2px;
	box-shadow: 30px 30px 0 #C3CDD8;
}

#rmf2022_gigi .colum{
	border: #9ac2bf solid 2px;
	box-shadow: 30px 30px 0 #9BD6D0;
}

#rmf2022_gigi .top{
	background:  center / cover no-repeat url("https://www.moraine.co.jp/moraine_wp/wp-content/themes/moraine/images/rmf2022/gigi2022.png");
}
@media(max-width : 768px) {
	#rmf2022 .columList h3{
	margin: 0 auto 60px;
	}
	#rmf2022 .columList .colum{
	margin: 0 auto 60px;
	}
	#rmf2022_gaiyou .colum{
		box-shadow: 10px 10px 0 #C3CDD8;
	}
	#rmf2022_gigi .colum{
		box-shadow: 10px 10px 0 #9BD6D0;
	}
	#rmf2022 .attention{
		margin: -40px auto 60px;
	}

}
#rmf2022.contents{
	padding-top:128px;
}
#rmf2022.contents section{
	max-width: 1200px;
	padding:0 2% 0;
	margin:0 auto;
}
#rmf2022.contents .title{
	position: relative;
	padding:0 2% 0 0;

}
#rmf2022.contents .title .hero{
	width: 66%;
}
#rmf2022.contents .title h2{
	position: absolute;
	right: 0;
	top: 50%;
	font-size: 30px;
	line-height: 150%;
	width: 60%;
	padding: 2% ;
	background: #ffff;
	z-index: 10;
}

#rmf2022.contents .text{
	margin: 180px auto 0px;
	position: relative;
}
#rmf2022.contents .text .left_text{
	width: 75%;
}

#rmf2022.contents .text .left_text h3 {
	max-width: 500px;
	display: inline-block;
	padding: 0 2% 7% 0;
	margin: -1.5% 0 0 0;
	background: #ffff;
	line-height: 160%;
	font-family: source-han-sans-cjk-ja, sans-serif;
	font-weight: 700;
	font-style: normal;
}
#rmf2022.contents .text .left_text h4{
	font-family: source-han-sans-cjk-ja, sans-serif;
	font-weight: 700;
	font-style: normal;
}
#rmf2022.contents .text .left_text h5{
	font-family: source-han-sans-cjk-ja, sans-serif;
	font-weight: 700;
	font-style: normal;
}
#rmf2022.contents .text .left_text a:hover{
	opacity: 0.5;
}
#rmf2022.contents .text .left_text .mailText{
	padding: 3% 3% 0 0;
	background: #ffff;
}
#rmf2022.contents .text .left_text .mailText p{
	line-height: 180%;
	margin-top: 20px;
	padding-bottom: 70px;
}
#rmf2022.contents .text .left_text .mailText ul{
	line-height: 180%;
	margin-top: 30px;
	padding-bottom: 30px;
}
#rmf2022.contents .text .left_text .mailText ul li{
	line-height: 180%;
	padding-bottom: 30px;
}
#rmf2022.contents .text .left_text .mailText .list{
	padding-left: 20px;
}
#rmf2022.contents .text .left_text .mailText .list li{
    position: relative;
    padding-left: 20px;
  }
#rmf2022.contents .text .left_text .mailText .list li:before {
    content: "";
    position: absolute;
    top: 0.35em;
    left: 0;
    -webkit-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    transform: rotate(50deg);
    width: 7px;
    height: 15px;
    border-right: 3px solid #00B2D0;
    border-bottom: 3px solid #00B2D0;
  }
#rmf2022.contents .text .left_text .origin b{
	color: #00B2D0;
	border-bottom: #00B2D0 solid 1px;
}

#rmf2022.contents .text .left_text .origin .nomal{
	color: #1D1D1D;
	border-bottom: #1D1D1D solid 1px;
}
#rmf2022.contents .kaitei p{
	padding-left: 22px;
}
#rmf2022.contents .kaitei .kaitei_new{
	background:  top / contain no-repeat url("https://www.moraine.co.jp/moraine_wp/wp-content/themes/moraine/images/rmf2022/gaiyou03_new.jpg");
}
#rmf2022.contents .kaitei .kaitei_up{
	background:  top / contain no-repeat url("https://www.moraine.co.jp/moraine_wp/wp-content/themes/moraine/images/rmf2022/gaiyou03_up.jpg");
}
#rmf2022.contents .text .right_img{
	width: 40%;
	position: absolute;
	right: 0;
	top: 0;
	z-index: -10;
}

#rmf2022.contents .table{
	margin: 180px auto 0px;
	border-collapse: collapse;
	vertical-align: middle;
}
#rmf2022.contents .table .lineA{
	width: 10%;
}
#rmf2022.contents .table .lineB{
	width: 25%;
}
#rmf2022.contents .table .lineC{
	width: 65%;
}
#rmf2022.contents .table th{
	color: #ffff;
	text-align: center;
}
#rmf2022.contents .table th.lineA{
	background: #00B2D0;
	border-top: #00B2D0 solid 1px;
	border-right:#ffff solid 1px;
	border-bottom: #00B2D0 solid 1px;
	border-left: #00B2D0 solid 1px;
}
#rmf2022.contents .table th.lineB{
	background: #00B2D0;
	border-top: #00B2D0 solid 1px;
	border-right:#ffff solid 1px;
	border-bottom: #00B2D0 solid 1px;
	border-left: #00B2D0 solid 1px;
}
#rmf2022.contents .table th.lineC{
	background: #00B2D0;
	border-top: #00B2D0 solid 1px;
	border-right: #00B2D0 solid 1px;
	border-bottom: #00B2D0 solid 1px;
	border-left:  #ffff solid 1px;
}
#rmf2022.contents .table td{
	border-right: #00B2D0 solid 1px;
	border-bottom: #00B2D0 solid 1px;
	vertical-align: middle;
	padding: 3.5%;
}
#rmf2022.contents .table td.lineA{
	text-align: center;
	background: #EAEAEA;
	border-right:#ffff solid 1px;
	border-bottom:  #ffff solid 1px;
	border-left: #EAEAEA solid 1px;
	border-top: #ffff solid 1px;
	padding: 1%;
}
#rmf2022.contents .table_gaiyou{
	margin: 180px auto 0px;
	border-collapse: collapse;
	vertical-align: middle;
}
#rmf2022.contents .table_gaiyou th{
	background: #00B2D0;
	padding: 2%;
	color: #ffff;
	text-align: center;
	line-height: 170%;
}
#rmf2022.contents .table_gaiyou th.lineA{
	border-top: #00B2D0 solid 1px;
	border-right:#ffff solid 1px;
	border-bottom: #00B2D0 solid 1px;
	border-left: #00B2D0 solid 1px;
}
#rmf2022.contents .table_gaiyou th.lineB{
	border-top: #00B2D0 solid 1px;
	border-right:#ffff solid 1px;
	border-bottom: #00B2D0 solid 1px;
	border-left: #00B2D0 solid 1px;
}
#rmf2022.contents .table_gaiyou th.lineC{
	border-top: #00B2D0 solid 1px;
	border-right: #00B2D0 solid 1px;
	border-bottom: #00B2D0 solid 1px;
	border-left:  #ffff solid 1px;
}
#rmf2022.contents .table_gaiyou td{
	border: 1px solid #707070;
	padding: 2.5%;
	line-height: 170%;
}
#rmf2022.contents .table_gaiyou td.lineA{
	width: 10%;
	padding: 1%;
}
#rmf2022.contents .table_gaiyou td.lineB{
	width: 25%;
}
#rmf2022.contents .table_gaiyou .center{
	text-align: center;
}
#rmf2022.contents .table_gaiyou .gray{
	background: #F8F8F8;
}
#rmf2022.contents .table_gaiyou.origin b{
	color: #00B2D0;
}
#rmf2022.contents .table_gaiyou.origin u{
	text-decoration: none;
	border-bottom: #00B2D0 solid 1.5px;
}
#rmf2022.contents .annotation{
	text-align: end;
	font-size: 14px;
}

@media(max-width : 768px) {

	#rmf2022.contents .title h2 {
		font-size: 22px;
		width: 70%;
	}
	#rmf2022.contents .text {
		margin-top: 120px;
	}
	#rmf2022.contents .text .left_text{
		width: 90%;
	}
}
#rmf2022 .pagenation{
	display: flex;
	justify-content: space-around;
	margin-top: 180px !important;
}
#rmf2022 .pagenation .colum{
	width :40%;
	padding: 2%;
	border: #c4c4c4 solid 2px;
}
#rmf2022 .pagenation .colum:hover{
	opacity: 0.5;
}
#rmf2022 .pagenation .next{
	 box-shadow: -15px 15px 0px #EAEAEA;
}
#rmf2022 .pagenation .before{
	 box-shadow: 15px 15px 0px #EAEAEA;
}
#rmf2022 .pagenation .colum p{
	text-align: center;
	color: #696969;
	padding-bottom: 20px;
	font-size: 25px;
}
#rmf2022 .pagenation .colum h4{
	color: #696969;
	font-size: 20px;
	line-height: 150%;
}
#rmf2022 .pagenav ul{
	display: flex;
	width: 100%;
	margin-top: 80px;
}
#rmf2022 .pagenav a{
	display: block;
	width: 100%;
	margin: 0 4px 80px;
	border-radius: 10px;
}
#rmf2022 .pagenav a:hover{
	opacity: 0.5;
}
#rmf2022 .pagenav a li{
	padding: 3% 2%;
	text-align: center;
	color: #ffff;
	border-radius: 5px;
}

#rmf2022 .pagenav .linkTOP{
	background: #00B2D0;
}
#rmf2022 .pagenav .linkGai{
	background: #337BCA;
}
#rmf2022 .pagenav .linkGigi{
	background: #58BAAF;
}

@media(max-width : 768px) {

	#rmf2022 .pagenation .colum p{
		font-size: 18px;
	}
	#rmf2022 .pagenation .colum h4{
		font-size: 15px;
	}
	#rmf2022 .pagenav ul{
		display: block;
		padding-bottom: 50px;
	}
	#rmf2022 .pagenav a{
		display: block;
		width: 100%;
		margin: 0 0 4px;
		border-radius:0;
	}

	#rmf2022 .pagenav a li{
		border-radius:0;
		padding: 1% 2%;
	}

}

/* ==== 田畑くん作成 ==== */
#rmf2022.QA {
    max-width: 1200px;
    margin: 0 auto;
}

#rmf2022.QA .title img {
    width: 67.5%;
}

#rmf2022.QA .title {
	position: relative;
}

#rmf2022.QA .title .title-text {
	position: absolute;
	top: 55%;
	right: 0%;
	background-color: white;
	padding:2%;
}

#rmf2022.QA .title .title-text h2{
	font-size: 30px;
	font-weight: 100;
	margin: 0;
	line-height: 150%;
}

#rmf2022.QA .title .title-text h2 b{
	font-weight: bold;
}

#rmf2022.QA .text{
	margin: 100px 2% 100px;
}
#rmf2022.QA .Q-A{
	padding: 0 3%;
}
#rmf2022.QA .Q-A .a-box{
	position: relative;
	padding:  60px 0;
}
#rmf2022.QA .Q-A .a-box .images {
	position: absolute;
	z-index: -10;
	margin-top: -2.5%;
	width: 100%;
}
#rmf2022.QA .Q-A .a-box .images img {
	width: 100%;
}
#rmf2022.QA .Q-A .a-box img {
	width: 100%;
}
#rmf2022.QA .Q-A .a-box .textbox{
	margin-left: 12%;
	background-color: white;
	padding: 2% 0 0 4%;
	width: 88%;
}
#rmf2022.QA .refIMG{
	max-width: 830px;
	margin: 0 auto;
	padding:  30px 0 80px;
}
#rmf2022.QA .refIMG img{
	border-radius: 10px;
}
#rmf2022.QA .reference {
	border: 20px solid;
	border-radius: 10px;
	border-color: rgb(213, 236, 228);
	margin-bottom: 80px;
}
#rmf2022.QA .reference-text {
	padding: 3%;
}
#rmf2022.QA .line {
	border-top: 1px dashed #000;
}
#rmf2022.QA .bar {
	width: 40%;
	border: 0;
	border-top: 4px dashed #cccccc;
	padding: 40px 0 ;
}
#rmf2022.QA ul.list {
	padding:4% 0 4% 1%;
}
#rmf2022.QA ul.asterisk li{
	padding-bottom: 2%;
  padding-left: 0.5em;
  text-indent: -0.5em;
}
#rmf2022.QA ul.list li{
	padding-bottom: 2%;
  padding-left: 1.3em;
  text-indent: -1.3em;
}
#rmf2022.QA ul.jirei li{
	padding-bottom: 2%;
  padding-left: 4em;
  text-indent: -4em;
}
#rmf2022.QA .pagenav ul li{
	display: block;
}

@media(max-width : 768px) {
	#rmf2022.QA .title .title-text h2{
	font-size: 16px;
	}
	#rmf2022.QA .Q-A .a-box .images {
		margin-top: -4.5%;
	}
	#rmf2022.QA .Q-A .a-box .textbox {
	    margin-left: 6%;
	    width: 94%;
	}
	#rmf2022.QA .reference {
    border: 10px solid #d5ece4;
	}
	#rmf2022.QA .reference-text{
		padding :7%;
	}
}
#rmf2022.QA .reference-text table{
  margin: 5% 1.5%;
}
#rmf2022.QA .reference-text table p{
  font-size: 90%;
}
#rmf2022.QA .reference-text table th{
  padding: 1.5% ;
  border: 1px solid #707070;
  text-align: center;
}
#rmf2022.QA .reference-text table td{
  padding: 1.5% ;
  border: 1px solid #707070;
}
#rmf2022.QA .reference-text .gigi23 .a{
  width: 15%;
}
#rmf2022.QA .reference-text .gigi23 .b{
  width: 60%;
}
#rmf2022.QA .reference-text .gigi23 .c{
  width: 25%;
}


/* ===============
dental (田畑くん作成)
=================*/

/* title */
#rmf2022.dental .title {
  max-width: 1200px;
	margin: 0 auto;
  position: relative;
}
#rmf2022.dental .hero {
  width: 66%;
  margin-bottom: 60px;
}
#rmf2022.dental .title h2 {
  font-weight: 100;
  position: absolute;
  right: 0;
  top: 50%;
  font-size: 30px;
  line-height: 150%;
  width: 60%;
  padding: 2% ;
  background: #ffff;
  z-index: 10;
}

/* contents */
#rmf2022.dental .contents {
    width: 70%;
    margin: 0 auto;
    margin-bottom: 100px;
    max-width: 800px;
}
#rmf2022.dental .contents-text p{
    text-align: center;
}
#rmf2022.dental .contents p {
    padding-bottom: 10px;
    color: #ccc;
}
#rmf2022.dental .contents li {
    padding: 2% 5% 2% 10%;
    background: #00B2D0;
    border-bottom: #fff solid 2px;
    text-indent: -1.1em;
}
#rmf2022.dental .contents li a{
  color: #fff;
}
#rmf2022.dental .contents li:first-child {
    border-radius: 10px 10px 0 0 ;
}
#rmf2022.dental .contents li:last-child {
    border-radius: 0 0 10px 10px;
}

/* text */
#rmf2022.dental .text {
  max-width: 1200px;
	padding: 0 2% 0;
  margin: 180px auto 0;
  position: relative;
}
#rmf2022.dental .left_text {
    width: 75%;
}
#rmf2022.dental h3 {
  max-width: 500px;
	display: inline-block;
	padding: 0 2% 7% 0;
	margin: -1.5% 0 0 0;
	background: #ffff;
	line-height: 160%;
	font-family: source-han-sans-cjk-ja, sans-serif;
	font-weight: 700;
	font-style: normal;
  font-size: 30px;
}
#rmf2022.dental .text .left_text .mailText {
	padding: 3% 3% 0 0;
	background: #ffff;
}
#rmf2022.dental .text .left_text .mailText p{
	line-height: 180%;
	margin-top: 20px;
	padding-bottom: 70px;
  font-size: 20px;
}
#rmf2022.dental .text .right_img{
	width: 40%;
	position: absolute;
	right: 0;
	top: 0;
	z-index: -10;
}

/* guide-line */
#rmf2022.dental .text .left_text .mailText p.c-text {
    padding-bottom: 0;
}
#rmf2022.dental .text .left_text .mailText p.s-title {
    padding-bottom: 0;
}
#rmf2022.dental .cheak,
#rmf2022.dental .line .line-cheak  {
    padding-left: 30px;
    padding-bottom: 30px;
}
#rmf2022.dental .cheak p {
    position: relative;
    color: #00B2D0;
}
#rmf2022.dental .cheak p::after {
    content: '';
    display: block;
    position: absolute;
    top: .8em;
    left: -1.3em;
    width: 10px;
    height: 5px;
    border-left: 3px solid #00B2D0;
    border-bottom: 3px solid #00B2D0;
    transform: rotate(-45deg);
}
#rmf2022.dental .line-cheak li {
    list-style: none;
    position: relative;
    color: #00B2D0;
    padding:2% 0 0 0;
}
#rmf2022.dental .line-cheak li::after {
    content: '';
    display: block;
    position: absolute;
    top: .9em;
    left: -1.3em;
    width: 10px;
    height: 5px;
    border-left: 3px solid #00B2D0;
    border-bottom: 3px solid #00B2D0;
    transform: rotate(-45deg);
}

/* table */
#rmf2022.dental .table {
  max-width: 1200px;
	padding: 0 2% 0;
	margin: 30px auto 0;
}
#rmf2022.dental .text .left_text .mailText p.black {
    color: #000;
    padding-bottom: 0;
}
#rmf2022.dental .text .left_text p.annotation,
#rmf2022.dental .table-sec .annotation {
  max-width: 1200px;
	padding: 2% 3% 0;
	margin: 0 auto;
  font-size: 90%;
}

/* reference */
#rmf2022.dental .referens {
  max-width: 1200px;
  width: 98%;
	margin: 5% auto 100px;
  border: 20px solid #d5ece4;
  border-radius: 10px;
}
#rmf2022.dental .referens-text p{
  padding-bottom: 2%;
}
#rmf2022.dental .referens-text {
    padding: 3%;
}

#rmf2022.dental .referens-text ul {
    padding-left: 2.1em;
    text-indent: -1.1em;
}

/* QA */

#rmf2022.dental .qa {
    background: #fff;
    padding: 4% 4% 4% 0;
}
#rmf2022.dental .q_img {
     background-image: url(https://www.moraine.co.jp/moraine_wp/wp-content/themes/moraine/images/rmf2022/gigi_q.jpg);
     background-repeat: no-repeat;
     background-size: cover;
     height: 65px;
}
#rmf2022.dental .a_img {
     background-image: url(https://www.moraine.co.jp/moraine_wp/wp-content/themes/moraine/images/rmf2022/gigi_a.jpg);
     background-repeat: no-repeat;
     background-size: cover;
     height: 65px;
}
#rmf2022.dental .qa_text {
    margin: -35px 0 0 13.3%;
    background: #fff;
    padding: 10px 4% ;
    width: 86.7%;
    z-index: 10;
}
#rmf2022.dental .qa_text p{
  background: #fffF;

}
#rmf2022.dental .text.gigi .left_text .mailText{
  padding-bottom: 150px;
}

/* mobile-size */
@media(max-width : 768px) {
    #rmf2022.dental .title h2{
    font-size: 16px;
  }
    #rmf2022.dental h3 {
		font-size: 18px;
	}

    #rmf2022.dental .contents .contents-list ul li {
      font-size: 15px;
    }
    #rmf2022.dental .text .left_text .mailText p {
        font-size: 15px;
    }

	#rmf2022.dental .title h2 {
		/*font-size: 22px;*/
		width: 70%;
	}
	#rmf2022.dental .text {
		margin-top: 120px;
	}
  #rmf2022.dental .referens {
  border: 10px solid #d5ece4;
  }
	#rmf2022.dental .text .left_text{
		width: 90%;
	}
  #rmf2022.dental .text.gigi .left_text .mailText{
  padding-bottom: 70px;
  }
}

body {
  font-family: 'Inter', sans-serif;
}

.wrap {
  margin: 10%;
  margin-top: 160px;
  @media (max-width: 575px) {
    margin-top: 120px !important;
  }
}

.wrap-user-form {
  width: 50%;
  margin: 160px auto;
  padding: 60px;
  background-color: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #f5f5f5;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);

  .page-title {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
    color: #474C59;
  }
  label {
      display: block;
      margin: 10px 0 5px;
      font-size: 14px;
      font-weight: 600;
      color: #474C59;
  }

  input, select {
      width: 100%;
      padding: 12px;
      margin-bottom: 18px;
      border-radius: 8px;
      border: 1px solid #C0C0C0;
      background-color: #F3F6FF;
      font-size: 14px;
  }

  input::placeholder {
      color: #C0C0C0;
      font-size: 12px;
      opacity: 1;
  }

  button {
      padding: 10px 20px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 12px;
      font-weight: 600;
  }

  .btn-group {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    .custom-outline-button {
      margin-right: 20px;
      display: inline-block;
      color: #00B2D0;
      background-color: #fff;
      border: 1px solid #00B2D0;
      border-radius: 8px;
      padding: 10px;
      text-decoration: none;
      text-align: center;
      min-width: 150px;
      cursor: pointer;
    }
    .custom-outline-button:hover {
      background-color: #00B2D0;
      border: 1px solid #ccc;
      color: #fff;
    }
    .custom-button {
      display: inline-block;
      color: #fff;
      background-color: #00B2D0;
      border: 0px solid #ccc;
      border-radius: 8px;
      padding: 10px;
      text-decoration: none;
      text-align: center;
      min-width: 150px;
      cursor: pointer;
    }
    .custom-button:hover {
      background-color: #10cae9;
      color: #fff;
    }
  }

  button:hover {
      background-color: #007a99;
  }

  .error-message {
      background-color: #ffdddd;
      padding: 10px;
      margin-bottom: 15px;
      border-left: 5px solid #f44336;
  }

  .password-container {
    position: relative;
  }

  .toggle-password {
    position: absolute;
    top: 40%;
    right: 2%;
    transform: translateY(-50%);
    cursor: pointer;
  }

  .toggle-password i {
    font-size: 16px;
    color: #CCCCCC;
  }

  
}
@media (max-width: 1200px) {
    .wrap-user-form {
      width: 70%;
    }
  }
  @media (max-width: 768px) {
    .wrap-user-form {
      width: 90%;
      margin: 120px auto;
    }
    input, select {
      width: 100%;
    }
    .toggle-password {
      right: 2%;
    }
  }
  @media (max-width: 400px) {
    .wrap-user-form {
      padding: 40px;
      .btn-group {
        flex-direction: column-reverse;
        .custom-outline-button {
          margin-top: 20px;
          margin-right: unset;
        }
      }
    }
    
  }
  button:focus {
    outline: 1px dotted;
  }
  .custom-outline-button {
    display: inline-block;
    color: #00B2D0;
    background-color: #fff;
    border: 1px solid #00B2D0;
    border-radius: 8px;
    padding: 9px;
    text-decoration: none;
    text-align: center;
    min-width: 150px;
    cursor: pointer;
  }
  .custom-outline-button:hover {
    background-color: #00B2D0;
    border: 1px solid #ccc;
    color: #fff;
  }
  .custom-button {
    display: inline-block;
    color: #fff;
    background-color: #00B2D0;
    border: 0px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    text-decoration: none;
    text-align: center;
    min-width: 150px;
    cursor: pointer;
  }
  .custom-button:hover {
    background-color: #10cae9;
    color: #fff;
  }