@charset "UTF-8";
/*! このファイルを変更する場合は「.scss」から変更して下さい */
/*! 「.scss」ファイルがつかえない場合はcustom.cssを変更する */
/* ボタンカラー */
/* フォント系 */
/*
	Noto Sans使用する場合
	'Noto Sans JP', 'Open Sans', Verdana, Roboto, 'Droid Sans'
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600&display=swap");
/*! このファイルを変更する場合は「.scss」から変更して下さい */
/*! 「.scss」ファイルがつかえない場合はcustom.cssを変更する */
/* スマホスタイル */
.visible-sp-block, .visible-sp-inline, br.sp {
  display: none !important;
}

html {
  font-size: 10px;
  font-size: 6.25%;
}

body {
  text-align: center;
  font-size: 14rem;
  -webkit-text-size-adjust: 100%;
  line-height: 1.8;
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", sans-serif;
}

* {
  margin: 0px;
  padding: 0px;
}

em, strong {
  font-weight: inherit;
  font-style: inherit;
}

form {
  display: inline;
}

ul, ol {
  list-style: none;
}
ul.none, ol.none {
  list-style-type: none;
}
ul.fa_list li:before, ol.fa_list li:before {
  content: "\f0da";
  font-family: FontAwesome;
  margin-right: 0.5em;
}
ul li, ol li {
  margin: 0px;
  padding: 0px;
}
ul.icon li, ol.icon li {
  text-indent: -20px;
  margin-left: 20px;
}
ul.icon li:before, ol.icon li:before {
  content: "\f0c8";
  font-family: FontAwesome;
  margin-right: 0.5em;
  color: #0096E7;
}

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

img {
  max-width: 100%;
}

/* 標準アニメーション準備 */
.ani {
  transition: 1s all;
}
.ani.ani_fade {
  opacity: 0;
}
.ani.ani_fade.move {
  opacity: 1;
}
.ani.ani_fadeup {
  opacity: 0;
  position: relative;
  top: 100px;
}
.ani.ani_fadeup.move {
  opacity: 1;
  top: 0;
}
.ani.ani_rightleft {
  opacity: 0;
  position: relative;
  right: -100px;
}
.ani.ani_rightleft.move {
  opacity: 1;
  right: 0;
}
.ani.ani_leftright {
  opacity: 0;
  position: relative;
  left: -100px;
}
.ani.ani_leftright.move {
  opacity: 1;
  left: 0;
}

.img_wipe {
  position: relative;
  top: 0;
  left: 0;
}
.img_wipe::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #c7b6aa;
  content: '';
  transition: all 0.3s ease-out;
}
.img_wipe.wipe_open::before {
  width: 0;
}

.ani_wipe {
  position: relative;
  top: 0;
  left: 0;
}
.ani_wipe::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #c7b6aa;
  content: '';
  transition: all 0.3s ease-out;
}
.ani_wipe.move::before {
  width: 0;
}

.ani_rotateopen {
  text-align: center;
}
.ani_rotateopen img {
  width: 0;
  height: 100%;
  transition: all 0.3s ease-out;
}
.ani_rotateopen.move img {
  width: 100%;
}

.ani_float {
  position: relative;
  top: 30px;
  left: 0;
  opacity: 0;
  transition: all 0.5s ease-out;
  transition-delay: 0.2s;
}
.ani_float.move {
  top: 0px;
  opacity: 1;
}

/*
reveal effect のＣＳＳ設定
*/
/* revealContentを最初は消しておく */
.revealContent {
  opacity: 0;
}

/* revealActiveクラスが追加されて.3s後に表示する */
.revealActive .revealContent {
  -webkit-transition-delay: .3s;
  -o-transition-delay: .3s;
  transition-delay: .3s;
  opacity: 1;
}

.revealItem {
  display: block;
  position: relative;
  overflow: hidden;
}

/* before擬似要素の黒いblockにanimationをつけておく */
.revealItem.revealActive::before {
  -webkit-animation: hideFromLeft .3s forwards, showFromLeft .3s forwards .3s;
  animation: hideFromLeft .3s forwards, showFromLeft .3s forwards .3s;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0096E7;
  margin: 1px;
}

