@charset "UTF-8";
/* ==============================================================
*  base (normalize & reset)
* ============================================================ */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1 {
  font-size: inherit;
  margin: 0;
}

a {
  background-color: transparent;
}

b, strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
.btn a{
  display: block;
}
details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

body {
  word-wrap: break-word;
}

section, main {
  display: block;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

i, em {
  font-style: normal;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  line-height: 0;
}

* {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

/* ==============================================================
*  common
* ============================================================ */
html, body {
  height: 100%;
}

html {
  background: #000;
}

body {
  color: #fff;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", YuGothic, "Yu Gothic Medium", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

body.drawer__visible {
  overflow: hidden;
}

.wrap {
  overflow: hidden;
  min-height: 100%;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
}

img {
  width: 100%;
  max-width: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  line-height: 0;
  display: block;
  pointer-events: none;
}

::-moz-selection {
  background: #fff;
  color: #000;
}

::selection {
  background: #fff;
  color: #000;
}

/* ==============================================================
*  header-logo
* ============================================================ */
.header-logo {
  height: auto;
  position: absolute;
  z-index: 10;
  mix-blend-mode: difference;
}

.header-logo a {
  display: block;
}

/* ==============================================================
*  header / g-nav
* ============================================================ */
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}

.header .g-nav ul {
  font-family: "roboto-condensed", sans-serif;
  font-weight: 600;
  line-height: 1;
  color: #fff;
}

/* ==============================================================
*  language switcher
* ============================================================ */
.block--languages {
  cursor: pointer;
  position: relative;
  display: inline-block;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.block--languages #langBer {
  width: 80px;
  padding: 5px 25px 5px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  line-height: 1;
  border: 1px solid #fff;
  border-radius: 40px;
  background-color: #000;
}

.block--languages #langBer .langIcon {
  display: block;
  width: 12px;
  height: 12px;
  fill: #fff;
  position: relative;
}

.block--languages #langBer .langIcon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.block--languages #langBer .nav-switch_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.block--languages #langBer .nav-current {
  font-family: "roboto-condensed", sans-serif;
  font-size: 11px;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  top: -1px;
}

.block--languages #langBer::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  top: 7px;
  right: 10px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.block--languages #langBer.visible .nav--dropdown {
  opacity: 1;
  pointer-events: all;
}

.block--languages .nav--dropdown {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  position: absolute;
  top: 32px;
  right: 0;
  width: 130px;
  overflow: hidden;
  background-color: #000;
  border: 1px solid #666;
  z-index: 11;
}

.block--languages .nav--dropdown .list--languages li {
  text-align: right;
  margin-bottom: 0;
  font-size: 11px;
  padding: 8px 8px 8px 24px;
  display: block;
  position: relative;
  color: #fff;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}

.block--languages .nav--dropdown .list--languages li.selected::before {
  content: "\f00c";
  position: absolute;
  top: 50%;
  left: 1em;
  font-family: FontAwesome;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* ==============================================================
*  footer
* ============================================================ */
.footer {
  width: 100%;
  position: absolute;
  bottom: 50px;
}

.footer .nav--sns {
  margin-bottom: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5em;
  font-size: 1.1em;
}

.footer .copyright {
  color: #999;
  text-align: center;
}

/* non-.page--home */
body:not(.page--home) .wrap {
  padding-bottom: 120px;
}

body:not(.page--home) .header-logo {
  /* PC handled below */
}

body:not(.page--home) .content--main {
  /* PC/SP handled below */
}
	.txt--basic {
    margin: 0 0 1em;
}
.form dt {
    font-weight: bold;
}
.form--post dt {
    margin: 3em 0 1em;
}
.form--post dd {
    margin: 0 0 1em;
}
.btn {
    text-align: center;
}
.btn--main{
	background: #ffffff;
    color: #000000;
    margin: 1em 0;
    padding: 1.4em 2em;
    font-style: normal;
	border: none;
}
.form--post{
    margin-bottom: 8em;
}
textarea{
    height: 10em;
	display: inline-block;
    line-height: 1.15;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
	color: #fff;
	background: #000000;
    border: 1px solid #fff;
    padding: 0.5em;
}
.btn--back{
		font-weight: bold;
	}
	.btn--sub{
		position: relative;
	}

.tit {
font-size: 22px !important;
line-height: 1.4;
word-break: break-word;
font-weight: bold;
margin-bottom: 1em;
}
.text {
	 background: #000000 !important;
    display: inline-block;
    line-height: 1.8;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
	color: #fff;
    border: 1px solid #fff;
    padding: 0.5em;
}
.red { color: #ff0000; }
.form dt { font-weight: bold; }
.form dt span { font-weight: normal; }
.block--attention {
margin-bottom: 1em;
padding: 1.5em;
border: solid 1px #ffffff;
}
.block--attention p::last-of-type { margin-bottom: 0; }

.page--contact .contact_form { width:100%; min-height:1140px; }

/* ==============================================================
*  PC (min-width: 961px)
* ============================================================ */
@media screen and (min-width: 961px) {
  .sp {
    display: none !important;
  }

  a {
    -webkit-transition: all 0.3s 0s ease;
    transition: all 0.3s 0s ease;
    
  }

  a:hover {
    -webkit-transition: all 0.3s 0s ease;
    transition: all 0.3s 0s ease;
  }

  .header-logo {
    width: min(21.8vw, 330px);
    top: 3vw;
    left: 3vw;
  }

  .header .g-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1em;
    position: fixed;
    top: calc(3vw + 3px);
    right: calc(80px + 1em + 3vw);
    z-index: 999;
    mix-blend-mode: difference;
  }

  .header .g-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1em;
    font-size: 18px;
    line-height: 1;
    color: #fff;
  }

  .header .g-nav ul + ul {
    padding-left: 1em;
    border-left: 1px solid currentColor;
  }

  .header .g-nav ul li a {
    position: relative;
  }

  .header .g-nav ul li a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transition: all 0.3s 0s ease;
    transition: all 0.3s 0s ease;
  }

  .header .g-nav ul li a:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transition: all 0.3s 0s ease;
    transition: all 0.3s 0s ease;
  }

  .block--languages {
    top: 3vw;
    right: 3vw;
    position: fixed;
    z-index: 999;
  }

  .block--languages .nav--dropdown .list--languages li:hover {
    background-color: rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.3s 0s ease;
    transition: all 0.3s 0s ease;
  }

  body:not(.page--home) .header-logo {
    width: 140px;
    top: 3vw;
    left: 3vw;
  }

  body:not(.page--home) .content--main {
    margin-top: 200px;
    padding-bottom: 100px;
  }

  .footer .copyright {
    font-size: 12px;
  }
  .section--detail {

        margin: 0 auto;
        max-width: 1100px;
        padding: 0 6.6vw;
;
    }
	.section-tit {
        font-weight: 400;

        font-family: "gazzetta-variable", sans-serif;
        font-weight: normal;
        line-height: 0.8em;
        margin-bottom: 0.8em;
        font-size: 100px;
		text-align: left;
    }
	    .btn--main, .btn--sub {
        min-width: 300px;
    }
	    .btn--main:hover {
        background-color: rgba(255, 255, 255, 0.5);
    }
	    a:hover {
        -webkit-transition: all 0.3s 0s ease;
        transition: all 0.3s 0s ease;
    }
		.btn--back::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: -5px;
        width: 100%;
        height: 2px;
        background-color: #fff;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: left;
        transform-origin: left;
        -webkit-transition: all 0.3s 0s ease;
        transition: all 0.3s 0s ease;
    }
	.btn--back:hover::after {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: left;
        transform-origin: left;
        -webkit-transition: all 0.3s 0s ease;
        transition: all 0.3s 0s ease;
    }
}

