@charset "UTF-8";
/*-----------------------------------------------------------
reset
------------------------------------------------------------*/
p {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

input,
textarea {
  margin: 0;
  font-size: 100%;
  resize: none;
}

input[type=text],
input[type=date],
input[type=email],
input[type=number],
input[type=url] {
  word-break: normal;
  white-space: nowrap;
  appearance: none;
  -webkit-appearance: none; /*Google Chrome/Safari対応*/
  -moz-appearance: none; /*Firefox対応*/
  -o-appearance: none; /*Opera対応*/
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}

dl,
dt,
dd,
th,
td {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /*font-size: 100%;*/
  font-weight: normal;
  margin: 0;
  padding: 0;
}

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,
dialog {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

img {
  margin: 0;
  padding: 0;
  vertical-align: middle;
  border: 0;
  max-width: 100%;
  height: auto;
}

table img {
  margin: 0;
  padding: 0;
  vertical-align: middle;
  border: 0;
}

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

*:focus {
  outline: none !important;
}

label,
select,
button {
  cursor: pointer;
}

input,
textarea,
select,
button {
  font-family: inherit;
}

/*-----------------------------------------------------------
Color
------------------------------------------------------------*/
/*-----------------------------------------------------------
Utility
------------------------------------------------------------*/
@media (min-width: 768px) {
  .sp,
  .SP {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .pc,
  .PC {
    display: none !important;
  }
}

/*-----------------------------------------------------------
Link
------------------------------------------------------------*/
a {
  outline: none;
  transition: opacity 0.3s;
  text-decoration: underline;
  color: #313337;
}
a:hover {
  opacity: 0.5;
}

a:link,
a:visited,
a:active {
  text-decoration: underline;
}

/*-----------------------------------------------------------
Contents
------------------------------------------------------------*/
html {
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 21px;
  position: relative;
  scroll-behavior: smooth;
}
@media (max-width: 767px) {
  html {
    font-size: 15px;
  }
}

body {
  background-color: white;
  color: #313337;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  h2 {
    font-size: 24px;
  }
}
h2:before {
  content: "🪐";
  margin-right: 10px;
  display: inline-block;
  animation: floatEmoji 3s ease-in-out infinite;
}

@keyframes floatEmoji {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px); /* 上に5px移動 */
  }
}
h3 {
  font-size: 22px;
  margin-top: 50px;
  margin-bottom: 15px;
  border-bottom: 1px dashed #313337;
}
@media (max-width: 767px) {
  h3 {
    font-size: 18px;
  }
}

p {
  line-height: 1.7em;
  margin-bottom: 1.5em;
  text-align: justify;
}
p:last-child {
  margin-bottom: 0;
}

strong {
  background: linear-gradient(transparent 60%, rgb(218, 255, 247) 60%);
  box-decoration-break: clone; /* 改行時に背景を継続 */
  -webkit-box-decoration-break: clone; /* Safari対応 */
}

ul.check {
  margin-bottom: 1.5em;
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding-left: 1em;
}
ul.check li {
  line-height: 1.7em;
  position: relative;
  padding-left: 1.5em;
}
ul.check li:before {
  content: "✅️";
  position: absolute;
  left: 0;
}

small {
  font-size: 0.8em;
}

.inner {
  max-width: 900px;
  width: calc(100% - 60px);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .inner {
    width: calc(100% - 30px);
  }
}

.indent {
  padding-left: 1em;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  display: block; /* 不要な隙間を除去するため */
}

.youtubeShort {
  width: 100%;
  max-width: 485px;
  aspect-ratio: 9/16;
  height: auto;
  display: block; /* 不要な隙間を除去するため */
}

.comment {
  font-size: 0.8em;
  text-align: right;
}

