@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Kaisei+Decol&family=Kiwi+Maru:wght@500&family=Source+Code+Pro:wght@500&display=swap');
/* --------------------------------------------------
   Template by espace（https://espace.monbalcon.net/）
   Copyright: 2020 espace.

   利用規約を遵守の上、ご利用ください。
   二次配布、販売は禁止しています。
   --------------------------------------------------*/

/* ----- ▼ リセット　ここから（基本的には触らない方が良い部分） ▼ ----- */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

:focus {
  outline: none;
}

a {
  text-decoration: none;
}

a,
a::after,
a::before,
button,
button::after,
button::before,
input,
textarea,
select {
  transition: all 0.7s;
}

a img,
button img {
  transition-duration: 0.35s;
}

button {
  outline: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  cursor: hand;
}

input,
textarea,
select {
  font-size: 1.6rem;
}

input,
textarea {
  box-shadow: none;
  /*-webkit-appearance: none;*/
}

select {
  appearance: button;
}

p,
dl,
ul,
form {
  margin: 25px 0;
  word-break: break-all;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

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

  p,
  form {
    margin: 0 0 1.7rem;
  }

  p:last-child,
  form:last-child {
    margin-bottom: 0;
  }
}

/* ----- ▲ リセット　ここまで（基本的には触らない方が良い部分） ▲ ----- */

/* ----- ▼ レイアウト　ここから ▼ ----- */
/* 基本 */
:root {
  --header-text: rgb(223, 96, 84);
  --header-background: rgb(242, 214, 199);

  --body: #f7f7f7;
  --headline-text: rgb(223, 96, 84);
  --headline-background: #ffffff00;
  --line: rgb(54, 46, 27);
  --contents-line: rgb(223, 96, 84);
  --hr: rgb(233, 242, 235);

  --text1: rgb(54, 46, 27);
  --text2: rgb(241, 148, 125);
  --text-link: rgb(212, 196, 217);
  ;
  --em: rgb(242, 214, 199);
  --strong: rgb(242, 214, 199);

  --green: rgb(233, 242, 235);
}

@media (prefers-color-scheme: dark) {
  :root {
    --header-text: #fff;
    --header-background: #6c92ae;

    --body: rgb(3, 13, 28);
    --headline-text: #dfbf80;
    --headline-background: rgba(60, 92, 132, 0.2);
    --line: #3c5c84;
    --contents-line: #dfbf80;
    --hr: #14548d;

    --text1: #fff;
    --text2: #6c92ae;
    --text-link: #dfbf80;
    --em: #14548d;
    --strong: #14548d;
  }
}

body {
  margin: 0;
  padding: 0;
  background: var(--body);
}

body,
button,
input,
textarea,
select {
  font: 500 1.6rem / calc(1.6rem + 1.05rem) "Yu Gothic", Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
  color: var(--text1);
}

header {
  position: sticky;
  top: 0;
  padding: 7px 20px;
  height: 220px;
  background: linear-gradient(125deg, var(--header-background) 0%, rgba(108, 146, 174, 0) 100%);
  text-align: center;
  transition: all 0.7s;
  z-index: 1;
}

header a {
  text-decoration: none;
}

header.scroll {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  transform: translateY(-177px);
}

main {
  max-width: 1000px;
  margin: auto;
}

main>article:first-of-type>*:first-child {
  margin-top: 100px;
}

footer {
  margin: 200px auto 50px;
  text-align: center;
}

a {
  color: var(--text-link);
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

/* メニュー */
header .menu ul {
  margin: 0;
  padding: 0;
  letter-spacing: 1px;
  font-family: 'Source Code Pro', 'Kiwi Maru', monospace, serif;
}

header .menu ul li {
  display: inline-block;
  margin-right: 5px;
}

header .menu a {
  color: var(--header-text);
  font-size: 1.4rem;
  font-weight: 600;
}

@media only screen and (max-width: 900px) {
  header .menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
  }

  header .menu ul {
    width: calc(100vw - 40px);
    overflow-x: scroll;
    white-space: nowrap;
  }

  header .menu ul::before,
  header .menu ul::after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
  }

  header .menu ul::before {
    content: "\f053";
    left: 5px;
  }

  header .menu ul::after {
    content: "\f054";
    right: 5px;
  }

}

