@charset "UTF-8";
/* --------------------------------------------------
foundation
-------------------------------------------------- */
:root {
  --z-index--trailer: 1500;
  --z-index--loading: 1000;
}

/* --------------------------------------------------
reset
-------------------------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
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-size: 100%;
  /*font: inherit;*/
  vertical-align: bottom;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

img {
  vertical-align: bottom;
  border: none;
}

*, *::before, *::after {
  box-sizing: border-box;
}

input {
  vertical-align: middle;
  width: auto;
}

input[type="radio"], input[type="checkbox"] {
  margin: 0;
}

label {
  font-weight: normal;
}

/*--------------------------------------------------
/* 印刷処理
--------------------------------------------------*/
* {
  -webkit-print-color-adjust: exact;
}

/* --------------------------------------------------
base
-------------------------------------------------- */
html {
  width: 100%;
  overflow-x: hidden;
}

@media (max-width: 1300px) {
  html {
    font-size: calc(1300 / 1900 * 1px);
    overflow-x: scroll;
    min-width: 1300px;
  }
}

@media (min-width: 1301px) and (max-width: 1899px) {
  html {
    font-size: calc(1 / 1900 * 100vw);
  }
}

@media (min-width: 1900px) {
  html {
    font-size: 1px;
  }
}

html.is-fixed,
html.is-fixed body {
  overflow: hidden !important;
}

body {
  width: 100%;
  overflow-x: hidden;
  background: #fff;
  color: #000;
  font-weight: 400;
  line-height: 0;
  font-feature-settings: "palt" 1;
  font-family: 'YakuHanJP', "Noto Sans JP", sans-serif !important;
  font-optical-sizing: auto;
  letter-spacing: 0.02em;
}


body.is-fixed {
  overflow: hidden !important;
}

main {
  display: block;
}