/* before擬似要素を左から右にスライドイン */
@-webkit-keyframes hideFromLeft {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes hideFromLeft {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
/* before擬似要素を左から右にスライドアウト */
@-webkit-keyframes showFromLeft {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes showFromLeft {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
/* 画像を使うときはvertical-align bottomをしないと下に余白ができてしまうので注意！！ */
.revealImg {
  width: 300px;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: bottom;
}

.section {
  padding: 50px 0;
  font-size: 15rem;
  line-height: 1.8em;
}
.section.section_odd {
  background-color: #e9eee4;
}
.section .section__block {
  margin: 60px 0;
}
.section .section__block:first-of-type {
  margin-top: 0;
}
.section .section__block:last-of-type {
  margin-bottom: 0;
}
.section .section__group {
  background-color: #F5F5F5;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  padding: 15px;
  margin: 10px 0;
}
.section .section__group .group__label {
  font-weight: bold;
}
.section .section__title {
  text-align: left;
  font-size: 40rem;
  font-weight: 300;
  color: #333333;
  margin-bottom: 35px;
  line-height: 1;
}
.section .section__subtitle {
  font-size: 26rem;
  text-align: left;
  font-weight: 700;
  color: #333333;
  margin-bottom: 55px;
  display: block;
  position: relative;
}
.section .section__subtitle:after {
  content: '';
  background-color: #0096E7;
  width: 87%;
  height: 1px;
  display: inline-block;
  position: absolute;
  top: 12px;
  right: 0;
  z-index: 1;
}
.section .section__subtitle strong {
  background: #fff;
  padding-right: 20px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 3;
}

.container {
  width: 1000px;
  margin: 0 auto;
}

.cms p {
  margin: 0px;
}

.flexiblebox {
  position: relative;
}
.flexiblebox:before {
  content: "";
  display: block;
  padding-top: 75%;
  /* 高さを幅の75%に固定 */
}
.flexiblebox .flexiblebox__inner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.flexbox_list {
  display: -webkit-flex;
  /* Safari */
  display: flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  /* Safari */
  justify-content: space-between;
}

.btn {
  display: inline;
}
.btn a {
  color: #0096E7;
  background-color: #fff;
  display: block;
  width: 210px;
  padding: 10px;
  margin-right: 0;
  margin-left: auto;
}
.btn a:after {
  display: inline-block;
  content: '>';
  margin-left: 10px;
}
.btn a:hover {
  color: #fff;
  background-color: #0096E7;
}

.lines-on-sides {
  position: relative;
  top: 0;
  left: 0;
  text-align: center;
}
.lines-on-sides:before {
  content: "";
  display: block;
  border-top: solid 1px #ccc;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  z-index: 1;
}
.lines-on-sides span {
  background: #fff;
  padding: 0 20px;
  position: relative;
  z-index: 5;
}
.lines-on-sides.sides_left {
  text-align: left;
}
.lines-on-sides.sides_left span {
  padding-left: 0;
}
.lines-on-sides.sides_right {
  text-align: right;
}
.lines-on-sides.sides_right span {
  padding-right: 0;
}

/* ボールド */
.f_bold {
  font-weight: bold;
  font-family: 'Open Sans', Verdana, Roboto, 'Droid Sans', "游ゴシック体", "Yu Gothic", YuGothic, 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic ProN', sans-serif;
}

/* 明朝体 */
.f_mincho {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

/* サンセリフ体 */
.f_sserif {
  font-family: "Open Sans", sans-serif;
}

/* セリフ体 */
.f_serif {
  font-family: "Times New Roman", serif;
}

/* 数字 */
.f_number {
  font-family: "Times New Roman", serif;
}

/* fontawesome の配置 */
.icon-left {
  position: relative;
  top: 0;
  left: 0;
  padding-left: 45px;
}
.icon-left:before {
  content: "\f060";
  font-family: FontAwesome;
  position: absolute;
  top: auto;
  left: 15px;
}

.icon-before:before {
  content: "\f060";
  font-family: FontAwesome;
  margin-right: 0.5em;
}

.icon-after:after {
  content: "\f061";
  font-family: FontAwesome;
  margin-left: 0.5em;
}

.icon-right {
  position: relative;
  top: 0;
  left: 0;
  padding-right: 45px;
}
.icon-right:after {
  content: "\f061";
  font-family: FontAwesome;
  position: absolute;
  top: auto;
  right: 15px;
}

.col-last {
  margin-right: 0;
}

.box-shadow {
  -moz-box-shadow: rgba(0, 0, 0, 0.15) 1px 1px 8px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 1px 1px 8px;
  box-shadow: rgba(0, 0, 0, 0.15) 1px 1px 8px;
}

/* 吹き出し */
.fukidashi {
  display: inline-block;
  background-color: #333;
  border-radius: 5px;
  position: relative;
  padding: 10px 20px;
  text-align: center;
  -moz-box-shadow: rgba(0, 0, 0, 0.25) 1px 1px 5px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.25) 1px 1px 5px;
  box-shadow: rgba(0, 0, 0, 0.25) 1px 1px 5px;
  color: #fff;
}
.fukidashi:after {
  border: 10px solid transparent;
  border-right-color: #333;
  border-left-width: 0;
  left: -10px;
  content: "";
  display: block;
  top: 10px;
  position: absolute;
  width: 0;
}

table.visual {
  border: 1px solid #aaa;
  width: 100%;
  text-align: left;
}
table.visual td, table.visual th {
  padding: 15px 15px;
}
table.visual thead tr {
  border-bottom: 2px solid #000;
  background-color: #f5f5f5;
}
table.visual thead tr th {
  text-align: center;
}
table.visual tfoot {
  border-top: 2px solid #CCC;
  background-color: #f5f5f5;
}
table.visual tbody tr {
  border-bottom: 1px solid #aaa;
}
table.visual tbody tr th {
  background-color: #f5f5f5;
}

ul#breadcrumbs {
  list-style: none;
  line-height: 2em;
  margin: 0 5% 10px 5%;
}
ul#breadcrumbs li {
  float: left;
  margin: 0 1em 0 0;
}
ul#breadcrumbs li a {
  text-decoration: none;
}
ul#breadcrumbs li:before {
  content: "\f054";
  font-family: FontAwesome;
  margin-right: 1em;
}
ul#breadcrumbs li.home img {
  height: 1.5em;
  vertical-align: middle;
  margin-top: -4px;
}
ul#breadcrumbs li.home:before {
  content: "";
  margin: 0;
}

