@charset "UTF-8";

/*=========================================================================
//
// Base
//
==========================================================================*/
/*-------------------------------------------------------------------------
 [Base] reset
--------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  /*vertical-align: baseline;*/
  background: transparent;
}

/* HTML5 display-role reset for older browsers --------------------- */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  font-family: sans-serif;
      -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

:focus {
  outline: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

img {
  border: 0;
  /*vertical-align: top;*/
}

a {
  cursor: pointer;
  outline: none;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -.5em;
}

sub {
  bottom: -.25em;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  color: inherit;
  font: inherit;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="search"] {
  box-sizing: content-box;
}

/*-------------------------------------------------------------------------
 [Base] base setting
--------------------------------------------------------------------------*/
/*Webフォント読込対策*/
html {
  visibility: hidden;
}
html.wf-active {
  visibility: visible;
}

body, input, textarea, select, option, button {
  background: #f5f5f5;
  /*font-family: "Gotham SSm A", "Gotham SSm B", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
  font-family:"メイリオ", Meirio, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  color: #333;
  line-height: 1.7;
  font-size: 14px;
}

body {
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
}


@media (max-width: 600px) {
  body {
    min-width: inherit;
    min-width: auto;
    line-height: 1.5;
  }
}

a:link,
a:visited {
  color: #000;
  text-decoration: none;
}

a:active,
a:hover {
  color: #a00;
  text-decoration: underline;
}

input[type="text"],
input[type="search"],
input[type="password"],
input[type="tel"],
input[type="url"],
input[type="email"],
input[type="number"],
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"] {
  box-sizing: border-box;
  padding: 5px;
  -webkit-appearance: none;
  border-radius: 0;
  border: 1px solid #d2d2d2;
}

input[type="radio"],
input[type="checkbox"] {
  margin-right: 5px;
}

textarea {
  width: 100%;
  resize: vertical;
  padding: 5px;
  border: 1px solid #d2d2d2;
  box-sizing: border-box;
}

select {
  padding: 5px;
  border: 1px solid #d2d2d2;
  box-sizing: border-box;
}

button {
  display: block;
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}

label {
  display: block;
  cursor: pointer;
}

p {
  margin-top: .5em;
  margin-bottom: .5em;
  word-wrap: break-word;
  text-align: justify;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: normal;
/*  hanging-punctuation: none; */
}

p:first-child {
  margin-top: 0;
}

ul, ol, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 600px) {
  p {
    margin-top: .6em;
  }
}

/*=========================================================================
//
// Utility
//
==========================================================================*/
/*-------------------------------------------------------------------------
 utility
--------------------------------------------------------------------------*/
/* clearfix
----------------------------------------------------------- */
.g-clearfix {
  *zoom: 1;
}

.g-clearfix:after {
  content: ".";
  display: block;
  visibility: hidden;
  font-size: 0;
  height: 0;
  clear: both;
}

/* image
----------------------------------------------------------- */
.g-img-full {
  width: 100%;
  height: auto;
}

.g-img-max {
  max-width: 100%;
  height: auto;
}

/* hover
----------------------------------------------------------- */
.g-hover {
  -webkit-transition: opacity .3s;
          transition: opacity .3s;
}

/* display
----------------------------------------------------------- */
.g-block {
  display: block !important;
}

.g-inline {
  display: inline !important;
}

.g-nowrap {
  white-space: nowrap !important;
}

.g-tcenter {
  text-align: center !important;
}

.g-tleft {
  text-align: left !important;
}

.g-tright {
  text-align: right !important;
}

.g-tcenter-mq {
  text-align: center !important;
}

@media (max-width: 600px) {
  .g-tcenter-mq {
    text-align: left !important;
  }
}

