@charset "UTF-8";
/*! このファイルを変更する場合は「.scss」から変更して下さい */
/*! 「.scss」ファイルがつかえない場合はcustom.cssを変更する */
/* ボタンカラー */
/* フォント系 */
/*
	Noto Sans使用する場合
	'Noto Sans JP', 'Open Sans', Verdana, Roboto, 'Droid Sans'
*/
/*! このファイルを変更する場合は「.scss」から変更して下さい */
/*! 「.scss」ファイルがつかえない場合はcustom.cssを変更する */
/* スマホスタイル */
.visible-sp-block,
.visible-sp-inline,
br.sp {
  display: none !important;
}

html {
  font-size: 10px;
  font-size: 6.25%;
}

body {
  color: #484b53;
  font-size: 15rem;
  -webkit-text-size-adjust: 100%;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

* {
  margin: 0px;
  padding: 0px;
}

em,
strong {
  font-weight: inherit;
  font-style: inherit;
}

form {
  display: inline;
}

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: #0096bd;
}

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;
  transform: translateY(30px);
}
.ani.ani_fadeup.move {
  opacity: 1;
  transform: translateY(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: #0096bd;
  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: 100px 0;
}
.section.section_odd {
  background-color: #dfecf9;
}
.section .section__title {
  width: 1010px;
  height: 86px;
  margin: 0 -5px 60px;
  padding-top: 21px;
  background: url(../images/title_bg.png) no-repeat center top;
  background-size: 100%;
  line-height: 1;
  text-align: center;
}
.section .section__description {
  margin-bottom: 0;
  font-size: 19rem;
  line-height: 2.5;
  letter-spacing: 0.1em;
  text-align: center;
}
.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;
  border-radius: 10px;
  padding: 15px;
  margin: 10px 0;
}
.section .section__group .group__label {
  font-weight: bold;
}

.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;
}

.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;
}

/* 吹き出し */
.fukidashi {
  display: inline-block;
  background-color: #333;
  border-radius: 5px;
  position: relative;
  padding: 10px 20px;
  text-align: center;
  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 #0096bd;
  text-align: center;
  margin-right: 5px;
  text-decoration: none;
  line-height: 45px;
  color: #0096bd;
}
.pagination span.current,
.pagination a.current {
  background-color: #ffd800;
  color: #0096bd;
}
.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 {
  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 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: #ffe33f;
  z-index: 598;
}
header#header.active {
  position: fixed;
  animation: headerAnime .4s ease;
  background: rgba(255, 227, 63, 0.9);
}
header#header > .container {
  height: 100px;
  align-items: center;
}
header#header a {
  text-decoration: none;
}
header#header .header__logo {
  margin: 0;
  color: #0096bd;
  font-size: 20rem;
  font-weight: bold;
  letter-spacing: 0.09em;
  line-height: 1;
}
header#header .header__logo a {
  color: currentColor;
  font-weight: bold;
}
header#header .header__navi {
  margin-left: auto;
  padding: 10px 20px;
  background: #fff;
  border-radius: 100vmax;
  font-size: 14rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
header#header .header__navi ul {
  list-style-type: none;
}
header#header .header__navi ul li {
  padding: 0 15px;
}
header#header .header__navi ul li a {
  color: #484b53;
  font-weight: 500;
}
header#header .header__navi ul li a::before {
  content: "●";
  padding-right: 1px;
  padding-bottom: 3px;
  color: #0096bd;
  font-size: 80%;
}

@keyframes headerAnime {
  0% {
    opacity: 0;
    top: -80px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
#globalnavi {
  background-color: #fff;
  text-align: center;
  font-size: 14rem;
  border-bottom: 1px solid #aaa;
}
#globalnavi a {
  text-decoration: none;
}
#globalnavi .dropdown {
  z-index: 597;
  list-style: none;
  margin: 0;
  padding: 0;
}
#globalnavi .dropdown li,
#globalnavi .dropdown .gnavi__sub {
  list-style: none;
  margin: 0;
  padding: 0;
}
#globalnavi .dropdown li {
  border-right: 1px dotted #aaa;
  width: 15%;
  height: 4em;
  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: 1em;
  color: #333333;
  padding: 1.5em 0;
}
#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%;
  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;
  width: 100%;
}
#globalnavi.fixed a:hover {
  border-bottom: 1px solid #88C859;
}
#globalnavi.gnavi_wide li {
  position: static;
}

.page_title {
  background: #eee;
  margin: 0 0 30px 0px;
  font-size: 20rem;
  line-height: 3.5em;
}

footer#footer {
  background: #0096bd;
}
footer#footer > .container {
  height: 100px;
  align-items: center;
}
footer#footer a {
  text-decoration: none;
}
footer#footer .footer__logo {
  margin: 0;
  color: #fff;
  font-size: 20rem;
  font-weight: bold;
  letter-spacing: 0.09em;
  line-height: 1;
}
footer#footer .footer__logo a {
  color: currentColor;
  font-weight: bold;
}
footer#footer .footer__navi {
  margin-left: auto;
  border-radius: 100vmax;
  font-size: 14rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
