@charset "utf-8";
/* CSS Document */
/* ----------------------------------------------- font */
/*Noto Sans（日本語）*/
@font-face {
  font-family: 'NotoSans JP';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("../font/NotoSansJP-Thin.woff2") format('woff2'), url("../font/NotoSansJP-Thin.woff") format('woff');
}
@font-face {
  font-family: 'NotoSans JP';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../font/NotoSansJP-Light.woff2") format('woff2'), url("../font/NotoSansJP-Light.woff") format('woff');
}
@font-face {
  font-family: 'NotoSans JP';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/NotoSansJP-Regular.woff2") format('woff2'), url("../font/NotoSansJP-Regular.woff") format('woff');
}
/*Noto Serif（日本語）*/
@font-face {
  font-family: 'NotoSerif JP';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("../font/NotoSerifJP-ExtraLight.woff2") format('woff2'), url("../font/NotoSerifJP-ExtraLight.woff") format('woff');
}
@font-face {
  font-family: 'NotoSerif JP';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../font/NotoSerifJP-Light.woff2") format('woff2'), url("../font/NotoSerifJP-Light.woff") format('woff');
}
@font-face {
  font-family: 'NotoSerif JP';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/NotoSerifJP-Regular.woff2") format('woff2'), url("../font/NotoSerifJP-Regular.woff") format('woff');
}
/*OpenSans（欧文）*/
@font-face {
  font-family: 'OpenSans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../font/OpenSans-Light.woff2") format('woff2'), url("../font/OpenSans-Light.woff") format('woff'), url("../font/OpenSans-Light.eot?") format('eot');
}
@font-face {
  font-family: 'OpenSans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../font/OpenSans-Regular.woff2") format('woff2'), url("../font/OpenSans-Regular.woff") format('woff'), url("../font/OpenSans-Regular.eot?") format('eot');
}
/* ----------------------------------------------- */
* {
  font-size: 100%;
  line-height: 2.0em;
  color: #111;
  box-sizing: border-box;
  font-family: 'OpenSans', 'Yu Gothic Medium', '游ゴシック体', 'YuGothic', 'NotoSans JP', sans-serif;
  font-weight: normal;
}
html {
  font-size: 62.5%;
  /*overflow-x: hidden;*/
}
body {
  width: 100%;
  min-width: 1200px; /*android*/
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
  -webkit-print-color-adjust: exact;
  -webkit-text-size-adjust: 100%;
  /*overflow-x: hidden;*/
  background-color: #fcfcfc;
}
@media all and (-ms-high-contrast: none) {
  /* IEのみに適用 */
  html {
    height: 100%;
  }
  body {
    overflow: auto;
    height: 100%;
  }
}
/* ----------------------------------------------- */
hr.clear {
  clear: both;
  height: 1px;
  border: 0px;
  border: 1px solid transparent;
  color: #fff;
}
/*改行時の行間（指定したい箇所で指定）*/
br {
  line-height: initial;
}
/* ----------------------------------------------- Google Mapsレスポンシブ対応(.frameで囲む場合)*/
.frame {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}
.frame iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
/*吹き出し（ポップ）を消す場合、.g_mapで囲む*/
.g_map {
  width: 100%;
  height: 500px;
  overflow: hidden;
}
.g_map iframe {
  width: 100%;
  height: 860px;
  margin-top: -170px;
}
/* ----------------------------------------------- sp */
.sp {
  display: none !important;
}
/* ----------------------------------------------- */
a {
  text-decoration: none;
  transition: .4s;
}
a:hover {
  color: #468FC4;
}
a:hover img {
  opacity: 0.9;
}
a:hover img {
  opacity: 0.9;
}
/* ----------------------------------------------- */
/*a.btn {
  display: inline-block;
  margin: 40px 0;
  padding: 10px 80px;
  text-decoration: none;
  color: #E23575;
  border: solid 2px #E23575;
  border-radius: 7px;
  transition: .4s;
}
a.btn:hover {
  background: #E23575;
  color: #fff;
  cursor: pointer;
}*/
/* ----------------------------------------------- フォームテキスト*/
#main button {
  font-family: 'OpenSans', 'Yu Gothic Medium', '游ゴシック体', 'YuGothic', 'NotoSans JP', sans-serif;
}
#main input, #main select, #main number {
  font-family: 'OpenSans', 'Yu Gothic Medium', '游ゴシック体', 'YuGothic', 'NotoSans JP', sans-serif;
}
/* ----------------------------------------------- color */
#main .red {
  /*color: #FF5B5E;*/
  color: #FF282F;
}
#main .red span {
  color: #FF282F;
  /*color: #FF5B5E;*/
}
/* ----------------------------------------------- 打消し線 */
#main .line {
  text-decoration: line-through rgba(0, 0, 0, 0.3) 2px;
}
/* ----------------------------------------------- 下線 */
#main .underline {
  background: linear-gradient(transparent 90%, rgba(0, 0, 0, 0.2) 0%);
}
#main .red .underline {
  background: linear-gradient(transparent 90%, rgba(255, 40, 47, 0.5) 0%);
}
/* ----------------------------------------------- float */
.f_left {
  float: left;
  margin: 0;
  padding: 0;
}
.f_right {
  float: right;
  margin: 0;
  padding: 0;
}
.f_left img {
  margin: 0 20px 0 0 !important;
}
.f_right img {
  margin: 0 0 0 20px !important;
}
.clear {
  clear: both;
}
/* ----------------------------------------------- img */
/*スマホで画像保存させない*/
img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  touch-callout: none;
  user-select: none;
}
/* ----------------------------------------------- position */
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
/*-------------------------------------------------- file */
a[href$=".pdf"]::after, a[href$=".doc"]::after, a[href$=".docx"]::after, a[href$=".xls"]::after, a[href$=".xlsx"]::after, a[href$=".ppt"]::after, a[href$=".pptx"]::after {
  display: inline-block;
  content: "";
  width: 16px;
  height: 20px;
  padding-right: 16px;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: 100%;
}
a[href$=".pdf"]::after {
  background-image: url(../img/pdf.svg);
}
a[href$=".doc"]::after, a[href$=".docx"]::after {
  background-image: url(../img/doc.svg);
}
a[href$=".xls"]::after, a[href$=".xlsx"]::after {
  background-image: url(../img/xls.svg);
}
a[href$=".ppt"]::after, [href$=".pptx"]::after {
  background-image: url(../img/pp.svg);
}
a img {
  background-image: none !important;
}
/*打消し*/
#pickup_wrap .pickup a[href$=".pdf"]::after {
  display: none;
}
/* --------------------------------------------------------- wrapper*/
#wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  position: relative
}
/* ----------------------------------------------- nav*/
nav {
  background-color: #F0F0F0;
  position: fixed;
  z-index: 100000;
  top: 0;
  left: 0;
  width: 310px;
  height: 100%;
  /*height: 100vh;*/
  margin: 0 0 0 10px;
  overflow-y: scroll;
  -ms-overflow-style: none; /* scrollbar非表示・IE, Edge 対応 */
  scrollbar-width: none; /* scrollbar非表示・Firefox 対応 */
}
nav::-webkit-scrollbar {
  display: none; /* scrollbar非表示・Chrome, Safari 対応 */
}
nav:before {
  position: fixed;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  /*height: 100vh;*/
  background-color: #68AFD9;
  background-image: linear-gradient(to top, #468FC4 5%, #68AFD9 100%);
}
/* --------------------------- nav > header */
nav header {}
nav #header {
  background-color: #fcfcfc;
}
/* --------------------------- nav > h1 */
nav #header h1, nav #header .logo {
  text-align: center;
  margin: 0;
  padding: 40px 0 20px 0;
  line-height: 0;
  font-size: 0;
}
nav #header h1 a, nav #header .logo a {
  margin: 0;
  padding: 0;
  line-height: 0;
  font-size: 0;
}
nav #header h1 a img, nav #header .logo a img {
  width: 100%;
  max-width: 277px;
  height: auto;
  margin: 0;
}
/* --------------------------- nav > overlay */
nav .overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  top: 0;
  left: 0;
}
/* --------------------------- nav > toggle */
nav .toggle * {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
nav .toggle {
  display: none;
}
nav .toggle::after {}
nav .toggle span {}
nav .toggle .bar01 {
  top: 0;
}
nav .toggle .bar02 {
  top: 50%;
}
nav .toggle .bar03 {
  top: 100%;
}
nav .toggle.active span {}
nav .toggle.active .bar01 {}
nav .toggle.active .bar02 {}
nav .toggle.active .bar03 {}
/* --------------------------- nav > nav_wrap */
nav .nav_wrap {
  z-index: 1000;
}
/* --------------------------- nav > g_nav */
nav .g_nav {
  background-color: #fcfcfc;
}
/**/
nav .g_nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav .g_nav .menu {
  border-bottom: 1px solid rgba(76, 90, 99, 0.1);
  position: relative;
}
nav .g_nav .menu::after {
  display: block;
  content: '';
  position: absolute;
  top: 47%;
  right: 32px;
  width: 4px;
  height: 4px;
  border-right: 1px solid #666;
  border-bottom: 1px solid #666;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: .4s;
}
nav .g_nav .active::after {
  display: none;
  display: block;
  content: '';
  position: absolute;
  top: 47%;
  right: 32px;
  width: 4px;
  height: 4px;
  border-right: 1px solid #666;
  border-bottom: 1px solid #666;
  -webkit-transform: rotate(47.5deg);
  transform: rotate(47.5deg);
  transition: .4s;
}
/*子要素がある場合*/
nav .g_nav .menu {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  padding: 8px 48px 8px 32px;
  display: block;
}
nav .g_nav .menu:hover {
  cursor: pointer;
  opacity: 0.8;
}
/*子要素がない場合*/
nav .g_nav .menu a {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  padding: 0;
  display: block;
}
/*子要素*/
nav .g_nav ul.sub {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav .g_nav ul.sub li {
  border-bottom: 1px solid rgba(76, 90, 99, 0.1);
  position: relative;
  background-color: rgba(98, 170, 214, 0.1);
}
nav .g_nav ul.sub li::after {
  display: block;
  content: '';
  position: absolute;
  top: 47%;
  right: 32px;
  width: 2px;
  height: 2px;
  border-right: 1px solid #468FC4;
  border-bottom: 1px solid #468FC4;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
nav .g_nav ul.sub li a {
  font-size: 14px;
  font-weight: bold;
  padding: 8px 48px 8px 48px;
  display: block;
}
nav .g_nav ul.open {}
/**/
nav .g_nav .link {
  position: relative;
  border-bottom: 1px solid rgba(76, 90, 99, 0.1);
}
nav .g_nav .link a {
  font-size: 14px;
  font-weight: bold;
  padding: 6px 48px 6px 32px;
  display: block;
}
nav .g_nav .link::after {
  display: block;
  content: '';
  position: absolute;
  top: 47%;
  right: 32px;
  width: 4px;
  height: 4px;
  border-right: 1px solid #666;
  border-bottom: 1px solid #666;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: .4s;
}
/* --------------------------- lt */
.lt {
  display: flex;
  justify-content: space-between;
  margin-right: 15px;
}
/* --------------------------- lang */
nav .nav_bottom {
  padding: 24px 0;
}
nav .nav_bottom .lang {
  list-style: none;
  margin: 0;
  padding: 0 32px 20px 32px;
  display: flex;
}
nav .nav_bottom .lang li {
  -webkit-transform: skewX(150deg);
  -moz-transform: skewX(150deg);
  transform: skewX(150deg);
  border-right: 1px solid #000;
  margin: 0;
  padding: 0;
}
nav .nav_bottom .lang li:last-child {
  border-right: none;
}
nav .nav_bottom .lang li a {
  font-size: 15px;
  font-weight: bold;
  display: block;
  transform: skewX(-150deg);
  padding: 0 10px 0 0;
  line-height: 1;
  text-decoration: underline;
}
nav .nav_bottom .lang li:last-child a {
  padding: 0 0 0 10px;
}
/* --------------------------- twitter */
nav .nav_bottom .twitter {
  margin: -5px 0 0 0;
  padding: 0;
}
nav .nav_bottom .twitter img {
  margin: 0;
  padding: 0;
  vertical-align: top;
}
/* --------------------------- link */
nav .nav_bottom {}
nav .nav_bottom .link {
  list-style: none;
  margin: 0;
  padding: 0 32px 5px 32px;
}
nav .nav_bottom .link li {}
nav .nav_bottom .link li a {
  font-size: 14px;
}
/* --------------------------- member */
nav .nav_bottom {}
nav .nav_bottom .member {
  padding: 0 32px;
}
/**/
nav .nav_bottom .member a {
  display: block;
  position: relative;
  width: 100%;
  color: #fff;
  background-color: #008ECC;
  margin: 0 auto;
  padding: 14px 40px;
  border-radius: 100vh;
  font-family: "NotoSerif JP";
  font-weight: 300;
  font-size: 15px;
  background-image: linear-gradient(60deg, #468FC4 0%, #68AFD9 100%);
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.1));
}
nav .nav_bottom .member a:hover {
  background-color: rgba(0, 142, 204, 0.8);
}
nav .nav_bottom .member a span {
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  border-radius: 100vh;
  border: 1px solid #fff;
  font-size: 12px;
  padding: 6px 12px;
  line-height: 1;
  color: #fff;
}
/* --------------------------- search*/
nav .search {
  /*下に移動する場合、margin: 32px 0;*/
  margin: 0;
  padding: 0;
  background-color: #fcfcfc;
}
nav .search form {
  margin: 0;
  padding: 20px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  border-radius: 3px;
  background-color: #fcfcfc;
}
/*入力*/
nav .search form #search {
  width: 100%;
  border: none;
  background-color: #EAEFEA;
  font-size: 13px;
  border-radius: 100vh;
  padding: 5px 5px 5px 15px;
}
/*検索ボタン*/
nav .search form #btn {
  width: 30px;
  height: 30px;
  background-color: #fcfcfc;
  margin: 0 0 0 2px;
  padding: 10px 0;
  border: none;
  cursor: pointer;
  background-image: url("../img/icon_search.png");
  background-repeat: no-repeat;
  background-position: right;
  text-indent: 100%;
}
nav .search form #btn:hover {}
/* --------------------------------------------------------- container*/
#container {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 0 0 310px;
  padding: 0 0 0 10px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  /*headerの横いっぱいに*/
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
/* ----------------------------------------------- main*/
main {}
#main {
  background-color: #fcfcfc;
  position: relative;
  z-index: 10;
}
/* ----------------------------------------------- footer*/
footer {
  background-color: #468FC4;
}
#footer {}
#footer .inner {}
/* --------------------------- inner_top*/
#footer .inner_top {
  width: calc(100% - 80px);
  margin: 0 auto;
  padding: 80px 0;
  display: -webkit-flex;
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
#footer .inner_top .add {
  color: #fff;
  margin: 0 30px 0 0;
  min-width: 350px;
}
#footer .inner_top .add p {
  color: #fff;
  line-height: 1.5em;
}
#footer .inner_top .add .f_logo {}
#footer .inner_top .add .f_logo img {
  width: 281px;
  height: auto;
}
/**/
#footer .inner_top .f_nav {
  width: 100%;
}
#footer .inner_top ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
}
#footer .inner_top ul li {
  width: 33.33%;
  margin: 0 0 20px 0;
  padding: 0 0 0 18px;
  background-image: url("../img/arrow_wh.png");
  background-position: left center;
  background-repeat: no-repeat;
}
#footer .inner_top ul li a {
  color: #fff;
  /* font-weight: bold;*/
}
/* --------------------------- inner_bottom*/
#footer .inner_bottom {
  width: calc(100% - 80px);
  margin: 0 auto;
  padding: 20px 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
#footer .inner_bottom address {
  font-style: normal;
  font-size: 14px;
  color: #fff;
}
#footer .inner_bottom ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#footer .inner_bottom ul li {
  display: inline-block;
}
#footer .inner_bottom ul li a {
  color: #fff;
  margin: 0 20px 0 0;
  font-size: 14px;
}
/* --------------------------- pagetop*/
.pagetop {
  position: fixed;
  bottom: 0;
  right: 0;
  display: block;
  z-index: 1000;
}
.pagetop:hover {
  opacity: 0.7;
}