.pagination {
  text-align: center;
}
.pagination span, .pagination a {
  display: inline-block;
  width: 45px;
  border: 1px solid #0096E7;
  text-align: center;
  margin-right: 5px;
  text-decoration: none;
  line-height: 45px;
  color: #0096E7;
}
.pagination span.current, .pagination a.current {
  background-color: #ffd800;
  color: #0096E7;
}
.pagination span.navi_ctrl, .pagination a.navi_ctrl {
  border: none;
  background: #ffffff no-repeat center;
  background-size: 18px auto;
  width: 20px;
  height: 45px;
  vertical-align: middle;
  margin-top: -4px;
}
.pagination span.navi_ctrl.navi_first, .pagination a.navi_ctrl.navi_first {
  background-image: url(../images/common/icons/navi_first.svg);
}
.pagination span.navi_ctrl.navi_prev, .pagination a.navi_ctrl.navi_prev {
  background-image: url(../images/common/icons/navi_prev.svg);
}
.pagination span.navi_ctrl.navi_next, .pagination a.navi_ctrl.navi_next {
  background-image: url(../images/common/icons/navi_next.svg);
}
.pagination span.navi_ctrl.navi_end, .pagination a.navi_ctrl.navi_end {
  background-image: url(../images/common/icons/navi_end.svg);
}

input, select, textarea {
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", sans-serif;
}

input {
  padding: 4px 0;
}
input.long {
  width: 840px;
}
input.middle {
  width: 420px;
}
input.short {
  width: 120px;
}
input.mini {
  width: 80px;
}
input[type=button], input[type=submit] {
  cursor: pointer;
  transition: all .4s;
}
input::placeholder {
  color: #ccc;
}

select {
  padding: 4px 10px;
  height: 45px;
}

