<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

@import url(/assets/css/font-awesome.min.css);
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&amp;display=swap');

body {
	font-family: 'Noto Sans JP', sans-serif;
}

.atto {
	display: none;
}
/*************************************
	ブレークポイント
*************************************/
/*************************************
	ブレイクポイント毎の表示切り替え
*************************************/
@media screen and (min-width: 768px) {
  .pc {
    display: block !important;
  }

  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}
/*************************************
	フォントサイズ サイズ可変
*************************************/
/*************************************
	フォントサイズ
*************************************/
/*************************************
	文字省略
*************************************/
/*************************************
	文字隠し
*************************************/
/*************************************
	ベンダープレフィックス
*************************************/
/*************************************
	フォントファミリー
*************************************/
/*************************************
	hover アニメーション
*************************************/
/*************************************
	スタイルリセット
*************************************/
/*************************************
	共通
*************************************/
/*************************************
	each のサンプル
*************************************/
.test1 {
  width: 10000;
}

.test2 {
  width: 20000;
}

.test3 {
  width: 30000;
}

/*************************************
	ブレークポイント
*************************************/
/*************************************
	フォントサイズ サイズ可変
*************************************/
/*************************************
	フォントサイズ
*************************************/
/*************************************
	文字省略
*************************************/
/*************************************
	文字隠し
*************************************/
/*************************************
	ベンダープレフィックス
*************************************/
/*************************************
	フォントファミリー
*************************************/
/*************************************
	hover アニメーション
*************************************/
/*************************************
	スタイルリセット
*************************************/
/*************************************
	共通
*************************************/
/*************************************
	each のサンプル
*************************************/
.test1 {
  width: 10000;
}

.test2 {
  width: 20000;
}

.test3 {
  width: 30000;
}

/*************************************
	header
*************************************/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
}
header::before {
  display: block;
  width: 100%;
  background: url(../img/bg_pattern.png) 50% 0%/140px 1px repeat, #fff;
  content: "";
}
header div.init {
  margin: 0 auto;
  position: relative;
  max-width: 1150px;
}
header div.init::before {
  position: absolute;
  width: 100vw;
  height: inherit;
  display: block;
  background-color: #fff;
  content: "";
}
header h1 {
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  display: inline-block;
  width: auto;
  height: 100%;
}
header h1 &gt; a {
  display: block;
  height: inherit;
}
header h1 &gt; a img {
  height: inherit;
}
@media screen and (min-width: 768px) {
  header h1 {
    padding: 23px 0 23px 10px;
  }
}
@media screen and (max-width: 767px) {
  header h1 {
    padding: 10px 0 10px 10px;
  }
}
@media screen and (max-width: 767px) and (min-width: 700px) {
  header h1 {
    padding: 23px 0 23px 10px;
  }
}

header div#search {
  display: table;
  position: absolute;
  text-align: center;
  background-color: #fff;
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
header div#search.is-cond {
  background-color: transparent;
  -webkit-transition: none;
  transition: none;
}
@media screen and (min-width: 768px) {
  header div#search {
    top: 50%;
    z-index: 0;
    width: auto;
    height: auto;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  header div#search {
    top: 0;
    z-index: -1;
    width: 100%;
    height: 60px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
  }
  header div#search.is-open {
    opacity: 1;
    visibility: visible;
  }
}
header form {
  display: table-cell;
  vertical-align: middle;
}
header form input {
  border: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  font-size: 15px;
}
header form input::-ms-expand {
  display: none;
}
header form input[type="search"] {
  box-sizing: border-box;
  text-align: center;
  border: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  header form input[type="search"] {
    margin-right: 5px;
    padding-right: 10px;
    width: 180px;
    height: 30px;
    line-height: 30px;
    border-radius: 15px;
  }
}
@media screen and (max-width: 767px) {
  header form input[type="search"] {
    margin-right: 5px;
    padding-right: 20px;
    width: 70%;
    height: 40px;
    line-height: 40px;
    border-radius: 25px;
  }
}
header form input[type="submit"] {
  background: url(../img/head_search_icon_pc.svg) 50% 50%/100% 100% no-repeat;
  text-indent: 1000%;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  header form input[type="submit"] {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 767px) {
  header form input[type="submit"] {
    padding: 10px;
    width: 30px;
    height: 30px;
    box-sizing: content-box;
    background-size: 30px 30px;
  }
}
@media screen and (max-width: 767px) {
  header div#search.is-cond form input[type="search"] {
    margin-right: 5px;
    padding-right: 10px;
    width: 180px;
    height: 30px;
    line-height: 30px;
    border-radius: 15px;
  }
}
header div#search.is-cond form input[type="submit"] {
  background: url(../img/head_search_icon_pc.svg) 50% 50%/100% 100% no-repeat;
  text-indent: 1000%;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  header div#search.is-cond form input[type="submit"] {
    width: 24px;
    height: 24px;
  }
}

