@charset "UTF-8";
.Noto {
  font-family: 'Noto Serif JP', serif;
}

.page_pass_wrap {
    margin: 0 auto;
    max-width: 380px;
    padding: 50px 20px;
  }

  .page_pass_input {
    border: 1px solid #000;
    display: block;
    font-size: 16px;
    margin-top: 20px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
  }

  .page_pass_submit {
    background: #005FDD;
    box-shadow: 0 1px 2px rgba(0,0,0,.2);
    cursor: pointer;
    color: #fff;
    display: block;
    box-sizing: border-box;
    font-size: 1rem;
    margin: 20px auto;
    padding: 10px 0;
    width: 100%;
    -webkit-appearance: none;
  }

  .page_pass_submit:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
  }

/*/////////// login ////////////*/
#wpmem_login fieldset, #wpmem_reg fieldset {
  width: 100% !important;
}

#wpmem_login legend, #wpmem_reg legend {
  font-size: 114% !important;
  line-height: 1;
  font-weight: 0 !important;
  padding: 0px 0px 40px !important;
  margin-bottom: 10px;
  text-align: center !important;
  width: 100%;
}

.login__wrap {
  background: #F5F5F5;
  padding: 80px;
  margin: 60px 0px;
  box-sizing: border-box;
}

.login__wrap .register {
  border-top: 1px solid #707070;
  padding-top: 50px;
}

.login__wrap .register .btn {
  width: 80% !important;
  max-width: 300px !important;
  display: block;
  margin: 20px auto 0px !important;
  color: #FFF !important;
  border-radius: 5px !important;
  background: #007BFF !important;
  text-align: center !important;
  padding: 15px 0px 15px 0px !important;
  line-height: 1.0 !important;
  box-sizing: border-box;
  text-decoration: none;
  transition: .5s all;
  font-size: 104%;
  position: relative;
}

.div_text {
  width: 100% !important;
}

.button_div {
  width: 100% !important;
}

.button_div .buttons {
  width: 80% !important;
  max-width: 300px !important;
  display: block;
  margin: 20px auto 0px !important;
  color: #FFF !important;
  border-radius: 5px !important;
  background: #007BFF !important;
  text-align: center !important;
  padding: 15px 0px 15px 0px !important;
  line-height: 1.0 !important;
  box-sizing: border-box;
  text-decoration: none;
  transition: .5s all;
  font-size: 104%;
  position: relative;
}

/*/////////// base ////////////*/
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 100%;
  line-height: 1.2;
  color: #171515;
  background: #FFF none no-repeat 0 0 scroll;
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}

/*  アニメーションスタイル
-------------------------------------------*/
.bg-open-right {
  position: relative;
  z-index: 0;
}

.bg-open-right::after {
  content: "";
  background: #E2F8FD;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  transition: left 1s ease-in-out;
}

.bg-open-right.is-show::after {
  left: 100vw;
}

.bg-open-left {
  position: relative;
  z-index: 0;
}

.bg-open-left::after {
  content: "";
  background: #E2F8FD;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  transition: right 1s ease-in-out;
}

.bg-open-left.is-show::after {
  right: 100vw;
}

.slide-left {
  position: relative;
  left: 100vw;
  transition: left 860ms ease-in-out;
}

.slide-left.is-show {
  left: 0;
}

.slide-right {
  position: relative;
  right: 100vw;
  transition: right 860ms ease-in-out;
}

.slide-right.is-show {
  right: 0;
}

.slide-up {
  position: relative;
  top: 10%;
  opacity: 0;
  transition: top 860ms,opacity 1s;
}

.slide-up.is-show {
  top: 0;
  opacity: 1;
}

.yumincho {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}

.mincho {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}

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

.close {
  animation: anim 0.8s forwards;
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  pointer-events: none;
}

@keyframes anim {
  0% {
    height: 100vh;
  }
  100% {
    height: 0px;
  }
}

@keyframes anim_tate {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-50px);
    opacity: 0;
  }
}


.blog {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.blog .l {
  width: 20%;
}

.blog .l ul {
  margin-bottom: 30px;
}

.blog .l ul li {
  padding-left: 18px;
  margin-bottom: 10px;
  position: relative;
  text-align: left;
  border-bottom: 1px solid #CCC;
  padding-bottom: 10px;
  font-size: 110%;
  transition-duration: 0.5s;
  box-sizing: border-box;
}

.blog .l ul li:hover {
  opacity: 0.6;
}

.blog .l ul li a {
  color: #000;
  display: block;
}

.blog .l ul li:before {
  content: "\f105";
  font-family: FontAwesome;
  position: absolute;
  left: 0px;
  top: -2px;
  color: #0058CA;
  font-size: 110%;
}

.blog .l ul li:last-child {
  margin-bottom: 0px;
}

.blog .r {
  width: 77%;
}

.blog .r article {
  background: #f6f4ef;
  box-sizing: border-box;
  padding: 25px;
  margin-bottom: 25px;
  width: 100%;
  position: relative;
  transition: ease .2s;
}

.blog .r article:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.blog .r article:hover .sub_ttl {
  text-decoration: underline;
}

.blog .r article:hover:after {
  right: 10px;
}

.blog .r article .sub_ttl {
  font-weight: bold;
  font-size: 154%;
  margin-bottom: 15px;
}

.blog .r article .date {
  font-size: 84%;
  color: #AAA;
}

.blog .r article .cat {
  margin-bottom: 20px;
}

.blog .r article .cat ul {
  display: flex;
  flex-wrap: wrap;
}

.blog .r article .cat ul li {
  margin-right: 20px;
  padding: 5px 8px;
  border: 1px solid #005FDD;
  color: #005FDD;
  text-align: center;
}

.blog .r article .cat ul li:last-child {
  margin-right: 0px;
}

.blog .r article:after {
  content: "\f105";
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  right: 25px;
  color: #0058CA;
  font-size: 300%;
  transition: ease .2s;
}

.blog .r article a {
  display: block;
}

.content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.content .main {
  width: 100%;
}

.img_w100 {
  width: 100%;
}

.img_max100 {
  max-width: 100%;
}

.clearfix, .wrapper, .main_wrapper {
  *zoom: 1;
}

.clearfix:after, .wrapper:after, .main_wrapper:after {
  content: "";
  display: table;
  clear: both;
}

a {
  text-decoration: none;
  color: #000;
}

p {
  line-height: 1.6;
}

strong {
  font-weight: 700;
  font-size: 104%;
}

.fixed {
  position: fixed !important;
  z-index: 1000;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.5);
  width: 100%;
  left: 0px;
  background: white;
  top: 0px;
  box-sizing: border-box;
}

.second__fixed {
  position: fixed !important;
  z-index: 1000;
  width: 100%;
  left: 0px;
  top: 0px;
  background: #2b2d42;
  box-sizing: border-box;
}

.pt_20 {
  padding-top: 20px;
}

.mr_0 {
  margin-right: 0px !important;
}

.mt_10 {
  margin-top: 10px;
}

.mt_20 {
  margin-top: 20px;
}

.mt_30 {
  margin-top: 30px;
}

.mt_40 {
  margin-top: 40px;
}

.mt_60 {
  margin-top: 60px;
}

.mb_10 {
  margin-bottom: 10px;
}

.mb_20 {
  margin-bottom: 20px;
}

.mb_30 {
  margin-bottom: 30px;
}

.mb_40 {
  margin-bottom: 40px;
}

.mb_60 {
  margin-bottom: 60px;
}

strong {
  font-weight: 700;
}

sup {
  font-size: 54%;
}

.pc_none {
  display: none;
}