textarea {
  padding: 15px 10px;
  line-height: 1.5em;
}
textarea.larget {
  width: 100%;
  height: 250px;
}
textarea.middle {
  width: 100%;
  height: 250px;
}
textarea.small {
  width: 100%;
  height: 250px;
}
textarea::placeholder {
  color: #ccc;
}

header#header {
  background-color: #fff;
  color: #fff;
  height: 120px;
  padding: 0 15px;
}
header#header a {
  color: #333333;
}
header#header .header__logo {
  width: 60%;
  text-align: left;
  font-size: 2em;
  line-height: 120px;
}
header#header .header__logo .fa {
  margin-right: 0.5em;
}
header#header .header__logo .logo__txt {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  text-decoration: none;
  font-size: 36rem;
}
header#header .header__contact-left {
  width: 17%;
}
header#header .header__contact {
  width: 20%;
  margin: 15px 0;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
header#header .header__contact.header__contact-left {
  align-items: flex-start;
}
header#header .header__contact .contact__arrow {
  display: inline-block;
  font-size: 15rem;
  font-weight: 700;
}
header#header .header__contact .contact__arrow:before {
  display: inline-block;
  content: '▶︎';
  font-size: 10px;
  color: #0096E7;
  margin-right: 10px;
  position: relative;
  top: -3px;
}
header#header .header__contact .contact__mail {
  background: #EFEFEF;
  padding: 5px 10px;
  border-radius: 5px;
  width: 100%;
  text-align: center;
  line-height: 2.5em;
}
header#header .header__contact .contact__mail a {
  display: inline-block;
  position: relative;
}
header#header .header__contact .contact__mail a:before {
  display: inline-block;
  content: '';
  background-image: url("../images/topics/mail.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 24px;
  height: 24px;
  position: relative;
  top: 7px;
  left: 0;
  bottom: 0;
  margin-right: 15px;
}
header#header .header__contact .contact__mail-small {
  margin-top: 3px;
  font-size: 12px;
  text-align: right;
  display: block;
  width: 100%;
}
header#header .header__contact .contact__tel {
  font-size: 30rem;
  line-height: 1em;
  text-align: center;
}
header#header .header__contact .contact__open {
  padding: 0;
  text-align: center;
}

#globalnavi {
  background-color: #fff;
  text-align: center;
  font-size: 14rem;
  border-bottom: 5px solid #0096E7;
  margin-bottom: 20px;
}
#globalnavi a {
  text-decoration: none;
}
#globalnavi .dropdown {
  z-index: 597;
  list-style: none;
  margin: 0 auto 0;
  padding: 0;
}
#globalnavi .dropdown li, #globalnavi .dropdown .gnavi__sub {
  list-style: none;
  margin: 0;
  padding: 0;
}
#globalnavi .dropdown li {
  width: 20%;
  float: left;
  line-height: 1.3em;
  vertical-align: middle;
  zoom: 1;
  position: relative;
}
#globalnavi .dropdown li.home {
  width: 10%;
}
#globalnavi .dropdown li.home .fa {
  font-size: 25rem;
}
#globalnavi .dropdown li.row2 a, #globalnavi .dropdown li.row2 span, #globalnavi .dropdown li.row2 .gmenu_menu {
  line-height: 1.3em;
  padding: 0.7em 0;
}
#globalnavi .dropdown li.open {
  background-color: #F2F7EE;
}
#globalnavi .dropdown li a, #globalnavi .dropdown li span, #globalnavi .dropdown li .gmenu_menu {
  display: block;
  width: 100%;
  line-height: 5em;
  font-size: 14rem;
  font-weight: 700;
  color: #333333;
}
#globalnavi .dropdown li a:hover, #globalnavi .dropdown li span:hover, #globalnavi .dropdown li .gmenu_menu:hover {
  background-color: #3280ab;
  color: #fff;
}
#globalnavi .dropdown li a .icon, #globalnavi .dropdown li span .icon, #globalnavi .dropdown li .gmenu_menu .icon {
  height: 24px;
  display: block;
  margin: 0 auto 10px auto;
}
#globalnavi .dropdown li .gnavi__sub {
  width: 100%;
  -moz-box-shadow: rgba(0, 0, 0, 0.25) 2px 2px 10px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.25) 2px 2px 10px;
  box-shadow: rgba(0, 0, 0, 0.25) 2px 2px 10px;
  background-color: #fff;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 598;
  width: 220px;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transition: all 0.1s linear;
}
#globalnavi .dropdown li .gnavi__sub li {
  width: 100%;
  float: none;
  line-height: 50px;
  height: auto;
}
#globalnavi .dropdown li .gnavi__sub li:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
#globalnavi .dropdown li .gnavi__sub li.dir {
  background: url(../images/common/icons/right-arrow_gray.png) no-repeat center right 15px;
  background-size: 7px auto;
}
#globalnavi .dropdown li .gnavi__sub li .gnavi__sub_right {
  top: 0;
  left: 220px;
  padding: 15px 0;
}
#globalnavi .dropdown li .gnavi__sub li .gnavi__sub_right li {
  border: none;
  line-height: 2em;
}
#globalnavi .dropdown li .gnavi__sub li .gnavi__sub_right li a {
  line-height: 2.5em;
}
#globalnavi .dropdown li .gnavi__sub a {
  line-height: 0em;
  padding: 0;
  -webkit-transition: all 0.2s ease-in-out;
}
#globalnavi .dropdown li.hover, #globalnavi .dropdown li:hover {
  z-index: 599;
  cursor: default;
}
#globalnavi .dropdown li:hover > .gnavi__sub {
  visibility: visible;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
}
#globalnavi .dropdown li:hover > .gnavi__sub a {
  line-height: 4em;
}
#globalnavi .dropdown li.rtl ul {
  top: 100%;
  right: 0;
  left: auto;
}
#globalnavi .dropdown li.rtl ul ul {
  top: 1px;
  right: 99%;
  left: auto;
}
#globalnavi.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}
#globalnavi.fixed a:hover {
  border-bottom: 1px solid #88C859;
}
#globalnavi.gnavi_wide li {
  position: static;
}