/* 見出し */
h1 {
  position: relative;
  margin: 30px auto;
  width: 300px;
  font: 30px/1 'Kaisei Decol', serif;
}

h1 a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 35px 0;
  color: var(--headline-text);
  text-decoration: none;
}

h1::before,
h1::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 0px;
  border: 2px solid var(--headline-text);
  top: 0;
}

h1::before {
  border-right: 0;
  left: 0;
}

h1::after {
  border-left: 0;
  right: 0;
}

header.scroll h1 {
  margin: 0;
}

header.scroll h1 a {
  height: auto;
  padding: 0;
}

h2 {
  max-width: 80%;
  margin: 300px auto 80px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 160%;
  color: var(--headline-text);
}

h2 span {
  position: relative;
  display: inline-block;
  padding: 10px 30px;
  /*background: rgba(212, 196, 217, 0.3);*/
}

h2 span::before,
h2 span::after {
  content: "";
  position: absolute;
  display: block;
  border-style: solid;
  border-width: 0 0 10px 10px;
}

h2 span::before {
  top: 0;
  left: 0;
  border-color: var(--headline-text) var(--headline-text) transparent;
}

h2 span::after {
  bottom: 0;
  right: 0;
  border-color: transparent transparent var(--headline-text);
}

h3,
h4 {
  font-size: 1.6rem;
  font-weight: 500;
}

h3 {
  margin: 150px auto 75px;
  text-align: center;
  color: var(--headline-text);
  max-width: calc(100% - 100px);
}

h3 span {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

h3 span::before,
h3 span::after {
  content: "///";
}

h3 span::before {
  margin-right: 30px;
}

h3 span::after {
  margin-left: 30px;
}

h4,
h5 {
  color: var(--headline-text);
}

h4 {
  margin: 70px auto 50px;
  border-bottom: 1px solid var(--line);
}

h5 {
  font-size: 1.2rem;
  font-weight: 600;
}

/* リスト */
ul .description,
ol .description {
  margin-left: 10px;
}

ul .description::before,
ol .description::before {
  content: "…";
  margin-right: 10px;
}

ul li.next {
  list-style: none;
}

ul li.next::before {
  content: "→";
  margin-right: 5px;
  font-size: 120%;
}

ul.small {
  list-style: none;
  padding-left: 0;
}

ul.small li {
  display: inline;
}

ul.small li::before {
  color: #6c92ae;
}

ul.small li:not(:first-child):not(.next)::before {
  margin: 0 5px 0 2px;
  content: ":";
  font-weight: 900;
}

ul.small li.next::before {
  margin: 0 7px 0 2px;
}

dl {
  margin: 10px 0;
  color: var(--text2);
}

dl dd {
  margin: 0 0 15px;
  padding: 0 0 15px 40px;
  border-bottom: 1px dotted var(--line);
}

dl dd:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

dl.inline {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;

}

dl.inline dt,
dl.inline dd {
  vertical-align: top;
  margin: 0 0 15px 0;
  padding: 0 0 15px;
}

dl.inline dt:last-of-type,
dl.inline dd:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
}

dl.inline dt {
  width: 200px;
  padding: 0 30px 10px 0;
  padding-right: 30px;
  border-bottom: 1px dotted var(--line);
}

dl.inline dt:last-of-type {
  border-bottom: 0;
}

dl.inline dd {
  width: calc(100% - 200px - 30px);
}

dl.border {
  padding: 15px 20px;
  border: 1px dotted var(--contents-line);
  margin: 0 10% 40px 10%;
}

/* フォーム */
.form-inline>*,
.form-block>* {
  margin-bottom: 5px;
}

.form-block dl dt,
.form-block dl dd {
  border-bottom: 0;
}

.form-block dl.inline dt {
  width: 130px;
}

.form-block dl.inline dd {
  width: calc(100% - 130px);
}

.form-block>*,
.form-block dl dd>* {
  width: 100%;
}

.required::after {
  content: "*";
  color: var(--eadline-text);
}

input::placeholder,
textarea::placeholder,
select::placeholder,
button:not(.manu-toggler)::placeholder,
input[type="submit"]::placeholder,
input[type="button"]::placeholder {
  color: #3c5c84;
}

input,
textarea,
select {
  border: 1px solid #3c5c84;
  background: transparent;
}