@keyframes vertical {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.pagetop_icon {
  position: fixed;
  right: 0;
  bottom: -50px;
  z-index: 2;
}

.center {
  text-align: center;
}

.align_right {
  text-align: right;
}

.align_right_name {
  text-align: right;
  font-size: 84%;
}

.align_left {
  text-align: left !important;
}

.map {
  width: 100%;
  height: 700px;
  margin-bottom: 30px;
}

.content_block {
  padding: 50px 0px 40px;
}

.sub__wrap {
  max-width: 960px;
  box-sizing: border-box;
  margin: 0px auto;
  width: 100%;
  padding: 0px 20px;
}

.small__wrap {
  max-width: 760px;
  box-sizing: border-box;
  margin: 0px auto;
  width: 100%;
  padding: 0px 20px;
}

.top__lead {
  text-align: center;
  line-height: 1.7;
  margin: 40px 0px;
  font-weight: bold;
}

.point {
  background: #f5f7fa;
  font-weight: bold;
  padding: 20px;
  box-sizing: border-box;
  line-height: 1.5;
}

.point .sub_ttl {
  font-size: 134%;
  color: #005FDD;
  margin-bottom: 10px;
}

.point .sub_ttl span {
  font-size: 60%;
}

.point a {
  text-decoration: underline;
}

.point_l .sub_ttl {
  background: #005FDD;
  padding: 20px;
  box-sizing: border-box;
  color: #FFF;
  font-size: 174%;
  text-align: center;
}

.point_l .sub_ttl span {
  font-size: 144%;
  font-weight: bold;
}

.point_l .box {
  webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.point_l .box .inner {
  box-sizing: border-box;
  padding: 30px;
}

.point_l .box .inner p {
  font-size: 108%;
}

.iframe {
  width: 100%;
  height: 400px;
}

.privacy_sc {
  width: 100%;
  height: 250px;
  overflow: scroll;
  margin-bottom: 30px;
  border: 1px solid #CCC;
  box-sizing: border-box;
  padding: 20px;
  line-height: 1.5;
}

.common_btn {
  display: block;
  padding: 25px 0px;
  width: 80%;
  max-width: 300px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  margin: 0px auto;
  position: relative;
  overflow: hidden;
  border: 1px solid #005FDD;
  text-align: center;
  color: #005FDD;
  font-size: 114%;
  outline: none;
  font-weight: bold;
  /*アニメーションの指定*/
  transition: .5s all;
}

.common_btn:after {
  content: "\f105";
  font-family: FontAwesome;
  position: absolute;
  right: 10px;
  font-size: 144%;
  top: 20px;
  z-index: 3;
  transition: .5s all;
  color: #005FDD;
}

.common_btn:hover {
  opacity: 0.7;
}

.common_btn:hover:after {
  right: 5px;
}

.blue_btn {
    background-color: #005FDD;
    color: #fff;
}
.blue_btn:after {
	color:#fff;
}

.radius {
  border-radius: 5px;
  display: inline-block;
  background: #005FDD;
  text-align: center;
  margin-right: 6px;
  margin-bottom: 8px;
  font-size: 90%;
  color: #FFF;
  padding: 4px 8px;
}

.img__ttl_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.img__ttl_list:before {
  content: "";
  display: block;
  width: 30%;
  height: 0;
  order: 1;
}

.img__ttl_list li {
  width: 30%;
}

.img__ttl_list li a {
  display: block;
  transition: .5s all;
}

.img__ttl_list li a:hover {
  opacity: 0.7;
}

.img__ttl_list li figure {
  border: 1px solid #E2F8FD;
  padding: 20px;
  box-sizing: border-box;
  margin-bottom: 25px;
  text-align: center;
}

.img__ttl_list li img {
  max-width: 100%;
}

.img__ttl_list li .copy {
  font-size: 114%;
  position: relative;
  text-align: center;
  box-sizing: border-box;
}

.img_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}

.img_list .w20 {
  width: 23%;
}

.img_list .w50 {
  width: 48%;
}

.img_list li {
  background: #fff;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  transition: all .3s ease-in-out;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 25px;
  padding: 10px;
}

.img_list li img {
  width: 100%;
}

.img_list li p {
  text-align: center;
  padding-top: 10px;
  font-size: 114%;
}

.itemlist_dl {
  margin-bottom: 15px;
}

.itemlist_dl dt {
  border-bottom: 1px solid #CCC;
  padding-bottom: 3px;
  margin-bottom: 5px;
  font-size: 114%;
  font-weight: 500;
}

.itemlist_squre {
  display: flex;
  flex-wrap: wrap;
}

.itemlist_squre li {
  padding: 20px 30px;
  text-align: center;
  font-size: 108%;
  margin-right: 30px;
  border: 1px solid #E2F8FD;
  margin-bottom: 25px;
}

.itemlist li {
  padding-left: 18px;
  margin-bottom: 10px;
  position: relative;
  text-align: left;
  line-height: 1.6;
  font-size: 124%;
}

.itemlist li:before {
  content: "・";
  position: absolute;
  left: 0px;
  top: 0px;
}

.itemlist li:last-child {
  margin-bottom: 0px;
}

.itemlist li span {
  display: inline-block;
  background: #333;
  color: #FFF;
  padding: 2px 10px;
}

.itemlist li a {
  text-decoration: underline;
}


.link_itemlist li {
  padding-left: 18px;
  margin-bottom: 10px;
  position: relative;
  text-align: left;
  line-height: 1.6;
  font-size: 124%;
  border-bottom: solid 1px #0468dd5e;
}

.link_itemlist li:before {
  content: "・";
  position: absolute;
  left: 0px;
  top: 0px;
}

.link_itemlist li:last-child {
  margin-bottom: 0px;
}

.link_itemlist li span {
  display: inline-block;
  background: #333;
  color: #FFF;
  padding: 2px 10px;
}


.list_l_circle {
  margin-bottom: 15px;
}

.list_l_circle li {
  padding-left: 18px;
  margin-bottom: 10px;
  position: relative;
  text-align: left;
}

.list_l_circle li:before {
  content: "\f111";
  font-family: FontAwesome;
  position: absolute;
  left: 0px;
  top: 3px;
  color: #005FDD;
  font-size: 70%;
}

.list_l_circle li:last-child {
  margin-bottom: 0px;
}

.list_l_circle li span {
  display: inline-block;
  background: #333;
  color: #FFF;
  padding: 2px 10px;
}

.checklist li {
  padding-left: 32px;
  margin-bottom: 30px;
  position: relative;
  width: 100% !important;
  box-sizing: border-box;
  font-size: 124%;
  line-height: 1.6;
  text-align: left;
}

.checklist li:before {
  content: "\f00c";
  font-family: FontAwesome;
  position: absolute;
  left: 0px;
  top: 0px;
  color: #005FDD;
}

.checklist li:last-child {
  margin-bottom: 0px;
}

.alphabet_list li {
  counter-increment: alphabet;
  font-size: 100%;
  display: block;
  margin-bottom: 12px;
  padding-left: 22px;
  position: relative;
}

.alphabet_list li:before {
  content: counter(alphabet, lower-alpha) "．";
  font-weight: 500;
  position: absolute;
  left: 0px;
  font-size: 108%;
  top: 0px;
}

.alphabet_list li:last-child {
  margin-bottom: 0px;
}

.kan_num_list {
  counter-reset: con;
}

.kan_num_list li {
  counter-increment: con;
  font-size: 100%;
  display: block;
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}

.kan_num_list li:last-child {
  margin-bottom: 0px;
}

.kan_num_list li:before {
  content: counter(con, cjk-ideographic) ".";
  font-weight: 500;
  position: absolute;
  left: 0px;
  top: 0px;
}

.number_list li {
  counter-increment: section;
  font-size: 100%;
  display: block;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  line-height: 1.7;
}

.number_list li:last-child {
  margin-bottom: 0px;
}

.number_list li:before {
  content: counter(section) ".";
  font-weight: 500;
  position: absolute;
  left: 0px;
  top: 0px;
}

nav {
  background: #FFF;
  width: 100%;
}

nav ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 20px 0px;
}

nav ul .active .link:after {
  width: 100%;
}

nav ul li {
  width: calc(100% / 5);
  position: relative;
  text-align: center;
}

nav ul li:after {
  content: "";
  height: 100%;
  width: 1px;
  background: #BABABA;
  -webkit-transform: skewX(150deg);
  -moz-transform: skewX(150deg);
  transform: skewX(150deg);
  position: absolute;
  top: 0px;
  right: 0px;
}

nav ul li:last-child {
  border-right: none;
}

nav ul li:last-child:after {
  display: none;
}

nav ul li .link {
  display: block;
  box-sizing: border-box;
  font-size: 114%;
  display: block;
  transition: .1s all;
}

nav ul li .link:after {
  background-color: #005FDD;
  bottom: -5px;
  content: '';
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  transition: .5s all;
  width: 0;
}

nav ul li .link:hover:after {
  width: 100%;
}

nav ul li .link:hover {
  opacity: 0.6;
}

nav ul li .link span {
  font-size: 80%;
  color: #005FDD;
}

nav ul li .pc_dropdown {
  width: 100%;
  display: none;
  height: auto;
  position: absolute;
  margin-left: 0px;
  z-index: 100;
  left: 0px;
  top: 47px;
}

nav ul li .pc_dropdown dt {
  width: 100%;
  background-color: #005FDD;
  margin: 0px;
  border-bottom: 1px solid #FFF;
  border-left: none;
  padding: 0px;
  position: relative;
}

nav ul li .pc_dropdown dt:after {
  content: '';
  display: none !important;
}

nav ul li .pc_dropdown dt:last-child {
  border-right: none;
}

nav ul li .pc_dropdown dt a {
  display: block;
  font-size: 100%;
  padding: 10px;
  color: #FFF;
  transition: .5s all;
}

nav ul li .pc_dropdown dt a:hover {
  opacity: 0.8;
}

