 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, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 18px;
    vertical-align: baseline;
}
html {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
caption, th, td {
    text-align: left;
    font-weight: normal;
    vertical-align: middle;
}
q, blockquote {
    quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none;
}
a img {
    border: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
}
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, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    /*line-height: normal;*/
    line-height: 1;
    box-sizing: border-box;
    color: var(--color-txt);
}
/*! based on html5doctor.com Reset Stylesheet v1.6.1 Author: Richard Clark - http://richclarkdesign.com */
html {
    box-sizing: border-box;
}
*, ::before, ::after {
    box-sizing: inherit;
}
body {
    line-height: 1;
    -webkit-text-size-adjust: 100%;
    background-color: #fcfcfc;
}
html body {
    font-family: 'Times New Roman', serif;
    font-weight: 400;
    font-style: normal;
}
/* main elements group */
audio, canvas, progress, video {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    zoom: 1;
    *display: inline;
    vertical-align: baseline;
}
audio:not([controls]) {
    display: none;
    height: 0;
}
/* a */
* {
    box-sizing: border-box;
}
html, body {
    width: 100%;
    height: 100%;

}
body {
    -webkit-text-size-adjust: 100%;
    -webkit-appearance: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-moz-selection {
   background: rgba(49, 50, 123, .3);
   /* Safari */
   color: #fff;
}
::selection {
   background: rgba(49, 50, 123, .3);
    /* Safari */
    color: #fff;
}

::-moz-selection {
   background: rgba(49, 50, 123, .3);
   /* Firefox */
   color: #fff;
}
img {
    vertical-align: bottom;
    -ms-interpolation-mode: bicubic;
}
:root {
  --color-txt: #3b3b3b;
  --color-main: rgba(255, 30, 255, 1);
  --color-hover: #666666;
}
/** ---------------- font/_default.scss - */

/*default_comp*/
.center {
    text-align: center !important;
}
.left {
    text-align: left !important;
}
.right {
    text-align: right !important;
}
.bold {
    font-weight: bold;
}
.normal {
    font-weight: normal;
}

.clearfix:after {
    content: ".";
    height: 0;
    clear: both;
    display: block;
    font-size: 0.1em;
    line-height: 0;
    visibility: hidden;
}
.clearfix {
    display: inline-block;
    min-height: 1%;
    clear: both;
}
/* Hides from IE-mac \*/
* html .clearfix {
    height: 1%;
}
a {
    text-decoration: none;
    color: #222;
}
/*.hide {
    display: none;
}*/
input {
    vertical-align: middle;
}
/*************************** setting end */
/*************************** comp */
html {
    font-size: 100%;
    font-weight: 400;
    scroll-behavior: smooth;
}
body{
    position: relative;
}
#header{
    z-index: 100;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    top: 0;
    padding: 50px 5%;
    position: relative;

}
.logo{
    display: block;
    width: 340px;
    margin-bottom: 50px;
}
.logo a{
}
.h_logo{
    display: none;
}
.globalMenuSp{
    width: 100%;
}

.g_menu{
    display: block;
}
.g_menu li{
    position: relative;
    margin-bottom: 10px;
}
.g_menu li:last-child{
    margin-right: 0;
}
.g_menu li a{
    font-size: 20px;
    line-height: 1;
    position: relative;
    display: block;
    transition: all .6s;
    width: fit-content;
}
.g_menu li a:hover{
    color: var(--color-hover);
}

/*footer*/
footer{
    padding: 20px 5%;
}

.copyright{
    font-size: 12px;
    text-align: center;
}

/*back to top*/
.pagetop-btn {
  position: fixed;
  width: 40px;
  height: 40px;
  border: solid 1px var(--color-hover);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  opacity: 0;
  /*transform: translateY(100px);*/
  transition: all .6s;
}
.pagetop-btn:hover{
    bottom: 25px;
}
.pagetop-btn::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-left: 2px solid var(--color-txt);
  border-top: 2px solid var(--color-txt);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -25%) rotate(45deg);
}

.pagetop-btn.visible {
  opacity: 1;
  /*transform: translateY(0);*/
}
.sns_list01.flex{
    margin-bottom: 20px;
    justify-content: flex-end;
}
.sns_list01 li a{
    font-size: 13px;
    transition: all .6s;
}
.sns_list01 li a:hover{
    opacity: 0.8;
}
.sns_list01 li:first-child{
    margin-right: 15px;
}
@media screen and (max-width: 1024px) {

}
@media screen and (max-width: 768px) {
.logo{
    width: 225px;
}
.g_menu li a{
    font-size: 16px;
}
}
@media screen and (max-width: 599px) {

}