@charset "UTF-8";

/*
 Theme Name:   Lightning Child
 Template:     lightning
*/
/*reset*/
p {
  padding: 0;
  margin: 0;
}

/****************************************
		1. General Setting 
*****************************************/
body {
  color: #000;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  width: 100%;
}

/* IEだけに適応 */
_:lang(x)::-ms-backdrop,
.selector {
  font-family: "Segoe UI", Meiryo, sans-serif;
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
  }
}

/*----- Link -----*/
a {
  color: #000;
  outline: none;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:visited {
  color: #000;
}

.clear {
  clear: both;
  line-height: 0
}

/*----- Clearfix -----*/
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
  min-height: 1%;
  /* for IE 7*/
}

/* Hides from IE-mac */
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* End hide from IE-mac */

.pc {
  display: block;
}

.sp {
  display: none;
}

.tablet {
  display: none;
}

.br-pc {
  display: inline-block;
}

.br-tablet {
  display: none;
}

.br-sp {
  display: none;
}

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

  .br-tablet {
    display: block;
  }
}

@media (max-width: 767px) {
  .br-pc {
    display: none;
  }

  .br-sp {
    display: inline-block;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

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

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

.f-notosans {
  font-family: 'Noto Sans JP', sans-serif;
}

.gradation {
  background-image: -webkit-linear-gradient(90deg, rgba(0, 226, 186, 1), rgba(27, 183, 242, 1) 50%, rgba(3, 137, 224, 1));
  background-image: linear-gradient(90deg, rgba(0, 226, 186, 1), rgba(27, 183, 242, 1) 50%, rgba(3, 137, 224, 1));
}

.txt-gradation {
  background-image: -webkit-linear-gradient(90deg, rgba(0, 226, 186, 1), rgba(27, 183, 242, 1) 50%, rgba(3, 137, 224, 1));
  background-image: linear-gradient(90deg, rgba(0, 226, 186, 1), rgba(27, 183, 242, 1) 50%, rgba(3, 137, 224, 1));
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/*----- Scroll Fade In -----*/
.fade-in-anime {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 2.0s;
  -ms-animation-duration: 2.0s;
  animation-duration: 2.0s;
  -webkit-animation-name: fade-in-anime;
  -ms-animation-name: fade-in-anime;
  animation-name: fade-in-anime;
  visibility: visible !important;
}

@-webkit-keyframes fade-in-anime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fade-in-anime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

/*----- Animate -----*/
.invisible {
  transition: opacity 1.0s ease;
  opacity: 0.0;
}

.visible {
  transition: opacity 1.0s ease;
  opacity: 1.0;
}

.animated {
  -webkit-animation-duration: 1.0s !important;
  animation-duration: 1.0s !important;
  animation-timing-function: ease;
}

.fixed {
  position: fixed;
}

.ico {
  display: inline-block;
  vertical-align: bottom;
}

.ico::before {
  content: '';
  display: inline-block;
  width: 1.0em;
  height: 1.0em;
  margin-right: 0.5em;
  vertical-align: middle;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.ico.ico-pdf::before {
  background-image: url(img/company/icon_pdf.png);
  height: 1.8em;
  width: 1.4em;
}

i.fas {
  margin-left: 1em;
  font-size: 0.8em;
}

.arrow {
  padding-right: 2em;
  position: relative;
}

.arrow::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  right: 0;
}

.arrow.arrow-circle {
  padding-right: 2.5em;
}

.arrow.arrow-circle::before {
  background-color: #00DCFF;
  border-radius: 50%;
  content: '';
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1.4em;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1.4em;
}

.arrow.arrow-circle::after {
  font-size: 0.6em;
  right: 0.6em;
}

.btn {
  background-color: #0389E0;
  border: none;
  border-radius: 0;
  color: #FFF !important;
  display: block;
  font-weight: bold;
  line-height: 1;
  max-width: 300px;
  margin: 0 auto;
  padding: 1em;
  position: relative;
  text-align: center;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 90%;
  white-space: nowrap;
}

.btn.btn-white {
  background-color: #FFF;
  color: #0389E0 !important;
}

@media (min-width: 1025px) {
  .btn:hover {
    background-color: #00DCFF;
  }

  .btn.btn-white:hover {
    background-color: #0389E0;
    color: #FFF !important;
  }
}

.btn.arrow {
  padding-right: 0;
}

.btn.arrow::after {
  right: 1em;
}



/****************************************
  Header, Menu
*****************************************/

#header {
  background-color: #FFF;
  height: 90px;
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  transition: all 0.3s ease;
  width: 100%;
  z-index: 99;
}

@media (min-width: 1025px) {
  body.scrolled #header {
    box-shadow: 0 1px 10px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, .1);
    height: 65px;
    position: fixed;
  }
}