/*-----------------------------------------------------------
Header
------------------------------------------------------------*/
.hamburger {
  display: none;
  width: 30px;
  height: 20px;
  position: fixed;
  cursor: pointer;
  top: 5px;
  right: 5px;
  z-index: 1001;
}
@media (max-width: 767px) {
  .hamburger {
    display: block;
  }
}
.hamburger span {
  display: block;
  height: 3px;
  background: #333;
  margin: 5px 0;
  transition: 0.4s;
}

/* ハンバーガー開閉アニメーション */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  padding: 5px 0;
  z-index: 1000;
  height: 66px;
  filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767px) {
  header {
    padding: 5em 0 2em;
    left: auto;
    right: -250px;
    max-width: 240px;
    height: 100vh;
    transition: 0.2s;
    filter: drop-shadow(-3px 0px 3px rgba(0, 0, 0, 0.1));
  }
}
header .inner {
  max-width: 100%;
}
@media (min-width: 768px) {
  header .inner {
    height: 100%;
  }
}
@media (max-width: 767px) {
  header .inner {
    max-width: 350px;
  }
}
@media (min-width: 768px) {
  header .inner nav {
    height: 100%;
  }
}
header .inner nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 2em;
  height: 100%;
}
@media (max-width: 767px) {
  header .inner nav ul {
    gap: 2em;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (min-width: 768px) {
  header .inner nav ul li {
    font-size: 0.8em;
  }
}
header .inner nav ul li a {
  text-decoration: none;
}
header.active {
  right: 0;
}

/*-----------------------------------------------------------
Main
------------------------------------------------------------*/
main:before {
  content: "";
  width: 100%;
  height: 100vh;
  background-image: url(../images/bg2.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  filter: sepia(0.3);
}
main section {
  padding-top: 66px;
  margin-bottom: 34px;
}
@media (max-width: 767px) {
  main section {
    padding-top: 0px;
    margin-bottom: 60px;
  }
}
main section:last-child {
  margin-bottom: 0;
}
main section .inner {
  padding: 50px;
  background-color: white;
  border-radius: 20px;
}
@media (max-width: 767px) {
  main section .inner {
    padding: 20px;
    border-radius: 12px;
  }
}
main #title .inner {
  background: none;
}
@media (max-width: 767px) {
  main #title .inner {
    padding-left: 0;
    padding-right: 0;
  }
}
main #title .inner h1 {
  font-size: 46px;
  text-align: center;
}
@media (max-width: 767px) {
  main #title .inner h1 {
    font-size: 28px;
  }
}
main #title .inner .date {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
@media (max-width: 767px) {
  main #title .inner .date {
    margin-top: 12px;
  }
}
main #title .inner .date .cont {
  background-color: white;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 50px;
  gap: 30px;
}
@media (max-width: 767px) {
  main #title .inner .date .cont {
    padding: 0 20px;
    gap: 20px;
  }
}
main #title .inner .date .cont p {
  font-size: 14px;
  letter-spacing: 1px;
  margin: 0;
}
@media (max-width: 767px) {
  main #title .inner .date .cont p {
    font-size: 12px;
  }
}
main #member .inner .people {
  display: flex;
  flex-direction: column;
  gap: 70px;
}
@media (max-width: 767px) {
  main #member .inner .people {
    gap: 50px;
  }
}
main #member .inner .people .person h3 {
  display: flex;
  align-items: center;
  margin-top: 0;
}
@media (max-width: 767px) {
  main #member .inner .people .person h3 {
    flex-direction: column;
  }
}
main #member .inner .people .person h3 .name {
  font-size: 1.5em;
}
@media (min-width: 768px) {
  main #member .inner .people .person h3 .name:after {
    content: "：";
  }
}

/*-----------------------------------------------------------
Footer
------------------------------------------------------------*/
footer {
  margin-top: 100px;
  padding: 5px 0 10px;
}
@media (max-width: 767px) {
  footer {
    padding-bottom: 50px;
  }
}
footer .copy {
  text-align: center;
  font-size: 16px;
}

/*# sourceMappingURL=styles.css.map */