.gsc-search-box table {
	border: 2px solid #000000;
	border-radius: 100%;
}
.gsc-search-button {
	margin: 0 !important;
}
.gsc-search-button button {
	padding: 10.5px 15px 9.5px 15px;
	background-color: #000 !important;
	border: none;
}
table.gsc-search-box td.gsc-input {
	padding-right: 0 !important;
}
/*************************************
	.nav-content
*************************************/
.nav-content {
  position: absolute;
  z-index: -1;
  width: 100%;
  background: #ffffff;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  over-scrolling: touch;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: top 300ms 0s ease, right 300ms 0s ease;
  transition: top 300ms 0s ease, right 300ms 0s ease;
}
.nav-content.visi-off {
  visibility: hidden;
}
.nav-content &gt; ul {
  margin-bottom: 200px;
}
.nav-content ul {
  border-top: solid 1px #ddd;
}
.nav-content ul li {
  border-bottom: solid 1px #ddd;
}
.nav-content ul li &gt; ul.submenu &gt; li:last-child {
  border-bottom: none;
}
.nav-content ul li span,
.nav-content ul li a {
  text-align: left;
  display: block;
  padding: 1em 30px 1em 1em;
}
.nav-content ul li span:hover:hover, .nav-content ul li span:hover:hover *,
.nav-content ul li a:hover:hover,
.nav-content ul li a:hover:hover * {
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .nav-content ul li span:hover:hover, .nav-content ul li span:hover:hover *,
  .nav-content ul li a:hover:hover,
  .nav-content ul li a:hover:hover * {
    opacity: 0.8;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
}
@media screen and (min-width: 768px) {
  .nav-content {
    width: 50vw;
  }
}

.nav-content ul.accordion &gt; li &gt; a,
.nav-content ul.accordion &gt; li &gt; span {
  position: relative;
}
.nav-content ul.accordion &gt; li &gt; a::before,
.nav-content ul.accordion &gt; li &gt; span::before {
  position: absolute;
  right: 5px;
  top: 50%;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  display: block;
  content: "";
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.nav-content ul.accordion &gt; li &gt; a::before {
  font-size: 150%;
}
.nav-content ul.accordion &gt; li &gt; span::before {
  color: #888;
  background-color: #ddd;
}
.nav-content ul.accordion &gt; li &gt; span.active-submenu {
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
}
.nav-content ul.accordion &gt; li &gt; span.active-submenu::before {
  content: "−";
}
.nav-content ul.accordion &gt; li &gt; span.none-submenu::before {
  content: "+";
}
.nav-content ul.accordion &gt; li &gt; a::before {
  font-size: 12px;
  content: '\00ff1e';
}
.nav-content ul.accordion &gt; li ul.submenu {
  border-left: 10px solid #ddd;
  box-sizing: border-box;
}
.nav-content ul.accordion &gt; li ul.submenu li a {
  position: relative;
}
.nav-content ul.accordion &gt; li ul.submenu li a::before {
  position: absolute;
  right: 5px;
  top: 50%;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  display: block;
  content: '\00ff1e';
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
/*************************************
	.pamph-button
*************************************/
.pamph-button {
  display: block;
  position: absolute;
  top: 50%;
  z-index: 1;
  border-radius: 24px;
  background-color: #936AC0;
  box-sizing: border-box;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  
}
.pamph-button::before {
  margin-top: -18px;
  margin-left: -17px;
  position: absolute;
  top: 50%;
  left: 20%;
  display: block;
  content: url("../img/head_pamph_icon.svg");
}
@media screen and (max-width: 767px) {
.pamph-button {
  display: block;
  position: absolute;
  opacity: 1;
  visibility: visible;
  border-radius: 43px;
  box-sizing: border-box;
  background-color: #936AC0;
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
	}
  .pamph-button::before {
  position: absolute;
  margin-top: -18px;
  margin-left: -17px;
  top: 40%;
  left: 40%;
  display: block;
  content: url("../img/head_pamph_icon_sp.svg");
	  -webkit-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
  }
}
  /*@media screen and (min-width: 700px) {
    .pamph-button::before {
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
      top: 50%;
      left: 18%;
    }
  }*/
@media screen and (max-width: 480px) {
  .pamph-button::before {
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
  }
}


/*************************************
	.form-button
*************************************/
.form-button {
  display: block;
  position: absolute;
  top: 50%;
  z-index: 1;
  border-radius: 43px;
  box-sizing: border-box;
  background-color: #000;
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
.form-button::before {
  margin-top: -18px;
  margin-left: -17px;
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: url("../img/head_search_icon_sp.svg");
}
@media screen and (min-width: 768px) {
  .form-button {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
@media screen and (max-width: 767px) {
  .form-button {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 480px) {
  .form-button::before {
    -webkit-transform: scale(0.6);
    -ms-transform: scale(0.6);
    transform: scale(0.6);
  }
}
@media screen and (min-width: 481px) {
  .form-button::before {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
  }
}
@media screen and (min-width: 700px) {
  .form-button::before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

div#search.is-open + .form-button::before {
  content: url("../img/head_search_icon_close.svg");
}

/*************************************
	.menu-button
*************************************/
.menu-button {
  display: block;
  position: absolute;
  right: 10px;
  top: 50%;
  z-index: 1;
  border-radius: 43px;
  background-color: #000;
  box-sizing: border-box;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.menu-button::before {
  margin-left: -17px;
  margin-bottom: -5px;
  position: absolute;
  left: 50%;
  text-align: center;
  line-height: 1;
  content: url("../img/head_menu_txt.svg");
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.menu-button i {
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  top: 40%;
  left: 50%;
  display: block;
  width: 55%;
  height: 8%;
  max-height: 4px;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: background 0.5s;
  transition: background 0.5s;
  position: relative;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.menu-button i:before, .menu-button i:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  background: #fff;
  position: absolute;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.3s !important;
  transition: all 0.3s !important;
}

/*************************************
	ナビ展開時(.is-open)
*************************************/
.is-open::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
  content: "";
}
.is-open .nav-content {
  margin-top: -1px;
  visibility: visible;
}
.is-open .menu-button i {
  background: none;
  width: 55%;
}
.is-open .menu-button i:after {
  -webkit-transform: translateY(0px) rotate(-45deg);
  -ms-transform: translateY(0px) rotate(-45deg);
  transform: translateY(0px) rotate(-45deg);
}
.is-open .menu-button i:before {
  -webkit-transform: translateY(0px) rotate(45deg);
  -ms-transform: translateY(0px) rotate(45deg);
  transform: translateY(0px) rotate(45deg);
}
.is-open .form-button {
  opacity: 0.5;
}

/*************************************
	ナビ展開時のマスク設定
*************************************/
body::after {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
  content: "";
}
@media screen and (min-width: 768px) {
  body.nonAccordionPc::after {
    display: none;
  }
}
body.menu-open {
  position: relative;
}
body.menu-open::after {
  visibility: visible;
  opacity: 0.5;
}
body.menu-open div#wrapper {
  box-sizing: border-box;
  height: 100vh;
  overflow: hidden;
}

/*************************************
	グロナビの非アコーディオン化(pc専用)
*************************************/
@media screen and (min-width: 768px) {
  .nonAccordionPc header {
    height: auto;
  }
  .nonAccordionPc header &gt; h1 &gt; a {
    position: static;
    transform: none;
  }
  .nonAccordionPc header .nav-content {
    position: static;
    transform: none;
  }
  .nonAccordionPc header .nav-content ul {
    display: table;
    width: 100%;
  }
  .nonAccordionPc header .nav-content ul li {
    display: table-cell;
    vertical-align: middle;
  }
  .nonAccordionPc header .menu-button {
    position: static;
    transform: none;
    display: none;
  }
}

/*************************************
	ブレイクポイント対応(ヘッダー)
*************************************/
@media screen and (max-width: 480px) {
  body::before {
    height: 6px;
  }

  header::before {
    height: 6px;
  }
  header div.init {
    height: 60px;
  }
}
@media screen and (max-width: 480px) and (min-width: 768px) {
  header div#search {
    right: 62px;
  }
}
@media screen and (max-width: 480px) and (max-width: 767px) {
  header div#search {
    margin-top: -60px;
  }
  header div#search.is-open {
    margin-top: 60px;
  }
}

@media screen and (max-width: 480px) {
  .pamph-button {
    right: 112px;
    width: 42px;
    height: 42px;
  }
  .form-button {
    right: 62px;
    width: 42px;
    height: 42px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }
  .menu-button::before {
    bottom: 6px;
    -webkit-transform: scale(0.6);
    -ms-transform: scale(0.6);
    transform: scale(0.6);
  }
  .menu-button i:before {
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
  }
  .menu-button i:after {
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
  }

  .nav-content {
    height: 50vh;
    height: calc(100vh - (60px + 6px) );
  }
}
@media screen and (max-width: 480px) and (min-width: 768px) {
  .nav-content {
    top: 66px;
    right: -50vw;
  }
}
@media screen and (max-width: 480px) and (max-width: 767px) {
  .nav-content {
    top: -100vh;
  }
}

@media screen and (max-width: 480px) and (min-width: 768px) {
  .is-open .nav-content {
    top: 66px;
    right: 0vw;
  }
}
@media screen and (max-width: 480px) and (max-width: 767px) {
  .is-open .nav-content {
    top: 66px;
  }
}

@media screen and (min-width: 481px) {
  body::before {
    height: 12px;
  }

  header::before {
    height: 12px;
  }
  header div.init {
    height: 80px;
  }
}
@media screen and (min-width: 481px) and (min-width: 768px) {
  header div#search {
    right: 76px;
  }
}
@media screen and (min-width: 481px) and (max-width: 767px) {
  header div#search {
    margin-top: -80px;
  }
  header div#search.is-open {
    margin-top: 80px;
  }
}

@media screen and (min-width: 481px) {
  .pamph-button {
    right: 116px;
    width: 56px;
    height: 56px;
  }
	
  .form-button {
    right: 76px;
    width: 56px;
    height: 56px;
  }

  .menu-button {
    width: 56px;
    height: 56px;
  }
  .menu-button::before {
    bottom: 8px;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
  }
  .menu-button i:before {
    -webkit-transform: translateY(8px);
    -ms-transform: translateY(8px);
    transform: translateY(8px);
  }
  .menu-button i:after {
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px);
  }

  .nav-content {
    height: 50vh;
    height: calc(100vh - (80px + 12px) );
  }
}
@media screen and (min-width: 481px) and (min-width: 768px) {
  .nav-content {
    top: 92px;
    right: -50vw;
  }
}
@media screen and (min-width: 481px) and (max-width: 767px) {
  .nav-content {
    top: -100vh;
  }
}

@media screen and (min-width: 481px) and (min-width: 768px) {
  .is-open .nav-content {
    top: 92px;
    right: 0vw;
  }
}
@media screen and (min-width: 481px) and (max-width: 767px) {
  .is-open .nav-content {
    top: 92px;
  }
}

@media screen and (min-width: 700px) {
  body::before {
    height: 18px;
  }

  header::before {
    height: 18px;
  }
  header div.init {
    height: 120px;
  }
}
@media screen and (min-width: 700px) and (min-width: 768px) {
  header div#search {
    right: 104px;
  }
}
@media screen and (min-width: 700px) and (max-width: 767px) {
  header div#search {
    margin-top: -120px;
  }
  header div#search.is-open {
    margin-top: 120px;
  }
}