.base_bg {
  background: #005fdd;
  background: linear-gradient(90deg, #005fdd 0%, #3cdbdb 100%);
}

.base_gra {
  position: relative;
}

.base_gra:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0px;
  background: #005fdd;
  background: linear-gradient(90deg, #005fdd 0%, #3cdbdb 100%);
  transition: .1s all;
}

.base_gra:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  top: 0px;
  left: 0;
  background: linear-gradient(90deg, #005fdd 0%, #3cdbdb 40%);
}

.base_gra:hover:before {
  opacity: 0;
}

header .tagline {
  background: #FFF;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}

header .tagline .login {
  webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  transition: 1s all;
  opacity: 0;
  max-width: 200px;
}

header .tagline .login .button {
  padding: 30px 0px;
  color: #FFF;
  display: block;
  text-align: center;
  width: 200px;
  box-sizing: border-box;
}

header .tagline .logo {
  webkit-transform: translateY(20px);
  transform: translateY(20px);
  transition: 1.5s all;
  opacity: 0;
  padding: 20px;
}

header .tagline .logo .box {
  display: flex;
  flex-wrap: wrap;
}

header .tagline .logo .box p {
  padding: 5px 0px 0px 20px;
}

header .tagline .logo img {
  max-width: 350px;
}

header .tagline__active .logo {
  webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}

header .tagline__active .login {
  webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}

.purpose {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 50px 0px;
}

.purpose .box {
  width: 45%;
  background: #E2F8FD;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  text-align: center;
  padding: 50px;
}

.purpose_study {
  display: flex;
  justify-content: center;
}

.purpose_study .box {
  width: 47%;
  background: #E2F8FD;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.3);
  margin-bottom: 50px;
}

.purpose_study .box:first-child {
  margin-right: 10%;
}

.purpose_study .box:first-child section {
  height: 100%;
}

.purpose_study .box:first-child section li {
  margin-bottom: 40px;
}

.purpose_study .box .sub_ttl {
  background: #005FDD;
  padding: 15px;
  text-align: center;
  box-sizing: border-box;
  width: 100%;
  color: #FFF;
  font-size: 164%;
  margin-bottom: 20px;
}

.purpose_study .box section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.purpose_study .block {
  width: 47%;
  background: #E2F8FD;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.3);
  margin-bottom: 80px;
}

.purpose_study .block .sub_ttl {
  background: #005FDD;
  padding: 15px;
  text-align: center;
  box-sizing: border-box;
  width: 100%;
  color: #FFF;
  font-size: 164%;
  margin-bottom: 20px;
}

.purpose_study .block section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.about_bg {
  background: url("../img/sub_main.jpg") no-repeat right 0px;
}

.second__ttl {
  position: relative;
  width: 100%;
  min-height: 270px;
  margin-bottom: 100px;
  z-index: 1;
}

.second__ttl .outer {
  position: absolute;
  left: 0px;
  bottom: -120px;
  min-width: 540px;
  width: 50%;
}

.second__ttl .outer .sub_ttl {
  text-align: center;
  color: #FFF;
  padding: 80px 0px;
  font-size: 196%;
}

.second__ttl .outer .sub_ttl span {
  font-size: 70%;
  display: inline-block;
  margin-left: 20px;
}

.main_ttl {
  position: relative;
  width: 100%;
  background: url("/wp/wp-content/uploads/2021/07/main-1.jpg") no-repeat right 0px;
  min-height: 910px;
  z-index: 1;
}

.main_ttl .sub_ttl {
  padding: 120px 0px 0px 60px;
}

.main_ttl .sub_ttl h2 {
  font-size: 304%;
}

.main_ttl .sub_ttl p {
  padding-top: 35px;
  font-size: 114%;
}

.main_ttl .feature {
  position: absolute;
  left: 0px;
  bottom: 50px;
  min-width: 540px;
  width: 50%;
}

.main_ttl .feature .outer {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row-reverse;
  padding: 30px 50px;
  box-sizing: border-box;
  color: #FFF;
}

.main_ttl .feature .outer .inner {
  max-width: 500px;
  width: 100%;
}

.main_ttl .feature .outer a {
  color: #FFF;
}

.main_ttl .feature .outer h3 {
  border-bottom: 1px solid #FFF;
  padding-bottom: 8px;
  font-size: 114%;
}

.main_ttl .feature .outer .border {
  border-bottom: 1px solid #FFF;
}

.main_ttl .feature .outer .link {
  text-align: right;
  padding-top: 20px;
}

.main_ttl .feature .outer .link a {
  color: #FFF;
  transition: .1s all;
}

.main_ttl .feature .outer .link a:hover {
  opacity: 0.6;
}

.main_ttl .feature .outer ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 20px 0px;
}

.main_ttl .feature .outer ul li {
  width: calc(100% / 3);
  position: relative;
  text-align: center;
  -webkit-transform: skewX(150deg);
  -moz-transform: skewX(150deg);
  transform: skewX(150deg);
  border-right: 1px solid #FFF;
  padding: 10px;
  box-sizing: border-box;
}

.main_ttl .feature .outer ul li:last-child {
  border-right: none;
}

.main_ttl .feature .outer ul li span {
  display: block;
  box-sizing: border-box;
  font-size: 100%;
  display: block;
  transform: skewX(-150deg);
  transition: .1s all;
}

.main_ttl .feature .outer ul li a:hover {
  opacity: 0.6;
}

.main_ttl .feature .outer ul li a span {
  font-size: 80%;
  color: #005FDD;
}

.wrapper, .main_wrapper {
  width: 1300px;
  margin: 0px auto;
}

@keyframes ttlmove {
  0% {
    opacity: 0;
    width: 0%;
  }
  100% {
    opacity: 100;
    width: 100%;
  }
}

.business_sub {
  width: 100%;
  position: relative;
  background: url("../img/business_bg_img_01.jpg") no-repeat 0px 0px;
  min-height: 270px;
  margin-top: 80px;
}

.business_sub img {
  width: 100%;
}

.business_sub .outer {
  padding-top: 210px;
  box-sizing: border-box;
}

.business_sub .outer .inner {
  background: #e2f2f3;
  width: 100%;
  padding: 50px;
  box-sizing: border-box;
}

.business_sub .outer .inner .flow {
  padding-top: 30px;
}

.business_sub .outer .inner .flow ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 20px;
}

.business_sub .outer .inner .flow ul li {
  width: 12%;
  box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
  background: #FFF;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  font-weight: bold;
}

.business_sub .outer .inner .flow ul li:after {
  content: url(../img/arrow-forward.png);
  display: inline-block;
  position: absolute;
  top: 50%;
  right: -22px;
  transform: translateY(-50%) translateX(0%);
  -webkit-transform: translateY(-50%) translateX(0%);
}

.business_sub .outer .inner .flow ul li:last-child:after {
  display: none;
}

.business_chart {
  width: 1300px;
}

.business_chart .top {
  width: 200px;
  background: #766565;
  padding: 20px 0px;
  box-sizing: border-box;
  margin: 0px auto;
  position: relative;
  z-index: 0;
  color: #FFF;
  text-align: center;
}

.business_chart .top:after {
  content: "";
  height: 30px;
  width: 1px;
  background: #707070;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateY(0%) translateX(-50%);
  -webkit-transform: translateY(0%) translateX(-50%);
}