@media (max-width: 810px) {
  #header {
    height: 70px;
  }

  #header.fixed {
    height: 60px;
  }
}

@media (max-width: 414px) {
  #header {
    height: 60px;
  }
}

#header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#header .logo {
  height: auto;
  line-height: 1;
  max-width: 235px;
  margin: 0 0 0 2%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 50%;
  z-index: 999;
}

#header .logo img {
  max-height: 100%;
}

body.scrolled #header .logo {
  max-width: 200px;
}

@media (max-width: 1200px) {
  #header .logo {
    max-width: 200px;
  }
}

@media (max-width: 767px) {
  #header .logo {
    margin-left: 4%;
  }
}

#header .header-nav {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  z-index: 9999;
}

.gnav-container {
  height: 100%;
}

@media (max-width: 1024px) {
  .gnav-container {
    display: none;
  }
}

#header .header-nav #gnav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  height: 100%;
}

#header #gnav .menu-item {
  display: flex;
  align-items: center;
  height: 100%;
  font-weight: bold;
  line-height: 1.2;
}

#header #gnav .menu-item a {
  padding: 0 1.5em;
  width: 100%;
  color: #231815;
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-decoration: none;
}

#header #gnav .menu-item a::before,
#header #gnav .menu-item a::after {
  content: "";
  border-bottom: solid 1px #0389E0;
  bottom: -0.5em;
  display: block;
  position: absolute;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  width: 0;
}

#header #gnav .menu-item a::after {
  left: 25%;
}

#header #gnav .menu-item.current-menu-item>a,
#header #gnav .menu-item.current_page_parent>a,
#header #gnav .menu-item.current-page-ancestor>a,
#header #gnav .menu-item:hover>a {
  color: #0389E0;
}

#header #gnav .menu-item.current-menu-item>a::after,
#header #gnav .menu-item.current_page_parent>a::after,
#header #gnav .menu-item.current-page-ancestor>a::after,
#header #gnav .menu-item:hover>a::after {
  width: 50%;
}


#header #gnav .menu-item.menu-item-contact a {
  align-items: center;
  background-color: #0389E0;
  display: flex;
  color: #FFF;
  height: 100%;
}

#header #gnav .menu-item.menu-item-contact a::after {
  content: none;
}

#header #gnav .menu-item.menu-item-contact:hover a {
  color: #FFF;
}


/*--- HEADER MENU BUTTON ---*/
#header-menu-box {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

/*HEADER MENU BUTTON*/
.header-menu-btn {
  align-items: center;
  color: #0389E0;
  display: flex;
  font-size: 1.8em;
  height: 90px;
  justify-content: center;
  text-align: center;
  width: 90px;
  transition: all 0.3s ease;
}

.header-menu-btn .ico-phone::before {
  height: 1.3em;
  margin: auto;
}

.ico-phone::before {
  background-image: url(img/common/icon_phone.png);
}

@media (min-width: 1025px) {
  .header-tel-btn {
    display: none;
  }
}

@media (max-width: 810px) {
  .header-tel-btn {
    height: 70px;
    width: 70px;
  }
}

@media (max-width: 414px) {
  .header-tel-btn {
    height: 60px;
    width: 60px;
  }
}

#nav-toggle {
  background-color: #0389E0;
  position: relative;
  display: block;
  width: 90px;
  height: 90px;
  padding: 0;
  z-index: 9999;
}

@media (min-width: 1025px) {
  #nav-toggle {
    display: none;
  }
}

@media (max-width: 810px) {
  #nav-toggle {
    height: 70px;
    width: 70px;
  }
}

@media (max-width: 414px) {
  #nav-toggle {
    height: 60px;
    width: 60px;
  }
}

#nav-toggle .menu-line {
  background-color: #FFF;
  display: block;
  height: 3px;
  position: absolute;
  transition: transform .3s;
  width: 40%;
  top: 38%;
  left: 30%;
  margin: auto;
}

#nav-toggle .menu-line.menu-line--center {
  top: 50%;
}

#nav-toggle .menu-line.menu-line--bottom {
  top: 62%;
}

