@charset "UTF-8";

/* ========================================================================== */

/* C O M M O N . C S S */

/* ========================================================================== */

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: 100%;
	vertical-align: baseline;
}
html {
	line-height: 1;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}
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;
}
img {
	vertical-align: bottom;
	border: none;
}
button, input, select, textarea {
	vertical-align: middle;
}
input {
	outline: 0;
}
button, input {
 *overflow: visible;
	line-height: normal;
}
 button::-moz-focus-inner, input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
button, html input[type="button"], input[type="reset"], input[type="submit"] {
	cursor: pointer;
	-webkit-appearance: button;
}
label, select, button, input[type="button"], input[type="reset"], input[type="submit"], input[type="radio"], input[type="checkbox"] {
	cursor: pointer;
}
textarea {
	overflow: auto;
	vertical-align: top;
	font-family: sans-serif;
}
::selection {
	color: #fff;
	background: #9b855e;
}
::-moz-selection {
  color: #fff;
  background: #9b855e;
}

html, css {
  touch-action:none;
}
a:link, a:visited {
	color: #9b855e;
	text-decoration: none;
}
a:hover, a:active {
	color: #9b855e;
	text-decoration: none;
}
p {
  color: #fff;
  font-weight: normal;
  line-height: 2.5em;
  font-size: 0.9em;
}


/* ───────────────────────────────────────────────────────────── BASE CSS */
html {
	min-height: 100%;
	height: 100%;
}
body {
	color: #fff;
  font-style: normal;
  font-weight: 200;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: 10px;
	font-size: 1.0rem;
	line-height: 1.6;
	min-width: 1024px;
	min-height: 100%;
	height: 100%;
	-webkit-text-size-adjust: 100%;
	background: url(../img/main_bg-pc.png) center center / cover no-repeat;
	background-repeat: no-repeat;
	background-size: cover;
  overflow: auto;
  background-attachment: fixed;
  background-position: center;
}
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:#111;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity .8s ease;
  -ms- transition: opacity .8s ease;
  -moz- transition: opacity .8s ease;
  transition: opacity .8s ease;
} 
body.fadeout::after {
  opacity: 1;
}
body.fadeout article{
  -webkit-transform:scale(1.2);
  transform:scale(1.2);
}

    @media screen and (max-width: 1024px) {
      body {
        min-width: initial;
        min-width: auto; 
        width:100%;
        height:100vh;
      }
      body.menu-open {
        position: fixed;
        top: 0;
        width: 100%;
        overflow: hidden;
      }
    }
    @media screen and (max-width: 960px) {
      body {
        background: none;
      }
      body::before {
        content:"";
        display:block;
        position:fixed;
        top:0;
        left:0;
        z-index:-1;
        width:100%;
        height:100vh;
        -webkit-background-size:cover;
        background: url("../img/main_bg-sp.png") center/cover no-repeat;
      }
      body.menu-open {
        position: fixed;
        top: 0;
        width: 100%;
        overflow: hidden;
      }
    }


/* ───────────────────────────────────────────────────────────── NAVI CSS */
header {
  width: 100%;
  box-sizing: border-box;
  z-index: 100;
  display: flex;
  flex-direction: column;
}
header h1 {
  margin: 30px 0 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}
header h1 img {
  width: 150px;
}

ul.pc-nav {
  width: 100%;
  max-width: 85%;
  font-family: 'Sorts Mill Goudy', serif;
  margin: 0 auto;
  padding: 25px 6% 0 6%;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  border-top: 1px solid #888;
  position: relative;
}
ul.pc-nav::after {
  content: "";
  display: block;
/*  border-top: .99px solid #fff;
  transform: scaleY(.5);
  transform-origin: 100% 0;*/
}
ul.pc-nav li {
  color: #fff;
  text-align: center;
  flex-basis: 20%;
}
ul.pc-nav li a {
  color: #fff;
  letter-spacing: 0.1em;
}
.off {
  color: #808080!important;
}

main {
  width: 90%;
  margin: 0 auto;
}

    @media screen and (max-width: 1024px) {
      ul.pc-nav {
        width: 100%;
        max-width: 90%;
        padding: 25px 6% 0 6%;
      }
    }
    @media screen and (max-width: 768px) {
      ul.pc-nav {
        display: none;
      }
    }
    @media screen and (max-width: 375px) {
      header h1 {
        margin: 20px 0 10px;
      }
      header h1 img {
        width: 165px;
      }
    }


/* ───────────────────────────────────────────────────────────── MENU CSS */
.menu {
  height: 20px;
  position: fixed;
  right: 30px;
  top: 30px;
  width: 30px;
  z-index: 99;
}
.menu__line {
  background: #888;
  display: block;
  height: 1px;
  position: absolute;
  transition:transform .3s;
  width: 100%;
}
.menu__line--center {
  top: 9px;
}
.menu__line--bottom {
  bottom: 0;
}
.menu__line--top.active {
  top: 8px;
  transform: rotate(45deg);
}
.menu__line--center.active {
  transform:scaleX(0);
}
.menu__line--bottom.active {
  bottom: 10px;
  transform: rotate(135deg);
}

