@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 !important;
  }
}

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

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

.flex-two {
  display: flex;
  justify-content: space-between;
}
.flex-two .inblock {
  width: calc(50% - 20px);
}
.flex-two .side1 {
  width: calc(50% - 20px);
}

.flex-tri {
  display: flex;
  justify-content: space-between;
}
.flex-tri .inblock {
  width: calc(33% - 15px);
}
.flex-tri .side1 {
  width: calc(33% - 20px);
}

.flex-four {
  display: flex;
  justify-content: space-between;
}
.flex-four .inblock {
  width: calc(25% - 15px);
}
.flex-four .side1 {
  width: calc(25% - 20px);
}

.mt50_xs30 {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .mt50_xs30 {
    margin-top: 50px;
  }
}

.d-block {
  display: block;
}

@media screen and (min-width: 768px) {
  .d-md-none {
    display: none;
  }
}

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

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

/*====================================
ローディング
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;
}

/*パーセント表示*/
.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;
}

.outfit {
  font-family: "Outfit", sans-serif;
}

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

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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 400;
  color: #000;
  background-color: #fff;
  letter-spacing: 0.05em;
  overflow: hidden;
}
@media screen and (max-width: 1056px) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 15px;
    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-sm {
  display: none !important;
}
@media screen and (max-width: 1056px) {
  .visible-sm {
    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 {
  background: #fff;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0px 30px;
  top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  z-index: 20;
  letter-spacing: 0;
  width: 100%;
  height: 105px;
  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 {
    height: auto;
    margin: 0;
    width: 100%;
    padding: 10px 0px;
    border-radius: 0;
  }
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 11px 0px;
  }
}
@media screen and (max-width: 480px) {
  .header__inner {
    padding: 12px 0px;
  }
}
.header__inner .logoblock {
  width: 100%;
  order: 1;
  padding: 6px 0 6px 0px;
  max-width: 300px;
  margin-right: auto;
}
@media screen and (max-width: 1600px) {
  .header__inner .logoblock {
    max-width: 220px;
  }
}
@media screen and (max-width: 1400px) {
  .header__inner .logoblock {
    max-width: 200px;
  }
}
@media screen and (max-width: 1199px) {
  .header__inner .logoblock {
    max-width: 200px;
    margin-right: auto;
    padding: 0;
    padding-left: 14px;
  }
}
@media screen and (max-width: 767px) {
  .header__inner .logoblock {
    max-width: 200px;
  }
}
.header__inner .logoblock h1 {
  display: none;
  font-size: 12px;
  padding-left: 0px;
  color: #949494;
  margin-right: auto;
}
.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.4;
  margin-right: 20px;
}
@media screen and (max-width: 1199px) {
  .header__inner .header__tel {
    display: block;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #008695;
    padding: 1px 2px 4px 2px;
    width: 100%;
    line-height: 1.3;
    max-width: 36px;
    min-width: 36px;
    order: 2;
    margin-right: 5px;
    margin-left: 5px;
    text-align: center;
  }
}
.header__inner .header__tel .tel_one {
  font-size: 33px;
  display: block;
}
@media screen and (max-width: 1600px) {
  .header__inner .header__tel .tel_one {
    margin-right: 10px;
    font-size: 27px;
  }
}
@media screen and (max-width: 1400px) {
  .header__inner .header__tel .tel_one {
    font-size: 23px;
  }
}
@media screen and (max-width: 1199px) {
  .header__inner .header__tel .tel_one {
    margin-right: 0px;
  }
}
.header__inner .header__tel .tel_one img {
  max-width: 28px;
  margin: 0 3px 4px 0;
}
@media screen and (max-width: 1600px) {
  .header__inner .header__tel .tel_one img {
    max-width: 22px;
  }
}
@media screen and (max-width: 1199px) {
  .header__inner .header__tel .tel_one img {
    max-width: 17px;
    margin: 0;
  }
}
.header__inner .header__tel .tel_one .smallt {
  font-size: 13px;
  display: block;
}
@media screen and (max-width: 1199px) {
  .header__inner .header__tel .tel_one .smallt {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .header__inner .header__tel .tel_one span {
    display: none;
  }
}
.header__inner .header__tel .tel_one .bigt {
  display: inline-block !important;
}
@media screen and (max-width: 1199px) {
  .header__inner .header__tel .tel_one .bigt .inspan {
    display: none !important;
  }
}
.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: #f57647;
  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 {
    padding: 14px 15px;
    width: 100%;
    max-width: 220px;
    text-align: center;
    border-radius: 23px;
  }
}
@media screen and (max-width: 1600px) {
  .header__inner .header__contact a {
    padding: 14px 10px;
    margin-left: 6px;
    margin-right: 0;
  }
}
@media screen and (max-width: 1199px) {
  .header__inner .header__contact a {
    order: 4;
    padding: 9px 10px 11px;
    margin-left: 0;
    margin-right: 54px;
  }
}
.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: 1199px) {
  .header__inner .header__contact a .hiddenone {
    display: none;
  }
}
.header__inner .header__menu {
  order: 4;
  width: 100%;
  max-width: 700px;
  z-index: 8;
  margin-right: 30px;
}
@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;
    margin-right: 15px;
  }
}
@media screen and (max-width: 1400px) {
  .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;
    margin-right: 0;
  }
}

.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%;
  margin: auto;
}
.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;
}
.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: 9px;
  }
}
@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: #008695;
    color: #fff;
  }
}
.navbar-nav.nav > li.active > a::before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #008695;
}
@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: #008695;
}
@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: 20px 10px;
  line-height: 1.4;
  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: 14px;
    padding: 14px 4px;
  }
}
@media screen and (max-width: 1199px) {
  .navbar-nav.nav > li > a {
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    letter-spacing: 2px;
    padding: 14px 10px;
    display: block;
    background-color: #fff;
  }
}
.navbar-nav.nav > li > a:hover, .navbar-nav.nav > li > a:acyive, .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:acyive, .navbar-nav.nav > li > a:focus {
    color: #fff;
    background-color: #008695;
    transition-duration: 0.7s;
  }
}
.navbar-nav.nav > li > a:hover::before, .navbar-nav.nav > li > a:acyive::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;
  transition: 0.7s;
  background-color: #008695;
}
@media screen and (max-width: 1199px) {
  .navbar-nav.nav > li > a:hover::before, .navbar-nav.nav > li > a:acyive::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/careticon.svg);
  width: 10px;
  height: 7px;
  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;
  }
}

.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 (min-width: 768px) {
  .dropdown-menu > li {
    padding: 0;
    text-decoration: none;
    border-bottom: 1px solid #bbb;
  }
}
.dropdown-menu > li > a {
  padding-right: auto !important;
  background-color: #fff;
}
@media screen and (max-width: 1199px) {
  .dropdown-menu > li > a {
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    letter-spacing: 2px;
    padding: 14px 10px;
    display: block;
    background-color: #fff;
    font-weight: 500;
  }
}
@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: #008695;
  background-color: #fff;
  opacity: 0.8;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > a:hover {
  color: #008695;
  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: 37px;
  width: 36px;
  background: #ccc;
  position: absolute;
  top: 12px;
  margin: auto 12px auto 8px;
  right: 0;
  padding: 4px;
}
@media screen and (min-width: 768px) {
  .navbar-toggle {
    top: 10px;
  }
}
@media screen and (min-width: 992px) {
  .navbar-toggle {
    top: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .navbar-toggle {
    display: none !important;
  }
}
.navbar-toggle .icon-bar {
  background-color: #000;
}
.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 5px;
  transition: all 0.3s;
}
.navbar-toggle.collapsed .icon-bar:nth-of-type(3) {
  transform: rotate(0deg);
  position: static;
  margin-bottom: 5px;
  transition: all 0.3s;
}
.navbar-toggle.collapsed .icon-bar:last-child {
  transform: rotate(0deg);
  position: static;
  margin-bottom: 0px;
  transition: all 0.3s;
}

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

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

  ■トップページ

