@charset "UTF-8";
/*
Theme Name: WP koumyouji
Author: wp-koumyouji
Description: wp-koumyouji
Version: 1.01
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wp-koumyouji
Requires PHP: 7.4
Tested up to: 6.6
*/
/*====================================

  ■メディアクエリ

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

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

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

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

@media screen and (max-width: 991px) {
  .dropdown-toggle {
    background-color: #efefef;
  }
}
@media screen and (max-width: 991px) {
  .dropdown-toggle:hover {
    background-color: #efefef;
  }
}

.medium {
  font-weight: 500;
}

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

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

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

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

@media screen and (max-width: 767px) {
  .mt60 {
    margin-top: 40px;
  }
}

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

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

body {
  color: #504434;
  font-family: "Zen Maru Gothic", "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 600;
  background-color: #f6f5f1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1056px) {
  body {
    font-size: 14px;
    line-height: 1.6;
  }
}

.main-content {
  overflow: hidden;
}
.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 {
  color: #a78468;
}
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;
  }
}

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

  ■ヘッダー

=====================================*/
/*ヘッダー固定の高さ調整*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}

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

.langbtn {
  order: 3;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .langbtn {
    margin-right: 0px;
  }
}
.langbtn .gt_option {
  position: absolute !important;
  top: 32px;
  left: 0;
  width: 178px !important;
}
@media screen and (max-width: 991px) {
  .langbtn .gt_option {
    top: 39px;
    left: auto;
    width: 193px !important;
    right: 0px;
  }
}

.gt_switcher a {
  padding: 7px 5px !important;
  font-size: 13px !important;
}
@media screen and (max-width: 991px) {
  .gt_switcher a {
    font-size: 12px !important;
  }
}
.gt_switcher a img {
  width: 18px !important;
  height: 18px !important;
}

.gt_switcher {
  width: 181px !important;
  font-size: 11px !important;
}
@media screen and (max-width: 991px) {
  .gt_switcher {
    width: 195px !important;
    font-size: 10px !important;
  }
}

.gt_selected {
  width: 180px;
}

.gt_selected a {
  padding: 6px 3px !important;
  text-indent: -30px !important;
  width: 140px !important;
  padding-left: 35px !important;
}
@media screen and (max-width: 991px) {
  .gt_selected a {
    width: 169px !important;
    padding: 10px 5px !important;
    text-indent: 0 !important;
  }
}
.gt_selected a::after {
  top: 0;
  bottom: 0;
  margin: auto;
  right: 5px !important;
}
@media screen and (max-width: 991px) {
  .gt_selected a::after {
    right: 7px !important;
  }
}

.header__inner {
  position: relative;
  left: 0;
  right: 0;
  margin: auto;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  z-index: 20;
  letter-spacing: 0;
  width: 100%;
  margin: auto;
  /*ロゴ*/
  /*電話番号*/
  /*お問い合わせ*/
  /*グローバルメニューの親*/
}
@media screen and (min-width: 1200px) {
  .header__inner {
    flex-wrap: nowrap;
  }
}
@media screen and (max-width: 1199px) {
  .header__inner {
    padding: 0px;
  }
}
@media screen and (max-width: 1199px) {
  .header__inner {
    top: 0;
    margin: 0;
    width: 100%;
    padding: 10px;
    border-radius: 0;
    position: fixed;
    background-color: #fff;
  }
}
@media screen and (max-width: 480px) {
  .header__inner {
    padding: 10px 0px;
  }
}
.header__inner .logoblock {
  width: 100%;
  order: 1;
  max-width: 220px;
  margin-right: auto;
  margin-left: 20px;
}
@media screen and (max-width: 1600px) {
  .header__inner .logoblock {
    max-width: 200px;
    margin-left: 10px;
  }
}
@media screen and (max-width: 1300px) {
  .header__inner .logoblock {
    max-width: 170px;
  }
}
@media screen and (max-width: 1199px) {
  .header__inner .logoblock {
    max-width: 105px;
    position: static;
  }
}
@media screen and (max-width: 1199px) {
  .header__inner .logoblock {
    max-width: 205px;
    margin: 0;
    margin-right: auto;
    margin-left: 10px;
  }
}
@media screen and (max-width: 480px) {
  .header__inner .logoblock {
    max-width: 120px;
  }
}
.header__inner .logoblock h1 {
  font-size: 12px;
  padding-left: 0px;
  color: #949494;
  margin-right: auto;
}
@media screen and (max-width: 1199px) {
  .header__inner .logoblock h1 {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .header__inner .logoblock .logo1 {
    display: none;
  }
}
.header__inner .logoblock .logo2 {
  display: none;
}
@media screen and (max-width: 1199px) {
  .header__inner .logoblock .logo2 {
    display: block;
  }
}
.header__inner .logoblock .logo3 {
  display: none;
}
@media screen and (max-width: 1199px) {
  .header__inner .logoblock .logo3 {
    display: block;
  }
}
.header__inner .header__tel {
  order: 3;
  line-height: 1;
  margin-right: 20px;
  text-align: right;
  font-size: 15px;
}
@media screen and (max-width: 1600px) {
  .header__inner .header__tel {
    margin-right: 10px;
  }
}
@media screen and (max-width: 1199px) {
  .header__inner .header__tel {
    display: block;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #1d3966;
    padding: 9px 9px 11px 9px;
    width: 100%;
    line-height: 1.3;
    max-width: 36px;
    min-width: 36px;
    order: 2;
    margin-right: 5px;
    margin-left: 5px;
    text-align: center;
    position: absolute;
    top: 19px;
    right: 87px;
  }
}
.header__inner .header__tel .tel_link {
  margin-left: 15px;
  font-size: 28px;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
}
@media screen and (max-width: 1600px) {
  .header__inner .header__tel .tel_link {
    margin-right: 10px;
    font-size: 24px;
  }
}
@media screen and (max-width: 1199px) {
  .header__inner .header__tel .tel_link {
    margin-right: 0px;
    margin-left: 0;
  }
}
.header__inner .header__tel .tel_link img {
  max-width: 17px;
  margin: 0 3px 4px 0;
}
@media screen and (max-width: 1600px) {
  .header__inner .header__tel .tel_link img {
    max-width: 17px;
  }
}
@media screen and (max-width: 1199px) {
  .header__inner .header__tel .tel_link img {
    max-width: 11px;
    margin: 0;
  }
}
.header__inner .header__tel p {
  font-size: 12px;
  text-align: center;
  margin-top: 5px;
}
.header__inner .header__contact2 {
  order: 4;
  margin-left: 14px;
}
@media screen and (max-width: 1600px) {
  .header__inner .header__contact2 {
    margin-left: 14px;
    max-width: 150px;
  }
}
@media screen and (max-width: 1199px) {
  .header__inner .header__contact2 {
    display: none;
    margin-left: 0;
  }
}
.header__inner .header__contact2 a {
  display: block;
  width: 180px;
  text-align: center;
  color: #fff;
  background-color: #bb262e;
  line-height: 1;
  border: 2px solid #bb262e;
  padding: 36px 12px;
  font-size: 18px;
  font-weight: 600;
  position: relative;
}
@media screen and (max-width: 1700px) {
  .header__inner .header__contact2 a {
    font-size: 15px;
    width: 150px;
    padding-left: 18px;
  }
}
@media screen and (max-width: 1300px) {
  .header__inner .header__contact2 a {
    padding-left: 12px;
    width: 48px;
  }
}
.header__inner .header__contact2 a .span1 {
  position: relative;
  padding-left: 15px;
}
@media screen and (max-width: 1700px) {
  .header__inner .header__contact2 a .span1 {
    padding-left: 10px;
  }
}
@media screen and (max-width: 1300px) {
  .header__inner .header__contact2 a .span1 {
    padding-left: 22px;
  }
}
@media screen and (max-width: 1199px) {
  .header__inner .header__contact2 a .span1 {
    padding-left: 0px;
    display: block;
  }
}
.header__inner .header__contact2 a .span1 img {
  position: absolute;
  right: auto;
  top: 7px;
  left: -15px;
}
@media screen and (max-width: 1300px) {
  .header__inner .header__contact2 a .span1 img {
    top: 4px;
  }
}
@media screen and (max-width: 1300px) {
  .header__inner .header__contact2 a .span1 img {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
.header__inner .header__contact2 a .span1 .mail1 {
  transition: 0.8s;
  opacity: 1;
}
.header__inner .header__contact2 a .span1 .mail2 {
  opacity: 0;
  transition: 0.8s;
}
@media screen and (max-width: 1300px) {
  .header__inner .header__contact2 a .span1 .txt {
    display: none;
  }
}
.header__inner .header__contact2 a:hover {
  background-color: #fff;
  color: #bb262e;
}
.header__inner .header__contact2 a:hover span .mail1 {
  transition: 0.8s;
  opacity: 0;
}
.header__inner .header__contact2 a:hover span .mail2 {
  opacity: 1;
  transition: 0.8s;
}
.header__inner .header__contact {
  order: 4;
}
.header__inner .header__contact a {
  color: #fff;
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 20px 42px;
  max-width: 50px;
  border-radius: 6px;
  margin-left: 5px;
  margin-right: 36px;
  position: relative;
  background: #fff;
  border: 1px solid #ff9110;
  z-index: 0;
  line-height: 1;
  transition: 0.3s;
}
.header__inner .header__contact a:hover {
  opacity: 0.8;
  transition-duration: 0.7s;
}
@media screen and (min-width: 1200px) {
  .header__inner .header__contact a {
    margin-left: 0px;
    margin-right: 10px;
    width: 100%;
    max-width: 210px;
    text-align: center;
    border-radius: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .header__inner .header__contact a {
    margin-right: 5px;
    display: none;
  }
}
@media screen and (max-width: 1600px) {
  .header__inner .header__contact a {
    max-width: 145px;
    padding: 20px 20px;
    font-size: 13px;
  }
}
@media screen and (max-width: 1199px) {
  .header__inner .header__contact a {
    order: 4;
    padding: 11px 9px 11px;
    margin-left: 0;
    font-size: 19px;
  }
}
@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;
  }
}
.header__inner .header__menu {
  order: 3;
  width: 100%;
  max-width: 1220px;
}
@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: 860px;
  }
}
@media screen and (max-width: 1300px) {
  .header__inner .header__menu {
    max-width: 740px;
  }
}
@media screen and (max-width: 1199px) {
  .header__inner .header__menu {
    max-width: none;
    background-color: #fff;
  }
}

.logo2 {
  display: none;
}

.menu_fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-top: none;
  z-index: 1000;
}
.menu_fixed .header__inner {
  width: 100%;
  background-color: #fff;
}
.menu_fixed .header__inner .navbar-nav.nav > li > a {
  color: #504434;
}
.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;
  color: #a78468;
  border-color: #a78468;
}
.menu_fixed .header__inner .navbar-nav.nav > li > a .caret::before {
  background-image: url(images/careticon.png);
}
.menu_fixed .header__inner .navbar-nav.nav > li.active a {
  color: #a78468;
  border-color: #a78468;
}
.menu_fixed .header__inner .navbar-nav.nav > li.active a::before {
  background-color: #a78468;
}
.menu_fixed .header__inner .navbar-nav.nav > li > .dropdown-menu.active a {
  color: #fff;
}
.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::before {
  display: none;
}
.collapse.in {
  display: block;
  position: relative;
}
.collapse.in::before {
  display: block;
  content: "";
  position: absolute;
  background-color: #000;
  opacity: 0.6;
  width: 100%;
  height: 1200px;
  top: 0;
  bottom: 0;
  z-index: -1;
}

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

@media screen and (max-width: 1199px) {
  .navbar-header {
    float: none !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;
    padding: 0 14px 15px;
  }
}
@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;
  }
}
@media screen and (max-width: 1199px) {
  .navbar-nav.nav > li {
    border-bottom: 1px solid #ccc;
  }
}
.navbar-nav.nav > li.active > a {
  position: relative;
  text-decoration: none;
  opacity: 1;
  color: #a78468;
}
.navbar-nav.nav > li.active > a::before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  bottom: 0;
  width: 90%;
  height: 2px;
  background-color: #a78468;
}
@media screen and (max-width: 1199px) {
  .navbar-nav.nav > li.active > a::before {
    height: 2px;
    display: none;
  }
}
.navbar-nav.nav > li.menu-item-has-children a {
  position: relative;
  padding-right: 20px;
}
.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;
}
@media screen and (max-width: 1199px) {
  .navbar-nav.nav > li.menu-item-has-children a:hover, .navbar-nav.nav > li.menu-item-has-children a:focus {
    background-color: #efefef;
  }
}
.navbar-nav.nav > li > a {
  position: relative;
  display: block;
  padding: 34px 5px;
  line-height: 1.4;
  height: 100%;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1600px) {
  .navbar-nav.nav > li > a {
    font-size: 14px;
    padding: 34px 5px;
  }
}
@media screen and (max-width: 1300px) {
  .navbar-nav.nav > li > a {
    font-size: 13px;
    padding: 36px 5px;
  }
}
@media screen and (max-width: 1199px) {
  .navbar-nav.nav > li > a {
    font-size: 12px;
  }
}
@media screen and (max-width: 1199px) {
  .navbar-nav.nav > li > a {
    text-align: left;
    font-size: 13px;
    letter-spacing: 2px;
    padding: 11px;
    display: block;
    color: #000;
  }
}
.navbar-nav.nav > li > a:hover, .navbar-nav.nav > li > a:focus {
  text-decoration: none;
  opacity: 1;
  position: relative;
  background: transparent;
  transition-duration: 0s;
}
@media screen and (max-width: 1199px) {
  .navbar-nav.nav > li > a:hover, .navbar-nav.nav > li > a:focus {
    transition-duration: 0.7s;
  }
}
.navbar-nav.nav > li > a:hover::before, .navbar-nav.nav > li > a:focus::before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  bottom: 0;
  width: 96%;
  height: 2px;
  background-color: #a78468;
}
@media screen and (max-width: 1199px) {
  .navbar-nav.nav > li > a:hover::before, .navbar-nav.nav > li > a:focus::before {
    height: 2px;
    display: none;
  }
}
.navbar-nav.nav > li > a .caret::before {
  position: absolute;
  content: "";
  width: 11px;
  height: 6px;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  background-image: url(images/careticon.png);
}
@media screen and (max-width: 1199px) {
  .navbar-nav.nav .heightmenu a {
    padding: 14px 5px;
  }
}

.navbar-nav.nav > .login.active > a::before {
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .navbar-nav.nav > .login.active > a::before {
    height: 2px;
    display: none;
  }
}

.navbar-nav.nav > .login > a {
  padding-left: 3px;
  padding-right: 25px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .navbar-nav.nav > .login > a {
    padding-left: 11px;
    padding-right: 11px;
    width: 180px;
  }
}
.navbar-nav.nav > .login > a:hover::before, .navbar-nav.nav > .login > a:focus::before {
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .navbar-nav.nav > .login > a:hover::before, .navbar-nav.nav > .login > a:focus::before {
    height: 2px;
    display: none;
  }
}
.navbar-nav.nav > .login > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  margin: auto;
  right: 0;
  width: 17px;
  height: 22px;
  background-size: contain;
  background-image: url(images/lock.png);
}
@media screen and (max-width: 1199px) {
  .navbar-nav.nav > .login > a::after {
    right: 30px;
  }
}

@media screen and (max-width: 1199px) {
  .navbar-nav.nav > .g_insta > a {
    position: relative;
    width: 180px;
  }
}
.navbar-nav.nav > .g_insta > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  margin: auto;
  right: 0;
  width: 23px;
  height: 22px;
  background-size: contain;
  background-image: url(images/insta_bt.svg);
}
@media screen and (max-width: 1199px) {
  .navbar-nav.nav > .g_insta > a::after {
    right: 48px;
  }
}

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