/*active時*/
#nav-toggle.active .menu-line {
  top: 45%;
}

#nav-toggle.active .menu-line.menu-line--top {
  transform: rotate(-45deg);
}

#nav-toggle.active .menu-line.menu-line--center {
  transform: scaleX(0);
}

#nav-toggle.active .menu-line.menu-line--bottom {
  transform: rotate(45deg);
}



/*--- SLIDENAV ---*/
#slidenav {
  -webkit-overflow-scrolling: touch;
  background-color: #EBF5F7;
  display: none;
  height: calc(100% - 20px);
  overflow: scroll;
  padding-top: 10px;
  padding-bottom: 20px;
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  z-index: 99;
}

@media (max-width: 810px) {
  #slidenav {
    top: 70px;
  }
}

@media (max-width: 414px) {
  #slidenav {
    top: 60px;
  }
}

.slide-nav-container {
  padding-bottom: 20px;
}

#slidenav .menu {
  margin-bottom: 5%;
}

#slide-nav-ul {
  list-style-type: none;
  margin: 0 auto;
  width: 90%;
}

#menuopen {
  float: right;
  padding: 4% 0;
  width: 4em;
  color: #fff;
  border-left: solid 1px #FFF;
}

#slide-nav-ul .menu-item {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.4;
  margin: 0;
  padding: 0.6em 0;
  text-align: left;
  border-bottom: solid 2px #0389E0;
}

@media (max-width: 414px) {
  #slide-nav-ul .menu-item {
    font-size: 18px;
  }
}

#slide-nav-ul .menu-item a {
  display: block;
  color: #000;
  padding-right: 2em;
  position: relative;
}

#slide-nav-ul .menu-item .sub-menu {
  margin: 1em 0 0 1em;
}

#slide-nav-ul .menu-item .sub-menu>.menu-item {
  border-bottom: none;
  padding: 0;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 0.5em;
}

@media (max-width: 414px) {
  #slide-nav-ul .menu-item .sub-menu>.menu-item {
    font-size: 12px;
  }
}

#slide-nav-ul .menu-item .sub-menu>.menu-item::before {
  content: '';
  display: inline-block;
  height: 2px;
  width: 0.5em;
  margin-right: 0.5em;
  vertical-align: middle;
  background-color: #00DCFF;
}

#slide-nav-ul .menu-item .sub-menu {
  display: none;
  width: 100%;
}

#slide-nav-ul .menu-item.menu-item-has-children {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

#slide-nav-ul .menu-item.menu-item-has-children a::after {
  content: none;
}

#slide-nav-ul .menu-item.menu-item-has-children .accordion-btn {
  display: block;
  position: relative;
  height: 1.2em;
  opacity: 1;
  visibility: visible;
  width: 1.2em;
}

#slide-nav-ul .menu-item.menu-item-has-children .accordion-btn::before,
#slide-nav-ul .menu-item.menu-item-has-children .accordion-btn::after {
  background-color: #0389E0;
  bottom: auto;
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.2em;
  height: 2px;
  border: none;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

#slide-nav-ul .menu-item.menu-item-has-children .accordion-btn::before {
  display: block;
  bottom: 0;
  width: 1.2em;
  border-bottom: solid 2px #0389E0;
}

#slide-nav-ul .menu-item.menu-item-has-children .accordion-btn::after {
  transform: rotate(90deg);
  transition: 0.5s;
}

#slide-nav-ul .menu-item.menu-item-has-children .accordion-btn.active::after {
  transform: rotate(0);
}

#slidenav #slide-nav-sub {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 5%;
  width: 90%;
}

#slidenav #slide-nav-sub .menu-item {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: normal;
  margin: 0 0 0.8em;
  padding-right: 1em;
  width: 50%;
  text-align: left;
}

@media (max-width: 414px) {
  #slidenav #slide-nav-sub .menu-item {
    font-size: 12px;
  }
}

#slidenav #slide-nav-sub .menu-item:nth-child(even) {
  margin-right: 0;
}

#slidenav #slide-nav-sub .menu-item a {
  display: block;
  color: #000;
  text-align: center;
}

#slidenav #slide-nav-sub .menu-item::before {
  content: '';
  display: inline-block;
  height: 2px;
  width: 0.5em;
  margin-right: 0.5em;
  vertical-align: middle;
  background-color: #00DCFF;
}

@media (max-width: 1024px) {
  #nav-toggle {
    display: block;
  }
}