=====================================*/
.btn {
  display: block;
  width: 100%;
  max-width: 292px;
  border-radius: 34px;
  padding: 25px 10px;
  position: relative;
  line-height: 1;
  background-color: #38B1BF;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .btn {
    max-width: 328px;
  }
}
@media screen and (max-width: 767px) {
  .btn {
    margin-top: 30px;
    font-size: 14px;
    padding: 15px 10px;
  }
}
.btn img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 19px;
  right: 20px;
  width: 19px;
  height: 19px;
}
.btn:hover {
  opacity: 0.8;
  color: #fff;
  transition-duration: 0.7s;
}

.centerbtn {
  margin-right: auto;
  margin-left: auto;
}

.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;
  text-align: center;
}
@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: 70px;
  color: #008695;
  line-height: 1.1;
}
@media screen and (max-width: 1400px) {
  .titlebox .maintitle {
    font-size: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .titlebox .maintitle {
    font-size: 54px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .titlebox .maintitle {
    font-size: 46px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .titlebox .maintitle {
    font-size: 38px;
  }
}
.titlebox .shorttitle {
  font-size: 17px;
  font-weight: 400;
}
@media screen and (max-width: 480px) {
  .titlebox .shorttitle {
    display: block;
    font-size: 15px;
  }
}

.k_titlebox {
  text-align: center;
}
.k_titlebox .maintitle {
  font-weight: 500;
  font-size: 34px;
  margin-bottom: 10px;
  line-height: 1;
}
@media screen and (max-width: 1400px) {
  .k_titlebox .maintitle {
    font-size: 31px;
  }
}
@media screen and (max-width: 1199px) {
  .k_titlebox .maintitle {
    font-size: 28px;
    line-height: 1.2;
  }
}
@media screen and (max-width: 767px) {
  .k_titlebox .maintitle {
    font-size: 26px;
  }
}
@media screen and (max-width: 480px) {
  .k_titlebox .maintitle {
    font-size: 24px;
  }
}
.k_titlebox .shorttitle {
  font-size: 21px;
  color: #008695;
  font-weight: 200;
}
@media screen and (max-width: 480px) {
  .k_titlebox .shorttitle {
    display: block;
    font-size: 17px;
  }
}

.titleboxw {
  .color: #fff;
}
.titleboxw .maintitle {
  color: #fff;
}

.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;
  }
}

.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;
}