img {
  vertical-align: top;
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

svg {
  width: 100%;
  height: auto;
}

sup {
  vertical-align: top;
  font-size: smaller;
  display: inline-block;
  /*font-family: 'Roboto', 'Verdana', 'Droid Sans', sans-serif;*/
  transform: translateY(-0.1em);
}

figure {
  display: block;
}

picture {
  display: block;
}

strong {
  font-weight: bold;
}

button {
  display: block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-feature-settings: inherit;
}


/* --------------------------------------------------
object
-------------------------------------------------- */
/* --------------------------------------------------
object > component
-------------------------------------------------- */
/* --------------------------------------------------
common
-------------------------------------------------- */
.c-inviewPos {
  position: relative;
}

.c-inviewPos__point {
  z-index: 100;
  position: absolute;
  width: 1px;
  height: 1px;
  top: 50%;
  left: 50%;
  pointer-events: none;
}

.c-inviewPos__point--20 {
  top: 20%;
}

.c-inviewPos__point--30 {
  top: 30%;
}

.c-inviewPos__point--40 {
  top: 40%;
}

.c-inviewPos__point--50 {
  top: 50%;
}

.c-inviewPos__point--20rem {
  top: 20rem;
}

.c-inviewPos__point--30rem {
  top: 30rem;
}

.c-inviewPos__point--40rem {
  top: 40rem;
}

.c-inviewPos__point--50rem {
  top: 50rem;
}

.c-inviewPos__point--60rem {
  top: 60rem;
}

.c-inviewPos__point--70rem {
  top: 70rem;
}

.c-inviewPos__point--80rem {
  top: 80rem;
}

.c-inviewPos__point--90rem {
  top: 90rem;
}

.c-inviewPos__point--100rem {
  top: 100rem;
}

/* --------------------------------------------------
c-loading
-------------------------------------------------- */
.c-loading {
  z-index: var(--z-index--loading);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.c-loading__loader {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 5px solid #f6a800;
  border-top-color: transparent;
  animation: a-loader 0.4s linear infinite;
}

@keyframes a-loader {
  100% {
    transform: rotate(360deg);
  }
}

/* --------------------------------------------------
c-share
-------------------------------------------------- */
.c-share {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 20px;
  left: 20px;
	z-index:110;
}

.c-share.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* --------------------------------------------------
c-sns
-------------------------------------------------- */
.c-sns {
  position: absolute;
  top: 20px;
  right: 20px;
	z-index:110;
}

.c-sns__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

ul.c-sns__list li {
  width: 35px;
}

/* --------------------------------------------------
Youtube
-------------------------------------------------- */
.yt-overlay {
  z-index: var(--z-index--trailer);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 1.0);
  overflow: hidden;
}

.is-youtube-overHeight .yt-overlay {
  overflow-y: scroll;
}

.yt-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.yt-close {
  z-index: 300;
  position: absolute;
  width: 50rem;
  height: 50rem;
  top: 50rem;
  right: 0;
}

.yt-close::before{
  content: '';
  display: block;
  width: 50rem;
  height: 50rem;
  position: absolute;
	left:0;
	top:0;
	background: url(../img/close_off.png) no-repeat center center;
	background-size:cover;
}

.yt-close::after{
  content: '';
  display: block;
  width: 50rem;
  height: 50rem;
  position: absolute;
	left:0;
	top:0;
	background: url(../img/close_on.png) no-repeat center center;
	background-size:cover;
	opacity:0;
  transition: .4s;
}

.yt-close:hover {
	cursor:pointer;
}

.yt-close:hover::after {
	opacity:1;
}


/*
.yt-close::before, .yt-close::after {
  content: '';
  display: block;
  background: #c80400;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64rem;
  height: 5rem;
  transform-origin: center center;
  transition: .2s;
}

.yt-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.yt-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
*/
.yt-closeArea {
  z-index: 300;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100rem;
}

.yt-videoWrap {
  width: 100%;
  min-height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  padding: 30rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.is-youtube-overHeight .yt-videoWrap {
  align-items: flex-start;
}

.yt-video {
  width: 1000rem;
  position: relative;
  margin: 0 auto;
  padding: 100rem 0;
  pointer-events: none;
}

.yt-video > * {
  pointer-events: auto;
}

.yt-player-iframeWrap {
  position: relative;
  z-index: 2000;
  width: 100%;
  height: 0px;
  padding-top: 56.25%;
  margin: 0 auto;
  background: #000;
}

.yt-player-iframeWrap::before {
  z-index: 1;
  position: absolute;
  content: '';
  display: block;
  width: 50px;
  height: 50px;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  border: 5px solid #fff;
  border-top-color: transparent;
  animation: a-youtube-loader 0.4s linear infinite;
}

.yt-player-iframeWrap iframe {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@keyframes a-youtube-loader {
  100% {
    transform: rotate(360deg);
  }
}

.yt-tab {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10rem;
  margin-top: 20rem;
  pointer-events: none;
}

.yt-tab > * {
  pointer-events: auto;
}

.yt-tab__item {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.8;
  width: 320rem;
  font-weight: 500;
  min-height: 40rem;
  background: #fff;
  color: #f6a800;
  box-sizing: border-box;
  padding: 4rem 10rem;
  font-size: 18rem;
  transition-duration: .3s;
  transition-property: background;
	border:2px solid #f6a800;
	border-radius:8rem;
}

.yt-tab__item.is-active, .yt-tab__item:hover {
  background: #f6a800;
	color:#fff;
  cursor: pointer;
}

/* --------------------------------------------------
p-topNav
-------------------------------------------------- */
.p-topNav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
  margin-top: 55rem;
}

.p-topNav__list {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20rem;
}

.p-topNav__item {
  width: 240rem;
  height: 50rem;
}

.p-topNav__btn {
  width: 240rem;
  height: 50rem;
  cursor: pointer;
	position:relative;
}


/* --------------------------------------------------
object > utility
-------------------------------------------------- */
/* --------------------------------------------------
Utility
-------------------------------------------------- */
.u-fontAdjust {
  font-feature-settings: "palt" 1;
}

.u-fontAdjust-none {
  font-feature-settings: normal;
}

.u-font-Noto-Sans-JP {
  /*font-family: YakuHanJP, 'Noto Sans JP', sans-serif;*/
}

.u-hover {
  transition: opacity .3s;
}

.u-hover:hover {
  opacity: .5;
  cursor: pointer;
}

/* --------------------------------------------------
vendor
-------------------------------------------------- */
/* --------------------------------------------------
animation
-------------------------------------------------- */
.c-loading {
  opacity: 1;
}

.is-loaded .c-loading {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

