@charset "UTF-8";
/*
Theme Name: original_theme
Author:original_theme
Description:original_theme
Version: 2.01
License: original_theme
Text Domain: original_theme
*/
/*====================================

  ■メディアクエリ

=====================================*/
/*====================================

  ■変数　　※文字色、背景色など使い回せるもののみ使用

=====================================*/
.text-start {
  text-align: left;
}

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

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

@media screen and (min-width: 768px) {
  .text-md-start {
    text-align: left;
  }
}

@media screen and (min-width: 768px) {
  .text-md-center {
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .text-md-right {
    text-align: right;
  }
}

/*====================================
ローディング
fukidashi3
=====================================*/
/*基本*/
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 0.3s;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
#loading.loading_underpage {
  transition: all 0s;
  background: #fff;
}

.dropdown-toggle {
  padding-right: 20px !important;
}
@media screen and (max-width: 1199px) {
  .dropdown-toggle {
    display: none !important;
  }
}

i {
  font-weight: 400;
}

.center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .center {
    text-align: left;
  }
}
.center span {
  font-weight: 600;
}

.h1block {
  display: none;
}

.heebo {
  font-family: "Heebo", sans-serif;
}

.oswald {
  font-family: "Oswald", sans-serif;
}

/*パーセント表示*/
.progress {
  width: 100vw;
  height: 100vh;
  transition: all 0.3s;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.progress .progress__inner {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  min-width: 150px;
  text-align: center;
}
.progress .progress__inner img {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: 200px;
  margin-bottom: 20px;
}
.progress .progress__inner::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 45px);
  background: #fff;
}
.progress .progress_bar {
  border-top: 2px solid #89b734;
  position: absolute;
  bottom: -10px;
  width: 0%;
  display: block;
  z-index: 1;
}
.progress .progress_text {
  font-size: 18px;
  text-align: center;
  display: block;
  margin-top: 10px;
  color: #89b734;
}
.progress .progress_complete .progress_bar {
  border-top-color: #fff;
}
.progress p {
  color: #104000;
}

/*初回*/
.d_none {
  display: none !important;
}

/*初回以外　非表示*/
.loaded {
  opacity: 0;
  visibility: hidden;
}

/*回転アニメーション*/
.loader {
  position: absolute;
  top: calc(50% - 120px);
  left: calc(50% - 25px);
  width: 50px;
  height: 50px;
}

.loader div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-sizing: border-box;
  opacity: 0.8;
}

.one {
  border-top: 3px solid #8fb259;
  animation: rotate-left 3s linear infinite;
}

.two {
  border-right: 3px solid #cccc52;
  animation: rotate-right 3s linear infinite;
}

.three {
  border-bottom: 3px solid #ffd933;
  animation: rotate-right 3s linear infinite;
}

.four {
  border-left: 3px solid #ff7f00;
  animation: rotate-right 3s linear infinite;
}

@keyframes rotate-left {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes rotate-right {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*====================================

フェードイン処理

=====================================*/
.fade-wrap > * {
  opacity: 0;
  transform: translateY(50px);
  transition: 1.2s;
}

.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: 1.2s;
}

.fade-up--stop {
  opacity: 0;
  transform: translateY(0px);
  transition: 1.2s;
}

.delay1 {
  transition-delay: 0.3s;
}

.delay2 {
  transition-delay: 0.6s;
}

.delay3 {
  transition-delay: 0.9s;
}

.delay4 {
  transition-delay: 1.2s;
}

.delay5 {
  transition-delay: 1.5s;
}

.delay6 {
  transition-delay: 1.8s;
}

/*====================================

  ■基本設定

=====================================*/
.medium {
  font-weight: 600;
}

.centertext {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .centertext {
    text-align: left;
  }
}

.text {
  color: #333333;
}
.text a {
  border-bottom: 1px solid;
  color: #1354B4;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 400;
  color: #333333;
  background-color: #fff;
  letter-spacing: 0.05em;
  overflow: hidden;
}
@media screen and (max-width: 1056px) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }
}

.visible-banner {
  display: none !important;
}
@media screen and (max-width: 991px) {
  .visible-banner {
    display: block !important;
  }
}

/*reCAPTCHA*/
.grecaptcha-badge {
  visibility: hidden;
}

/* 文字飛ばし */
.cleartxt {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/*グローバル*/
a:focus,
*:focus {
  outline: none;
}

.wp-person a:focus .gravatar,
a:focus,
a:focus .media-icon img {
  box-shadow: none;
}

input {
  border: none;
}

a {
  transition: all 0.5s;
  color: inherit;
}
a:hover img {
  opacity: 0.8;
}

.img-responsive {
  display: inline-block;
}

li {
  list-style: none;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

.disc li {
  position: relative;
}
.disc li::before {
  position: absolute;
  left: -10px;
  width: 5px;
  height: 5px;
  background-color: #655046;
  content: "";
  top: 11px;
  border-radius: 50%;
}

@media screen and (max-width: 991px) {
  .hidden-sm2 {
    display: none !important;
  }
}

.visible-sm2 {
  display: none !important;
}
@media screen and (max-width: 991px) {
  .visible-sm2 {
    display: block !important;
  }
}

.visible-md {
  display: none !important;
}
@media screen and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
}

/*====================================

  ■ヘッダー

=====================================*/
/*ヘッダー固定の高さ調整*/
@media screen and (max-width: 1199px) {
  #pagetop {
    height: 51px;
  }
}

header {
  position: relative;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}

.h1_group {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 1199px) {
  .h1_group {
    display: none;
  }
}

.header__inner {
  position: absolute;
  background: #202f55;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0px 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  z-index: 20;
  letter-spacing: 0;
  width: 100%;
  margin: auto;
  /*ロゴ*/
  /*電話番号*/
  /*お問い合わせ*/
  /*グローバルメニューの親*/
}
@media screen and (min-width: 1200px) {
  .header__inner {
    flex-wrap: nowrap;
  }
}
@media screen and (max-width: 1400px) {
  .header__inner {
    padding: 8px 14px;
  }
}
@media screen and (max-width: 1199px) {
  .header__inner {
    top: 0;
    margin: 0;
    width: 100%;
    padding: 18px 14px;
    border-radius: 0;
  }
}
@media screen and (max-width: 480px) {
  .header__inner {
    padding: 18px 30px;
  }
}
.header__inner .logoblock {
  width: 100%;
  order: 1;
  padding: 6px 0 6px 0px;
  max-width: 188px;
  margin-right: auto;
}
@media screen and (max-width: 1400px) {
  .header__inner .logoblock {
    max-width: 150px;
  }
}
@media screen and (max-width: 1199px) {
  .header__inner .logoblock {
    max-width: 200px;
    margin-right: auto;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .header__inner .logoblock {
    max-width: 150px;
  }
}
.header__inner .logoblock h1 {
  font-size: 12px;
  padding-left: 0px;
  color: #949494;
  margin-right: auto;
}
@media screen and (max-width: 1199px) {
  .header__inner .logoblock h1 {
    display: none;
  }
}
.header__inner .logoline {
  display: flex;
  order: 3;
}
@media screen and (max-width: 1199px) {
  .header__inner .logoline {
    display: none;
  }
}
.header__inner .logoline a {
  margin: 0 5px;
  display: block;
}
@media screen and (max-width: 1056px) {
  .header__inner .logoline a {
    margin: 0 3px;
  }
}
.header__inner .header__tel {
  order: 3;
  line-height: 1;
  margin-right: 20px;
  display: none;
}
@media screen and (max-width: 1600px) {
  .header__inner .header__tel {
    margin-right: 10px;
  }
}
@media screen and (max-width: 1199px) {
  .header__inner .header__tel {
    display: block;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #1354B4;
    padding: 3px 2px 3px 2px;
    width: 100%;
    line-height: 1.3;
    max-width: 36px;
    min-width: 36px;
    order: 2;
    margin-right: 5px;
    margin-left: 5px;
    text-align: center;
    display: none;
  }
}
.header__inner .header__tel .tel_link {
  font-size: 26px;
  font-family: "Gabarito", sans-serif;
}
@media screen and (max-width: 1600px) {
  .header__inner .header__tel .tel_link {
    margin-right: 10px;
    font-size: 22px;
  }
}
@media screen and (max-width: 1199px) {
  .header__inner .header__tel .tel_link {
    margin-right: 0px;
  }
}
.header__inner .header__tel .tel_link img {
  max-width: 28px;
  margin: 0 3px 4px 0;
}
@media screen and (max-width: 1600px) {
  .header__inner .header__tel .tel_link img {
    max-width: 22px;
  }
}
@media screen and (max-width: 1199px) {
  .header__inner .header__tel .tel_link img {
    max-width: 11px;
    margin: 0;
  }
}
.header__inner .header__tel p {
  font-size: 12px;
  text-align: center;
  margin-top: 5px;
}
.header__inner .header__contact {
  order: 4;
}
.header__inner .header__contact a {
  color: #fff;
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 20px 30px;
  font-size: 15px;
  max-width: 50px;
  border-radius: 6px;
  margin-left: 5px;
  margin-right: 36px;
  position: relative;
  background: #0095d9;
  z-index: 0;
  line-height: 1;
  transition: 0.3s;
}
.header__inner .header__contact a:hover {
  opacity: 0.8;
  transition-duration: 0.7s;
}
@media screen and (min-width: 1200px) {
  .header__inner .header__contact a {
    margin-left: 30px;
    width: 100%;
    max-width: 180px;
    text-align: center;
    border-radius: 30px;
  }
}
@media screen and (max-width: 1600px) {
  .header__inner .header__contact a {
    max-width: 34px;
    padding: 10px 10px;
    font-size: 12px;
    margin-left: 6px;
    margin-right: 0;
  }
}
@media screen and (max-width: 1199px) {
  .header__inner .header__contact a {
    order: 4;
    margin-right: 40px;
    padding: 11px 11px 12px;
    margin-left: 0;
    display: none;
  }
}
.header__inner .header__contact a img {
  max-width: 20px;
  margin-right: 10px;
}
@media screen and (max-width: 1600px) {
  .header__inner .header__contact a img {
    max-width: 17px;
    margin-right: 5px;
  }
}
@media screen and (max-width: 1199px) {
  .header__inner .header__contact a img {
    margin-right: 0;
  }
}
@media screen and (max-width: 1600px) {
  .header__inner .header__contact a .hiddenone {
    display: none;
  }
}
.header__inner .header__menu {
  order: 4;
  width: 100%;
  max-width: 860px;
}
@media screen and (min-width: 1200px) {
  .header__inner .header__menu {
    order: 2;
    margin-left: auto;
    width: 100%;
  }
}
@media screen and (max-width: 1600px) {
  .header__inner .header__menu {
    max-width: 700px;
  }
}
@media screen and (max-width: 1199px) {
  .header__inner .header__menu {
    margin-left: 0;
    max-width: 550px;
  }
}
@media screen and (max-width: 1056px) {
  .header__inner .header__menu {
    max-width: 540px;
  }
}
@media screen and (max-width: 1199px) {
  .header__inner .header__menu {
    max-width: none;
  }
}

.logo2 {
  display: none;
}

.menu_fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-top: none;
  z-index: 1000;
}
.menu_fixed .header__inner {
  width: 100%;
  background: rgba(32, 47, 85, 0.96);
}
.menu_fixed .header__inner .navbar-nav.nav > li > a:hover, .menu_fixed .header__inner .navbar-nav.nav > li > a:focus {
  text-decoration: none;
  opacity: 1;
}
#menu-item-4055 {
  display: block;
}
@media screen and (min-width: 1200px) {
  #menu-item-4055 {
    display: none;
  }
}

#menu-item-4042 {
  display: none;
}
@media screen and (min-width: 1200px) {
  #menu-item-4042 {
    display: block;
  }
}

.navbar {
  position: static;
}
@media screen and (min-width: 1200px) {
  .navbar {
    width: 100%;
    text-align: center;
    display: inline-block;
    vertical-align: top;
  }
}

/*グローバルナビ　親ブロック*/
@media screen and (min-width: 1200px) {
  .navbar {
    width: 100%;
    text-align: center;
    display: inline-block;
    vertical-align: top;
  }
}

.collapse {
  display: none;
}
.collapse.in {
  display: block;
}

.navbar-collapse,
.navbar-form {
  border-color: transparent;
  padding-right: 0;
  padding-left: 0;
}

@media screen and (max-width: 1199px) {
  .navbar-header {
    float: left !important;
  }
}

.navbar-collapse {
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid transparent;
}
@media screen and (min-width: 1200px) {
  .navbar-collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
}
@media screen and (max-width: 1199px) {
  .navbar-collapse {
    padding-right: 0px;
    padding-left: 0px;
  }
}
/*グローバルナビ*/
.navbar-nav {
  margin: 0px -15px;
}
@media screen and (max-width: 1199px) {
  .navbar-nav {
    max-width: none;
    margin: 0px;
    max-width: 100%;
    display: block;
    margin-top: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .navbar-nav {
    float: none;
    margin: 0;
    margin-left: auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1200px) {
  .navbar-nav.nav > li {
    text-align: center;
    position: relative;
    flex-basis: auto;
  }
}
.navbar-nav.nav > li.active > a {
  position: relative;
  text-decoration: none;
  opacity: 1;
}
@media screen and (max-width: 1199px) {
  .navbar-nav.nav > li.active > a {
    background-color: #1354B4;
  }
}
.navbar-nav.nav > li.active > a::before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
}
@media screen and (max-width: 1199px) {
  .navbar-nav.nav > li.active > a::before {
    display: none;
  }
}
.navbar-nav.nav > li.menu-item-has-children a {
  position: relative;
}
.navbar-nav.nav > li.menu-item-has-children a:hover, .navbar-nav.nav > li.menu-item-has-children a:focus {
  text-decoration: none;
  opacity: 1;
  border: none;
}
.navbar-nav.nav > li.menu-item-has-children a:hover::before, .navbar-nav.nav > li.menu-item-has-children a:focus::before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #1354B4;
}
@media screen and (max-width: 1199px) {
  .navbar-nav.nav > li.menu-item-has-children a:hover::before, .navbar-nav.nav > li.menu-item-has-children a:focus::before {
    display: none;
  }
}
.navbar-nav.nav > li > a {
  position: relative;
  display: block;
  padding: 30px 10px;
  line-height: 1.4;
  color: #fff;
  height: 100%;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1600px) {
  .navbar-nav.nav > li > a {
    font-size: 15px;
    padding: 30px 7px;
  }
}
@media screen and (max-width: 1400px) {
  .navbar-nav.nav > li > a {
    font-size: 15px;
    padding: 14px 4px;
  }
}
@media screen and (max-width: 1199px) {
  .navbar-nav.nav > li > a {
    text-align: left;
    border-bottom: 1px solid #fff;
    font-size: 15px;
    letter-spacing: 2px;
    padding: 14px 10px;
    display: block;
    color: #fff;
  }
}
.navbar-nav.nav > li > a:hover, .navbar-nav.nav > li > a:focus {
  text-decoration: none;
  opacity: 1;
  position: relative;
  background: transparent;
  transition-duration: 0s;
}
@media screen and (max-width: 1199px) {
  .navbar-nav.nav > li > a:hover, .navbar-nav.nav > li > a:focus {
    color: #fff;
    background-color: #1354B4;
    transition-duration: 0.7s;
  }
}
.navbar-nav.nav > li > a:hover::before, .navbar-nav.nav > li > a:focus::before {
  content: "";
  transition-duration: 0.7s;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
}
@media screen and (max-width: 1199px) {
  .navbar-nav.nav > li > a:hover::before, .navbar-nav.nav > li > a:focus::before {
    display: none;
  }
}
.navbar-nav.nav > li > a .caret {
  margin: 0;
  content: "\e900";
  font-family: "origin-icon" !important;
  border: none;
  vertical-align: baseline;
}
.navbar-nav.nav > li > a .caret::before {
  content: "";
  background-image: url(images/caret.svg);
  width: 12px;
  height: 12px;
  font-size: 10px;
  font-weight: 400;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 5px;
}
@media screen and (max-width: 1199px) {
  .navbar-nav.nav > li > a .caret::before {
    display: none;
  }
}
.navbar-nav.nav .logo_display {
  border-bottom: none;
  width: 33%;
}
.navbar-nav.nav .logo_display > a {
  display: block;
  border-bottom: none;
  position: relative;
  padding: 20px 0 38px 36px !important;
  background-color: transparent;
}
.navbar-nav.nav .logo_display > a span {
  position: relative;
}
.navbar-nav.nav .logo_display > a span::before {
  content: "";
  position: absolute;
  top: 0 !important;
  bottom: 0 !important;
  margin: auto !important;
  width: 38px !important;
  height: 38px !important;
  background-size: cover;
  background-image: url(images/Facebook_Logo_Secondary.svg);
  right: 0px !important;
  left: auto !important;
  background-color: transparent !important;
}
.navbar-nav.nav .logo_display2 > a span::before {
  background-image: url(images/X.svg);
}
.navbar-nav.nav .logo_display3 > a span::before {
  background-image: url(images/Instagram.svg);
}
.navbar-nav.nav .logo_display4 > a span::before {
  background-image: url(images/youtube.svg);
}
.navbar-nav.nav .logo_display5 > a span::before {
  background-image: url(images/note.svg);
}
.navbar-nav.nav .logo_display6 > a span::before {
  background-image: url(images/LINE.svg);
}

.has_children a {
  padding-right: 20px !important;
  position: relative;
}