input:hover,
input:focus,
textarea:hover,
textarea:focus,
select:hover,
select:focus {
  border: 1px solid #f4f8fa;
}

button:not(.manu-toggler),
input[type="submit"],
input[type="button"] {
  color: #040c24;
}

/* 装飾 */
b,
em,
strong {
  font-weight: bold;
}

em {
  font-style: normal;
  background: linear-gradient(transparent 50%, var(--em) 50%);
}

strong {
  background: var(--strong);
}

hr {
  inline-size: 100px;
  block-size: 10px;
  margin-block: 50px;
  margin-inline: auto;
  border: 0;
  background: linear-gradient(to right, var(--hr), var(--hr) 10px, transparent 10px, transparent 20px) repeat-x left bottom/20px 10px;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-bold {
  font-weight: bold;
}

.text-small {
  font-size: smaller;
}

.text-musical {
  text-align: left;
  margin: 0 10% 0 10%;
}

.text-musical-info{
  font-size: smaller;
  text-align: center;
  color: var(--text2);
}

/* ヘッダー画像 */
.header-image {
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: 1000px;
  max-height: calc(100vh - 370px);
  margin: 75px auto;
  text-align: center;
}

.header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-image.size-xs {
  width: calc((100vh - 370px) * 0.6) !important;
}

.header-image.size-sm {
  width: calc((100vh - 370px) * 0.9) !important;
}

.header-image.type-block {
  width: 100% !important;
  max-width: 100%;
  max-height: calc(100vh - 220px);
  margin-top: auto;
}

.header-image.type-block.size-xs {
  max-height: calc((100vh - 220px) * 0.6) !important;
}

.header-image.type-block.size-sm {
  max-height: calc((100vh - 220px) * 0.8) !important;
}

.header-image.type-rounded {
  border-radius: 30px;
}

.header-image.type-square,
.header-image.type-circle {
  width: calc(100vh - 370px);
  height: calc(100vh - 370px);
}

.header-image.type-square.size-xs,
.header-image.type-circle.size-xs {
  width: calc((100vh - 370px) * 0.6) !important;
  height: calc((100vh - 370px) * 0.6) !important;
}

.header-image.type-square.size-sm,
.header-image.type-circle.size-sm {
  width: calc((100vh - 370px) * 0.8) !important;
  height: calc((100vh - 370px) * 0.8) !important;
}

.header-image.type-circle img {
  border-radius: 50%;
}

/* area */
.area.area-thumbnail {
  display: flex;
  flex-wrap: wrap;
}

.area.area-thumbnail.area-center {
  justify-content: center;
}

.area.area-thumbnail.thumb-rounded div {
  border-radius: 8px;
}

.area.area-thumbnail.thumb-circle div {
  border-radius: 50%;
}

.area.area-thumbnail.thumb-circle div.new::after {
  width: calc(100% - 10px);
  text-align: center;
}

.area.area-thumbnail.thumb-border div {
  border: 1px solid var(--contents-line);
}

.area.area-thumbnail div {
  width: 300px;
  height: 300px;
  margin: 5px;
  overflow: hidden;
  object-fit: cover;
}

.area.area-thumbnail div a {
  width: 100%;
  height: 100%;
}

.area.area-thumbnail div img {
  object-fit: cover;
  min-height: 100%;
}

.area.area-thumbnail div.new {
  position: relative;
}

.area.area-thumbnail div.new::after {
  content: "new";
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px;
  line-height: 1;
  font-weight: 600;
  background: var(--contents-line);
  color: #071d43;
  font-size: 1rem;
  font-weight: 600;
}

.card-container {
  display: flex;
  justify-content: center;
}

.card-img {
  text-align: center;
  width: 30%;
}

.cardList-img {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card-item {
  margin: 3px;
}

.card-text {
  width: 60%;
}

.card-text p {
  margin: 0px 0;
  text-align: center;
  font-size: 1.4rem;
}

.card-list {
  width: 250px;
  margin: 3% auto;
  font-size: 1.2rem;
}

.card-comment {
  padding-inline-start: 0px;
  margin: auto;
  font-size: 1.2rem;
  line-height: 18px;
  width: 90%;
  color: var(--text2);
}

.myu-container {
  display: flex;
  justify-content: center;
}

.myu-img {
  text-align: center;
  width: 30%;
}

.myu-img img{
  border: 1px solid var(--contents-line);
}

.myu-text {
  width: 60%;
}

.myu-text p {
  margin: 0px 0;
  text-align: center;
  font-size: 1.4rem;
}

.myu-list {
  font-size: 1.2rem;
}

.myu-comment {
  padding-inline-start: 0px;
  margin: auto;
  font-size: 1.2rem;
  line-height: 18px;
  width: 90%;
  color: var(--text2);
}

.myu-qr {
  margin-top: 25px;
  text-align: center;
}

iframe.youtube-16-9 {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  padding: 5px;
}

/* スマホ設定 */
@media only screen and (max-width: 900px) {

  body,
  button,
  input,
  textarea {
    font-size: 1.6rem;
    line-height: calc(1.6rem + 1.05rem);
  }

  header {
    flex-direction: column;
    top: -220px;
  }

  header.scroll {
    align-items: start;
    transform: translateY(45px);
  }

  header.scroll h1 {
    margin: 30px auto;
  }

  header.scroll h1 a {
    height: 100%;
    padding: 35px 0;
  }

  main {
    margin: auto 20px;
  }

  /* 見出し */
  h3 {
    max-width: 100%;
  }

  /* 装飾 */
  /* ヘッダー画像 */
  .header-image {
    max-width: calc(100% - 40px);
    max-height: max-content;
    margin: 20px auto;
  }

  .header-image.size-xs,
  .header-image.size-sm {
    width: 100% !important;
    height: auto !important;
  }

  .header-image.size-xs {
    max-width: calc(100% - 90px);
    margin: 45px auto;
  }

  .header-image.size-sm {
    max-width: calc(100% - 60px);
    margin: 30px auto;
  }

  .header-image.type-block {
    max-width: 100%;
    margin-top: 0;
  }

  .header-image.type-block.size-xs {
    max-height: calc(100vw * 0.45) !important;
  }

  .header-image.type-block.size-sm {
    max-height: calc(100vw * 0.6) !important;
  }

  .header-image.type-square,
  .header-image.type-circle {
    max-width: 100%;
    width: calc(100vw - 40px);
    height: calc(100vw - 40px);
  }

  .header-image.type-square.size-xs,
  .header-image.type-circle.size-xs {
    width: calc(100vw - 200px) !important;
    height: calc(100vw - 200px) !important;
  }

  .header-image.type-square.size-sm,
  .header-image.type-circle.size-sm {
    width: calc(100vw - 150px) !important;
    height: calc(100vw - 150px) !important;
  }

  .area.area-thumbnail div {
    width: calc((100vw - 70px) / 2);
    height: calc((100vw - 70px) / 2);
  }

  /* リスト */
  ul .description,
  ol .description {
    display: block;
    margin-left: 10px;
  }

  ul .description::before,
  ol .description::before {
    content: "└";
    margin-right: 10px;
  }

  dl.border dt,
  dl.border dd,
  dl.inline dt,
  dl.inline dd {
    display: block;
  }

  dl.border dt,
  dl.inline dt {
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }

  dl.border dd,
  dl.inline dd {
    width: 100%;
    padding-left: 40px;
  }

  /* フォーム */
  .form-inline input {
    width: 45%;
  }

  .form-block dl.inline dt {
    width: 100%;
  }

  .form-block dl.inline dd {
    width: 100%;
    padding-left: 40px;
  }

  .form-block>*,
  .form-block dl dd>* {
    width: 100%;
    margin-bottom: 5px;
  }

  .card-container {
    display: block;
  }

  .card-img {
    width: 100%;
  }

  .card-text {
    width: 100%;
  }

  .card-text p {
    width: 100%;
    padding-top: 10px;
  }

  .card-list {
    width: 250px;
    margin: 1% auto;
  }

  .card-comment {
    padding-top: 10px;
    width: 300px;
  }

  .myu-container {
    display: block;
  }

  .myu-img {
    width: 100%;
  }

  .myu-text {
    width: 100%;
  }

  .myu-text p {
    width: 100%;
    padding-top: 10px;
  }

  .myu-list {
    margin: 1% auto;
  }

  .myu-comment {
    padding-top: 10px;
    width: 300px;
  }

  .text-musical {
    margin: 0 5% 0 5%;
  }

}

/* ----- ▲ レイアウト　ここまで ▲ ----- */