@charset "UTF-8";
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;
}

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;
}

/****************************************
 	mixin								*
*****************************************/
/****************************************
 	基本設定							*
*****************************************/
* {
  box-sizing: border-box;
}

html {
  font-size: 13px;
}

body {
  background-color: #fff;
  font-family: "Kiwi Maru","Noto Serif JP","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Lucida Grande",Verdana,"ＭＳ Ｐゴシック",sans-serif;
  font-size: 1rem;
  color: #5f5e5e;
}

input, select, textarea, button, option {
  font-family: "Kiwi Maru","Noto Serif JP","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Lucida Grande",Verdana,"ＭＳ Ｐゴシック",sans-serif;
  font-size: 1rem;
  color: #3b3f42;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: #1f00ff;
}
a:hover {
  opacity: 0.75;
}

img {
  max-width: 100%;
  height: auto;
}

/****************************************
 	レイアウト							*
*****************************************/
main {
  max-width: 800px;
  min-height: 100vh;
  margin: auto;
  -moz-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3);
  background: url("../images/background.jpg") repeat-y;
}

/****************************************
 	セクション							*
*****************************************/
main section {
  padding: 10px;
  text-align: center;
  font-size: clamp(1.1em, 3.75vw, 1.75em);
  line-height: 2em;
  font-weight: 500;
}
main section h1 {
  margin-top: 20px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translate(0, 25%);
  transition: 1s;
  font-size: 2.25em;
  font-weight: bold;
}
main section h1.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
main section h2 {
  margin-bottom: 30px;
  opacity: 0;
  transform: translate(0, 25%);
  transition: 1s;
  font-size: 1.75em;
  font-weight: bold;
}
main section h2.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
main section h3 {
  margin-bottom: 25px;
  opacity: 0;
  transform: translate(0, 25%);
  transition: 1s;
  font-size: 1.25em;
  font-weight: bold;
}
main section h3.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
main section .button {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}
main section .button a,
main section .button input[type='submit'],
main section .button button {
  display: block;
  width: 80%;
  max-width: 500px;
  margin: auto;
  padding: 1rem 0;
  background-color: #fff;
  border: 1px solid #666;
  -moz-border-radius: 50vw;
  -webkit-border-radius: 50vw;
  border-radius: 50vw;
  -moz-box-shadow: 2px 2px 3px 0 rgba(100, 100, 100, 0.4);
  -webkit-box-shadow: 2px 2px 3px 0 rgba(100, 100, 100, 0.4);
  box-shadow: 2px 2px 3px 0 rgba(100, 100, 100, 0.4);
  font-weight: normal;
  color: #666;
}
main section .button a.back,
main section .button input[type='submit'].back,
main section .button button.back {
  width: 100px;
  padding: 0.5rem;
}
main section .button button {
  font-size: 1em;
}

/****************************************
 	セクション（メッセージ）			*
*****************************************/
section.message {
  padding-top: 60px;
  padding-bottom: 60px;
}
section.message p + p {
  margin-top: 30px;
}

/****************************************
 	セクション（タイトル）				*
*****************************************/
section.title {
  padding-top: 30px;
  padding-bottom: 30px;
}
section.title h1{
  margin-bottom: 20px;
  font-size: 2em;
  line-height: 1.25em;
}

/****************************************
 	セクション（説明）					*
*****************************************/
section.explain {
  padding-top: 30px;
  padding-bottom: 30px;
  width: 90%;
  max-width: 550px;
  margin: auto;
  text-align: left;
}
section.explain:last-child{
  padding-bottom: 70px;
}
section.explain p{
	line-height: 1.5em
}

/****************************************
 	セクション（一覧）					*
*****************************************/
section.list {
  padding-top: 40px;
  padding-bottom: 40px;
}
section.list{
  border-top: 1px dashed #ccc;
}
section.list dl {
  display: flex;
  gap: 5%;
  width: 90%;
  max-width: 550px;
  margin: auto;
  line-height: 1.5em;
}
section.list dl + dl {
  margin-top: 30px;
}
section.list dl dt {
  width: 25%;
  text-align: left;
}
section.list dl dd {
  flex: 1;
  text-align: center;
}
section.list dl dd img{
	border: 4px solid #fff;
	box-shadow: 0px 0px 5px #666;
}
section.list dl dd p{
	margin-top: 5px;
}
section.list dl dd p span{
	display: block;
	font-size: 0.7em;
	line-height: 1em;
	color: #999;
}

/****************************************
 	セクション（インフォメーション）	*
*****************************************/
section.information {
  padding-top: 40px;
  padding-bottom: 40px;
}
section.information + section.information,
section.title + section.information{
  border-top: 1px dashed #ccc;
}
section.information dl {
  display: flex;
  gap: 5%;
  width: 90%;
  max-width: 550px;
  margin: auto;
  line-height: 1.5em;
}
section.information dl + dl {
  margin-top: 10px;
}
section.information dl dt {
  width: 25%;
  text-align: left;
}
section.information dl dd {
  flex: 1;
  text-align: left;
}
section.information ul{
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 90%;
  max-width: 550px;
  margin: auto;
  line-height: 1.5em;
}
section.information ul img{
	border: 4px solid #fff;
	outline: 1px solid #ccc;
}

/****************************************
 	セクション（メニュー）				*
*****************************************/
section.menu {
  padding-top: 40px;
  padding-bottom: 40px;
}
section.menu.comingsoon .button a {
  position: relative;
  pointer-events: none;
}
section.menu.comingsoon .button a:before {
  content: "Coming Soon";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  -moz-border-radius: 50vw;
  -webkit-border-radius: 50vw;
  border-radius: 50vw;
  font-size: 0.6em;
  color: #fff;
}
section.menu .button a {
  padding: 1.3rem 0;
  line-height: 1em;
}
section.menu .button a i {
  display: block;
  margin-bottom: 5px;
  font-size: 2em;
}
section.menu .button a p {
  font-size: 0.7em;
  color: #999;
}

/****************************************
 	セクション（リンク）				*
*****************************************/
section.link {
  padding-top: 20px;
  padding-bottom: 80px;
}