@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Nunito+Sans:ital,opsz,wght@1,6..12,300&family=Oswald&display=swap');


body {
font-family:"Noto Sans JP",
"Helvetica Neue",
Arial,
"Hiragino Kaku Gothic ProN",
"Hiragino Sans",
Meiryo,
sans-serif;
}

html, body, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
margin:0;
padding:0;
border:0;
outline:0;
/*font-size:100%;*/
list-style:none;
font-weight:normal;
font-style:normal;
}

* {
margin:0;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
overflow-wrap: break-word;
}

html,body {
margin:0;
padding:0;
height:100%;
min-height:100%;
}

html{
margin-bottom:1px;
background: #000;
}

body {
color:#000;
-webkit-text-size-adjust : 100%!important ;
-ms-text-size-adjust: 100%;
text-size-adjust: 100%;
-webkit-overflow-scrolling: touch;
}

/*html { font-size: 62.5%; }
body { font-size: 10px; font-size: 1.0rem; }
h1 { font-size: 28px; font-size: 2.8rem; }
h2 { font-size: 20px; font-size: 2rem;}
h3 { font-size: 18px; font-size: 1.8rem; }
li, p, th, tr, td   { font-size: 14px; font-size: 1.4rem; font-weight: 500;}
p,li {	line-height:1.8;  letter-spacing: 0.06em; }*/


img {
max-width : 100% ;
height : auto ;
vertical-align:bottom;
}

section {
display: block;
}

a {
text-decoration: none;
-webkit-tap-highlight-color:rgba(0,0,0,0);
cursor:pointer;
color: #fff;
display: block;
}

a:focus{
outline: none;
}

a img {
-webkit-transition: opacity 0.2s ease-out;
-moz-transition: opacity 0.2s ease-out;
-ms-transition: opacity 0.2s ease-out;
transition: opacity 0.2s ease-out;
}

a:hover img {
opacity: .6;
-webkit-opacity: .6;
-moz-opacity: .6;
filter: alpha(opacity=6);	/* IE lt 8 */
-ms-filter: "alpha(opacity=75)"; /* IE 8 */
}

*:focus {
  outline: none;
}

@media(hover: hover) {
  .link:hover {
    opacity: .9;
  }
}

.sp_br{
display: block;
}

@media screen and (min-width: 768px) {
.sp_br{
display: none;
}

.tab_br{
display: block;
}
}

@media screen and (min-width: 1024px) {
.pc_br{
display: block;
}

.tab_br {
display: none;
}
}


hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
/*********************************************************************
COMMON CLASS
*********************************************************************/
.clearfix:after {
visibility: hidden;
display: block;
font-size: 0;
content: " ";
clear: both;
height: 0;
overflow:hidden;
}
* html .clearfix { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */


/*********************************************************************
header
*********************************************************************/
.header {
height: 60px;
background: rgba(0,0,0,0.85);
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 999999;
}

.header__container {
display: flex;
justify-content: space-between;
align-items: center;
height: inherit;
color: #fff;
padding: 0 0 0 10px;
margin-right: auto;
margin-left: auto;
}

h1 img {
width: 5.581395vw;
height: auto;
max-height: 40px;
}

@media screen and (min-width: 960px) {
.header {
height: 70px;
}

.header__container {
padding: 0 0 0 20px;
}

h1 img {
width: 28px;
height: auto;
max-height: 55px;
}

}



/* ===============================================
hamburger
=============================================== */
input[type="checkbox"] {
opacity: 0;
visibility: hidden;
position: absolute;
}
.hamburger {
width: 60px;
height: 60px;
position: relative;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
}
.hamburger span,
.hamburger span::before,
.hamburger span::after {
position: absolute;
display: block;
content: "";
width: 30px;
height: 2px;
background-color: #fff;
transition: all 0.3s;
}
.hamburger span::before {
top: -10px;
}
.hamburger span::after {
bottom: -10px;
}
input[type="checkbox"]:checked + .hamburger span {
background-color: transparent;
}
input[type="checkbox"]:checked + .hamburger span::before {
top: 0;
transform: rotate(45deg);
}
input[type="checkbox"]:checked + .hamburger span::after {
transform: rotate(-45deg);
bottom: 0;
}

@media screen and (min-width: 960px) {
.hamburger {
width: 70px;
height: 70px;
}
}

/* ===============================================
menu
=============================================== */
.nav {
position: fixed;
width: 70%;
height: 100vh;
top: 60px;
right: -70%;
background: #fff;
padding: 70px 0 40px;
text-align: center;
transition: all 0.3s;
}
.nav__item a {
display: block;
font-family: "Oswald", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
font-size: clamp(1rem, 0.964rem + 0.18vw, 1.125rem);
line-height: 80px;
/*  text-transform: uppercase;*/
text-decoration: none;
color: #000;
transition: all 0.3s;
}

input[type="checkbox"]:checked ~ .nav {
right: 0;
}


@media screen and (min-width: 960px) {
.nav {
top: 70px;
}
}

@media screen and (min-width: 1024px) {
.nav {
width: auto;
height: auto;
position: absolute;
top: 0;
right: 180px;
background: none;
padding: 0;
text-align: center;
transition: none;
}

.nav__lIst {
display: flex;
column-gap: 50px;
line-height: 70px;
position: relative;
}

.nav__lIst::after {
position: absolute;
top: 20px;
left: 100%;
margin-left: 50px;
content: "";
width: 1px;
height: 30px;
background-color: #959595;
}


.nav__item a {
color: #959595;
line-height: 70px;
}

.nav__item a:hover {
color: #ECECEC;
}

}

@media screen and (min-width: 1440px) {

.nav__lIst {
column-gap: 100px;
}
}

/*==========================================================
言語スイッチ
==========================================================*/
.l_s {
position: absolute;
right: 80px;
}

.lang_switch {
display: flex;
column-gap: 5px;
}

.lang_switch li {
width: 6vw;
max-width: 30px;
text-align: center;
font-family: "Oswald", sans-serif;
font-size: clamp(1rem, 0.964rem + 0.18vw, 1.125rem);
line-height: 60px;
color: #959595;
}

.lang_switch li a {
color: #959595;
transition: .3s all;
}

.lang_switch li a:hover {
color: #ECECEC;
}

.lang_switch li.active {
position: relative;
}

.lang_switch li.active::after {
position: absolute;
content: "";
background-color: #959595;
width: 15px;
height: 3px;
bottom: 15px;
left: 50%;
transform: translateX(-50%);
}

@media screen and (min-width: 960px) {
.lang_switch li {
line-height: 70px;
}

.lang_switch li.active::after {
bottom: 18px;
}

}


@media screen and (min-width: 1024px) {
.hamburger {
display: none;
}

.l_s {
right: 30px;
}


}

/*==========================================================
Footer
==========================================================*/
footer {
width: 100%;
background: #fff;
text-align: center;
padding: 60px 0 40px;
position: relative;
z-index: 30;
}

.f_logo {
width: 22.32558vw;
max-width: 130px;
margin: 0 auto 40px;
}

footer small {
color: #000;
font-family: "Oswald", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
font-size:clamp(0.875rem, 0.839rem + 0.18vw, 1rem);
}

@media screen and (min-width: 768px) {


}


