@charset "UTF-8";
/* CSS Document */
html,
body,
div,
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;
}


html {
	width: 100%;
	max-width: 100%;
	font-size: 100%;
}
*, *:before, *:after {
box-sizing: border-box;
}
body {
	width: 100%;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
}
/* Sections */
/* ============================================ */

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

/* Headings 
============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Crimson Text", serif;
  font-weight: 600;
  font-style: normal;
}
/* This Site 
============================================ */
body {
	background-color: #232323;
	font-family: "Crimson Text", serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.04em;
	color: #F2F2F2;
	width: 100%;
	min-width: 859px;
	max-width: 100%;
	min-height: 100vh;
	position: relative;/*←相対位置*/
	text-rendering: optimizeLegibility;
	}
.container {
	width: 100%;
	min-width: 859px;
	max-width: 100%;
	height: auto; 
 }
 .pc_none {
 	display: none;
	 }
 .sp_none {
 	display: block;
	 }
	.br_none {
 	display: block;	
	}

 h2 {
	font-family: "Crimson Text", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 6rem;
	color: #b8005f;
 }
 ol {
  list-style-type: decimal;
	list-style: inside;
	line-height: 1.6;
	padding: 0 0 0 10px;
	}
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(20px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}
@media screen and (max-width: 859px) {
body , .container{
	min-width: 320px;
	max-width: 859px;
	}
 .pc_none {
 	display: block;
	 }
 .sp_none {
 	display: none;
	 }
 h2 {
	font-size: 5.2rem;
 }
	}
@media screen and (max-width: 499px) {
 h2 {
	font-size: 18vw;
 }
	.br_none {
 	display: none;	
	}
	}

/* Loading 
============================================ */

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
	background-color: #232323;
	display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 1.5s 2.5s forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.loading__logo {
  opacity: 0;
  animation: logo_fade 2s 0.5s forwards;
  width: 120px;
}

@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  60% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
  }
}

/* Header 
============================================ */

#head_wrap {
  width: 100%;
	height: 100px;
  top: 0;
  position: relative;
  margin: 0 auto;
	padding: 32px 0 0 0;
	line-height: 0.9;
	z-index: 9;
}
#head_wrap .inner {
  width: 100%;
	max-width: 1024px;
	min-width:859px;
  margin: 0 auto;
	padding: 0 20px;
  position: relative;
}

#head_wrap .inner:after {
  content: "";
  clear: both;
  display: block;
}
#head_wrap .logo {
  float: left;
  width: 70px;
  height: 63px;
	margin: 0;
}
#head_wrap .logo img {
  float: left;
  width: 100%;
	margin: 0;
}
#global-nav {
	font-size: 1.36rem;
  font-family: "Crimson Text", serif;
  font-weight: 400;
	line-height: 0.9;
	float: right;
  position: absolute;
  right: 0;
  top: 0;
}

#global-nav ul {
  margin-right: 20px;
  display: inline-flex;
	width: 658px;
	padding: 0 0 0 20px;
}

@media screen and (max-width: 859px) {

#head_wrap .logo {
  float: left;
  width: 44px;
  height: 40px;
	margin: 0;
}
  #global-nav ul {
    display: block;
    margin-right: 0px;
		width: 100%;
	padding: 0;
  }
}

#global-nav ul li {
	text-align: center;
	padding: 0 0 0 32px;
}
#global-nav ul li a {
	font-size: 1.36rem;
}

#global-nav ul li a .menu_ja {
	font-size: 0.68rem;
	color: #B8B8B8;
  font-weight: 400;
}
#global-nav ul li a .fa-solid {
	font-size: 0.85rem;
	color: #BCBCBC;
}
#global-nav ul li.header_sns a {
	width: 24px;
	height: 24px;
	margin: 4px 0 0 0;
	font-size: 1.24rem;
	padding: 0;
}
#global-nav ul li:last-child {
  border-right: none;
}

@media screen and (max-width: 859px) {
  #global-nav ul li {
    border-right: none;
	padding: 0;
  }
}

#global-nav ul li a {
  padding: 0 5px;
  padding: 2px;
  transition: all .6s ease 0s;
  box-sizing: border-box;
}

/* Fixed */
#head_wrap.fixed {
  margin-top: 0;
  top: 0;
  position: fixed;
  height: 100px;
  transition: top 0.65s ease-in;
  -webkit-transition: top 0.65s ease-in;
  -moz-transition: top 0.65s ease-in;
  z-index: 9999;
}
#head_wrap.fixed #global-nav ul li a {
  padding: 0 20px;
}

/* Toggle Button */
#nav-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  z-index: 9;
}

#nav-toggle div {
  position: relative;
}