.business_chart .tree_top {
  margin-top: 30px;
  position: relative;
  z-index: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.business_chart .tree_top .box {
  background: #E2F2F3;
  padding: 8px;
  box-sizing: border-box;
}

.business_chart .tree_top .box ul li {
  display: block;
  margin-bottom: 10px;
  font-size: 94%;
}

.business_chart .tree_top .box ul li:last-child {
  margin-bottom: 0px;
}

.business_chart .tree_top:before {
  content: "";
  height: 1px;
  width: calc(100% - 205px);
  background: #707070;
  position: absolute;
  top: 0px;
  left: 10.5%;
}

.business_chart .tree_top .child {
  padding-top: 30px;
  position: relative;
}

.business_chart .tree_top .child:nth-child(1) {
  width: 250px;
}

.business_chart .tree_top .child:nth-child(1) .sub:after {
  content: "";
  height: 30px;
  width: 1px;
  background: #707070;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateY(0%) translateX(-50%);
  -webkit-transform: translateY(0%) translateX(-50%);
}

.business_chart .tree_top .child:nth-child(1):before {
  content: "";
  height: 30px;
  width: 1px;
  background: #707070;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateY(0%) translateX(-50%);
  -webkit-transform: translateY(0%) translateX(-50%);
}

.business_chart .tree_top .child:nth-child(1) .outer {
  position: relative;
  z-index: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding-top: 60px;
}

.business_chart .tree_top .child:nth-child(1) .outer .sub_ttl {
  background: #BFCACE;
  text-align: center;
  padding: 10px;
}

.business_chart .tree_top .child:nth-child(1) .outer:before {
  content: "";
  height: 1px;
  width: 130px;
  background: #707070;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateY(0%) translateX(-50%);
  -webkit-transform: translateY(0%) translateX(-50%);
}

.business_chart .tree_top .child:nth-child(1) .outer .inner {
  width: 120px;
  position: relative;
  z-index: 0;
}

.business_chart .tree_top .child:nth-child(1) .outer .inner:before {
  content: "";
  height: 30px;
  width: 1px;
  background: #707070;
  position: absolute;
  top: -30px;
  left: 60px;
  transform: translateY(0%) translateX(-50%);
  -webkit-transform: translateY(0%) translateX(-50%);
}

.business_chart .tree_top .child:nth-child(2), .business_chart .tree_top .child:nth-child(3) {
  width: 13%;
}

.business_chart .tree_top .child:nth-child(2):before, .business_chart .tree_top .child:nth-child(3):before {
  content: "";
  height: 30px;
  width: 1px;
  background: #707070;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateY(0%) translateX(-50%);
  -webkit-transform: translateY(0%) translateX(-50%);
}

.business_chart .tree_top .child:nth-child(2) .sub, .business_chart .tree_top .child:nth-child(3) .sub {
  margin-bottom: 60px;
}

.business_chart .tree_top .child:nth-child(2) .sub:after, .business_chart .tree_top .child:nth-child(3) .sub:after {
  content: "";
  height: 60px;
  width: 1px;
  background: #707070;
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateY(0%) translateX(-50%);
  -webkit-transform: translateY(0%) translateX(-50%);
}

.business_chart .tree_top .child:nth-child(4) {
  width: 34%;
}

.business_chart .tree_top .child:nth-child(4) .sub:after {
  content: "";
  height: 30px;
  width: 1px;
  background: #707070;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateY(0%) translateX(-50%);
  -webkit-transform: translateY(0%) translateX(-50%);
}

.business_chart .tree_top .child:nth-child(4):before {
  content: "";
  height: 30px;
  width: 1px;
  background: #707070;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateY(0%) translateX(-50%);
  -webkit-transform: translateY(0%) translateX(-50%);
}

.business_chart .tree_top .child:nth-child(4) .outer {
  position: relative;
  z-index: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding-top: 60px;
}

.business_chart .tree_top .child:nth-child(4) .outer .inner {
  width: 32%;
  position: relative;
  z-index: 0;
}

.business_chart .tree_top .child:nth-child(4) .outer .inner:nth-child(1):before {
  content: "";
  height: 30px;
  width: 1px;
  background: #707070;
  position: absolute;
  top: -30px;
  left: 60px;
  transform: translateY(0%) translateX(-50%);
  -webkit-transform: translateY(0%) translateX(-50%);
}

.business_chart .tree_top .child:nth-child(4) .outer .inner:nth-child(2):before {
  content: "";
  height: 30px;
  width: 1px;
  background: #707070;
  position: absolute;
  top: -30px;
  left: 66px;
  transform: translateY(0%) translateX(-50%);
  -webkit-transform: translateY(0%) translateX(-50%);
}

.business_chart .tree_top .child:nth-child(4) .outer .inner:nth-child(3):before {
  content: "";
  height: 30px;
  width: 1px;
  background: #707070;
  position: absolute;
  top: -30px;
  left: 68px;
  transform: translateY(0%) translateX(-50%);
  -webkit-transform: translateY(0%) translateX(-50%);
}

.business_chart .tree_top .child:nth-child(4) .outer .sub_ttl {
  background: #BFCACE;
  text-align: center;
  padding: 10px;
}

.business_chart .tree_top .child:nth-child(4) .outer:before {
  content: "";
  height: 1px;
  width: 70%;
  background: #707070;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateY(0%) translateX(-50%);
  -webkit-transform: translateY(0%) translateX(-50%);
}

.business_chart .tree_top .child:last-child {
  width: 160px;
}

.business_chart .tree_top .child:last-child:before {
  content: "";
  height: 30px;
  width: 1px;
  background: #707070;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateY(0%) translateX(-50%);
  -webkit-transform: translateY(0%) translateX(-50%);
}

.business_chart .tree_top .child:last-child .sub {
  margin-bottom: 60px;
}

.business_chart .tree_top .child:last-child .sub:after {
  content: "";
  height: 60px;
  width: 1px;
  background: #707070;
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateY(0%) translateX(-50%);
  -webkit-transform: translateY(0%) translateX(-50%);
}

.business_chart .tree_top .child .sub {
  background: #005FDD;
  padding: 20px 0px;
  box-sizing: border-box;
  text-align: center;
  color: #FFF;
  position: relative;
}

footer {
  padding: 80px 0px 30px 0px;
  width: 100%;
  position: relative;
  z-index: 0;
}

footer .link {
  padding-top: 40px;
}

footer .link .nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

footer .link .nav .box .sub_ttl {
  font-size: 104%;
  color: #FFF;
  margin-bottom: 25px;
}

footer .link .nav .box .sub_ttl a {
  color: #FFF;
}

footer .link .nav .box ul li {
  position: relative;
  padding-left: 12px;
  margin-bottom: 3px;
}

footer .link .nav .box ul li a {
  color: #FFF;
  font-size: 85%;
}

footer .link .nav .box ul li:before {
  content: "-";
  color: #FFF;
  position: absolute;
  left: 0px;
  top: 0px;
}

footer .info {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 40px;
  border-bottom: 1px solid #FFF;
}

footer .info .logo {
  width: 50%;
}

footer .info .logo p {
  color: #FFF;
  line-height: 1.6;
  padding-top: 30px;
}

footer .info p a {
  text-decoration: underline;
  color: #FFF;
}

footer .info .btn_area {
  width: 40%;
}

footer .info .btn {
  width: 80%;
  max-width: 400px;
  position: relative;
  text-align: center;
  color: #005FDD;
  padding: 25px 0px;
  display: block;
  background: #FFF;
}

footer .info .btn:after {
  content: "\f105";
  font-family: FontAwesome;
  position: absolute;
  right: 10px;
  font-size: 144%;
  top: 20px;
  z-index: 3;
  transition: .5s all;
  color: #005FDD;
}

footer .info .btn:hover {
  opacity: 0.7;
}

footer .info .btn:hover:after {
  right: 5px;
}

footer .copy {
  text-align: center;
  color: #FFF;
  padding-top: 50px;
  font-size: 84%;
}

.common_contact {
  width: 100%;
  background: url("../img/contact_bg_img.jpg") no-repeat 0px 0px;
  height: 400px;
  overflow: hidden;
  background-size: cover;
  padding: 60px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.common_contact .sub_ttl {
  font-size: 184%;
  margin-bottom: 50px;
}

.common_contact address {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.common_contact address .left {
  text-align: center;
  width: 35%;
}

.common_contact address .left .tel {
  color: #005FDD;
  font-size: 264%;
  font-weight: bold;
}

.common_contact address .right {
  width: 50%;
  max-width: 550px;
}

.common_contact address .right a {
  background: #005FDD;
  text-align: center;
  padding: 20px;
  color: #FFF;
  position: relative;
  display: block;
  width: 100%;
}

.common_contact address .right a:after {
  content: "\f105";
  font-family: FontAwesome;
  position: absolute;
  right: 10px;
  font-size: 144%;
  top: 15px;
  z-index: 3;
}

.common_contact address .right a:hover {
  opacity: 0.7;
}

.common_contact address .right a:hover:after {
  right: 5px;
  transition: .5s all;
}

.slide-arrow-l {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0%;
  position: absolute;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transition: .5s all;
  cursor: pointer;
}

.slide-arrow-l:hover {
  opacity: 0.6;
}

.slide-arrow-r {
  position: absolute;
  cursor: pointer;
  z-index: 2;
  top: 50%;
  right: 0%;
  transition: .5s all;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.slide-arrow-r:hover {
  opacity: 0.6;
}

.ttl {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  line-height: 1.6;
  font-size: 114%;
}

.ttl span {
  font-size: 200%;
  display: inline-block;
  color: #005FDD;
}

.second {
  padding-top: 80px;
}

.number_ttl {
  position: relative;
  font-size: 114%;
  padding: 0px 0px 0px 40px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.number_ttl span {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  background: #EEE;
  color: #000;
  padding: 3px 10px;
}

.middle_ttl {
  font-size: 134%;
  text-align: center;
  position: relative;
  color: #005FDD;
  margin-bottom: 60px;
  line-height: 1.5;
}

.middle_ttl:after {
  content: "";
  height: 1px;
  width: 64px;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  background: #005FDD;
}

.sm_ttl {
  margin-bottom: 20px;
  font-size: 124%;
}

.local_ttl {
  border-left: 3px solid #005FDD;
  padding: 10px 0px 10px 25px;
  font-size: 144%;
  line-height: 1.7;
  margin-bottom: 25px;
}

.local_ttl span {
  font-weight: normal;
  display: inline-block;
  padding-left: 10px;
  font-size: 84%;
}

.local_ttl_main_color {
  border-left: 2px solid #005FDD;
  padding: 8px 0px 8px 18px;
  font-size: 118%;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
}

.local_ttl_main_color:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #EEE;
  position: absolute;
  left: 0px;
  bottom: -20px;
}

.local_ttl_main_color span {
  font-weight: normal;
  display: inline-block;
  padding-left: 10px;
  font-size: 84%;
}

.secondary_sm_ttl {
  margin-bottom: 20px;
  color: #E2F8FD;
  font-size: 124%;
}

.logo_center {
  display: flex;
  justify-content: center;
}

.logo_center .img {
  margin-right: 15px;
}

.img_ttl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.img_ttl .img {
  margin-right: 20px;
}

.img_ttl .text {
  display: flex;
  justify-content: center;
  align-items: center;
}

.secondary_tiny_ttl {
  font-size: 1.08rem;
  line-height: 1.4;
  color: #005FDD;
  margin-bottom: 10px;
}

.local_text {
  line-height: 1.6;
  font-size: 1.8rem;
  color: #005FDD;
  margin-bottom: 25px;
}

.local_lead {
  font-size: 114%;
  max-width: 760px;
  margin: 0px auto;
  text-align: left;
  line-height: 2;
}

.recruit .main__copy {
  font-size: 164%;
  font-weight: bold;
  text-align: center;
}

.interview_detail .voice1 {
  background: transparent url(../img/staff-1-l.jpg) center top no-repeat;
  background-size: cover;
}

.interview_detail .adjust-mt {
  margin-top: 80px;
}

.interview_detail .others {
  margin-bottom: 80px;
}

.interview_detail .others ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.interview_detail .others ul li {
  width: 20%;
  position: relative;
}

.interview_detail .others ul li .link {
  position: absolute;
  left: 0px;
  bottom: 0px;
  background: rgba(0, 0, 0, 0.5);
  padding: 15px 0px;
  text-align: center;
  width: 100%;
  z-index: 3;
}

.interview_detail .others ul li .link img {
  transition: .5s all;
}

.interview_detail .others ul li:hover .inner img {
  transform: scale(1.1);
}

.interview_detail .others ul li:hover .link img {
  transform: translateX(10px);
}

.interview_detail .others ul li a {
  display: block;
}

.interview_detail .others ul li .inner {
  width: 100%;
  height: 460px;
  overflow: hidden;
}

.interview_detail .others ul li .inner img {
  width: 100%;
  height: 100%;
  transition: .5s all;
}

.interview_detail .toall {
  border: 13px solid #005FDD;
  box-sizing: border-box;
  padding: 40px;
  margin: 80px auto;
  max-width: 840px;
}

.interview_detail .toall .sub_ttl {
  font-size: 164%;
  text-align: center;
}

.interview_detail .toall .lead {
  line-height: 2.0;
  max-width: 880px;
  text-align: left;
  width: 80%;
  margin: 30px auto 0px;
  font-size: 104%;
}

.interview_detail .box {
  max-width: 1300px;
  margin: 0px auto;
  width: 100%;
  box-sizing: border-box;
}

.interview_detail .box ul {
  display: flex;
  flex-wrap: wrap;
}

.interview_detail .box ul li {
  width: 50%;
}

.interview_detail .box ul li img {
  width: 100%;
}

.interview_detail .box ul li dl {
  margin-bottom: 60px;
  padding: 0px 40px;
}

.interview_detail .box ul li dl:last-child {
  margin-bottom: 0px;
}

.interview_detail .box ul li dl dt {
  text-align: center;
  font-size: 150%;
  margin-bottom: 25px;
}

.interview_detail .box ul li dl dd {
  line-height: 1.8;
  color: #858585;
}

.interview_detail .main_lead_ttl {
  font-size: 124%;
  text-align: center;
  margin-bottom: 30px;
}

.interview_detail .main_lead {
  line-height: 2.0;
  max-width: 880px;
  text-align: left;
  width: 80%;
  margin: 40px auto 80px;
  font-size: 104%;
  color: #858585;
}

.interview_detail .main_lead span {
  font-weight: bold;
}

.interview_detail .flexend {
  justify-content: flex-end;
}

.interview_detail .key_visual {
  margin: 0px auto;
  width: 100%;
  max-width: 1300px;
  height: 760px;
  display: flex;
  position: relative;
}

.interview_detail .key_visual .bottom_ttl {
  max-width: 1300px;
  width: 90%;
  background: #FFF;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  padding: 50px 0px 25px 0px;
}

.interview_detail .key_visual .bottom_ttl .sub_ttl {
  font-size: 164%;
  line-height: 1.7;
  font-weight: bold;
}

.interview_detail .key_visual .inner {
  max-width: 650px;
  padding-top: 40%;
}

.interview_detail .key_visual .inner .sub_ttl {
  background: #333;
  font-size: 150%;
  line-height: 1.5;
  padding: 15px;
  margin-top: 350px;
  color: #FFF;
  letter-spacing: -1px;
  font-weight: normal;
}

.interview_detail .key_visual .inner dl {
  padding: 15px;
  box-sizing: border-box;
  color: #FFF;
  background: #333;
  text-align: right;
}

.interview_detail .key_visual .inner dl dt {
  font-size: 150%;
  margin-bottom: 10px;
  font-weight: bold;
}

.interview_detail .key_visual .inner dl dd {
  font-size: 130%;
  font-weight: 500;
}

.workers a {
  text-decoration: none;
}

.workers .inner {
  max-width: 1300px;
  width: 100%;
  margin: 0px auto;
}

.workers .left_pic {
  background: #EEEEEE;
}

.workers ul {
  display: flex;
  flex-wrap: wrap;
  transition: .5s all;
}

.workers ul:hover {
  opacity: 0.7;
}

.workers ul .l_large, .workers ul .r_large {
  width: 55%;
}

.workers ul .l_small, .workers ul .r_small {
  width: 45%;
}

.workers ul:hover img {
  transform: scale(1.1);
  transition-duration: 0.3s;
}

.workers ul li {
  height: 350px;
}

.workers ul li .sub_ttl {
  background: #333;
  font-size: 134%;
  line-height: 1.5;
  padding: 15px;
  margin-top: 110px;
  color: #FFF;
  letter-spacing: -1px;
  font-weight: normal;
}

.workers ul li dl {
  padding: 20px 0px 0px 15px;
}

.workers ul li dl dt {
  font-size: 150%;
  margin-bottom: 10px;
  font-weight: bold;
}

.workers ul li dl dd {
  color: #005FDD;
  font-size: 130%;
  font-weight: 500;
}

.workers ul li .inner {
  height: 350px;
  overflow: hidden;
}

.workers ul li img {
  width: 100%;
  height: 100%;
  transition-duration: 0.3s;
  /*変化に掛かる時間*/
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

.rec_flow {
  background: #EEE;
  width: 100%;
  padding: 30px;
  box-sizing: border-box;
}

.rec_flow p {
  background: #FFF;
  text-align: center;
  font-weight: bold;
  font-size: 164%;
  padding: 20px;
  box-sizing: border-box;
}

.rec_flow p:last-child {
  background: #514545;
  color: #FFF;
}

.rec_flow .icon {
  text-align: center;
  font-size: 154%;
  padding: 10px 0px;
}

.environment {
  margin-bottom: 80px;
}

.environment .ttl_box {
  display: flex;
  flex-wrap: nowrap;
}

.environment .ttl_box .number {
  font-family: 'arial',serif;
  font-weight: bold;
  font-size: 704%;
  letter-spacing: 0.05em;
  color: #005FDD;
  line-height: 70px;
  margin-right: 80px;
}

.environment .ttl_box .sub_ttl h3 {
  font-weight: bold;
  font-size: 404%;
  letter-spacing: 0.05em;
  color: #005FDD;
  line-height: 47px;
}

.environment .ttl_box .sub_ttl p {
  font-size: 154%;
  padding-top: 20px;
}

.environment .inner {
  padding-left: 217px;
  padding-top: 30px;
  line-height: 1.7;
  box-sizing: border-box;
}

.environment .inner ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.environment .inner ul li:last-child {
  padding-left: 20px;
  box-sizing: border-box;
  min-width: 250px;
}

.about__list .box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 30px;
}

.about__list .box div {
  background: #f7f7f7;
  padding: 25px;
  box-sizing: border-box;
}

.about__list .sales div {
  width: 22%;
}

.about__list .production div {
  width: 32%;
}

.rec__nav {
  width: 100%;
  padding: 50px 0px 0px;
}

.rec__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.rec__nav ul .active {
  webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}

.rec__nav ul li {
  width: 33%;
  height: 320px;
  position: relative;
  display: flex;
  color: #FFF;
  transition: all 0.7s cubic-bezier(0.545, 0.08, 0.52, 0.975);
  webkit-transform: translateY(40px);
  transform: translateY(40px);
  opacity: 0;
  margin-bottom: 1%;
  position: relative;
  overflow: hidden;
}

.rec__nav ul li:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  position: absolute;
  transition: .5s all;
}

.rec__nav ul li .box {
  padding: 0px 40px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.rec__nav ul li:after {
  transition: .5s all;
  width: 100%;
  height: 340px;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 0;
}

.rec__nav ul li:nth-child(1) {
  transition-delay: 0.15s;
}

.rec__nav ul li:nth-child(1):after {
  content: "";
  background: url("../img/rec-nav-1.jpg") no-repeat 0px 0px;
  background-size: cover;
}

.rec__nav ul li:nth-child(2) {
  transition-delay: 0.35s;
}

.rec__nav ul li:nth-child(2):after {
  content: "";
  background: url("../img/rec-nav-1.jpg") no-repeat 0px 0px;
  background-size: cover;
}

.rec__nav ul li:nth-child(3) {
  transition-delay: 0.45s;
}

.rec__nav ul li:nth-child(3):after {
  content: "";
  background: url("../img/rec-nav-1.jpg") no-repeat 0px 0px;
  background-size: cover;
}

.rec__nav ul li:hover:after {
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.rec__nav ul li:hover:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
  position: absolute;
}

.rec__nav ul li .sub_ttl {
  font-size: 144%;
  font-weight: bold;
}

.rec__nav ul li a {
  width: 100%;
  height: 100%;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: .5s all;
  z-index: 3;
}

.rec__nav ul li a:hover {
  opacity: .5;
}

.top__product {
  width: 100%;
}

.top__product ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.top__product ul .active {
  webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}

.top__product ul li {
  width: 19.5%;
  height: 320px;
  position: relative;
  display: flex;
  color: #FFF;
  transition: all 0.7s cubic-bezier(0.545, 0.08, 0.52, 0.975);
  webkit-transform: translateY(40px);
  transform: translateY(40px);
  opacity: 0;
  margin-bottom: 1%;
  position: relative;
  overflow: hidden;
}

.top__product ul li .box {
  padding: 0px 40px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.top__product ul li:after {
  transition: .5s all;
  width: 100%;
  height: 340px;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 0;
}

.top__product ul li:nth-child(1) {
  transition-delay: 0.15s;
}

.top__product ul li:nth-child(1):after {
  content: "";
  background: url("../img/product_img_01.jpg") no-repeat 0px 0px;
  background-size: cover;
}

.top__product ul li:nth-child(2) {
  transition-delay: 0.35s;
}

.top__product ul li:nth-child(2):after {
  content: "";
  background: url("../img/product_img_02.jpg") no-repeat 0px 0px;
  background-size: cover;
}

.top__product ul li:nth-child(3) {
  transition-delay: 0.45s;
}

.top__product ul li:nth-child(3):after {
  content: "";
  background: url("../img/product_img_03.jpg") no-repeat 0px 0px;
  background-size: cover;
}

.top__product ul li:nth-child(4) {
  transition-delay: 0.65s;
}

.top__product ul li:nth-child(4):after {
  content: "";
  background: url("../img/product_img_04.jpg") no-repeat 0px 0px;
  background-size: cover;
}

.top__product ul li:nth-child(5) {
  transition-delay: 0.75s;
}

.top__product ul li:nth-child(5):after {
  content: "";
  background: url("../img/product_img_05.jpg") no-repeat 0px 0px;
  background-size: cover;
}

.top__product ul li:hover:after {
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.top__product ul li .sub_ttl {
  font-size: 144%;
  font-weight: bold;
}

.top__product ul li a {
  width: 100%;
  height: 100%;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: .5s all;
  z-index: 1;
}

.top__product ul li a:hover {
  opacity: .5;
}

.top__technology {
  width: 100%;
}

.top__technology ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.top__technology ul .active {
  webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}

.top__technology ul li {
  width: 33%;
  height: 340px;
  position: relative;
  display: flex;
  color: #FFF;
  transition: all 0.7s cubic-bezier(0.545, 0.08, 0.52, 0.975);
  webkit-transform: translateY(40px);
  transform: translateY(40px);
  opacity: 0;
  margin-bottom: 1%;
  position: relative;
  overflow: hidden;
}

.top__technology ul li .box {
  padding: 0px 40px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.top__technology ul li .box .link {
  margin-top: 30px;
  font-weight: bold;
}

.top__technology ul li:first-child {
  background: #005FDD;
  transition-delay: 0.1s;
  font-size: 180%;
  line-height: 1.7;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: bold;
}

.top__technology ul li:after {
  transition: .5s all;
  width: 100%;
  height: 340px;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 0;
}

.top__technology ul li:nth-child(2) {
  transition-delay: 0.15s;
}

.top__technology ul li:nth-child(2):after {
  content: "";
  background: url("../img/tec_img_01.jpg") no-repeat 0px 0px;
  background-size: cover;
}

.top__technology ul li:nth-child(3) {
  transition-delay: 0.35s;
}

.top__technology ul li:nth-child(3):after {
  content: "";
  background: url("../img/tec_img_02.jpg") no-repeat 0px 0px;
  background-size: cover;
}

.top__technology ul li:nth-child(4) {
  transition-delay: 0.45s;
}

.top__technology ul li:nth-child(4):after {
  content: "";
  background: url("../img/tec_img_03.jpg") no-repeat 0px 0px;
  background-size: cover;
}

.top__technology ul li:nth-child(5) {
  transition-delay: 0.65s;
}

.top__technology ul li:nth-child(5):after {
  content: "";
  background: url("../img/tec_img_04.jpg") no-repeat 0px 0px;
  background-size: cover;
}

.top__technology ul li:nth-child(6) {
  transition-delay: 0.75s;
}

.top__technology ul li:nth-child(6):after {
  content: "";
  background: url("../img/tec_img_05.jpg") no-repeat 0px 0px;
  background-size: cover;
}

.top__technology ul li:hover:after {
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.top__technology ul li .sub_ttl {
  font-size: 144%;
  margin-bottom: 30px;
}

.top__technology ul li a {
  width: 100%;
  height: 100%;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: .5s all;
  z-index: 1;
}

.top__technology ul li a:hover {
  opacity: .5;
}

.product {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.product .box {
  width: 50%;
}

.product .box .inner {
  background: #e2f2f3;
  padding: 50px;
  box-sizing: border-box;
}

.product .box figure {
  width: 100%;
  height: 360px;
  overflow: hidden;
}

.product .box figure img {
  object-fit: cover;
  font-family: 'object-fit: cover;';
  /*IE対策*/
  width: 100%;
  height: 100%;
}

.product .box .sub_ttl {
  font-size: 144%;
  margin-bottom: 30px;
  color: #005FDD;
}

.download {
  background: #F5F5F5;
  padding: 80px;
  margin: 60px 0px;
  box-sizing: border-box;
}

.download .register {
  border-top: 1px solid #707070;
  padding-top: 50px;
}

.download .btn {
  width: 80%;
  max-width: 300px;
  display: block;
  margin: 20px auto 0px;
  color: #FFF;
  border-radius: 5px;
  background: url("../img/arrow-dropright-circle@2x.png") no-repeat 95% 14px #005FDD;
  text-align: center;
  padding: 15px 0px 15px 0px;
  line-height: 1.0;
  box-sizing: border-box;
  text-decoration: none;
  transition: .5s all;
  font-size: 104%;
  position: relative;
}

.download .form {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.download .form .sec {
  margin-right: 20px;
  padding-top: 10px;
}

.download .form .input_area {
  margin-right: 20px;
}

.download .form .input_area input {
  border: 1px solid #707070;
  padding: 10px;
  box-sizing: border-box;
  width: 360px;
  max-width: 360px;
}

.pdf_list li {
  padding: 5px 0px 10px 40px;
  box-sizing: border-box;
  width: 100%;
  border-bottom: 1.5px dotted #CCC;
  background: url("../img/pdf.png") no-repeat 0px -3px;
  font-size: 0.84rem;
  margin-bottom: 10px;
}

.pdf_list li a {
  display: block;
}

.pdf {
  padding: 5px 0px 10px 40px;
  box-sizing: border-box;
  width: 100%;
  background: url("../img/pdf.png") no-repeat 0px -3px;
  background-size: contain;
  font-size: 0.84rem;
  margin-bottom: 10px;
}

.img_wrap {
  margin: 0 auto;
  overflow: hidden;
  cursor: pointer;
}

.img_wrap img {
  width: 100%;
  transition-duration: 0.5s;
  z-index: 1;
}

.img_wrap:hover img {
  transform: scale(1.1);
  transition-duration: 0.5s;
}

.column_free {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.column_free p {
  line-height: 1.8;
}

.column_free .l {
  width: 80%;
}

.column_free .s {
  max-width: 260px;
  width: 18%;
}

.large__column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.large__column .l {
  width: 64%;
}

.large__column .s {
  width: 34%;
}

.half__column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.half__column .box {
  width: 48%;
  margin-bottom: 30px;
}

.three__column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.three__column .box {
  width: 32%;
  margin-bottom: 25px;
}

.three__column .box img {
  max-width: 100%;
}

.sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 0px 50px;
}

.sns .box {
  width: 45%;
  text-align:center;
}

.sns .box .sub_ttl {
  text-align: center;
  color: #005FDD;
  margin-bottom: 40px;
  font-size: 184%;
}

.top_topics {
  background: #E2F8FD;
  width: 100%;
  padding: 60px 0px;
}

.top_topics .outer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.top_topics .outer .left {
  width: 40%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #FFFFFF;
  box-sizing: border-box;
  padding: 40px;
}

.top_topics .outer .left .sub_ttl {
  text-align: center;
  color: #005FDD;
  font-size: 184%;
  margin-bottom: 25px;
  line-height: 1.5;
}

.top_topics .outer .left .sub_ttl span {
  font-size: 70%;
  color: #000;
}

.top_topics .outer .left p {
  text-align: center;
  margin-bottom: 50px;
}

.top_topics .outer .right {
  width: 56%;
}

.top_topics .outer .right .box {
  box-sizing: border-box;
  padding: 50px 0px;
}

.top_topics .outer .right .box dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.top_topics .outer .right .box dl dt {
  width: 30%;
  margin-bottom: 40px;
}

.top_topics .outer .right .box dl dd {
  width: 70%;
}

.top__news .nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.top__news .nav ul li {
  width: 24%;
  position: relative;
  transition: .5s all;
  position: relative;
}

.top__news .nav ul li:hover {
  opacity: 0.7;
}

.top__news .nav ul li:hover:after {
  right: 5px;
}

.top__news .nav ul li:after {
  content: "\f105";
  font-family: FontAwesome;
  position: absolute;
  color: #FFF;
  right: 10px;
  font-size: 184%;
  top: 20px;
  transition: .5s all;
}

.top__news .nav ul li:nth-child(1) {
  background: #005FDD;
}

.top__news .nav ul li:nth-child(2) {
  background: #32AEBB;
}

.top__news .nav ul li:nth-child(3) {
  background: #1D9A57;
}

.top__news .nav ul li:nth-child(4) {
  background: #C9BD1B;
}

.top__news .nav ul li:nth-child(5) {
  background: #868380;
}

.top__news .nav ul li a {
  text-align: center;
  box-sizing: border-box;
  padding: 30px 0px;
  width: 100%;
  display: block;
  color: #FFF;
}

.commmon_rec {
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../img/company_recruit_img.jpg") no-repeat 0px 0px;
  background-size: cover;
  text-align: center;
  color: #FFF;
}

.commmon_rec .sub_ttl {
  margin-bottom: 50px;
  color: #FFF;
  font-size: 154%;
}

.commmon_rec p {
  line-height: 1.5;
  margin-bottom: 40px;
}

.topics {
  box-sizing: border-box;
  padding-bottom: 30px;
  width: 100%;
}


.topics {
  box-sizing: border-box;
}

.topics dl {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
  margin: 0px auto;
  border-top: 1px solid #CCC;
}

.topics dl dt {
  padding: 20px 20px;
  box-sizing: border-box;
  width: 20%;
  color: #888888;
  border-bottom: 1px solid #CCC;
}

.topics dl dt .blue {
  background: #BFDFFF;
}

.topics dl dt .orange {
  background: #FFD24D;
}

.topics dl dt .green {
  background: #AFEA00;
}

.topics dl dt span {
  display: inline-block;
  padding: 4px 0px;
  width: 100px;
  text-align: center;
  color: #5B5C5E;
  font-size: 84%;
}

.topics dl dd {
  width: 80%;
  box-sizing: border-box;
  border-bottom: 1px solid #CCC;
  padding: 22px 20px;
}

.topics dl dd span {
  display: inline-block;
  padding-left: 25px;
}

.topics dl dd a {
  text-decoration: none;
}

.news_box section {
  display: none;
}

.news_box .active {

}

.news_box .show {
    display: block;
}

.news_box dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.news_box dl .all {
  background: #32AEBB;
}

.news_box dl .study {
  background: #1D9A57;
}

.news_box dl .event {
  background: #C9BD1B;
}

.news_box dl .apply {
  background: #868380;
}

.news_box dl .group {
  background: #32AEBB;
}

.news_box dl dt {
  padding: 15px 0px;
  box-sizing: border-box;
  width: 20%;
  font-weight: bold;
}

.news_box dl dt ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.news_box dl dt ul li {
  width: 100%;
  margin-right:20px;
}

.news_box dl dt ul li:last-child {
  margin-right:0px;
}

.news_box dl dt a {
  display: block;
  padding: 17px 0px;
  width: 100%;
  text-align: center;
  color: #FFF;
}

.news_box dl dd {
  width: 80%;
  box-sizing: border-box;
  padding: 25px 0px 20px 30px;
  font-weight: bold;
  font-size: 108%;
}

.news_box dl dd span {
  display: inline-block;
  border: 1px solid #005FDD;
  padding: 3px 10px;
  color: #005FDD;
  font-size: 104%;
  text-align: center;
  margin-left: 20px;
}

.news_box dl dd a {
  text-decoration: none;
  color: #000;
}

/*/////////// プライバシーポリシー ////////////*/
.privacy p {
  line-height: 1.5;
  margin-bottom: 30px;
}

.privacy .sub_ttl {
  font-weight: bold;
  font-size: 110%;
  margin-bottom: 20px;
}

.privacy .info_block {
  background: #f7f7f7;
  padding: 20px;
}

.privacy .info_block a {
  color: #333;
  text-decoration: none;
}

.privacy .name {
  text-align: right;
}

/*/////////// 会社概要 ////////////*/
.policy article {
  margin-bottom: 30px;
  background: #EEEEEE;
  padding: 25px;
  box-sizing: border-box;
}

.policy article ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.policy article ul li:first-child {
  min-width: 240px;
}

.policy article ul li:last-child {
  padding-left: 30px;
  line-height: 1.7;
}

.company_tbl {
  box-sizing: border-box;
}

.company_tbl table {
  width: 100%;
  border-collapse: collapse;
  box-sizing: border-box;
}

.company_tbl table tr {
  width: 100%;
}

.company_tbl table th, .company_tbl table td {
  box-sizing: border-box;
  padding: 25px 15px;
  font-size: 100%;
}

.company_tbl table th {
  text-align: center;
  width: 30%;
  border-bottom: 1px solid #CCC;
  border-top: 1px solid #CCC;
  border-right: 1px solid #CCC;
  vertical-align: middle;
}

.company_tbl table td {
  border-bottom: 1px solid #CCC;
  border-top: 1px solid #CCC;
  line-height: 1.7;
}

.company_tbl table td a:hover {
  text-decoration: underline;
}

.philosophy p {
  text-align: center;
  font-size: 134%;
  line-height: 1.7;
  margin-bottom: 40px;
}

.philosophy p span {
  font-size: 134%;
  font-weight: bold;
}

.message {
  padding-bottom: 40px;
}

.message ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.message ul .pic {
  width: 350px;
}

.message ul .pic img {
  width: 100%;
}

.message ul .pic .name {
  background: #005FDD;
  box-sizing: border-box;
  padding: 10px;
  font-size: 144%;
  color: #FFF;
}

.message ul .pic .name img {
  width: 100px;
}

.message ul .pic .name span {
  font-size: 54%;
}

.message ul .txt {
  width: 74%;
  padding-left: 40px;
}

.message ul .txt .sub_ttl {
  font-size: 124%;
  margin-bottom: 20px;
}

.message ul .txt .lead {
  line-height: 1.8;
  margin-bottom: 15px;
  margin-left: auto;
}

.message ul .txt .name {
  text-align: right;
}

.alert li {
  padding-left: 18px;
  position: relative;
  text-align: left;
  line-height: 1.5;
  font-weight: bold;
  font-size: 0.8rem;
}

.alert li:before {
  content: "※";
  position: absolute;
  left: 0px;
  top: 0px;
}

.alert li:last-child {
  margin-bottom: 0px;
}

.image__list_ttl ul {
  display: flex;
  flex-wrap: wrap;
}

.image__list_ttl ul li {
  width: 25%;
  margin-bottom: 25px;
  position: relative;
  margin-right: 5%;
  text-align: center;
}

.image__list_ttl ul li .copy {
  position: relative;
  box-sizing: border-box;
  color: #005FDD;
  margin-top: 10px;
  text-align: center;
}

.flex__tbl table {
  width: 100%;
  margin: 0px auto 30px;
  border-collapse: collapse;
  border-spacing: 0px;
  box-sizing: border-box;
}

.flex__tbl table tr {
  width: 100%;
}

.flex__tbl table th, .flex__tbl table td {
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid #B3B3B3;
  font-size: 100%;
}

.flex__tbl table .left {
  text-align: left !important;
}

.flex__tbl table tbody {
  text-align: left;
}

.flex__tbl table tbody th {
  background-color: #E6E6E6;
  text-align: center;
  font-size: 114%;
  vertical-align: middle;
}

.flex__tbl table tbody td {
  background: white;
  line-height: 1.7;
  vertical-align: middle;
}

.flex__tbl table tbody td p {
  margin-bottom: 15px;
}

.history_tbl dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.history_tbl dl dt {
  width: 10%;
  padding: 30px 0px;
  box-sizing: border-box;
  border-right: 1px solid #CCC;
  font-size: 84%;
  text-align: center;
}

.history_tbl dl dt span {
  font-size: 184%;
}

.history_tbl dl dd {
  width: 90%;
  padding: 30px;
  box-sizing: border-box;
}

.history_tbl table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0px;
  border: none;
  box-sizing: border-box;
}

.history_tbl table tr {
  width: 100%;
  border-bottom: 1px solid #CCC;
}

.history_tbl table tr:first-child {
  border-top: 1px solid #CCC;
}

.history_tbl table th, .history_tbl table td {
  box-sizing: border-box;
  padding: 30px 20px;
  line-height: 1.7;
  vertical-align: middle;
}

.history_tbl table th {
  font-size: 84%;
  width: 20%;
  background-color: #F6F7FB;
}

.history_tbl table th span {
  font-size: 184%;
}

.tbl {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0px;
  box-sizing: border-box;
}

.tbl tr {
  width: 100%;
}

.tbl th, .tbl td {
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid #CCC;
  font-size: 0.94rem;
}

.tbl tbody {
  text-align: left;
}

.tbl tbody th {
  background: #F5F5F5;
  color: #171515;
  text-align: left;
  width: 40%;
}

.tbl tbody td {
  background: white;
}

.tbl tbody td p {
  margin-bottom: 15px;
}

.contact {
  margin-bottom: 30px;
  box-sizing: border-box;
  color: #525252;
}

.contact .outer {
  max-width: 760px;
  width: 100%;
  margin: 0px auto;
}

.contact .outer .sub_ttl {
  font-size: 140%;
  display: flex;
  align-items: center;
  line-height: 0;
  margin-top: 70px;
}

.contact .outer .sub_ttl:before, .contact .outer .sub_ttl:after {
  content: '';
  flex-grow: 3;
  height: 1px;
  background: #EEE;
}

.contact .outer .sub_ttl:before {
  margin-right: 30px;
}

.contact .outer .sub_ttl:after {
  margin-left: 30px;
}

.contact .outer .inner {
  border-bottom: 1px solid #EEE;
  border-right: 1px solid #EEE;
  border-left: 1px solid #EEE;
  box-sizing: border-box;
  padding: 30px;
}

.contact .outer .inner .lead {
  text-align: center;
  line-height: 1.7;
}

.contact .outer .inner .lead .tel {
  font-size: 200%;
}

.contact .consent {
  text-align: center;
  margin-bottom: 30px;
}

.contact .require {
  display: inline-block;
  background: #005FDD;
  padding: 3px 10px;
  border-radius: 5px;
  color: #FFF;
  margin-right: 3px;
}

.contact .consent label {
  display: block;
  position: relative;
  padding-left: 1em;
}

.contact .consent label input {
  position: absolute;
  margin-top: .4rem;
  margin-left: -1.25rem;
}

.contact .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact .list .box {
  border: 1px solid #2A5B88;
  margin-bottom: 30px;
  width: 48%;
}

.contact .list .box .sub_ttl {
  background: #F3F3F3;
  padding: 30px;
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 0px;
  font-size: 134%;
}

.contact .list .box .inner {
  padding: 30px;
  width: 100%;
  box-sizing: border-box;
}

.contact .list .box .inner p {
  margin-bottom: 30px;
}

.contact .list .btn {
  width: 100%;
  background: #2A5B88;
  color: #FFF;
  padding: 20px;
  box-sizing: border-box;
  display: block;
  transition: .5s all;
  position: relative;
}

.contact .list .btn:hover {
  opacity: 0.7;
}

.contact .list .btn:hover:after {
  right: 5px;
  transition: .5s all;
}

.contact .list .btn:after {
  content: "\f105";
  font-family: FontAwesome;
  position: absolute;
  color: #FFF;
  right: 10px;
  font-size: 184%;
  top: 12px;
}

.contact form table {
  width: 100%;
  border-spacing: 0px;
  margin: 20px 0px;
}

.contact form table th, .contact form table td {
  padding: 25px 10px;
  border-bottom: 1px solid #CCC;
}

.contact form table th {
  width: 32%;
  text-align: left;
  vertical-align: middle;
  font-size: 0.94rem;
}

.contact form table th span {
  margin-left: 10px;
}
.contact form table th .alert {
    /* font-weight: 500; */
    color: #005fdd;
}
.contact form table th .red {
  color: #FF0000;
}

.contact form table .caption {
  border-bottom: 1px solid #CCC;
  background: #f5f7fa;
  font-weight: bold !important;
  padding: 20px;
  box-sizing: border-box;
  line-height: 1.5;
  font-size: 134%;
  text-align: center;
}

.contact form table td div {
  margin-bottom: 10px;
}

.contact form table td span {
  display: inline-block;
  vertical-align: bottom;
}

.contact form table td textarea {
  width: 90%;
}

.contact form table td span {
  display: inline-block;
  vertical-align: bottom;
}

.contact form table td .error {
  color: #FF0000;
  font-weight: 500;
  font-size: 110%;
  display: block;
  margin-top: 10px;
  padding: 20px;
  border: 2px solid #fb4040;
  background: #ffe4e4;
}

.contact form table td .check {
  display: block;
  position: relative;
  padding-left: 1em;
  line-height: 2em;
  font-size: 110%;
}

.contact form table td .check input {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.contact form table td input {
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #CCC;
  font-size: 84%;
}

.contact form table td select {
  border: 1px solid #CCC;
  background: #FFF;
  padding: 10px;
}

.contact form table .normal_txt {
  width: 100%;
}

.contact form table .small_txt {
  width: 75%;
}

.contact form table .tiny_txt {
  width: 25%;
}

.contact form .button_area {
  text-align: center;
  width: 100%;
}

.contact form .button_area br {
  display: none;
}

.contact form .back_btn {
  border-radius: 5px;
  text-align: center;
  padding: 15px 30px;
  background: #CCC;
  color: #FFF;
  display: inline-block;
  margin-right: 20px;
  font-size: 84%;
  margin-top: 5px;
}

.contact form .send_btn {
  border-radius: 5px;
  text-align: center;
  padding: 20px 50px;
  background: #005FDD;
  color: #FFF;
  font-size: 84%;
  margin-bottom: 25px;
}

@media screen and (max-width: 1300px) {
  header .tagline .logo {
    webkit-transform: translateY(20px);
    transform: translateY(20px);
    transition: 1.5s all;
    opacity: 0;
  }
  header .tagline .logo img {
    max-width: 300px;
  }
  header .tagline .nav {
    webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    transition: 1s all;
    opacity: 0;
  }
  header .tagline .nav ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
  }
  header .tagline .nav ul li {
    font-weight: bold;
    transition: .5s all;
  }
  header .tagline .nav ul li:hover {
    opacity: 0.6;
  }
  header .tagline .nav ul li:last-child a {
    background: #005FDD;
    text-align: center;
    color: #FFF;
    height: 100%;
    display: block;
    font-size: 108%;
    box-sizing: border-box;
    padding: 30px 30px;
  }
  header .tagline .nav ul li:not(:last-child) {
    padding: 30px 0px;
    margin-right: 20px;
  }
  header .tagline__active .logo {
    webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
  header .tagline__active .nav {
    webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
  .wrapper, .main_wrapper {
    width: 100%;
    padding: 0px 15px;
    box-sizing: border-box;
  }
  .common_contact .sub_ttl {
    font-size: 184%;
    margin-bottom: 50px;
  }
  .common_contact section {
    width: 100%;
  }
  .common_contact address {
    width: 100%;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .common_contact address .left {
    text-align: center;
    width: 45%;
  }
  .common_contact address .left .tel {
    color: #005FDD;
    font-size: 264%;
    font-weight: bold;
  }
  .common_contact address .right {
    width: 50%;
    max-width: 450px;
    box-sizing: border-box;
  }
  .common_contact address .right a {
    background: #005FDD;
    text-align: center;
    padding: 20px;
    color: #FFF;
    position: relative;
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .common_contact address .right a:after {
    content: "\f105";
    font-family: FontAwesome;
    position: absolute;
    right: 10px;
    font-size: 144%;
    top: 15px;
    z-index: 3;
  }
  .common_contact address .right a:hover {
    opacity: 0.7;
  }
  .common_contact address .right a:hover:after {
    right: 5px;
    transition: .5s all;
  }
}

.news_img {
    width: 100%;
    text-align: center;
}

.event_content {
	font-size: 100%;
	font-weight:500;
	line-height:1.8;
}
.event_content a{
    text-decoration: underline;
    color: #005fdd;	
	padding:5px 0px;
}

.event_content h2{
	font-size: 110%;
    padding: 10px;
}
.event_content h3{
	font-size: 105%;
    padding: 10px;
}

.event_content h4{
	font-size: 100%;
    padding: 10px;
}

.event_content h5{
	font-size: 95%;
    padding: 10px;
}

.event_content h6{
	font-size: 90%;
    padding: 10px;
}
/*//////toppage仕様変更style//////////*/
.top_topics_bg{
	background:none;
}
.top_news_list li {
    margin-bottom: 40px;
}

.top_news_list .news_icon span {
    display: inline-block;
    border: 1px solid #005FDD;
    padding: 3px 10px;
    color: #005FDD;
    font-size: 94%;
    text-align: center;
    margin-left: 20px;
}
.top_news_list .news_icon span:first-child {
    margin-left: 0;
}
.top_meeting_info .outer {
    align-items: flex-start;
}

/*//////meeting_info//////////*/
.url__box .box {
    width: 32%;
    margin: 0;
}
.url__box .box a {
    width: 100%;
}

.defo_tbl table {
    width: 100%;
    border-collapse: collapse;
    border: 0;
}
.defo_tbl table th {
    width: 20%;
    padding: 5px;
}
.defo_tbl table td {
    width: 80%;
    padding: 5px;
}

a:hover{
	color:#056add;
	
}

.meeting_btn{
	justify-content: space-around;
}

.header_loginbox {
    display: flex;
    flex-wrap: wrap;
}
.en {
    padding: 5px 10px;
    font-weight: bold;
}

header .tagline .header_loginbox {
    webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    transition: 1s all;
    opacity: 0;
}

header .tagline__active .header_loginbox {
  webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}

.wp-pagenavi{text-align:center;}

.rss{
	text-align: right;
    width: 1000px;
    max-width: 100%;
    margin: 0 auto 20px;
}
.rss a {
    font-size: 135%;
    color: #ff9800;
}
.rss a span {
    font-size: 79%;
    font-weight: 600;
    margin-left: 2px;
}

/*//////new KTK NEWS//////////*/

.mm_maintab {
	display: inline-flex;
	border: 2px solid #056add;
	margin-bottom: 2rem;
	font-weight: bold;
	font-size: 120%;
	border-radius: 6px;
}

.mm_maintab li {
	display: flex;
	align-items: center;
	gap: 8px;
	line-height: 1;
	color: #056add;
}

.mm_maintab li a {
	padding: 8px 16px;
}

.mm_maintab li.active {
	padding: 8px 16px;
	background: #056add;
}

.mm_maintab li.active a {
	color: #fff;
}

.mm_ktklist {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
}

.mm_ktklist li {
	padding: 10px 16px;
	background: #f3f3f3;
	cursor: pointer;
	border: 1px solid #ddd;
	border-radius: 3px;
}

.mm_ktklist li.is-active {
	background: #056add;
	color: #fff;
	border-color: #056add;
}

.mm_tab_panel {
	display: none;
}

.mm_tab_panel.is-active {
	display: block;
}

.mm_article {
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 10px 16px;
}

.mm_head {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

.mm_head__cat {
	display: inline-block;
	padding: 2px 8px;
	background: #FFF3E0;
	border: 1px solid #FFCC80;
	border-radius: 3px;
	color: #E65100;
	font-size: 84%;
	font-weight: bold;
}

.mm_head__day {
	font-size: 84%;
}

.mm_content__ttl {
	margin-top: 0.4em;
	font-size: 116%;
}

.mm_content__cap {
	margin-top: 0.6em;
	font-size: 90%;
	color: #888;
}

.mm_content__txt {
	margin-top: 0.6em;
	color: #444;
}

.mm_pdf {
	margin-top: 12px;
}

.mm_pdf a {
	display: inline-block;
	color: #fff;
	background: #2A5DAB;
	min-width: 148px;
	border-radius: 3px;
	text-align: center;
	transition: all 0.2s;
	cursor: pointer;
	padding: 6px 8px;
	font-weight: bold;
	font-size: 90%;
}

.mm_pdf a:hover {
	background: #1B3F7A;
}

.mm-group {
	display: flex;
	gap: 24px;
	align-items: flex-start;
}

.mm-group__l {
	width: 280px;
	flex-shrink: 0;
}

.mm-group__r {
	flex: 1;
	min-width: 0;
}

.mm-group-tab-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.mm-group-tab-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 14px;
	border: 1px solid #ddd;
	border-radius: 6px;
	background: #f8f8f8;
	cursor: pointer;
	transition: all 0.2s;
}

.mm-group-tab-list li.is-active {
	background: #056add;
	border-color: #056add;
	color: #fff;
}

.mm-group-tab-list__name {
	font-weight: bold;
}

.mm-group-tab-list__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 28px;
	padding: 2px 8px;
	border-radius: 9999px;
	background: rgba(0, 0, 0, 0.08);
	font-size: 84%;
	font-weight: bold;
}

.mm-group-tab-list li.is-active .mm-group-tab-list__count {
	background: rgba(255, 255, 255, 0.2);
}

.mm-group-tab-panel {
	display: none;
}

.mm-group-tab-panel.is-active {
	display: block;
}

.mm-group-tab-panel__title {
	margin-bottom: 16px;
	font-size: 140%;
	font-weight: bold;
	color: #056add;
}

.mm-group-tab-panel__description {
	margin: 0 0 20px;
	color: #666;
	line-height: 1.8;
}

.mm-group-post-list {
	margin: 0;
	padding-left: 1.2em;
}

.mm-group-post-list__item + .mm-group-post-list__item {
	margin-top: 8px;
}

.mm_group-article {
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 16px;
}

.mm_group-article + .mm_group-article {
	margin-top: 16px;
}

@media screen and (max-width: 767px) {
	.mm-group {
		flex-direction: column;
		gap: 16px;
	}

	.mm-group__l {
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.mm-group__r {
		width: 100%;
	}

	.mm-group-tab-list {
		flex-direction: row;
		flex-wrap: nowrap;
		gap: 8px;
		width: max-content;
		min-width: 100%;
	}

	.mm-group-tab-list li {
		white-space: nowrap;
		flex-shrink: 0;
	}
}