@media screen and (max-width: 1400px) {
  .first_flex {
    flex-wrap: wrap;
  }
}
.first_flex .side1 {
  background-color: #eff6f6;
  border-radius: 14px;
  margin-top: 70px;
}
@media screen and (max-width: 1600px) {
  .first_flex .side1 {
    width: calc(25% - 10px);
  }
}
@media screen and (max-width: 1400px) {
  .first_flex .side1 {
    width: calc(50% - 14px);
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .first_flex .side1 {
    margin-top: 15px;
    width: calc(50% - 7px);
  }
}
@media screen and (max-width: 480px) {
  .first_flex .side1 {
    margin-top: 30px;
    width: 100%;
  }
}
.first_flex .side1 .subtitle {
  position: relative;
  z-index: 0;
  background-color: #fff;
  display: inline-block;
  line-height: 1;
  font-weight: 400;
  font-size: 18px;
  padding: 10px 20px 15px 10px;
  border-radius: 0 0 14px 0;
}
@media screen and (max-width: 767px) {
  .first_flex .side1 .subtitle {
    font-size: 16px;
    padding: 10px 5px;
  }
}
@media screen and (max-width: 480px) {
  .first_flex .side1 .subtitle {
    font-size: 18px;
    padding: 10px 10px;
  }
}
.first_flex .side1 .subtitle::before {
  content: "";
  z-index: 1;
  position: absolute;
  right: -14px;
  top: 0;
  background-image: url(images/foattip.svg);
  width: 14px;
  height: 14px;
  transform: rotate(180deg);
}
.first_flex .side1 .subtitle::after {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0px;
  bottom: -14px;
  background-image: url(images/foattip.svg);
  width: 14px;
  height: 14px;
  transform: rotate(180deg);
}
.first_flex .side1 .subtitle span {
  color: #008695;
  font-size: 30px;
  margin-left: 7px;
}
@media screen and (max-width: 767px) {
  .first_flex .side1 .subtitle span {
    font-size: 20px;
  }
}
.first_flex .side1 .contentone {
  padding: 0 30px 40px;
}
@media screen and (max-width: 1600px) {
  .first_flex .side1 .contentone {
    padding: 0 20px 30px;
  }
}
.first_flex .side1 .imgb {
  text-align: center;
  height: 185px;
  margin: 40px 0 20px;
}
@media screen and (max-width: 1600px) {
  .first_flex .side1 .imgb {
    margin: 30px 0 20px;
    height: 165px;
  }
}
@media screen and (max-width: 767px) {
  .first_flex .side1 .imgb {
    height: 145px;
  }
}
@media screen and (max-width: 1600px) {
  .first_flex .side1 .imgb img {
    max-width: 160px;
  }
}
@media screen and (max-width: 767px) {
  .first_flex .side1 .imgb img {
    max-width: 140px;
  }
}
.first_flex .side1 .centertext {
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.6;
}
@media screen and (max-width: 1600px) {
  .first_flex .side1 .centertext {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .contactflex .inflex {
    display: block;
  }
}
.contactflex .inflex .inblock {
  width: 33.3333333333%;
  background-color: #eef2f2;
  padding: 110px 15px 130px;
}
@media screen and (max-width: 1199px) {
  .contactflex .inflex .inblock {
    padding: 90px 15px 100px;
  }
}
@media screen and (max-width: 991px) {
  .contactflex .inflex .inblock {
    padding: 50px 35px 50px;
  }
}
@media screen and (max-width: 767px) {
  .contactflex .inflex .inblock {
    width: 100%;
    padding: 40px 25px 40px;
  }
}
.contactflex .inflex .inblock .btn {
  padding: 14px 24px;
  text-align: left;
  background-color: #f57647;
}
@media screen and (max-width: 991px) {
  .contactflex .inflex .inblock .btn {
    font-size: 15px;
    margin-top: 30px;
  }
}
.contactflex .inflex .inblock .c_intitle {
  line-height: 1;
}
.contactflex .inflex .inblock .c_intitle .bigtitle {
  margin-top: 10px;
  margin-bottom: 20px;
}
.contactflex .inflex .inblock .c_intitle .subtitle {
  color: #b1b1b1;
  font-size: 22px;
}
@media screen and (max-width: 1199px) {
  .contactflex .inflex .inblock .c_intitle .subtitle {
    font-size: 19px;
  }
}
@media screen and (max-width: 767px) {
  .contactflex .inflex .inblock .c_intitle .subtitle {
    font-size: 17px;
  }
}
.contactflex .inflex .inblock2 .btn {
  background-color: #5ec299;
}
.contactflex .inflex .inblock3 .btn {
  background-color: #65b9e5;
}
.contactflex .inflex .inblock_in {
  width: 100%;
  max-width: 310px;
  margin: auto;
}
.contactflex .inflex .inblock_in .c_intitle {
  margin-bottom: 30px;
}
.contactflex .inflex .inblock_in .c_intitle .bigtitle {
  font-size: 36px;
  font-weight: 500;
  margin-top: 20px;
}
@media screen and (max-width: 1199px) {
  .contactflex .inflex .inblock_in .c_intitle .bigtitle {
    font-size: 30px;
  }
}
@media screen and (max-width: 991px) {
  .contactflex .inflex .inblock_in .c_intitle .bigtitle {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .contactflex .inflex .inblock_in .c_intitle .bigtitle {
    font-size: 22px;
  }
}
.contactflex .inflex .inblock2 {
  background-color: #f3f5f5;
}
.contactflex .inflex .inblock3 {
  background-color: #f8f8f8;
}

.c_about {
  margin-bottom: 140px;
}
@media screen and (max-width: 1199px) {
  .c_about {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .c_about {
    margin-bottom: 60px;
  }
}
.c_about .longpic {
  margin-bottom: 140px;
}
@media screen and (max-width: 1199px) {
  .c_about .longpic {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 1056px) {
  .c_about .longpic {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .c_about .longpic {
    margin-bottom: 40px;
  }
}

.c_service {
  background: linear-gradient(to left, #b5d2a4 0%, #41aeb8 100%);
  padding: 100px 0;
}
@media screen and (max-width: 1600px) {
  .c_service {
    padding: 80px 0;
  }
}
@media screen and (max-width: 1400px) {
  .c_service {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .c_service {
    padding: 40px 0;
  }
}
@media screen and (max-width: 480px) {
  .c_service {
    padding: 20px 0;
  }
}

.c_serviceflex {
  display: flex;
  width: 100%;
  max-width: 1620px;
  margin: auto;
  justify-content: space-between;
  padding: 80px 0px;
}
@media screen and (max-width: 1600px) {
  .c_serviceflex {
    padding: 60px 0;
  }
}
@media screen and (max-width: 1400px) {
  .c_serviceflex {
    padding: 40px 0;
  }
}
@media screen and (max-width: 1199px) {
  .c_serviceflex {
    padding: 30px 40px;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .c_serviceflex {
    padding: 30px 20px;
  }
}
.c_serviceflex .leftside {
  width: 32%;
  padding: 100px 50px 0 100px;
  color: #fff;
  border-bottom: 1px solid #a2d8d2;
  border-top: 1px solid #a2d8d2;
  border-bottom: 1px solid #a2d8d2;
}
@media screen and (max-width: 1400px) {
  .c_serviceflex .leftside {
    padding: 80px 50px 0 40px;
  }
}
@media screen and (max-width: 1199px) {
  .c_serviceflex .leftside {
    width: 100%;
    padding: 40px;
  }
}
@media screen and (max-width: 991px) {
  .c_serviceflex .leftside {
    padding: 40px 0px 40px;
  }
}
.c_serviceflex .leftside .titlebox {
  color: #fff;
}
.c_serviceflex .leftside .subtitle {
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 30px;
  letter-spacing: 5px;
}
@media screen and (max-width: 1600px) {
  .c_serviceflex .leftside .subtitle {
    letter-spacing: 3px;
  }
}
@media screen and (max-width: 1199px) {
  .c_serviceflex .leftside .subtitle {
    font-size: 26px;
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 767px) {
  .c_serviceflex .leftside .subtitle {
    font-size: 23px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  .c_serviceflex .leftside .subtitle {
    font-size: 20px;
  }
}
.c_serviceflex .leftside .btn {
  background-color: #fff;
  color: #008695;
}
.c_serviceflex .rightside {
  width: 68%;
  padding: 90px 100px 40px 55px;
  border-left: 1px solid #a2d8d2;
  border-top: 1px solid #a2d8d2;
  border-bottom: 1px solid #a2d8d2;
}
@media screen and (max-width: 1400px) {
  .c_serviceflex .rightside {
    padding: 70px 40px 40px 55px;
  }
}
@media screen and (max-width: 1199px) {
  .c_serviceflex .rightside {
    width: 100%;
    padding: 40px 40px 20px 40px;
    border-left: none;
    border-top: none;
  }
}
@media screen and (max-width: 991px) {
  .c_serviceflex .rightside {
    padding: 40px 0px 20px;
  }
}
.c_serviceflex .rightside .inflex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c_serviceflex .rightside .inflex .side1 {
  display: block;
  width: calc(50% - 20px);
  margin-bottom: 40px;
}
@media screen and (max-width: 1600px) {
  .c_serviceflex .rightside .inflex .side1 {
    width: calc(50% - 15px);
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .c_serviceflex .rightside .inflex .side1 {
    width: calc(50% - 7px);
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 480px) {
  .c_serviceflex .rightside .inflex .side1 {
    width: 100%;
    margin-bottom: 30px;
  }
}
.c_serviceflex .rightside .inflex .side1 .imgb {
  position: relative;
}
.c_serviceflex .rightside .inflex .side1 .imgb img {
  border-radius: 16px 16px 0 0;
}
.c_serviceflex .rightside .inflex .side1 .imgb .floattitle {
  position: absolute;
  font-size: 25px;
  background-color: #fff;
  left: 0;
  top: 0;
  line-height: 1;
  padding: 15px 15px 15px 20px;
  border-radius: 16px 0 16px 0;
}
@media screen and (max-width: 1600px) {
  .c_serviceflex .rightside .inflex .side1 .imgb .floattitle {
    font-size: 22px;
  }
}
@media screen and (max-width: 1400px) {
  .c_serviceflex .rightside .inflex .side1 .imgb .floattitle {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c_serviceflex .rightside .inflex .side1 .imgb .floattitle {
    font-size: 15px;
    padding: 10px;
  }
}
.c_serviceflex .rightside .inflex .side1 .imgb .floattitle img {
  font-size: 23px;
  margin-left: 20px;
  color: #008695;
  margin-bottom: 3px;
}
@media screen and (max-width: 1400px) {
  .c_serviceflex .rightside .inflex .side1 .imgb .floattitle img {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c_serviceflex .rightside .inflex .side1 .imgb .floattitle img {
    font-size: 18px;
  }
}
.c_serviceflex .rightside .inflex .side1 .imgb .floattitle .circleo {
  color: #F39427;
}
.c_serviceflex .rightside .inflex .side1 .textb {
  font-size: 15px;
  height: 180px;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 0 0 16px 16px;
}
@media screen and (max-width: 991px) {
  .c_serviceflex .rightside .inflex .side1 .textb {
    height: auto;
    padding: 20px 14px;
  }
}
.c_serviceflex .rightside .inflex .side1 .textb ul li {
  padding-left: 30px;
  text-indent: -30px;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 10px;
}
.c_serviceflex .rightside .inflex .side1 .textb ul li img {
  margin-right: 10px;
}
@media screen and (max-width: 1600px) {
  .c_serviceflex .rightside .inflex .side1 .textb ul li img {
    max-width: 20px;
  }
}

.c_greet {
  padding: 100px 0 130px;
}
@media screen and (max-width: 1199px) {
  .c_greet {
    padding: 70px 0 100px;
  }
}
@media screen and (max-width: 767px) {
  .c_greet {
    padding: 50px 0 70px;
  }
}

.messagetitle {
  font-size: 38px;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 500;
  color: #19454a;
  line-height: 1.3;
}
@media screen and (max-width: 1600px) {
  .messagetitle {
    font-size: 33px;
  }
}
@media screen and (max-width: 1199px) {
  .messagetitle {
    font-size: 29px;
  }
}
@media screen and (max-width: 991px) {
  .messagetitle {
    font-size: 27px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .messagetitle {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .messagetitle {
    font-size: 21px;
    text-align: left;
    margin-bottom: 20px;
  }
}

.tradition_flex {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1760px;
  margin: auto;
  align-items: center;
}
@media screen and (max-width: 1600px) {
  .tradition_flex {
    max-width: 1320px;
  }
}
@media screen and (max-width: 1199px) {
  .tradition_flex {
    flex-wrap: wrap;
    padding: 0 14px;
  }
}
@media screen and (max-width: 1056px) {
  .tradition_flex {
    display: block;
  }
}
.tradition_flex .sp_side {
  text-align: center;
}
.tradition_flex .side1 {
  width: calc(21% - 5px);
}
@media screen and (max-width: 1600px) {
  .tradition_flex .side1 {
    width: calc(23% - 5px);
  }
}
@media screen and (max-width: 1056px) {
  .tradition_flex .side1 {
    display: none;
    text-align: center;
  }
}
.tradition_flex .side1 .inimg {
  text-align: right;
}
.tradition_flex .side1 .inimg .img_above {
  margin-bottom: 20px;
}
.tradition_flex .side1 .inimg2 {
  margin-left: auto;
}
@media screen and (max-width: 1056px) {
  .tradition_flex .side2 {
    display: none;
    margin: auto;
  }
}
.tradition_flex .side2 .inimg2 {
  margin-top: -20px;
}
.tradition_flex .intext {
  width: 45%;
}
@media screen and (max-width: 1600px) {
  .tradition_flex .intext {
    width: 50%;
  }
}
@media screen and (max-width: 1056px) {
  .tradition_flex .intext {
    width: 100%;
  }
}
.tradition_flex .intext .btn {
  max-width: 540px;
}

.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;
}

.c_news {
  padding: 110px 0 140px;
}
@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 .titlebox {
  margin-bottom: 40px;
}
@media screen and (max-width: 991px) {
  .c_news .titlebox {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 991px) {
  .c_news .btn {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .c_news .text {
    text-align: center;
  }
}

.direc_flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .direc_flex {
    display: block;
  }
}
.direc_flex .leftside {
  width: 23%;
}
@media screen and (max-width: 1400px) {
  .direc_flex .leftside {
    width: 31%;
  }
}
@media screen and (max-width: 1199px) {
  .direc_flex .leftside {
    margin-right: 30px;
  }
}
@media screen and (max-width: 991px) {
  .direc_flex .leftside {
    width: 100%;
    margin-bottom: 40px;
    margin-right: 0;
  }
}
.direc_flex .rightside {
  width: 68%;
}
@media screen and (max-width: 991px) {
  .direc_flex .rightside {
    width: 100%;
    margin-top: 0px;
  }
}

/**********************
TOPページ　ニュース一覧
***********************/
.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;
  }
}

.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: #008695;
  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;
  }
}

.loop__front a {
  width: 100%;
  font-size: 18px;
  display: flex;
  line-height: 1.7;
  transition: 0.7s;
  width: 100%;
  position: relative;
  padding: 40px 60px 40px 30px;
  border-bottom: 1px solid #e1e1e1;
  text-decoration: none;
  letter-spacing: 1px;
}
@media screen and (max-width: 991px) {
  .loop__front a {
    padding: 30px 40px 30px 20px;
  }
}
@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: 20px 30px 20px 14px;
    font-size: 16px;
  }
}
.loop__front a .days_block {
  margin-right: 40px;
  font-size: 17px;
  font-family: "Outfit", sans-serif;
}
@media screen and (max-width: 1400px) {
  .loop__front a .days_block {
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .loop__front a .days_block {
    margin-right: 10px;
  }
}
.loop__front a .main_text {
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
@media screen and (max-width: 767px) {
  .loop__front a .main_text {
    display: block;
  }
}
.loop__front a img {
  color: #38B1BF;
  font-size: 21px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 25px;
}
@media screen and (max-width: 1199px) {
  .loop__front a img {
    right: 10px;
  }
}
.loop__front:hover {
  opacity: 0.6;
  transition: 0.7s;
}
.loop__front:first-child a {
  border-top: 1px solid #e1e1e1;
}
@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;
  }
}

.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;
}

.neckcover {
  padding: 0 15px;
}

.neck {
  border-radius: 26px;
  position: relative;
  width: 100%;
  max-width: 1820px;
  margin-right: auto;
  margin-left: auto;
  background-size: cover;
  padding: 100px 0 80px;
  background-position: center;
  background: linear-gradient(to left, #b5d2a4 0%, #41aeb8 100%);
}
@media screen and (max-width: 991px) {
  .neck {
    padding: 70px 0 60px;
  }
}
@media screen and (max-width: 767px) {
  .neck {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.neck .container {
  position: relative;
}
.neck .neck__title {
  text-transform: lowercase;
  text-transform: capitalize;
  font-size: 90px;
  position: relative;
  line-height: 1.3;
  font-family: "Outfit", sans-serif;
  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: 21px;
  font-weight: 500;
  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;
  }
}
.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: 140px;
  z-index: 0;
  font-size: 16px;
  background-size: cover;
  padding-bottom: 140px;
}
@media screen and (max-width: 1199px) {
  .kasou_content {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 767px) {
  .kasou_content {
    padding-top: 60px;
    padding-bottom: 60px;
    font-size: 15px;
  }
}

.kasou_content_t {
  padding-top: 140px;
}
@media screen and (max-width: 1199px) {
  .kasou_content_t {
    padding-top: 90px;
  }
}
@media screen and (max-width: 767px) {
  .kasou_content_t {
    padding-top: 60px;
  }
}

.kasou_content_o {
  background-color: #fff8f5;
}

.kasou_content_g {
  background-color: #f5fff9;
}

.breadcont {
  display: none;
}
.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;
  }
}

.name {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .name {
    margin-top: 30px;
  }
}
.name span {
  display: block;
  font-size: 24px;
  margin-top: 10px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .name span {
    font-size: 20px;
  }
}

.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: #008695;
}

.k_subtitle2 {
  margin-bottom: 50px;
  padding-top: 35px;
  line-height: 1.3;
  font-size: 48px;
  color: #008695;
  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;
}

.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;
  }
}

.flowbox {
  border-radius: 14px;
  background-color: #eff6f6;
  padding: 60px;
  margin-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .flowbox {
    padding: 40px;
  }
}
@media screen and (max-width: 991px) {
  .flowbox {
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .flowbox {
    padding: 20px;
  }
}
.flowbox::before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  bottom: -40px;
  width: 40px;
  height: 23px;
  background-image: url(images/f_arrow.svg);
}
.flowbox .inflex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .flowbox .inflex {
    display: block;
  }
}
.flowbox .inflex .imgb {
  order: 3;
  width: 25%;
}
@media screen and (max-width: 991px) {
  .flowbox .inflex .imgb {
    width: 100%;
    margin-bottom: 20px;
  }
}
.flowbox .inflex .num {
  order: 1;
}
.flowbox .inflex .textbox {
  order: 2;
  width: 66%;
  margin: 0 40px 0 30px;
}
@media screen and (max-width: 991px) {
  .flowbox .inflex .textbox {
    width: 100%;
    margin: 20px 0 0 0;
  }
}
.flowbox .inflex .textbox .intitle {
  font-size: 32px;
  color: #19454a;
  font-weight: 500;
  letter-spacing: 3px;
  padding: 22px 0;
  line-height: 1;
}
@media screen and (max-width: 1400px) {
  .flowbox .inflex .textbox .intitle {
    font-size: 27px;
  }
}
@media screen and (max-width: 767px) {
  .flowbox .inflex .textbox .intitle {
    font-size: 22px;
    letter-spacing: 2px;
  }
}
.flowbox .inflex .textbox .intitle img {
  margin-right: 15px;
}
@media screen and (max-width: 991px) {
  .flowbox .inflex .textbox .intitle img {
    display: inline-block !important;
    max-width: 60px;
  }
}
.flowbox .btnflex {
  display: flex;
  width: 100%;
  max-width: 932px;
  margin-right: auto;
  justify-content: space-between;
  margin-left: auto;
}
@media screen and (max-width: 1400px) {
  .flowbox .btnflex {
    max-width: 740px;
  }
}
@media screen and (max-width: 991px) {
  .flowbox .btnflex {
    display: block;
  }
}
.flowbox .btnflex .c_btn_k {
  margin-top: 50px;
  width: 456px;
  display: block;
}
@media screen and (max-width: 1400px) {
  .flowbox .btnflex .c_btn_k {
    width: 350px;
  }
}
@media screen and (max-width: 991px) {
  .flowbox .btnflex .c_btn_k {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .flowbox .btnflex .c_btn_k {
    margin-top: 20px;
  }
}
@media screen and (max-width: 480px) {
  .flowbox .btnflex .c_btn_k {
    width: 100%;
    max-width: 328px;
  }
}
.flowbox .btnflex .c_btn_k .tel_link {
  font-weight: 500;
}
.flowbox .btnflex .c_btn2 {
  font-size: 19px;
  color: #fff;
  line-height: 1;
  padding: 30px 15px;
  background-color: #f57647;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .flowbox .btnflex .c_btn2 {
    padding: 20px 15px;
    font-size: 16px;
  }
}

.flowbox_last {
  margin-bottom: 0 !important;
}
.flowbox_last::before {
  display: none;
}

.p_flex {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
@media screen and (max-width: 1400px) {
  .p_flex {
    margin-top: 40px;
  }
}
@media screen and (max-width: 991px) {
  .p_flex {
    display: block;
    margin-top: 30px;
  }
}
.p_flex .imgb {
  order: 2;
  width: 35%;
}
@media screen and (max-width: 991px) {
  .p_flex .imgb {
    width: 100%;
  }
}
.p_flex .imgb img {
  border-radius: 16px;
}
.p_flex .textside {
  order: 1;
  width: 65%;
  margin-right: 50px;
}
@media screen and (max-width: 1400px) {
  .p_flex .textside {
    margin-right: 30px;
  }
}
@media screen and (max-width: 991px) {
  .p_flex .textside {
    width: 100%;
    margin-right: 0;
    margin-top: 30px;
  }
}
.p_flex .textside .intitle {
  color: #38b1bf;
  font-size: 36px;
  margin-bottom: 40px;
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (max-width: 1400px) {
  .p_flex .textside .intitle {
    font-size: 30px;
  }
}
@media screen and (max-width: 991px) {
  .p_flex .textside .intitle {
    font-size: 27px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p_flex .textside .intitle {
    font-size: 23px;
  }
}

.p_flex2 .textside .intitle {
  color: #f57647;
}

.p_flex3 .textside .intitle {
  color: #f39427;
}

.p_flex4 .textside .intitle {
  color: #5ec299;
}

.reasonbox {
  margin-top: 80px;
}
@media screen and (max-width: 1400px) {
  .reasonbox {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .reasonbox {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .reasonbox .flex-tri {
    display: block;
  }
}
.reasonbox .flex-tri .side1 {
  margin-top: 40px;
}
@media screen and (max-width: 1400px) {
  .reasonbox .flex-tri .side1 {
    width: calc(33% - 10px);
  }
}
@media screen and (max-width: 991px) {
  .reasonbox .flex-tri .side1 {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .reasonbox .flex-tri .side1 {
    width: 100%;
    max-width: 460px;
    margin-right: auto;
    margin-left: auto;
  }
}
.reasonbox .flex-tri .side1 .imgb {
  position: relative;
}
.reasonbox .flex-tri .side1 .imgb img {
  border-radius: 14px;
}
.reasonbox .flex-tri .side1 .imgb .shortspan {
  line-height: 1;
  font-family: "Outfit", sans-serif;
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 0;
  text-align: center;
  padding: 10px 10px 20px;
  font-size: 20px;
  color: #f39427;
  border-radius: 0px 0 14px 0;
  width: 151px;
}
@media screen and (max-width: 1400px) {
  .reasonbox .flex-tri .side1 .imgb .shortspan {
    padding: 10px;
    width: 120px;
  }
}
.reasonbox .flex-tri .side1 .imgb .shortspan .shortspan2 {
  font-size: 36px;
  line-height: 1;
  font-weight: 500;
  margin-left: 5px;
}
@media screen and (max-width: 1400px) {
  .reasonbox .flex-tri .side1 .imgb .shortspan .shortspan2 {
    font-size: 28px;
  }
}
.reasonbox .flex-tri .side1 .intitle {
  text-align: center;
  color: #f39427;
  font-size: 20px;
  font-weight: 500;
  margin: 20px 0;
  line-height: 1.4;
}
@media screen and (max-width: 1400px) {
  .reasonbox .flex-tri .side1 .intitle {
    font-size: 17px;
  }
}

@media screen and (max-width: 767px) {
  .whitetwoflex {
    display: block;
  }
}
.whitetwoflex .inblock {
  background-color: #fff;
  padding: 60px 50px;
  margin-top: 60px;
  border-radius: 14px;
}
@media screen and (max-width: 1400px) {
  .whitetwoflex .inblock {
    padding: 40px 30px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 991px) {
  .whitetwoflex .inblock {
    padding: 30px 20px;
    width: calc(50% - 10px);
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .whitetwoflex .inblock {
    width: 100%;
    padding: 50px;
  }
}
.whitetwoflex .inblock .intitle {
  color: #f57647;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
  .whitetwoflex .inblock .intitle {
    font-size: 21px;
  }
}
@media screen and (max-width: 767px) {
  .whitetwoflex .inblock .intitle {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.whitetwoflex .inblock ul li {
  font-size: 16px;
  padding-left: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .whitetwoflex .inblock ul li {
    font-size: 14px;
  }
}
.whitetwoflex .inblock ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #f57647;
}

.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;
  }
}

.faq_group {
  margin-top: 60px;
}

.faq_box .faq_inbox {
  border-radius: 16px;
  margin-top: 30px;
  cursor: pointer;
  padding-left: 60px;
  background: #eff6f6;
}
@media screen and (max-width: 1199px) {
  .faq_box .faq_inbox {
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .faq_box .faq_inbox {
    padding-left: 40px;
  }
}
.faq_box .faq_inbox .intitle {
  font-size: 24px;
  font-weight: 600;
  position: relative;
  display: flex;
  line-height: 1.2;
  color: #333333;
  padding: 55px 50px;
  text-indent: -50px;
  align-items: center;
}
@media screen and (max-width: 1400px) {
  .faq_box .faq_inbox .intitle {
    padding: 40px 110px;
    padding-left: 50px;
    text-indent: -50px;
    font-size: 21px;
  }
}
@media screen and (max-width: 767px) {
  .faq_box .faq_inbox .intitle {
    font-size: 17px;
    padding: 30px 90px 40px;
    align-items: flex-start;
    min-height: 120px;
    padding-right: 70px;
    padding-left: 40px;
    text-indent: -42px;
  }
}
.faq_box .faq_inbox .intitle::before {
  content: "";
  background-color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  top: 27%;
  right: 30px;
  margin: auto;
  z-index: 0;
}
@media screen and (max-width: 1400px) {
  .faq_box .faq_inbox .intitle::before {
    top: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .faq_box .faq_inbox .intitle::before {
    right: 34px;
    width: 52px;
    height: 52px;
  }
}
@media screen and (max-width: 767px) {
  .faq_box .faq_inbox .intitle::before {
    top: 28px;
    right: 26px;
    width: 44px;
    height: 44px;
  }
}
@media screen and (max-width: 480px) {
  .faq_box .faq_inbox .intitle::before {
    top: 32px;
    right: 30px;
    width: 36px;
    height: 36px;
  }
}
.faq_box .faq_inbox .intitle .outfit {
  font-size: 38px;
  margin-right: 10px;
  color: #008695;
  font-weight: 400;
}
@media screen and (max-width: 1199px) {
  .faq_box .faq_inbox .intitle .outfit {
    font-size: 31px;
  }
}
@media screen and (max-width: 767px) {
  .faq_box .faq_inbox .intitle .outfit {
    font-size: 27px;
  }
}
.faq_box .faq_inbox .intitle .el_icon {
  position: absolute;
  top: 45%;
  right: 50px;
  transform: translate(0%, -50%);
  display: inline-block;
  width: 20px;
  height: 3px;
  margin: 0 auto;
  background-color: #504434;
  transform: scale(1, -1);
  cursor: pointer;
}
@media screen and (max-width: 1400px) {
  .faq_box .faq_inbox .intitle .el_icon {
    top: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .faq_box .faq_inbox .intitle .el_icon {
    top: 54px;
  }
}
@media screen and (max-width: 767px) {
  .faq_box .faq_inbox .intitle .el_icon {
    transition: 0.3s;
    top: 49px;
    right: 41px;
    width: 15px;
  }
  .faq_box .faq_inbox .intitle .el_icon:hover {
    opacity: 0.7;
  }
}
.faq_box .faq_inbox .intitle .el_icon::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 20px;
  top: -8.7px;
  right: 9px;
  background-color: #19454a;
}
@media screen and (max-width: 767px) {
  .faq_box .faq_inbox .intitle .el_icon::after {
    height: 15px;
    top: -5.8px;
    right: 6px;
  }
}
.faq_box .faq_inbox .intitle.active .el_icon {
  transform: scaleY(1);
}
.faq_box .faq_inbox .intitle.active .el_icon::after {
  opacity: 0 !important;
  transition: 0.4s;
}
.faq_box .faq_inbox .qa_bottom {
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  height: 0;
  opacity: 0;
  padding-right: 60px;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .faq_box .faq_inbox .qa_bottom {
    align-items: flex-start;
    padding-right: 30px;
  }
}
.faq_box .faq_inbox .qa_bottom .txt {
  font-weight: 500;
  font-size: 17px;
  padding-left: 55px;
  text-indent: -52px;
  color: #333;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .faq_box .faq_inbox .qa_bottom .txt {
    font-size: 15px;
    padding-left: 30px;
    text-indent: -30px;
    margin-top: 30px;
  }
}
.faq_box .faq_inbox .qa_bottom .txt .outfit {
  margin-right: 20px;
  font-size: 30px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .faq_box .faq_inbox .qa_bottom .txt .outfit {
    font-size: 22px;
    margin-right: 8px;
  }
}
.faq_box .faq_inbox .qa_bottom .in {
  padding: 0 0 30px 50px;
  position: relative;
  display: flex;
  justify-content: flex-start;
}
.faq_box .faq_inbox .qa_bottom .in:last-child:after {
  display: none;
}
.faq_box .faq_inbox .qa_bottom .in:before {
  content: "";
  width: 11px;
  height: 11px;
  background-color: #19454a;
  border-radius: 50%;
  position: absolute;
  top: 13px;
  left: 10px;
}
.faq_box .faq_inbox .qa_bottom .in:after {
  content: "";
  width: 3px;
  height: 100%;
  background-color: #19454a;
  position: absolute;
  top: 15px;
  left: 14px;
}
.faq_box .faq_inbox .qa_bottom .in.no:after {
  display: none;
}
.faq_box .faq_inbox .qa_bottom .in .tx1 {
  font-size: 18px;
  font-weight: 500;
  width: 110px;
}
.faq_box .faq_inbox .qa_bottom img {
  margin-right: 15px;
  display: block;
  height: 100%;
  max-width: 40px;
}
.faq_box .faq_inbox .acc_title.active + .qa_bottom {
  height: auto;
  opacity: 1;
  visibility: visible;
  transition: 0.3s ease-in-out;
  margin-top: -40px;
  padding-bottom: 50px;
}

.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;
  }
}

.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;
}

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

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

  ■会社概要

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

.lightblue_box {
  background-color: #eff6f6;
  border-radius: 14px;
  margin-top: 40px;
  padding: 50px;
}
@media screen and (max-width: 1199px) {
  .lightblue_box {
    padding: 30px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .lightblue_box {
    padding: 30px 20px;
  }
}
.lightblue_box .intitle {
  color: #38b1bf;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .lightblue_box .intitle {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .lightblue_box .textb {
    font-size: 14px;
  }
}
.lightblue_box .textb ul li {
  font-weight: 700;
  position: relative;
  padding-left: 14px;
}
.lightblue_box .textb ul li::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #38b1bf;
  left: 0;
}

@media screen and (max-width: 1199px) {
  .mapin iframe {
    height: 380px;
  }
}
@media screen and (max-width: 767px) {
  .mapin iframe {
    height: 300px;
  }
}

.company_table {
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #ccc;
  margin: 60px 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .company_table {
    margin: 40px 0;
  }
}
.company_table span {
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .company_table {
    border: none;
    margin-top: 10px;
  }
}
.company_table th {
  padding: 20px 20px;
  border-width: 0 0 1px 0;
  vertical-align: middle;
  width: 16%;
  background-color: #f8f8f8;
  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: 20px 20px;
  vertical-align: top;
  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;
  }
}

.company_table2 {
  margin-top: 40px;
}

@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;
  }
}

.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;
  }
}

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

  ■お問い合わせ

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

.k_minititle {
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
  padding-bottom: 25px;
  position: relative;
  border-bottom: 2px solid #dae0e0;
}
@media screen and (max-width: 767px) {
  .k_minititle {
    font-size: 20px;
  }
}
.k_minititle::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  background-color: #008695;
  width: 160px;
  height: 2px;
}
@media screen and (max-width: 767px) {
  .k_minititle::before {
    width: 90px;
  }
}

.graycontain {
  padding: 0 40px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1400px) {
  .graycontain {
    padding: 0 25px;
  }
}
.graycontain .grayin {
  background-color: #fafafa;
  border-radius: 14px;
  padding: 90px 25px;
  width: 100%;
  max-width: 1820px;
  margin: auto;
  margin-top: 30px;
}
@media screen and (max-width: 1400px) {
  .graycontain .grayin {
    padding: 60px 25px;
  }
}
@media screen and (max-width: 767px) {
  .graycontain .grayin {
    padding: 30px 25px;
  }
}
.graycontain .c_btn_k {
  margin-top: 50px;
}
@media screen and (max-width: 1400px) {
  .graycontain .c_btn_k {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .graycontain .c_btn_k {
    margin-top: 30px;
  }
}
.graycontain .c_btn_k .tel_link {
  font-weight: 400;
}

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

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

.privacy_box {
  margin-top: 80px;
  font-size: 16px;
}
@media screen and (max-width: 1400px) {
  .privacy_box {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .privacy_box {
    margin-top: 40px;
    font-size: 14px;
  }
}

.privacy_subtitle {
  margin-top: 20px;
  color: #19454a;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .privacy_subtitle {
    font-size: 18px;
  }
}
.privacy_subtitle span {
  font-size: 14px;
  color: #214B94;
  margin-right: 5px;
}

.privacytext {
  background-color: #eff6f6;
  border-radius: 14px;
  margin-top: 40px;
  padding: 60px 70px;
  margin-bottom: 140px;
}
@media screen and (max-width: 1400px) {
  .privacytext {
    padding: 50px 40px;
    margin-bottom: 90px;
  }
}
@media screen and (max-width: 767px) {
  .privacytext {
    margin-top: 30px;
    margin-bottom: 60px;
    padding: 30px 20px;
  }
}
.privacytext a:hover {
  color: #104000;
}
.privacytext .text span {
  color: #008695;
  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: 292px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 480px) {
  .contact__table {
    max-width: 280px;
    display: block;
  }
}
.contact__table p {
  position: relative;
  z-index: 1;
}

.form-control {
  margin-top: 10px;
}

.contactform_in {
  width: 100%;
  background-color: #f8f8f8;
  border-radius: 14px;
  padding: 80px 25px 60px;
}
@media screen and (max-width: 767px) {
  .contactform_in {
    padding: 50px 25px 30px;
  }
}

.table-contact {
  table-layout: fixed;
  border-top: 1px solid #e4e4e4;
  max-width: 1040px;
  margin: auto;
  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: 25px 15px;
  padding-right: 50px;
  width: 30%;
  color: #333333;
  font-weight: 700;
  line-height: 1.4;
  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: #ff4133;
  border-radius: 2px;
  position: absolute;
  right: 40px;
  line-height: 1.4;
  padding: 0 3px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .table-contact th .red {
    right: 10px;
  }
}
.table-contact td {
  width: 70%;
  padding: 25px 15px;
  line-height: 1.4;
  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 #008695;
  margin: 0 10px 10px;
  width: 100%;
  padding: 18px 10px;
  letter-spacing: 1px;
  transition: 0.5s;
  background: #008695;
  transition: 0.5s;
  max-width: 292px;
}
@media screen and (max-width: 480px) {
  .contact__table.btn__block .txt__inline03 input {
    width: 240px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 0px;
    padding: 14px 10px;
    margin-bottom: 15px;
  }
}
.contact__table.btn__block .txt__inline03 input:hover {
  opacity: 0.7;
}

.contact__table.btn__block .inline04 input {
  color: #fff;
  background-color: #38b1bf;
  border: 1px solid #38b1bf;
  position: relative;
  background-image: url(images/circlew.svg);
  background-repeat: no-repeat;
  background-position: center right 20px;
}
.contact__table.btn__block .inline04 input:hover {
  opacity: 0.7;
}

.contact__table.btn__block .txt__inline03 {
  position: relative;
}
@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: #008695;
}
@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;
  border-radius: 2px;
  font-size: 12px;
  background-color: #ff4133;
}
@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%;
}

.main_text {
  display: block;
}

.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: #F39427;
}
.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;
}