@media (max-width: 810px) {
  #nav-toggle {
    height: 70px;
    width: 70px;
  }
}

@media (max-width: 414px) {
  #nav-toggle {
    height: 60px;
    width: 60px;
  }
}

#bl_contents_slidenav {
  margin: 0 auto;
  width: 90%;
}

#bl_contents_slidenav .bl_contents_item {
  background-color: #FFF;
  padding: 5%;
  margin: 0 auto 5%;
  text-align: center;
  width: 100%;
}

#bl_contents_slidenav .bl_contents_title {
  background-color: transparent;
  color: #000;
  font-size: calc(1rem * 1.86);
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1em;
  padding: 0;
}

.ico-mail::before {
  background-image: url(img/common/icon_mail.png);
  margin-right: 0.8em;
  width: 1.2em;
}

#bl_contents_slidenav .btn btn-contact {
  font-size: calc(1rem * 1.15);
}

#bl_contents_slidenav .tel {
  color: #0389E0;
  display: block;
  line-height: 1;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
  white-space: nowrap;
}

#bl_contents_slidenav a.tel {
  color: #0389E0;
}

#bl_contents_slidenav .ico-phone::before {
  margin-right: 0.2em;
  width: 0.8em;
}

#bl_contents_slidenav .text {
  margin-bottom: 0;
}

#bl_contents_slidenav .text>* {
  line-height: 1.4;
}

/****************************************
  Contents
*****************************************/
#container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  margin-top: 90px;
  background-color: #FFF;
}

@media (max-width: 810px) {
  #container {
    margin-top: 70px;
  }
}

@media (max-width: 414px) {
  #container {
    margin-top: 60px;
  }
}


/****************************************
  Footer
*****************************************/

#footer {
  background-color: #EBF5F7;
  border: none;
  position: relative;
  width: 100%;
}

#footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0 50px;
  width: 94%;
}

@media (max-width: 767px) {
  #footer .footer-inner {
    padding: 8% 0;
  }
}

@media (min-width: 1025px) {
  #footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

#footer .footer-content>* {
  width: 100%;
}

@media (min-width: 1025px) {
  #footer .footer-content .content-l {
    width: 30%;
  }

  #footer .footer-content .content-r {
    width: 60%;
    max-width: 670px;
  }
}

@media (max-width: 1024px) {
  #footer .footer-content .content-l {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  #footer .footer-logo {
    margin: 0 auto 5%;
  }
}

#footer .footer-logo {
  height: auto;
  max-width: 360px;
  margin-bottom: 20px;
  width: 85%;
}

#footer .footer-info {
  margin-bottom: 20px;
  text-align: left;
}

#footer .footer-info .txt {
  margin: 0;
  padding: 0;
}

#footer .footer-info .txt>span {
  display: block;
}

@media (min-width: 768px) {
  #footer .footer-info .txt>span {
    display: inline-block;
  }

  #footer .footer-info .txt>span:not(:first-child) {
    padding-left: 1em;
  }
}

@media (max-width: 1024px) {
  #footer .footer-info {
    margin-bottom: 8%;
    text-align: center;
  }
}

/*---------- FOOTER NAVI ----------*/
.footer-nav-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.footer-nav-area #footer-nav,
.footer-nav-area #footer-nav-2 {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  width: 100%;
}

.footer-nav-area #footer-nav .menu-item,
.footer-nav-area #footer-nav-2 .menu-item {
  padding-right: 0.5em;
  margin-bottom: 0.7em;
  white-space: nowrap;
  width: 25%;
}

.footer-nav-area #footer-nav .menu-item:nth-child(4n + 1),
.footer-nav-area #footer-nav-2 .menu-item:nth-child(4n + 1) {
  width: 18%;
}

.footer-nav-area #footer-nav .menu-item:nth-child(4n + 2),
.footer-nav-area #footer-nav-2 .menu-item:nth-child(4n + 2) {
  width: 32%;
}

.footer-nav-area #footer-nav .menu-item::before,
.footer-nav-area #footer-nav-2 .menu-item::before {
  content: '';
  display: inline-block;
  height: 2px;
  width: 0.7em;
  margin-right: 0.5em;
  vertical-align: middle;
  background-color: #00DCFF;
}

.footer-nav-area #footer-nav .menu-item>a,
.footer-nav-area #footer-nav-2 .menu-item>a {
  color: #000;
}

.footer-nav-area .footer-nav-wrap {
  width: 100%;
}

