@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 {
  min-width: 980px;
  font-size: 14rem;
  -webkit-text-size-adjust: 100%;
  line-height: 2.4;
}

* {
  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: #001e5a;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 標準アニメーション準備 */
.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 {
  transition-delay: 0.3s;
  opacity: 1;
}

.revealItem {
  display: block;
  position: relative;
  overflow: hidden;
}

/* before擬似要素の黒いblockにanimationをつけておく */
.revealItem.revealActive::before {
  animation: hideFromLeft 0.3s forwards, showFromLeft 0.3s forwards 0.3s;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #001e5a;
  margin: 1px;
}

/* before擬似要素を左から右にスライドイン */
@keyframes hideFromLeft {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
/* before擬似要素を左から右にスライドアウト */
@keyframes showFromLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}
/* 画像を使うときはvertical-align bottomをしないと下に余白ができてしまうので注意！！ */
.revealImg {
  width: 300px;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: bottom;
}

.section {
  padding: 80px 0;
}
.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: 96%;
  max-width: 890px;
  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 {
  /* Safari */
  display: flex;
  /* Safari */
  flex-wrap: wrap;
  /* 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: "avenir-lt-pro", "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 #001e5a;
  text-align: center;
  margin-right: 5px;
  text-decoration: none;
  line-height: 45px;
  color: #001e5a;
}
.pagination span.current,
.pagination a.current {
  background-color: #ffd800;
  color: #001e5a;
}
.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 0.4s;
}
input::-moz-placeholder {
  color: #ccc;
}
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::-moz-placeholder {
  color: #ccc;
}
textarea::placeholder {
  color: #ccc;
}

header#header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-width: 980px;
  height: 160px;
  padding: 55px 0 48px;
  z-index: 596;
}
header#header .container {
  max-width: 910px;
  align-items: center;
}
header#header .header__logo {
  margin-right: auto;
  line-height: 1;
}
header#header .lang__navi {
  margin-left: 40px;
  letter-spacing: 0.1em;
  line-height: 1;
}
header#header .lang__navi .navi__item {
  position: relative;
  display: inline-block;
  padding: 2px 8px;
  font-weight: 900;
}
header#header .lang__navi .navi__item + .navi__item {
  border-left: 1px solid #a4abb3;
}
header#header .lang__navi .navi__item.current {
  color: #545454;
}
header#header .lang__navi .navi__item.current::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  margin: 0 auto;
  display: block;
  width: 8px;
  height: 8px;
  background: linear-gradient(to right, rgb(0, 100, 180) 0%, rgb(0, 30, 90) 100%);
  border-radius: 50%;
}
header#header .lang__navi a {
  color: #ccc;
  font-weight: 900;
  text-decoration: none;
}
header#header .lang__navi a:hover {
  color: #001e5a;
}

#globalnavi a {
  text-decoration: none;
}
#globalnavi .dropdown {
  z-index: 597;
  list-style: none;
  font-size: 12rem;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}
#globalnavi .dropdown li,
#globalnavi .dropdown .gnavi__sub {
  list-style: none;
  margin: 0;
  padding: 0;
}
#globalnavi .dropdown li {
  position: relative;
  padding: 0 14px;
}
#globalnavi .dropdown li + li {
  border-left: 1px solid #a4abb3;
}
#globalnavi .dropdown li.home {
  letter-spacing: 0.1em;
}
#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 {
  position: relative;
  display: inline-block;
  padding: 2px 0;
  color: currentColor;
  text-decoration: none;
}
#globalnavi .dropdown li a::before,
#globalnavi .dropdown li > span::before,
#globalnavi .dropdown li .gmenu_menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  margin: 0 auto;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 4px 6px 4px;
  border-color: transparent transparent #001e5a transparent;
  opacity: 0;
  transition: opacity 0.5s;
}
#globalnavi .dropdown li a:hover::before,
#globalnavi .dropdown li > span:hover::before,
#globalnavi .dropdown li .gmenu_menu:hover::before {
  opacity: 1;
}
#globalnavi .dropdown li .icon_blank {
  position: absolute;
  right: -15px;
  top: -4px;
}
#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;
}

.section__title {
  margin-bottom: 60px;
  color: #001e5a;
  font-size: 42rem;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.1em;
}
.section__title .f_sserif {
  display: block;
  margin-bottom: 70px;
  color: #ceced2;
  font-size: 14rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
.section__title .f_sserif .num {
  display: block;
  font-size: 180rem;
  font-weight: 200;
  font-family: "avenir-next-lt-pro", "avenir-lt-pro", "Open Sans", sans-serif;
  line-height: 1;
  letter-spacing: 0;
}

footer#footer {
  line-height: 1;
}
footer#footer .footer__bg {
  padding: 45px 0;
  background-color: #001e5a;
  color: #fff;
}
footer#footer .flexbox_list {
  align-items: center;
}
footer#footer .footer__navi {
  font-size: 12rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  list-style-type: none;
}
footer#footer .footer__navi li {
  padding: 0 12px;
}
footer#footer .footer__navi li + li {
  border-left: 1px solid currentColor;
}
footer#footer .footer__navi li:nth-of-type(1) {
  letter-spacing: 0.1em;
}
footer#footer .footer__navi a {
  position: relative;
  display: inline-block;
  color: currentColor;
  text-decoration: none;
}
footer#footer .footer__navi a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  margin: 0 auto;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 4px 6px 4px;
  border-color: transparent transparent #fff transparent;
  opacity: 0;
  transition: opacity 0.5s;
}
footer#footer .footer__navi a:hover::before {
  opacity: 1;
}
footer#footer .footer__navi .icon_blank {
  position: absolute;
  right: -15px;
  top: -4px;
}
footer#footer .footer__copyright {
  width: 100%;
  padding: 50px 10px;
  color: #001e5a;
  font-size: 12rem;
  font-family: "Avenir LT Pro 45 Book", sans-serif;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}

.button {
  border: 2px solid #001e5a;
  color: #001e5a;
  border-radius: 100vmax;
  text-decoration: none;
  padding: 11px 40px 10px;
  max-width: 100%;
  font-size: 19rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.5;
  display: inline-block;
  position: relative;
}
.button .icon_blank {
  position: absolute;
  right: -25px;
  top: -5px;
}
.button:hover {
  color: #fff;
  background-color: #001e5a;
  text-decoration: none;
}
.button.button_imp {
  background-color: #FFE400;
  color: #333;
}
.button.button_imp:hover {
  background-color: #FFEC4D;
}
.button.button_gst {
  border: 1px solid #001e5a;
  background-color: transparent;
  color: #001e5a;
}
.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;
}

#side_navi {
  position: fixed;
  right: 40px;
  top: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  font-size: 12rem;
  line-height: 1;
  z-index: 600;
}
#side_navi .navi__button {
  margin-bottom: 20px;
  background: url(../images/icon_menu.svg) no-repeat, url(../images/icon_menu02.svg) no-repeat;
  background-size: 100%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  text-align: left;
  text-indent: -9999px;
}
#side_navi .navi__button.show {
  background: url(../images/icon_menu02.svg) no-repeat;
  background-size: 100%;
}
#side_navi .navi__list {
  position: relative;
  height: -moz-max-content;
  height: max-content;
  line-height: 1.2;
  letter-spacing: 0.05em;
  list-style-type: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s;
}
#side_navi .navi__list.show {
  opacity: 1;
  visibility: visible;
}
#side_navi .navi__list::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: #dbdfe2;
}
#side_navi .navi__list li {
  position: relative;
}
#side_navi .navi__list li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  height: 60%;
  margin: auto 0;
  background: #001e5a;
  transition: opacity 0.5s, transform 0.5s;
  opacity: 0;
  transform: scaleY(0);
}
#side_navi .navi__list li:has(a:hover)::before {
  opacity: 1;
  transform: scaleY(100%);
}
#side_navi .navi__list li + li::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 16px;
  height: 0;
  margin: 0 auto;
  border-top: 1px solid #dbdfe2;
}
#side_navi .navi__list li:nth-of-type(1) a {
  padding-top: 0;
}
#side_navi .navi__list li:last-of-type a {
  padding-bottom: 0;
}
#side_navi .navi__list li a {
  display: block;
  padding: 12px 16px;
  color: #adbbcd;
  text-decoration: none;
}
#side_navi .navi__list li a:hover {
  color: #001e5a;
}

@media screen and (min-width: calc(768px + 1px)) {
  #side_navi {
    writing-mode: vertical-rl;
  }
}
#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;
}

@media screen and (max-width: 1120px) {
  #side_navi {
    right: 15px;
  }
}
@media screen and (max-width: 1040px) {
  #side_navi {
    right: 10px;
  }
  .container {
    width: 90%;
    margin-right: auto;
    margin-left: 2%;
  }
}
/*! このファイルを変更する場合は「.scss」から変更して下さい */
/*! 「.scss」ファイルがつかえない場合はcustom.cssを変更する */
@media screen and (max-width: 768px) {
  html {
    font-size: 6.25%;
  }
  body {
    min-width: 0;
    overflow-x: hidden;
  }
  .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 20px;
    margin-left: 0;
  }
  #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 {
    min-width: 0;
    height: 60px;
    padding: 8px 0;
    padding-right: 50px;
  }
  header#header .container {
    padding-left: 15px;
    padding-right: 10px;
  }
  header#header .header__logo img {
    width: 100px;
    height: auto;
  }
  header#header .lang__navi {
    margin-top: 10px;
  }
  header#header .lang__navi .navi__item.current::before {
    top: -12px;
  }
  /* メインビジュアル */
  #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: #001e5a;
  }
  .drawer .drawer-menu li.menu__item {
    background: #001e5a;
    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 .footer__bg {
    padding: 45px 0;
  }
  footer#footer .flexbox_list {
    display: block;
  }
  footer#footer .footer__logo {
    text-align: center;
  }
  footer#footer .footer__navi {
    margin-top: 30px;
    text-align: center;
  }
  footer#footer .footer__navi li {
    width: 100%;
    padding: 12px;
  }
  footer#footer .footer__navi li + li {
    border-left: none;
    border-top: 1px solid currentColor;
  }
  footer#footer .footer__navi a::before {
    content: none;
  }
  footer#footer .footer__copyright {
    padding: 30px 10px;
  }
  #side_navi {
    top: 10px;
    right: 10px;
    display: block;
    height: auto;
  }
  #side_navi .navi__button {
    width: 40px;
    height: 40px;
  }
  #side_navi::before {
    content: none;
  }
  #side_navi .navi__list {
    position: fixed;
    right: 0;
    top: 50px;
    background: rgba(255, 255, 255, 0.8);
    flex-direction: column;
  }
  #side_navi .navi__list li::before {
    content: none;
  }
  #side_navi .navi__list li + li::after {
    content: none;
  }
  #side_navi .navi__list li:nth-of-type(1) a {
    padding-top: 12px;
  }
  #side_navi .navi__list li:last-of-type a {
    padding-bottom: 12px;
  }
  #side_navi .navi__list li a {
    display: block;
    padding: 12px 16px;
    color: #001e5a;
    text-decoration: none;
  }
  #side_navi .navi__list li a:hover {
    color: #001e5a;
  }
  /* ページタイトル */
  #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: 80px 0;
  }
  .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;
  }
  .section__title {
    margin-bottom: 40px;
    font-size: 23rem;
    letter-spacing: 0.05em;
  }
  .section__title .f_sserif {
    margin-bottom: 30px;
  }
  .section__title .f_sserif .num {
    font-size: 120rem;
  }
  /* パネル型ボタン */
  .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 {
    width: 100%;
    padding: 11px 10px 10px;
    font-size: 16rem;
  }
  .button:hover {
    color: #001e5a;
    background: none;
  }
  .button .icon_blank {
    right: -10px;
    width: 12px;
    height: auto;
  }
  .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;
  }
}
/* スマホ */