@media screen and (max-width: 859px) {
  #head_wrap {
    top: 0;
    position: fixed;
    margin-top: 0;
    width: 100%;
    padding: 0;
    /* Fixed reset */
  }
  #head_wrap .inner {
  width: 100%;
	max-width: 100%;
	min-width:320px;
  margin: 0 auto;
	padding: 0;
  }
  #mobile-head {
    background: rgba(50, 50, 50, 0.9);
    width: 100%;
    height: 60px;
    z-index: 10;
    position: relative;
  }
  #head_wrap.fixed .logo,
  #head_wrap .logo {
    position: absolute;
    left: 20px;
    top: 13px;
  }
  #global-nav {
    position: absolute;
    /* 開いてないときは画面外に配置 */
    top: -550px;
    background: rgba(50, 50, 50, 0.9);
    width: 100%;
    text-align: center;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
  }
  #global-nav ul {
    list-style: none;
    position: static;
    right: 0;
    bottom: 0;
    margin-top: 20px;
    margin-bottom: 30px;
  }
  #global-nav ul li {
    float: none;
    position: static;
  }
  #head_wrap #global-nav ul li a,
  #head_wrap.fixed #global-nav ul li a {
    width: 100%;
    display: block;
    padding: 20px 0;
  }
  #nav-toggle {
    display: block;
  }
  /* #nav-toggle 切り替えアニメーション */
  #nav-toggle span {
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    background: #d8d8d8;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
  }
  #nav-toggle span:nth-child(1) {
    top: 0;
  }
  #nav-toggle span:nth-child(2) {
    top: 11px;
  }
  #nav-toggle span:nth-child(3) {
    top: 22px;
  }
  .open #nav-toggle span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
  }
  .open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .open #nav-toggle span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    transform: rotate(-315deg);
  }
  /* #global-nav スライドアニメーション */
  .open #global-nav {
    /* #global-nav top + #mobile-head height */
    -moz-transform: translateY(610px);
    -webkit-transform: translateY(610px);
    transform: translateY(610px);
  }
}
/* Footer
============================================ */
footer {
	width: 100%;
	min-width: 859px;
	max-width: 100%;
	margin: 0 auto;
	padding: 40px 10px 60px;
	background: inherit;
}
footer .footer_menu {
	width: 100%;
	margin: 0 auto;
	padding: 0 0 40px 0;
	font-size: 1.3rem;
  font-family: "Crimson Text", serif
}
footer .footer_menu ul {
	width: 100%;
	margin: 0 auto;
	display: flex;
  justify-content: center;
  flex-flow: row nowrap;
	text-align: center;

}
footer .footer_menu ul li {
	padding: 0 24px;
}
footer .footer_menu ul li .fa-solid {
	font-size: 0.85rem;
	color: #BCBCBC;
}

footer .footer_sns {
	font-size: 1.6rem;
	width: 859px;
	margin: 0 auto 20px auto;
}
footer .footer_sns ul {
	width: 100%;
	display: flex;
  justify-content: center;
}
footer .footer_sns .footer_sns_icon {
	padding: 0 20px;
}
footer .footer_sns .footer_sns_icon img {
	width: 24px;
}
footer .copy_light {
	width: 100%;
	text-align: center;
	color: #a7a7a7;
	font-style: normal;
}

@media screen and (max-width: 859px) {
footer {
	min-width: 300px;
	max-width: 100%;
}
footer .footer_menu {
	width: 100%;
	font-size: 1.1rem;
}
footer .footer_menu ul {
	width: 100%;
	margin: 0 auto;
}
footer .footer_sns {
	width: 100%;
}
}
@media screen and (max-width: 539px) {
footer {
  background: rgba(50, 50, 50, 0.8);
}
footer .footer_menu {
	font-size: 1rem;
}
footer .footer_menu ul {
  justify-content: space-between;
}
footer .footer_menu ul li {
	padding: 0 1% 20px;
}
footer .footer_menu ul li .fa-solid {
	font-size: 0.7rem;
}
}

/* 上に戻るボタン 
============================================ */
/*　　ボタン関係の部品を全部囲うタグ：ここのidがjQueryの動作と連動する */
#page_top {
  position: fixed;
  bottom: 60px;
  right: 40px;
  opacity: 0.6;
	font-size: 3rem;
	color: #b8005f;
}
/* ボタン画像のサイズ指定 */
.c-up-to-btn_img{
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 539px) {
#page_top {
  right: 20px;
  bottom: 50px;
}
/* ボタン画像のサイズ指定 */
.c-up-to-btn_img{
  width: 32px;
  height: 32px;
}
}
/* Hover-text
============================================ */
.hover-text {
transition: color 0.2s;
}
.hover-text:hover {
color: #b8005f;
}
@media screen and (max-width: 539px) {
	.hover-text {
	transform: none;
	}
	.hover-text:hover {
	color: inherit;
	}
}

/* ERROR
============================================ */
.error {
	width: 100%;
	margin: 0 auto;
	height: 80vh;
}
.error .error_content {
  width: 100%;
	max-width: 1024px;
	min-width:320px;
  margin: 0 auto;
	padding: 120px 20px;
	text-align: center;
}
.error .error_content p {
	text-align: center;
	padding: 0 0 16px;
	font-size: 1.2rem;
	line-height: 1.4;
}
.error .error_content h2 {
  width: 100%;
	text-align: center;
	font-size: 10rem;
	font-weight: 800;
	line-height: 1;
	margin: 0 0 40px;
}
.error .error_content h2 p {
	font-size: 2rem;
	line-height: 1;
}
.error .error_content p a {
	text-decoration: underline;
	font-weight: 600;
}