#mainvisual {
  background: url(../images/sample/mainvisual.jpg) no-repeat;
  background-size: 100% auto;
  margin-bottom: 30px;
}
#mainvisual:before {
  padding-top: 30.5%;
}
#mainvisual .mainvisual__title {
  text-align: left;
  font-size: 35rem;
  font-weight: bold;
  color: #fff;
  margin: 120px 0 0 0;
  margin-bottom: 5px;
}
#mainvisual .mainvisual__sub {
  text-align: left;
  font-size: 20rem;
  color: #fff;
}

.page_title {
  background: #eee;
  margin: 0 0 30px 0px;
  font-size: 20rem;
  line-height: 3.5em;
}

.section_title {
  background-color: #F1F4F0;
  margin: 0 0 20px 0px;
  font-size: 18rem;
  line-height: 3em;
  text-align: left;
  padding: 0 20px;
}

.section_label {
  border-left: 3px solid #aaa;
  line-height: 2em;
  text-align: left;
  padding-left: 1em;
  font-size: 16rem;
  font-weight: bold;
}

footer#footer {
  background-color: #0096E7;
}
footer#footer .footer__menu .menu__col {
  width: 25%;
}

.footer__copyright {
  background: #0074b2;
}

#main {
  margin: 0px auto;
  padding: 20px 0;
  text-align: center;
  background-color: #fff;
}