/* ==============================================================
*  SP (max-width: 960px)
* ============================================================ */
@media screen and (min-width: 1px) and (max-width: 960px) {
  .pc {
    display: none !important;
  }

  body.drawer-open {
    overflow: hidden;
  }

  .header-logo {
    width: min(46vw, 250px);
    top: 5.1vw;
    left: 5.1vw;
  }

  .header {
    z-index: 999;
  }

  .header .drawer__btn {
    width: min(10.2vw, 50px);
    aspect-ratio: 15/7;
    position: fixed;
    top: 5.1vw;
    right: 5.1vw;
    z-index: 1000;
    mix-blend-mode: difference;
  }

  .header .drawer__btn span {
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    -webkit-transition: all 0.3s 0s ease;
    transition: all 0.3s 0s ease;
  }

  .header .drawer__btn span:nth-of-type(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }

  .header .drawer__btn span:last-of-type {
    bottom: 0;
  }

  .header .drawer {
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: #000;
    overflow-y: scroll;
    z-index: 999;
    -webkit-transition: all 0.3s 0s ease;
    transition: all 0.3s 0s ease;
  }

  .header .drawer .drawer-inner {
    padding: 12.8vw 7.7vw 7.7vw;
  }

  .header .g-nav ul {
    font-family: "gazzetta-variable", sans-serif;
    font-size: min(18vw, 70px);
    font-weight: normal;
    line-height: 1;
    color: #fff;
  }

  .header .g-nav ul + ul {
    margin-top: 0.5em;
    padding-top: 0.5em;
    border-top: 1px solid #666;
  }

  .drawer__visible .header {
    mix-blend-mode: unset;
  }

  .drawer__visible .drawer__btn span {
    width: 110%;
    -webkit-transform: rotate(25deg);
            transform: rotate(25deg);
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transition: all 0.3s 0s ease;
    transition: all 0.3s 0s ease;
  }

  .drawer__visible .drawer__btn span:nth-of-type(2) {
    display: none;
  }

  .drawer__visible .drawer__btn span:last-of-type {
    -webkit-transform: rotate(-25deg);
            transform: rotate(-25deg);
  }

  .drawer__visible .drawer {
    opacity: 1;
    pointer-events: all;
    -webkit-transition: all 0.3s 0s ease;
    transition: all 0.3s 0s ease;
  }

  .block--languages #langBer {
    position: fixed;
    top: 5.1vw;
    right: calc(5.1vw + 1em + min(10.2vw, 50px));
    z-index: 1000;
  }

  body:not(.page--home) .header-logo {
    width: min(36vw, 200px);
  }

  body:not(.page--home) .content--main {
    margin-top: 120px;
    padding-bottom: 70px;
  }

  .footer .copyright {
    font-size: 11px;
  }
   .section--list, .section--detail {
               padding: 0 5.1vw;
		
    }
	    .section-tit {
			font-size: 80px;
 
		        margin-bottom: 30px;
				font-family: "gazzetta-variable", sans-serif;
    }
	.form--post {
        margin-bottom: 4em;
    }
	    .btn--main, .btn--sub {
        min-width: unset;
        width: 90%;
    }
	.btn--back::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: -5px;
        width: 100%;
        height: 2px;
        background-color: #fff;
    }
    select { width: 80%; }
}