.g-center {
  display: table !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.g-left {
  display: table !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.g-right {
  display: table !important;
  margin-left: auto !important;
  margin-right: 0 !important;
}

.g-disp-s,
.g-disp-m,
.g-disp-sm {
  display: none !important;
}

.g-disp-l,
.g-disp-ml {
  display: block !important;
}

@media (max-width: 800px) {
  .g-disp-m,
  .g-disp-sm,
  .g-disp-ml {
    display: block !important;
  }
  .g-disp-l,
  .g-disp-s {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .g-disp-s,
  .g-disp-sm {
    display: block !important;
  }
  .g-disp-m,
  .g-disp-l,
  .g-disp-ml {
    display: none !important;
  }
}

@media print {
  .g-printoff {
    display: none !important;
  }
}

/* margin, padding
----------------------------------------------------------- */
.g-mt-0 {
  margin-top: 0 !important;
}

.g-mt-5 {
  margin-top: 5px !important;
}

.g-mt-10 {
  margin-top: 10px !important;
}

.g-mt-15 {
  margin-top: 15px !important;
}

.g-mt-20 {
  margin-top: 20px !important;
}

.g-mt-25 {
  margin-top: 25px !important;
}

.g-mt-30 {
  margin-top: 30px !important;
}

.g-mt-35 {
  margin-top: 35px !important;
}

.g-mt-40 {
  margin-top: 40px !important;
}

.g-mt-45 {
  margin-top: 45px !important;
}

.g-mt-50 {
  margin-top: 50px !important;
}

.g-mb-0 {
  margin-bottom: 0 !important;
}

.g-mb-5 {
  margin-bottom: 5px !important;
}

.g-mb-10 {
  margin-bottom: 10px !important;
}

.g-mb-15 {
  margin-bottom: 15px !important;
}

.g-mb-20 {
  margin-bottom: 20px !important;
}

.g-mb-25 {
  margin-bottom: 25px !important;
}

.g-mb-30 {
  margin-bottom: 30px !important;
}

.g-mb-35 {
  margin-bottom: 35px !important;
}

.g-mb-40 {
  margin-bottom: 40px !important;
}

.g-mb-45 {
  margin-bottom: 45px !important;
}

.g-mb-50 {
  margin-bottom: 50px !important;
}

.g-ml-0 {
  margin-left: 0 !important;
}

.g-ml-5 {
  margin-left: 5px !important;
}

.g-ml-10 {
  margin-left: 10px !important;
}

.g-ml-15 {
  margin-left: 15px !important;
}

.g-ml-20 {
  margin-left: 20px !important;
}

.g-ml-25 {
  margin-left: 25px !important;
}

.g-ml-30 {
  margin-left: 30px !important;
}

.g-ml-35 {
  margin-left: 35px !important;
}

.g-ml-40 {
  margin-left: 40px !important;
}

.g-ml-45 {
  margin-left: 45px !important;
}

.g-ml-50 {
  margin-left: 50px !important;
}

.g-pt-0 {
  padding-top: 0 !important;
}

.g-pt-5 {
  padding-top: 5px !important;
}

.g-pt-10 {
  padding-top: 10px !important;
}

.g-pt-15 {
  padding-top: 15px !important;
}

.g-pt-20 {
  padding-top: 20px !important;
}

.g-pt-25 {
  padding-top: 25px !important;
}

.g-pt-30 {
  padding-top: 30px !important;
}

.g-pt-35 {
  padding-top: 35px !important;
}

.g-pt-40 {
  padding-top: 40px !important;
}

.g-pt-45 {
  padding-top: 45px !important;
}

.g-pt-50 {
  padding-top: 50px !important;
}

/* width
--------------------------------------------------------*/
.g-width-5 {
  width: 5% !important;
}

.g-width-10 {
  width: 10% !important;
}

.g-width-15 {
  width: 15% !important;
}

.g-width-20 {
  width: 20% !important;
}

.g-width-25 {
  width: 25% !important;
}

.g-width-30 {
  width: 30% !important;
}

.g-width-35 {
  width: 35% !important;
}

.g-width-40 {
  width: 40% !important;
}

.g-width-45 {
  width: 45% !important;
}

.g-width-50 {
  width: 50% !important;
}

.g-width-55 {
  width: 55% !important;
}

.g-width-60 {
  width: 60% !important;
}

.g-width-65 {
  width: 65% !important;
}

.g-width-70 {
  width: 70% !important;
}

.g-width-75 {
  width: 75% !important;
}

.g-width-80 {
  width: 80% !important;
}

.g-width-85 {
  width: 85% !important;
}

.g-width-90 {
  width: 90% !important;
}

.g-width-95 {
  width: 95% !important;
}

.g-width-100 {
  width: 100% !important;
}

.g-width-33 {
  width: 33% !important;
}

.g-width-full {
  width: 100% !important;
}

/*=========================================================================
//
// Layout
//
==========================================================================*/
/*-------------------------------------------------------------------------
 header
--------------------------------------------------------------------------*/
.m-header-pc {
  display: block;
  position: relative;
  top: 0;
}
.m-header-pc {
  position: absolute; /* 動画背景＋オーバーレイのため */
    height: 96px; /* header-fixed用 */
}
.m-header-sp {
  display: none;
}

.m-header-pc a {
	color: #000;
}
.m-header-pc a:hover {
	color: #c00;
	text-decoration: none;
}
.m-header-pc .m-header__above {
  width: 100%;
  background-color: #f0f0f0;
  border-bottom: 6px solid #253f68;
  height: 40px;
    opacity: 1;
}

.m-header-pc .m-header__above-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.m-header__tagline {
	font-size: 14px;
	float: left;
	position: relative;
	top: 5px;
}
.m-header-pc .m-header__util {
  display: table;
  margin-left: auto;
  padding: 0;
	position: relative;
	top: 3px;
}

.m-header-pc .m-header__util > li {
  display: table-cell;
  padding-left: 32px;
  vertical-align: middle;
  line-height: 1;
  font-weight: bold;
  color: #333;
  font-size: 14px;
}

.m-header-pc .m-header__util > li > a {
  text-decoration: none;
  color: #333;
}

/*
.m-header-pc .m-header__contact > a {
  postion: relative;
}

.m-header-pc .m-header__contact > a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  width: 26px;
  height: 26px;
  background: url(../img/icon_contact.svg) no-repeat 0 0;
}
*/

.m-header-pc .m-header__main {
  width: 100%;
  background-color: #fff;
  /*border-bottom: 1px solid #ccc;*/
  position: relative;
  height: 96px;
}

.m-header-pc .m-header__main-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.m-header-pc .m-header__logo {
	width: 184px;
	position: absolute;
	top: -1px;
	z-index: 9999;

	-webkit-transition: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .2s;
	transform-origin: top left;
	
	text-align: left;
}

.m-header-pc .m-header__logo img {
	width: 82%;/* common.js #291と合わせる */
}
#toppage .m-header-pc .m-header__logo {
	width: 184px;
}
.m-header-pc .m-header__logo img {
	width: 184px;
}

/*
.m-header-pc .m-searchbox {
  text-align: right;
}

.m-header-pc .m-searchbox__text {
  width: 0;
  -webkit-transition: all .5s;
          transition: all .5s;
  padding: 1px 0;
  border: 0;
  box-sizing: border-box;
  font-weight: normal;
}

.m-header-pc .m-searchbox__btn {
  display: inline;
  width: 26px;
  height: 26px;
  margin-left: 4px;
  cursor: pointer;
}

.m-header-pc .m-searchbox__btn > img {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  -webkit-transition: all .3s;
          transition: all .3s;
}

.m-header-pc .m-searchbox__btn:hover > img {
  -webkit-transform: scale(1.15);
      -ms-transform: scale(1.15);
          transform: scale(1.15);
}

.m-header-pc .m-searchbox.is-active .m-searchbox__text {
  width: 220px;
  padding: 1px 8px;
}
*/
.m-header-pc .m-gnav {
	width: 100%;
	padding: 0 0 0 21%;
}

.m-header-pc .m-gnav > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:        flex;
  -webkit-box-align:   stretch;
  -webkit-align-items: stretch;
  -ms-flex-align:      stretch;
  align-items:         stretch;
  margin-left: auto;
  -webkit-justify-content: flex-start; /* Safari */
  justify-content:         flex-start;
}

/*.m-header-pc .m-gnav > ul .m-gnav-news {
  -webkit-box-flex: 1.2;
  -webkit-flex-grow: 1.2;
  -ms-flex-positive: 1.2;
          flex-grow: 1.2;
}*/

.m-header-pc .m-gnav > ul > li {
  /*-webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
          flex-grow: 1;*/
  vertical-align: middle;
  text-align: center;
  font-weight: bold;
}

.m-header-pc .m-gnav > ul > li > a {
  display: block;
  padding: 0 40px;
  -webkit-transition: all .3s;
          transition: all .3s;
  text-decoration: none;
  color: #000;
}

.m-header-pc .m-gnav > ul > li > a:hover, .m-header-pc .m-gnav > ul > li > a.is-current {
  background-color: #f5f5f5;
}

.m-header-pc .m-gnav > ul > li > a > div {
  display: table;
  width: 100%;
}

.m-header-pc .m-gnav > ul > li > a > div > span {
  display: table-cell;
  height: 96px;
  vertical-align: middle;
}

.m-header-pc .m-gnavsub {
  display: none;
  position: absolute;
  background-color: #333;
  padding: 0;
  text-align: left;
  font-weight: normal;
  z-index: 901;
}
/* 検証用 
.m-header-pc .m-gnavsub.m-gnavsub-01 {
  display: block;
}*/
.m-header-pc .m-gnavsub__inner {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.m-header-pc .m-gnavsub__top {
  font-size: 20px;
}

.m-header-pc .m-gnavsub__cont {
}

  .m-header-pc .m-gnav__sub {
    margin-top: 0;
  }
  .m-header-pc .m-gnav__sub > li {
    margin-top: 0;
    border-top: 1px solid #5e5e5e;
  }
  .m-header-pc .m-gnav__sub > li > a {
    display: block;
    padding: 11px 32px 11px 20px;
	color: #fff;
  }
  .m-header-pc .m-gnav__sub > li > a > span {
    position: relative;
    display: inline-block;
    padding-left: 18px;
  }
  .m-header-pc .m-gnav__sub > li > a > span:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 7px;
    left: 0;
    width: 5px;
    height: 5px;
    border-top: 2px solid #c00;
    border-right: 2px solid #c00;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }

.m-header-pc .m-gnavsub__img {
  margin: 0 0 20px 0;
}

.m-header-pc .m-gnavsub__img img {
  width: 100%;
}

.m-header-pc .m-gnavsub__img:hover a img {
  opacity: .75;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
      filter: alpha(opacity=75);
}

.m-header-pc .m-gnavsub__menu > li > a {
  padding-top: 2px;
  line-height: 1.5;
  font-size: 16px;
}

.m-header-pc .m-gnavsub__menu > li .m-linklist {
  margin-left: 7px;
}

.m-header-pc .m-gnavsub__childcol {
  overflow: hidden;
}

.m-header-pc .m-gnavsub__childcol > li {
  float: left;
  width: 50%;
  padding-right: 15px;
  box-sizing: border-box;
}

.m-header-pc .m-gnavsub__col2, .m-header-pc .m-gnavsub__col3, .m-header-pc .m-gnavsub__col4, .m-header-pc .m-gnavsub__col5 {
  overflow: hidden;
  margin-left: -2.5%;
}

.m-header-pc .m-gnavsub__col2 > li, .m-header-pc .m-gnavsub__col3 > li, .m-header-pc .m-gnavsub__col4 > li, .m-header-pc .m-gnavsub__col5 > li {
  float: left;
  padding-left: 2.5%;
  box-sizing: border-box;
}

.m-header-pc .m-gnavsub__col2 > li {
  width: 50%;
}

.m-header-pc .m-gnavsub__col3 > li {
  width: 33.3%;
}

.m-header-pc .m-gnavsub__col4 > li {
  width: 25%;
}

.m-header-pc .m-gnavsub__col5 > li {
  width: 20%;
}

/* ----- header-fixed ----- */

/* Fixed */
header.m-header-pc.fixed {
    position: fixed;
    border-top: 6px solid #253f68;
}
.m-header-pc.fixed .m-header__above {
    /*transition: margin-top 0s ease 0s;*/
    margin-top: -40px;
    opacity: 0;
}

/* transition */
header.m-header-pc.fixed,
.m-header-pc.fixed .m-header__main,
.m-header-pc.fixed .m-gnav > ul > li > a > div > span {
    transition: height .3s ease-in-out;
    -webkit-transition: height .3s ease-in-out;
    -moz-transition: height .3s ease-in-out;
    -o-transition: height .3s ease-in-out;
    height: 53px;
}
.m-header-pc.fixed .m-header__logo img {
    transition: width .3s ease-in-out;
    -webkit-transition: width .3s ease-in-out;
    -moz-transition: width .3s ease-in-out;
    -o-transition: width .3s ease-in-out;
    width:80%;
}

@media (max-width: 900px) {
  .m-header-pc {
    display: none;
  }
  .m-header-sp {
    display: block;
	height: 56px;
	position: relative;
	top: 0;
	position: fixed; /* ヘッダー固定 */
  }
  .m-header-sp .m-header-inner {
    padding: 10px 15px;
	height: 56px;
    border-top: 5px solid #000;
    border-top: 6px solid #253f68;
	border-bottom: 1px solid #e4e4e4;
    background-color: #fff;
    overflow: hidden;
    position: relative;
    z-index: 901;
	
  }
  .m-header-sp .m-header__logo {
    float: left;
  }
  .m-header-sp .m-header__logo img {
    width: 80px;
    height: auto;
  }
  .m-header-sp .m-header__menu {
    position: absolute;
	right: 0;
	top: 0;
	width: 50px;
	height: 50px;
	display: block;
    cursor: pointer;
  }
  .m-header-sp .m-header__menu > span {
    display: inline-block;
    -webkit-transition: all .3s;
            transition: all .3s;
    box-sizing: border-box;
    position: absolute;
    left: 18px;
    width: 17px;
    height: 2px;
    background-color: #000;
  }
  .m-header-sp .m-header__menu > span:nth-child(1) {
    top: 18px;
  }
  .m-header-sp .m-header__menu > span:nth-child(2) {
    top: 23px;
  }
  .m-header-sp .m-header__menu > span:nth-child(3) {
    top: 28px;
  }
  .m-header-sp .m-header__menu.is-open > span:nth-child(1) {
    -webkit-animation: openmenu1 .6s forwards;
            animation: openmenu1 .6s forwards;
  }
  .m-header-sp .m-header__menu.is-open > span:nth-child(2) {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  .m-header-sp .m-header__menu.is-open > span:nth-child(3) {
    -webkit-animation: openmenu3 .6s forwards;
            animation: openmenu3 .6s forwards;
  }
  .m-header-sp .m-header__menu.is-close > span:nth-child(1) {
    -webkit-animation: closemenu1 .6s forwards;
            animation: closemenu1 .6s forwards;
  }
  .m-header-sp .m-header__menu.is-close > span:nth-child(2) {
    -webkit-transition: all .3s;
            transition: all .3s;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  .m-header-sp .m-header__menu.is-close > span:nth-child(3) {
    -webkit-animation: closemenu3 .6s forwards;
            animation: closemenu3 .6s forwards;
  }
  @-webkit-keyframes openmenu1 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(5px) rotate(0);
              transform: translateY(5px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(5px) rotate(45deg);
              transform: translateY(5px) rotate(45deg);
    }
  }
  @keyframes openmenu1 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(5px) rotate(0);
              transform: translateY(5px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(5px) rotate(45deg);
              transform: translateY(5px) rotate(45deg);
    }
  }
  @-webkit-keyframes openmenu3 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(-5px) rotate(0);
              transform: translateY(-5px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(-5px) rotate(-45deg);
              transform: translateY(-5px) rotate(-45deg);
    }
  }
  @keyframes openmenu3 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(-5px) rotate(0);
              transform: translateY(-5px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(-5px) rotate(-45deg);
              transform: translateY(-5px) rotate(-45deg);
    }
  }
  @-webkit-keyframes closemenu1 {
    0% {
      -webkit-transform: translateY(5px) rotate(45deg);
              transform: translateY(5px) rotate(45deg);
    }
    50% {
      -webkit-transform: translateY(5px) rotate(0);
              transform: translateY(5px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
  }
  @keyframes closemenu1 {
    0% {
      -webkit-transform: translateY(5px) rotate(45deg);
              transform: translateY(5px) rotate(45deg);
    }
    50% {
      -webkit-transform: translateY(5px) rotate(0);
              transform: translateY(5px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
  }
  @-webkit-keyframes closemenu3 {
    0% {
      -webkit-transform: translateY(-5px) rotate(-45deg);
              transform: translateY(-5px) rotate(-45deg);
    }
    50% {
      -webkit-transform: translateY(-5px) rotate(0);
              transform: translateY(-5px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
  }
  @keyframes closemenu3 {
    0% {
      -webkit-transform: translateY(-5px) rotate(-45deg);
              transform: translateY(-5px) rotate(-45deg);
    }
    50% {
      -webkit-transform: translateY(-5px) rotate(0);
              transform: translateY(-5px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
  }
  .m-header-sp .m-gnav {
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 1.5;
    z-index: 901;
  }
  .m-header-sp .m-gnav > ul {
    border-bottom: 1px solid #ccc;
  }
  .m-header-sp .m-gnav > ul > li {
    border-top: 1px solid #ccc;
	text-align: left;
  }
  .m-header-sp .m-gnav > ul > li:first-child {
    border-top: 0;
  }
  .m-header-sp .m-gnav > ul > li > span {
    display: block;
    padding: 15px 40px 15px 15px;
    background-color: #efefef;
    text-decoration: none;
    font-weight: normal;
    font-size: 15px;
    position: relative;
  }
  .m-header-sp .m-gnav > ul > li > span:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -2px;
    width: 16px;
    height: 2px;
    background-color: #000;
  }
  .m-header-sp .m-gnav > ul > li > span:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -2px;
    width: 16px;
    height: 2px;
    background-color: #000;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transition: all .3s;
            transition: all .3s;
  }
  .m-header-sp .m-gnav > ul > li > span.is-open:after {
    -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
            transform: rotate(0);
  }
  .m-header-sp .m-gnav > ul > li > a {
    display: block;
    padding: 15px 40px 15px 15px;
    background-color: #efefef;
    text-decoration: none;
    font-weight: normal;
    font-size: 15px;
    position: relative;
  }
  .m-header-sp .m-gnav > ul > li > a:after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    top: 50%;
    right: 20px;
    background-color: inherit;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .m-header-sp .m-gnav__cont {
    display: none;
    background-color: #fff;
    font-weight: normal;
    font-size: 15px;
  }
  .m-header-sp .m-gnav__top {
    padding: 11px 15px;
    border-top: 1px solid #e4e4e4;
  }
  .m-header-sp .m-gnav__top > a {
    display: block;
    padding-top: 5px;
  }
  .m-header-sp .m-gnav__sub {
    margin-top: 0;
  }
  .m-header-sp .m-gnav__sub > li {
    margin-top: 0;
    border-top: 1px solid #e4e4e4;
  }
  .m-header-sp .m-gnav__sub > li > a {
    display: block;
    padding: 11px 10px 11px 40px;
  }
  .m-header-sp .m-gnav__sub > li > a > span {
    position: relative;
    display: inline-block;
    padding-left: 18px;
  }
  .m-header-sp .m-gnav__sub > li > a > span:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 7px;
    left: 0;
    width: 5px;
    height: 5px;
    border-top: 2px solid #c00;
    border-right: 2px solid #c00;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .m-header-sp .m-gnav__util {
    border-bottom: 1px solid #404040 !important;
  }
  .m-header-sp .m-gnav__util > li {
    border-top: 1px solid #404040 !important;
  }
  .m-header-sp .m-gnav__util > li > span,
  .m-header-sp .m-gnav__util > li > a {
    background-color: #000 !important;
    color: #fff;
  }
  .m-searchbox-sp {
    padding: 20px 5px 20px 15px;
    background-color: #000;
  }
  .m-searchbox-sp form {
    position: relative;
    padding-right: 45px;
  }
  .m-searchbox-sp__text {
    width: 100%;
    padding: 8px 8px !important;
    border: 1px solid #fff !important;
    background-color: #000;
    color: #fff;
  }
  .m-searchbox-sp__btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
  .m-searchbox-sp__btn > img {
    width: 19px;
    height: 19px;
    margin-top: 2px;
  }
}



/*-------------------------------------------------------------------------
 js module
--------------------------------------------------------------------------*/
/* accordion
--------------------------------------------------------*/
.m-acc {
  margin-top: 20px;
}

.m-acc__ctl {
  position: relative;
  cursor: pointer;
  padding-left: 30px;
}

.m-acc__ctl:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #c00;
}

.m-acc__ctl:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 7px;
  left: 7px;
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}

.m-acc__ctl:hover:before {
  background-color: #a00;
}

.m-acc__cont {
  display: none;
  box-sizing: border-box;
}

.m-acc.is-open .m-acc__ctl:after {
  top: 10px;
  left: 7px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.m-acc.is-open .m-acc__cont {
  display: block;
}

/* modal
--------------------------------------------------------*/
.m-modal {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  width: 90%;
  max-width: 1280px;
  margin: auto;
  padding: 30px 80px 40px;
  background-color: #fff;
  box-sizing: border-box;
  z-index: 1000;
}

.m-modal__close {
  position: absolute;
  top: 30px;
  right: 40px;
  width: 26px;
  height: 26px;
  margin-top: 0;
  cursor: pointer;
}

.m-modal__close:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 12px;
  left: -2px;
  width: 30px;
  height: 2px;
  background-color: #000;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.m-modal__close:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 12px;
  left: -2px;
  width: 30px;
  height: 2px;
  background-color: #000;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}

.m-modal__ttl {
  margin: 10px 0 25px;
  text-align: center;
  font-weight: normal;
  font-size: 24px;
}

.m-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  z-index: 900;
  cursor: pointer;
}

.is-overlay .m-modal-overlay {
  display: block;
}

.m-modal-iframe {
  width: 100%;
  height: 550px;
}

@media (max-width: 800px) {
  .m-modal {
    padding: 30px 50px;
  }
  .m-modal__close {
    top: 20px;
    right: 20px;
  }
}

@media (max-width: 600px) {
  .m-modal {
    padding: 50px 15px 15px;
  }
  .m-modal__inner {
    height: 400px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .m-modal__close {
    top: 15px;
    right: 15px;
  }
  .m-modal__ttl {
    margin: 0 0 20px;
    font-size: 18px;
  }
  .m-modal-iframe {
    width: 100%;
    height: 400px;
  }
}