.button {
  background-color: #FF8000;
  color: #fff;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  text-decoration: none;
  padding: 1em 2.5em;
  display: inline-block;
}
.button:hover {
  color: #fff;
  background-color: #FEA54F;
  text-decoration: none;
}
.button.button_imp {
  background-color: #FFE400;
  color: #333;
}
.button.button_imp:hover {
  background-color: #FFEC4D;
}
.button.button_gst {
  border: 1px solid #FF8000;
  background-color: transparent;
  color: #FF8000;
}
.button.button_gst:hover {
  border: 1px solid #FEA54F;
}
.button.button_wide {
  width: 100%;
  font-size: 20rem;
  line-height: 2.5em;
}
.button.button_shadow {
  -moz-box-shadow: rgba(0, 0, 0, 0.15) 0 5px 0;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 5px 0;
  box-shadow: rgba(0, 0, 0, 0.15) 0 5px 0;
}
.button.button_banner {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.button.button_big {
  font-size: 20rem;
  padding: 20px 40px;
}
.button.button_ico {
  position: relative;
  top: 0;
  left: 0;
  padding: 20px 20px;
  font-size: 18rem;
}
.button.button_ico .icon {
  height: 30px;
  position: absolute;
  top: 15px;
  left: 20px;
}
.button.button_ico .icon_r {
  height: 30px;
  position: absolute;
  top: 15px;
  right: 20px;
}

.banner {
  background-color: #eee;
  display: block;
  text-decoration: none;
  -webkit-background-size: 100% auto;
  background-size: 100% auto;
}
.banner .banner__label {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 20px 0;
  border: 6px solid rgba(21, 107, 166, 0.8);
  color: #333;
  font-weight: 600;
  text-shadow: #fff -2px 0px 0px, #fff -2px -2px 0px, #fff 0px -2px 0px, #fff 2px -2px 0px, #fff 2px 0px 0px, #fff 2px 2px 0px, #fff 0px 2px 0px, #fff -2px 2px 0px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.banner .banner__label .banner__title {
  font-weight: 800;
  font-size: 20rem;
  margin-bottom: 5px;
}
.banner:hover {
  text-decoration: none;
}
.banner:hover .banner__label {
  background-color: rgba(255, 255, 255, 0.8);
  border: 6px solid #156ba6;
}

#social_media {
  margin-bottom: 10px;
}
#social_media .sns_btn {
  float: left;
  width: 60px;
  height: 56px;
  margin-right: 5px;
  padding: 6px 0;
  text-align: center;
  color: #fff;
}
#social_media .sns_btn .sns_btn__icon {
  background-color: #000;
  margin-bottom: 2px;
}
#social_media .sns_btn .sns_btn__icon img {
  height: 20px;
}
#social_media .sns_btn .sns_btn__icon.full {
  height: 100%;
}
#social_media .sns_btn .sns_btn__icon.full img {
  margin: 11px 0;
}
#social_media .sns_btn.fb {
  background-color: #3B5998;
}
#social_media .sns_btn.fb .sns_btn__icon {
  background-color: #3B5998;
}
#social_media .sns_btn.tweet {
  background-color: #2CA7E0;
}
#social_media .sns_btn.tweet .sns_btn__icon {
  background-color: #2CA7E0;
}
#social_media .sns_btn.hatena {
  background-color: #5279E7;
}
#social_media .sns_btn.hatena .sns_btn__icon {
  background-color: #5279E7;
}
#social_media .sns_btn.g_plus {
  background-color: #DB4437;
}
#social_media .sns_btn.g_plus .sns_btn__icon {
  background-color: #DB4437;
}
#social_media .sns_btn.feedly {
  background-color: #0F8C0A;
}
#social_media .sns_btn.feedly .sns_btn__icon {
  background-color: #0F8C0A;
}
#social_media .sns_btn.line {
  background-color: #00B900;
}
#social_media .sns_btn.line .sns_btn__icon {
  background-color: #00B900;
}
#social_media a {
  display: block;
}
#social_media .count {
  display: inline-block;
  padding: 0;
}
#social_media .count_l {
  position: absolute;
  top: 7px;
  left: -5px;
}

#mv {
  position: relative;
}
#mv .page-header {
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
}
#mv .page-header .page-title {
  font-size: 33rem;
  font-weight: 700;
  text-shadow: 0px 0px 12px #333333;
  color: #fff;
}

/*
　レスポンシブ対応
　PCでは隠しておくもの
 */
.drawer {
  display: none;
}

.hidden-pc {
  display: none;
}

