/* フォント
	font-family: "Kaisei Decol", serif;
	font-weight: 400,500,700;

	font-family: "Kiwi Maru", serif;
	font-weight: 300,400,500;

	font-family: "M PLUS Rounded 1c", sans-serif;

  font-family: "DotGothic16", sans-serif;

  font-family: "Fredericka the Great", serif;
 */

/* 基礎 */
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
a {
	color: #ebbaf4;
	font-family: "Kaisei Decol", serif;
	font-weight: 500;
	text-decoration: none;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
a:hover {
	color: #173a7e;
}
nav li {
	list-style: none;
}

/* ボディ */
html {
	width: 100%;
	height: 100%;
	font-size: 16px;
	font-family: "Kiwi Maru", serif;
	font-weight: 400;
	background-image: url("../img/背景.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	overflow: hidden;
}
body {
	width: 100%;
	height: 100%;
	background-color: #fdfbfc;
	overflow: scroll;
	margin: 0 auto;
  mask: 
    linear-gradient(-90deg,#0000 50px,#000 0) 25px,
    radial-gradient(25px,#000 calc(100% - 1px),#0000) 50%/50px 46.25px space repeat;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
body::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 916px) {
  body {
	  width: 915px;
	  font-size: 1.1rem;
  }
}

/* 全体ラップ */
div.wrap {
	width: 100%;
	min-height: 100%;
  position: relative;
  z-index: 0; /* 擬似要素の重なり制御に必要 */
}
div.wrap::before {/* 擬似要素で内側影を上に重ねる */
  content: "";
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0; と同じ */
  box-shadow: inset 0 0 20px 5px rgba(80,65,76,.5);
  z-index: 1; /* 子要素より上 */
  pointer-events: none; /* クリック操作をブロックしない */
}

/* ヘッダー */
header {
	position: relative;
	width: 100%;
	background-image: url("../img/ヘッダー.png");
	background-size: cover;
	background-position: right 25% bottom 0;
	aspect-ratio: 2 / 1;
	box-shadow: inset 0 -10px 10px -5px #fdfbfc;
	padding: 10px 40px 40px;
	z-index: 10;
}
header a.logo {
	width: 100%;
	display: block;
}
header a.logo:hover {
	transform: scale(1.1);
}
header a.logo img {
	width: 100%;
}
@media screen and (min-width: 916px) {
  header a.logo {
	  width: 50%;
  }
}

/* グローバルナビ */
.forPC {
  display: none;
}
.forPhone {
  display: block;
}
@media screen and (min-width: 916px) {
  .forPC {
	  display: block;
  }
  .forPhone {
	  display: none;
  }
}
nav ul li a {
  font-family: "Fredericka the Great", serif;
}
nav ul li a span.ruby {
	font-family: "Kaisei Decol", serif;
	font-weight: 400;
}

/* グローバルナビ:PC */
.forPC {
	position: absolute;
	bottom: 35px;
	width: calc(100% - 80px);
  text-align: center;
}
.forPC ul {
  display: flex;
  justify-content: center;
}
.forPC ul li {
  text-align: center;
  padding: 0 15px;
}
.forPC ul li:not(:first-child) {
  border-left: 1px solid #ebbaf4;
}
.forPC ul li a, .forPC span.ruby {
  background-color: rgba(23,58,126,.5);
  border-radius: 3px;
	box-shadow: 0 0 5px 3px rgba(23,58,126,.5);
}
.forPC ul li a {
  color: #fdfbfc;
}
.forPC span.ruby {
  color: #f3ebf0;
  display: block;
	font-size: .8rem;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.forPC ul li a:hover, .forPC ul li a:hover span.ruby {
  color: #ebbaf4;
}

/* グローバルナビ:Phone */
.forPhone {
	position: absolute;
	top: 10px;
	right: 15px;
}
input.drawer_hidden {/* チェックボックスを非表示にする */
  display: none;
}
label.drawer_open {/* ハンバーガーアイコンの設置スペース */
  cursor: pointer;
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  border: 1px solid #ebbaf4;
  border-radius: 5px;
  background-color: rgba(23,58,126,.5);
  align-items: center;
  z-index: 10000;
}
label.drawer_open span,
label.drawer_open span:before,
label.drawer_open span:after {/* ハンバーガーメニューのアイコン */
  content: '';
  position: absolute;
  width: 25px;
  height: 3px;
  display: block;
  background: #ebbaf4;
  border-radius: 3px;
  transition: 0.5s ease-in-out;
}
label.drawer_open span:before {/* 三本線の一番上の棒の位置調整 */
  bottom: 8px;
}
label.drawer_open span:after {/* 三本線の一番下の棒の位置調整 */
  top: 8px;
}
#drawer_input:checked ~ label.drawer_open span {/* アイコンがクリックされたら真ん中の線を透明にする */
  background: rgba(255, 255, 255, 0);
}
#drawer_input:checked ~ label.drawer_open span::before {/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
  bottom: 0;
  transform: rotate(45deg);
}
#drawer_input:checked ~ label.drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ハンバーガーメニューデザイン*/
.forPhone ul li:not(:first-child) {
  border-top: 1px dashed #173a7e;
}
.forPhone .nav_content {
  position: fixed;
  top: 0;
  left: 100%; /* メニューを画面の外に飛ばす */
  width: 100%;
  height: 100%;
  background-color: #f3ebf0;
  padding: 40px;
  z-index: 9999;
  transition: .5s ease-in-out;
}
#drawer_input:checked ~ .nav_content {/* アイコンがクリックされたらメニューを表示 */
  left: 0;/* メニューを画面に入れる */
}
.forPhone ul li {
  line-height: 3rem;
}
.forPhone ul li a {
  color: #173a7e;
  font-size: 1.4rem;
}
.forPhone span.ruby {
  color: #181b39;
	font-size: 1.2rem;
  margin-left: 10px;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.forPhone ul li a:hover, .forPhone ul li a:hover span.ruby {
  color: #725aa4;
}

/* メイン */
main {
  position: relative;
	width: 100%;
	background-color: #fdfbfc;
	padding: 30px 30px 50px;
	z-index: 0;
}
.main_wrap {
	width: 100%;
	background-color: #f3ebf0;
	border: 3px dashed #173a7e;
	border-radius: 10px;
	box-shadow: 0 0 10px 5px #f3ebf0;
	padding: 20px;
}
article {
	width: 100%;
	margin-bottom: 50px;
}
section {
	width: 100%;
	margin-bottom: 30px;
}

/* フッター */
h2 {
	font-family: "Kaisei Decol", serif;
	color: #173a7e;
}

/* フッター */
footer {
  position: relative;
	width: 100%;
	min-height: 10%;
	background-color: #ebbaf4;
	box-shadow: 0 -10px 10px 5px #ebbaf4;
	padding: 10px 40px 30px;
	z-index: 0;
}
footer div {
	width: 100%;
	text-align: center;
}
footer a {
	color: #725aa4;
}

/* ページトップボタン */
#page_top {
width: 50px;
height: 50px;
position: fixed;
right: 10px;
bottom: 10px;
background: #173a7e;
border-radius: 50%;
opacity: 0.6;
}

/* Font Awesome */
#page_top::before {
font-family: 'Font Awesome 5 Free';
font-weight: 900;
content: '\f102';
font-size: 25px;
color: #ebbaf4;
position: absolute;
top: 50%;
left: 50%;
translate: -50% -50%;
}