.footer-nav-area .footer-nav-wrap:not(:last-child) {
  border-bottom: solid 1px #000;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

@media (max-width: 1200px) {

  .footer-nav-area #footer-nav .menu-item,
  .footer-nav-area #footer-nav-2 .menu-item {
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .footer-nav-area {
    display: none;
  }
}

@media (max-width: 767px) {

  .footer-nav-area #footer-nav,
  .footer-nav-area #footer-nav-2 {
    width: 100%;
  }
}

/*---------- FOOTER SNS LIST ----------*/
.footer-sns-list {
  display: flex;
  margin: 0;
}

.footer-sns-item {
  font-size: 2em;
  margin: 0 0.8em 0 0;
  line-height: 1;
}

.footer-sns-item:last-child {
  margin-right: 0;
}

.footer-sns-item a {
  color: #000;
}

@media (max-width: 1024px) {
  .footer-sns-list {
    justify-content: center;
  }
}

/*---------- COPYRIGHT ----------*/
#footer .copyright {
  font-size: 14px;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
  width: 100%;
}

@media (max-width: 767px) {
  #footer .copyright {
    font-size: 12px;
    text-align: center;
  }
}

/*---------- FLOATING BANNER ----------*/
.fl-bnr-area {
  bottom: 30px;
  right: 30px;
  position: fixed;
  width: 18%;
  z-index: 10;
}

.fl-bnr {
  background-color: #0389E0;
  padding: 10px;
  transition: 0.5s;
  width: 100%;
}

.fl-bnr-inner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  align-items: center;
  justify-content: center;
  display: flex;
  height: 100%;
  width: 100%;
}

.fl-bnr-ttl {
  color: #FFF;
  font-weight: bold;
  line-height: 1.4;
}

.fl-bnr-ttl-jp {
  display: block;
  font-size: 20px;
}

.fl-bnr-ttl-en {
  display: block;
  font-size: 14px;
}

@media (min-width: 768px) {
  .fl-bnr-area {
    max-width: 200px;
  }

  .fl-bnr {
    aspect-ratio: 1;
    box-shadow: 0 0 3px #999999;
  }

  #fl-bnr__history .fl-bnr-inner {
    background-image: url(img/common/bg_bnr_30th.png);
    flex-direction: column;
    position: absolute;
    left: 10px;
    top: 10px;
    height: calc(100% - 20px);
    width: calc(100% - 20px);
  }

  #fl-bnr__history .fl-bnr-logo {
    margin: 0 auto 15px;
    width: 50%;
  }

  #fl-bnr__recruit .fl-bnr-inner {
    background-image: url(img/common/fl_bnr_recruit.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-direction: column;
    position: absolute;
    left: 10px;
    top: 10px;
    height: calc(100% - 20px);
    text-decoration: none;
    width: calc(100% - 20px);
  }

  .fl-bnr-ttl {
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .fl-bnr-ttl-jp {
    font-size: 16px;
  }

  .fl-bnr-ttl-en {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .fl-bnr-area {
    bottom: 0;
    height: 100px;
    left: 0;
    right: auto;
    width: calc(100% - 100px);
  }

  .fl-bnr {
    height: 100%;
    width: 100%;
  }

  .fl-bnr-ttl-jp {
    font-size: 22px;
  }

  #fl-bnr__history .fl-bnr-logo {
    margin-right: 20px;
  }

  #fl-bnr__history .fl-bnr-logo img {
    height: 50px;
  }

  #fl-bnr__recruit .fl-bnr-inner {
    background-image: url(img/common/fl_bnr_recruit_sp.png);
  }
}

@media (max-width:480px) {
  .fl-bnr-area {
    height: 50px;
    width: calc(100% - 50px);
  }

  .fl-bnr {
    padding: 7px;
  }

  #fl-bnr__history .fl-bnr-logo img {
    height: 30px;
  }

  .fl-bnr-ttl-jp {
    font-size: 16px;
  }

  .fl-bnr-ttl-en {
    font-size: 10px;
  }
}


/*ページトップへ*/
button#scroll-to-top {
  background-color: #00DCFF;
  border: none;
  height: 100px;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100px;
}

.scroll-to-top__arrow {
  color: #FFF;
  font-size: 2em;
}

.scroll-to-top__arrow i {
  margin: auto;
}

@media (min-width:768px) {
  button#scroll-to-top {
    display: none;
  }
}