@media screen and (min-width: 700px) {
  .pamph-button {
    right: 361.992px;
    width: 171.992px;
    height: 51.992px;
  }
	
  .form-button {
    right: 81.992px;
    width: 61.992px;
    height: 61.992px;
  }

  .menu-button {
    width: 61.992px;
    height: 61.992px;
  }
  .menu-button::before {
    bottom: 10px;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
  }
  .menu-button i:before {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }
  .menu-button i:after {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  .nav-content {
    height: 50vh;
    height: calc(100vh - (120px + 18px) );
  }
}
@media screen and (min-width: 700px) and (min-width: 768px) {
  .nav-content {
    top: 138px;
    right: -50vw;
  }
}
@media screen and (min-width: 700px) and (max-width: 767px) {
  .nav-content {
    top: -100vh;
  }
}

@media screen and (min-width: 700px) and (min-width: 768px) {
  .is-open .nav-content {
    top: 138px;
    right: 0vw;
  }
}
@media screen and (min-width: 700px) and (max-width: 767px) {
  .is-open .nav-content {
    top: 138px;
  }
}

/*************************************
	googleカスタム検索
*************************************/
body header form {
  display: block;
}
@media screen and (max-width: 767px) {
  body header div#search {
    display: flex;
    align-items: center;
  }
}
body .cse .gsc-control-cse,
body .gsc-control-cse {
  padding: 0;
}
@media screen and (max-width: 767px) {
  body .cse .gsc-control-cse,
  body .gsc-control-cse {
    margin: 0 auto;
    width: 80%;
  }
}
@media screen and (min-width: 768px) {
  body .gsc-input-box {
    width: 180px;
  }
}
body .gsc-results-wrapper-overlay {
  -webkit-transition: opacity 200ms 0s ease;
  transition: opacity 200ms 0s ease;
}
body.gsc-overflow-hidden header div#search {
  z-index: 2;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