/*ドロップダウンメニュー*/
.dropdown-menu {
  box-shadow: none !important;
  background-color: transparent;
}
@media screen and (min-width: 1200px) {
  .dropdown-menu {
    display: none;
    position: absolute;
    min-width: 170px;
    border: none;
    margin: 0;
    padding: 0;
  }
}
@media screen and (max-width: 1199px) {
  .dropdown-menu {
    display: block !important;
    flex-wrap: wrap !important;
    border: none !important;
    position: static !important;
    margin: auto !important;
    padding: 0 !important;
    float: none !important;
    width: 100% !important;
  }
}
@media screen and (max-width: 1199px) {
  .dropdown-menu > li {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .dropdown-menu > li {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .dropdown-menu > li {
    padding: 0;
    text-decoration: none;
    border-bottom: 1px solid #bbb;
  }
}
.dropdown-menu > li > a {
  padding-right: auto !important;
  text-align: center;
  color: #fff;
  background-color: #1d3966;
}
@media screen and (max-width: 1199px) {
  .dropdown-menu > li > a {
    padding: 8px 14px !important;
    text-decoration: none;
    line-height: 1.5 !important;
    white-space: normal;
    font-size: 13px;
    text-align: center;
    color: #fff;
  }
}
@media screen and (min-width: 1200px) {
  .dropdown-menu > li > a {
    padding: 10px 5px !important;
    text-decoration: none;
  }
}
.dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover {
  color: #1354B4;
  background-color: #fff;
  opacity: 0.8;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > a:hover {
  color: #1354B4;
  background-color: #fff;
}

@media screen and (min-width: 1200px) {
  .nav > li:hover > .dropdown-menu {
    display: block;
  }
}

.children_top a {
  border-radius: 10px 10px 0 0;
}
@media screen and (max-width: 991px) {
  .children_top a {
    border-radius: 0 0 0 0;
  }
}

.children_bottom {
  border-bottom: none !important;
}
.children_bottom a {
  border-radius: 0px 0px 10px 10px;
}
@media screen and (max-width: 1199px) {
  .children_bottom a {
    border-radius: 0 0 0 0;
    border-bottom: 1px solid #ddd;
  }
}

@media screen and (min-width: 1200px) {
  .cargo {
    display: none !important;
  }
}
.cargo .dropdown-menu {
  display: flex !important;
  max-width: 155px;
  min-width: auto;
  margin-top: 30px !important;
}
.cargo .dropdown-menu li {
  width: auto;
}

/*toggleボタン*/
.navbar-toggle {
  border-radius: 4px;
  position: relative;
  float: right;
  background-image: none;
  position: relative;
  height: 23px;
  width: 30px;
  position: absolute;
  top: 37px;
  margin: auto 30px auto 8px;
  right: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .navbar-toggle {
    top: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .navbar-toggle {
    display: none !important;
  }
}
.navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-toggle .icon-bar:nth-of-type(2) {
  display: none;
}
.navbar-toggle .icon-bar:nth-of-type(3) {
  display: block;
  width: 90%;
  height: 2px;
  transform: rotate(-45deg);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: all 0.3s;
}
.navbar-toggle .icon-bar:last-child {
  display: block;
  width: 90%;
  height: 2px;
  transform: rotate(-135deg);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: all 0.3s;
}
.navbar-toggle .sr-only {
  display: none;
}
.navbar-toggle.collapsed .icon-bar:nth-of-type(2) {
  display: block;
  width: 90%;
  height: 2px;
  position: static;
  margin: 0 auto 4px;
  transition: all 0.3s;
}
.navbar-toggle.collapsed .icon-bar:nth-of-type(3) {
  transform: rotate(0deg);
  position: static;
  margin-bottom: 4px;
  transition: all 0.3s;
}
.navbar-toggle.collapsed .icon-bar:last-child {
  transform: rotate(0deg);
  position: static;
  margin-bottom: 4px;
  transition: all 0.3s;
}

.h1sub {
  background-color: #c9c9c9;
  padding: 4px 0;
}

/*====================================

  ■トップページ

=====================================*/
.service03_side {
  width: 100%;
  position: relative;
  z-index: 0;
}
.service03_side::before {
  background-color: #f5f5f5;
  width: 1300px;
  left: 0;
  top: 0;
  height: 100%;
  z-index: -1;
  position: absolute;
  content: "";
  border-radius: 0 20px 20px 0;
}
@media screen and (max-width: 1600px) {
  .service03_side::before {
    width: 1000px;
  }
}
@media screen and (max-width: 1199px) {
  .service03_side::before {
    width: 800px;
  }
}
@media screen and (max-width: 991px) {
  .service03_side::before {
    width: 600px;
  }
}
@media screen and (max-width: 767px) {
  .service03_side::before {
    display: none;
  }
}
.service03_side .img {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .service03_side .img {
    display: none;
  }
}
.service03_side .img img {
  border-radius: 0 20px 20px 0;
}
.service03_side .leftside {
  margin-left: 60px;
}
@media screen and (max-width: 767px) {
  .service03_side .leftside {
    margin-left: 20px;
  }
}

.service02_side a {
  position: relative;
  display: block;
  background-color: #f5f5f5;
  padding: 40px;
  border-radius: 20px;
}
@media screen and (max-width: 991px) {
  .service02_side a {
    padding: 30px 15px;
  }
}
@media screen and (max-width: 767px) {
  .service02_side a {
    padding: 30px;
  }
}
.service02_side a .titleflex2 .text {
  width: 100%;
  max-width: 280px;
  margin-right: auto;
  margin-top: 20px;
}
.service02_side a .float {
  position: absolute;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.service02_side a .rightside img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 30px;
}
@media screen and (max-width: 991px) {
  .service02_side a .rightside img {
    position: absolute;
    top: 40px;
    bottom: auto;
    margin: auto;
    right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .service02_side a .rightside img {
    top: 25px;
  }
}
.service02_side .side1 {
  background-position: bottom right;
}
@media screen and (max-width: 991px) {
  .service02_side .side1 {
    background-color: rgba(240, 240, 225, 0.9);
    background-blend-mode: lighten;
  }
}
.service02_side .side1:hover {
  opacity: 0.6;
}
.service02_side .side2 {
  background-position: bottom right;
}
@media screen and (max-width: 991px) {
  .service02_side .side2 {
    background-color: rgba(240, 240, 225, 0.9);
    background-blend-mode: lighten;
  }
}
.service02_side .side2:hover {
  opacity: 0.6;
}
.content {
  width: 100%;
  max-width: none;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1600px) {
  .content {
    max-width: 1280px;
  }
}
@media screen and (max-width: 1199px) {
  .content {
    max-width: none;
  }
}

.c_activity {
  padding-top: 160px;
  max-width: none;
}
@media screen and (max-width: 1199px) {
  .c_activity {
    padding-top: 110px;
  }
}
@media screen and (max-width: 767px) {
  .c_activity {
    padding-top: 70px;
  }
}
.c_activity .titlebox {
  margin-bottom: 0px;
}
@media screen and (max-width: 767px) {
  .c_activity .titlebox {
    padding-bottom: 20px;
  }
}

.actflex {
  display: flex;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .actflex {
    margin-bottom: 10px;
  }
}
.actflex .arrowin {
  margin-left: auto;
  margin-right: 45px;
}
@media screen and (max-width: 767px) {
  .actflex .arrowin {
    margin-right: 15px;
  }
}

.c_support {
  padding: 120px 0;
  background-color: #f3f6fa;
  max-width: none;
}
@media screen and (max-width: 1199px) {
  .c_support {
    padding: 90px 0;
  }
}
@media screen and (max-width: 767px) {
  .c_support {
    padding: 60px 0;
  }
}
.c_support .titlebox {
  margin-bottom: 20px !important;
}

.c_plofilecargo {
  position: relative;
}
.c_plofilecargo::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 70px;
  background-color: #f3f6fa;
  left: 0;
  z-index: -1;
}

.c_plofile {
  border-radius: 40px;
  padding: 120px 0 200px;
  background-color: #181b39;
  position: relative;
  z-index: 1;
  max-width: none;
  margin-top: 80px;
}
@media screen and (max-width: 1199px) {
  .c_plofile {
    padding: 90px 0 120px;
    margin-top: 60px;
  }
}
@media screen and (max-width: 991px) {
  .c_plofile {
    padding: 70px 0 90px;
  }
}
@media screen and (max-width: 767px) {
  .c_plofile {
    padding: 60px 0 70px;
    border-radius: 20px;
    margin-top: 40px;
  }
}
.c_plofile .infloat2 {
  position: absolute;
  top: 350px;
  left: 10%;
}
@media screen and (max-width: 1199px) {
  .c_plofile .infloat2 {
    max-width: 100px;
    left: 4%;
  }
}
@media screen and (max-width: 767px) {
  .c_plofile .infloat2 {
    top: 50px;
    max-width: 70px;
  }
}
.c_plofile .button_block_n a {
  background-color: transparent;
  color: #fff;
  width: 340px;
  font-size: 19px;
  padding: 30px 35px;
  border-radius: 42px;
  border: 1px solid #fff;
}
@media screen and (max-width: 991px) {
  .c_plofile .button_block_n a {
    padding: 20px 25px;
    border-radius: 30px;
    font-size: 15px;
    width: 260px;
  }
}
.c_plofile .button_block_n a img {
  top: 20px;
  background-color: #fff;
  color: #204483;
  padding: 14px 16px;
  border-radius: 50%;
  font-size: 12px;
  right: 24px;
}
@media screen and (max-width: 991px) {
  .c_plofile .button_block_n a img {
    right: 12px;
    top: 10px;
    padding: 11px 13px;
  }
}
.c_plofile .infloat {
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 40px;
}
@media screen and (max-width: 767px) {
  .c_plofile .infloat {
    position: static;
    border-radius: 20px;
    display: none;
  }
}
.c_plofile .infloat3 {
  padding: 0 20px 20px;
}
.c_plofile .infloat3 img {
  display: none;
}
@media screen and (max-width: 767px) {
  .c_plofile .infloat3 img {
    display: block;
    border-radius: 20px;
  }
}
.c_plofile .titlebox {
  text-align: center;
}
.c_plofile .titlebox .maintitle {
  color: #fff;
}
.c_plofile .titlebox .subtitle {
  color: #fff;
  margin-top: 10px;
}
.c_plofile .p_sidetext {
  color: #fff;
  width: 100%;
  max-width: 610px;
  margin-left: auto;
  margin-bottom: 60px;
}
.c_plofile .p_sidetext .maintitle {
  font-size: 58px;
  margin-bottom: 50px;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (max-width: 1199px) {
  .c_plofile .p_sidetext .maintitle {
    font-size: 42px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .c_plofile .p_sidetext .maintitle {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
.c_plofile .p_sidetext .maintitle span {
  font-size: 24px;
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .c_plofile .p_sidetext .maintitle span {
    font-size: 18px;
    margin-left: 20px;
  }
}
.c_plofile .p_sidetext .intext {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .c_plofile .p_sidetext .intext {
    font-size: 16px;
  }
}

.titleline {
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 767px) {
  .titleline {
    display: block;
  }
}
.titleline .shorttitle {
  margin: 0;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .titleline .shorttitle {
    margin-top: 0px;
    margin-left: 0;
  }
}

.titlebox {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .titlebox {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .titlebox {
    margin-bottom: 20px;
  }
}
.titlebox .maintitle {
  font-weight: 200;
  font-size: 90px;
  color: #1354B4;
  line-height: 1.1;
}
@media screen and (max-width: 1400px) {
  .titlebox .maintitle {
    font-size: 70px;
  }
}
@media screen and (max-width: 1199px) {
  .titlebox .maintitle {
    font-size: 64px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .titlebox .maintitle {
    font-size: 52px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .titlebox .maintitle {
    font-size: 44px;
  }
}
.titlebox .shorttitle {
  font-size: 21px;
  color: #34343a;
  font-weight: 700;
}
@media screen and (max-width: 480px) {
  .titlebox .shorttitle {
    display: block;
    font-size: 17px;
  }
}

.kasoutitle {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .kasoutitle {
    margin-bottom: 30px;
  }
}
.kasoutitle .maintitle {
  font-size: 54px;
}
@media screen and (max-width: 1199px) {
  .kasoutitle .maintitle {
    font-size: 44px;
  }
}
@media screen and (max-width: 767px) {
  .kasoutitle .maintitle {
    font-size: 42px;
  }
}
@media screen and (max-width: 480px) {
  .kasoutitle .maintitle2 {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .kasoutitle .subtitle {
    font-size: 15px;
  }
}

.titlebox2 {
  display: block;
}
.titlebox2 .minititle {
  margin-left: 0;
}

.centertitlebox {
  display: block;
  text-align: center;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  top: -50px;
}
@media screen and (max-width: 1056px) {
  .centertitlebox {
    top: 70px;
  }
}
@media screen and (max-width: 767px) {
  .centertitlebox {
    position: static;
  }
}
.centertitlebox .title {
  position: relative;
}
.centertitlebox .title::before {
  content: "";
  width: 60px;
  height: 2px;
  background-color: #104000;
  position: absolute;
  left: 0px;
  right: 0;
  margin: auto;
  top: 0px;
}
.centertitlebox .minititle {
  margin-top: 5px;
  margin-left: 0;
  color: #104000;
  font-size: 17px;
  font-weight: 700;
}

.centertitlebox2 {
  position: relative;
  top: 0 !important;
}

.widetitle {
  text-align: center;
}

.policyin {
  box-shadow: 0px 0px 25px 0px rgba(32, 68, 131, 0.2);
  border-radius: 40px;
  display: block;
  position: relative;
  background-size: cover;
  background-image: url(images/policybg.png);
}
@media screen and (max-width: 1199px) {
  .policyin {
    overflow: hidden;
  }
}
@media screen and (max-width: 480px) {
  .policyin {
    padding-bottom: 40px;
    overflow: visible;
  }
}
.policyin:hover {
  opacity: 0.9;
  transition-duration: 0.7s;
}
.policyin:hover .policy_person img {
  opacity: 1;
}
.policyin:hover .neobutton img {
  opacity: 1;
}
.policyin .policy_person {
  position: absolute;
  right: 40px;
  bottom: 0;
  z-index: 3;
}
@media screen and (max-width: 1600px) {
  .policyin .policy_person {
    max-width: 658px;
    right: 20px;
  }
}
@media screen and (max-width: 1400px) {
  .policyin .policy_person {
    max-width: 501px;
    right: 15px;
    z-index: 1;
  }
}
@media screen and (max-width: 1199px) {
  .policyin .policy_person {
    max-width: 490px;
    right: -85px;
  }
}
@media screen and (max-width: 991px) {
  .policyin .policy_person {
    max-width: 350px;
    right: -63px;
    border-radius: 0 0 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .policyin .policy_person {
    display: none;
  }
}
.policyin .neobutton {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 4;
}
@media screen and (max-width: 991px) {
  .policyin .neobutton {
    max-width: 180px;
    z-index: 5;
  }
}
@media screen and (max-width: 767px) {
  .policyin .neobutton {
    max-width: 126px;
    z-index: 5;
  }
}
@media screen and (max-width: 480px) {
  .policyin .neobutton {
    max-width: 210px;
    z-index: 5;
    position: static;
    color: #fff;
    position: relative;
    border: 1px solid #0095d9;
    background: #0095d9;
    border-radius: 30px;
    font-size: 14px;
    padding: 14px 12px;
    margin: auto;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .policyin .neobutton img {
    position: absolute;
    top: 11px;
    background-color: #fff;
    color: #204483;
    padding: 7px 9px;
    border-radius: 50%;
    font-size: 12px;
    margin: auto;
    right: 10px;
  }
}
.policyin .titleline {
  color: #fff;
  padding: 50px 20px 60px 80px;
  border-radius: 40px 0 0 0;
  padding-left: 80px;
  margin-bottom: 0;
  position: relative;
  background: linear-gradient(to right, #214b94, transparent 60%, transparent 100%);
}
@media screen and (max-width: 1600px) {
  .policyin .titleline {
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .policyin .titleline {
    overflow: hidden;
  }
}
@media screen and (max-width: 480px) {
  .policyin .titleline {
    padding: 30px 30px;
    overflow: visible;
    background: linear-gradient(to right, #214b94, transparent 90%, transparent 100%);
  }
}
.policyin .titleline::before {
  content: "";
  position: absolute;
  width: 170px;
  background-size: contain;
  height: 202px;
  background-image: url(images/POLICY_img.png);
  bottom: 0;
  right: 12px;
}
@media screen and (max-width: 480px) {
  .policyin .titleline::before {
    width: 140px;
    height: 150px;
  }
}
@media screen and (min-width: 768px) {
  .policyin .titleline::before {
    display: none;
  }
}
.policyin .titleline .maintitle {
  color: #fff;
}
.policyin .titleline .shorttitle {
  color: #fff;
}
.policyin .flexin {
  margin-top: -20px;
  padding-left: 80px;
  position: relative;
  z-index: 2;
  padding-bottom: 50px;
}
@media screen and (max-width: 1600px) {
  .policyin .flexin {
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .policyin .flexin {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 480px) {
  .policyin .flexin {
    padding-bottom: 20px;
  }
}
.policyin .flexin .leftside .policyone {
  display: block;
  margin-bottom: 40px;
  z-index: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .policyin .flexin .leftside .policyone {
    margin-bottom: 10px;
  }
}
.policyin .flexin .leftside .policyone span {
  box-shadow: 1px 4px 16px -3px rgba(32, 68, 131, 0.2);
  font-size: 26px;
  font-weight: 700;
  background-color: #fff;
  border-radius: 6px;
  padding: 20px;
}
@media screen and (max-width: 1600px) {
  .policyin .flexin .leftside .policyone span {
    font-size: 23px;
  }
}
@media screen and (max-width: 991px) {
  .policyin .flexin .leftside .policyone span {
    font-size: 20px;
    padding: 15px;
  }
}
@media screen and (max-width: 767px) {
  .policyin .flexin .leftside .policyone span {
    font-size: 17px;
    padding: 15px;
    display: block;
    text-indent: -37px;
    padding-left: 53px;
  }
}
.policyin .flexin .leftside .policyone span img {
  margin-right: 10px;
}
@media screen and (max-width: 991px) {
  .policyin .flexin .leftside .policyone span img {
    max-width: 28px;
  }
}

.c_policy {
  margin: 100px 0 140px;
}
@media screen and (max-width: 1600px) {
  .c_policy {
    max-width: none;
  }
}
@media screen and (max-width: 1056px) {
  .c_policy {
    margin: 120px 0 100px;
  }
}
@media screen and (max-width: 767px) {
  .c_policy {
    margin: 120px 0 60px;
  }
}

.c_movie {
  margin: 130px 0;
}
@media screen and (max-width: 1056px) {
  .c_movie {
    margin: 90px 0;
  }
}
@media screen and (max-width: 767px) {
  .c_movie {
    margin: 60px 0 60px;
  }
}

.movie_flex .side1 iframe {
  width: 100%;
  max-width: 730px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 0px;
}
@media screen and (max-width: 1400px) {
  .movie_flex .side1 iframe {
    height: 300px;
  }
}
@media screen and (max-width: 1199px) {
  .movie_flex .side1 iframe {
    height: 260px;
  }
}
@media screen and (max-width: 991px) {
  .movie_flex .side1 iframe {
    height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .movie_flex .side1 iframe {
    height: 300px;
  }
}
@media screen and (max-width: 480px) {
  .movie_flex .side1 iframe {
    height: 190px;
  }
}
@media screen and (max-width: 767px) {
  .movie_flex .side2 {
    margin-top: 40px;
  }
}

@media screen and (max-width: 1600px) {
  .c_works {
    max-width: none;
  }
}

.worksone {
  width: 100%;
  max-width: 1820px;
  margin-left: auto;
  padding: 80px 15px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1600px) {
  .worksone {
    background-position: center;
    padding: 60px 15px;
  }
}
@media screen and (max-width: 1400px) {
  .worksone {
    padding: 40px 15px;
  }
}
@media screen and (max-width: 1199px) {
  .worksone {
    background-image: none !important;
    padding: 0;
  }
}
@media screen and (max-width: 480px) {
  .worksone {
    margin-bottom: 20px;
  }
}
.worksone .inflex .textfloat {
  background-color: #fff;
  padding: 60px 45px;
  border-radius: 20px;
  width: 100%;
  max-width: 607px;
}
@media screen and (max-width: 1400px) {
  .worksone .inflex .textfloat {
    padding: 40px 30px;
    max-width: 530px;
  }
}
@media screen and (max-width: 1199px) {
  .worksone .inflex .textfloat {
    max-width: none;
    padding: 30px 0;
  }
}
.worksone .inflex .textfloat .titleone {
  font-size: 29px;
  font-weight: 700;
  display: flex;
  margin-bottom: 30px;
  align-items: center;
}
@media screen and (max-width: 1400px) {
  .worksone .inflex .textfloat .titleone {
    font-size: 25px;
  }
}
@media screen and (max-width: 991px) {
  .worksone .inflex .textfloat .titleone {
    align-items: flex-start;
    font-size: 23px;
  }
}
.worksone .inflex .textfloat .titleone .num {
  margin-right: 20px;
  color: #1354B4;
  font-size: 56px;
  line-height: 1.3;
  font-weight: 200;
}
@media screen and (max-width: 1400px) {
  .worksone .inflex .textfloat .titleone .num {
    font-size: 40px;
    margin-right: 15px;
  }
}
.worksone .inflex .textfloat .titleone .span2 {
  line-height: 1.5;
}
.worksone .inflex .textfloat .subtitle {
  color: #1354b4;
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: 700;
}
@media screen and (max-width: 1400px) {
  .worksone .inflex .textfloat .subtitle {
    font-size: 21px;
  }
}
@media screen and (max-width: 991px) {
  .worksone .inflex .textfloat .subtitle {
    align-items: flex-start;
    font-size: 19px;
  }
}
.worksone .inflex2 .textfloat {
  margin-right: 0;
  margin-left: auto;
}
.worksone .t_works_bg {
  display: none;
}
@media screen and (max-width: 1199px) {
  .worksone .t_works_bg {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .worksone .t_works_bg {
    display: none;
  }
}
.worksone .t_works_bg2 {
  display: none;
}
@media screen and (max-width: 767px) {
  .worksone .t_works_bg2 {
    display: block;
  }
}

.worksone1 {
  background-image: url(images/t_works1.jpg);
  background-size: cover;
}

.worksone2 {
  background-image: url(images/t_works2.jpg);
  background-size: cover;
  margin-left: 0;
  border-radius: 0 6px 6px 0;
}

.worksone3 {
  background-image: url(images/t_works3.jpg);
  background-size: cover;
}

.worksone4 {
  background-image: url(images/t_works4.jpg);
  background-size: cover;
  margin-left: 0;
  border-radius: 0 6px 6px 0;
}

.worksone5 {
  background-image: url(images/t_works5.jpg);
  background-size: cover;
}

.worksone6 {
  background-image: url(images/t_works6.jpg);
  background-size: cover;
  margin-left: 0;
  border-radius: 0 6px 6px 0;
}

.worksone7 {
  background-image: url(images/t_works7.jpg);
  background-size: cover;
}

.worksone8 {
  background-image: url(images/t_works8.jpg);
  background-size: cover;
  margin-left: 0;
  border-radius: 0 6px 6px 0;
}

.bigbanner {
  display: block;
  width: 100%;
  max-width: 1500px;
  margin: auto;
  position: relative;
  margin-top: 120px;
  margin-bottom: 120px;
}
@media screen and (max-width: 991px) {
  .bigbanner {
    margin-top: 70px;
    margin-bottom: 70px;
  }
}
.bigbanner .float {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  top: 50px;
  z-index: 4;
}
@media screen and (max-width: 1400px) {
  .bigbanner .float {
    max-width: 220px;
  }
}
@media screen and (max-width: 991px) {
  .bigbanner .float {
    max-width: 180px;
  }
}
.bigbanner .chevron {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #214b94;
  border-radius: 0 0 6px 6px;
  color: #fff;
  width: 100%;
  text-align: right;
  font-size: 22px;
  line-height: 1;
  padding: 25px;
  font-weight: 700;
}
.bigbanner .chevron span {
  margin-right: 20px;
}
.footerlink_flex {
  display: flex;
  margin-top: 60px;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .footerlink_flex {
    width: 100%;
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
    flex-wrap: wrap;
  }
}
.footerlink_flex .flex1 {
  position: relative;
}
@media screen and (max-width: 767px) {
  .footerlink_flex .flex1 {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  .footerlink_flex .flex1 {
    font-size: 15px;
  }
}
.footerlink_flex .flex1 .text img {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  top: 40px;
}
.footerlink_flex .flex1 .arrow img {
  position: absolute;
  right: 35%;
  bottom: 45px;
}
@media screen and (max-width: 767px) {
  .footerlink_flex .flex1 .arrow img {
    bottom: 50px;
  }
}

.imgService {
  width: 100%;
  background-size: cover;
  display: block;
  max-width: 511px;
  height: 644px;
}
@media screen and (max-width: 767px) {
  .imgService {
    height: 473px;
  }
}
@media screen and (max-width: 480px) {
  .imgService {
    height: 353px;
    background-size: cover;
  }
}

.imgService--01 {
  background-image: url(images/serviceside1.jpg?version=20240806);
  transition: all 0.5s ease;
}
@media screen and (max-width: 767px) {
  .imgService--01 {
    background-image: url(images/serviceside1.jpg?version=20240806);
  }
}

.imgService--02 {
  background-image: url(images/serviceside2.jpg?version=20240806);
  transition: all 0.5s ease;
}
@media screen and (max-width: 767px) {
  .imgService--02 {
    background-image: url(images/serviceside2.jpg?version=20240806);
  }
}

.imgService--03 {
  background-image: url(images/serviceside3.jpg?version=20240806);
  transition: all 0.5s ease;
}
@media screen and (max-width: 767px) {
  .imgService--03 {
    background-image: url(images/serviceside3.jpg?version=20240806);
  }
}

.service_flex {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .service_flex {
    display: block;
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .service_flex .titlebox {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .service_flex .titlebox .maintitle {
    font-size: 42px;
  }
}
.service_flex .imgside2 {
  width: 40%;
}
.service_flex .rightside {
  width: 100%;
  max-width: 840px;
  margin-right: 130px;
  margin-left: 110px;
}
@media screen and (max-width: 1600px) {
  .service_flex .rightside {
    margin-right: 15px;
    margin-left: 60px;
    padding-right: 14px;
  }
}
@media screen and (max-width: 991px) {
  .service_flex .rightside {
    margin-left: 40px;
    width: 80%;
    margin-top: 30px;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .service_flex .rightside {
    width: 100%;
    margin: 50px auto;
  }
}
@media screen and (max-width: 480px) {
  .service_flex .rightside .titlebox .maintitle {
    font-size: 42px;
  }
}

.toggle_contents {
  border-top: 1px solid #b4c9db;
}

.toggle_contents3 {
  border-bottom: 1px solid #b4c9db;
}

.toggle_title {
  margin: 0;
  padding: 50px 0px 50px 80px;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 1199px) {
  .toggle_title {
    padding: 40px 0px 40px 30px;
  }
}
@media screen and (max-width: 991px) {
  .toggle_title {
    padding: 30px 0px;
  }
}
.toggle_title .sub {
  font-size: 16px;
  font-weight: 600;
  color: #1354B4;
  position: absolute;
  left: 0;
  top: 20px;
  font-family: "Oswald", sans-serif;
}
@media screen and (max-width: 1199px) {
  .toggle_title .sub {
    font-size: 17px;
  }
}
.toggle_title .main_text {
  font-size: 42px;
  font-weight: 600;
  color: #191e2e;
  line-height: 1.2;
}
@media screen and (max-width: 1199px) {
  .toggle_title .main_text {
    font-size: 34px;
  }
}
@media screen and (max-width: 991px) {
  .toggle_title .main_text {
    font-size: 26px;
    line-height: 1.3;
  }
}

.toggle_title:hover {
  opacity: 0.7;
}

.toggle_title:after {
  content: "";
  display: inline-block;
  width: 61px;
  height: 61px;
  background: url(images/toggle1.png) no-repeat right top;
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 7px;
  transform: translateY(-50%);
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .toggle_title:after {
    width: 44px;
    height: 44px;
    background-size: cover;
  }
}

.toggle_title.selected:after {
  background: url(images/toggle2.png) no-repeat right top;
  transition: 0.2s;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .toggle_title.selected:after {
    width: 44px;
    height: 44px;
    background-size: cover;
  }
}

.toggle_txt {
  display: none;
}
.toggle_txt .minibutton a {
  margin-left: auto;
  margin-right: 0;
  max-width: 240px;
  margin-bottom: 50px;
}

.c_company {
  max-width: none;
  background-image: url(images/bg_grad.jpg);
  background-position: top 0;
  margin-top: 140px;
}
.c_company .titlebox {
  margin-top: -110px;
}
.c_company .linkline {
  display: flex;
  justify-content: space-between;
}
.c_company .linkline .inblock {
  display: block;
  width: 398px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1600px) {
  .c_company .linkline .inblock {
    width: calc(25% - 16px);
  }
}
.c_company .linkline .inblock .bgimg {
  position: relative;
}
.c_company .linkline .inblock .bgimg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
  left: 0;
  top: 0;
  z-index: 0;
  border-radius: 6px;
}
.c_company .linkline .inblock .bgimg img {
  border-radius: 6px;
}
.c_company .linkline .inblock:hover .bgimg::before {
  transition: 0.3s;
  opacity: 1;
}
.c_company .linkline .inblock .circle1 {
  position: absolute;
  right: 0;
  bottom: 0;
}
.c_company .linkline .inblock .circle2 {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
}
.c_company .linkline .inblock .floatone {
  color: #fff;
  z-index: 3;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  font-size: 34px;
}
.c_company .linkline .inblock .floatone span {
  display: block;
  font-size: 16px;
  font-family: "Oswald", sans-serif;
}

.serviceback {
  width: 100%;
  padding: 0 20px;
}

.c_service {
  max-width: none;
  padding: 110px 100px;
  background-color: #f0f6f7;
}
@media screen and (max-width: 1600px) {
  .c_service {
    padding: 80px 70px;
  }
}
@media screen and (max-width: 1400px) {
  .c_service {
    padding: 60px 50px;
  }
}
@media screen and (max-width: 1199px) {
  .c_service {
    padding: 50px 40px;
  }
}
.c_service .flexline {
  display: flex;
  align-items: end;
  margin-bottom: 60px;
  justify-content: space-between;
}
.c_service .flexline .titlebox {
  margin-bottom: 0;
}
.c_service .flexline .textone {
  width: 100%;
  max-width: 1060px;
}
.c_service .s_flexline {
  display: flex;
  justify-content: space-between;
}
.c_service .s_flexline .side1 {
  display: block;
  position: relative;
}
.c_service .s_flexline .side1 .floatone {
  color: #fff;
  z-index: 3;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  font-size: 34px;
}
.c_service .s_flexline .side1 .floatone span {
  display: block;
  font-size: 16px;
  font-family: "Oswald", sans-serif;
}
.c_service .s_flexline .side1 .circle1 {
  position: absolute;
  right: 0;
  bottom: 0;
}
.c_service .s_flexline .side1 .circle2 {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
}

.s_works {
  background-color: #1f2f47;
  color: #fff;
  border-radius: 8px;
  padding: 60px;
  margin-top: 60px;
}
.s_works .inflex {
  display: flex;
  align-items: center;
}
.s_works .inflex .btnside {
  margin-left: auto;
  margin-top: auto;
}
.s_works .inflex .textside .onetitle {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 20px;
  font-weight: 700;
}
.s_works .inflex .imgside {
  width: 100%;
  margin-right: 70px;
  max-width: 503px;
}
.s_works .inflex .imgside img {
  border-radius: 6px;
}
.s_works .titlebox .maintitle {
  color: #00c2f3;
}
.s_works .titlebox .subtitle {
  font-size: 72px;
  color: #fff;
}

.c_greet {
  padding-top: 200px;
  padding-bottom: 750px;
  position: relative;
  width: 100%;
  background-size: cover;
  max-width: none;
  background-position: bottom;
  z-index: 0;
  background-image: url(images/bg_message.jpg);
}
@media screen and (max-width: 1199px) {
  .c_greet {
    padding-top: 140px;
    padding-bottom: 400px;
  }
}
@media screen and (max-width: 767px) {
  .c_greet {
    padding-top: 120px;
    padding-bottom: 290px;
  }
}
@media screen and (max-width: 480px) {
  .c_greet {
    padding-top: 120px;
    padding-bottom: 270px;
    background-position: left -270px bottom;
  }
}
.c_greet .floattext {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  top: 30px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .c_greet .floattext {
    top: -30px;
  }
}
.c_greet .centertext {
  font-size: 20px;
  color: #1354B4;
  font-weight: 600;
  margin: 80px 0;
}
@media screen and (max-width: 1199px) {
  .c_greet .centertext {
    margin: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .c_greet .centertext {
    font-size: 17px;
    margin: 30px 0;
    text-align: center;
  }
}
.c_greet .centertitle {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #1354B4;
}
@media screen and (max-width: 1199px) {
  .c_greet .centertitle {
    font-size: 29px;
  }
}
@media screen and (max-width: 767px) {
  .c_greet .centertitle {
    font-size: 22px;
    text-align: center;
  }
}

.messagetitle {
  font-size: 70px;
  font-weight: 700;
  text-align: center;
  color: #204483;
  line-height: 1.3;
}
@media screen and (max-width: 1199px) {
  .messagetitle {
    font-size: 56px;
  }
}
@media screen and (max-width: 991px) {
  .messagetitle {
    font-size: 44px;
  }
}
@media screen and (max-width: 767px) {
  .messagetitle {
    font-size: 36px;
  }
}
@media screen and (max-width: 480px) {
  .messagetitle {
    font-size: 30px;
    text-align: center;
  }
}

.tradition_flex {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1160px;
  margin: auto;
  align-items: center;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .tradition_flex {
    flex-wrap: wrap;
  }
}
.tradition_flex .side1 {
  width: calc(33% - 5px);
}
@media screen and (max-width: 767px) {
  .tradition_flex .side1 {
    width: calc(50% - 5px);
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .tradition_flex .side2 {
    width: 52%;
    margin: auto;
  }
}
.tradition_flex .batu {
  margin: 0 -70px;
  z-index: 3;
  position: relative;
}
@media screen and (max-width: 767px) {
  .tradition_flex .batu {
    margin: -70px auto;
    display: block;
    display: none;
  }
}

.maintitle .greettitle_sub {
  display: flex;
  line-height: 1;
  width: 100%;
  max-width: 375px;
  margin: auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .maintitle .greettitle_sub {
    max-width: 268px;
  }
}
.maintitle .greettitle_sub .img_1 {
  margin-right: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
  .maintitle .greettitle_sub .img_1 {
    max-width: 40px;
    margin-top: 12px;
  }
}
.maintitle .greettitle_sub .img_2 {
  margin-top: 10px;
}
@media screen and (max-width: 480px) {
  .maintitle .greettitle_sub .img_2 {
    max-width: 28px;
  }
}
.maintitle .greettitle_sub span {
  margin-top: 10px;
  font-size: 30px;
  color: #0d4e7c;
  font-family: "Kiwi Maru", serif;
  position: relative;
}
@media screen and (max-width: 480px) {
  .maintitle .greettitle_sub span {
    font-size: 22px;
  }
}
.maintitle .greettitle_sub span::before {
  content: "";
  position: absolute;
  border-bottom: 7px double;
  width: 125%;
  bottom: -5px;
  left: -64px;
}
@media screen and (max-width: 480px) {
  .maintitle .greettitle_sub span::before {
    width: 134%;
    bottom: 0;
  }
}
.maintitle .greettitle_main {
  font-family: "Kiwi Maru", serif;
  color: #152835;
  font-size: 52px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .maintitle .greettitle_main {
    font-size: 28px;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .maintitle .greettitle_main {
    font-size: 22px;
  }
}
.maintitle .greettitle_main span {
  color: #dc8b00;
}

.flextitle2 {
  position: relative;
  order: 4;
  margin-left: 30px;
  writing-mode: vertical-rl;
  font-size: 34px;
  line-height: 1.3;
  font-weight: 600;
  color: #1d3966;
  display: none;
}
@media screen and (max-width: 1600px) {
  .flextitle2 {
    padding-right: 14px;
    margin-left: 14px;
    font-size: 30px;
  }
}
@media screen and (max-width: 1056px) {
  .flextitle2 {
    font-size: 26px;
  }
}
@media screen and (max-width: 991px) {
  .flextitle2 {
    writing-mode: horizontal-tb;
    font-size: 26px;
    margin-right: auto;
    text-align: center;
    padding-right: 0;
    margin-left: 0;
    margin-bottom: 0px;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .flextitle2 {
    margin-top: 50px;
    font-size: 25px;
  }
}
.flextitle2 span {
  position: relative;
  padding-right: 30px;
}
@media screen and (max-width: 1600px) {
  .flextitle2 span {
    padding-right: 14px;
  }
}
@media screen and (max-width: 991px) {
  .flextitle2 span {
    padding-right: 0;
    padding: 15px 0;
    display: block;
  }
}
.flextitle2 span::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: #b4c9db;
  right: 0;
  top: 0;
}
@media screen and (max-width: 991px) {
  .flextitle2 span::before {
    height: 2px;
    width: 100%;
    right: 0;
    left: 0;
    margin: auto;
    top: 0;
  }
}
.flextitle2 span::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: #b4c9db;
  left: -30px;
  top: 0;
}
@media screen and (max-width: 1600px) {
  .flextitle2 span::after {
    left: -14px;
  }
}
@media screen and (max-width: 991px) {
  .flextitle2 span::after {
    height: 2px;
    width: 100%;
    right: 0;
    left: 0;
    margin: auto;
    top: auto;
    bottom: 0;
  }
}

.reedtxt_an {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .reedtxt_an {
    font-size: 16px;
  }
}

.c_consult {
  max-width: none;
  padding: 110px 0 85px;
}
@media screen and (max-width: 767px) {
  .c_consult {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.c_consult .fukidashi {
  line-height: 1;
  margin-top: 60px;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .c_consult .fukidashi {
    margin-top: 40px;
    margin-bottom: 60px;
  }
}
.c_consult .fukidashi span {
  font-family: "Kiwi Maru", serif;
  font-size: 26px;
  color: #152835;
  padding: 10px 20px;
  background: linear-gradient(to bottom, #f9c006 0%, #f3a713 100%);
  border-radius: 30px;
  position: relative;
  box-shadow: 1px 0px 16px -3px rgba(121, 184, 222, 0.72);
}
@media screen and (max-width: 767px) {
  .c_consult .fukidashi span {
    font-size: 22px;
  }
}
.c_consult .fukidashi span::before {
  content: "";
  position: absolute;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  height: 15px;
  width: 30px;
  right: 0;
  left: 0;
  margin: auto;
  bottom: -14px;
  transform: scale(1, -1);
  box-shadow: 1px 0px 16px -3px rgba(121, 184, 222, 0.72);
  background-color: #f2a415;
}
.c_consult .fukidashi2 {
  position: relative;
  line-height: 1.3;
  font-family: "Kiwi Maru", serif;
  font-size: 26px;
  color: #152835;
  padding: 10px 20px;
  background: linear-gradient(to bottom, #f9c006 0%, #f3a713 100%);
  border-radius: 45px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c_consult .fukidashi2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 22px;
  }
}
@media screen and (max-width: 480px) {
  .c_consult .fukidashi2 {
    font-size: 18px;
  }
}
.c_consult .fukidashi2::before {
  content: "";
  position: absolute;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  height: 15px;
  width: 30px;
  right: 0;
  left: 0;
  margin: auto;
  bottom: -14px;
  transform: scale(1, -1);
  background-color: #f2a415;
}
.c_consult .greet_box .subtitle {
  font-family: "Kiwi Maru", serif;
  font-size: 26px;
  color: #0d4e7c;
}
@media screen and (max-width: 767px) {
  .c_consult .greet_box .subtitle {
    font-size: 23px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .c_consult .greet_box .subtitle {
    font-size: 19px;
  }
}
.c_consult .greet_box .subtitle span {
  position: relative;
  z-index: 0;
}
.c_consult .greet_box .subtitle span::before {
  content: "";
  position: absolute;
  width: 102%;
  height: 15px;
  background-color: #eaf4f9;
  right: 0;
  left: 0;
  margin: auto;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .c_consult .greet_box .subtitle span::before {
    height: 10px;
  }
}
.c_consult .greet_box .maintitle {
  margin-top: 3px;
  font-size: 50px;
  line-height: 1;
  color: #152835;
  margin-bottom: 30px;
  font-family: "Kiwi Maru", serif;
}
@media screen and (max-width: 1056px) {
  .c_consult .greet_box .maintitle {
    font-size: 38px;
  }
}
@media screen and (max-width: 767px) {
  .c_consult .greet_box .maintitle {
    font-size: 32px;
    line-height: 1.3;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .c_consult .greet_box .maintitle {
    font-size: 28px;
  }
}
.c_consult .greet_box .maintitle span {
  color: #018bcd;
}

.flex_banner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .flex_banner {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.flex_banner .block1 {
  width: calc(20% - 10px);
}
@media screen and (max-width: 767px) {
  .flex_banner .block1 {
    width: calc(33% - 10px);
    margin-top: 30px;
  }
}
@media screen and (max-width: 480px) {
  .flex_banner .block1 {
    width: 30%;
    margin-top: 20px;
    margin-right: 5px;
    margin-left: 5px;
  }
}
.flex_banner .block1 .img {
  position: relative;
  line-height: 1.4;
  text-align: center;
}
.flex_banner .block1 .title {
  color: #fff;
  font-family: "Kiwi Maru", serif;
  font-size: 25px;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  bottom: 18px;
}
@media screen and (max-width: 767px) {
  .flex_banner .block1 .title {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .flex_banner .block1 .title {
    font-size: 18px;
  }
}
.flex_banner .block2 {
  margin-top: 30px;
}
@media screen and (max-width: 480px) {
  .flex_banner .block2 {
    margin-top: 20px;
  }
}
.flex_banner .block4 {
  margin-top: 30px;
}
@media screen and (max-width: 480px) {
  .flex_banner .block4 {
    margin-top: 20px;
  }
}

.reedtxt {
  font-size: 16px;
}
.reedtxt span {
  color: #ce6f1b;
}

.button_block_n a {
  display: inline-block;
  width: 100%;
  max-width: 240px;
  text-align: left;
  margin-left: 0;
  color: #fff;
  position: relative;
  border: 1px solid #214B94;
  background: #214B94;
  border-radius: 30px;
  z-index: 0;
  padding: 20px 25px;
  font-size: 16px;
  line-height: 1;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .button_block_n a {
    margin-top: 30px;
    width: 220px;
    font-size: 14px;
  }
}
.button_block_n a img {
  position: absolute;
  top: 11px;
  background-color: #fff;
  color: #204483;
  padding: 11px 13px;
  border-radius: 50%;
  font-size: 12px;
  margin: auto;
  right: 10px;
}
.button_block_n a:hover {
  background: #1d3966;
  border: 1px solid #fff;
  color: #fff;
}

.minibutton a {
  width: 220px;
}

.centerbutton_k a {
  margin-right: auto;
  margin-left: auto;
}

.button_block_n2 a {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .button_block_n2 a {
    margin-left: auto;
  }
}

.c_banner {
  padding: 70px 0;
  background: linear-gradient(to bottom, #eff6fa, #fff);
}
@media screen and (max-width: 767px) {
  .c_banner {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

.c_news {
  padding: 130px 0;
}
@media screen and (max-width: 1199px) {
  .c_news {
    padding: 90px 0;
  }
}
@media screen and (max-width: 767px) {
  .c_news {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.c_news .newsflex {
  margin-top: -50px;
  float: left;
  margin-right: 150px;
}
@media screen and (max-width: 1600px) {
  .c_news .newsflex {
    margin-right: 60px;
    margin-top: 0;
  }
}
@media screen and (max-width: 991px) {
  .c_news .newsflex {
    display: block;
    margin-bottom: 10px;
    margin-right: 0;
    float: none;
  }
}
.c_news .newsflex .titlebox {
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  .c_news .newsflex .titlebox {
    width: 100%;
  }
}
.c_news .newsflex .titlebox .maintitle {
  line-height: 1;
}
.c_news .newstab_btnline {
  margin-right: 0;
  margin-left: auto;
  display: flex;
}
@media screen and (max-width: 1600px) {
  .c_news .newstab_btnline {
    flex-wrap: wrap;
  }
}
.c_news .button_block_n a {
  margin-right: 0;
  margin-top: 0;
  margin-left: auto;
  float: right;
}
@media screen and (max-width: 767px) {
  .c_news .button_block_n a {
    margin-right: auto;
    margin-left: calc(50% - 110px);
    float: left;
  }
}

.top_news_tab input[type=radio] {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  appearance: none;
  display: none;
}

/**********************
TOPページ　ニュース一覧
***********************/
.top_news_tab *,
.top_news_tab *:before,
.top_news_tab *:after {
  box-sizing: border-box;
}

.top_news_tab input[type=radio] {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  appearance: none;
  display: none;
}

.top_news_tab .topBlogWrap_2 {
  display: none; /* デフォルトでは非表示 */
  box-sizing: border-box;
  position: relative;
  justify-content: space-between;
  flex-wrap: wrap;
  float: right;
  margin-top: 50px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .top_news_tab .topBlogWrap_2 {
    margin-top: 30px;
  }
}
.top_news_tab .topBlogWrap_2::after {
  content: "";
  display: block;
  width: calc(33% - 15px);
}
@media screen and (max-width: 767px) {
  .top_news_tab .topBlogWrap_2::after {
    width: calc(50% - 7px);
  }
}
.top_news_tab .topBlogWrap_2 .topBlogContent {
  width: calc(33% - 15px);
  margin: 0 0 60px;
}
@media screen and (max-width: 767px) {
  .top_news_tab .topBlogWrap_2 .topBlogContent {
    width: calc(50% - 7px);
    margin-bottom: 54px;
  }
}
@media screen and (max-width: 480px) {
  .top_news_tab .topBlogWrap_2 .topBlogContent {
    width: 100%;
  }
}

.top_news_tab > input:first-child:checked ~ .blog_wraps > .topBlogWrap_2:first-child,
.top_news_tab > input:nth-child(3):checked ~ .blog_wraps > .topBlogWrap_2:nth-child(2),
.top_news_tab > input:nth-child(5):checked ~ .blog_wraps > .topBlogWrap_2:nth-child(3),
.top_news_tab > input:nth-child(7):checked ~ .blog_wraps > .topBlogWrap_2:nth-child(4),
.top_news_tab > input:nth-child(9):checked ~ .blog_wraps > .topBlogWrap_2:nth-child(5),
.top_news_tab > input:nth-child(11):checked ~ .blog_wraps > .topBlogWrap_2:nth-child(6),
.top_news_tab > input:nth-child(13):checked ~ .blog_wraps > .topBlogWrap_2:nth-child(7),
.top_news_tab > input:nth-child(15):checked ~ .blog_wraps > .topBlogWrap_2:nth-child(8),
.top_news_tab > input:nth-child(17):checked ~ .blog_wraps > .topBlogWrap_2:nth-child(9),
.top_news_tab > input:nth-child(19):checked ~ .blog_wraps > .topBlogWrap_2:nth-child(10),
.top_news_tab > input:nth-child(21):checked ~ .blog_wraps > .topBlogWrap_2:nth-child(11),
.top_news_tab > input:nth-child(23):checked ~ .blog_wraps > .topBlogWrap_2:nth-child(12) {
  display: flex;
}

.top_news_tab .top_news_tabpanels {
  position: relative;
  top: 0;
  left: 26%;
  display: block;
  padding-bottom: 20px;
}

.top_news_tab > input + label {
  width: auto;
  height: 37px;
  cursor: pointer;
  position: relative;
  border-radius: 25px;
  border: 1px solid #cccccc;
  font-size: 12px;
  padding: 10px 11px;
  text-align: center;
  color: #565656;
  display: block;
  font-weight: 500;
  margin-right: 10px;
  float: left;
  line-height: 1.3;
  text-align: center;
  font-weight: bold;
  letter-spacing: -0.3px;
  transition: all 0.2s ease;
}
@media screen and (max-width: 1600px) {
  .top_news_tab > input + label {
    margin-right: 5px;
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .top_news_tab > input + label {
    height: 39px;
  }
}

.top_news_tab > label:hover,
.top_news_tab > input:focus + label {
  color: #0066cc;
}

.top_news_tab > input:checked + label {
  border-color: #cccccc;
  background-color: #1354B4;
  color: #fff;
}

.top_news_tab .top_news_tabpanel li {
  width: 100%;
}

.top_news_tab .top_news_tabpanel li:last-child {
  border-bottom: 1px solid #c5cdd8;
}

.top_news_tab .top_news_tabpanel {
  padding: 0.5em 1em;
  max-height: 620px;
}

.top_news_tabpanels .day_cate_wrap {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.top_news_tabpanels .day_cate_wrap .category-name {
  border-radius: 100px;
  color: #fff;
  width: 106px;
  padding: 4px 20px;
  line-height: 1;
  text-align: center;
  margin: 0 20px 0 10px;
  font-size: 14px;
}

.top_news_tabpanels .day_cate_wrap .category-info {
  background-color: #193c70;
}

.top_news_tabpanels .day_cate_wrap .category-activity_report {
  background: #a3afbc;
}

.top_news_tabpanels .day_cate_wrap .category-media {
  background: #5a8dd6;
}

@media screen and (max-width: 768px) {
  .top_news_tab .top_news_tabpanels {
    position: relative;
    top: 0;
    left: 0%;
    display: block;
    width: auto;
    padding-bottom: 20px;
    margin-top: 0px;
  }
  .top_news_tab > input + label:last-of-type {
    margin-bottom: 20px;
  }
  .top_news_tab > input + label {
    width: auto;
  }
  .top_news_tab .top_news_tabpanel li {
    padding: 15px 15px 15px 0;
  }
  .top_news_tabpanels .day_cate_wrap .category-name {
    padding: 2px 20px;
    font-size: 12px;
  }
}
.topblog_outer .topBlogWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topBlogContent {
  display: block;
  margin: 0 15px;
}
.topBlogContent .days_block {
  display: block;
  color: #6e6e6e;
  font-size: 14px;
  font-weight: 300;
  margin-top: 20px;
}
.topBlogContent .blog__title {
  font-size: 21px;
  display: block;
  font-weight: 700;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 1199px) {
  .topBlogContent .blog__title {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .topBlogContent .blog__title {
    font-size: 18px;
  }
}

.partnerline {
  margin: 60px 130px;
}
.partnerline .inflex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.partnerline .inflex .partnerside {
  justify-content: space-between;
  display: flex;
  width: 100%;
  max-width: 1062px;
}
.partnerline .inflex .partnerside .logoone {
  display: block;
  width: calc(33% - 12px);
}
.partnerline .titlebox {
  margin-bottom: 0;
}
.partnerline .titlebox .subtitle {
  font-size: 72px;
}
@media screen and (max-width: 1400px) {
  .partnerline .titlebox .subtitle {
    font-size: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .partnerline .titlebox .subtitle {
    font-size: 54px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .partnerline .titlebox .subtitle {
    font-size: 44px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .partnerline .titlebox .subtitle {
    font-size: 36px;
  }
}
.c_contact {
  width: 100%;
  padding: 80px 0 70px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c_contact {
    padding: 50px 0 50px;
  }
}
.c_contact::before {
  content: "";
  position: absolute;
  width: 1660px;
  height: 100%;
  background-color: #1354B4;
  left: 0;
  top: 0;
}
.c_contact .rightside {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .c_contact .rightside {
    text-align: left;
    margin-top: 30px;
  }
}
.c_contact .rightside .tel {
  margin-bottom: 17px;
}
.c_contact .titlebox .subtitle {
  color: #fff;
  font-size: 72px;
}
@media screen and (max-width: 1400px) {
  .c_contact .titlebox .subtitle {
    font-size: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .c_contact .titlebox .subtitle {
    font-size: 54px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .c_contact .titlebox .subtitle {
    font-size: 44px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .c_contact .titlebox .subtitle {
    font-size: 36px;
  }
}
.c_contact .titlebox .maintitle {
  color: #00c2f3;
}
.c_contact .intext {
  color: #fff;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 1199px) {
  .titlestraight {
    display: none;
  }
}
.c_titlebox {
  display: none;
}
@media screen and (max-width: 1199px) {
  .c_titlebox {
    display: block;
  }
}

.kasoumidashi1 {
  font-size: 30px;
  color: #018bcd;
}
@media screen and (max-width: 1056px) {
  .kasoumidashi1 {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .kasoumidashi1 {
    font-size: 23px;
    line-height: 1.3;
  }
}

.tab-content {
  text-align: center;
  margin-top: 50px;
}

.categoryrow {
  display: flex;
}
@media screen and (max-width: 1600px) {
  .categoryrow {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .categoryrow {
    display: block;
    margin-bottom: 10px;
  }
}
.categoryrow .button {
  width: 100%;
  max-width: 328px;
  margin-right: auto;
  margin-left: auto;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  .categoryrow .button {
    margin: 0 5px;
    margin-top: 13px;
  }
}
.categoryrow .button a {
  font-weight: 700;
  font-size: 16px;
  background-color: #fff;
  width: 100%;
  display: block;
  max-width: 506px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  text-align: center;
  line-height: 1;
  padding: 20px 0;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .categoryrow .button a {
    padding: 14px 0;
    max-width: 240px;
  }
}
.categoryrow .button a:hover {
  transition-duration: 0.7s;
  opacity: 0.7;
  color: #565656;
}

.tabs {
  margin-top: 50px;
  background-color: #fff;
  width: 100%;
  margin: 0 auto;
}

/*タブのスタイル*/
.sortBtn {
  width: auto;
  height: auto;
  cursor: pointer;
  position: relative;
  border-radius: 25px;
  border: 1px solid #cccccc;
  font-size: 15px;
  padding: 10px 14px;
  text-align: center;
  color: #565656;
  display: block;
  font-weight: 500;
  margin-right: 10px;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}
@media screen and (max-width: 1400px) {
  .sortBtn {
    margin-top: 10px;
  }
}
@media screen and (max-width: 991px) {
  .sortBtn {
    font-size: 14px;
    margin-top: 5px;
    margin-right: 5px;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 767px) {
  .sortBtn {
    height: auto;
    line-height: 1;
    padding: 10px 0;
    width: 100%;
  }
}
.sortBtn:hover {
  transition-duration: 0.7s;
  background-color: #1354B4;
  color: #fff;
  position: relative;
  z-index: 1;
}
.sortBtn.on {
  position: relative;
  background-color: #1354B4;
  color: #fff;
}
.sortBtn.active {
  position: relative;
  background-color: #1354B4;
  color: #fff;
}

.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name=tab_item] {
  display: none;
}

.normaltab {
  padding: 40px 0 0;
}
@media screen and (max-width: 767px) {
  .normaltab {
    padding: 30px 0 0;
  }
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 70px 0px 20px;
  clear: both;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .tab_content {
    padding: 50px 0px 50px;
  }
}
.tab_content.on {
  display: block;
}

@media screen and (max-width: 767px) {
  .tab_content01 {
    padding-bottom: 0 !important;
  }
}
.tab_content01 .inner .col-sm-6 {
  padding: 0 !important;
}
.tab_content01 .inner .imgbox {
  z-index: 7;
  position: relative;
  margin-left: 60px;
  margin-right: calc(2% - 23vw);
}
@media screen and (max-width: 991px) {
  .tab_content01 .inner .imgbox {
    margin-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .tab_content01 .inner .imgbox {
    margin: auto;
  }
}
.tab_content01 .inner .textbox {
  padding-top: 120px;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .tab_content01 .inner .textbox {
    padding-top: 30px;
    padding-bottom: 50px;
    padding-right: 15px;
    padding-left: 15px;
  }
}
.tab_content01 .inner .textbox::before {
  content: "";
  position: absolute;
  background-color: #eee;
  width: 180%;
  height: 100%;
  top: 61px;
  left: -100px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .tab_content01 .inner .textbox::before {
    top: 0px;
  }
}
.tab_content01 .inner .textbox .titleone {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  padding-bottom: 20px;
}
@media screen and (max-width: 991px) {
  .tab_content01 .inner .textbox .titleone {
    font-size: 22px;
    padding-bottom: 10px;
  }
}
.tab_content01 .inner .textbox .text {
  margin: 30px 0;
}
.tab_content01 .inner .textbox .nametext {
  font-weight: 600;
  text-align: right;
  font-size: 18px;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .tab_content01 .inner .textbox .nametext {
    padding-bottom: 0px;
  }
}

.cert {
  margin-bottom: 50px;
}
.cert .imgline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cert .imgline .imgbox {
  width: calc(33% - 12px);
}
@media screen and (max-width: 480px) {
  .cert .imgline .imgbox {
    width: calc(33% - 6px);
    margin-bottom: 12px;
  }
}

.certul {
  display: flex;
  flex-wrap: wrap;
}
.certul li {
  width: calc(33% - 12px);
}
@media screen and (max-width: 480px) {
  .certul li {
    width: calc(50% - 6px);
  }
}

.certul2 {
  align-items: baseline;
  justify-content: space-between;
}
.certul2 li {
  width: calc(50% - 14px);
  margin-bottom: 10px;
  text-indent: -16px;
  padding-left: 16px;
}
@media screen and (max-width: 767px) {
  .certul2 li {
    width: calc(50% - 10px);
    text-indent: -12px;
    padding-left: 12px;
  }
}
@media screen and (max-width: 480px) {
  .certul2 li {
    width: 100%;
  }
}

.category_block {
  margin-bottom: 40px;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item::before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: #1354B4;
}

.serviceblock1 {
  position: relative;
}
.serviceblock1::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #23afd2;
  position: absolute;
  top: -50px;
}

.serviceblock1_1::before {
  display: none;
}

@media screen and (max-width: 767px) {
  .meritblock1 .imgbox {
    margin-bottom: 20px;
  }
}
.meritblock1 .imgbox img {
  border-radius: 12px;
  box-shadow: 1px 0px 16px -3px rgba(121, 184, 222, 0.22);
}

.newscol_top {
  width: 100%;
  max-width: 1040px;
}
@media screen and (max-width: 767px) {
  .newscol_top {
    display: block;
  }
}

.loop__front a {
  width: 100%;
  font-size: 18px;
  display: block;
  line-height: 1.7;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  position: relative;
  padding: 50px 20px;
  border-bottom: 1px solid #cfd9df;
  text-decoration: none;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .loop__front a {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    white-space: normal;
    display: block;
    word-break: break-all;
    padding: 25px 14px 40px;
    margin-bottom: 20px;
  }
}
.loop__front a .days_block {
  color: #6e6e6e;
  font-size: 14px;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .loop__front a .days_block {
    margin-right: 5px;
  }
}
@media screen and (max-width: 767px) {
  .loop__front a .main_text {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .loop__front .img--center {
    text-align: center;
    margin-bottom: 20px;
  }
}

.titlebase {
  margin-bottom: 40px;
  display: flex;
  align-items: baseline;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .titlebase {
    margin-bottom: 30px;
  }
}
.titlebase .title {
  line-height: 1.3;
}
.titlebase .title .underbar {
  font-size: 38px;
  font-family: "Zen Maru Gothic", "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
  display: block;
  margin-top: 10px;
}
.titlebase .title .underbar .span2 {
  color: #104000;
}
@media screen and (max-width: 991px) {
  .titlebase .title .underbar {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .titlebase .title .underbar {
    font-size: 26px;
  }
}
.titlebase .title .minititle {
  font-size: 18px;
  color: #104000;
  padding: 0 10px;
  font-family: "Nunito", "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
  position: relative;
  background-color: #eff2e5;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .titlebase .title .minititle {
    font-size: 15px;
  }
}

.centertitle {
  display: block;
  text-align: center;
}

.bannerrow {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1040px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 480px) {
  .bannerrow {
    display: block;
    padding: 0 10px;
  }
}
@media screen and (max-width: 1056px) {
  .bannerrow .banner1_1 {
    margin-left: 14px;
  }
}
.bannerrow .banner2 {
  margin-left: 28px;
}
@media screen and (max-width: 1056px) {
  .bannerrow .banner2 {
    margin-left: 20px;
    margin-right: 14px;
  }
}
@media screen and (max-width: 991px) {
  .bannerrow .banner2 {
    margin-left: 14px;
  }
}
@media screen and (max-width: 480px) {
  .bannerrow .banner1 {
    margin: auto;
    margin-bottom: 20px;
  }
}

.textgroup {
  display: flex;
  align-items: center;
}
.textgroup .number {
  margin-right: 25px;
}
@media screen and (max-width: 991px) {
  .textgroup .number {
    max-width: 80px;
  }
}
@media screen and (max-width: 767px) {
  .textgroup .number {
    margin-right: 10px;
    max-width: 70px;
    min-width: 70px;
  }
}

.menu_title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  margin-top: 75px;
  font-family: "Noto Serif JP", "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
}
@media screen and (max-width: 767px) {
  .menu_title {
    font-size: 22px;
  }
}
@media screen and (max-width: 480px) {
  .menu_title {
    letter-spacing: -1px;
  }
}
.menu_title span {
  position: relative;
}
.menu_title span::before {
  content: "";
  position: absolute;
  background-color: #fe5278;
  width: 100%;
  height: 2px;
  right: 0;
  left: 0;
  margin: auto;
  top: -10px;
}

.menu_mini {
  text-align: center;
}

@media screen and (max-width: 1199px) {
  .topservicerow3 {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .topservicerow3 {
    margin-top: 0px;
  }
}

/*====================================

  ■サービスの流れ

=====================================*/
/*====================================

  ■下層共通

=====================================*/
.jumpdiv {
  margin-top: -110px;
  padding-top: 110px;
}

#jump1 {
  margin-top: -110px;
  padding-top: 110px;
}

#jump2 {
  margin-top: -110px;
  padding-top: 110px;
}

#jump3 {
  margin-top: -110px;
  padding-top: 110px;
}

#jump4 {
  margin-top: -110px;
  padding-top: 110px;
}

#jump5 {
  margin-top: -110px;
  padding-top: 110px;
}

#jump6 {
  margin-top: -110px;
  padding-top: 110px;
}

#jump7 {
  margin-top: -110px;
  padding-top: 110px;
}

#jump8 {
  margin-top: -110px;
  padding-top: 110px;
}

.flow_row {
  padding-bottom: 40px;
  position: relative;
  width: 100%;
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1199px) {
  .flow_row {
    margin-left: 30px;
  }
}
@media screen and (max-width: 991px) {
  .flow_row {
    margin-left: 20px;
    padding-bottom: 30px;
  }
}
.flow_row::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  background-color: #f6d611;
  border-radius: 50%;
  left: -4%;
  z-index: 8;
  top: 6%;
}
@media screen and (max-width: 1199px) {
  .flow_row::before {
    left: -3.4%;
  }
}
@media screen and (max-width: 991px) {
  .flow_row::before {
    top: 0px;
    width: 20px;
    height: 20px;
    left: -23.4px;
  }
}
.flow_row::after {
  content: "";
  left: -2.9%;
  position: absolute;
  background-color: #fff;
  width: 2px;
  height: 100%;
  top: 18px;
  opacity: 0.2;
  display: block;
  z-index: 7;
}
@media screen and (max-width: 1199px) {
  .flow_row::after {
    left: -2%;
  }
}
@media screen and (max-width: 991px) {
  .flow_row::after {
    left: -14px;
  }
}
@media screen and (max-width: 480px) {
  .flow_row::after {
    opacity: 1;
    background-color: transparent;
    background-image: url(images/after_line.svg);
  }
}
.flow_row .flowrow_textbox {
  color: #fff;
}
.flow_row .flowrow_textbox .text {
  color: #fff;
  line-height: 1.4;
  font-size: 26px;
  font-weight: 600;
}
@media screen and (max-width: 1199px) {
  .flow_row .flowrow_textbox .text {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .flow_row .flowrow_textbox .text {
    font-size: 17px;
  }
}
.flow_row .flowrow_textbox .kasourow_title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}
@media screen and (max-width: 991px) {
  .flow_row .flowrow_textbox .kasourow_title {
    margin-top: 20px;
    font-size: 14px;
  }
}
.flow_row .flowrow_textbox .kasourow_title span {
  font-size: 28px;
  font-weight: 200;
  font-family: "Heebo", sans-serif;
}
@media screen and (max-width: 991px) {
  .flow_row .flowrow_textbox .kasourow_title span {
    font-size: 21px;
  }
}
.flow_row .flow_img img {
  border-radius: 6px;
}

.flow_row_last {
  padding-bottom: 0;
}
.flow_row_last::after {
  display: none;
}
.flow_row_last .flow_img {
  padding-bottom: 0;
}

/* スライドアニメーションの設定 */
@keyframes horizontal-animation {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.slidecontainer {
  display: flex;
  overflow: hidden;
}

.slideshow {
  margin-left: -60px;
  margin-top: 120px;
  display: flex;
  animation: horizontal-animation 30s linear infinite;
}
@media screen and (max-width: 1199px) {
  .slideshow {
    margin-left: -40px;
    margin-top: 90px;
  }
}
@media screen and (max-width: 991px) {
  .slideshow {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .slideshow {
    margin-left: -20px;
  }
}

/* スライドコンテンツ */
.img_block {
  width: 540px;
  margin: 0 20px;
}
@media screen and (max-width: 1199px) {
  .img_block {
    width: 400px;
  }
}
@media screen and (max-width: 767px) {
  .img_block {
    width: 240px;
    margin: 0 10px;
  }
}

.img_block2 {
  margin-top: 40px;
}

.img_block img {
  width: 100%;
  border-radius: 6px;
  height: auto;
  vertical-align: bottom;
}

.bannerline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .bannerline {
    width: 100%;
    max-width: 330px;
    margin-right: auto;
    margin-left: auto;
  }
}
.bannerline .btnin {
  display: block;
  margin-top: 30px;
  width: calc(33% - 15px);
}
@media screen and (max-width: 991px) {
  .bannerline .btnin {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 767px) {
  .bannerline .btnin {
    margin-top: 15px;
    width: calc(50% - 7px);
  }
}

.single-row {
  padding: 0 14px;
  margin-bottom: 0;
  padding-bottom: 40px;
}
.single-row::after {
  height: 100%;
}
@media screen and (max-width: 991px) {
  .single-row::after {
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .single-row::after {
    display: none;
  }
}

.flow_num_last::after {
  display: none;
}

.neck {
  background-image: url(images/neck1.jpg);
  position: relative;
  background-size: cover;
  padding-top: 190px;
  padding-bottom: 90px;
  background-position: center;
}
@media screen and (max-width: 991px) {
  .neck {
    padding-top: 70px;
    padding-bottom: 70px;
    margin-top: 79px;
  }
}
@media screen and (max-width: 767px) {
  .neck {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 480px) {
  .neck {
    padding-bottom: 40px;
  }
}
.neck .container {
  position: relative;
}
.neck .neck__title {
  font-size: 96px;
  position: relative;
  line-height: 1.3;
  color: #fff;
  font-weight: 200;
}
@media screen and (max-width: 991px) {
  .neck .neck__title {
    font-size: 72px;
  }
}
@media screen and (max-width: 767px) {
  .neck .neck__title {
    font-size: 54px;
  }
}
@media screen and (max-width: 480px) {
  .neck .neck__title {
    font-size: 46px;
  }
}
.neck .neck__subtitle {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .neck .neck__subtitle {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .neck .neck__subtitle {
    font-size: 16px;
  }
}
.neck1 {
  background-image: url(images/neck1.jpg);
}
@media screen and (max-width: 1400px) {
  .neck1 {
    background-position: left;
  }
}

.neck2 {
  background-image: url(images/neck2.jpg);
}

.neck3 {
  background-image: url(images/neck3.jpg);
}
@media screen and (max-width: 1400px) {
  .neck3 {
    background-position: left;
  }
}

.neck4 {
  background-image: url(images/neck4.jpg);
}

.neck5 {
  background-image: url(images/neck5.jpg);
}

.neck6 {
  background-image: url(images/neck6.jpg);
}

.centerimg {
  margin-bottom: 30px;
}
.centerimg img {
  border-radius: 30px;
}

.kasou_main {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .kasou_main {
    margin-bottom: 20px;
  }
}
.kasou_main .kasou_main_big {
  line-height: 1.6;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .kasou_main .kasou_main_big {
    font-size: 17px;
  }
}

.kasou_content {
  overflow: hidden;
  position: relative;
  padding-top: 130px;
  z-index: 0;
  font-size: 18px;
  background-size: cover;
  padding-bottom: 130px;
}
@media screen and (max-width: 1199px) {
  .kasou_content {
    padding-top: 90px;
    font-size: 17px;
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 767px) {
  .kasou_content {
    padding-top: 80px;
    padding-bottom: 70px;
    font-size: 15px;
  }
}

.breadcont .container {
  position: relative;
}
.breadcont .container .bread {
  font-size: 14px;
  color: #7f7f7f;
  position: absolute;
  z-index: 3;
  left: 5px;
  top: 20px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .breadcont .container .bread {
    top: 10px;
    font-size: 12px;
  }
}
.breadcont .container .bread span {
  padding: 0 10px;
}
@media screen and (max-width: 1199px) {
  .breadcont .container .bread span {
    padding: 0 5px;
  }
}
@media screen and (max-width: 767px) {
  .breadcont .container .bread span {
    padding: 0 3px;
  }
}

.kasou_content_non {
  height: 55px;
  width: 100%;
  background-color: #f3f6fa;
}

.kasou_content2 {
  padding-top: 130px;
  padding-bottom: 130px;
  background-color: #eff7fa;
  background-size: cover;
}
@media screen and (max-width: 1199px) {
  .kasou_content2 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 767px) {
  .kasou_content2 {
    padding-top: 80px;
    padding-bottom: 70px;
  }
}

.kasou_content2_2 {
  padding-top: 80px;
  padding-bottom: 0px;
  background-color: #eff7fa;
  background-size: cover;
}
@media screen and (max-width: 1199px) {
  .kasou_content2_2 {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 767px) {
  .kasou_content2_2 {
    padding-top: 50px;
    padding-bottom: 0px;
  }
}

.textcenter {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .under0 {
    padding-bottom: 0 !important;
  }
}

.k_subtitle1 {
  font-size: 36px;
  font-weight: 700;
  padding-left: 30px;
  line-height: 1;
  margin-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .k_subtitle1 {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .k_subtitle1 {
    font-size: 24px;
  }
}
.k_subtitle1::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: #1354B4;
}

.k_subtitle2 {
  margin-bottom: 50px;
  padding-top: 35px;
  line-height: 1.3;
  font-size: 48px;
  color: #1354B4;
  position: relative;
  font-weight: 700;
}
@media screen and (max-width: 1199px) {
  .k_subtitle2 {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .k_subtitle2 {
    margin-bottom: 30px;
    font-size: 27px;
  }
}
.k_subtitle2::before {
  content: "";
  position: absolute;
  background-color: #15a2ea;
  width: 80px;
  height: 6px;
  left: 0;
  top: 0;
}

.mapone {
  margin-top: 20px;
}

.workscont {
  margin-bottom: 70px;
}
@media screen and (max-width: 1056px) {
  .workscont {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .workscont {
    margin-bottom: 20px;
  }
}
.workscont .imgflex {
  justify-content: space-between;
  display: flex;
  position: relative;
  flex-wrap: wrap;
  margin-top: 80px;
}
@media screen and (max-width: 1199px) {
  .workscont .imgflex {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .workscont .imgflex {
    margin-top: 30px;
  }
}
.workscont .imgflex::after {
  display: block;
  content: "";
  width: calc(33% - 15px);
}
@media screen and (max-width: 767px) {
  .workscont .imgflex::after {
    display: none;
  }
}
.workscont .imgflex .imgb {
  width: calc(33% - 15px);
}
@media screen and (max-width: 767px) {
  .workscont .imgflex .imgb {
    width: calc(50% - 7px);
    margin-bottom: 15px;
  }
}
.workscont .imgflex2 .imgb {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .workscont .imgflex2 .imgb {
    margin-bottom: 15px;
  }
}
.workscont .textone {
  margin-top: -80px;
  border-radius: 20px;
  background-color: #fff;
  padding: 80px;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .workscont .textone {
    padding: 55px;
  }
}
@media screen and (max-width: 1056px) {
  .workscont .textone {
    padding: 40px;
    margin-top: -40px;
  }
}
@media screen and (max-width: 767px) {
  .workscont .textone {
    margin-top: 0;
    padding: 30px 0px;
  }
}
.workscont .textone .intitle {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 1400px) {
  .workscont .textone .intitle {
    font-size: 36px;
  }
}
@media screen and (max-width: 1199px) {
  .workscont .textone .intitle {
    font-size: 30px;
    padding-left: 114px;
    text-indent: -114px;
  }
}
@media screen and (max-width: 767px) {
  .workscont .textone .intitle {
    margin-bottom: 30px;
    font-size: 22px;
    line-height: 1.3;
    text-indent: 0px;
    padding-left: 0px;
    display: flex;
  }
}
.workscont .textone .intitle span {
  font-weight: 200;
  font-size: 82px;
  margin-right: 30px;
  color: #214B94;
}
@media screen and (max-width: 1400px) {
  .workscont .textone .intitle span {
    font-size: 68px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .workscont .textone .intitle span {
    font-size: 40px;
    margin-right: 10px;
    display: block;
    line-height: 1;
  }
}
.workscont .incontent {
  width: 100%;
  max-width: 1160px;
  margin: auto;
}
.workscont .incontent .subtitle {
  color: #214B94;
  line-height: 1.3;
  font-size: 28px;
  margin: 80px 0 30px;
  font-weight: 700;
}
@media screen and (max-width: 1199px) {
  .workscont .incontent .subtitle {
    font-size: 21px;
    margin: 40px 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .workscont .incontent .subtitle {
    font-size: 18px;
    margin: 20px 0 20px;
  }
}
.workscont .txtb {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .workscont .txtb {
    font-size: 16px;
  }
}

.galleryflex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.galleryflex .imgb {
  margin-top: 30px;
  width: calc(33% - 15px);
}
@media screen and (max-width: 991px) {
  .galleryflex .imgb {
    margin-top: 20px;
    width: calc(33% - 10px);
  }
}
@media screen and (max-width: 767px) {
  .galleryflex .imgb {
    margin-top: 20px;
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 480px) {
  .galleryflex .imgb {
    margin-top: 15px;
    width: calc(50% - 7px);
  }
}
.galleryflex .imgb img {
  border-radius: 6px;
}

.historyone {
  margin-top: 70px;
}
.historyone .intitle {
  color: #1354B4;
  font-size: 21px;
  line-height: 1;
  margin-bottom: 30px;
  font-weight: 700;
}
@media screen and (max-width: 991px) {
  .historyone .intitle {
    font-size: 19px;
    margin-bottom: 20px;
  }
}
.historyone table {
  font-size: 18px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .historyone table {
    font-size: 16px;
  }
}
.historyone table th {
  color: #214B94;
  width: 10%;
  vertical-align: top;
}
@media screen and (max-width: 1400px) {
  .historyone table th {
    width: 12%;
  }
}
@media screen and (max-width: 1199px) {
  .historyone table th {
    width: 25%;
  }
}
.historyone table td {
  width: 90%;
}
@media screen and (max-width: 1400px) {
  .historyone table td {
    width: 88%;
  }
}
@media screen and (max-width: 1199px) {
  .historyone table td {
    width: 75%;
  }
}
.historyone table .long {
  padding: 50px 0;
}
@media screen and (max-width: 991px) {
  .historyone table .long {
    padding: 30px 0;
  }
}

.prof_flex {
  display: flex;
}
@media screen and (max-width: 991px) {
  .prof_flex {
    display: block;
  }
}
.prof_flex .side1 {
  order: 1;
  position: relative;
  width: 50%;
}
@media screen and (max-width: 1600px) {
  .prof_flex .side1 {
    margin-right: 120px;
  }
}
@media screen and (max-width: 1400px) {
  .prof_flex .side1 {
    margin-right: 60px;
  }
}
@media screen and (max-width: 991px) {
  .prof_flex .side1 {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
.prof_flex .side1 .inimg1 {
  margin-left: 50px;
}
@media screen and (max-width: 991px) {
  .prof_flex .side1 .inimg1 {
    margin-left: 0px;
  }
}
.prof_flex .side1 .infloat {
  position: absolute;
  bottom: 30%;
  left: 0;
}
@media screen and (max-width: 1600px) {
  .prof_flex .side1 .infloat {
    bottom: 41%;
  }
}
@media screen and (max-width: 1400px) {
  .prof_flex .side1 .infloat {
    bottom: 56%;
    max-width: 110px;
    left: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .prof_flex .side1 .infloat {
    bottom: auto;
    max-width: 105px;
    top: 0;
  }
}
@media screen and (max-width: 991px) {
  .prof_flex .side1 .infloat {
    max-width: 120px;
  }
}
@media screen and (max-width: 767px) {
  .prof_flex .side1 .infloat {
    max-width: 100px;
  }
}
@media screen and (max-width: 480px) {
  .prof_flex .side1 .infloat {
    max-width: 80px;
    left: 10px;
  }
}
.prof_flex .textside {
  width: 50%;
  order: 2;
  margin-left: 60px;
  margin-top: 40px;
}
@media screen and (max-width: 991px) {
  .prof_flex .textside {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }
}
.prof_flex .textside .textone {
  margin-bottom: 50px;
  font-size: 18px;
}
@media screen and (max-width: 991px) {
  .prof_flex .textside .textone {
    margin-bottom: 30px;
    font-size: 16px;
  }
}
.prof_flex .textside .txtb {
  font-size: 18px;
  margin-bottom: 50px;
}
@media screen and (max-width: 991px) {
  .prof_flex .textside .txtb {
    margin-bottom: 30px;
    font-size: 16px;
  }
}
.prof_flex .textside .ulside {
  font-size: 18px;
  margin-top: 40px;
}
@media screen and (max-width: 991px) {
  .prof_flex .textside .ulside {
    margin-top: 20px;
    font-size: 16px;
  }
}
.prof_flex .textside .ulside .onetitle {
  font-weight: 700;
  color: #214B94;
}
.prof_flex .textside .titleline {
  color: #214B94;
}
@media screen and (max-width: 1199px) {
  .prof_flex .textside .titleline {
    display: block;
    margin-bottom: 30px;
  }
}
.prof_flex .textside .titleline .maintitle1 {
  font-size: 58px;
  font-weight: 700;
}
@media screen and (max-width: 1199px) {
  .prof_flex .textside .titleline .maintitle1 {
    font-size: 46px;
    line-height: 1;
  }
}
.prof_flex .textside .titleline .subtitle2 {
  font-weight: 700;
  font-size: 24px;
  margin-left: 25px;
}
@media screen and (max-width: 1199px) {
  .prof_flex .textside .titleline .subtitle2 {
    margin-left: 0;
    font-size: 20px;
    margin-top: 20px;
  }
}

.p_flex {
  display: flex;
}
@media screen and (max-width: 991px) {
  .p_flex {
    display: block;
  }
}
.p_flex .imgb {
  order: 2;
  width: 50%;
}
@media screen and (max-width: 991px) {
  .p_flex .imgb {
    width: 100%;
  }
}
.p_flex .textside {
  order: 1;
  width: 50%;
  margin-right: 100px;
}
@media screen and (max-width: 1400px) {
  .p_flex .textside {
    margin-right: 60px;
  }
}
@media screen and (max-width: 991px) {
  .p_flex .textside {
    width: 100%;
    margin-right: 0;
    margin-top: 30px;
  }
}

.policytext {
  background-color: #fff;
  border-radius: 20px 20px 0 0;
  margin-top: 80px;
}
@media screen and (max-width: 1199px) {
  .policytext {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .policytext {
    margin-top: 30px;
  }
}
.policytext .intitle {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  padding: 30px 15px;
  border-radius: 20px 20px 0 0;
  background-color: #214B94;
}
@media screen and (max-width: 1199px) {
  .policytext .intitle {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .policytext .intitle {
    font-size: 26px;
  }
}
@media screen and (max-width: 480px) {
  .policytext .intitle {
    font-size: 24px;
    padding: 20px;
  }
}
.policytext .inflex {
  width: 100%;
  max-width: 1340px;
  margin: 50px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 1600px) {
  .policytext .inflex {
    max-width: 1150px;
  }
}
@media screen and (max-width: 1400px) {
  .policytext .inflex {
    padding: 0 30px;
    max-width: 600px;
  }
}
@media screen and (max-width: 767px) {
  .policytext .inflex {
    display: block;
    margin: 0px auto;
    padding: 40px 30px 10px;
  }
}
@media screen and (max-width: 480px) {
  .policytext .inflex {
    display: block;
    margin: 0px auto;
    padding: 35px 25px 10px;
  }
}
.policytext .inflex .inblock {
  margin-bottom: 40px;
  font-size: 26px;
  font-weight: 700;
  width: calc(50% - 3px);
  padding-left: 50px;
  text-indent: -50px;
}
@media screen and (max-width: 1600px) {
  .policytext .inflex .inblock {
    font-size: 24px;
    padding-left: 50px;
    text-indent: -50px;
  }
}
@media screen and (max-width: 1400px) {
  .policytext .inflex .inblock {
    width: 100%;
  }
}
@media screen and (max-width: 1199px) {
  .policytext .inflex .inblock {
    font-size: 21px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .policytext .inflex .inblock {
    width: 100%;
    margin-bottom: 20px;
    padding-left: 50px;
    line-height: 1.2;
    text-indent: -50px;
  }
}
@media screen and (max-width: 480px) {
  .policytext .inflex .inblock {
    width: 100%;
    font-size: 18px;
    margin-bottom: 20px;
    padding-left: 40px;
    line-height: 1.2;
    text-indent: -40px;
  }
}
.policytext .inflex .inblock img {
  margin-right: 10px;
}
@media screen and (max-width: 480px) {
  .policytext .inflex .inblock img {
    max-width: 30px;
  }
}

.messaflex {
  display: flex;
  margin-top: 30px;
  border-radius: 20px;
  background-color: #fff;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .messaflex {
    display: block;
    width: 100%;
    max-width: 640px;
  }
}
.messaflex .imgb {
  width: 40%;
}
@media screen and (max-width: 991px) {
  .messaflex .imgb {
    width: 100%;
    margin-bottom: 40px;
  }
}
.messaflex .imgb img {
  border-radius: 20px 0 0 20px;
}
@media screen and (max-width: 991px) {
  .messaflex .imgb img {
    border-radius: 20px 20px 0 0px;
  }
}
.messaflex .messageside {
  margin-left: 80px;
}
@media screen and (max-width: 1600px) {
  .messaflex .messageside {
    margin-left: 30px;
  }
}
@media screen and (max-width: 991px) {
  .messaflex .messageside {
    margin-left: 0;
    padding: 0px 20px 30px;
  }
}
.messaflex .messageside .intitle {
  line-height: 1;
}
.messaflex .messageside .intitle span {
  font-size: 21px;
  color: #fff;
  padding: 12px 30px;
  background-color: #214B94;
  border-radius: 25px;
  line-height: 1;
}
@media screen and (max-width: 1199px) {
  .messaflex .messageside .intitle span {
    font-size: 18px;
    color: #fff;
    padding: 8px 20px;
  }
}
.messaflex .messageside .onetitle {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin: 55px 0 35px;
}
@media screen and (max-width: 1400px) {
  .messaflex .messageside .onetitle {
    font-size: 30px;
    margin: 40px 0 20px;
  }
}
@media screen and (max-width: 1199px) {
  .messaflex .messageside .onetitle {
    font-size: 27px;
    margin: 35px 0 20px;
  }
}
@media screen and (max-width: 991px) {
  .messaflex .messageside .onetitle {
    font-size: 27px;
  }
}
@media screen and (max-width: 767px) {
  .messaflex .messageside .onetitle {
    font-size: 22px;
  }
}
.messaflex .messageside ul li {
  padding-left: 20px;
  font-weight: 700;
  position: relative;
}
.messaflex .messageside ul li::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #214B94;
  border-radius: 50%;
}
@media screen and (max-width: 991px) {
  .messaflex .messageside ul li::before {
    top: 8px;
    bottom: auto;
  }
}

.b_cargo {
  position: relative;
}
.b_cargo::before {
  content: "";
  position: absolute;
  top: 0;
}
.b_cargo::after {
  content: "";
  position: absolute;
  bottom: 0;
}
.b_cargo .b_kasou {
  background-color: #181b39;
  border-radius: 40px;
  padding: 100px 0;
  color: #fff;
}
@media screen and (max-width: 991px) {
  .b_cargo .b_kasou {
    padding: 80px 0;
  }
}
@media screen and (max-width: 767px) {
  .b_cargo .b_kasou {
    padding: 60px 0;
    border-radius: 20px;
  }
}
.b_cargo .b_kasou .centertitle {
  font-size: 48px;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}
@media screen and (max-width: 991px) {
  .b_cargo .b_kasou .centertitle {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .b_cargo .b_kasou .centertitle {
    text-align: left;
    font-size: 27px;
  }
}
.shortone {
  margin-top: 80px;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .shortone {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .shortone {
    margin-top: 30px;
    margin-bottom: 15px;
  }
}

.inbannerflex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .inbannerflex {
    display: block;
  }
}
.inbannerflex .side1 {
  margin-top: 40px;
  display: block;
  width: calc(50% - 15px);
  border-radius: 6px;
  position: relative;
  background-image: url(images/bg_banner1.jpg);
  background-size: cover;
  padding: 40px 30px 30px 40px;
}
@media screen and (max-width: 1400px) {
  .inbannerflex .side1 {
    background-position: center;
  }
}
@media screen and (max-width: 991px) {
  .inbannerflex .side1 {
    width: 100%;
    padding: 20px;
  }
}
.inbannerflex .side1:hover {
  color: #fff;
  opacity: 0.7;
}
.inbannerflex .side1 .sidetitle {
  margin-bottom: 70px;
}
@media screen and (max-width: 1199px) {
  .inbannerflex .side1 .sidetitle {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 991px) {
  .inbannerflex .side1 .sidetitle {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 767px) {
  .inbannerflex .side1 .sidetitle {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 480px) {
  .inbannerflex .side1 .sidetitle {
    margin-bottom: 30px;
  }
}
.inbannerflex .side1 .sidetitle .maint {
  font-weight: 700;
  font-size: 34px;
}
@media screen and (max-width: 991px) {
  .inbannerflex .side1 .sidetitle .maint {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .inbannerflex .side1 .sidetitle .maint {
    font-size: 25px;
  }
}
@media screen and (max-width: 480px) {
  .inbannerflex .side1 .sidetitle .maint {
    font-size: 23px;
  }
}
.inbannerflex .side1 .sidetitle .subt {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .inbannerflex .side1 .sidetitle .subt {
    margin-top: 10px;
  }
}
.inbannerflex .side1 .infloat {
  display: block;
  margin-left: auto;
}
.inbannerflex .side2 {
  background-image: url(images/bg_banner2.jpg);
}
@media screen and (max-width: 991px) {
  .inbannerflex .side2 {
    background-position: left 0px top;
  }
}
@media screen and (max-width: 480px) {
  .inbannerflex .side2 {
    background-position: center;
  }
}

.price_table {
  margin-top: 30px;
}
.price_table th {
  width: 60%;
  color: #fff;
  background-color: #fe5278;
}
@media screen and (max-width: 767px) {
  .price_table th {
    width: 100%;
  }
}
.price_table td {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .price_table td {
    width: 100%;
  }
}

.kasoucontentimg_base {
  position: relative;
  z-index: 1;
}
.kasoucontentimg_base .nav-arrow i {
  cursor: pointer;
  font-size: 36px;
  color: #fff;
  position: absolute;
  z-index: 2;
  top: 70px;
  left: 20px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .kasoucontentimg_base .nav-arrow i {
    font-size: 24px;
    color: #333;
  }
}
@media screen and (max-width: 480px) {
  .kasoucontentimg_base .nav-arrow i {
    left: 30px;
  }
}
.kasoucontentimg_base .next-arrow i {
  cursor: pointer;
  font-size: 36px;
  color: #fff;
  z-index: 2;
  position: absolute;
  top: 70px;
  right: 0px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .kasoucontentimg_base .next-arrow i {
    font-size: 24px;
    color: #333;
  }
}
.kasoucontentimg_base img {
  margin: auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .kasoucontentimg_base img {
    max-height: 200px;
  }
}
.kasoucontentimg_base .kasou_img {
  display: none;
}
@media screen and (max-width: 767px) {
  .kasoucontentimg_base .kasou_img {
    display: block;
    text-align: center;
  }
}

.kasoucontentimg_base2 {
  display: flex;
}
.kasoucontentimg_base2 .kasou_img {
  margin: 0 3px;
}
@media screen and (max-width: 767px) {
  .kasoucontentimg_base2 .kasou_img .text {
    display: none;
  }
}

.imgline {
  display: flex;
}
.imgline .kasou_img {
  margin: 0 10px;
}

.photo_thumb {
  display: flex;
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .photo_thumb {
    margin-top: 20px;
    max-width: 280px;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 480px) {
  .photo_thumb {
    max-width: 320px;
  }
}

.thumb__block--cell {
  max-width: 150px;
  width: 100%;
  margin-right: 10px;
  margin-left: 10px;
  margin-top: 10px;
}
@media screen and (max-width: 1056px) {
  .thumb__block--cell {
    max-width: 115px;
  }
}
@media screen and (max-width: 767px) {
  .thumb__block--cell {
    max-width: 120px;
    margin-right: 3px;
    margin-left: 3px;
    margin-bottom: 3px;
    margin-top: 0;
  }
}
@media screen and (max-width: 480px) {
  .thumb__block--cell {
    max-width: 78px;
    margin-right: 2px;
    margin-left: 2px;
    margin-bottom: 2px;
  }
}

.slideimg1 {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .slideimg1 {
    text-align: center;
    margin-bottom: 20px;
  }
}
.slideimg1 img {
  border-radius: 30px;
}

.imgflex_st {
  display: flex;
  justify-content: space-between;
}
.imgflex_st .img {
  width: calc(50% - 10px);
}

/*====================================

  ■生徒様の声

=====================================*/
.id {
  margin-top: -70px;
  padding-top: 70px;
}

.table_subtext {
  margin-bottom: 30px;
}

/*====================================

  ■会社概要

=====================================*/
@media screen and (max-width: 767px) {
  .tableimg {
    text-align: center;
  }
}

.company_table {
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  width: 100%;
}
.company_table span {
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .company_table {
    border: none;
    margin-top: 10px;
  }
}
.company_table th {
  padding: 14px 20px;
  border-width: 0 0 1px 0;
  vertical-align: middle;
  width: 24%;
  color: #fff;
  background-color: #1354B4;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .company_table th {
    padding: 10px;
    border-width: 0 0 0 0;
    width: auto;
    display: block;
    text-align: left;
  }
}
.company_table td {
  padding: 14px 20px;
  vertical-align: top;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background: #fff;
  text-align: left;
}
.company_table td a {
  color: #3d9be9;
}
.company_table td a:hover {
  color: #2f52b6;
}
@media screen and (max-width: 767px) {
  .company_table td {
    padding: 10px 10px;
    border-width: 0 0 0 0;
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .mapimg1 {
    margin-bottom: 20px;
    text-align: center;
  }
}

.imgbanner {
  text-align: center;
}
.imgbanner img {
  border-radius: 10px;
}

.mapblock {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .mapblock {
    height: 220px;
  }
}
@media screen and (max-width: 767px) {
  .mapblock iframe {
    height: 220px;
  }
}
.mapblock .maptext {
  margin-bottom: 10px;
}
.mapblock .maptext span {
  display: block;
  font-size: 22px;
  font-weight: 700;
}

/*====================================

  ■採用情報

=====================================*/
/*====================================

  ■商品紹介

=====================================*/
.archive-blog2 {
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: #ebf0f7;
}
@media screen and (max-width: 767px) {
  .archive-blog2 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .worklist__loop {
    max-width: none;
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
    margin-bottom: 40px;
    padding: 15px 15px 25px;
    background-color: #f2f6fc;
  }
}

.taxonomy_float {
  border-radius: 20px;
  border: 1px solid;
  color: #fe5278;
  position: absolute;
  padding: 5px;
  height: 30px;
  line-height: 1.4;
  width: 100%;
  max-width: 120px;
  min-width: 120px;
  text-align: center;
  bottom: auto;
  top: 10px;
  margin: auto;
  font-size: 13px;
  right: 0;
}
@media screen and (max-width: 480px) {
  .taxonomy_float {
    bottom: auto;
    top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .txt_english {
    margin-bottom: 50px;
  }
}

.archive-news {
  background-color: #fff;
  padding: 20px;
}

.titleblock_singlepage {
  position: relative;
  line-height: 1.5;
}

.archive-news__block {
  background-color: #fff;
  border-radius: 10px;
  margin-top: 0px !important;
  padding: 0px;
}
.archive-news__block .name_detail {
  text-align: right;
  margin-top: 20px;
  margin-bottom: 10px;
}
.archive-news__block .textline {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.imgset {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 804px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .imgset {
    display: block;
  }
}
.imgset .img {
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .imgset .img {
    margin-right: auto;
    margin-bottom: 10px;
    text-align: center;
  }
}

.content_flex {
  position: relative;
  background-color: #fff;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .content_flex {
    padding: 20px;
  }
}
.content_flex .intro_float {
  position: absolute;
  top: 0;
  right: 0;
}
.content_flex .img__block {
  text-align: center;
}
.content_flex .img__block img {
  border-radius: 12px;
}
.content_flex .intro_box1 {
  margin-top: 30px;
}
.content_flex .intro_box1 .cell2_charge {
  font-size: 18px;
  font-weight: 700;
  color: #018bcd;
  border-bottom: 1px dotted;
  margin-bottom: 10px;
  line-height: 1.4;
  padding-bottom: 5px;
}
.content_flex .intro_box1 .carry_space {
  line-height: 1.8;
}

/*====================================

  ■お問い合わせ

=====================================*/
.readtx {
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .readtx {
    padding: 0px 10px;
  }
}

.wpcf7-list-item-label {
  font-weight: 500;
  color: #333333;
}

div .wpcf7 .ajax-loader {
  display: block;
  margin: 10px auto 0 auto;
}

.privacy_subtitle {
  margin-top: 20px;
  color: #333;
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 18px;
  text-indent: -20px;
  padding-left: 20px;
}
.privacy_subtitle span {
  font-size: 14px;
  color: #214B94;
  margin-right: 5px;
}

.privacytext {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .privacytext {
    margin-top: 30px;
  }
}
.privacytext a:hover {
  color: #104000;
}
.privacytext .text span {
  color: #1354B4;
  font-weight: 700;
  margin-right: 5px;
  font-size: 17px;
  font-family: "Heebo", sans-serif;
}
.privacytext ul {
  margin-top: 10px;
  padding-left: 17px;
  text-indent: -17px;
}
@media screen and (max-width: 767px) {
  .privacytext ul {
    padding-left: 15px;
    text-indent: -15px;
  }
}
.privacytext .ulshort {
  margin-left: 20px;
}

.contactus_container {
  display: flex;
}
@media screen and (max-width: 767px) {
  .contactus_container {
    display: block;
  }
}

.wpcf7-list-item {
  color: #333333;
  font-weight: 500 !important;
}
@media screen and (max-width: 480px) {
  .wpcf7-list-item {
    display: block;
    margin: 0;
  }
}

.table__head {
  margin-top: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .table__head {
    margin-top: 20px;
  }
}
.table__head span {
  color: #fff;
  background-color: #d14124;
  padding: 0 3px;
  font-weight: 600;
}

.contact__table {
  width: 100%;
  max-width: 340px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 480px) {
  .contact__table {
    max-width: 280px;
    display: block;
    margin: 35px auto 50px;
  }
}

.table-contact {
  table-layout: fixed;
  border-top: 1px solid #e4e4e4;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .table-contact {
    border: none;
  }
}
.table-contact th {
  position: relative;
  padding: 15px;
  width: 30%;
  color: #333333;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid #e4e4e4 !important;
}
@media screen and (max-width: 767px) {
  .table-contact th {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px !important;
    padding-top: 15px !important;
    border-bottom: none !important;
    border-right: none;
    padding-bottom: 0 !important;
  }
}
.table-contact th .red {
  color: #fff;
  background-color: #d14124;
  font-weight: 700;
  position: absolute;
  right: 10px;
  padding: 0 2px;
  font-size: 14px;
}
.table-contact td {
  width: 70%;
  padding: 15px;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
  .table-contact td {
    display: block;
    width: 100%;
    padding: 10px;
    border-bottom: none;
  }
}
.table-contact .input_half input {
  max-width: 158px;
  padding: 0 5px;
}
.table-contact .input_half select {
  max-width: 158px;
  padding: 0 5px;
}

.contact__table.btn__block .txt__inline03 input {
  font-size: 16px;
  color: #fff;
  border-radius: 50px;
  position: relative;
  text-align: center;
  display: block;
  border: 1px solid #1354B4;
  margin: 0 10px 10px;
  width: 100%;
  padding: 10px 10px;
  letter-spacing: 1px;
  transition: 0.5s;
  background: #1354B4;
  margin-top: 20px;
  transition: 0.5s;
}
@media screen and (max-width: 480px) {
  .contact__table.btn__block .txt__inline03 input {
    width: 240px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 0;
    margin-bottom: 15px;
  }
}
.contact__table.btn__block .txt__inline03 input:hover {
  transition-duration: 0.7s;
  background-color: #fff;
  color: #1354B4;
  border: 1px solid #1354B4;
}

.contact__table.btn__block .inline04 input {
  color: #0d4e7c;
  background: #fff;
  border: 1px solid #0d4e7c;
}
.contact__table.btn__block .inline04 input:hover {
  border: 1px solid #018bcd;
}

@media screen and (max-width: 480px) {
  .contact__table.btn__block .txt__inline03 {
    position: relative;
  }
}

@media screen and (max-width: 480px) {
  .wpcf7-spinner {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
  }
}

.contact_box1 {
  text-align: center;
}

div .wpcf7-mail-sent-ok {
  display: none !important;
}

.linktext {
  text-align: right;
}
.linktext span {
  border-bottom: 1px solid;
}

.table-common {
  text-align: center;
  border-top: 1px solid #e4e4e4;
  font-size: 15px;
  background: transparent;
  width: 100%;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .table-common {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .table-common tr {
    display: block;
    width: 100%;
    border-left: none;
  }
}
.table-common tr th {
  text-align: left;
  border-bottom: 1px solid #e4e4e4;
  font-weight: bold;
  padding-top: 24px;
  padding-bottom: 24px;
  position: relative;
  padding-right: 10px;
  width: 25%;
  font-size: 16px;
  background: transparent;
  min-width: 130px;
  color: #1354B4;
}
@media screen and (max-width: 767px) {
  .table-common tr th {
    display: block;
    clear: both;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 0px;
    padding-left: 12px;
    padding-right: 12px;
    border: none;
    text-align: left;
    float: left;
  }
}
.table-common tr th .red {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translate(0%, -50%);
  margin: 0;
  padding: 0 3px;
  font-size: 12px;
}
@media screen and (max-width: 1056px) {
  .table-common tr th .red {
    right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .table-common tr th .red {
    position: static;
    margin-left: 10px;
  }
}
.table-common tr td {
  text-align: left;
  font-weight: 500;
  border-bottom: 1px solid #e4e4e4;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-right: 20px;
  background: transparent;
  font-size: 16px;
  letter-spacing: 1px;
}
.table-common tr td a.site {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .table-common tr td {
    display: block;
    clear: both;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 12px;
    padding-right: 12px;
    border-left: none;
    text-align: left;
    float: left;
  }
}
.table-common tr td ul li span {
  font-size: 12px;
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  .table-common .main {
    display: none;
  }
}

/*====================================

  ■お知らせ

=====================================*/
.blogrow .img--center {
  overflow: hidden;
  padding-top: 67.25%;
  position: relative;
}
.blogrow .img--center img {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
}

.daysline {
  margin-bottom: 25px;
}
.daysline .days_block {
  margin-right: 15px;
}

.cat_one {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .cat_one {
    margin-top: 10px;
  }
}

.cat_name {
  font-size: 12px;
  font-weight: 700;
  display: block;
  margin: 7px 0 0;
}
.cat_name .num_cat_parent {
  display: inline-block;
  padding: 7px 10px;
  margin: 0 7px 7px 0;
  width: 100%;
  border: 1px solid #cccccc;
  line-height: 1;
  text-align: center;
  max-width: 124px;
  color: #214B94;
  border-radius: 25px;
  background-color: #fff;
}
@media screen and (max-width: 480px) {
  .cat_name .num_cat_parent {
    padding: 3px 5px;
  }
}
.main_text {
  display: block;
}

.cat_name_kasou {
  display: flex;
}
@media screen and (max-width: 767px) {
  .cat_name_kasou {
    display: block;
  }
}
.cat_name_kasou span {
  background-color: #ff8d48;
  color: #fff;
  display: inline-block;
  width: 100%;
  max-width: 150px;
  margin-right: 10px;
  text-align: center;
  padding: 0 5px;
}
@media screen and (max-width: 767px) {
  .cat_name_kasou span {
    display: block;
    margin-bottom: 5px;
  }
}

.topnews__content a {
  border-bottom: 1px solid #eaeaea;
  margin-top: 30px;
  padding-bottom: 30px;
  display: block;
  padding-left: 15px;
}
@media screen and (max-width: 767px) {
  .topnews__content a {
    padding-left: 0px;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .topnews__content a .img--center {
    margin-bottom: 20px;
  }
}
.topnews__content a .newsrow {
  display: flex;
}
.topnews__content a .newsrow .img--center {
  max-width: 140px;
  min-width: 140px;
  margin-right: 28px;
}
@media screen and (max-width: 767px) {
  .topnews__content a .newsrow .img--center {
    margin-right: 14px;
    max-width: 120px;
    min-width: 120px;
  }
}
.topnews__content a .newsrow .rightside {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.topnews__content a .days_block {
  color: #9a9a9a;
  font-size: 16px;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .topnews__content a .days_block {
    padding-left: 0px;
    font-size: 14px;
  }
}
.topnews__content a:hover {
  color: #1d3966;
  opacity: 0.6;
  transition-duration: 0.7s;
}

.archive-news__inner a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  position: relative;
  color: #333;
  padding: 10px 135px 10px 15px;
  text-decoration: none;
  border-bottom: 1px solid;
  letter-spacing: 1px;
  line-height: 1;
}
.archive-news__inner a:hover {
  color: #fff;
  background-color: #ff8d48;
}
.archive-news__inner a:hover .num_infocat_m {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .archive-news__inner a {
    white-space: normal;
    display: block;
    word-break: break-all;
    padding: 15px;
    line-height: 1.5;
  }
}
.archive-news__inner a .archive-news__date {
  color: #947666;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .archive-news__inner a .archive-news__date {
    display: block;
    font-size: 13px;
  }
}
.archive-news__inner a:hover {
  color: #fff;
}
.archive-news__inner a:hover span {
  color: #fff;
}

.freetext {
  background-color: #fff;
  padding: 50px;
  border-radius: 10px;
}
@media screen and (max-width: 991px) {
  .freetext {
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .freetext {
    padding: 20px;
  }
}
.freetext .free_title {
  font-size: 18px;
  color: #104000;
  font-weight: 700;
  margin-bottom: 10px;
}
.freetext .free_title span {
  background-color: #eff2e5;
  border-radius: 10px;
  padding: 2px 10px;
}

.single-blog__date {
  color: #6e6e6e;
  font-size: 14px;
  font-weight: 300;
  margin-right: 10px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .single-blog__date {
    font-size: 15px;
  }
}

.archive-blog__title {
  font-size: 23px;
  font-weight: 700;
  display: block;
  display: block;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .archive-blog__title {
    font-size: 20px;
  }
}

.singletitle {
  position: relative;
  padding: 0 0 15px 15px;
  margin-bottom: 30px;
  border-bottom: 2px solid;
}
.singletitle::before {
  content: "";
  background-color: #fe5278;
  width: 4px;
  height: 75%;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  position: absolute;
}
.singletitle .taxonomy_float {
  top: -5px !important;
}

.for_details {
  font-weight: 400;
  position: absolute;
  right: 30px;
  font-size: 13px;
  font-weight: 700;
  top: 5px;
  border: 1px solid;
  padding: 5px 13px;
  color: #ff8d48;
}
@media screen and (max-width: 767px) {
  .for_details {
    position: static;
    margin-left: auto;
    max-width: 99px;
    display: block;
    margin-top: 10px;
  }
}

.single-blog__title {
  word-break: break-all;
  font-size: 28px;
  font-weight: 600;
  position: relative;
  margin-top: 20px;
  line-height: 1.5;
  padding-bottom: 14px;
  border-bottom: 1px solid #cfd9df;
  margin-bottom: 20px;
}
@media screen and (max-width: 1199px) {
  .single-blog__title {
    font-size: 26px;
  }
}
@media screen and (max-width: 1056px) {
  .single-blog__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .single-blog__title {
    font-size: 21px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 480px) {
  .single-blog__title {
    font-size: 19px;
    margin-bottom: 0px;
  }
}

.single-blog__title2 {
  font-family: "Kiwi Maru", serif;
  font-size: 28px;
  position: relative;
  color: #152835;
  line-height: 1.2;
  padding-bottom: 5px;
  border-bottom: 1px solid #cfd9df;
}
@media screen and (max-width: 1056px) {
  .single-blog__title2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .single-blog__title2 {
    font-size: 21px;
  }
}
@media screen and (max-width: 480px) {
  .single-blog__title2 {
    margin-bottom: 10px;
  }
}
.single-blog__title2 span {
  color: #018bcd;
  font-weight: 700;
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
}
@media screen and (max-width: 480px) {
  .single-blog__title2 span {
    font-size: 14px;
  }
}

/*====================================

  ■フッター

=====================================*/
.footer_bigblock_outer.color {
  background-color: #f4f6fa;
}

.footer_bigblock {
  position: relative;
  background: #181b39;
  padding: 110px 0 80px;
  border-radius: 80px 80px 0 0;
}
@media screen and (max-width: 1056px) {
  .footer_bigblock {
    padding: 80px 0 60px;
    border-radius: 60px 60px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .footer_bigblock {
    padding: 60px 0 40px;
    border-radius: 40px 40px 0 0;
  }
}

.footer_contactblock {
  padding-top: 50px;
  position: relative;
  padding-bottom: 70px;
  background-size: cover;
  background-position: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer_contactblock {
    padding-top: 30px;
    padding-bottom: 50px;
  }
}

#page-top {
  display: block;
}
#page-top a {
  display: block;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  position: fixed;
  bottom: 48px;
  right: 30px;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  #page-top a {
    max-width: 50px;
    bottom: 15px;
    right: 15px;
  }
}

.footer_wave {
  z-index: -2;
  position: relative;
  margin: auto;
  width: 1920px;
}
#footer {
  top: auto !important;
  position: relative;
}

/*ページトップ*/
#page-top {
  display: block;
  background: #eeeeee;
  text-align: center;
}
#page-top a {
  display: block;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
}

/*snsメニュー*/
.sns_box {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 280px;
  margin-left: auto;
  margin-top: 40px;
}
@media screen and (max-width: 1400px) {
  .sns_box {
    margin-top: 30px;
    margin-right: auto;
  }
}
@media screen and (max-width: 991px) {
  .sns_box {
    margin-top: 30px;
    margin-right: auto;
    max-width: 240px;
  }
}

/*フッターメニュー*/
.footermenu {
  display: flex;
  color: #a5a7b8;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  flex-wrap: wrap;
}
@media screen and (max-width: 1199px) {
  .footermenu {
    margin-right: auto;
  }
}
@media screen and (max-width: 991px) {
  .footermenu {
    display: flex;
    max-width: none;
    padding: 0;
    width: 100%;
    margin: auto;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 12px;
    padding: 0 14px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .footermenu {
    padding: 0;
  }
}
@media screen and (max-width: 991px) {
  .footermenu .footmenutext {
    margin-top: 0;
  }
}
.footermenu .footmenutext .sub-under li {
  font-family: "Noto Sans", "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
}
.footermenu .mt0 {
  margin-top: 0px;
}
.footermenu .menu-item-has-children {
  margin-bottom: 10px;
}
@media screen and (max-width: 1199px) {
  .footermenu .menu-item-has-children {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .footermenu .menu-item-has-children {
    font-size: 16px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .footermenu .menu-item-has-children {
    font-size: 16px;
  }
}
.footermenu .menu-item-has-children .sub-menu {
  font-size: 13px !important;
  color: #8c96a0;
}
@media screen and (max-width: 991px) {
  .footermenu .menu-item-has-children .sub-menu {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .footermenu .menu-item-has-children .sub-menu li {
    width: 100%;
  }
}
.footermenu li {
  float: none;
  margin-bottom: 30px;
  font-size: 17px;
  line-height: 1;
  position: relative;
  letter-spacing: -1px;
  margin-left: auto;
  font-weight: 700;
  width: calc(25% - 2px);
}
@media screen and (max-width: 991px) {
  .footermenu li {
    max-width: none;
    width: 49%;
    text-align: left;
    vertical-align: top;
    margin-bottom: 0;
    padding: 10px 0;
    margin-right: 0;
    margin-left: 0;
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  .footermenu li {
    font-size: 15px;
  }
}
.footermenu li a {
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  line-height: 1.5;
}
.footermenu li a:hover {
  color: #333;
  opacity: 0.8;
}
.footermenu li a br {
  display: none;
}
@media screen and (max-width: 991px) {
  .footermenu li a br {
    display: block;
  }
}
.footermenu li:last-child {
  color: #a5a7b8;
  font-size: 15px;
}
.footermenu .footone5 {
  position: relative;
  opacity: 0;
}
@media screen and (max-width: 991px) {
  .footermenu .footone5 {
    display: none;
  }
}
.footermenu .linkicon a {
  position: relative;
}
.footermenu .linkicon a::before {
  content: "";
  position: absolute;
  right: -13px;
  top: 0;
  background-image: url(images/linkbox3.svg);
  width: 9px;
  height: 9px;
}

.menu_bg {
  letter-spacing: 1px;
  color: #fff;
}
/*フッターコンテンツ*/
.footer__block .inflex {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .footer__block .inflex {
    display: block;
  }
}
.footer__block .inflex .logo_side {
  margin-right: auto;
}
@media screen and (max-width: 1400px) {
  .footer__block .inflex .logo_side {
    max-width: 300px;
  }
}
@media screen and (max-width: 1199px) {
  .footer__block .inflex .logo_side {
    margin-bottom: 30px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 991px) {
  .footer__block .inflex .logo_side {
    max-width: 240px;
  }
}
.footer__block .inflex2 {
  display: flex;
  padding-top: 60px;
  margin-top: 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 1400px) {
  .footer__block .inflex2 {
    padding-top: 40px;
    margin-top: 60px;
  }
}
@media screen and (max-width: 991px) {
  .footer__block .inflex2 {
    display: block;
    margin-top: 30px;
    padding-top: 30px;
  }
}
.footer__block .inflex2 .logo_footer {
  margin-right: 80px;
}
.footer__block .inflex2 .addressone {
  color: #f2f9ff;
}
@media screen and (max-width: 991px) {
  .footer__block .inflex2 .addressone {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.logo_footer {
  width: 100%;
  max-width: 168px;
}

/*コピーライト*/
.copyright {
  font-size: 12px;
  color: #fff;
  letter-spacing: 1px;
  position: relative;
  z-index: 3;
  margin-top: auto;
  opacity: 0.4;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .copyright {
    font-size: 10px;
  }
}

.footergroup {
  width: 100%;
  max-width: 1040px;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .footergroup {
    display: block;
  }
}

.footer_right {
  position: relative;
  margin-right: 50px;
}
@media screen and (max-width: 767px) {
  .footer_right {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: 400px;
  }
}
.footer_right .float_icon {
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .footer_right .float_icon {
    margin: auto;
    position: static;
    max-width: 120px;
    margin-bottom: 20px;
  }
}
.footer_right .float_icon .youtube_icon {
  margin-right: 10px;
}
.footer_right .time {
  font-size: 15px;
  padding-left: 93px;
  text-indent: -93px;
}
@media screen and (max-width: 767px) {
  .footer_right .time {
    text-align: center;
  }
}
.footer_right .text {
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .footer_right .text {
    text-align: center;
  }
}

.footer_address {
  width: 100%;
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
  color: #b1bac4;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: end;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 991px) {
  .footer_address {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .footer_address {
    font-size: 14px;
    padding: 0 15px;
  }
}
.footer_address .rightside2 {
  margin-left: 45px;
  margin-right: auto;
}
@media screen and (max-width: 991px) {
  .footer_address .rightside2 {
    margin-left: 0;
    margin: 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .footer_address .rightside2 {
    margin-bottom: 40px;
  }
}
.footer_address .privacytext a:hover {
  color: #fff;
}

.footerservice_title {
  margin-top: 10px;
  margin-bottom: 10px;
}

.footerbanner1 a {
  display: block;
  width: 100%;
  max-width: 150px;
  line-height: 1;
  font-family: "Cormorant", "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
  padding: 8px 25px 8px 50px;
  background-color: #ffe900;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  margin-top: 20px;
}
.footerbanner1 a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1600px) {
  .footerbanner1 a {
    padding: 5px 15px 5px 40px;
  }
}
@media screen and (max-width: 991px) {
  .footerbanner1 a {
    padding: 5px 10px 5px 40px;
  }
}
.footerbanner1 a .insta {
  font-size: 11px;
  display: block;
  font-weight: 600;
  font-family: "Cormorant", "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
}
.footerbanner1 a .insta2 {
  font-size: 20px;
  font-family: "Cormorant", "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
}
.footerbanner1 a img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 10px;
}

.footerbanner2 a {
  color: #fff;
  background-color: #947666;
}

/*====================================

  ■フロント

=====================================*

/*====================================

  ■フロント

=====================================*
/*slick*/
.slick__wrap {
  position: relative;
}
.slick__wrap .slicktext {
  position: absolute;
  top: 53%;
  left: 34%;
  color: #fff;
  width: 100%;
  max-width: 940px;
  min-width: 940px;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1600px) {
  .slick__wrap .slicktext {
    left: 39%;
  }
}
@media screen and (max-width: 1400px) {
  .slick__wrap .slicktext {
    left: 44%;
    top: 50%;
  }
}
@media screen and (max-width: 1199px) {
  .slick__wrap .slicktext {
    left: 46%;
    top: 47%;
  }
}
@media screen and (max-width: 1056px) {
  .slick__wrap .slicktext {
    left: 49%;
  }
}
@media screen and (max-width: 991px) {
  .slick__wrap .slicktext {
    top: 56%;
    left: 20px;
    transform: translate(0%, -50%);
  }
}
@media screen and (max-width: 767px) {
  .slick__wrap .slicktext {
    max-width: none;
    min-width: auto;
    transform: translate(-59%, -50%);
    padding-left: 0;
    top: 320px;
    left: 60%;
  }
}
@media screen and (max-width: 480px) {
  .slick__wrap .slicktext {
    padding-left: 20px;
    top: 170px;
  }
}
.slick__wrap .slicktext .bigtext {
  font-weight: 600;
  font-size: 90px;
  line-height: 1.2;
  color: #1354B4;
  margin-bottom: 30px;
}
@media screen and (max-width: 1199px) {
  .slick__wrap .slicktext .bigtext {
    font-size: 72px;
  }
}
@media screen and (max-width: 991px) {
  .slick__wrap .slicktext .bigtext {
    font-size: 54px;
  }
}
@media screen and (max-width: 767px) {
  .slick__wrap .slicktext .bigtext {
    font-size: 42px;
  }
}
@media screen and (max-width: 480px) {
  .slick__wrap .slicktext .bigtext {
    font-size: 36px;
    margin-bottom: 10px;
  }
}
.slick__wrap .slicktext .bigtext span {
  font-size: 120px;
}
@media screen and (max-width: 1199px) {
  .slick__wrap .slicktext .bigtext span {
    font-size: 90px;
  }
}
@media screen and (max-width: 991px) {
  .slick__wrap .slicktext .bigtext span {
    font-size: 72px;
  }
}
@media screen and (max-width: 767px) {
  .slick__wrap .slicktext .bigtext span {
    font-size: 52px;
  }
}
@media screen and (max-width: 480px) {
  .slick__wrap .slicktext .bigtext span {
    font-size: 48px;
    margin-bottom: 10px;
  }
}
.slick__wrap .slicktext .minitext {
  padding: 20px;
  background-image: url(images/neckline.png);
  line-height: 1;
  font-size: 21px;
  text-align: left;
  font-weight: 600;
  margin-left: -200px;
  padding-left: 200px;
}
@media screen and (max-width: 1600px) {
  .slick__wrap .slicktext .minitext {
    padding-left: 170px;
    margin-left: -170px;
  }
}
@media screen and (max-width: 1199px) {
  .slick__wrap .slicktext .minitext {
    padding-left: 80px;
    margin-left: -80px;
  }
}
@media screen and (max-width: 991px) {
  .slick__wrap .slicktext .minitext {
    padding-left: 30px;
    margin-left: -30px;
  }
}
@media screen and (max-width: 767px) {
  .slick__wrap .slicktext .minitext {
    font-size: 16px;
    line-height: 1.6;
    background-size: cover;
    background-position: right;
  }
}
@media screen and (max-width: 1199px) {
  .slick__wrap .slicktext .minitext_a {
    display: none;
  }
}
.slick__wrap .slicktext .minitext_b {
  display: none;
}
@media screen and (max-width: 1199px) {
  .slick__wrap .slicktext .minitext_b {
    display: block;
  }
}
.slick__wrap .minifloat {
  position: absolute;
  bottom: 0;
  width: 100%;
  font-size: 16px;
  padding: 18px 30px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  background-color: #181b39;
}
.slick__wrap .slick-slide {
  height: 600px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .slick__wrap .slick-slide {
    height: 930px;
  }
}
@media screen and (max-width: 991px) {
  .slick__wrap .slick-slide {
    height: 800px;
  }
}
@media screen and (max-width: 767px) {
  .slick__wrap .slick-slide {
    height: 600px;
  }
}
@media screen and (max-width: 480px) {
  .slick__wrap .slick-slide {
    height: 600px;
    margin-top: 60px;
  }
}
.slick__wrap .slick-slide img {
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .slick__wrap .slick-slide img {
    height: 600px;
    width: auto;
    left: 40%;
    max-width: none;
  }
}
@media screen and (max-width: 480px) {
  .slick__wrap .slick-slide img {
    height: 600px;
    left: 50%;
  }
}

@media screen and (max-width: 1400px) {
  .hidden-md2 {
    display: none !important;
  }
}

@media screen and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}

.visible-md2 {
  display: none !important;
}
@media screen and (max-width: 1400px) {
  .visible-md2 {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}

.visible-xs {
  display: none;
}
@media screen and (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
}

@media screen and (max-width: 480px) {
  .hidden-xxs {
    display: none !important;
  }
}

.visible-xxs {
  display: none;
}
@media screen and (max-width: 480px) {
  .visible-xxs {
    display: block !important;
  }
}

/*====================================

  ■投稿基本設定

=====================================*/
/*投稿
--------------------------------------*/
.post__content:before,
.post__content:after {
  content: " ";
  display: table;
}

.post__content:after {
  clear: both;
}

.post__content {
  padding: 20px 0;
  background-color: #fff;
  border-bottom: 1px solid #cfd9df;
}

.post__content img.aligncenter {
  margin: 20px auto;
  display: block;
}

.post__content h1 {
  font-size: 25px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.post__content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  margin: 20px 0;
}
.post__content table td {
  padding: 15px 10px;
  vertical-align: top;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background-color: #fff;
  color: #333;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .post__content table td {
    width: 100%;
  }
}
.post__content .table_2 td {
  width: 25% !important;
}

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

.post__content h3 {
  font-size: 19px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.post__content h4 {
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.post__content h5 {
  font-size: 13px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.post__content h6 {
  font-size: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.post__content h1,
.post__content h2,
.post__content h3,
.post__content h4,
.post__content h5,
.post__content h6 {
  font-weight: bold;
}

.post__content em {
  font-family: "Times New Roman", "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "ＭＳ Ｐゴシック", serif;
  font-style: italic;
}

.post__content div {
  max-width: 100%;
  line-height: 1.6;
}

.post__content p {
  word-break: break-word;
  margin-bottom: 10px;
}

.post__content a {
  text-decoration: underline;
}

.post__content a:hover {
  text-decoration: none;
}

.post__content ul,
.post__content ol {
  margin: 15px 0;
  padding: 0 0 0 15px;
}

.post__content ul li {
  list-style-type: disc;
  margin: 5px 0;
  text-indent: 5px;
  color: #0d4e7c;
}
.post__content ul li:marker {
  color: #0d4e7c;
}
.post__content ul li span {
  color: #333;
}

.post__content ol li {
  list-style-type: decimal;
  margin: 5px 0;
}

/*投稿が何もなかった時の表示用*/
.null__block {
  text-align: center;
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
}

/*左寄せ*/
.alignleft {
  margin-top: 10px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .alignleft {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
  }
}

/*右寄せ*/
.alignright {
  margin-top: 10px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .alignright {
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
  }
}

/*archive.php ページネーション*/
.wp-pagenavi {
  text-align: center;
  margin-top: 20px;
}
.wp-pagenavi .navigation {
  margin: 0 auto;
}
.wp-pagenavi a,
.wp-pagenavi span {
  border: none;
  padding: 2px 3px 4px;
  margin: 3px;
  background: #25282c;
  color: #fff;
  min-width: 38px;
  display: inline-block;
  text-align: center;
  transition: 0.3s;
  text-decoration: none;
}
.wp-pagenavi a:hover,
.wp-pagenavi span:hover {
  opacity: 1;
  background: #1354B4;
}
.wp-pagenavi span.current {
  font-weight: normal;
  background: #1354B4;
}
.wp-pagenavi span.pages {
  background: none;
  color: #1354B4;
  display: none;
}

/*single.php ページネーション*/
.paginate__wrap {
  display: flex;
  justify-content: space-between;
  padding: 30px 0 0;
}
.paginate__wrap a {
  display: block;
  padding: 5px 13px;
  font-size: 14px;
  background: #fff;
  border-radius: 30px;
  border: 1px solid #b4c9db;
  text-decoration: none;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .paginate__wrap a {
    min-width: auto;
    max-width: 36px;
  }
}
.paginate__wrap a:hover {
  color: #fff;
  background: #1354B4;
}
.paginate__wrap a .fa-list {
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .paginate__wrap a .fa-list {
    margin: auto;
  }
}
.paginate__wrap .paginate__block--next {
  min-width: 125px;
}
@media screen and (max-width: 767px) {
  .paginate__wrap .paginate__block--next {
    min-width: 40px;
  }
}
.paginate__wrap .paginate__block--next i {
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .paginate__wrap .paginate__block--next i {
    margin: auto;
  }
}
.paginate__wrap .paginate__block--prev {
  min-width: 125px;
}
@media screen and (max-width: 767px) {
  .paginate__wrap .paginate__block--prev {
    min-width: 40px;
  }
}
.paginate__wrap .paginate__block--prev i {
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .paginate__wrap .paginate__block--prev i {
    margin: auto;
  }
}

.cat_pagination {
  display: block;
}
.cat_pagination a {
  margin-right: auto;
  margin-left: auto;
  max-width: 150px;
}

.linebox {
  text-align: center;
  border-top: 1px solid #b4c9db;
  border-bottom: 1px solid #b4c9db;
  padding: 50px 0;
  position: relative;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .linebox {
    padding: 40px 10px;
    text-align: left;
  }
}
.linebox .title {
  font-weight: 600;
  line-height: 1.4;
  font-size: 30px;
  margin-bottom: 20px;
  color: #1354B4;
}
@media screen and (max-width: 767px) {
  .linebox .title {
    font-size: 26px;
  }
}
@media screen and (max-width: 480px) {
  .linebox .title {
    font-size: 24px;
  }
}
/*====================================

  ■サイドバー

=====================================*/
.l-sidebar h2 {
  line-height: 1.4;
  padding: 10px;
  margin: 0 0 15px;
  font-size: 17px;
  color: #fff;
  background-color: #525252;
}
.l-sidebar ul {
  margin: 0 0 5rem;
}
.l-sidebar ul li {
  padding: 0;
  margin: 0;
}
.l-sidebar ul li a {
  display: block;
  padding: 10px;
  border-bottom: 1px dotted #aaaaaa;
  font-size: 14px;
}
/*# sourceMappingURL=style.css.map */