footer#footer .footer__navi ul {
  list-style-type: none;
}
footer#footer .footer__navi ul li {
  padding: 0 15px;
}
footer#footer .footer__navi ul li a {
  color: #fff;
  font-weight: 500;
}
footer#footer .footer__navi ul li a::before {
  content: "●";
  padding-right: 1px;
  padding-bottom: 3px;
  color: #ffe33f;
  font-size: 80%;
}

.button {
  background-color: #FF8000;
  color: #fff;
  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_banner {
  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;
}

#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;
}

/*
　レスポンシブ対応
　PCでは隠しておくもの
 */
.drawer {
  display: none;
}

/*! このファイルを変更する場合は「.scss」から変更して下さい */
/*! 「.scss」ファイルがつかえない場合はcustom.cssを変更する */
@media screen and (max-width: 768px) {
  html {
    font-size: 6.25%;
  }

  body {
    font-size: 14rem;
  }

  .visible-sp-block {
    display: block !important;
  }

  .visible-sp-inline {
    display: inline !important;
  }

  br.sp {
    display: inline !important;
  }

  .container-fluid,
  .container {
    width: 100%;
  }

  .container {
    padding: 0 40px;
  }

  #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;
    left: 0;
    top: 0;
    width: 100%;
    background: #ffe33f;
  }
  header#header.active {
    position: fixed;
    animation: none;
    background: #ffe33f;
  }
  header#header > .container {
    height: 80px;
    padding: 0 20px;
  }
  header#header .header__logo {
    font-size: 16rem;
    letter-spacing: 0.09em;
  }
  header#header .header__navi {
    display: none;
    position: fixed;
    left: 0;
    top: 80px;
    width: 100%;
    padding: 10px 20px 60px;
    background: #ffe33f;
    border-radius: 0;
    font-size: 16rem;
  }
  header#header .header__navi ul {
    display: block;
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
  }
  header#header .header__navi ul li {
    margin-top: 20px;
    padding: 0;
  }
  header#header .header__button {
    width: 60px;
    height: 60px;
    margin-left: auto;
    margin-right: -10px;
    padding-top: 30px;
  }
  header#header .header__button.open .bar {
    background: transparent;
  }
  header#header .header__button.open .bar:before {
    transform: rotate(45deg) translate(6px, 6px);
  }
  header#header .header__button.open .bar:after {
    transform: rotate(-45deg) translate(8px, -8px);
  }
  header#header .header__button .bar {
    position: relative;
    display: block;
    width: 30px;
    height: 3px;
    margin: 0 auto;
    background: #0096bd;
    border-radius: 2px;
  }
  header#header .header__button .bar:before, header#header .header__button .bar:after {
    content: "";
    position: absolute;
    left: 0;
    display: block;
    width: 30px;
    height: 3px;
    background: #0096bd;
    border-radius: 2px;
  }
  header#header .header__button .bar:before {
    top: -10px;
  }
  header#header .header__button .bar:after {
    top: 10px;
  }

  /* メインビジュアル */
  #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: 20px;
    height: 20px;
    padding: 10px;
    z-index: 1000;
  }
  .drawer .drawer-hamburger:hover {
    background-color: #eee;
    width: 20px;
    height: 20px;
    padding: 10px;
  }
  .drawer .drawer-nav {
    top: 40px;
    width: 75%;
    z-index: 2000;
  }
  .drawer .drawer-menu li.menu__parent {
    line-height: 1.4em;
    padding: 15px 15px;
    background: #0096bd;
  }
  .drawer .drawer-menu li.menu__item {
    background: #0096bd;
    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-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 {
    padding: 40px 0;
  }
  footer#footer > .container {
    height: auto;
  }
  footer#footer .footer__logo {
    width: 100%;
    margin-top: 30px;
    font-size: 20rem;
    letter-spacing: 0.09em;
    text-align: center;
  }
  footer#footer .footer__navi {
    width: 100%;
    border-radius: 0;
    font-size: 11rem;
    letter-spacing: 0.02em;
    text-align: center;
    order: -1;
  }
  footer#footer .footer__navi ul {
    display: block;
  }
  footer#footer .footer__navi ul li {
    padding: 0;
  }
  footer#footer .footer__navi ul li + li {
    margin-top: 12px;
  }

  /* ページタイトル */
  #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: 35px 0;
    margin: 0;
    font-size: 13rem;
  }
  .section .section__title {
    width: 306px;
    height: 52px;
    margin: 0 auto 30px;
    padding-top: 14px;
    background: url(../images/title_bg_sp.png) no-repeat center top;
    background-size: 100%;
  }
  .section .section__title img {
    width: auto;
    height: 21px;
    object-fit: cover;
  }
  .section .section__description {
    font-size: 14rem;
    letter-spacing: 0.03em;
  }
  .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;
  }
}
/* スマホ */