@media screen and (max-width: 767px) {
  body.gsc-overflow-hidden header div#search {
    opacity: 1;
    visibility: visible;
  }
}
body.gsc-overflow-hidden .gsc-results-wrapper-overlay {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

/*************************************
	ブレークポイント
*************************************/
/*************************************
	ブレイクポイント毎の表示切り替え
*************************************/
/*************************************
	フォントサイズ サイズ可変
*************************************/
/*************************************
	フォントサイズ
*************************************/
/*************************************
	文字省略
*************************************/
/*************************************
	文字隠し
*************************************/
/*************************************
	ベンダープレフィックス
*************************************/
/*************************************
	フォントファミリー
*************************************/
/*************************************
	hover アニメーション
*************************************/
/*************************************
	スタイルリセット
*************************************/
/*************************************
	共通
*************************************/
/*************************************
	each のサンプル
*************************************/
.test1 {
  width: 10000;
}

.test2 {
  width: 20000;
}

.test3 {
  width: 30000;
}

footer {
  text-align: center;
  background-color: #fff;
}
footer &gt; div h2 {
  margin: 20px 0;
  display: block;
}
footer &gt; div h2 p {
  display: inline-block;
  position: relative;
}
footer &gt; div h2 p::before, footer &gt; div h2 p::after {
  position: absolute;
  top: 50%;
  background: url(../img/foot_ttl_parts.png) 0% 0%/5px 4px space;
  content: "";
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
footer &gt; div h2 p::before {
  left: -50%;
}
footer &gt; div h2 p::after {
  right: -50%;
}
footer &gt; div h2 p img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  footer &gt; div h2 p {
    max-width: 315px;
  }
  footer &gt; div h2 p::before, footer &gt; div h2 p::after {
    width: 130px;
    height: 12px;
  }
  footer &gt; div h2 p::before {
    left: -50%;
  }
  footer &gt; div h2 p::after {
    right: -50%;
  }
}
@media screen and (max-width: 767px) {
  footer &gt; div h2 p {
    padding: 0 14vw;
    width: 100%;
    box-sizing: border-box;
  }
  footer &gt; div h2 p::before, footer &gt; div h2 p::after {
    max-width: 60px;
    width: 8vw;
    height: 8px;
    background-size: 2.5px 2px;
  }
  footer &gt; div h2 p::before {
    left: 4vw;
  }
  footer &gt; div h2 p::after {
    right: 4vw;
  }
}
footer &gt; div div.init {
  padding: 1px 0;
  margin: -1px auto;
  width: 100%;
  max-width: 1150px;
}
footer &gt; div ul {
  margin: 20px auto;
}
footer &gt; div ul li a {
  display: inline-block;
}
footer &gt; div ul li a img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  footer &gt; div ul {
    display: table;
    border-spacing: 20px 0;
  }
  footer &gt; div ul li {
    display: table-cell;
    vertical-align: middle;
  }
}
@media screen and (max-width: 767px) {
  footer &gt; div ul {
    padding: 0 20px;
    box-sizing: border-box;
  }
  footer &gt; div ul li {
    margin-bottom: 20px;
  }
}
footer &gt; div.request {
  background: url(../img/foot_request_bg.png) 0% 0%/33px 33px repeat;
}
footer &gt; div.request ul {
  width: 100%;
}
footer &gt; div.request ul li a {
  max-width: 100%;
}
footer &gt; div.request ul li a img {
  max-width: 368px;
}
footer &gt; div.btn {
  background-color: #d9e021;
}
footer &gt; div.btn ul li a img {
  max-width: 300px;
}
footer &gt; div.link ul {
  margin-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  width: 100%;
}
footer &gt; div.link ul li {
  margin-bottom: 10px;
  position: relative;
}
footer &gt; div.link ul li::before {
  border-left: 1px solid #000;
  position: absolute;
  top: 50%;
  display: block;
  width: 1px;
  height: 80%;
  content: "";
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
footer &gt; div.link ul li a {
  display: block;
  padding: 0.5em 0;
  height: 1em;
  line-height: 1em;
}
@media screen and (min-width: 768px) {
  footer &gt; div.link ul li a {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  footer &gt; div.link ul li a {
    font-size: 12.6px;
  }
}
@media screen and (min-width: 1150px) {
  footer &gt; div.link ul li::before {
    left: -10px;
  }
  footer &gt; div.link ul li:first-child::before {
    display: none;
  }
}
@media screen and (max-width: 1149px) {
  footer &gt; div.link ul {
    display: block;
    font-size: 0;
  }
  footer &gt; div.link ul li {
    padding: 0 12px;
    display: inline-block;
  }
  footer &gt; div.link ul li::before {
    left: -1px;
  }
  footer &gt; div.link ul li::after {
    border-right: 1px solid #000;
    right: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 1px;
    height: 80%;
    content: "";
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
footer &gt; div.copy {
  padding: 20px 10px;
  height: 1em;
}
footer &gt; div.copy div.init {
  line-height: 1;
}
footer &gt; div.copy p {
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  footer &gt; div.copy p {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  footer &gt; div.copy p {
    font-size: 9.8px;
  }
}
footer &gt; div.copy img {
  width: 100%;
  max-width: 386px;
}

footer .pageTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 53px;
    height: 53px;
    display: block;
    z-index: 800;
    border: solid 3px #895687;
    background-color: #fff;
    background-image: url(../../../assets/img/common/arrow01_b.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 40px 22px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

footer .pageTop:hover {
	background-color: #895687;
	background-image: url(../../../assets/img/common/arrow01_02_b.svg);
	border-color: #fff;
}

@media only screen and (max-width: 600px) {
footer .pageTop {
    border-width: 2px;
    width: 44px;
    height: 44px;
    background-size: 32px 17px;
}
}

/*************************************
	ブレークポイント
*************************************/
/*************************************
	ブレイクポイント毎の表示切り替え
*************************************/
/*************************************
	フォントサイズ サイズ可変
*************************************/
/*************************************
	フォントサイズ
*************************************/
/*************************************
	文字省略
*************************************/
/*************************************
	文字隠し
*************************************/
/*************************************
	ベンダープレフィックス
*************************************/
/*************************************
	フォントファミリー
*************************************/
/*************************************
	hover アニメーション
*************************************/
/*************************************
	スタイルリセット
*************************************/
/*************************************
	共通
*************************************/
/*************************************
	each のサンプル
*************************************/
.test1 {
  width: 10000;
}

.test2 {
  width: 20000;
}

.test3 {
  width: 30000;
}

/*************************************
	テーマカラー
*************************************/
.themeColor.vi main h2 {
  background-color: #948bd6;
}
.themeColor.vi main h3 {
  color: #948bd6;
}
.themeColor.vi main ul.pankz {
  color: #948bd6;
}
.themeColor.vi main ul.pankz a {
  color: #948bd6;
}
.themeColor.vi2 main h2 {
  background-color: #895687;
}
.themeColor.vi2 main h3 {
  color: #895687;
}
.themeColor.vi2 main ul.pankz {
  color: #895687;
}
.themeColor.vi2 main ul.pankz a {
  color: #895687;
}
.themeColor.bu main h2 {
  background-color: #a8defb;
}
.themeColor.bu main h3 {
  color: #a8defb;
}
.themeColor.bu main ul.pankz {
  color: #a8defb;
}
.themeColor.bu main ul.pankz a {
  color: #a8defb;
}
.themeColor.rd main h2 {
  background-color: #e25c98;
}
.themeColor.rd main h3 {
  color: #e25c98;
}
.themeColor.rd main ul.pankz {
  color: #e25c98;
}
.themeColor.rd main ul.pankz a {
  color: #e25c98;
}
.themeColor.orn main h2 {
  background-color: #f9af48;
}
.themeColor.orn main h3 {
  color: #f9af48;
}
.themeColor.orn main ul.pankz {
  color: #f9af48;
}
.themeColor.orn main ul.pankz a {
  color: #f9af48;
}
.themeColor.gn main h2 {
  background-color: #c6de39;
}
.themeColor.gn main h3 {
  color: #c6de39;
}
.themeColor.gn main ul.pankz {
  color: #c6de39;
}
.themeColor.gn main ul.pankz a {
  color: #c6de39;
}
.themeColor.bl main h2 {
  background-color: #52befb;
}
.themeColor.bl main h3 {
  color: #52befb;
}
.themeColor.bl main ul.pankz {
  color: #52befb;
}
.themeColor.bl main ul.pankz a {
  color: #52befb;
}
.themeColor.pn main h2 {
  background-color: #bc549b;
}
.themeColor.pn main h3 {
  color: #bc549b;
}
.themeColor.pn main ul.pankz {
  color: #bc549b;
}
.themeColor.pn main ul.pankz a {
  color: #bc549b;
}
.themeColor.gr main h2 {
  background-color: #3cab4c;
}
.themeColor.gr main h3 {
  color: #3cab4c;
}
.themeColor.gr main ul.pankz {
  color: #3cab4c;
}
.themeColor.gr main ul.pankz a {
  color: #3cab4c;
}
.themeColor.ma main h2 {
  background-color: #e45998;
}
.themeColor.ma main h3 {
  color: #e45998;
}
.themeColor.ma main ul.pankz {
  color: #e45998;
}
.themeColor.ma main ul.pankz a {
  color: #e45998;
}

.themeColor.ma2 main h2 {
  background-color: #bc549b;
}
.themeColor.ma2 main h3 {
  color: #bc549b;
}
.themeColor.ma2 main ul.pankz {
  color: #bc549b;
}
.themeColor.ma2 main ul.pankz a {
  color: #bc549b;
}

.themeColor.gn2 main h2 {
  background-color: #a9c300;
}
.themeColor.gn2 main h3 {
  color: #a9c300;
}
.themeColor.gn2 main ul.pankz {
  color: #a9c300;
}
.themeColor.gn2 main ul.pankz a {
  color: #a9c300;
}

/*************************************
	body
*************************************/
body {
  padding-bottom: 18px;
  min-height: 100vh;
  position: relative;
  background: url(../img/bg_dotted.png) 0% 0%/8px 8px repeat;
}
body::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: url(../img/bg_pattern.png) 50% 0%/140px 1px repeat, #fff;
  content: "";
}

/*************************************
	main
*************************************/
main h2 {
  display: table;
  width: 100%;
  color: #fff;
  background-color: #ccc;
}
main h2 &gt; p {
  padding: 0 1em;
  display: table-cell;
  vertical-align: middle;
  font-weight: bold;
  text-align: center;
  font-family: "游ゴシック", YuGothic, sans-serif;
  font-weight: normal;
}
@media all and (-ms-high-contrast: none) {
  main h2 &gt; p {
    font-family: sans-serif;
  }
}
main h2 &gt; p span {
  line-height: 1.4em;
  display: block;
}
main h2 &gt; p span.ja {
  margin-bottom: 0.2em;
}
@media screen and (min-width: 768px) {
  main h2 &gt; p span.ja {
    font-size: 29px;
  }
}
@media screen and (max-width: 767px) {
  main h2 &gt; p span.ja {
    font-size: 20.3px;
  }
}
@media screen and (min-width: 768px) {
  main h2 &gt; p span.en {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  main h2 &gt; p span.en {
    font-size: 8.4px;
  }
}
@media screen and (min-width: 768px) {
  main h2 {
    height: 200px;
  }
}
@media screen and (max-width: 767px) {
  main h2 {
    height: 100px;
  }
}
main h3 {
  margin: 1.25em auto;
  line-height: 1.4em;
  text-align: center;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  main h3 {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  main h3 {
    font-size: 22.4px;
  }
}
main &gt; div.content {
  box-sizing: border-box;
  width: 100%;
  max-width: 1150px;
}
@media screen and (min-width: 768px) {
  main &gt; div.content {
    margin: 50px auto;
    padding: 0 20px;
  }
  main &gt; div.content.mgnB2 {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  main &gt; div.content {
    margin: 25px auto;
    padding: 0 20px;
  }
  main &gt; div.content.mgnB2 {
    margin-bottom: 50px;
  }
}

/*************************************
	a
*************************************/
a:hover, a:hover * {
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  a:hover, a:hover * {
    opacity: 0.8;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
}
a[target="_blank"].c000::after, a[target="_blank"].cfff::after {
  margin-left: 0.5em;
  display: inline-block;
  width: 12px;
  height: 11px;
  content: "";
}
a[target="_blank"].c000::after {
  background: url(../img/icon_blank_000.svg) 100% 100%/100% 100% no-repeat;
}
a[target="_blank"].cfff::after {
  background: url(../img/icon_blank_fff.svg) 100% 100%/100% 100% no-repeat;
}

/*************************************
	パンくずリスト
*************************************/
ul.pankz {
  margin: 1em auto;
  display: block;
  width: 100%;
  max-width: 1150px;
  text-align: left;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  ul.pankz {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  ul.pankz {
    font-size: 9.8px;
  }
}
@media screen and (min-width: 768px) {
  ul.pankz {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  ul.pankz {
    padding: 0 10px;
  }
}
ul.pankz li {
  display: inline-block;
  line-height: 1;
}
ul.pankz li.top, ul.pankz li.top &gt; * {
  color: #000 !important;
}
ul.pankz li::before {
  color: #000;
  padding-right: 4px;
  margin-left: 4px;
  display: inline-block;
  content: '\003e';
}
ul.pankz li:first-child::before {
  display: none;
}

/*************************************
	ページトップリンク
*************************************/
a#page-top {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  a#page-top {
    padding: 10px 40px;
  }
  a#page-top img {
    width: 50px;
  }
}
@media screen and (max-width: 767px) {
  a#page-top {
    padding: 5px 40px;
  }
  a#page-top img {
    width: 40px;
  }
}

/*************************************
	スライド
*************************************/
div.slide {
  margin: 0 auto;
  max-width: 1190px;
}
div.slide ul.bxslider-top li img {
  width: 100%;
}

.bx-wrapper {
  margin-bottom: auto;
}
.bx-wrapper .bx-pager.bx-default-pager a {
  background: #b3b3b3;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover, .bx-wrapper .bx-pager.bx-default-pager a.active {
  background: #3cab4c;
}
.bx-wrapper .bx-controls-direction a {
  z-index: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.bx-wrapper .bx-controls-direction a::before {
  position: absolute;
  top: 50%;
  display: block;
  width: inherit;
  height: inherit;
  content: "";
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.bx-wrapper .bx-controls-direction a.bx-prev {
  left: 0;
}
.bx-wrapper .bx-controls-direction a.bx-prev::before {
  background: url(../../img/top/btn_calendar_left.svg) 50% 50%/100% 100% no-repeat;
}
.bx-wrapper .bx-controls-direction a.bx-next {
  right: 0;
}
.bx-wrapper .bx-controls-direction a.bx-next::before {
  background: url(../../img/top/btn_calendar_right.svg) 50% 50%/100% 100% no-repeat;
}
@media screen and (min-width: 768px) {
  .bx-wrapper .bx-controls-direction a {
    margin-top: 20px;
    padding: 20px;
    width: 30px;
    height: 30px;
  }
  .bx-wrapper .bx-controls-direction a.bx-prev {
    padding-left: 4px;
  }
  .bx-wrapper .bx-controls-direction a.bx-prev::before {
    left: 4px;
  }
  .bx-wrapper .bx-controls-direction a.bx-next {
    padding-right: 4px;
  }
  .bx-wrapper .bx-controls-direction a.bx-next::before {
    right: 4px;
  }
}
@media screen and (max-width: 767px) {
  .bx-wrapper .bx-controls-direction a {
    margin-top: 3.3vw;
    padding: 4.4vw;
    width: 6.6vw;
    height: 6.6vw;
  }
  .bx-wrapper .bx-controls-direction a.bx-prev {
    padding-left: 0.8vw;
  }
  .bx-wrapper .bx-controls-direction a.bx-prev::before {
    left: 0.8vw;
  }
  .bx-wrapper .bx-controls-direction a.bx-next {
    padding-right: 0.8vw;
  }
  .bx-wrapper .bx-controls-direction a.bx-next::before {
    right: 0.8vw;
  }
}

/*************************************
	.toggle-tab
*************************************/
.toggle-tab-btn &gt; li {
  z-index: 0;
  cursor: pointer;
}
.toggle-tab-btn &gt; li &gt; a,
.toggle-tab-btn &gt; li &gt; p {
  display: block;
}
@media screen and (min-width: 768px) {
  .toggle-tab-btn &gt; li {
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }
  .toggle-tab-btn &gt; li:hover {
    -webkit-transform: translateY(5%);
    -ms-transform: translateY(5%);
    transform: translateY(5%);
  }
  .toggle-tab-btn &gt; li.is-active {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }
}

.toggle-tab-content {
  position: relative;
  z-index: 1;
}

/*************************************
	.tagCategory
*************************************/
p.category {
  display: inline-block;
  text-align: center;
}
p.category &gt; span {
  display: inline-block;
  border-radius: 4px;
  text-align: center;
  width: 110px;
  color: #fff;
}
p.category &gt; span.modSubCategory01 {
  background-color: #e45998;
  font-size: 12px;
  padding: 0.167em 0;
}
p.category &gt; span.modSubCategory02 {
  background-color: #52befb;
  font-size: 11px;
  padding: 0.274em 0;
}
p.category &gt; span.modSubCategory03 {
  background-color: #3cab4c;
  font-size: 12px;
  padding: 0.167em 0;
}
p.category &gt; span.modSubCategory04 {
  background-color: #988876;
  font-size: 12px;
  padding: 0.167em 0;
}

/*************************************
	.newsTopics
*************************************/
div.newsTopics {
  font-family: "游ゴシック", YuGothic, sans-serif;
  font-weight: normal;
}
@media all and (-ms-high-contrast: none) {
  div.newsTopics {
    font-family: sans-serif;
  }
}
div.newsTopics &gt; ul &gt; li.topics {
  background-color: #e45998;
  border-top: 8px solid #e45998;
}
div.newsTopics &gt; ul &gt; li.event {
  background-color: #9489d8;
  border-top: 8px solid #9489d8;
}
div.newsTopics &gt; ul &gt; li ul.topicsList &gt; li &gt; a,
div.newsTopics &gt; ul &gt; li ul.eventList &gt; li &gt; a {
  width: 100%;
  box-sizing: border-box;
  background: url(../img/border_dotted.png) 0% 100%/5px 1px repeat-x;
}
div.newsTopics &gt; ul &gt; li ul.topicsList &gt; li &gt; a p.txt,
div.newsTopics &gt; ul &gt; li ul.topicsList &gt; li &gt; a p.date,
div.newsTopics &gt; ul &gt; li ul.eventList &gt; li &gt; a p.txt,
div.newsTopics &gt; ul &gt; li ul.eventList &gt; li &gt; a p.date {
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  div.newsTopics &gt; ul &gt; li ul.topicsList &gt; li &gt; a p.txt,
  div.newsTopics &gt; ul &gt; li ul.topicsList &gt; li &gt; a p.date,
  div.newsTopics &gt; ul &gt; li ul.eventList &gt; li &gt; a p.txt,
  div.newsTopics &gt; ul &gt; li ul.eventList &gt; li &gt; a p.date {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  div.newsTopics &gt; ul &gt; li ul.topicsList &gt; li &gt; a p.txt,
  div.newsTopics &gt; ul &gt; li ul.topicsList &gt; li &gt; a p.date,
  div.newsTopics &gt; ul &gt; li ul.eventList &gt; li &gt; a p.txt,
  div.newsTopics &gt; ul &gt; li ul.eventList &gt; li &gt; a p.date {
    font-size: 14.4px;
  }
}
div.newsTopics &gt; ul &gt; li ul.topicsList &gt; li &gt; a p.txt,
div.newsTopics &gt; ul &gt; li ul.eventList &gt; li &gt; a p.txt {
  min-height: 1em;
}
div.newsTopics &gt; ul &gt; li ul.topicsList &gt; li &gt; a {
  padding: 15px 0;
}
div.newsTopics &gt; ul &gt; li ul.topicsList &gt; li &gt; a p.txt,
div.newsTopics &gt; ul &gt; li ul.topicsList &gt; li &gt; a p.date {
  display: inline;
}
div.newsTopics &gt; ul &gt; li ul.topicsList &gt; li &gt; a p.date {
  position: absolute;
  top: 2px;
  left: 0;
	color: #aaaaaa;
}
div.newsTopics &gt; ul &gt; li ul.topicsList &gt; li &gt; a div.detail {
  padding: 2px 0;
  line-height: 1.5;
  position: relative;
}
@media screen and (min-width: 768px) {
  div.newsTopics &gt; ul &gt; li ul.topicsList &gt; li &gt; a {
    display: table;
    border-spacing: 10px 0;
  }
  div.newsTopics &gt; ul &gt; li ul.topicsList &gt; li &gt; a p.category {
    width: 110px;
    display: table-cell;
    vertical-align: top;
  }
  div.newsTopics &gt; ul &gt; li ul.topicsList &gt; li &gt; a div.detail {
    display: table-cell;
    vertical-align: top;
  }
  div.newsTopics &gt; ul &gt; li ul.topicsList &gt; li &gt; a div.detail p.txt {
    margin-left: 100px;
  }
  div.newsTopics &gt; ul &gt; li ul.topicsList &gt; li &gt; a div.detail p.date {
    width: 100px;
  }
}
@media screen and (max-width: 767px) {
  div.newsTopics &gt; ul &gt; li ul.topicsList &gt; li &gt; a {
    padding-left: 10px;
    padding-right: 10px;
    display: block;
  }
  div.newsTopics &gt; ul &gt; li ul.topicsList &gt; li &gt; a div.detail p.txt {
    margin-left: 85px;
  }
  div.newsTopics &gt; ul &gt; li ul.topicsList &gt; li &gt; a div.detail p.date {
    width: 85px;
  }
}
div.newsTopics &gt; ul &gt; li ul.eventList &gt; li &gt; a {
  padding: 15px 10px;
  position: relative;
}
div.newsTopics &gt; ul &gt; li ul.eventList &gt; li &gt; a p.date {
  color: #9489d8;
}
@media screen and (min-width: 768px) {
  div.newsTopics &gt; ul &gt; li ul.eventList &gt; li &gt; a {
    display: table;
    border-spacing: 0;
  }
  div.newsTopics &gt; ul &gt; li ul.eventList &gt; li &gt; a p.date {
    width: 138px;
  }
  div.newsTopics &gt; ul &gt; li ul.eventList &gt; li &gt; a p.txt,
  div.newsTopics &gt; ul &gt; li ul.eventList &gt; li &gt; a p.date {
    display: table-cell;
    vertical-align: top;
  }
}
@media screen and (max-width: 767px) {
  div.newsTopics &gt; ul &gt; li ul.eventList &gt; li &gt; a {
    display: block;
  }
}
div.newsTopics &gt; ul.toggle-tab-btn {
  display: table;
  border-spacing: 10px 0;
}
div.newsTopics &gt; ul.toggle-tab-btn &gt; li {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  color: #fff;
  line-height: 1.5;
  font-family: "游ゴシック", YuGothic, sans-serif;
  font-weight: normal;
}
@media all and (-ms-high-contrast: none) {
  div.newsTopics &gt; ul.toggle-tab-btn &gt; li {
    font-family: sans-serif;
  }
}
@media screen and (min-width: 768px) {
  div.newsTopics &gt; ul.toggle-tab-btn &gt; li {
    font-size: 21px;
  }
}
@media screen and (max-width: 767px) {
  div.newsTopics &gt; ul.toggle-tab-btn &gt; li {
    font-size: 14.7px;
  }
}
div.newsTopics &gt; ul.toggle-tab-btn &gt; li &gt; p,
div.newsTopics &gt; ul.toggle-tab-btn &gt; li &gt; a {
  padding: 0 1em;
  color: #fff;
}
div.newsTopics &gt; ul.toggle-tab-content &gt; li {
  background: none;
}
@media screen and (min-width: 768px) {
  div.newsTopics &gt; ul.toggle-tab-btn {
    min-width: 50%;
  }
}
@media screen and (max-width: 767px) {
  div.newsTopics &gt; ul.toggle-tab-btn {
    width: 100%;
  }
}


/* 記事詳細ページ */

.myDetailBlock a {
	color: #52BEFB;
}
.myDetailBlock a.movie_link{
	color: #895687;
}
.myDetailBlock a:hover {
	text-decoration: underline;
}
.modPartsBlock02:after {
	content: ".";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}
.modPartsBlock02_imagel .image {
	float: left;
	padding-right: 50px;
	margin-bottom: 20px;
	max-width: 530px;
}
.modPartsBlock02_imager .image {
	float: right;
	padding-left: 50px;
	margin-bottom: 20px;
	max-width: 530px;
}

@media only screen and (max-width: 992px) {
.modPartsBlock02_imagel .image {
    float: none;
    padding-right: 0;
}
.modPartsBlock02_imager .image {
    float: none;
    padding-left: 0;
}
}


/* ファイルボタン */

.modBtn01 {
	display: block;
	width: 100%;
	background-color: #f8f8f2;
	border-bottom: solid 4px #52BEFB;
	position: relative;
	padding: 25px 20px 25px 50px;
	text-decoration: none;
	font-size: 20px;
	font-size: 2rem;
	font-weight: 600;
	color: #333;
	line-height: 1.4;
}

.modBtn01:hover {
	color: #52BEFB;
	text-decoration: none;
}

.modBtn01:before {
	content: "";
	font-family: FontAwesome;
	line-height: 1;
	position: absolute;
	top: 0;
	left: 20px;
	bottom: 0;
	margin: auto;
	height: 1em;
	color: #52BEFB;
	font-size: 14px;
}

.modBtn01 .fa {
	margin-left: 8px;
	color: #52BEFB;
}

.modBtn01_color02 {
	background-color: #fff;
}

.modBtn01_center {
	text-align: center;
}

.modBtn01_inline {
	display: inline-block;
	width: auto;
}

.modBtn01_large {
	padding-top: 35px;
	padding-bottom: 35px;
}

.modBtn01_arrowL:before {
	content: "";
}

.modBtn01_pdf:before {
	content: "\f1c1";
	font-size: 20px;
}

.modBtn01_file:before {
	content: "";
	font-size: 20px;
}

.modBtn01_ex:before {
	content: "";
	font-size: 20px;
}

.modBtn01_word:before {
	content: "\f1c2";
	font-size: 20px;
}

.modBtn01 .sub {
	font-size: 14px;
	font-size: 1.4rem;
}

.modBtn01 .sub02 {
	margin-top: 10px;
	font-size: 14px;
	font-size: 1.4rem;
}

.modBtn02 {
	display: block;
	width: 100%;
	background-color: #f8f8f2;
	border-bottom: solid 4px #895687;
	position: relative;
	padding: 25px 20px 25px 50px;
	text-decoration: none;
	font-size: 20px;
	font-size: 2rem;
	font-weight: 600;
	color: #333;
	line-height: 1.4;
}

.modBtn02:hover {
	color: #895687;
	text-decoration: none !important;
}

.modBtn02:before {
	content: "";
	font-family: FontAwesome;
	line-height: 1;
	position: absolute;
	top: 0;
	left: 20px;
	bottom: 0;
	margin: auto;
	height: 1em;
	color: #895687;
	font-size: 14px;
}

.modBtn02_inline {
	display: inline-block;
	width: auto;
}

.modBtn02_pdf:before {
	content: "\f1c1";
	font-size: 20px;
}

p.modPartsLinkList {
	max-width: 760px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

p.modPartsLinkList a {
	/*min-width: 360px;*/
	text-align: left;
}


/*************************************
	etc
*************************************/
.rightBox {
  text-align: right;
}

.centerBox {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .centerBox.addSpace &gt; * {
    margin-left: 1em;
  }
  .centerBox.addSpace &gt; *:first-child {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .centerBox.addSpace &gt; * {
    margin-top: 1em;
  }
  .centerBox.addSpace &gt; *:first-child {
    margin-top: 0;
  }
}

.cssBtn {
  border-radius: 2em;
  padding: 0.5em 1em;
  display: inline-block;
  color: #fff;
  background-color: #000;
  box-sizing: border-box;
  max-width: 80%;
  font-size: 18px;
  font-family: "Tsukushi A Round Gothic","筑紫A丸ゴシック", sans-serif;
  font-weight: normal;
}
.cssBtn::before {
  display: inline-block;
  margin-right: 0.5em;
  content: url(../img/icon_btn_arrow_re.svg);
}
.cssBtn:hover::before {
  opacity: 0.5;
}
.cssBtn.w300 {
  width: 300px;
}
.cssBtn.w644 {
  width: 644px;
}
.cssBtn.grn {
  background-color: #3cab4c;
}
.cssBtn_orange {
	background-color: #FBB03B;
}
.cssBtn_orange:hover {
	color: #FFFFFF;
}

@media screen and (min-width: 768px) {
  .mgnT {
    margin-top: 100px !important;
  }
}
@media screen and (max-width: 767px) {
  .mgnT {
    margin-top: 50px !important;
  }
}

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

.txtLink {
  text-decoration: underline;
}
.txtLink:hover {
  text-decoration: none;
}

/* renewal */

figure {
	padding: 0;
	margin: 0;
}

.gHeader::before {
	display: none;
}

.gHeader.is-open::after {
	display: none;
}

.gHeader__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	padding-right: 114px;
	padding-left: 114px;
	max-width: 1400px;
	box-sizing: border-box;
	margin-right: auto;
	margin-left: auto;
	height: 112px;
}

.gHeader__sitetitle {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 282px;
	padding: 0;
	margin: 0;
}

.gHeader__sitetitle &gt; a {
	width: 100%;
	display: inline-block;
	height: auto;
}

.gHeader__sitetitle &gt; a img {
	-webkit-transition: none;
	transition: none;
	display: inline;
	height: auto;
}


@media screen and (min-width: 768px) {
  .gHeader__info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 112px;
}
}

.gHeader__request {
	display: block;
	padding-right: 20px;
}

.gHeader__access{
	display: block;
	padding-right: 20px;
}

.gHeader .form-button {
	background-color: #333333;
	border-radius: 0;
	background-image: url(../img/renewal/icon_search.svg);
	background-size: 25px 25px;
	background-repeat: no-repeat;
	background-position: center;
	width: 50px;
	height: 50px;
	right: 50px;
}

.gHeader .form-button::before {
	display: none;
}

.gHeader #search {
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	padding-right: 20px;
}

.gHeader #search .gsc-search-box table {
	border-color: #ccc;
	border-width: 1px;
}

.gHeader #search .gsc-search-button button {
	background-color: #fff !important;
	border: none;
	padding: 0 0 0 5px;
	margin: 0;
}

.gHeader #search .gsc-search-button-v2 svg {
	width: 25px;
	height: 27px;
	fill: #000;
}

.gHeader div#search.is-open {
	margin-top: 0;
	display: block;
	padding-right: 0;
	padding-top: 20px;
}

.gHeader__menuBtn {
	right: 0;
	top: 0;
	border-radius: 0;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	width: 112px;
	height: 112px;
	cursor: pointer;
}

.gHeader__menuBtn::before {
	content: "";
	background-image: url(../img/renewal/head_menu_txt.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 32px 11px;
	bottom: 37px;
	height: 20px;
	margin-left: 0;
	left: 0;
	right: 0;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}

.gHeader__menuBtn i {
	width: 30%;
}

.gHeader__menuBtn i::before,
.gHeader__menuBtn i::after {
	border-radius: 0;
}

.is-open.gHeader .menu-button i {
	width: 30%;
}

.gFooter {
	padding-bottom: 22px;
}

.gFooter-nav01 {
	background-color: rgba(255, 255, 255, 0.5);
	background-color: #ccc;
	padding-top: 25px;
	padding-bottom: 20px;
}

.gFooter-nav01__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 638px;
	margin-right: auto;
	margin-left: auto;
}

.gFooter-nav01__link {
	display: block;
	width: 44.5%;
	padding: 5px 8px;
	background-color: #fff;
	border-radius: 9999px;
	font-weight: bold;
	text-align: center;
	font-size: 1.6rem;
}

.gFooter-nav01__link::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	position: relative;
	top: calc(2px + 0.15em);
	border-right: solid 3px;
	border-top: solid 3px;
	-webkit-transform-origin: center center;
	-ms-transform-origin: center center;
	transform-origin: center center;
	-webkit-transform: rotate(45deg) translate(-50%, -50%);
	-ms-transform: rotate(45deg) translate(-50%, -50%);
	transform: rotate(45deg) translate(-50%, -50%);
	margin-right: 12px;
	color: #ccc;
}

.gFooter-nav02 {
	padding-top: 20px;
}

.gFooter-nav02__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0;
}

.gFooter-nav02__item {
	position: relative;
	margin-bottom: 8px !important;
	line-height: 1.4;
}

.gFooter-nav02__item:not(:last-child) {
	margin-right: 20px;
}

.gFooter-nav02__item:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 0.35em;
	bottom: 0.35em;
	right: -10px;
	background-color: #333;
	width: 1px;
}

.gFooter-nav02__link {
	font-size: 1.3rem;
}

.gFooter__pagetop {
	padding: 14px 20px 30px !important;
	text-align: center;
}

.gFooter__pagetop img {
	width: 50px;
}

.gFooter__copyright {
	text-align: center;
	font-size: 1.4rem;
}

body {
	padding-bottom: 0;
}

body::before {
	display: none;
}

.container {
	max-width: 1150px;
	box-sizing: content-box;
	margin-right: auto;
	margin-left: auto;
	padding-right: 10px;
	padding-left: 10px;
}

.container.-large {
	max-width: 1170px;
}

.gContact {
	padding-top: 40px;
	background-image: url(../img/renewal/bg_contact.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.gContact__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-bottom: 81px;
	margin-top: -8px;
	margin-right: auto;
	margin-left: auto;
	max-width: 1107px;
}

.gContact__inner::before {
	content: "";
	display: block;
	width: 28.5%;
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
}

.gContact__link {
	display: block;
	width: 28.5%;
	margin-top: 33px;
	padding: 20px 10px;
	background-color: #fff;
	border-radius: 10px;
	text-align: center;
	font-size: 1.5rem;
	font-weight: bold;
}

.gContact__link::before {
	content: "";
	display: inline-block;
	margin-right: 10px;
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 100% auto;
	vertical-align: middle;
}

.gContact__link:nth-child(-n + 3) {
	margin-top: 0;
}

.gContact__link.-file::before {
	background-image: url(../img/renewal/icon_file.svg);
	width: 26px;
	height: 31px;
}

.gContact__link.-mail::before {
	background-image: url(../img/renewal/icon_mail.svg);
	width: 24px;
	height: 19px;
}

.gContact__link.-entry::before {
	background-image: url(../img/renewal/icon_pc.svg);
	width: 31px;
	height: 24px;
}

.gContact__link.-insta::before {
	background-image: url(../img/renewal/icon_insta.svg);
	width: 29px;
	height: 29px;
}

.gContact__link.-youtube::before {
	background-image: url(../img/renewal/icon_youtube.svg);
	width: 29px;
	height: 21px;
}

.gContact__link.-line::before {
	background-image: url(../img/renewal/icon_line.svg);
	width: 32px;
	height: 31px;
}

.gPankz {
	color: #895687;
	font-weight: bold;
}

.gPankz li::before {
	padding-right: 18px;
	margin-left: 14px;
}

p.category &gt; span.modSubCategory01 {
	background-color: #A9C300;
}

p.category &gt; span.modSubCategory02 {
	background-color: #895687;
}

.modTitle01 {
	margin-bottom: 50px;
	background-color: transparent;
	text-align: center;
	font-weight: bold;
	line-height: 1.2;
}

h2.modTitle01 {
	display: block;
	background-color: transparent !important;
	height: auto !important;
}

.modTitle01__main {
	display: block;
	color: #333;
	font-size: 2.7rem;
	letter-spacing: 0.05em;
}

.modTitle01.-color02 .modTitle01__main {
	color: #333;
}

.modTitle01.-color03 .modTitle01__main {
	color: #fff;
}

.modTitle01__sub {
	color: #895687;
	font-size: 1.1rem;
}

.modTitle01:not(.-color02):not(.-color02) .modTitle01__sub {
	display: none;
}

.modTitle01.-color02 .modTitle01__sub {
	color: #333;
}

.modTitle01.-color03 .modTitle01__sub {
	color: #fff;
}

.modNav01 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.modNav01Wrap {
	background-color: #E7DDE7;
	padding-top: 90px;
	padding-bottom: 90px;
}

.modNav01__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	background-color: #fff;
	width: 48.8%;
	min-height: 170px;
	margin-top: 50px;
	border-radius: 8px;
	overflow: hidden;
}

.modNav01__item:nth-child(-n + 2) {
	margin-top: 0;
}

.modNav01__image {
	width: 57%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.modNav01 .-movie01 .modNav01__image {
	background-image: url(../img/renewal/bg_link_movie01.jpg);
}

.modNav01 .-movie02 .modNav01__image {
	background-image: url(../img/renewal/bg_link_movie01.jpg);
}

.modNav01 .-visit .modNav01__image {
	background-image: url(../img/renewal/bg_link_visit.jpg);
}

.modNav01 .-conference .modNav01__image {
	background-image: url(../img/renewal/bg_link_conference.jpg);
}

.modNav01 .-line .modNav01__image {
	background-image: url(../img/renewal/bg_link_line.jpg);
}

.modNav01 .-online .modNav01__image {
	background-image: url(../img/renewal/bg_link_online.jpg);
}

.modNav01__detail {
	width: 43%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
}

.modNav01__inner {
	width: 100%;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-right: 34px;
	padding-left: 25px;
	font-size: 1.7rem;
	line-height: 1.4;
	font-weight: bold;
}

.modNav01__inner::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	position: absolute;
	top: calc(50% + 2px);
	right: 20px;
	border-right: solid 2px;
	border-top: solid 2px;
	-webkit-transform-origin: center center;
	-ms-transform-origin: center center;
	transform-origin: center center;
	-webkit-transform: rotate(45deg) translate(-50%, -50%);
	-ms-transform: rotate(45deg) translate(-50%, -50%);
	transform: rotate(45deg) translate(-50%, -50%);
	color: #895687;
}

.modNav01__inner .small {
	font-size: 76%;
}

.modNav_center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.modCategory01 {
	background-color: #fff;
	display: block;
	padding: 4px 5px;
	box-sizing: border-box;
	border: solid 1px #895687;
	font-size: 1.4rem;
	text-align: center;
	color: #895687;
}

p.category &gt; span.modCategory01 {
	color: #895687;
}

.modCategory02 {
	background-color: #fff;
	display: block;
	padding: 4px 5px;
	box-sizing: border-box;
	border: solid 1px #aac739;
	font-size: 1.4rem;
	text-align: center;
	color: #aac739;
}

p.category &gt; span.modCategory02 {
	color: #aac739;
}

.modCategory03 {
	background-color: #fff;
	display: block;
	padding: 4px 5px;
	box-sizing: border-box;
	border: solid 1px #8b8ce7;
	font-size: 1.4rem;
	text-align: center;
	color: #8b8ce7;
}

p.category &gt; span.modCategory03 {
	color: #8b8ce7;
}

.modCategory04 {
	background-color: #fff;
	display: block;
	padding: 4px 5px;
	box-sizing: border-box;
	border: solid 1px #ff6699;
	font-size: 1.4rem;
	text-align: center;
	color: #ff6699;
}

p.category &gt; span.modCategory04 {
	color: #ff6699;
}

.modCategory05 {
	background-color: #fff;
	display: block;
	padding: 4px 5px;
	box-sizing: border-box;
	border: solid 1px #f5a916;
	font-size: 1.4rem;
	text-align: center;
	color: #f5a916;
}

p.category &gt; span.modCategory05 {
	color: #f5a916;
}

.modCategory06 {
	background-color: #fff;
	display: block;
	padding: 4px 5px;
	box-sizing: border-box;
	border: solid 1px #009be4;
	font-size: 1.4rem;
	text-align: center;
	color: #009be4;
}

p.category &gt; span.modCategory06 {
	color: #009be4;
}

.modCategory07 {
	background-color: #fff;
	display: block;
	padding: 4px 5px;
	box-sizing: border-box;
	border: solid 1px #ec6519;
	font-size: 1.4rem;
	text-align: center;
	color: #ec6519;
}

p.category &gt; span.modCategory07 {
	color: #ec6519;
}

.modCategory08 {
	background-color: #fff;
	display: block;
	padding: 4px 5px;
	box-sizing: border-box;
	border: solid 1px #70b735;
	font-size: 1.4rem;
	text-align: center;
	color: #70b735;
}

p.category &gt; span.modCategory08 {
	color: #70b735;
}

.modCategory09 {
	background-color: #fff;
	display: block;
	padding: 4px 5px;
	box-sizing: border-box;
	border: solid 1px #5854a2;
	font-size: 1.4rem;
	text-align: center;
	color: #5854a2;
}

p.category &gt; span.modCategory09 {
	color: #5854a2;
}

.modCategory10 {
	background-color: #fff;
	display: block;
	padding: 4px 5px;
	box-sizing: border-box;
	border: solid 1px #d0d72f;
	font-size: 1.4rem;
	text-align: center;
	color: #d0d72f;
}

p.category &gt; span.modCategory10 {
	color: #d0d72f;
}

.modCategory11 {
	background-color: #fff;
	display: block;
	padding: 4px 5px;
	box-sizing: border-box;
	border: solid 1px #a58bbf;
	font-size: 1.4rem;
	text-align: center;
	color: #a58bbf;
}

p.category &gt; span.modCategory11 {
	color: #a58bbf;
}

.modCategory12 {
	background-color: #fff;
	display: block;
	padding: 4px 5px;
	box-sizing: border-box;
	border: solid 1px #aac739;
	font-size: 1.4rem;
	text-align: center;
	color: #aac739;
}

p.category &gt; span.modCategory12 {
	color: #aac739;
}

.modCategory13 {
	background-color: #fff;
	display: block;
	padding: 4px 5px;
	box-sizing: border-box;
	border: solid 1px #33C6C1;
	font-size: 1.4rem;
	text-align: center;
	color: #33C6C1;
}

p.category &gt; span.modCategory13 {
	color: #33C6C1;
}



.mySelectList {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	max-width: 600px;
	margin-right: auto;
	margin-left: auto;
}

.mySelectList li {
	width: 48%;
	margin: 0;
	padding: 0 20px;
	box-sizing: border-box;
}

.mySelectList li select {
	width: 100%;
}

@media screen and (min-width: 700px) and (min-width: 768px) {

.gNav.nav-content {
	top: 112px;
}

.is-open .gNav.nav-content {
	top: 112px;
}

}

@media screen and (min-width: 768px) and (max-width: 768px) {

.gNav.nav-content {
	top: 50px;
}

}

@media only screen and (max-width: 1240px) {

.gHeader__inner {
	padding-left: 10px;
}

.gHeader__sitetitle {
	width: 180px;
}

.gHeader__request img {
	width: 180px;
}

.gHeader__access img {
	width: 180px;
}	
	
}

@media only screen and (max-width: 952px) {

.gHeader__inner {
	padding-left: 10px;
}

.gHeader__sitetitle {
	width: 180px;
}

.gHeader__request {
    padding-right: 5px;
}
	
.gHeader__request img {
	width: 120px;
}

.gHeader__access {
	padding-right: 5px;
}	
	
.gHeader__access img {
	width: 120px;
}	
	
}



@media only screen and (max-width: 768px) {

.gHeader__inner {
	padding-right: 0;
	padding-left: 0;
	height: 50px;
}

.gHeader__sitetitle {
	width: 150px;
	padding-left: 10px;
}

.gHeader__info {
	height: 50px;
}

.gHeader #search {
	padding-right: 70px;
}

.gHeader #search .gsc-input-box {
	padding: 0;
}