.gnav {
  background: rgba(0,0,0,0.9);
  display: none;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 98;
}
.gnav__wrap {
  align-items:center;
  display: flex;
  height: 100%;
  position: absolute;
  width: 100%;
  padding: 50px 0;
  box-sizing: border-box;
}
.gnav__menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 170px;
}
.gnav__menu__item {
  text-align: center;
  margin: 40px 0 40px 100px;
  opacity: 0;
}
.gnav__menu__item a {
  color: #fff;
  font-family: 'Sorts Mill Goudy', serif;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  transition: .5s;
}
.gnav__menu__item a:hover {
  color: #9b855e;
}

hr {
  height: 1px;
  border: none;
  border-top: .99px solid #888;
  margin-bottom: 25px;
}

/* ───────────────────────────────────────────────────────────── TITLE CSS */
.title {
  text-align: center;
}
h2 {
  font-size: 1.8em;
  background-image: url("../img/bg-midashi.png");
  background-repeat: no-repeat;
  background-position: top center;
  padding-top: 30px;
  margin-bottom: 15px;
  letter-spacing: 2px;
  text-align: center;
}

    @media screen and (max-width: 375px) {
      h2 {
        font-size: 1.4em;
        padding-top: 30px;
        margin-bottom: 15px;
        letter-spacing: 2px;
      }
    }


/* ───────────────────────────────────────────────────────────── SCROLL CSS */
.scroll {
  position: relative;
  padding: 50px 0 0;
  margin: 50px 0 0;
  display: block;
}
.scroll a {
  text-align: center;
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-decoration: none;
}
.scroll a {
  padding-top: 60px;
}
.scroll a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 1px solid #fff;
  border-radius: 50px;
  box-sizing: border-box;
}
.scroll a span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: '';
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

    @media screen and (max-width: 375px) {
      .scroll {
        padding: 20px 0 0;
        margin: 0;
      }
      .scroll a {
        padding-top: 45px;
        font-size: 0.8em;
      }
      .scroll a span {
        width: 20px;
        height: 40px;
        margin-left: -10px;
      }
      .scroll a span::before {
        top: 6px;
        width: 4px;
        height: 4px;
        margin-left: -2px;
      }
    }


/* ───────────────────────────────────────────────────────────── SNS CSS */
.sns {
  width: 100%;
  margin: 30px 0 50px 0;
}
.sns ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sns ul li {
  flex-basis: 30px;
  padding: 0 4%;
}

    @media screen and (max-width: 375px) {
      .sns {
        width: 100%;
        margin: 30px 0 15px 0;
      }
      .sns ul li {
        flex-basis: 15px;
        padding: 0 4%;
      }
    }


/* ───────────────────────────────────────────────────────────── TO TOP CSS */
.to-top{
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  right: 10px;
  bottom: 10px;
  font-weight: bold;
  cursor: pointer;
}
.to-top img {
  height: 40px;
}


/* ───────────────────────────────────────────────────────────── CONTAINER CSS */
.container {
  max-width: 1024px;
  width: 100%;
  padding: 100px 0;
  margin: 0 auto;
  text-align: center;
}

    @media screen and (max-width: 375px) {
      .container {
        padding: 30px 0;
      }
    }


/* ───────────────────────────────────────────────────────────── FOOTER CSS */
footer {
	width: 100%;
	bottom: 0;
	text-align: center;
	padding: 0 0 3px;
	box-sizing: border-box;
	z-index: 5;
}
footer p {
	font-family: 'Sorts Mill Goudy', serif;
	color: #fff;
	text-align: center;
	font-size: 0.9em;
	font-weight: normal;
	letter-spacing: 0.1em;
}

/* ───────────────────────────────────────────────────────────── media screen CSS */
/*	@media screen and (max-width: 1024px) {
	}
	@media screen and (max-width: 834px) {
	}
	@media screen and (max-width: 375px) {
	}
	@media screen and (max-width: 320px) {
	}*/

/* ───────────────────────────────────────────────────────────── CORONA CSS */
.corona {
  text-decoration: line-through;
}


/* ───────────────────────────────────────────────────────────── STOP CSS */

.stop {
  margin: 100px 0;
}
.stop_container {
  max-width: 70%;
  margin: 25px auto;
}
.stop h3 {
  font-size: 2em;
}
.stop p {
  text-align: left;
}

.stop_sign {
  color: #A69576!important;
  text-align: right!important;
  margin-top: 10%;
}
.stop_sign span {
  font-size: 0.8em;
  display: block;
}
.stop_sign p {
  color: #A69576!important;
  text-align: right!important;
}

.b_out {
  padding: 50px 0;
  border-top: 1px solid #888;
/*  border-bottom: 1px solid #888;*/
}
.b_out h4 {
  font-size: 2em;
  margin-bottom: 25px;
}
.b_out h4 span {
  font-size: 0.6em;
  display: block;
}
.b_out p {
  text-align: center!important;
}

    @media screen and (max-width: 600px) {
      .stop_container {
        max-width: 80%;
        margin: 25px auto;
      }
      .stop h3 , .b_out h4 {
        font-size: 1.8em;
      }
    }
    @media screen and (max-width: 428px) {
      .stop {
        margin: 0 0 50px 0;
      }
      .stop_container {
        max-width: 100%;
        margin: 25px auto;
      }
      .stop h3 , .b_out h4 {
        font-size: 1.4em;
      }
    }
      



.biography-container h4 {
  line-height: 2.1em;
  margin: 0 0 25px;
  padding-top: 25px;
  background-image: none;
}