.single-blog__date {
  font-size: 17px;
  font-weight: 400;
  margin-right: 10px;
}
@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;
}

.single-blog__title {
  word-break: break-all;
  font-size: 29px;
  font-weight: 500;
  position: relative;
  margin-top: 12px;
  line-height: 1.5;
  margin-bottom: 40px;
}
@media screen and (max-width: 1199px) {
  .single-blog__title {
    font-size: 26px;
  }
}
@media screen and (max-width: 1056px) {
  .single-blog__title {
    font-size: 23px;
  }
}
@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: 20px;
  }
}

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

  ■フッター

=====================================*/
.footer_bigblock {
  position: relative;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .footer_bigblock {
    padding: 60px 0 40px;
  }
}

#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 {
  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メニュー*/
.footer__none {
  display: none;
}

/*フッターメニュー*/
.footermenu {
  display: flex;
  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;
  }
}
.footermenu .mt0 {
  margin-top: 0px;
}
.footermenu .menu-item-has-children {
  margin-bottom: 10px;
  margin-left: auto;
}
@media screen and (max-width: 1199px) {
  .footermenu .menu-item-has-children {
    margin-left: 0;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .footermenu .menu-item-has-children {
    font-size: 16px;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    width: calc(33% - 2px);
  }
}
@media screen and (max-width: 480px) {
  .footermenu .menu-item-has-children {
    font-size: 16px;
    width: 49%;
  }
}
.footermenu .menu-item-has-children::before {
  display: none;
}
.footermenu .menu-item-has-children .sub-menu {
  font-size: 13px !important;
}
@media screen and (max-width: 991px) {
  .footermenu .menu-item-has-children .sub-menu {
    margin-top: 0;
  }
}
.footermenu .menu-item-has-children .sub-menu li {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footermenu .menu-item-has-children .sub-menu li {
    width: 100%;
  }
}
.footermenu li {
  float: none;
  margin-bottom: 40px;
  font-size: 17px;
  line-height: 1;
  position: relative;
  letter-spacing: -1px;
  padding-left: 15px;
  font-weight: 700;
  width: calc(33% - 2px);
}
@media screen and (max-width: 1600px) {
  .footermenu li {
    font-size: 15px;
  }
}
@media screen and (max-width: 1199px) {
  .footermenu li {
    margin-bottom: 30px;
    font-size: 14px;
    padding-left: 10px;
  }
}
@media screen and (max-width: 767px) {
  .footermenu li {
    max-width: none;
    width: 49%;
    text-align: left;
    vertical-align: top;
    margin-bottom: 0;
    padding: 10px 0 10px 10px;
    margin-right: 0;
    margin-left: 0;
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  .footermenu li {
    font-size: 15px;
  }
}
.footermenu li::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background: #38b1bf;
  border-radius: 50%;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}
.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 .sub-under {
  font-weight: 400;
  margin: 0;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 400;
}
@media screen and (max-width: 1600px) {
  .footermenu li .sub-under {
    font-size: 13px;
  }
}
@media screen and (max-width: 1199px) {
  .footermenu li .sub-under {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.footermenu li .sub-under::before {
  display: none;
}
.footermenu li .sub-under2 {
  margin-top: 5px;
}
.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;
}

.footerout {
  padding: 0 15px;
}

.contact_back_back {
  padding: 0 15px;
}

.contact_back {
  color: #fff;
  background-image: url(images/footcontactback.jpg);
  background-size: cover;
  border-radius: 50px;
  padding: 110px 0;
  width: 100%;
  max-width: 1760px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1400px) {
  .contact_back {
    border-radius: 60px;
    padding: 80px 0;
  }
}
@media screen and (max-width: 1056px) {
  .contact_back {
    border-radius: 40px;
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .contact_back {
    background-size: cover;
    border-radius: 30px;
  }
}
@media screen and (max-width: 991px) {
  .contact_back .container {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .contact_back .container {
    padding-right: 25px;
    padding-left: 25px;
  }
}
.contact_back .backflex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .contact_back .backflex {
    display: block;
  }
}
.contact_back .backflex .textbox {
  width: 57%;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .contact_back .backflex .textbox {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.contact_back .backflex .textbox .minitext {
  font-size: 20px;
}
.contact_back .backflex .textbox .bigmidash {
  font-size: 32px;
  line-height: 1.5;
  margin: 10px 0 30px;
}
@media screen and (max-width: 1400px) {
  .contact_back .backflex .textbox .bigmidash {
    font-size: 26px;
  }
}
@media screen and (max-width: 1199px) {
  .contact_back .backflex .textbox .bigmidash {
    font-size: 24px;
  }
}
@media screen and (max-width: 991px) {
  .contact_back .backflex .textbox .bigmidash {
    font-size: 22px;
    margin: 10px 0 20px;
  }
}
.contact_back .backflex .textbox .txt {
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .contact_back .backflex .textbox .txt {
    font-size: 15px;
  }
}
.contact_back .backflex .btnside {
  width: 32%;
}
@media screen and (max-width: 1400px) {
  .contact_back .backflex .btnside {
    width: 36%;
  }
}
@media screen and (max-width: 991px) {
  .contact_back .backflex .btnside {
    width: 47%;
  }
}
@media screen and (max-width: 767px) {
  .contact_back .backflex .btnside {
    width: 100%;
  }
}
.contact_back .backflex .btnside .c_btn {
  border-radius: 56px;
  max-width: 456px;
  line-height: 1;
  font-weight: 400;
  border: 1px solid #fff;
  background-color: transparent;
  padding: 20px 10px 20px;
  cursor: auto;
}
@media screen and (max-width: 767px) {
  .contact_back .backflex .btnside .c_btn {
    padding: 14px 10px 14px;
  }
}
.contact_back .backflex .btnside .c_btn img {
  position: relative;
  margin-right: 7px;
  margin-bottom: 15px;
  max-width: none;
  width: auto;
  height: auto;
  right: auto;
}
@media screen and (max-width: 1400px) {
  .contact_back .backflex .btnside .c_btn img {
    max-width: 24px;
  }
}
@media screen and (max-width: 767px) {
  .contact_back .backflex .btnside .c_btn img {
    max-width: 20px;
  }
}
.contact_back .backflex .btnside .c_btn .span1 {
  font-size: 38px;
}
@media screen and (max-width: 1400px) {
  .contact_back .backflex .btnside .c_btn .span1 {
    font-size: 31px;
  }
}
@media screen and (max-width: 767px) {
  .contact_back .backflex .btnside .c_btn .span1 {
    font-size: 25px;
  }
}
.contact_back .backflex .btnside .c_btn .span2 {
  display: block;
  letter-spacing: 0;
  margin-top: -5px;
}
.contact_back .backflex .btnside .c_btn2 {
  cursor: pointer;
  background-color: #f57647;
  font-size: 19px;
  border-radius: 40px;
  margin-top: 12px;
  padding: 30px 10px;
  border: none;
}
@media screen and (max-width: 767px) {
  .contact_back .backflex .btnside .c_btn2 {
    font-size: 16px;
    padding: 27px 10px;
  }
}
.contact_back .backflex .btnside .c_btn2 img {
  max-width: 28px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .contact_back .backflex .btnside .c_btn2 img {
    max-width: 22px;
  }
}

.c_btn_k {
  display: block;
  width: 100%;
  max-width: 456px;
  margin: auto;
  text-align: center;
  color: #19454a;
  border-radius: 49px;
  background-color: transparent;
  border: 1px solid;
  font-size: 29px;
  cursor: auto;
  padding: 15px 10px 15px;
}
@media screen and (max-width: 767px) {
  .c_btn_k {
    font-size: 23px;
  }
}
.c_btn_k:hover {
  color: #19454a;
}
.c_btn_k img {
  margin-right: 10px;
  max-width: none;
  width: auto;
  height: auto;
  right: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c_btn_k img {
    max-width: 18px;
  }
}
.c_btn_k .span2 {
  display: block;
  font-size: 13px;
  margin-top: 8px;
}

.menu_bg {
  letter-spacing: 1px;
}
/*フッターコンテンツ*/
.footer__block .inflex {
  display: flex;
  width: 100%;
  max-width: 1650px;
  margin-right: auto;
  margin-left: auto;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .footer__block .inflex {
    display: block;
  }
}
.footer__block .inflex .logoside_flex {
  margin-right: auto;
  width: 36%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1600px) {
  .footer__block .inflex .logoside_flex {
    width: 46%;
  }
}
@media screen and (max-width: 991px) {
  .footer__block .inflex .logoside_flex {
    margin-bottom: 30px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    max-width: 560px;
  }
}
@media screen and (max-width: 480px) {
  .footer__block .inflex .logoside_flex {
    display: block;
  }
}
.footer__block .inflex .logoside_flex .logo_side {
  display: block;
  margin-right: 70px;
}
@media screen and (max-width: 1600px) {
  .footer__block .inflex .logoside_flex .logo_side {
    margin-right: 30px;
  }
}
@media screen and (max-width: 480px) {
  .footer__block .inflex .logoside_flex .logo_side {
    margin-right: auto;
    margin-left: auto;
    max-width: 160px;
    margin-bottom: 20px;
    text-align: center;
  }
}
.footer__block .inflex .logoside_flex .addressone {
  font-size: 16px;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .footer__block .inflex .logoside_flex .addressone {
    font-size: 15px;
  }
}
@media screen and (max-width: 480px) {
  .footer__block .inflex .logoside_flex .addressone {
    text-align: center;
    font-size: 15px;
  }
}
.footer__block .inflex .logoside_flex .addressone .span1 {
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
@media screen and (max-width: 767px) {
  .footer__block .inflex .logoside_flex .addressone .span1 {
    font-size: 16px;
  }
}
.footer__block .inflex .logoside_flex .addressone .btn {
  font-size: 15px;
  color: #000000;
  background-color: #e7f2f5;
  border-radius: 21px;
  padding: 10px;
  max-width: 197px;
}
@media screen and (max-width: 1199px) {
  .footer__block .inflex .logoside_flex .addressone .btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 480px) {
  .footer__block .inflex .logoside_flex .addressone .btn {
    margin-right: auto;
    margin-left: auto;
  }
}
.footer__block .inflex .logoside_flex .addressone .btn img {
  position: static;
  margin-right: 6px;
}
.footer__block .inflex .rightside {
  width: 39%;
}
@media screen and (max-width: 991px) {
  .footer__block .inflex .rightside {
    margin-right: auto;
    width: 100%;
    max-width: 530px;
    margin-left: auto;
  }
}

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

/*コピーライト*/
.copyright {
  font-size: 14px;
  color: #b2b2b2;
  letter-spacing: 1px;
  position: relative;
  z-index: 3;
  margin-top: auto;
  text-align: right;
  margin-left: auto;
  width: 100%;
  max-width: 1620px;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .copyright {
    font-size: 12px;
    text-align: center;
  }
}

.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;
  }
}

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

  ■フロント

=====================================*
/*slick*/
.slick__wrap {
  position: relative;
  border-radius: 26px;
  width: 100%;
  max-width: 1760px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .slick__wrap {
    margin-top: 0px;
    padding: 0 15px;
  }
}
.slick__wrap .slicktext {
  position: absolute;
  top: 30%;
  left: 39%;
  color: #fff;
  width: 100%;
  max-width: 590px;
  min-width: 590px;
  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%, -60%);
    padding-left: 0;
    left: 63%;
  }
}
@media screen and (max-width: 480px) {
  .slick__wrap .slicktext {
    padding-left: 0px;
    top: 170px;
    left: 67%;
  }
}
.slick__wrap .slicktext .bigtext {
  font-weight: 600;
  font-size: 66px;
  line-height: 1.2;
  color: #008695;
  margin-bottom: 30px;
}
@media screen and (max-width: 1199px) {
  .slick__wrap .slicktext .bigtext {
    font-size: 54px;
  }
}
@media screen and (max-width: 991px) {
  .slick__wrap .slicktext .bigtext {
    font-size: 47px;
  }
}
@media screen and (max-width: 767px) {
  .slick__wrap .slicktext .bigtext {
    font-size: 40px;
  }
}
@media screen and (max-width: 480px) {
  .slick__wrap .slicktext .bigtext {
    font-size: 27px;
    margin-bottom: 10px;
    line-height: 1.4;
  }
}
.slick__wrap .slicktext .bigtext span {
  z-index: 1;
  position: relative;
  padding: 0 10px;
}
.slick__wrap .slicktext .bigtext span::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 28px;
  background-color: #fff;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .slick__wrap .slicktext .bigtext span::before {
    height: 44px;
  }
}
@media screen and (max-width: 480px) {
  .slick__wrap .slicktext .bigtext span::before {
    height: 32px;
  }
}
.slick__wrap .slicktext .bigtext .span1 {
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  .slick__wrap .slicktext .bigtext .span1 {
    padding-right: 10px;
  }
}
.slick__wrap .slicktext .bigtext .span1 img {
  margin-left: 5px;
}
@media screen and (max-width: 767px) {
  .slick__wrap .slicktext .bigtext .span1 img {
    max-width: 22px;
  }
}
@media screen and (max-width: 480px) {
  .slick__wrap .slicktext .bigtext .span1 img {
    max-width: 15px;
    margin-left: 5px;
    margin-bottom: 5px;
  }
}
.slick__wrap .slicktext .minitext {
  padding: 20px;
  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: 2.2%;
  width: 100%;
  font-size: 2.4rem;
  line-height: 1.6;
  left: 22%;
}
@media screen and (max-width: 1600px) {
  .slick__wrap .minifloat {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1400px) {
  .slick__wrap .minifloat {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 1199px) {
  .slick__wrap .minifloat {
    font-size: 1.6rem;
    left: 21%;
  }
}
@media screen and (max-width: 991px) {
  .slick__wrap .minifloat {
    font-size: 1.6rem;
    background: #fff;
    max-width: 435px;
    padding: 20px;
    left: 30px;
    bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .slick__wrap .minifloat {
    max-width: 360px;
    font-size: 15px;
    padding: 30px 30px 15px 15px;
    border-radius: 0 26px 0 0;
    left: 15px;
    bottom: 0px;
  }
}
@media screen and (max-width: 480px) {
  .slick__wrap .minifloat {
    max-width: 301px;
    font-size: 14px;
    padding: 30px 10px 15px 10px;
    border-radius: 0 26px 0 0;
    left: 15px;
    bottom: 0px;
  }
}
.slick__wrap .item {
  text-align: center;
  overflow: hidden;
}
.slick__wrap .item img,
.slick__wrap .item source {
  height: 100%;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .slick__wrap .item img,
  .slick__wrap .item source {
    border-radius: 26px;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .hidden-mdneo {
    display: block !important;
  }
}
@media screen and (max-width: 480px) {
  .hidden-mdneo {
    display: none !important;
  }
}

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

@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 img {
  margin: 20px auto 40px;
  display: block;
  max-width: 100%;
  height: auto;
}

.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;
  font-family: "Outfit", sans-serif;
  margin-top: 60px;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi {
    margin-top: 30px;
  }
}
.wp-pagenavi .navigation {
  margin: 0 auto;
}
.wp-pagenavi a,
.wp-pagenavi span {
  border: none;
  padding: 1px 3px !important;
  margin: 3px;
  background: #dae0e0;
  min-width: 40px;
  max-width: 40px;
  display: inline-block;
  text-align: center;
  transition: 0.3s;
  border-radius: 50%;
  border: none !important;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    padding: 3px 5px !important;
  }
}
.wp-pagenavi a:hover,
.wp-pagenavi span:hover {
  opacity: 1;
  color: #fff;
  background: #38B1BF;
}
.wp-pagenavi span.current {
  font-weight: normal;
  background: #38B1BF;
  color: #fff;
}
.wp-pagenavi span.pages {
  background: none;
  color: #008695;
  display: none;
}

/*single.php ページネーション*/
.paginate__wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 328px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .paginate__wrap {
    max-width: 150px;
    margin-top: 40px;
  }
}
.paginate__wrap a {
  display: block;
  padding: 11.5px 5px;
  font-size: 16px;
  background: #dae0e0;
  border-radius: 21px;
  color: #19454a;
  line-height: 1;
  text-decoration: none;
  text-align: center;
}
.paginate__wrap a:hover {
  color: #fff;
  background: #008695;
}
@media screen and (max-width: 767px) {
  .paginate__wrap a .fa-list {
    margin: auto;
  }
}
.paginate__wrap .paginate__block--back a {
  width: 226px;
}
@media screen and (max-width: 767px) {
  .paginate__wrap .paginate__block--back a {
    max-width: 40px;
  }
}
.paginate__wrap .paginate__block--next {
  min-width: 40px;
}
@media screen and (max-width: 767px) {
  .paginate__wrap .paginate__block--next {
    min-width: 40px;
  }
}
@media screen and (max-width: 767px) {
  .paginate__wrap .paginate__block--next i {
    margin: auto;
  }
}
.paginate__wrap .paginate__block--prev {
  min-width: 40px;
}
@media screen and (max-width: 767px) {
  .paginate__wrap .paginate__block--prev {
    min-width: 40px;
  }
}
@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: #008695;
}
@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;
}

p:empty {
  display: none;
}
/*# sourceMappingURL=style.css.map */