/*ドロップダウンメニュー*/
.dropdown-menu {
  box-shadow: none !important;
  background-color: transparent;
  left: 50%;
  right: auto;
  font-family: "Zen Maru Gothic", serif;
  margin: auto;
  top: 100%;
  transform: translate(-50%, 0%);
}
@media screen and (min-width: 1200px) {
  .dropdown-menu {
    display: none;
    position: absolute;
    min-width: 220px;
    border: none;
    margin: 0;
    padding: 0;
  }
}
@media screen and (max-width: 1199px) {
  .dropdown-menu {
    flex-wrap: wrap !important;
    border: none !important;
    position: static !important;
    margin: auto !important;
    padding: 0 !important;
    float: none !important;
    background: #f1f1f1 !important;
    width: 100% !important;
  }
}
@media screen and (max-width: 1199px) {
  .dropdown-menu > li {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .dropdown-menu > li {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .dropdown-menu > li {
    padding: 0;
    text-decoration: none;
    border-bottom: 1px solid #bbb;
  }
}
.dropdown-menu > li > a {
  padding-right: auto !important;
  text-align: left;
  color: #fff !important;
  background-color: #7a9b72;
  font-weight: 700 !important;
}
@media screen and (max-width: 1199px) {
  .dropdown-menu > li > a {
    padding: 8px 11px !important;
    text-decoration: none;
    line-height: 1.5 !important;
    white-space: normal;
    font-size: 13px;
  }
}
@media screen and (min-width: 1200px) {
  .dropdown-menu > li > a {
    padding: 10px 15px !important;
    text-decoration: none;
  }
}
.dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover {
  background-color: #acb130;
  color: #fff;
}
.dropdown-menu > .active > a {
  color: #fff;
  background-color: #acb130;
}
.dropdown-menu > .active > a:hover {
  background-color: #acb130;
  color: #fff;
}

.children_top a {
  border-radius: 10px 10px 0 0;
}
@media screen and (max-width: 1199px) {
  .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) {
  .menu-item-has-children:hover .dropdown-menu {
    display: block;
  }
}

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

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

.side_linkbox {
  background-color: #3f342d;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 1200px) {
  .side_linkbox {
    display: none;
  }
}
.side_linkbox .sidebtn {
  color: #fff;
  text-align: center;
  display: block;
  padding: 10px 5px;
  width: calc(25% - 10px);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 767px) {
  .side_linkbox .sidebtn {
    width: calc(25% - 2px);
    font-size: 12px;
    letter-spacing: 0;
    padding: 8px 5px 5px;
  }
}
.side_linkbox .sidebtn .imgb {
  min-height: 24px;
  margin-bottom: 7px;
  max-height: 24px;
}
.side_linkbox .sidebtn img {
  max-width: 19px;
}
.side_linkbox .sidebtn span {
  display: block;
}
.side_linkbox .side_3 img {
  max-width: 24px;
}
.side_linkbox .side_4 img {
  max-width: 24px;
}

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

  ■トップページ

=====================================*/
.bigcargo {
  position: relative;
  z-index: 1;
}
.bigcargo .cloud {
  position: absolute;
}
@media screen and (max-width: 1300px) {
  .bigcargo .cloud {
    max-width: 180px;
  }
}
@media screen and (max-width: 991px) {
  .bigcargo .cloud {
    display: none;
  }
}
.bigcargo .cloud1 {
  top: -40px;
  left: 21%;
}
.bigcargo .cloud2 {
  top: 2px;
  right: 26%;
  z-index: -1;
}
@media screen and (max-width: 1700px) {
  .bigcargo .cloud2 {
    top: -13px;
  }
}
@media screen and (max-width: 1600px) {
  .bigcargo .cloud2 {
    top: -20px;
  }
}
.bigcargo::before {
  position: absolute;
  content: "";
  width: 100%;
  right: 0;
  left: 0;
  margin: auto;
  height: 3800px;
  top: -300px;
  background-image: url(images/bluegradation.png);
  z-index: -1;
  background-position: center;
}

.f_linkline {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .f_linkline {
    flex-wrap: wrap;
  }
}
.f_linkline .linebox {
  display: block;
  color: #fff;
  width: calc(30% - 20px);
  text-align: center;
  border-radius: 30px;
  padding: 10px;
  position: relative;
}
@media screen and (max-width: 991px) {
  .f_linkline .linebox {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 640px) {
  .f_linkline .linebox {
    width: calc(50% - 6px);
    margin-bottom: 12px;
    padding: 5px;
  }
}
.f_linkline .linebox:hover {
  opacity: 0.8;
  transition: 0.8s;
}
.f_linkline .linebox .chev {
  position: absolute;
  right: 30px;
  bottom: 30px;
}
@media screen and (max-width: 767px) {
  .f_linkline .linebox .chev {
    right: 25px;
    bottom: 25px;
    max-width: 30px;
  }
}
@media screen and (max-width: 480px) {
  .f_linkline .linebox .chev {
    position: static;
    margin-top: 20px;
  }
}
.f_linkline .linebox .dottedline {
  border-radius: 30px;
  padding: 110px 30px;
  border: 2px dotted rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 1300px) {
  .f_linkline .linebox .dottedline {
    padding: 80px 20px;
  }
}
@media screen and (max-width: 767px) {
  .f_linkline .linebox .dottedline {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 480px) {
  .f_linkline .linebox .dottedline {
    padding: 15px 10px;
  }
}
.f_linkline .linebox .dottedline .intitlebox {
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .f_linkline .linebox .dottedline .intitlebox .imgb {
    height: 60px;
  }
}
@media screen and (max-width: 480px) {
  .f_linkline .linebox .dottedline .intitlebox .imgb {
    height: 30px;
  }
}
@media screen and (max-width: 767px) {
  .f_linkline .linebox .dottedline .intitlebox .imgb img {
    max-width: 60px;
  }
}
@media screen and (max-width: 480px) {
  .f_linkline .linebox .dottedline .intitlebox .imgb img {
    max-width: 32px;
  }
}
.f_linkline .linebox .dottedline .intitlebox .intitle {
  height: 80px;
  margin-top: 20px;
  font-size: 34px;
  font-weight: 700;
}
@media screen and (max-width: 1300px) {
  .f_linkline .linebox .dottedline .intitlebox .intitle {
    font-size: 29px;
  }
}
@media screen and (max-width: 767px) {
  .f_linkline .linebox .dottedline .intitlebox .intitle {
    font-size: 23px;
    height: 35px;
  }
}
@media screen and (max-width: 480px) {
  .f_linkline .linebox .dottedline .intitlebox .intitle {
    font-size: 15px;
    margin-top: 10px;
  }
}
.f_linkline .linebox .dottedline .intitlebox .intitle span {
  font-size: 21px;
  margin-top: 10px;
}
@media screen and (max-width: 1300px) {
  .f_linkline .linebox .dottedline .intitlebox .intitle span {
    font-size: 17px;
  }
}
@media screen and (max-width: 767px) {
  .f_linkline .linebox .dottedline .intitlebox .intitle span {
    font-size: 15px;
  }
}
@media screen and (max-width: 480px) {
  .f_linkline .linebox .dottedline .intitlebox .intitle span {
    font-size: 10px;
  }
}
.f_linkline .linebox1 {
  background-color: #7a9b72;
}
.f_linkline .linebox2 {
  background-color: #979b72;
}
.f_linkline .linebox3 {
  display: block;
  background-color: #fff;
  width: calc(40% - 20px);
  border-radius: 30px;
}
@media screen and (max-width: 991px) {
  .f_linkline .linebox3 {
    width: 100%;
    margin-top: 25px;
  }
}
@media screen and (max-width: 640px) {
  .f_linkline .linebox3 {
    margin-top: 0;
  }
}
.f_linkline .linebox3 .timeline {
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 1700px) {
  .f_linkline .linebox3 .timeline {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1300px) {
  .f_linkline .linebox3 .timeline {
    padding: 0 20px;
  }
}
@media screen and (max-width: 991px) {
  .f_linkline .linebox3 .timeline {
    margin-bottom: 20px;
    max-width: 408px;
    margin-right: auto;
    margin-left: auto;
  }
}
.f_linkline .linebox3 .timeline iframe {
  margin: auto;
}
@media screen and (max-width: 1300px) {
  .f_linkline .linebox3 .timeline iframe {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .f_linkline .linebox3 .timeline iframe {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .f_linkline .linebox3 .timeline iframe {
    width: 100%;
  }
}
.f_linkline .linebox3 .intitlebox {
  background-color: #728b9b;
  border-radius: 30px 30px 0 0;
  color: #fff;
  padding: 10px;
}
.f_linkline .linebox3 .intitlebox .dottedline {
  border: 2px dotted rgba(255, 255, 255, 0.5);
  border-radius: 30px 30px 0 0;
}
.f_linkline .linebox3 .intitlebox .dottedline .intitle2 {
  font-size: 30px;
  padding: 15px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 1600px) {
  .f_linkline .linebox3 .intitlebox .dottedline .intitle2 {
    font-size: 26px;
  }
}
@media screen and (max-width: 1300px) {
  .f_linkline .linebox3 .intitlebox .dottedline .intitle2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .f_linkline .linebox3 .intitlebox .dottedline .intitle2 {
    font-size: 19px;
  }
}
@media screen and (max-width: 1700px) {
  .f_linkline .linebox3 .intitlebox .dottedline .intitle2 span {
    display: block;
  }
}

.shadowone {
  position: relative;
  display: block;
  padding: 10px;
  margin-top: 60px;
  margin-bottom: 160px;
  border-radius: 30px;
  color: #fff;
  background-image: url(images/footer_greet.jpg);
  background-size: cover;
}
@media screen and (max-width: 1199px) {
  .shadowone {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 991px) {
  .shadowone {
    background-position: center;
    margin-bottom: 50px;
  }
}
.shadowone:hover {
  color: #fff;
  opacity: 0.8;
}
.shadowone .chev {
  position: absolute;
  right: 30px;
  bottom: 30px;
}
@media screen and (max-width: 767px) {
  .shadowone .chev {
    right: 25px;
    bottom: 25px;
    max-width: 32px;
  }
}
.shadowone .dottedline {
  border-radius: 30px;
  border: 2px dotted rgba(255, 255, 255, 0.5);
  padding: 80px;
}
@media screen and (max-width: 1199px) {
  .shadowone .dottedline {
    padding: 50px;
  }
}
@media screen and (max-width: 767px) {
  .shadowone .dottedline {
    padding: 40px;
  }
}
.shadowone .dottedline .intitle {
  margin-bottom: 20px;
  text-align: center;
  font-size: 34px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .shadowone .dottedline .intitle {
    font-size: 29px;
  }
}
@media screen and (max-width: 480px) {
  .shadowone .dottedline .intitle {
    font-size: 21px;
    letter-spacing: 0;
  }
}
.shadowone .dottedline .intitle span {
  border-bottom: 1px solid;
}

@media screen and (max-width: 767px) {
  .mainflex_box .container {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.mainflex_box .centertext {
  font-size: 18px;
  line-height: 2.1;
}
@media screen and (max-width: 767px) {
  .mainflex_box .centertext {
    font-size: 15px;
    text-align: center;
  }
}
.mainflex_box .centertext p {
  margin-bottom: 20px;
}
.mainflex_box .main_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: auto;
  max-width: 1820px;
  padding: 0 15px;
}
@media screen and (max-width: 991px) {
  .mainflex_box .main_flex {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .mainflex_box .main_flex {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.mainflex_box .main_flex img {
  border-radius: 30px;
}
.mainflex_box .main_flex .textbox {
  text-align: center;
  width: 38%;
  margin: auto;
  margin-top: 150px;
  margin-bottom: 0;
}
@media screen and (max-width: 1700px) {
  .mainflex_box .main_flex .textbox {
    width: 44%;
    margin-top: 90px;
  }
}
@media screen and (max-width: 991px) {
  .mainflex_box .main_flex .textbox {
    width: 100%;
    margin-top: 30px;
  }
}
.mainflex_box .main_flex .textbox .maintitle {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 10px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1700px) {
  .mainflex_box .main_flex .textbox .maintitle {
    font-size: 36px;
  }
}
@media screen and (max-width: 1199px) {
  .mainflex_box .main_flex .textbox .maintitle {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .mainflex_box .main_flex .textbox .maintitle {
    font-size: 24px;
  }
}
.mainflex_box .main_flex .textbox .subtitle {
  font-size: 25px;
  font-weight: 700;
}
@media screen and (max-width: 1700px) {
  .mainflex_box .main_flex .textbox .subtitle {
    font-size: 21px;
  }
}
@media screen and (max-width: 1199px) {
  .mainflex_box .main_flex .textbox .subtitle {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .mainflex_box .main_flex .textbox .subtitle {
    font-size: 16px;
  }
}
.mainflex_box .main_flex .leftside {
  width: 25%;
}
.mainflex_box .main_flex .rightside {
  text-align: right;
  width: 22%;
}
.mainflex_box .main_flex .rightside .img2 {
  margin-top: 50px;
}

.aboutcontainer {
  position: relative;
  padding-top: 255px;
  padding-right: 15px;
  padding-left: 15px;
  z-index: 0;
  margin-top: 120px;
  padding-bottom: 120px;
  background-image: url(images/cover_bg.png);
  background-position: bottom;
}
@media screen and (max-width: 1600px) {
  .aboutcontainer {
    background-size: cover;
    padding-top: 200px;
  }
}
@media screen and (max-width: 991px) {
  .aboutcontainer {
    padding-top: 100px;
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .aboutcontainer {
    padding-bottom: 80px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 480px) {
  .aboutcontainer {
    padding-top: 80px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .aboutcontainer .container {
    padding-left: 0;
    padding-right: 0;
  }
}
.aboutcontainer .floatimg1 {
  position: absolute;
  max-width: 210px;
  top: 0;
  left: 100px;
  z-index: -1;
}
@media screen and (max-width: 1600px) {
  .aboutcontainer .floatimg1 {
    max-width: 180px;
    left: 20px;
  }
}
@media screen and (max-width: 991px) {
  .aboutcontainer .floatimg1 {
    max-width: 120px;
    left: 20px;
  }
}
@media screen and (max-width: 480px) {
  .aboutcontainer .floatimg1 {
    max-width: 90px;
    top: 20px;
  }
}
.aboutcontainer .floatimg2 {
  position: absolute;
  max-width: 640px;
  top: 110px;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 1600px) {
  .aboutcontainer .floatimg2 {
    right: 20px;
    max-width: 420px;
  }
}
@media screen and (max-width: 991px) {
  .aboutcontainer .floatimg2 {
    max-width: 300px;
    top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .aboutcontainer .floatimg2 {
    max-width: 270px;
    top: 0px;
  }
}
@media screen and (max-width: 480px) {
  .aboutcontainer .floatimg2 {
    right: 5px;
    max-width: 170px;
    top: 45px;
  }
}

.bigimg_flex {
  display: flex;
  width: 100%;
  max-width: 1520px;
  margin: auto;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .bigimg_flex {
    flex-wrap: wrap;
  }
}
.bigimg_flex .block1 {
  width: calc(33% - 25px);
  margin-bottom: 50px;
}
@media screen and (max-width: 1600px) {
  .bigimg_flex .block1 {
    width: calc(33% - 15px);
  }
}
@media screen and (max-width: 1199px) {
  .bigimg_flex .block1 {
    width: calc(33% - 10px);
  }
}
@media screen and (max-width: 767px) {
  .bigimg_flex .block1 {
    width: 100%;
    margin-bottom: 40px;
    max-width: 410px;
    margin-right: auto;
    margin-left: auto;
  }
}
.bigimg_flex .block1 .imgb {
  text-align: center;
}
.bigimg_flex .block1 .imgb img {
  border-radius: 240px;
  max-width: 90%;
}
@media screen and (max-width: 767px) {
  .bigimg_flex .block1 .imgb img {
    max-width: 240px;
  }
}
@media screen and (max-width: 480px) {
  .bigimg_flex .block1 .imgb img {
    max-width: 210px;
  }
}
.bigimg_flex .block1 .titleb {
  font-weight: 700;
  font-size: 30px;
  margin: 30px 0;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .bigimg_flex .block1 .titleb {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .bigimg_flex .block1 .titleb {
    margin: 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .bigimg_flex .block1 .button_block {
    margin-top: 24px;
  }
}

.fukurouline {
  text-align: right;
  border-bottom: 2px solid #fff;
}

.flex_four {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex_four .inblock {
  display: block;
  margin-top: 60px;
  width: calc(50% - 15px);
}
@media screen and (max-width: 767px) {
  .flex_four .inblock {
    width: 100%;
    margin-top: 40px;
  }
}
.flex_four .inblock .inflex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1600px) {
  .flex_four .inblock .inflex {
    align-items: normal;
  }
}
.flex_four .inblock .inflex .textb {
  width: 78%;
}
@media screen and (max-width: 1199px) {
  .flex_four .inblock .inflex .textb {
    width: 65%;
  }
}
@media screen and (max-width: 480px) {
  .flex_four .inblock .inflex .textb {
    width: 80%;
  }
}
.flex_four .inblock .inflex .textb .intitle {
  font-size: 28px;
  font-weight: 700;
  color: #3f342d;
  padding-left: 30px;
  margin-bottom: 20px;
  position: relative;
  line-height: 1.3;
}
@media screen and (max-width: 1600px) {
  .flex_four .inblock .inflex .textb .intitle {
    font-size: 23px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .flex_four .inblock .inflex .textb .intitle {
    font-size: 19px;
  }
}
.flex_four .inblock .inflex .textb .intitle::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #7a9b72;
}
@media screen and (max-width: 767px) {
  .flex_four .inblock .inflex .textb .intitle::before {
    top: 7px;
  }
}
.flex_four .inblock .inflex .imgb {
  width: 20%;
  margin-right: 30px;
}
@media screen and (max-width: 1199px) {
  .flex_four .inblock .inflex .imgb {
    width: 35%;
  }
}
@media screen and (max-width: 480px) {
  .flex_four .inblock .inflex .imgb {
    width: 37%;
    margin-right: 22px;
  }
}
.flex_four .inblock .inflex .imgb img {
  border-radius: 30px;
}
@media screen and (max-width: 480px) {
  .flex_four .inblock .inflex .imgb img {
    border-radius: 17px;
  }
}

@keyframes horizontal-animation {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.floattextbox {
  margin: 80px 0 0px;
  animation: horizontal-animation 45s linear infinite;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .floattextbox {
    margin: 50px 0 0px;
  }
}
@media screen and (max-width: 767px) {
  .floattextbox {
    animation: horizontal-animation 20s linear infinite;
    margin: 20px 0 0px;
  }
}
.floattextbox img {
  margin-right: 20px;
  margin-left: 20px;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .floattextbox img {
    max-width: 55%;
    margin-right: 10px;
    margin-left: 10px;
  }
}
.floattextbox .img2 {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .floattextbox .img2 {
    margin-top: 40px;
  }
}

.floatinline {
  margin-top: 80px;
}
@media screen and (max-width: 1199px) {
  .floatinline {
    margin: 50px 0 0px;
  }
}
.floatinline .floattextbox {
  margin-top: 0 !important;
}

.titlebox {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .titlebox {
    margin-bottom: 40px;
  }
}
.titlebox .maintitle {
  color: #504434;
  font-size: 48px;
  font-family: "Zen Maru Gothic", serif;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (max-width: 1199px) {
  .titlebox .maintitle {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1056px) {
  .titlebox .maintitle {
    font-size: 36px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .titlebox .maintitle {
    font-size: 30px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .titlebox .maintitle {
    font-size: 28px;
  }
}
.titlebox .maintitle span {
  margin: 10px 0;
}
.titlebox .maintitle img {
  margin-bottom: 10px;
}
@media screen and (max-width: 1056px) {
  .titlebox .maintitle img {
    max-width: 48px;
  }
}
@media screen and (max-width: 480px) {
  .titlebox .maintitle img {
    display: none;
  }
}
.titlebox .maintitle .rightmark {
  margin-right: 5px;
}
.titlebox .maintitle .leftmark {
  margin-left: -10px;
}
.titlebox .maintitle2 {
  font-size: 44px;
}
@media screen and (max-width: 1199px) {
  .titlebox .maintitle2 {
    font-size: 38px;
  }
}
@media screen and (max-width: 1056px) {
  .titlebox .maintitle2 {
    font-size: 34px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .titlebox .maintitle2 {
    font-size: 28px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .titlebox .maintitle2 {
    font-size: 25px;
  }
}
.titlebox .subtitle {
  font-size: 21px;
  color: #7a9b72;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  margin-top: 10px;
}
@media screen and (max-width: 480px) {
  .titlebox .subtitle {
    font-size: 13px;
  }
}
@media screen and (max-width: 480px) {
  .titlebox {
    display: block;
  }
}

.k_titlebox {
  margin-bottom: 60px;
}
@media screen and (max-width: 1199px) {
  .k_titlebox {
    margin-bottom: 40px;
  }
}
.k_titlebox .maintitle {
  position: relative;
  font-size: 40px;
  padding-top: 30px;
}
@media screen and (max-width: 1199px) {
  .k_titlebox .maintitle {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 1056px) {
  .k_titlebox .maintitle {
    font-size: 32px;
    margin-bottom: 0;
    padding-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .k_titlebox .maintitle {
    font-size: 28px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .k_titlebox .maintitle {
    font-size: 24px;
  }
}
.k_titlebox .maintitle::before {
  content: "";
  position: absolute;
  background-color: #7a9b72;
  width: 80px;
  height: 8px;
  right: 0;
  left: 0;
  margin: auto;
  top: 0;
  border-radius: 6px;
}
@media screen and (max-width: 767px) {
  .k_titlebox .maintitle::before {
    height: 4px;
  }
}

.footer_bigblockin {
  position: relative;
  background: #dce9d3;
  z-index: 1;
}
.footer_bigblockin::before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  background-color: #d3ddc8;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 100px 100px 0 0;
}
@media screen and (max-width: 1199px) {
  .footer_bigblockin::before {
    border-radius: 60px 60px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .footer_bigblockin::before {
    border-radius: 30px 30px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .footer_bigblockin .container {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.footer_bigblockin .whitebg .inflex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .footer_bigblockin .whitebg .inflex {
    display: block;
  }
}
.footer_bigblockin .whitebg .inflex .side1 {
  width: calc(33% - 12px);
}
@media screen and (max-width: 991px) {
  .footer_bigblockin .whitebg .inflex .side1 {
    width: 100%;
    text-align: center;
  }
}
.footer_bigblockin .whitebg .inflex .side1 .logoline {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 1700px) {
  .footer_bigblockin .whitebg .inflex .side1 .logoline {
    margin-bottom: 20px;
    display: block;
  }
}
.footer_bigblockin .whitebg .inflex .side1 .langbtn {
  margin-left: 30px;
}
@media screen and (max-width: 1700px) {
  .footer_bigblockin .whitebg .inflex .side1 .langbtn {
    margin-left: 0;
    margin-top: 20px;
  }
}
@media screen and (max-width: 991px) {
  .footer_bigblockin .whitebg .inflex .side1 .langbtn {
    margin-right: auto;
    margin-left: auto;
  }
}
.footer_bigblockin .whitebg .inflex .side1 .langbtn .gt_switcher {
  width: 214px !important;
}
@media screen and (max-width: 991px) {
  .footer_bigblockin .whitebg .inflex .side1 .langbtn .gt_switcher {
    margin-right: auto;
    margin-left: auto;
    width: 209px !important;
  }
}
.footer_bigblockin .whitebg .inflex .side1 .langbtn .gt_switcher a {
  font-size: 11pt !important;
}
.footer_bigblockin .whitebg .inflex .side1 .langbtn .gt_switcher .gt_option {
  width: 212px !important;
  height: 130px;
}
@media screen and (max-width: 991px) {
  .footer_bigblockin .whitebg .inflex .side1 .langbtn .gt_switcher .gt_option {
    right: 0;
    left: 0;
    margin: auto;
    width: 207px !important;
  }
}
.footer_bigblockin .whitebg .inflex .side1 .langbtn .gt_switcher .gt_selected {
  width: 213px;
}
@media screen and (max-width: 991px) {
  .footer_bigblockin .whitebg .inflex .side1 .langbtn .gt_switcher .gt_selected {
    width: 208px;
  }
}
.footer_bigblockin .whitebg .inflex .side1 .langbtn .gt_switcher .gt_selected a {
  width: 174px !important;
}
@media screen and (max-width: 991px) {
  .footer_bigblockin .whitebg .inflex .side1 .langbtn .gt_switcher .gt_selected a {
    width: 197px !important;
  }
}
@media screen and (max-width: 991px) {
  .footer_bigblockin .whitebg .inflex .side1 .langbtn .gt_switcher .gt_selected a::after {
    right: 4px !important;
  }
}
.footer_bigblockin .whitebg .inflex .side1 .logob {
  display: block;
  max-width: 200px;
}
@media screen and (max-width: 991px) {
  .footer_bigblockin .whitebg .inflex .side1 .logob {
    margin: auto;
    margin-bottom: 20px;
  }
}
.footer_bigblockin .whitebg .inflex .side1 .maintitle {
  color: #3f342d;
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 14px;
}
@media screen and (max-width: 1300px) {
  .footer_bigblockin .whitebg .inflex .side1 .maintitle {
    font-size: 18px;
  }
}
.footer_bigblockin .whitebg .inflex .side1 .txt1 {
  font-weight: 600;
}
.footer_bigblockin .whitebg .inflex .side1 .inflex2 {
  display: flex;
  margin-top: 40px;
  align-items: center;
}
@media screen and (max-width: 1300px) {
  .footer_bigblockin .whitebg .inflex .side1 .inflex2 {
    display: block;
    margin-top: 30px;
    margin-bottom: 15px;
  }
}
.footer_bigblockin .whitebg .inflex .side1 .inflex2 .insta {
  display: block;
  margin-right: 20px;
}
@media screen and (max-width: 1300px) {
  .footer_bigblockin .whitebg .inflex .side1 .inflex2 .insta {
    display: inline;
    margin-right: 10px;
  }
}
.footer_bigblockin .whitebg .inflex .side1 .button_block {
  font-size: 16px;
  background-color: #87643e;
  border: 1px solid #87643e;
  max-width: 200px;
  color: #fff;
  border-radius: 6px;
  padding: 14px 10px;
  padding-left: 15px;
  line-height: 1;
  text-align: center;
  margin-top: 0px;
  font-weight: 700;
  margin-left: 0;
  margin-right: 40px;
}
@media screen and (max-width: 1199px) {
  .footer_bigblockin .whitebg .inflex .side1 .button_block {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 991px) {
  .footer_bigblockin .whitebg .inflex .side1 .button_block {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer_bigblockin .whitebg .inflex .side1 .button_block {
    font-size: 14px;
  }
}
.footer_bigblockin .whitebg .inflex .side1 .button_block span {
  position: relative;
  padding-left: 20px;
}
.footer_bigblockin .whitebg .inflex .side1 .button_block span img {
  right: auto;
  left: 0px;
}
.footer_bigblockin .whitebg .inflex .side1 .button_block span .icon1 {
  transition: 0.8s;
  opacity: 1;
}
.footer_bigblockin .whitebg .inflex .side1 .button_block span .icon2 {
  opacity: 0;
  transition: 0.8s;
}
.footer_bigblockin .whitebg .inflex .side1 .button_block:hover {
  background-color: #fff;
  color: #87643e;
}
.footer_bigblockin .whitebg .inflex .side1 .button_block:hover span .icon1 {
  transition: 0.8s;
  opacity: 0;
}
.footer_bigblockin .whitebg .inflex .side1 .button_block:hover span .icon2 {
  transition: 0.8s;
  opacity: 1;
}
.footer_bigblockin .whitebg .inflex .blueside {
  width: calc(31% - 5px);
}
@media screen and (max-width: 1600px) {
  .footer_bigblockin .whitebg .inflex .blueside {
    width: calc(32% - 12px);
  }
}
@media screen and (max-width: 1300px) {
  .footer_bigblockin .whitebg .inflex .blueside {
    width: calc(36% - 6px);
    padding: 0 20px;
  }
}
@media screen and (max-width: 1199px) {
  .footer_bigblockin .whitebg .inflex .blueside {
    width: calc(44% - 6px);
    padding: 0 15px;
  }
}
@media screen and (max-width: 991px) {
  .footer_bigblockin .whitebg .inflex .blueside {
    width: 100%;
    padding: 0;
    margin: 20px auto;
    max-width: 320px;
  }
}
.footer_bigblockin .whitebg .inflex .blueside .maintitle {
  color: #59c2e2;
}
.footer_bigblockin .whitebg .inflex .blueside .button_block {
  border: 2px solid #59c2e2;
}
.footer_bigblockin .whitebg .inflex .blueside .button_block:hover {
  background-color: #59c2e2;
  color: #fff;
}
.footer_bigblockin .whitebg .inflex .side2 {
  width: calc(31% - 12px);
}
@media screen and (max-width: 1600px) {
  .footer_bigblockin .whitebg .inflex .side2 {
    width: calc(31% - 12px);
  }
}
@media screen and (max-width: 1300px) {
  .footer_bigblockin .whitebg .inflex .side2 {
    width: calc(22.5% - 12px);
  }
}
@media screen and (max-width: 1199px) {
  .footer_bigblockin .whitebg .inflex .side2 {
    width: calc(25% - 12px);
  }
}
@media screen and (max-width: 991px) {
  .footer_bigblockin .whitebg .inflex .side2 {
    width: 100%;
  }
}
@media screen and (max-width: 1300px) {
  .footer_bigblockin .whitebg .inflex .side2 .inflex {
    display: block;
  }
}
.footer_bigblockin .whitebg .inflex .side2 .button_block {
  font-size: 16px;
  margin-right: 0;
  padding: 15px 20px;
  font-weight: 600;
  margin-top: 0;
  width: 100%;
  max-width: 210px;
}
.footer_bigblockin .whitebg .inflex .side2 .button_block:hover {
  background-color: #fff;
  color: #7a9b72;
}
@media screen and (max-width: 991px) {
  .footer_bigblockin .whitebg .inflex .side2 .button_block {
    margin-right: auto;
    margin-left: auto;
  }
}
.footer_bigblockin .whitebg .inflex .side2 .buttonred {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  margin-left: 14px;
  padding-right: 0;
  padding-left: 0;
  text-align: center;
  border: 2px solid #bb262e;
  background-color: #bb262e;
}
@media screen and (max-width: 1300px) {
  .footer_bigblockin .whitebg .inflex .side2 .buttonred {
    margin-top: 20px;
  }
}
@media screen and (max-width: 991px) {
  .footer_bigblockin .whitebg .inflex .side2 .buttonred {
    margin-right: auto;
    margin-left: auto;
  }
}
.footer_bigblockin .whitebg .inflex .side2 .buttonred .el_img {
  width: 100%;
  max-width: 20px;
  margin: 0 5px 0 0;
  font-size: 0;
}
.footer_bigblockin .whitebg .inflex .side2 .buttonred:hover {
  background-color: #fff;
  border: 2px solid #bb262e;
  color: #bb262e;
}
.footer_bigblockin .whitebg .inflex .side2 .buttonred:hover .el_img svg path {
  fill: #bb262e;
  transition: fill 0.3s ease;
}

.footer_bigblockin2 {
  background-color: #f6f5f1;
}
.otherlink {
  display: block;
  margin-top: 80px;
  text-align: right;
}
@media screen and (max-width: 991px) {
  .otherlink {
    text-align: center;
    margin-top: 30px;
  }
}
.otherlink img {
  margin-bottom: 10px;
}
@media screen and (max-width: 991px) {
  .otherlink img {
    margin-bottom: 10px;
  }
}

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

.c_class {
  padding: 120px 0 70px;
}
@media screen and (max-width: 767px) {
  .c_class {
    padding: 60px 0 70px;
  }
}

.c_greet {
  padding: 130px 0 85px;
}
@media screen and (max-width: 1199px) {
  .c_greet {
    padding: 50px 0 85px;
  }
}
@media screen and (max-width: 991px) {
  .c_greet {
    padding: 30px 0 85px;
  }
}
@media screen and (max-width: 767px) {
  .c_greet {
    padding: 40px 0 60px;
  }
}
@media screen and (max-width: 767px) {
  .c_greet .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.c_greet .button_block {
  z-index: 5;
  position: relative;
}
@media screen and (max-width: 991px) {
  .c_greet .button_block {
    margin-top: 0;
  }
}

.shorttitle {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 1199px) {
  .shorttitle {
    font-size: 27px;
  }
}
@media screen and (max-width: 767px) {
  .shorttitle {
    font-size: 21px;
    margin-bottom: 20px;
  }
}

.shorttitle2 {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .shorttitle2 {
    align-items: baseline;
    line-height: 1.4;
  }
}
.shorttitle2 .incircle {
  color: #2e9648;
  font-size: 16px;
  display: block;
  padding-right: 5px;
}

.intable {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .intable {
    font-size: 14px;
  }
}
.intable th {
  padding: 15px 10px 15px 0;
  width: 15%;
  border-bottom: 1px solid #d4d0c3;
}
@media screen and (max-width: 767px) {
  .intable th {
    display: block;
    width: 100%;
  }
}
.intable td {
  padding: 15px 10px 15px 0;
  width: 85%;
  border-bottom: 1px solid #d4d0c3;
}
@media screen and (max-width: 767px) {
  .intable td {
    display: block;
    width: 100%;
  }
}

.sand {
  font-family: "Quicksand", sans-serif;
}

.faq_box .faq_inbox {
  border-radius: 16px;
  margin-bottom: 30px;
  padding: 30px 35px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .faq_box .faq_inbox {
    padding: 20px 20px;
    margin-bottom: 20px;
  }
}
.faq_box .faq_inbox .intitle {
  font-size: 24px;
  font-weight: 700;
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .faq_box .faq_inbox .intitle {
    font-size: 18px;
    align-items: flex-start;
    padding-right: 20px;
    padding-left: 30px;
    text-indent: -30px;
  }
}
.faq_box .faq_inbox .intitle .sand {
  color: #e77e84;
}
.faq_box .faq_inbox .intitle .el_icon {
  position: absolute;
  top: 45%;
  right: 0;
  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: 767px) {
  .faq_box .faq_inbox .intitle .el_icon {
    transition: 0.3s;
    top: 45%;
  }
  .faq_box .faq_inbox .intitle .el_icon:hover {
    opacity: 0.7;
  }
}
.faq_box .faq_inbox .intitle .el_icon::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 20px;
  top: -8.7px;
  right: 9px;
  background-color: #504434;
}
.faq_box .faq_inbox .intitle.active .el_icon {
  transform: scaleY(1);
}
.faq_box .faq_inbox .intitle.active .el_icon::before {
  opacity: 0;
  transition: 0.4s;
}
.faq_box .faq_inbox .intitle .sand {
  margin-right: 10px;
  font-size: 28px;
}
@media screen and (max-width: 767px) {
  .faq_box .faq_inbox .intitle .sand {
    font-size: 20px;
  }
}
.faq_box .faq_inbox .qa_bottom {
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.1s ease-in-out;
}
@media screen and (max-width: 767px) {
  .faq_box .faq_inbox .qa_bottom {
    align-items: flex-start;
  }
}
.faq_box .faq_inbox .qa_bottom .txt {
  font-weight: 500;
  font-size: 18px;
  padding-left: 36px;
  text-indent: -36px;
}
@media screen and (max-width: 767px) {
  .faq_box .faq_inbox .qa_bottom .txt {
    font-size: 15px;
    padding-left: 30px;
    text-indent: -30px;
  }
}
.faq_box .faq_inbox .qa_bottom .txt .sand {
  margin-right: 10px;
  font-size: 28px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .faq_box .faq_inbox .qa_bottom .txt .sand {
    font-size: 20px;
  }
}
.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: #ffd4d4;
  border-radius: 50%;
  position: absolute;
  top: 13px;
  left: 10px;
}
.faq_box .faq_inbox .qa_bottom .in:after {
  content: "";
  width: 3px;
  height: 100%;
  background-color: #ffd4d4;
  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;
  margin-top: 10px;
  opacity: 1;
  visibility: visible;
  transition: 0.1s ease-in-out;
}

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

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

.staffoneWrap2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.staffoneInner {
  margin: 0 10px;
  border-radius: 7px;
  display: block;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .staffoneInner {
    margin: 0 10px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .staffoneInner {
    margin: 0 5px;
    margin-top: 0px;
  }
}
.staffoneInner .txt {
  line-height: 1.5;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.staffoneInner .imgb {
  margin-bottom: 15px;
  text-align: center;
  overflow: hidden;
}
.staffoneInner .imgb img {
  display: inline-block;
  max-width: 100%;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .staffoneInner .imgb img {
    border-radius: 16px;
  }
}

.button_block {
  display: block;
  width: 100%;
  max-width: 300px;
  margin-right: auto;
  margin-left: auto;
  background-color: #7a9b72;
  position: relative;
  border: 2px solid #7a9b72;
  border-radius: 40px;
  font-size: 18px;
  line-height: 1;
  padding: 21px 20px;
  padding-left: 30px;
  font-weight: 600;
  color: #fff;
  margin-top: 40px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .button_block {
    font-size: 15px;
    max-width: 220px;
  }
}
.button_block img {
  top: 0;
  bottom: 0;
  margin: auto;
  right: 15px;
  position: absolute;
  max-width: 40px;
}
.button_block:hover {
  color: #7a9b72;
  background-color: #fff;
}
.button_block:hover img {
  opacity: 1;
}

.season_button {
  margin-left: 0;
}
@media screen and (max-width: 991px) {
  .season_button {
    margin-left: auto;
  }
}

.footbtn {
  display: flex;
  width: 100%;
  max-width: 870px;
  margin: auto;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footbtn {
    display: block;
    margin-top: 30px;
  }
}
.footbtn .button_block {
  width: calc(50% - 12px);
  max-width: none;
  border-radius: 40px;
  padding: 30px 15px;
  text-align: center;
  font-weight: 600;
  border: 2px solid #bb262e;
  background-color: #bb262e;
}
@media screen and (max-width: 767px) {
  .footbtn .button_block {
    width: 100%;
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 20px;
    font-weight: 600;
  }
}
.footbtn .button_block span {
  padding-left: 15px;
  position: relative;
}
.footbtn .button_block span img {
  top: 0;
  bottom: 0;
  margin: auto;
  left: -15px;
  right: auto;
  position: absolute;
  max-width: 40px;
}
.footbtn .button_block span .mail1 {
  transition: 0.8s;
  opacity: 1;
}
.footbtn .button_block span .mail2 {
  opacity: 0;
  transition: 0.8s;
}
.footbtn .button_block:hover {
  color: #bb262e;
  background-color: #fff;
}
.footbtn .button_block:hover span .mail1 {
  transition: 0.8s;
  opacity: 0;
}
.footbtn .button_block:hover span .mail2 {
  opacity: 1;
  transition: 0.8s;
}
.footbtn .button_block_t {
  background-color: #fff;
  border-color: #fff;
  padding: 13px 15px;
  color: #3f342d;
  cursor: pointer;
}
.footbtn .button_block_t:hover {
  color: #3f342d;
  opacity: 0.8;
  transition: 0.8s;
}
.footbtn .button_block_t .span1 {
  font-size: 29px;
  font-weight: 700;
  padding-bottom: 5px;
}
.footbtn .button_block_t .span2 {
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
  font-size: 14px;
  display: block;
  margin-top: 10px;
  font-weight: 500;
  padding-left: 0;
}

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

.c_contact {
  width: 100%;
  position: relative;
}
.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 .rightside img {
  max-width: 417px;
  width: 100%;
}
.c_contact .straightbox {
  display: flex;
  align-items: baseline;
  margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
  .c_contact .straightbox {
    display: block;
  }
}
.c_contact .straightbox .maintitle {
  color: #fff;
  font-size: 46px;
}
@media screen and (max-width: 767px) {
  .c_contact .straightbox .maintitle {
    font-size: 34px;
  }
}
.c_contact .straightbox .subtitle {
  color: #fff;
  margin-left: 20px;
  font-size: 15px;
}
@media screen and (max-width: 991px) {
  .c_contact .straightbox .subtitle {
    margin-left: 0;
  }
}
.c_contact .intext {
  color: #fff;
  letter-spacing: 0.05em;
}

.c_titlediv {
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .c_titlediv {
    text-align: center;
    display: block;
  }
}
.c_titlediv .leftside {
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .c_titlediv .leftside img {
    max-width: 270px;
  }
}
.c_titlediv .centerside {
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .c_titlediv .centerside img {
    max-width: 270px;
  }
}
@media screen and (max-width: 480px) {
  .c_titlediv .rightside img {
    max-width: 200px;
  }
}

.titlestraight {
  writing-mode: vertical-rl;
  text-align: left;
  margin-right: 30px;
}
@media screen and (max-width: 1199px) {
  .titlestraight {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .titlestraight {
    text-align: center;
    margin-right: 0;
    writing-mode: horizontal-tb;
  }
}

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

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

.service_flex_k {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .service_flex_k {
    display: block;
  }
}
.service_flex_k .block1 {
  width: calc(33% - 12px);
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 1px 0px 16px -3px rgba(121, 184, 222, 0.22);
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .service_flex_k .block1 {
    padding: 20px 15px;
  }
}
@media screen and (max-width: 991px) {
  .service_flex_k .block1 {
    padding: 20px 12px;
    width: calc(33% - 5px);
  }
}
@media screen and (max-width: 767px) {
  .service_flex_k .block1 {
    padding: 15px;
    width: calc(33% - 6px);
  }
}
@media screen and (max-width: 480px) {
  .service_flex_k .block1 {
    width: 100%;
    margin-top: 20px;
    padding: 20px;
  }
}
.service_flex_k .block1 .titleone {
  line-height: 1.3;
  font-size: 26px;
  color: #1d3966;
}
@media screen and (max-width: 991px) {
  .service_flex_k .block1 .titleone {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .service_flex_k .block1 .titleone {
    margin-bottom: 10px;
    line-height: 1.3;
  }
}
.service_flex_k .block1 .txt {
  font-size: 14px;
  letter-spacing: -2px;
}
@media screen and (max-width: 991px) {
  .service_flex_k .block1 .txt {
    font-size: 13px;
    letter-spacing: -2px;
  }
}
@media screen and (max-width: 767px) {
  .service_flex_k .block1 .txt {
    font-size: 14px;
    letter-spacing: 0px;
  }
}
@media screen and (max-width: 480px) {
  .service_flex_k .block1 .txt {
    text-align: left;
  }
}

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

/*タブのスタイル*/
.categoryrow {
  display: block;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .categoryrow {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-bottom: 30px;
  }
}

.sortBtn {
  display: block;
  width: 100%;
  cursor: pointer;
  padding: 3px 10px;
  position: relative;
  font-size: 15px;
  text-align: center;
  border: 1px solid #ccc;
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  float: left;
  margin: 0 0 10px;
  border-radius: 20px;
  text-align: center;
  font-weight: bold;
  background-color: #fff;
  transition: all 0.2s ease;
  white-space: nowrap;
  overflow: hidden; /* 溢れた部分を隠す */
  text-overflow: ellipsis; /* 「…」と省略 */
  -webkit-text-overflow: ellipsis; /* Safari用 */
  -o-text-overflow: ellipsis; /* Opera用 */
}
@media screen and (min-width: 768px) {
  .sortBtn {
    max-width: calc(50% - 10px);
    margin: 0 5px 10px;
  }
}
@media screen and (min-width: 1057px) {
  .sortBtn {
    max-width: 100px;
    margin: 0 5px 10px;
  }
}
@media screen and (min-width: 1301px) {
  .sortBtn {
    max-width: 150px;
    margin: 0 5px 10px;
  }
}
.sortBtn > span {
  display: inline;
}
.sortBtn:hover {
  transition-duration: 0.7s;
  color: #fff;
  position: relative;
  z-index: 1;
  background-color: #7a9b72;
}
.sortBtn.on {
  position: relative;
  color: #fff;
  background-color: #7a9b72;
}
.sortBtn.active {
  background-color: #7a9b72;
  color: #fff;
}

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

.normaltab {
  padding: 0px 0 0;
}
@media screen and (max-width: 767px) {
  .normaltab {
    padding: 0px 0 0;
    margin-top: 50px;
  }
}

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

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

.k_subtitle {
  font-size: 28px;
  font-weight: 700;
  color: #3f342d;
  margin-bottom: 30px;
  line-height: 1;
  padding-left: 25px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .k_subtitle {
    padding-left: 25px;
    font-size: 21px;
  }
}
.k_subtitle::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  z-index: 2;
  top: 10px;
  left: 0;
  border-radius: 50%;
  background-color: #7a9b72;
}
@media screen and (max-width: 767px) {
  .k_subtitle::before {
    top: 6px;
  }
}

.k_subtitlean {
  margin-bottom: 0;
}

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

.attention {
  color: #d14124;
}

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

.box_text {
  background-color: #fff;
  border: 10px solid #d3e3ef;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .box_text {
    padding: 25px;
  }
}
@media screen and (max-width: 767px) {
  .box_text .normaltext {
    text-align: left;
  }
}
.box_text .nametext {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 700;
}
.box_text .text {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.6;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 1199px) {
  .box_text .text {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .box_text .text {
    font-size: 18px;
    text-align: left;
  }
}
.box_text ul {
  width: 100%;
  margin: auto;
}
.box_text ul li {
  font-size: 20px;
  border-bottom: 1px solid;
  font-weight: 700;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .box_text ul li {
    padding-left: 32px;
    text-indent: -34px;
    font-size: 17px;
  }
}
.box_text ul li span {
  font-size: 24px;
  color: #1d3966;
  margin-right: 10px;
}
.box_text ul .li_2 {
  font-weight: 400;
  font-size: 16px;
  margin-top: 0;
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .box_text ul .li_2 {
    padding-left: 0px;
    text-indent: 0px;
    font-size: 14px;
  }
}
.box_text ul .litop {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .box_text ul .li_new {
    padding-bottom: 16px;
    margin-bottom: 16px;
    margin-top: 30px;
    line-height: 1.2;
  }
}
@media screen and (max-width: 767px) {
  .box_text ul .li_new span {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .box_text ul .li_new_2 {
    margin-top: 0;
  }
}

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

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

.category_block {
  margin-bottom: 40px;
}

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

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

.serviceblock1_1::before {
  display: none;
}

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

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

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

.menubox {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1040px;
}
@media screen and (max-width: 1056px) {
  .menubox {
    max-width: 700px;
  }
}
@media screen and (max-width: 767px) {
  .menubox {
    max-width: 480px;
  }
}
@media screen and (max-width: 480px) {
  .menubox {
    max-width: none;
    padding-right: 14px;
    padding-left: 14px;
  }
}
.menubox .menu {
  margin-right: 26px;
}
@media screen and (max-width: 1056px) {
  .menubox .menu {
    margin: 10px 10px;
  }
}
@media screen and (max-width: 767px) {
  .menubox .menu {
    max-width: 220px;
  }
}
@media screen and (max-width: 480px) {
  .menubox .menu {
    max-width: none;
    margin: auto !important;
    margin-bottom: 10px !important;
    text-align: center;
  }
}
.menubox .menu1 {
  margin-bottom: 20px;
}
@media screen and (max-width: 1056px) {
  .menubox .menu1 {
    margin: 10px 10px;
  }
}
.menubox .menu2 {
  margin-bottom: 20px;
}
@media screen and (max-width: 1056px) {
  .menubox .menu2 {
    margin: 10px 10px;
  }
}
.menubox .menu3 {
  margin-right: 0;
  margin-bottom: 20px;
}
@media screen and (max-width: 1056px) {
  .menubox .menu3 {
    margin: 10px 10px;
  }
}
@media screen and (max-width: 1056px) {
  .menubox .menu3_2 {
    margin-right: auto;
    margin-left: auto;
  }
}
.menubox .menu4 {
  margin-right: 10px;
  margin-left: auto;
}
@media screen and (max-width: 1056px) {
  .menubox .menu4 {
    margin-right: auto;
    margin-left: auto;
  }
}
.menubox .menu5 {
  margin-right: auto;
  margin-left: 10px;
}
@media screen and (max-width: 1056px) {
  .menubox .menu5 {
    margin-right: auto;
    margin-left: auto;
  }
}
.menubox .menu6 {
  margin-right: 0;
}
@media screen and (max-width: 1056px) {
  .menubox .menu6 {
    margin: 10px 10px;
  }
}

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

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

.greeting_img {
  margin: 0px;
  margin-right: calc(2% - 90vw);
  margin-left: 60px;
}
@media screen and (max-width: 1199px) {
  .greeting_img {
    margin-left: 0px;
    margin-right: calc(2% - 25vw);
  }
}
@media screen and (max-width: 767px) {
  .greeting_img {
    margin: auto;
    margin-bottom: 20px;
  }
}

.topservicerow {
  padding-top: 60px;
  padding-bottom: 70px;
  position: relative;
  z-index: auto;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .topservicerow {
    display: block;
  }
}
.topservicerow::before {
  content: "";
  background-color: #fff;
  height: 100%;
  width: 1300px;
  top: 0;
  right: 0;
  position: absolute;
  z-index: -1;
  border-radius: 30px 0 0 30px;
}
.topservicerow .container {
  position: relative;
}
.topservicerow .sideimg {
  margin-right: 70px;
  /* margin-left: auto; */
  margin-left: calc(2% - 6vw - 70px);
}
@media screen and (max-width: 991px) {
  .topservicerow .sideimg {
    margin-right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .topservicerow .sideimg {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}
.topservicerow .textbox {
  width: 100%;
  max-width: 506px;
  margin-left: 0;
  position: relative;
  z-index: 0;
  margin-right: auto;
  margin-left: 0px;
}
@media screen and (max-width: 767px) {
  .topservicerow .textbox {
    margin-left: auto;
  }
}
.topservicerow .textbox .subtitle {
  font-size: 24px;
  font-family: "Zen Maru Gothic", "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
  color: #351504;
  line-height: 1.4;
  margin-bottom: 20px;
  margin-top: 10px;
  line-height: 1.6;
  font-weight: 500;
  transform: rotate(0.05deg);
}
@media screen and (max-width: 991px) {
  .topservicerow .textbox .subtitle {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .topservicerow .textbox .subtitle {
    font-size: 18px;
  }
}
.topservicerow .textbox .subtitle span {
  position: relative;
  z-index: auto;
}
.topservicerow .textbox .subtitle span::before {
  content: "";
  position: absolute;
  width: 100%;
  background-color: #eff2e5;
  height: 30%;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  z-index: -1;
}
.topservicerow .textbox .topservice_midashi {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .topservicerow .textbox .topservice_midashi {
    margin-bottom: 20px;
  }
}
.topservicerow .textbox .topservice_midashi .minititle span {
  font-size: 18px;
  font-weight: 700;
  font-family: "Nunito", "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
  position: relative;
  color: #104000;
  background-color: #eff2e5;
  border-radius: 15px;
  padding: 3px 10px;
}
@media screen and (max-width: 767px) {
  .topservicerow .textbox .topservice_midashi .minititle span {
    font-size: 15px;
  }
}
.topservicerow .textbox .topservice_midashi .title {
  font-size: 40px;
  line-height: 1.5;
  font-weight: 500;
  font-family: "Zen Maru Gothic", "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
}
@media screen and (max-width: 1056px) {
  .topservicerow .textbox .topservice_midashi .title {
    font-size: 32px;
  }
}
@media screen and (max-width: 991px) {
  .topservicerow .textbox .topservice_midashi .title {
    font-size: 27px;
  }
}
@media screen and (max-width: 480px) {
  .topservicerow .textbox .topservice_midashi .title {
    font-size: 24px;
  }
}
.topservicerow .textbox .topservice_midashi .title span {
  color: #8ab700;
}
.topservicerow .textbox .topservice_midashi .subtitle {
  font-weight: 600;
  font-family: "Noto Serif JP", "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
  font-size: 22px;
  font-weight: 1.8;
  color: #fe5278;
}
@media screen and (max-width: 1056px) {
  .topservicerow .textbox .topservice_midashi .subtitle {
    font-size: 18px;
  }
}
.topservicerow .textbox2 {
  margin-left: 0;
  margin-right: auto;
}
.topservicerow .textbox3 {
  max-width: 508px;
  margin-left: 60px;
  margin-right: 0;
}
@media screen and (max-width: 1199px) {
  .topservicerow .textbox3 {
    margin-left: 30px;
  }
}
@media screen and (max-width: 991px) {
  .topservicerow .textbox3 {
    margin-left: 0px;
  }
}
@media screen and (max-width: 767px) {
  .topservicerow .textbox3 {
    max-width: none;
  }
}
.topservicerow .textbox3 .text {
  width: 100%;
  max-width: 417px;
}
@media screen and (max-width: 767px) {
  .topservicerow .textbox3 .text {
    max-width: none;
  }
}
.topservicerow .textbox4 {
  margin-top: 80px;
}
@media screen and (max-width: 1056px) {
  .topservicerow .textbox4 {
    margin-top: 50px;
  }
}
@media screen and (max-width: 991px) {
  .topservicerow .textbox4 {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .topservicerow .textbox4 {
    margin-top: 30px;
  }
}

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

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

  ■サービスの流れ

=====================================*/
.flow_num_last {
  padding-bottom: 0 !important;
}
.step_icon {
  width: 20%;
  margin-right: 15px;
  font-size: 40px;
  line-height: 1;
  font-family: "Cinzel", serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .step_icon {
    width: 30%;
    margin-right: auto;
    font-size: 30px;
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 480px) {
  .step_icon {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .step_icon img {
    max-width: 70px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
  }
}
.flow_textflex {
  position: relative;
  display: flex;
}
@media screen and (max-width: 767px) {
  .flow_textflex {
    align-items: flex-start;
  }
}
.flow_textflex .titleflex2 {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}
.flow_textflex .titleflex2::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 1px;
  background-color: #1d3966;
  left: 0;
  top: 0;
}
.flow_textflex .titleflex2::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 1px;
  background-color: #1d3966;
  left: 0;
  bottom: 0;
}
.flow_textflex .titleflex2 .kasourow_title {
  width: 50%;
  text-align: center;
  margin-left: 0;
}
.flow_textflex .titleflex2 .flow_img {
  width: 50%;
  margin-bottom: 0;
}

.flow_num_last::after {
  display: none;
}

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

  ■下層共通

=====================================*/
.grayback {
  position: relative;
  background-color: #f7f7f7;
  border-radius: 20px;
  padding: 50px;
  margin-top: 40px;
}
.grayback .box {
  margin-top: 20px;
}
.grayback .box .smalltitle {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}
.grayback .box .smalltitle img {
  margin-right: 10px;
}
.grayback .box .smalltitle span {
  color: #8ab700;
  margin-right: 5px;
}
.grayback .box_non {
  margin-top: 0;
}
.grayback .float_r {
  position: absolute;
  right: 50px;
  bottom: 30px;
  max-width: 80px;
}
@media screen and (max-width: 991px) {
  .grayback .float_r {
    right: 20px;
    bottom: 30px;
    max-width: 60px;
  }
}
@media screen and (max-width: 767px) {
  .grayback .float_r {
    bottom: -30px;
    max-width: 50px;
  }
}
@media screen and (max-width: 480px) {
  .grayback .float_r {
    display: none;
  }
}
.grayback .graytext span {
  color: #8ab700;
}

.grayback2 {
  margin-top: 0;
  background-color: #fff;
}

.grayback3 {
  margin-top: 30px;
  background-color: #fff;
}

.grayback_n {
  margin-top: 0;
}

.whiteback {
  width: 100%;
  position: relative;
  max-width: 1400px;
  margin: auto;
  background-color: #fff;
  padding: 50px 14px;
  z-index: 0;
  border-radius: 20px;
}
@media screen and (max-width: 991px) {
  .whiteback {
    padding: 50px 0px;
  }
}
.whiteback .float {
  position: absolute;
  bottom: 5px;
  right: 5px;
  z-index: 1;
}
@media screen and (max-width: 1300px) {
  .whiteback .float {
    max-width: 140px;
  }
}
@media screen and (max-width: 1199px) {
  .whiteback .float {
    max-width: 105px;
  }
}
@media screen and (max-width: 767px) {
  .whiteback .float {
    display: none;
  }
}
.whiteback .kasoumidashi_f {
  display: flex;
  width: 100%;
  margin: auto;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .whiteback .kasoumidashi_f {
    display: block;
  }
}
.whiteback .kasoumidashi_f .leftside {
  position: relative;
}
@media screen and (max-width: 767px) {
  .whiteback .kasoumidashi_f .leftside {
    display: none;
  }
}
.whiteback .kasoumidashi_f .leftside .float {
  position: absolute;
  bottom: -65px;
  right: 0;
}
@media screen and (max-width: 991px) {
  .whiteback .kasoumidashi_f .leftside .float {
    max-width: 80px;
  }
}
.whiteback .kasoumidashi_f .textbox {
  width: 100%;
  max-width: 540px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .whiteback .kasoumidashi_f .textbox {
    margin-right: auto;
    margin-left: auto;
  }
}
.whiteback .kasoumidashi_f .textbox .kasoumidashi {
  font-size: 24px;
  font-family: "Zen Maru Gothic", "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
  color: #351504;
  line-height: 1.6;
}
@media screen and (max-width: 991px) {
  .whiteback .kasoumidashi_f .textbox .kasoumidashi {
    font-size: 21px;
  }
}
.whiteback .kasoumidashi_f .textbox .kasoumidashi .span1 {
  position: relative;
  z-index: 0;
}
.whiteback .kasoumidashi_f .textbox .kasoumidashi .span1::before {
  content: "";
  position: absolute;
  width: 100%;
  background-color: #dde4c4;
  height: 30%;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  z-index: -1;
}
.whiteback .kasoumidashi_f .textbox .kasoumidashi .span2 {
  color: #8ab700;
}
.whiteback .kasoumidashi_f .rightside {
  position: relative;
}
@media screen and (max-width: 767px) {
  .whiteback .kasoumidashi_f .rightside {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .whiteback .kasoumidashi_f .img_t {
    text-align: center;
    margin-bottom: 20px;
  }
}

.kasou_row1 {
  position: relative;
  display: flex;
  z-index: 0;
  margin-bottom: 60px;
}
@media screen and (max-width: 1199px) {
  .kasou_row1 {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .kasou_row1 {
    display: block;
    padding: 0 14px;
  }
}
.kasou_row1::before {
  content: "";
  position: absolute;
  background-color: #f7f7f7;
  width: 1390px;
  height: 880px;
  z-index: -1;
  right: 0;
  top: 50px;
}
.kasou_row1 .img2 {
  order: 2;
}
.kasou_row1 .textbox {
  width: 100%;
  max-width: 595px;
  margin-left: 100px;
  margin-right: auto;
  margin-top: 130px;
}
@media screen and (max-width: 1300px) {
  .kasou_row1 .textbox {
    margin-left: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .kasou_row1 .textbox {
    margin-left: 30px;
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .kasou_row1 .textbox {
    margin-top: 30px;
    margin-left: auto;
  }
}
.kasou_row1 .textbox2 {
  order: 1;
  margin-right: 100px;
  margin-left: auto;
}
@media screen and (max-width: 1300px) {
  .kasou_row1 .textbox2 {
    margin-right: 60px;
    margin-left: 14px;
  }
}
@media screen and (max-width: 1199px) {
  .kasou_row1 .textbox2 {
    margin-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .kasou_row1 .textbox2 {
    margin-top: 30px;
    margin-right: auto;
  }
}

.jumpdiv_n {
  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;
  margin-left: 30px;
}
@media screen and (max-width: 991px) {
  .flow_row {
    margin-left: 15px;
  }
}
@media screen and (max-width: 767px) {
  .flow_row {
    margin-left: 0;
    padding-bottom: 30px;
  }
}
.flow_row .flow_img {
  margin-bottom: 0;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .flow_row .flow_img {
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 0;
  }
}
.flow_row::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  background-color: #1d3966;
  border-radius: 50%;
  left: 14%;
  top: 6%;
}
@media screen and (max-width: 991px) {
  .flow_row::before {
    left: 15%;
  }
}
@media screen and (max-width: 767px) {
  .flow_row::before {
    top: 5px;
    left: 18%;
  }
}
@media screen and (max-width: 480px) {
  .flow_row::before {
    left: 23%;
    width: 15px;
    height: 15px;
  }
}
.flow_row::after {
  content: "";
  left: 14.9%;
  position: absolute;
  background-color: #1d3966;
  width: 2px;
  height: 100%;
  top: 18px;
}
@media screen and (max-width: 991px) {
  .flow_row::after {
    left: 16.1%;
  }
}
@media screen and (max-width: 767px) {
  .flow_row::after {
    left: 19.9%;
  }
}
@media screen and (max-width: 480px) {
  .flow_row::after {
    left: 25.1%;
  }
}

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

.flowrow_textbox {
  width: 85%;
  display: flex;
}
@media screen and (max-width: 767px) {
  .flowrow_textbox {
    width: 85%;
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .flowrow_textbox {
    width: 65%;
  }
}
.flowrow_textbox .span1 {
  font-weight: 700;
  width: 15%;
}
@media screen and (max-width: 767px) {
  .flowrow_textbox .span1 {
    margin-right: 15px;
  }
}
.flowrow_textbox .span2 {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .flowrow_textbox .span2 {
    display: block;
  }
}

.flow_box .flow_cont {
  display: flex;
  padding-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow_box .flow_cont {
    flex-direction: column;
  }
}
.flow_box .flow_cont:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  background: #4e2020;
  left: 45px;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .flow_box .flow_cont:before {
    display: none;
  }
}
.flow_box .flow_cont .flow_number {
  background: linear-gradient(-135deg, #1d3966, #1d3966);
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  height: 90px;
  max-width: 90px;
  color: #ffffff;
  line-height: 1.6;
  border-radius: 50%;
  margin-right: 30px;
  padding-top: 18px;
}
@media screen and (max-width: 767px) {
  .flow_box .flow_cont .flow_number {
    margin-bottom: 15px;
    order: 2;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
  }
}
.flow_box .flow_cont .flow_number p {
  font-size: 14px;
}
.flow_box .flow_cont .flow_txt {
  width: 100%;
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .flow_box .flow_cont .flow_txt {
    margin-right: 0px;
    order: 3;
  }
}
.flow_box .flow_cont .flow_txt .tit {
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-align: left;
  font-size: 22px;
  font-weight: bold;
  border-bottom: 1px solid #502220;
}
@media screen and (max-width: 767px) {
  .flow_box .flow_cont .flow_txt .tit {
    text-align: center;
  }
}
.flow_box .flow_cont .flow_img {
  width: 100%;
  max-width: 30%;
}
@media screen and (max-width: 767px) {
  .flow_box .flow_cont .flow_img {
    max-width: 100%;
    margin-bottom: -50px;
    order: 1;
    text-align: center;
  }
}
.flow_box .flow_cont.flow_cont_last {
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.flow_box .flow_cont.flow_cont_last:before {
  display: none;
}

.k_subtitle2 {
  text-align: center;
  margin-top: 40px;
  font-size: 27px;
  font-weight: 700;
  color: #1d3966;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
}
@media screen and (max-width: 480px) {
  .k_subtitle2 {
    font-size: 23px;
  }
}
.k_subtitle2 span {
  border-bottom: 1px solid;
}

.prize_flex {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .prize_flex {
    justify-contet: space-between;
  }
}
@media screen and (max-width: 480px) {
  .prize_flex {
    display: block;
  }
}
.prize_flex .box {
  padding: 24px;
  width: calc(32.33% - 10px);
  margin: 0 10px;
  margin-top: 20px;
  background-color: #fff;
}
@media screen and (max-width: 1199px) {
  .prize_flex .box {
    width: calc(32.13% - 10px);
  }
}
@media screen and (max-width: 991px) {
  .prize_flex .box {
    width: calc(31.93% - 10px);
  }
}
@media screen and (max-width: 767px) {
  .prize_flex .box {
    padding: 20px 15px;
    margin-right: auto;
    margin-left: auto;
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 480px) {
  .prize_flex .box {
    width: 100%;
    max-width: none;
    margin-right: auto;
    margin-left: auto;
    padding: 24px;
  }
}
.prize_flex .box .titleone {
  font-size: 18px;
  font-weight: 700;
  color: #1d3966;
  line-height: 1.5;
  margin-top: 16px;
  margin-bottom: 6px;
}

.prize_flex2 {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .prize_flex2 {
    justify-contet: space-between;
  }
}
@media screen and (max-width: 480px) {
  .prize_flex2 {
    display: block;
  }
}
.prize_flex2 .box {
  width: calc(32.33% - 10px);
  margin: 0 10px;
  margin-top: 30px;
  background-color: #fff;
}
@media screen and (max-width: 1199px) {
  .prize_flex2 .box {
    width: calc(32.13% - 10px);
  }
}
@media screen and (max-width: 991px) {
  .prize_flex2 .box {
    width: calc(31.93% - 10px);
  }
}
@media screen and (max-width: 767px) {
  .prize_flex2 .box {
    margin-right: auto;
    margin-left: auto;
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 480px) {
  .prize_flex2 .box {
    width: 100%;
    max-width: none;
    margin-right: auto;
    margin-left: auto;
  }
}
.prize_flex2 .box img {
  margin-bottom: 10px;
  border: 2px solid #1d3966;
}
.prize_flex2 .box .titleone {
  font-size: 18px;
  font-weight: 700;
  color: #1d3966;
  line-height: 1.5;
  margin-top: 16px;
  margin-bottom: 6px;
}

.prizetext {
  margin-top: 20px;
  padding: 24px;
  background-color: #eff7fa;
}

.k_subtitle3 {
  margin-bottom: 0 !important;
}

.innerrow .textbox .titleone {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.5;
  color: #1d3966;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  padding-bottom: 20px;
}
@media screen and (max-width: 991px) {
  .innerrow .textbox .titleone {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .innerrow .textbox .titleone {
    padding-top: 20px;
    font-size: 22px;
  }
}

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

.bread {
  text-align: left;
  margin-top: 40px;
  font-size: 14px;
  margin-left: -20px;
}
@media screen and (max-width: 1600px) {
  .bread {
    margin-left: -15px;
  }
}
@media screen and (max-width: 991px) {
  .bread {
    margin-top: 20px;
    margin-left: -4px;
  }
}
@media screen and (max-width: 767px) {
  .bread {
    font-size: 12px;
    margin-top: -20px;
    padding: 0 15px 0 0;
  }
}
@media screen and (max-width: 480px) {
  .bread {
    margin-top: -50px;
  }
}
.bread span {
  padding: 0 5px;
}
@media screen and (max-width: 767px) {
  .bread span {
    padding: 0 0px;
  }
}

@media screen and (max-width: 767px) {
  .bread2 {
    margin-top: 30px !important;
  }
}

@media screen and (max-width: 767px) {
  .bread3 {
    margin-left: 15px;
  }
}

.neck {
  border-radius: 26px;
  max-width: 1760px;
  width: 100%;
  margin: auto;
  margin-top: 130px;
  height: 300px;
  position: relative;
  background-size: cover;
  padding: 70px 0;
  background-position: center;
  background-image: url(images/neckBG.jpg);
}
@media screen and (max-width: 991px) {
  .neck {
    background-position: right;
    margin-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .neck {
    padding: 50px 0;
    height: 220px;
    margin-top: 80px;
  }
}
@media screen and (max-width: 480px) {
  .neck {
    padding-bottom: 40px;
  }
}
.neck .container {
  position: relative;
}
.neck .neckline {
  position: absolute;
  left: 0;
  bottom: 0;
  line-height: 1;
  background-color: #f6f5f1;
  padding: 30px 15px 0 125px;
  width: 100%;
  max-width: 820px;
  border-radius: 0 26px 0 0;
}
@media screen and (max-width: 1600px) {
  .neck .neckline {
    padding: 30px 15px 0 70px;
  }
}
@media screen and (max-width: 991px) {
  .neck .neckline {
    max-width: 640px;
    padding: 20px 15px 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .neck .neckline {
    padding: 20px 0px 0 0px;
  }
}
.neck .neckline::before {
  content: "";
  position: absolute;
  left: 0;
  top: -25.14px;
  background-image: url(images/obi.svg);
  width: 37.14px;
  height: 26px;
}
.neck .neckline::after {
  content: "";
  position: absolute;
  bottom: 0;
  background-image: url(images/obi.svg);
  width: 37.14px;
  height: 26px;
  right: -37px;
}
.neck .neck__title {
  font-size: 44px;
  position: relative;
  line-height: 1.3;
  color: #3f342d;
  font-weight: 700;
}
@media screen and (max-width: 991px) {
  .neck .neck__title {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .neck .neck__title {
    font-size: 27px;
  }
}
@media screen and (max-width: 480px) {
  .neck .neck__title {
    font-size: 26px;
    letter-spacing: -1px;
  }
}
.neck .neck__title span {
  position: relative;
}
.neck .neck__subtitle {
  font-size: 16px;
  margin-top: 10px;
  font-weight: 700;
  color: #acb130;
}
@media screen and (max-width: 767px) {
  .neck .neck__subtitle {
    font-size: 15px;
  }
}
@media screen and (max-width: 480px) {
  .neck .neck__subtitle {
    font-size: 13px;
  }
}
.centerimg {
  margin-bottom: 30px;
}
.centerimg img {
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .centerimg img {
    border-radius: 16px;
  }
}

.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_content1 {
  overflow: hidden;
  position: relative;
  padding-top: 130px;
  z-index: 0;
  overflow: hidden;
  background-size: cover;
  background: #dce9d3;
  padding-bottom: 110px;
}
@media screen and (max-width: 1199px) {
  .kasou_content1 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .kasou_content1 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.kasou_content1::before {
  content: "";
  position: absolute;
  background-color: #f6f5f1;
  z-index: -1;
  border-radius: 80px 80px 0 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .kasou_content1::before {
    border-radius: 40px 40px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .kasou_content1 .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.kasou_content1_2 {
  background-color: #f6f5f1;
}
.kasou_content1_2_2 {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .kasou_content1_2_2 {
    padding-top: 40px;
  }
}

.kasou_content1_3 {
  padding-top: 0px !important;
}

.kasou_content1_1 {
  overflow: hidden;
  position: relative;
  padding-top: 20px;
  z-index: 0;
  background-size: cover;
  padding-bottom: 30px;
}
@media screen and (max-width: 1199px) {
  .kasou_content1_1 {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .kasou_content1_1 {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}

.kasou_content2 {
  padding-top: 20px;
  padding-bottom: 100px;
  background-image: url(images/kasoubg.png);
}
@media screen and (min-width: 1921px) {
  .kasou_content2 {
    background-size: cover;
  }
}
@media screen and (max-width: 1199px) {
  .kasou_content2 {
    padding-top: 20px;
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 767px) {
  .kasou_content2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .kasou_content2 .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.fukurouflex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .fukurouflex {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .fukurouflex {
    border-radius: 16px;
  }
}
.fukurouflex .imgb {
  margin-right: 30px;
  width: 100%;
  max-width: 40%;
}
@media screen and (max-width: 991px) {
  .fukurouflex .imgb {
    margin-right: 0;
    margin-bottom: 20px;
    max-width: 100%;
    text-align: center;
  }
}
.fukurouflex .imgb2 {
  margin-right: 0;
  margin-left: 30px;
  width: 100%;
  max-width: 33%;
  order: 2;
}
@media screen and (max-width: 991px) {
  .fukurouflex .imgb2 {
    margin-left: 0;
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.fukurouflex .textb {
  width: 100%;
  max-width: 55%;
}
@media screen and (max-width: 991px) {
  .fukurouflex .textb {
    max-width: 100%;
  }
}
.fukurouflex .textb .name {
  text-align: right;
  font-size: 18px;
  margin-top: 80px;
  font-weight: 500;
}
@media screen and (max-width: 991px) {
  .fukurouflex .textb .name {
    margin-top: 40px;
    font-size: 15px;
  }
}
.fukurouflex .textb .name span {
  display: block;
  color: #3f342d;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 991px) {
  .fukurouflex .textb .name span {
    font-size: 20px;
  }
}
.fukurouflex .textb p {
  margin-bottom: 15px;
}
.fukurouflex .textb2 p {
  margin-bottom: 15px;
}
@media screen and (max-width: 991px) {
  .fukurouflex .sidetitleone {
    text-align: center;
  }
}

@media screen and (max-width: 991px) {
  .contact_fukurouflex .imgb2 {
    margin-bottom: 0;
    margin-top: 20px;
  }
}

.sidetitleone {
  margin-bottom: 30px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  color: #7a9b72;
}
@media screen and (max-width: 1199px) {
  .sidetitleone {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .sidetitleone {
    font-size: 21px;
  }
}

.radius30 {
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .radius30 {
    border-radius: 16px;
  }
}

.radius6 {
  border-radius: 6px;
}
.textgreen {
  color: #7a9b72;
}

.textcenter {
  text-align: center;
}

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

.k_whiteblock {
  background-color: #fff;
  border-radius: 80px;
  padding: 60px 80px 50px;
}
@media screen and (max-width: 1199px) {
  .k_whiteblock {
    padding: 50px;
  }
}
@media screen and (max-width: 767px) {
  .k_whiteblock {
    border-radius: 40px;
    padding: 40px 30px;
  }
}
.k_whiteblock .inflex {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .k_whiteblock .inflex {
    display: block;
  }
}
.k_whiteblock .inflex .leftside {
  width: 28%;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .k_whiteblock .inflex .leftside {
    margin: 0;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .k_whiteblock .inflex .leftside img {
    max-width: 50%;
    margin: auto;
  }
}
.k_whiteblock .inflex .rightside {
  width: 72%;
}
@media screen and (max-width: 767px) {
  .k_whiteblock .inflex .rightside {
    width: 100%;
  }
}
.k_whiteblock .inflex .rightside .intitle {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
}
@media screen and (max-width: 1199px) {
  .k_whiteblock .inflex .rightside .intitle {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .k_whiteblock .inflex .rightside .intitle {
    font-size: 25px;
    text-align: center;
  }
}
.k_whiteblock .inflex .rightside .intitle span {
  font-size: 24px;
}
@media screen and (max-width: 1199px) {
  .k_whiteblock .inflex .rightside .intitle span {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .k_whiteblock .inflex .rightside .intitle span {
    font-size: 16px;
    display: block;
    margin-top: 5px;
  }
}
.k_whiteblock .inflex .rightside .listblock {
  margin: 30px 0 40px;
  padding: 20px 0;
  border-top: 2px dotted #d4d0c3;
  border-bottom: 2px dotted #d4d0c3;
  line-height: 1.3;
  font-weight: 700;
  font-size: 21px;
}
@media screen and (max-width: 767px) {
  .k_whiteblock .inflex .rightside .listblock {
    font-size: 17px;
    padding: 15px 0;
    margin: 20px 0 30px;
  }
}
@media screen and (max-width: 480px) {
  .k_whiteblock .inflex .rightside .listblock {
    font-size: 14px;
  }
}
.k_whiteblock .inflex .rightside .listblock .inline {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 22px;
  text-indent: -22px;
}

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

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

.zenmaru {
  font-family: "Zen Maru Gothic", "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
}

.jumpbutton {
  display: flex;
  margin-top: 70px;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 80px;
  position: relative;
}
@media screen and (max-width: 991px) {
  .jumpbutton {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .jumpbutton {
    margin-bottom: 70px;
    margin-top: 40px;
  }
}
.jumpbutton::after {
  content: "";
  width: calc(33% - 20px);
  display: block;
}
@media screen and (max-width: 1300px) {
  .jumpbutton::after {
    width: calc(33% - 10px);
  }
}
@media screen and (max-width: 991px) {
  .jumpbutton::after {
    width: calc(50% - 12px);
  }
}
@media screen and (max-width: 991px) {
  .jumpbutton::after {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .jumpbutton {
    display: block;
  }
}
.jumpbutton .button_block_n {
  width: calc(33% - 20px);
}
@media screen and (max-width: 1300px) {
  .jumpbutton .button_block_n {
    width: calc(33% - 10px);
  }
}
@media screen and (max-width: 991px) {
  .jumpbutton .button_block_n {
    width: calc(50% - 12px);
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 480px) {
  .jumpbutton .button_block_n {
    width: 100%;
    margin-bottom: 15px;
  }
}
.jumpbutton .button_block_n a {
  width: 100%;
  margin-top: 0px;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  line-height: 1;
  font-family: "Zen Maru Gothic", "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
  padding: 25px 15px;
  border-bottom: 2px solid #7a9b72;
  text-align: left;
  display: block;
  background-color: transparent;
  position: relative;
}
@media screen and (max-width: 1300px) {
  .jumpbutton .button_block_n a {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .jumpbutton .button_block_n a {
    font-size: 12px;
  }
}
@media screen and (max-width: 480px) {
  .jumpbutton .button_block_n a {
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 14px;
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
    display: block;
  }
}
.jumpbutton .button_block_n a .circle2 {
  opacity: 0;
}
.jumpbutton .button_block_n a:hover {
  background-color: #efefef;
}
.jumpbutton .button_block_n a img {
  max-width: 30px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 5px;
  transition: 0.8s;
}
@media screen and (max-width: 1300px) {
  .jumpbutton .button_block_n a img {
    max-width: 24px;
    right: 5px;
  }
}
@media screen and (max-width: 767px) {
  .jumpbutton .button_block_n a img {
    max-width: 22px;
    min-width: 22px;
  }
}

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

  ■会社概要

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

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

.company_table {
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  width: 100%;
}
.company_table span {
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .company_table {
    border: none;
    margin-top: 10px;
  }
}
.company_table th {
  padding: 14px 20px;
  border-width: 0 0 1px 0;
  vertical-align: middle;
  width: 14%;
  text-align: center;
  color: #7a9b72;
  background-color: #f6f5f1;
  border-right: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
}
@media screen and (max-width: 1300px) {
  .company_table th {
    width: 22%;
  }
}
@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 .th2 {
  background-color: #7a9b72;
  color: #fff;
}
.company_table td {
  padding: 14px 20px;
  vertical-align: top;
  border-right: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  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_table .td2 {
  background-color: #7a9b72;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

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

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

.company_style {
  margin-bottom: 30px;
}
.company_style .title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  padding: 5px 0 5px 10px;
  background: linear-gradient(to right, #01aba0, #00e0a4);
}
@media screen and (max-width: 991px) {
  .company_style .title {
    font-size: 17px;
  }
}
@media screen and (max-width: 480px) {
  .company_style .title {
    font-size: 15px;
    letter-spacing: 0;
    margin-bottom: 15px;
  }
}
.company_style .title span {
  padding: 0 6px;
  color: #947666;
  background-color: #fff;
  margin-right: 5px;
}

.mapblock {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .mapblock {
    margin-top: 40px;
    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;
}

.greet_img {
  float: right;
  margin-left: 20px;
  max-width: 440px;
}
@media screen and (max-width: 767px) {
  .greet_img {
    margin-left: auto;
    margin-right: auto;
    float: none;
    text-align: center;
    margin-bottom: 20px;
  }
}

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

  ■商品紹介

=====================================*/
.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;
  }
}
@media screen and (max-width: 767px) {
  .worklist__loop .img__block {
    text-align: center;
  }
}

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

.inner_imagebox2 {
  position: relative;
  text-align: center;
  display: block;
  overflow: hidden;
}
.inner_imagebox2::before {
  content: "";
  padding-top: 70%;
  display: block;
}
.inner_imagebox2 img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: auto;
  height: auto;
  max-height: 100%;
  border-radius: 10px;
}

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

.titleblock_singlepage {
  position: relative;
  line-height: 1.5;
}
.titleblock_singlepage .single-blog__date {
  font-size: 18px;
  font-weight: 600;
  color: #7a9b72;
}
@media screen and (max-width: 767px) {
  .titleblock_singlepage .single-blog__date {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .titleblock_singlepage .cat_name {
    display: block;
    margin-top: 5px;
  }
}
.titleblock_singlepage .cat_name .num_cat_parent {
  max-width: 100%;
  display: inline-block;
  font-size: 12px;
  background-color: #fff;
  border-radius: 15px;
  padding: 2px 14px;
  margin-bottom: -5px;
  margin-left: 10px;
  font-weight: 700;
  border: 1px solid #cccccc;
  font-family: "Zen Maru Gothic", serif;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 480px) {
  .titleblock_singlepage .cat_name .num_cat_parent {
    margin-right: 5px;
    margin-left: 0;
  }
}

.student_wrap {
  border-radius: 80px;
  padding: 45px 55px;
  border: 5px solid #fbd9bb;
  background-color: #fff;
}
@media screen and (max-width: 1199px) {
  .student_wrap {
    border-radius: 60px;
  }
}
@media screen and (max-width: 767px) {
  .student_wrap {
    border-radius: 40px;
    padding: 30px;
  }
}

.cat_voice {
  margin-top: 60px;
  display: block;
}
@media screen and (max-width: 767px) {
  .cat_voice {
    margin-top: 30px;
  }
}

.cat_maintitle {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  padding-left: 30px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .cat_maintitle {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .cat_maintitle {
    font-size: 25px;
    padding-left: 24px;
  }
}
@media screen and (max-width: 480px) {
  .cat_maintitle {
    font-size: 21px;
    padding-left: 15px;
  }
}
.cat_maintitle::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: #e77e84;
  top: 0;
  bottom: 0;
  border-radius: 50%;
  margin: auto;
  left: 0px;
}
@media screen and (max-width: 480px) {
  .cat_maintitle::before {
    width: 10px;
    height: 10px;
  }
}

.voice_archivetitle {
  font-size: 28px;
  display: block;
  font-weight: 700;
  line-height: 1.2;
  padding: 20px;
  border-radius: 40px;
  background-color: #e3dece;
  margin: 20px 0;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .voice_archivetitle {
    font-size: 23px;
  }
}
@media screen and (max-width: 767px) {
  .voice_archivetitle {
    font-size: 18px;
    margin: 15px 0;
    padding: 10px;
    border-radius: 30px;
  }
}
.voice_archivetitle span {
  color: #fff;
  margin-right: 10px;
}

.archive-voiceone {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .archive-voiceone {
    margin-top: 40px;
  }
}

.archive-voiceone2 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .archive-voiceone2 {
    margin-bottom: 30px;
  }
}

.loop__voice {
  background-color: #fff;
  border-radius: 24px;
  padding: 60px 60px 30px;
}
@media screen and (max-width: 1199px) {
  .loop__voice {
    padding: 40px 40px 10px;
  }
}
@media screen and (max-width: 767px) {
  .loop__voice {
    padding: 30px 30px 0;
  }
}
.loop__voice .img--center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .loop__voice .img--center {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .loop__voice .img--center2 {
    margin-bottom: 30px;
  }
}
.loop__voice .img--center2 img {
  border-radius: 30px;
}
.loop__voice .textbox .box1 {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .loop__voice .textbox .box1 {
    margin-bottom: 30px;
  }
}
.loop__voice .textbox .box1 .intitle {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  padding: 10px 0;
  border-bottom: 2px dotted #d4d0c3;
  border-top: 2px dotted #d4d0c3;
}
@media screen and (max-width: 1199px) {
  .loop__voice .textbox .box1 .intitle {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .loop__voice .textbox .box1 .intitle {
    font-size: 18px;
  }
}
.loop__voice .textbox .box1 .intext {
  background-color: #eee;
  padding: 40px;
  margin-top: 20px;
  border-radius: 24px;
}
@media screen and (max-width: 1199px) {
  .loop__voice .textbox .box1 .intext {
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .loop__voice .textbox .box1 .intext {
    padding: 20px;
  }
}

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

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

.privacy_text {
  padding-top: 50px;
  border-top: 1px solid #eaeaea;
}
@media screen and (max-width: 991px) {
  .privacy_text {
    padding: 50px 30px;
  }
}
@media screen and (max-width: 767px) {
  .privacy_text {
    padding: 30px 15px;
  }
}
.privacy_text .privacy_subtitle {
  color: #1d3966;
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-size: 21px;
}
@media screen and (max-width: 767px) {
  .privacy_text .privacy_subtitle {
    font-size: 18px;
  }
}
.privacy_text .privacy_subtitle span {
  color: #1d3966;
  font-size: 24px;
  margin-right: 5px;
}
.privacy_text .text {
  margin-bottom: 30px;
}
.privacy_text ul {
  padding-left: 20px;
  text-indent: -20px;
}
.privacy_text ul span {
  color: #242f89;
  font-size: 20px;
  font-weight: 700;
  margin-right: 5px;
}

.k_centertitle {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
}
@media screen and (max-width: 1056px) {
  .k_centertitle {
    font-size: 29px;
  }
}
@media screen and (max-width: 767px) {
  .k_centertitle {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  .k_centertitle {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.k_centertitle span {
  padding-bottom: 10px;
  border-bottom: 2px dotted;
}
@media screen and (max-width: 767px) {
  .k_centertitle span {
    padding-bottom: 0;
  }
}

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

@media screen and (max-width: 767px) {
  .recaptcha__txt {
    font-size: 14px;
    letter-spacing: -0.2px;
  }
}

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

.wpcf7-list-item {
  color: #333333;
  font-weight: 500 !important;
  margin: 0 1rem 0 0;
}
@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;
}

.dayblock {
  position: relative;
  background-color: #fff;
  text-align: center;
  padding: 40px;
  border-radius: 15px;
}
@media screen and (max-width: 1600px) {
  .dayblock {
    padding: 30px;
  }
}
@media screen and (max-width: 991px) {
  .dayblock {
    padding: 20px;
  }
}
.dayblock .titleb {
  font-size: 28px;
  color: #7a9b72;
  line-height: 1.4;
  margin-bottom: 20px;
  font-weight: 700;
}
@media screen and (max-width: 1199px) {
  .dayblock .titleb {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .dayblock .titleb {
    font-size: 21px;
  }
}
.dayblock .redtext {
  color: #bb262e;
}
.dayblock img {
  position: absolute;
  left: 0;
  top: -60px;
}
@media screen and (max-width: 1300px) {
  .dayblock img {
    top: -40px;
    max-width: 95px;
  }
}
@media screen and (max-width: 767px) {
  .dayblock img {
    max-width: 80px;
  }
}

.labelline {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.labelline .blockone {
  width: calc(33% - 25px);
  margin-top: 80px;
}
@media screen and (max-width: 1600px) {
  .labelline .blockone {
    width: calc(33% - 14px);
  }
}
@media screen and (max-width: 1199px) {
  .labelline .blockone {
    width: calc(50% - 10px);
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .labelline .blockone {
    width: 100%;
  }
}
.centerimg2 {
  margin-bottom: 30px;
}
@media screen and (max-width: 1300px) {
  .centerimg2 {
    margin-bottom: 0;
  }
}

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

.whitebase {
  background-color: #fff;
  padding: 70px;
}
@media screen and (max-width: 1600px) {
  .whitebase {
    padding: 60px 60px;
  }
}
@media screen and (max-width: 1199px) {
  .whitebase {
    padding: 40px 40px;
  }
}
@media screen and (max-width: 767px) {
  .whitebase {
    padding: 30px;
  }
}
.whitebase .imgreen {
  color: #7a9b72;
}
@media screen and (max-width: 767px) {
  .whitebase .sidetitleone {
    text-align: center;
  }
}
.whitebase .inflex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .whitebase .inflex {
    display: block;
  }
}
.whitebase .inflex .imgb {
  order: 2;
  width: 100%;
  max-width: 25%;
  text-align: center;
  margin-left: 50px;
}
@media screen and (max-width: 1600px) {
  .whitebase .inflex .imgb {
    max-width: 30%;
    margin-left: 20px;
  }
}
@media screen and (max-width: 1300px) {
  .whitebase .inflex .imgb {
    max-width: 35%;
    margin-left: 20px;
  }
}
@media screen and (max-width: 1600px) {
  .whitebase .inflex .imgb {
    max-width: 45%;
    margin-left: 20px;
  }
}
@media screen and (max-width: 991px) {
  .whitebase .inflex .imgb {
    order: 2;
    max-width: 65%;
    margin-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .whitebase .inflex .imgb {
    max-width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .whitebase .inflex .imgb img {
    max-width: 60%;
  }
}
@media screen and (min-width: 768px) {
  .whitebase .inflex .imgb.imgb-small {
    max-width: 300px;
  }
}
@media screen and (min-width: 1200px) {
  .whitebase .inflex .imgb.imgb-small {
    max-width: 360px;
  }
}
.whitebase .inflex .imgb3 {
  margin-left: 50px;
  width: 100%;
  max-width: 33%;
}
@media screen and (max-width: 1199px) {
  .whitebase .inflex .imgb3 {
    margin-left: 30px;
  }
}
@media screen and (max-width: 991px) {
  .whitebase .inflex .imgb3 {
    max-width: 55%;
    margin-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .whitebase .inflex .imgb3 {
    max-width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
    text-align: centere;
  }
}
.whitebase .inflex .textb {
  order: 1;
}
@media screen and (max-width: 991px) {
  .whitebase .inflex .textb {
    width: 66%;
  }
}
@media screen and (max-width: 767px) {
  .whitebase .inflex .textb {
    width: 100%;
  }
}
.whitebase .inflex .textb .miniul li {
  padding-left: 33px;
  text-indent: -33px;
}
@media screen and (max-width: 767px) {
  .whitebase .inflex .textb .miniul li {
    padding-left: 30px;
    text-indent: -30px;
  }
}
.whitebase .inflex .textb .inul li {
  padding-left: 20px;
  position: relative;
  line-height: 1;
  margin-bottom: 15px;
}
.whitebase .inflex .textb .inul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 4px;
  width: 16px;
  height: 16px;
  background-color: #7a9b72;
}
.whitebase .inflex .textb p {
  margin-bottom: 15px;
}

.whitebase2 {
  background-color: #efede0;
  margin-bottom: 40px;
}
.whitebase2 .button_block_t {
  background-color: #fff;
  border-color: #fff;
  padding: 13px 15px;
  color: #3f342d;
  cursor: pointer;
  text-align: center;
  max-width: 420px;
}
.whitebase2 .button_block_t img {
  position: static;
  margin-right: 10px;
}
@media screen and (max-width: 991px) {
  .whitebase2 .button_block_t img {
    max-width: 19px;
  }
}
.whitebase2 .button_block_t:hover {
  color: #3f342d;
  opacity: 0.8;
  transition: 0.8s;
}
.whitebase2 .button_block_t:hover span {
  color: #3f342d;
}
.whitebase2 .button_block_t .span1 {
  font-size: 29px;
  font-weight: 700;
  padding-bottom: 5px;
}
@media screen and (max-width: 991px) {
  .whitebase2 .button_block_t .span1 {
    font-size: 25px;
  }
}
.whitebase2 .button_block_t .span2 {
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
  font-size: 14px;
  display: block;
  margin-top: 10px;
  font-weight: 500;
  padding-left: 0;
}
.whitebase2 .textb2 {
  width: 100%;
}
@media screen and (max-width: 1300px) {
  .whitebase2 .textb2 {
    max-width: 50%;
  }
}
@media screen and (max-width: 991px) {
  .whitebase2 .textb2 {
    max-width: 100%;
  }
}

.table-contact {
  table-layout: fixed;
  border-top: 1px solid #e4e4e4;
  margin: auto;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 20px;
}
@media screen and (max-width: 991px) {
  .table-contact {
    border: none;
  }
}
.table-contact th {
  position: relative;
  padding: 25px 15px;
  padding-right: 50px;
  width: 25%;
  color: #333333;
  font-weight: 700;
  line-height: 1.4;
  border-bottom: 1px solid #e4e4e4 !important;
}
@media screen and (max-width: 991px) {
  .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: #bb262e;
  border-radius: 2px;
  position: absolute;
  right: 40px;
  line-height: 1.4;
  padding: 0 6px;
  font-size: 14px;
}
@media screen and (max-width: 991px) {
  .table-contact th .red {
    right: 10px;
  }
}
.table-contact .th_direct {
  vertical-align: baseline;
}
.table-contact td {
  width: 75%;
  padding: 25px 15px;
  line-height: 1.4;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 991px) {
  .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 {
  display: block;
  width: 100%;
  max-width: 300px;
  margin-right: auto;
  margin-left: auto;
  background-image: url(images/cbtn_1.svg);
  position: relative;
  background-size: cover;
  background-position: right;
  border: 2px solid #7a9b72;
  border-radius: 40px;
  font-size: 18px;
  line-height: 1;
  padding: 21px 20px;
  padding-left: 30px;
  font-weight: 500;
  transition: 0.8s;
  color: #fff;
  margin-top: 40px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .contact__table.btn__block .txt__inline03 input {
    font-size: 15px;
    max-width: 220px;
  }
}
.contact__table.btn__block .txt__inline03 input img {
  top: 0;
  bottom: 0;
  margin: auto;
  right: 15px;
  position: absolute;
  max-width: 40px;
}
.contact__table.btn__block .txt__inline03 input:hover {
  color: #7a9b72;
  transition: 0.8s;
  background-image: url(images/cbtn_2.svg);
  background-color: #fff;
}
.contact__table.btn__block .txt__inline03 input:hover img {
  opacity: 1;
}

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

.contact_box1 {
  text-align: center;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  opacity: 1;
}

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;
  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;
  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: #1d3966;
}
@media screen and (max-width: 767px) {
  .table-common tr th {
    display: block;
    clear: both;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 0px;
    padding-left: 12px;
    padding-right: 12px;
    border: none;
    text-align: left;
    float: left;
  }
}
.table-common tr th .red {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translate(0%, -50%);
  margin: 0;
  padding: 0 3px;
  font-size: 12px;
}
@media screen and (max-width: 1056px) {
  .table-common tr th .red {
    right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .table-common tr th .red {
    position: static;
    margin-left: 10px;
  }
}
.table-common tr td {
  text-align: left;
  font-weight: 500;
  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;
  }
}

.feetablebox .k_subtitle {
  border-top: 1px solid #b4c9db;
}
.feetablebox .k_subtitle::before {
  background-color: #1d3966;
}

.fee_title {
  background: linear-gradient(to right, #23afd2, #018bcd);
  line-height: 1;
  padding: 13px;
  font-size: 24px;
  color: #fff;
}
@media screen and (max-width: 1199px) {
  .fee_title {
    padding: 10px;
  }
}
@media screen and (max-width: 480px) {
  .fee_title {
    font-size: 19px;
  }
}

.subdiv {
  font-size: 18px;
  font-weight: 600;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  padding-top: 10px;
  line-height: 1.5;
  border-top: 1px solid #eff7fa;
  position: relative;
}
.subdiv::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 1px;
  background-color: #d3e3ef;
}

@media screen and (max-width: 767px) {
  .tableauto {
    overflow-x: scroll;
  }
}

.table-fee {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .table-fee {
    width: 750px;
  }
}
@media screen and (max-width: 480px) {
  .table-fee {
    width: 480px;
  }
}
.table-fee tr {
  background-color: #fff;
  border: 1px solid #e4e4e4;
}
@media screen and (max-width: 767px) {
  .table-fee tr {
    background-color: transparent;
    border: none;
  }
}
.table-fee tr th {
  border-right: 1px solid;
  padding-left: 15px;
  position: relative;
  font-weight: bold;
  padding-top: 24px;
  padding-bottom: 24px;
  width: auto !important;
  min-width: auto !important;
  color: #fff !important;
  font-size: 16px;
  border-bottom: 1px solid #e4e4e4;
  background-color: #1d3966 !important;
}
.table-fee tr td {
  position: relative;
  padding-left: 15px;
  border-right: 1px solid #e4e4e4;
  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-fee tr td a.site {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .table-fee tr .th_1 {
    padding-bottom: 10px;
    background-color: #1d3966 !important;
    color: #fff;
    font-size: 18px;
    margin-top: 20px;
  }
}
.table-fee tr .td3 {
  width: 10%;
}
@media screen and (max-width: 767px) {
  .table-fee tr .td3 {
    width: 15%;
  }
}
.table-fee tr .th3 {
  border-right: 1px solid #1d3966;
}
.table-fee .main th {
  text-align: center;
}
.table-fee .main .th1 {
  padding-left: 15px;
}

.txt_cont {
  background-color: #eff7fa;
  padding: 20px;
}

.c_table {
  width: 100%;
  margin-top: 30px;
  line-height: 1.6;
}
.c_table tr th {
  font-weight: bold;
  padding-top: 15px;
  padding-bottom: 15px;
  position: relative;
  padding-right: 10px;
  width: 19%;
  font-size: 18px;
  background: transparent;
  min-width: 130px;
  margin-bottom: 20px;
  color: #1d3966;
}
@media screen and (max-width: 1199px) {
  .c_table tr th {
    width: 21%;
  }
}
@media screen and (max-width: 767px) {
  .c_table tr th {
    display: block;
    clear: both;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 12px;
    padding-right: 12px;
    border: none;
    text-align: center;
    float: left;
    margin: 0;
    border-top: 1px solid #b4c9db;
  }
}
.c_table tr th::before {
  content: "";
  position: absolute;
  height: 80%;
  width: 1px;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  background-color: #b4c9db;
}
@media screen and (max-width: 767px) {
  .c_table tr th::before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .c_table tr th br {
    display: none;
  }
}
.c_table tr td {
  width: 75%;
  text-align: left;
  font-weight: 500;
  margin-bottom: 20px;
  padding-top: 15px;
  padding-left: 30px;
  padding-bottom: 15px;
  padding-right: 15px;
  background: transparent;
  font-size: 16px;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .c_table tr td {
    display: block;
    clear: both;
    width: 100%;
    border-top: 1px solid #b4c9db;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 12px;
    padding-right: 12px;
    border-left: none;
    text-align: left;
    float: left;
    margin: 0;
  }
}
.c_table tr td .txt-box .titleone {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
}

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

  ■お知らせ

=====================================*/
.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: #ff8d48;
}
.archive-news__inner a:hover .num_infocat_m {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .archive-news__inner a {
    white-space: normal;
    display: block;
    word-break: break-all;
    padding: 15px;
    line-height: 1.5;
  }
}
.archive-news__inner a .archive-news__date {
  color: #947666;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .archive-news__inner a .archive-news__date {
    display: block;
    font-size: 13px;
  }
}
.archive-news__inner a:hover {
  color: #fff;
}
.archive-news__inner a:hover span {
  color: #fff;
}

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

.archive-blog__title {
  font-size: 18px;
  font-weight: 600;
  display: block;
  display: block;
  margin-top: 10px;
  color: #3f342d;
  line-height: 1.4;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 20px;
  white-space: nowrap;
}
@media screen and (max-width: 1300px) {
  .archive-blog__title {
    font-size: 23px;
  }
}
@media screen and (max-width: 767px) {
  .archive-blog__title {
    font-size: 18px;
    margin-top: 4px;
  }
}

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

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

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

.single-blog__title2 {
  font-size: 36px;
  padding-left: 25px;
  position: relative;
  color: #3f342d;
  line-height: 1.2;
  margin-bottom: 30px;
  font-weight: 700;
}
@media screen and (max-width: 1199px) {
  .single-blog__title2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .single-blog__title2 {
    font-size: 22px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 480px) {
  .single-blog__title2 {
    margin-bottom: 20px;
  }
}
.single-blog__title2::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 100%;
  background-color: #7a9b72;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  border-radius: 6px;
}

.photo_thumb {
  display: flex;
  max-width: 1520px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 30px;
  flex-wrap: wrap;
  position: relative;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .photo_thumb {
    margin-left: 0;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 991px) {
  .photo_thumb::after {
    content: "";
    display: block;
    width: calc(33% - 10px);
  }
}
@media screen and (max-width: 480px) {
  .photo_thumb::after {
    width: calc(33% - 9px);
  }
}

.thumb__block--cell {
  width: calc(20% - 20px);
  margin-top: 20px;
  overflow: hidden;
  text-align: center;
  position: relative;
  border-radius: 30px;
  height: 150px;
  margin-right: 20px;
}
@media screen and (max-width: 1199px) {
  .thumb__block--cell {
    height: 130px;
    width: calc(20% - 15px);
    margin-right: 15px;
  }
}
@media screen and (max-width: 991px) {
  .thumb__block--cell {
    width: calc(33% - 10px);
    height: 120px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 480px) {
  .thumb__block--cell {
    width: calc(33% - 9px);
    height: 70px;
    margin-right: 0;
    border-radius: 12px;
    margin-top: 12px;
  }
}
.thumb__block--cell img {
  max-width: 200%;
  border-radius: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .thumb__block--cell img {
    border-radius: 16px;
  }
}

.tab-content {
  text-align: center;
  position: relative;
}
@media screen and (max-width: 991px) {
  .tab-content {
    padding: 31%;
    overflow: hidden;
    border-radius: 30px;
  }
}
@media screen and (max-width: 767px) {
  .tab-content {
    border-radius: 16px;
    margin-top: 30px;
  }
}
.tab-content img {
  border-radius: 30px;
  max-width: 820px;
}
@media screen and (max-width: 991px) {
  .tab-content img {
    border-radius: 16px;
    max-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 767px) {
  .tab-content img {
    border-radius: 16px;
    max-width: 100%;
  }
}

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

  ■フッター

=====================================*/
.logosand {
  display: flex;
  align-items: center;
  margin-top: 60px;
  width: 100%;
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
  justify-content: space-between;
}
@media screen and (max-width: 1199px) {
  .logosand {
    display: block;
  }
}

.logo_footer {
  max-width: 240px;
}
@media screen and (max-width: 767px) {
  .logo_footer {
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .logo_footer img {
    max-width: 220px;
  }
}

.bannerline {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .bannerline .banner {
    text-align: center;
  }
}

.footerlink {
  margin-top: 0px;
  padding-top: 80px;
  padding-bottom: 80px;
  background-size: cover;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .footerlink {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.bigblock_in2 {
  background-image: none;
}

.markflex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .markflex {
    flex-wrap: wrap;
  }
}
.markflex .block1 {
  width: calc(33% - 14px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .markflex .block1 {
    width: calc(50% - 20px);
    margin: auto;
    margin-bottom: 20px;
  }
}

.footerside_1 {
  position: absolute;
  right: 0;
  z-index: 0;
  top: 47%;
}
@media screen and (max-width: 991px) {
  .footerside_1 {
    display: none;
  }
}

.footerside_2 {
  position: absolute;
  left: 0;
  z-index: 0;
  top: 60%;
}
@media screen and (max-width: 991px) {
  .footerside_2 {
    display: none;
  }
}

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

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

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

/*ページトップ*/
.footerout {
  padding: 0 15px;
}
@media screen and (max-width: 991px) {
  .footerout {
    padding: 0;
  }
}

.footer__none > a {
  display: none;
}

/*フッターメニュー*/
.footermenu {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 1300px) {
  .footermenu {
    margin-right: auto;
    margin-left: 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: 0px;
    max-width: 470px;
  }
}
@media screen and (max-width: 480px) {
  .footermenu {
    max-width: 290px;
  }
}
.footermenu .sub-under {
  color: #a59b84;
  font-size: 14px;
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .footermenu .sub-under {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .footermenu .sub-under {
    font-size: 12px;
  }
}
.footermenu .sub-under li {
  font-family: "Noto Sans", "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
}
@media screen and (max-width: 991px) {
  .footermenu .footmenutext {
    margin-top: 0;
  }
}
.footermenu .mt0 {
  margin-top: 0px;
}
.footermenu .menu-item-has-children {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .footermenu .menu-item-has-children {
    margin-bottom: 0;
  }
}
.footermenu .menu-item-has-children .sub-menu {
  font-size: 13px !important;
  color: #333333;
  margin-top: 10px;
}
@media screen and (max-width: 991px) {
  .footermenu .menu-item-has-children .sub-menu {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .footermenu .menu-item-has-children .sub-menu li {
    width: 100%;
  }
}
.footermenu li {
  float: none;
  margin-bottom: 22px;
  font-size: 15px;
  line-height: 1;
  font-family: "Zen Maru Gothic", "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
  position: relative;
  letter-spacing: -1px;
  color: #3f342d;
  font-weight: 600;
  text-align: left;
  width: calc(50% - 12px);
}
@media screen and (max-width: 991px) {
  .footermenu li {
    max-width: none;
    width: calc(50% - 12px);
    vertical-align: top;
    margin-bottom: 0;
    padding: 10px 0;
    margin-right: 0;
    font-size: 14px;
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  .footermenu li {
    font-size: 13px;
  }
}
@media screen and (max-width: 480px) {
  .footermenu li {
    font-size: 13px;
  }
}
.footermenu li a {
  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;
  }
}
@media screen and (max-width: 767px) {
  .footermenu .left1 {
    font-size: 13px;
    width: calc(44% - 6px);
  }
}
.footermenu .lock_t a {
  position: relative;
}
.footermenu .lock_t a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(images/lock.png);
  right: -20px;
  width: 14px;
  height: 18px;
  background-size: cover;
}
.footermenu .bigtext {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0px;
  color: #504434;
}
@media screen and (max-width: 1199px) {
  .footermenu .bigtext {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .footermenu .bigtext {
    font-size: 15px;
    font-weight: 600;
    width: calc(100% - 6px);
    margin-bottom: 0px;
  }
}
.footermenu .bigtext a:hover {
  line-height: 1.5;
  color: #a78468;
}
.footermenu .nolink a:hover {
  line-height: 1.5;
  color: #504434;
  opacity: 1;
}
.footermenu .bigtext_mt {
  margin-top: 30px;
}
.footermenu .lock {
  padding-right: 20px;
  position: relative;
}
@media screen and (max-width: 991px) {
  .footermenu .lock {
    width: 130px !important;
  }
}
.footermenu .lock::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(images/lock.png);
  right: 0;
  width: 17px;
  height: 22px;
  background-size: contain;
}
@media screen and (max-width: 991px) {
  .footermenu .lock::before {
    right: 0px;
  }
}
@media screen and (max-width: 767px) {
  .footermenu .lock::before {
    right: 0;
  }
}
.footermenu .lastnavi {
  max-width: 109px;
}

/*フッターコンテンツ*/
/*コピーライト*/
.copy {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 120px;
  width: 100%;
  max-width: 1440px;
  margin: auto;
  position: relative;
}
@media screen and (max-width: 991px) {
  .copy {
    margin-bottom: 60px;
  }
}
.copy::before {
  content: "";
  position: absolute;
  background-color: #504434;
  width: 100%;
  height: 1px;
  opacity: 0.2;
  top: 0;
}

.copyright {
  font-size: 13px;
  color: #504434;
  letter-spacing: 1px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .copyright {
    text-align: center;
    font-size: 11px;
  }
}

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

.footer_right2 {
  margin-top: 20px;
}

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

.footer__block {
  display: flex;
  align-items: baseline;
  margin: 90px 0px 80px;
}
@media screen and (max-width: 1199px) {
  .footer__block {
    margin: 60px 0px 50px;
  }
}
@media screen and (max-width: 991px) {
  .footer__block {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .footer__block {
    display: block;
    margin: 40px 0;
  }
}

.footer_address {
  width: 36%;
  margin-right: auto;
  margin-left: 0;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 991px) {
  .footer_address {
    display: block;
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .footer_address {
    font-size: 14px;
    padding: 0 15px;
  }
}
.footer_address .btnflex {
  display: flex;
}
@media screen and (max-width: 991px) {
  .footer_address .btnflex {
    width: 100%;
    max-width: 390px;
    margin: auto;
  }
}
@media screen and (max-width: 480px) {
  .footer_address .btnflex {
    display: block;
  }
}
.footer_address .btnflex .btn1 {
  display: block;
  margin-top: 40px;
  display: block;
  background: #ff9110;
  border-radius: 35px;
  border: 2px solid #ff9110;
  color: #fff;
  font-weight: 600;
  width: 240px;
  position: relative;
  line-height: 1;
  box-shadow: 0px 6px 0px 0px rgb(212, 208, 195);
  padding: 5px 5px;
}
@media screen and (max-width: 1300px) {
  .footer_address .btnflex .btn1 {
    padding: 8px;
  }
}
@media screen and (max-width: 1199px) {
  .footer_address .btnflex .btn1 {
    padding: 5px;
    text-align: left;
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .footer_address .btnflex .btn1 {
    padding: 8px;
  }
}
@media screen and (max-width: 480px) {
  .footer_address .btnflex .btn1 {
    margin-top: 20px;
    margin-right: auto;
    margin-left: auto;
  }
}
.footer_address .btnflex .btn1 .hiddenone {
  display: none;
}
.footer_address .btnflex .btn1:hover {
  opacity: 1;
  background: #fff;
  color: #ff9110;
}
.footer_address .btnflex .btn1:hover img {
  opacity: 1;
}
.footer_address .btnflex .btn1:hover .hiddenone {
  display: inline-block;
}
.footer_address .btnflex .btn1:hover .visible {
  display: none;
}
.footer_address .btnflex .btn1 img {
  margin-right: 28px;
  max-width: 54px;
}
@media screen and (max-width: 1600px) {
  .footer_address .btnflex .btn1 img {
    margin-right: 10px;
    max-width: 36px;
  }
}
@media screen and (max-width: 480px) {
  .footer_address .btnflex .btn1 img {
    margin-right: 35px;
    max-width: 40px;
  }
}
.footer_address .btnflex .btn2 {
  z-index: 0;
  border: none;
  margin-left: 20px;
  position: relative;
  background: #ffd600;
  padding: 7px;
}
@media screen and (max-width: 1300px) {
  .footer_address .btnflex .btn2 {
    margin-left: 10px;
    padding: 10px;
  }
}
@media screen and (max-width: 1199px) {
  .footer_address .btnflex .btn2 {
    padding: 7px;
  }
}
@media screen and (max-width: 991px) {
  .footer_address .btnflex .btn2 {
    padding: 10px;
  }
}
@media screen and (max-width: 480px) {
  .footer_address .btnflex .btn2 {
    margin-right: auto;
    margin-left: auto;
  }
}
.footer_address .btnflex .btn2::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #ffd600 0%, #ff7a00 25%, #d300c5 75%, #7638fa 100%);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 35px;
  z-index: -1;
  transition: 0.8s;
}
.footer_address .btnflex .btn2:hover {
  opacity: 1;
  color: #fff;
  transition: 0s;
  background: #ff0069;
}
.footer_address .btnflex .btn2:hover::before {
  opacity: 0;
  transition: 0.8s;
}
.footer_address .btnflex .btn2:hover img {
  opacity: 1;
  transition: 0.8s;
}
.footer_address .rightside2 {
  margin-left: 45px;
  margin-right: auto;
}
@media screen and (max-width: 991px) {
  .footer_address .rightside2 {
    margin-left: 0;
    margin: 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .footer_address .rightside2 {
    margin-bottom: 40px;
  }
}
.footer_address .privacytext a:hover {
  color: #fff;
}

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

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

.topnews__box {
  display: flex;
  margin-bottom: 40px;
  align-items: baseline;
}
@media screen and (max-width: 1199px) {
  .topnews__box {
    display: block;
    margin-bottom: 30px;
  }
}
.topnews__box .button_block {
  margin-right: 0;
  margin-left: auto;
  margin-top: 0;
  max-width: 210px;
  text-align: left;
  padding: 14px 24px;
  font-size: 16px;
}
@media screen and (max-width: 1199px) {
  .topnews__box .button_block {
    display: none;
  }
}
.topnews__box .leftbox {
  margin-right: auto;
}
@media screen and (max-width: 1199px) {
  .topnews__box .leftbox {
    margin-right: 0;
    margin-top: 20px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .topnews__box .leftbox {
    margin-top: 0;
  }
}
.topnews__box .leftbox .titlebox {
  text-align: left;
  display: flex;
  margin-bottom: 0;
  align-items: baseline;
}
@media screen and (max-width: 1199px) {
  .topnews__box .leftbox .titlebox {
    text-align: center;
    margin-top: 0;
  }
}
.topnews__box .leftbox .titlebox .maintitle {
  font-size: 40px;
}
@media screen and (max-width: 1300px) {
  .topnews__box .leftbox .titlebox .maintitle {
    font-size: 31px;
  }
}
@media screen and (max-width: 767px) {
  .topnews__box .leftbox .titlebox .maintitle {
    font-size: 24px;
  }
}
.topnews__box .leftbox .titlebox .subtitle {
  font-weight: 700;
  color: #7a9b72;
  font-size: 21px;
  margin-left: 20px;
}
@media screen and (max-width: 1199px) {
  .topnews__box .leftbox .titlebox .subtitle {
    margin-top: 5px;
  }
}
@media screen and (max-width: 767px) {
  .topnews__box .leftbox .titlebox .subtitle {
    font-size: 13px;
  }
}

.thum_img {
  margin-bottom: 20px;
  text-align: center;
}
.thum_img img {
  display: inline-block;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .thum_img img {
    border-radius: 16px;
  }
}

.topnews_flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
@media screen and (max-width: 767px) {
  .topnews_flex {
    display: block;
  }
}
.topnews_flex::after {
  content: "";
  display: block;
  width: calc(33% - 20px);
}

.topnews_d_t {
  display: block;
  margin-bottom: 60px;
  width: calc(33% - 20px);
}
@media screen and (max-width: 1600px) {
  .topnews_d_t {
    width: calc(33% - 12px);
  }
}
@media screen and (max-width: 991px) {
  .topnews_d_t {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 767px) {
  .topnews_d_t {
    width: 100%;
  }
}
.topnews_d_t .days_block {
  color: #acb130;
  font-weight: 700;
  margin-right: 10px;
  margin-bottom: 10px;
  font-family: "Zen Maru Gothic", serif;
}
@media screen and (max-width: 767px) {
  .topnews_d_t .days_block {
    margin-bottom: 0;
  }
}
.topnews_d_t .cat_name {
  display: inline-block;
  background: none;
  width: 100%;
}
.topnews_d_t .cat_name > span {
  max-width: 100%;
  display: inline-block;
  font-size: 12px;
  background-color: #fff;
  border-radius: 15px;
  padding: 2px 14px;
  margin: 0 10px 10px 0;
  font-weight: 700;
  border: 1px solid #cccccc;
  font-family: "Zen Maru Gothic", serif;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .topnews_d_t .cat_name > span {
    margin-bottom: 0;
  }
}
.topnews_d_t .cat_name > span span {
  display: inline;
  white-space: nowrap;
}
.topnews_d_t .textline {
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 15px;
}
@media screen and (max-width: 767px) {
  .topnews_d_t .textline {
    font-size: 18px;
  }
}
.topnews_d_t .textin {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topnews_flex2 {
  justify-content: flex-start;
}
@media screen and (max-width: 1199px) {
  .topnews_flex2 {
    justify-content: space-between;
  }
}
.topnews_flex2 .topnews_d_t {
  width: 22.88%;
  z-index: 4;
  margin-right: 40px;
}
@media screen and (max-width: 1600px) {
  .topnews_flex2 .topnews_d_t {
    margin-right: 30px;
  }
}
@media screen and (max-width: 1300px) {
  .topnews_flex2 .topnews_d_t {
    width: 22.68%;
  }
}
@media screen and (max-width: 1199px) {
  .topnews_flex2 .topnews_d_t {
    width: calc(50% - 15px);
    margin-bottom: 40px;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .topnews_flex2 .topnews_d_t {
    width: 100%;
    margin-bottom: 40px;
  }
}
.topnews_flex2 .topnews_d_t:last-child {
  margin-right: 0 !important;
}
.topnews_flex2::after {
  display: none;
}

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

  ■フロント

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

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

  ■フロント

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




/*slick*/
.slick__wrap {
  position: relative;
  background-size: contain;
  width: 100%;
  margin: auto;
  margin-top: 130px;
}
@media screen and (max-width: 991px) {
  .slick__wrap {
    margin-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .slick__wrap {
    margin-top: 100px;
  }
}
@media screen and (max-width: 480px) {
  .slick__wrap {
    margin-top: 80px;
  }
}
.slick__wrap .slick-arrow {
  display: none !important;
}
.slick__wrap .float1 {
  position: absolute;
}
.slick__wrap .slick-slide {
  height: auto;
}
.slick__wrap .slick-slide img {
  position: relative;
  margin: auto;
  width: 90%;
  border-radius: 460px;
}
@media screen and (max-width: 1600px) {
  .slick__wrap .slick-slide img {
    width: 95%;
    border-radius: 460px;
  }
}
@media screen and (max-width: 1300px) {
  .slick__wrap .slick-slide img {
    border-radius: 230px;
  }
}
@media screen and (max-width: 767px) {
  .slick__wrap .slick-slide img {
    margin-top: 0px;
    border-radius: 150px;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .slick__wrap .slick-slide img {
    border-radius: 90px;
  }
}
.slick__wrap .fukurouhov {
  position: absolute;
  right: 40px;
  bottom: -60px;
  max-width: 506px;
}
@media screen and (max-width: 1600px) {
  .slick__wrap .fukurouhov {
    max-width: 400px;
  }
}
@media screen and (max-width: 1300px) {
  .slick__wrap .fukurouhov {
    max-width: 300px;
  }
}
@media screen and (max-width: 991px) {
  .slick__wrap .fukurouhov {
    max-width: 250px;
    bottom: -40px;
  }
}
@media screen and (max-width: 767px) {
  .slick__wrap .fukurouhov {
    right: -15px;
    max-width: 170px;
  }
}
@media screen and (max-width: 767px) {
  .slick__wrap .fukurouhov {
    max-width: 130px;
    bottom: -15px;
    right: -30px;
  }
}

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

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

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

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

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

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

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

.visible-md {
  display: none !important;
}
@media screen and (max-width: 1199px) {
  .visible-md {
    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 {
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .post__content img {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .post__content img:last-child {
    margin-bottom: 0px;
  }
}
.post__content:before, .post__content:after {
  content: " ";
  display: table;
}
.post__content:after {
  clear: both;
}
.post__content p {
  margin-bottom: 15px;
}
.post__content h1,
.post__content h2,
.post__content h3,
.post__content h4,
.post__content h4,
.post__content h6 {
  margin-top: 15px;
  margin-bottom: 15px;
  font-weight: bold;
  font-family: "Zen Maru Gothic", "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
}
.post__content h1 {
  font-size: 35px;
}
.post__content h1.has-small-font-size {
  font-size: 80%;
}
.post__content h1.has-medium-font-size {
  font-size: 100%;
}
.post__content h1.has-large-font-size {
  font-size: 120%;
}
.post__content h1.has-x-large-font-size {
  font-size: 140%;
}
.post__content ol {
  margin-top: 15px;
  margin-bottom: 15px;
}
.post__content ol li {
  list-style: inside;
  list-style-type: decimal;
}
.post__content ul {
  margin-top: 15px;
  margin-bottom: 15px;
}
.post__content ul li {
  list-style: inside;
}

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

/*左寄せ*/
.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;
}
.wp-pagenavi .navigation {
  margin: 0 auto;
}
.wp-pagenavi a,
.wp-pagenavi span {
  border: none !important;
  padding: 5px !important;
  margin: 5px !important;
  background: #fff;
  color: #19454a;
  border-radius: 50%;
  min-width: 40px;
  display: inline-block;
  text-align: center;
  transition: 0.3s;
  text-decoration: none;
}
@media screen and (max-width: 991px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    min-width: 32px;
  }
}
.wp-pagenavi a:hover,
.wp-pagenavi span:hover {
  border: none;
  opacity: 1;
  background: #7a9b72;
  color: #fff;
}
.wp-pagenavi .nextpostslink {
  background-color: #d3ddc8;
}
.wp-pagenavi .previouspostslink {
  background-color: #d3ddc8;
}
.wp-pagenavi span.current {
  border: none;
  font-weight: normal;
  background: #7a9b72;
  color: #fff;
}
.wp-pagenavi span.pages {
  border: none;
  background: none;
  color: #504434;
  display: none;
}

/*single.php ページネーション*/
.paginate__wrap {
  display: flex;
  justify-content: space-between;
  padding: 30px 0 0;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .paginate__wrap {
    padding: 20px 0 0;
  }
}
.paginate__wrap a {
  display: block;
  padding: 17px 13px;
  line-height: 1;
  width: 226px;
  font-size: 16px;
  background: #7a9b72;
  border-radius: 30px;
  color: #fff;
  border: 2px solid #7a9b72;
  text-decoration: none;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .paginate__wrap a {
    width: 170px;
    font-size: 15px;
    padding: 17px 13px;
  }
}
.paginate__wrap a:hover {
  background-color: #fff;
  color: #7a9b72;
}
.paginate__wrap .paginate__block--next {
  min-width: 54px;
}
@media screen and (max-width: 767px) {
  .paginate__wrap .paginate__block--next {
    min-width: 53px;
    width: 53px;
    min-height: 53px;
  }
}
.paginate__wrap .paginate__block--next a {
  min-height: 54px;
  position: relative;
  background-color: #d3ddc8;
  color: #fff;
  width: 54px;
  border: 2px solid #d3ddc8;
}
@media screen and (max-width: 767px) {
  .paginate__wrap .paginate__block--next a {
    min-width: 53px;
    width: 53px;
    min-height: 53px;
  }
}
.paginate__wrap .paginate__block--next a img {
  height: 15px;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.paginate__wrap .paginate__block--next a:hover {
  background-color: #fff;
  color: #7a9b72;
}
.paginate__wrap .paginate__block--prev {
  min-width: 54px;
}
@media screen and (max-width: 767px) {
  .paginate__wrap .paginate__block--prev {
    min-width: 53px;
    width: 53px;
    min-height: 53px;
  }
}
.paginate__wrap .paginate__block--prev a {
  min-height: 54px;
  position: relative;
  background-color: #d3ddc8;
  border: 2px solid #d3ddc8;
  color: #fff;
  width: 54px;
}
@media screen and (max-width: 767px) {
  .paginate__wrap .paginate__block--prev a {
    min-width: 53px;
    width: 53px;
    min-height: 53px;
  }
}
.paginate__wrap .paginate__block--prev a img {
  height: 15px;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .paginate__wrap .paginate__block--prev a img {
    margin: auto;
  }
}
.paginate__wrap .paginate__block--prev a:hover {
  background-color: #fff;
  color: #7a9b72;
}
.paginate__wrap .paginate__block--back a {
  position: relative;
  text-align: left;
  padding-left: 20px;
}
.paginate__wrap .paginate__block--back a img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 15px;
}
.paginate__wrap .paginate__block--back a:hover {
  background-color: #fff;
  color: #7a9b72;
}

.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;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  line-height: 1.4;
  font-size: 30px;
  margin-bottom: 20px;
  color: #1d3966;
}
@media screen and (max-width: 767px) {
  .linebox .title {
    font-size: 26px;
  }
}
@media screen and (max-width: 480px) {
  .linebox .title {
    font-size: 24px;
  }
}
.works_block {
  padding: 40px;
  margin: 0px -14px;
  margin-top: 40px;
  background-color: #eff7fa;
}
@media screen and (max-width: 767px) {
  .works_block {
    padding: 30px;
    margin: 0;
  }
}
.works_block .inflex {
  display: flex;
  flex-wrap: wrap;
}
.works_block .k_subtitle {
  margin-bottom: 30px;
  border-top: 1px solid #b4c9db;
}
@media screen and (max-width: 767px) {
  .works_block .k_subtitle {
    margin-bottom: 20px;
  }
}
.works_block .k_subtitle::before {
  background-color: #1d3966;
}
.works_block .rightside {
  order: 2;
  padding-left: 28px;
  width: 40%;
}
@media screen and (max-width: 767px) {
  .works_block .rightside {
    width: 100%;
    padding-left: 0;
    order: 1;
    margin-bottom: 20px;
  }
}
.works_block .leftside {
  order: 1;
  width: 60%;
  background-color: #fff;
  padding-bottom: 20px;
  border: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .works_block .leftside {
    width: 100%;
    border: none;
    order: 2;
    padding-bottom: 0;
    background-color: transparent;
  }
}
.works_block .company_table {
  border-top: none;
}
.works_block .company_table td {
  border-right: none;
}
@media screen and (max-width: 767px) {
  .works_block .company_table td {
    background: transparent;
  }
}
.works_block .centerbutton a {
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .works_block .centerbutton a {
    margin-bottom: 10px;
    margin-top: 15px;
  }
}
.works_block .attentiontext {
  font-size: 12px;
  text-align: center;
}

.notmargin_t {
  margin-top: 0 !important;
}

.notmargin_b {
  margin-bottom: 0 !important;
}
/*# sourceMappingURL=style.css.map */