@media screen and (max-width: 768px) {
  .hidden-pc {
    display: block;
  }

  html {
    font-size: 6.25%;
  }

  body {
    font-size: 15rem;
    padding-top: 62px;
  }

  .visible-sp-block {
    display: block !important;
  }

  .visible-sp-inline {
    display: inline !important;
  }

  br.sp {
    display: inline !important;
  }

  .container-fluid, .container {
    width: 100%;
  }

  .flexbox_list_sp {
    display: -webkit-flex;
    /* Safari */
    display: flex;
    -webkit-flex-wrap: wrap;
    /* Safari */
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    /* Safari */
    justify-content: space-between;
  }

  .container {
    padding: 0 15px;
  }

  #anc_top {
    display: block;
    padding-top: 60px;
    margin-top: -60px;
  }

  input {
    line-height: 2em;
  }
  input[type="button"], input[type="submit"] {
    -webkit-appearance: none;
    width: 100%;
  }
  input.long {
    width: 100%;
  }
  input.middle {
    width: 100%;
  }
  input.short {
    width: 30%;
  }

  textarea.larget {
    width: 100%;
  }
  textarea.middle {
    width: 100%;
  }
  textarea.small {
    width: 100%;
  }

  span.anchor a {
    top: -80px;
  }

  header#header {
    position: fixed;
    top: 0;
    left: 0;
    height: auto;
    padding: 0 15px;
    width: 100%;
    z-index: 10;
  }
  header#header .header__logo {
    float: left;
    line-height: 60px;
    font-size: 1.4em;
    margin: 0;
    width: 50%;
  }
  header#header .header__logo img {
    vertical-align: middle;
  }
  header#header .header__logo .logo__txt {
    font-size: 24rem;
  }
  header#header .header__menu {
    float: right;
    width: 80px;
    margin-top: 5px;
  }
  header#header .header__menu .col {
    float: left;
    font-size: 10rem;
    text-align: center;
    width: 52px;
    margin: 0 1%;
    color: #B6D23E;
    border: 1px solid #ddd;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    height: 52px;
    line-height: 15px;
    box-sizing: border-box;
    background-color: #fff;
    margin-right: 5px;
  }
  header#header .header__menu .col:last-of-type {
    margin: 0;
  }
  header#header .header__menu .col a {
    display: block;
    color: #333333;
    text-decoration: none;
  }
  header#header .header__menu .col .fa {
    font-size: 26rem;
    margin-top: 5px;
  }
  header#header .header__menu .col .fa.fa-mobile {
    font-size: 20rem;
  }
  header#header .header__menu .col .freedial {
    margin-top: 12px;
    margin-bottom: 3px;
  }

  #mv {
    height: 180px;
  }
  #mv .page-header {
    top: 0;
  }
  #mv .page-header .page-title {
    font-size: 22rem;
    line-height: 180px;
  }

  /* メインビジュアル */
  #mainvisual .mainvisual__title {
    text-align: center;
    margin: 10% 0 0 0;
    font-size: 22rem;
  }

  .drawer {
    display: block;
    text-align: left;
  }
  .drawer.drawer--right .drawer-nav {
    right: -75%;
  }
  .drawer.drawer--right.drawer-open .drawer-nav {
    right: 0;
  }
  .drawer.drawer--right.drawer-open .drawer-hamburger {
    right: 0;
  }
  .drawer .drawer-hamburger {
    top: 0;
    right: 0;
    width: 25px;
    height: 20px;
    padding: 20px 16px;
    z-index: 1000;
  }
  .drawer .drawer-hamburger:hover {
    background-color: #eee;
    width: 25px;
    height: 20px;
    padding: 20px 16px;
  }
  .drawer .drawer-nav {
    top: 63px;
    width: 75%;
    z-index: 2000;
  }
  .drawer .drawer-menu li.menu__parent {
    line-height: 1.4em;
    padding: 15px 15px;
    background: #0096E7;
  }
  .drawer .drawer-menu li.menu__item {
    background: #0096E7;
    border-bottom: 1px dotted #ccc;
    line-height: 1.4em;
  }
  .drawer .drawer-menu li.menu__item a, .drawer .drawer-menu li.menu__item > span {
    text-decoration: none;
    color: #fff;
    display: block;
    padding: 15px 15px;
  }
  .drawer .drawer-menu li.menu__item.dir span {
    background: url(../images/common/icons/plus_w.png) no-repeat right 20px center;
    background-size: 12px;
    display: block;
  }
  .drawer .drawer-menu li.menu__item.dir ul {
    margin-left: 20px;
    display: none;
    line-height: 1.8em;
    margin: 5px 0 0 20px;
    background: #8cc8c0;
    padding: 0 0 0 20px;
  }
  .drawer .head-nav .nav__item {
    padding: 10px;
    border-bottom: 1px dotted #333333;
  }

  .drawer-hamburger-icon {
    margin-top: 0;
  }
  .drawer-hamburger-icon:after, .drawer-hamburger-icon:before {
    position: absolute;
    top: -8px;
    left: 0px;
  }
  .drawer-hamburger-icon:after {
    top: 8px;
  }

  footer#footer {
    text-align: center;
    padding-top: 1em;
    padding-bottom: 1em;
  }
  footer#footer .footer-totop {
    position: relative;
    top: 0;
    left: 0;
    color: #fff;
    font-size: 0.9em;
  }
  footer#footer .footer-totop .fa {
    font-size: 1.7em;
  }

  footer#footer-sp {
    text-align: center;
    border: none;
    /* 先頭へ戻るボタン */
  }
  footer#footer-sp .footer__top {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    background-color: #0096E7;
    padding: 15px 0;
    color: #fff;
    font-size: 20rem;
  }
  footer#footer-sp .footer__top:before {
    content: "";
  }
  footer#footer-sp .footer__contact {
    margin-bottom: 0;
    list-style: none;
  }
  footer#footer-sp .footer__contact li {
    height: auto;
  }
  footer#footer-sp .footer__contact a {
    display: block;
    padding: 10px 0;
    font-size: 13px;
    color: #333333;
    line-height: 1em;
  }
  footer#footer-sp .footer__contact a .fa {
    font-size: 22rem;
    margin-bottom: 2px;
  }
  footer#footer-sp .footer-totop-sp {
    text-align: center;
    background-color: #0096E7;
    padding: 7px 0;
    font-size: 12rem;
    line-height: 1.2em;
  }
  footer#footer-sp .footer-totop-sp a {
    color: #fff;
    font-size: 0.9em;
  }
  footer#footer-sp .footer-totop-sp a .fa {
    font-size: 1.7em;
  }
  footer#footer-sp .footer__copyright {
    font-size: 10rem;
    padding: 5px 0 5px 0;
    color: #fff;
  }

  /* ページタイトル */
  #page-title {
    font-size: 18rem;
    padding: 50px 0;
  }

  #breadcrumbs {
    padding: 0 15px;
  }

  .pagination {
    text-align: left;
  }
  .pagination span, .pagination a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    margin-bottom: 3px;
  }

  .section {
    padding: 30px 0;
    margin: 0;
    font-size: 13rem;
  }
  .section .section__title {
    text-align: left;
    font-size: 30rem;
    font-weight: 300;
    color: #333333;
    margin-bottom: 15px;
  }
  .section .section__subtitle {
    font-size: 22rem;
    margin-bottom: 40px;
  }
  .section .section__label {
    text-align: left;
    font-size: 15rem;
    margin-bottom: 10px;
  }
  .section .section__label .fa {
    margin-right: 0.5em;
  }
  .section .section_blc {
    width: 90%;
    margin: 0 auto;
    border: 1px dashed #ddd;
    padding: 100px 0;
    margin-bottom: 15px;
    text-align: left;
  }

  /* パネル型ボタン */
  .buttons-panel {
    margin-bottom: 20px;
  }
  .buttons-panel li {
    background-color: #eee;
    height: 100px;
    width: 50%;
    float: left;
    border-bottom: 1px solid #fff;
    box-sizing: border-box;
  }
  .buttons-panel li:nth-child(2n) {
    border-left: 1px solid #fff;
  }

  /* ワイド型ボタン */
  .button {
    display: block;
    text-align: center;
    padding: 10px 0;
    margin-bottom: 10px;
    text-decoration: none;
    line-height: 1.4em;
  }
  .button.ico-l:before {
    content: "\f14a";
    font-family: FontAwesome;
    margin-right: 0.5em;
  }
  .button.ico-ll:before {
    float: left;
    content: "\f14a";
    font-family: FontAwesome;
    margin-left: 1em;
  }
  .button.ico-r:after {
    content: "\f14a";
    font-family: FontAwesome;
    margin-left: 0.5em;
  }
  .button.ico-rr:before {
    float: right;
    content: "\f14a";
    font-family: FontAwesome;
    margin-right: 1em;
  }
  .button .button_ico {
    width: 100%;
  }

  /* オーバーライドされないようにこの位置 */
  .hidden-sp {
    display: none;
  }
}
