@charset "UTF-8";
/* CSS Document */


/*************************************************************************************
                                      リセット設定
*************************************************************************************/
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, font, ins, kbd, q, s, samp, strike, strong, sub, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
small {
    font-size: 60%;
    letter-spacing: 0;
}
sup {
    font-size: 50%;
    letter-spacing: 0;
}
*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
	margin: 0 auto;
	padding: 0;
}
ol,
ul {
	list-style: none;
}
table {
	border-collapse: separate;
	border-spacing: 0;
    table-layout: fixed;
    width: 100%;
}
caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
fieldset {
	min-width: inherit;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}
blockquote,
q {
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
	quotes: none;
}
a:focus {
	outline: 0px solid #c1c1c1;
	outline: 0px solid rgba(51, 51, 51, 0.3);
}
a:hover,
a:active {
	outline: 0;
}
a{
    opacity: 1;
    transition: opacity 1s;
}
a:hover{
    opacity: 0.7;
    transition: opacity 1s;
    text-decoration: underline;
}
a:visited {
    text-decoration: none;
}
a:active {
    text-decoration: underline;
}
a:link {
    text-decoration: none;
}
a img {
	border: 0;
    vertical-align: bottom;
}
.social-navigation a:before,
.secondary-toggle:before,
.dropdown-toggle:after,
.bypostauthor > article .fn:after,
.comment-reply-title small a:before,
.comment-navigation .nav-next a:after,
.comment-navigation .nav-previous a:before,
.byline:before,
.cat-links:before,
.tags-links:before,
.comments-link:before,
.entry-format:before,
.edit-link:before,
.full-size-link:before,
.pagination .prev:before,
.pagination .next:before,
.image-navigation a:before,
.image-navigation a:after,
.format-link .entry-title a:after,
.entry-content .more-link:after,
.entry-summary .more-link:after,
.author-link:after {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-family: "Genericons";
	font-size: 16px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	line-height: 1;
	text-align: center;
	text-decoration: inherit;
	text-transform: none;
	vertical-align: top;
}
body,
button,
input,
select,
textarea {
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
}
p {
	margin: 0 auto;
	padding: 0;
}
b,
strong {
	font-weight: bold;
	letter-spacing: 2px;
}
dfn,
cite,
em,
i {

}

input[type="submit"]{
	-webkit-appearance:none;
	border-radius: 0;
}
.sp{
   display: block; 
}
.tab{
   display: none; 
}
.pc{
   display: none; 
}
/*************************************************************************************
                                      　グローバル設定
*************************************************************************************/
html {
    overflow-x: hidden;
    font-size: 62.5%;
    height: calc( var(--vh) * 100 );
    height: -webkit-fill-available;
}
body {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    color: #333;
    position: relative;
    min-height: 100vh;
    /* mobile viewport bug fix */
    min-height: -webkit-fill-available;
}

/*************************************************************************************
                                       header
*************************************************************************************/
header {
    width: calc(100% - 40px);
    height: 60px;
    position: fixed;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background-color: #fff;
}
.header-left {
  position: relative;
  z-index: 1;
}
#header-logo img {
  width: 160px;
  height: 40px;
  vertical-align: bottom;
}
.header-toggle {
    width: 40px;
    height: 30px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    cursor: pointer;
    align-items: center;
}
.header-toggle div {
  border-top: 2px solid #555;
}
.header-toggle.open {
    width: 40px;
    height: 30px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    cursor: pointer;
}
.header-toggle div:first-child{
    transform-origin: top left;
    width: 100%;
    transition: all 1s;
    left: 0px;
}
.header-toggle div:nth-child(2){
    transform-origin: center;
    width: 100%;
    transition: width 1s;
}
.header-toggle div:last-child{
    transform-origin: bottom left;
    width: 100%;
    transition: all 1s;
    left: 0px;
}
.header-toggle.open div:first-child{
    transform-origin: top left;
    transform: rotate(45deg);
    transition: all 1s;
    left: 6px;
    position: relative;
}
.header-toggle.open div:nth-child(2){
    transform-origin: center;
    width: 0%;
    transition: width 1s;
}
.header-toggle.open div:last-child{
    transform-origin: bottom left;
    transform: rotate(-45deg);
    transition: all 1s;
    left: 6px;
    position: relative;
}
.header-right {
    position: absolute;
    top: 0;
    background-color: #fff;
    width: calc(100% - 40px);
    left: 100%;
    height: calc(100vh - 40px);
    padding: 20px;
    z-index: 0;
    transition: left 1s;
}
.header-right.open {
    left: 0%;
    transition: left 1s;
}
#global-menu {
    display: flex;
    flex-flow: column;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    align-items: center;
    width: 100%;
    height: 100%;
}
.global-menu-list {
    margin: 10px 0;
}
a.global-menu-link {
    color: #000;
    font-size: 1.6rem;
}
main {
  padding: 60px 0 0;
  position: relative;
}
#tagetTop {
    position: absolute;
    background: #37BCBC;
    width: 60px;
    height: 60px;
    right: 20px;
    bottom: 20px !important;
    z-index: 999;
}
#tagetTop.fixed {
  background: #37BCBC;
  width: 60px;
  height: 60px;
  position: fixed;
  right: 20px;
  bottom: 20px !important;
  z-index: 999;
}
#tagetTop .smooth {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}
#tagetTop .smooth::after {
  position: absolute;
  z-index: 1;
  top: 7px;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 12px;
  height: 12px;
  margin: auto;
  content: "";
  transform: rotate(45deg);
  border: 1px solid #fff;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
  border-width: 2px 0 0 2px;
}
/*************************************************************************************
                                       footer
*************************************************************************************/
footer {
    position: absolute;
    bottom: 0;
    width: calc(100% - 80px);
    height: 100px;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    background-color: #fff;
}
.footer-wrap {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.copyright{
    order: 2;
}
.footer-logo{
    order: 1;
    width: 160px;
    height: 25px;
    vertical-align: bottom;
    margin-bottom: 20px;
}
.footer-logo img{
    width: 160px;
    height: 40px;
}
/********************************************   min-width:768px  **************************************************/
@media screen and (min-width:768px){
.sp{
   display: none; 
}
.tab{
   display: block; 
}
.pc{
   display: none; 
}
}
/********************************************   min-width:960px  **************************************************/
@media screen and (min-width:960px){
.sp{
   display: none; 
}
.tab{
   display: none; 
}
.pc{
   display: block; 
}
header {
    width: calc(100% - 80px);
    padding: 0 40px;
    height: 100px;
}
#header-logo img {
    width: 240px;
    height: 38px;
    vertical-align: bottom;
}
.header-toggle {
    display: none;
}
.header-toggle.open {
    display: none;
}
.header-right {
    position: relative;
    top: auto;
    background-color: #fff;
    width: auto;
    left: auto;
    height: auto;
    padding: 0;
}
#global-menu {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
/*"ネオジウム磁石とは"ボタン追加時500になる    width: 500px;*/
    width: 300px;
    font-size: 1.6rem;
    color: #fff;
    height: auto;
}
main {
  padding: 100px 0 0;
}
.footer-wrap {
    display: flex;
    flex-flow: nowrap;
    justify-content: space-between
}
.copyright{
    order: 1;
    margin: 0;
}
.footer-logo{
    order: 2;
}
.footer-logo {
    width: 240px;
    height: 38px;
}
.footer-logo img{
    width: 240px;
    height: 38px;
}
}
/********************************************   min-width:1280px  **************************************************/
@media screen and (min-width:1280px){
    
}