@media (max-width:480px) {
  button#scroll-to-top {
    height: 50px;
    width: 50px;
  }
}


/****************************************
  Main
*****************************************/


#main {
  width: 100%;
}

/*---------- SIDE CONTENTS ----------*/
#side .side-contents {
  transition: 0.3s all;
}

#side .side-contents.fixed {
  max-width: 235px;
  width: 20%;
  position: fixed;
  top: 100px;
  z-index: 2;
}

#side .side-contents .contents-block {
  margin-bottom: 50px;
}

#side .side-contents h2 {
  background: none;
  border: none;
  color: #0389E0;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  border-bottom: solid 1px #0389E0;
  line-height: 1.2;
  margin: 0 0 1em;
  padding: 0 0 0.5em;
  position: relative;
  text-align: left;
  transition: all 0.3s ease;
}

#side .side-contents ul {
  margin-bottom: 10px;
}

#side .side-contents ul>li {
  line-height: 1.4;
  margin-bottom: 0.5em;
  padding-left: 1.2em;
  position: relative;
}

#side .side-contents ul>li::before {
  background-color: #00DCFF;
  content: '';
  display: inline-block;
  height: 2px;
  margin-right: 0.5em;
  left: 0;
  position: absolute;
  top: 0.6em;
  vertical-align: middle;
  width: 0.7em;
}

#side .contents-block__archive ul>li::before {
  content: none;
}

#side .contents-block__archive ul>li {
  padding: 0 1.2em 0 0;
}

#side .contents-block__archive ul>li::after {
  content: "\f078";
  color: #00DCFF;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 0.6em;
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  right: 0;
}

#side .side-contents ul>li>a {
  color: #999999;
  display: block;
}

#side .side-contents ul>li.current {
  font-weight: bold;
}

@media (max-width: 1200px) {
  #container .contents_wrapper.col-2 #main {
    margin: 0;
  }

  #side .side-contents ul>li {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  #side .side-contents>* {
    width: 100%;
  }

  #side .contents-block__archive ul {
    display: flex;
    flex-wrap: wrap;
  }

  #side .contents-block__archive ul>li {
    margin: 0 8% 3% 0;
    width: calc(50% - 8% / 2);
  }

  #side .contents-block__archive ul>li:nth-child(even) {
    margin-right: 0;
  }
}


#container .contents_wrapper.col-2 {
  margin: 0 auto;
  max-width: 1200px;
  padding-top: 30px;
  width: 90%;
  overflow: inherit;
}

#container .contents_wrapper.col-2 #main {
  max-width: 900px;
  margin: 0 0 0 auto;
  width: 100%;
}

#container .contents_wrapper.col-2 #side {
  padding-right: 30px;
  max-width: 265px;
  width: 32%;
}

@media (min-width: 769px) {
  .contents_wrapper.col-2 .section .section-inner {
    padding-top: 0;
    width: 100%;
  }
}

@media (min-width: 768px) {
  #container .contents_wrapper.col-2 {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }

  #container .contents_wrapper.col-2 #side {
    overflow: inherit;
  }

  #container .contents_wrapper.col-2 #side .side-contents.fixed {
    position: fixed;
    top: 80px;
  }

  /*
  #container .contents_wrapper.col-2 #side .side-contents{
    position:-webkit-sticky;
    position: sticky;
    top:0;
  }
  */
}

@media (max-width: 1200px) {
  #container .contents_wrapper.col-2 #main {
    margin: 0;
  }
}

@media (max-width: 767px) {

  #container .contents_wrapper.col-2 #main,
  #container .contents_wrapper.col-2 #side {
    width: 100%;
    max-width: none;
  }

  #container .contents_wrapper.col-2 {
    padding-top: 0;
    width: 100%;
  }

  #container .contents_wrapper.col-2 #side {
    width: 92%;
    margin: 0 auto;
    padding-bottom: 5%;
    padding-right: 0;
  }

  .contents_wrapper__media #side .side-contents .contents-block__archive {
    text-align: center;
    width: 100%;
  }

  .contents_wrapper__media #side .side-contents h2 {
    text-align: center;
  }

  .contents_wrapper__media #side .side-contents ul {
    display: inline-block;
  }
}



/*----- PASSWORD FORM -----*/
.post-password-form label {
  margin: 0;
  vertical-align: middle;
}

input[name='post_password'] {
  width: 10em;
}

.btn.btn-primary {
  width: auto;
  display: inline;
  margin: 0;
}