.gHeader__menuBtn {
	width: 50px;
	height: 50px;
}

.gHeader__menuBtn::before {
	background-size: 22px 8px;
	bottom: 8px;
}

.gHeader__menuBtn i {
	width: 40%;
	height: 4%;
}

.is-open.gHeader .menu-button i {
	width: 40%;
}

.is-open .gNav.nav-content {
	top: 50px;
}

}

@media screen and (max-width: 767px) {

.gHeader__inner {
	display: block;
}

.gHeader__request {
	background-color: #4D4D4D;
	background-image: url(../img/renewal/icon_book.svg);
	background-size: 23px 19px;
	background-repeat: no-repeat;
	background-position: center;
	width: 50px;
	height: 50px;
	padding-right: 0;
	position: absolute;
	top: 0;
	right: 150px;
}

.gHeader__request img {
	display: none;
}

.gHeader__access {
	background-color: #444444;
	background-image: url(../img/renewal/icon_train.svg);
	background-size: 28px 23px;
	background-repeat: no-repeat;
	background-position: center;
	width: 50px;
	height: 50px;
	padding-right: 0;
	position: absolute;
	top: 0;
	right: 100px;
}

.gHeader__access img {
	display: none;
}	
	
.mySelectList li {
	margin: 0;
	padding: 0 10px;
}

}

@media only screen and (max-width: 600px) {

.gFooter-nav01__inner {
	display: block;
	max-width: 70.4698vw;
	margin-right: auto;
	margin-left: auto;
}

.gFooter-nav01__link {
	width: auto;
	font-size: 1.1rem;
}

.gFooter-nav01__link:not(:last-child) {
	margin-bottom: 8px;
}

.gFooter-nav01__link::before {
	width: 4px;
	height: 4px;
	border-right-width: 2px;
	border-top-width: 2px;
}

.gFooter-nav02__item {
	margin-bottom: 4px !important;
}

.gFooter-nav02__link {
	font-size: 0.8rem;
}

.gFooter__copyright {
	font-size: 1rem;
}

.gContact__inner::before {
	display: none;
}

.gContact__inner {
	display: block;
	max-width: 80.03356vw;
	margin-right: auto;
	margin-left: auto;
	margin-top: 0;
	padding-bottom: 30px;
}

.gContact__link {
	width: auto;
	margin-top: 0;
	padding: 12px 10px;
	font-size: 1.1rem;
}

.gContact__link:not(:last-child) {
	margin-bottom: 15px;
}

.gContact__link.-file::before {
	width: 15px;
	height: 18px;
}

.gContact__link.-mail::before {
	width: 20px;
	height: 16px;
}

.gContact__link.-entry::before {
	width: 21px;
	height: 16px;
}

.gContact__link.-insta::before {
	width: 20px;
	height: 20px;
}

.gContact__link.-youtube::before {
	width: 18px;
	height: 13px;
}

.gContact__link.-line::before {
	width: 20px;
	height: 19px;
}

.modTitle01 {
	margin-bottom: 20px;
}

.modTitle01__main {
	font-size: 1.8rem;
}

.modTitle01__sub {
	font-size: 0.8rem;
}

.modNav01 {
	display: block;
}

.modNav01Wrap {
	padding-top: 40px;
	padding-bottom: 40px;
}

.modNav01__item {
	width: auto;
	margin-top: 0;
	min-height: 30vw;
}

.modNav01__item:not(:last-child) {
	margin-bottom: 20px;
}

.modNav01__inner {
	padding-left: 15px;
	font-size: 1.5rem;
}

.modCategory01 {
	padding: 0;
	font-size: 1.2rem;
}

.modCategory02 {
	padding: 0;
	font-size: 1.2rem;
}

.modCategory03 {
	padding: 0;
	font-size: 1.2rem;
}

.modCategory04 {
	padding: 0;
	font-size: 1.2rem;
}

.modCategory05 {
	padding: 0;
	font-size: 1.2rem;
}

.modCategory06 {
	padding: 0;
	font-size: 1.2rem;
}

.modCategory07 {
	padding: 0;
	font-size: 1.2rem;
}

.modCategory08 {
	padding: 0;
	font-size: 1.2rem;
}

.modCategory09 {
	padding: 0;
	font-size: 1.2rem;
}

.modCategory10 {
	padding: 0;
	font-size: 1.2rem;
}

.modCategory11 {
	padding: 0;
	font-size: 1.2rem;
}

}

</pre></body></html>