@charset "UTF-8";
html {
  font-size: 16px;
  word-spacing: 1px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  scroll-behavior: smooth;
  color: #000;
  background: #fff;
  font-family: ten-mincho-text, serif;
  font-weight: 400;
  font-style: normal;
}

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

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #F2EEEB 0%, #F2EEEB 100%);
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

main {
  display: block;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

em,
address {
  font-style: normal;
}

button {
  cursor: pointer;
}

h1 {
  width: 100%;
  display: inline-block;
  text-align: center;
  font-size: 80px;
  margin: 80px 0 30px 0;
}

.sp-only {
  display: none !important;
}

.pc-only {
  display: block !important;
}

header {
  width: 100%;
  height: 80px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

header .logo-block {
  width: 100%;
}

header .logo {
  width: 200px;
}

header ul {
  display: flex;
  gap: 30px;
}

.header-menu ul {
  display: flex;
  align-items: center;
  padding-left: 47px;
}

header li {
  position: relative;
  display: flex;
  align-items: center;
}

header li::after {
  content: url(../images/menu_slush.svg);
  position: absolute;
  right: -18px;
}

header li:last-child::after {
  content: none;
}

header li a {
  color: #403248;
  transition: 0.3s;
}

header li a:hover {
  opacity: 0.5;
}

header .sns {
  margin: 0 0 0 30px;
  display: flex;
  gap: 15px;
}

header .sns a {
  width: 32px;
  height: 32px;
  transition: 0.3s;
}

header .sns a:hover {
  opacity: 0.7;
}

header .sns img {
  width: 100%;
}

.top {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 800px;
  position: relative;
}

.top .kv {
  width: 1000px;
  box-shadow: 10px 10px 20px 0px rgba(133, 145, 206, 0.45);
}

.top .top-back {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: -1;
}

.banner {
  width: 100%;
  gap: 15px;
  justify-content: center;
  display: flex;
  padding: 30px 0;
  box-shadow: 0px 0px 40px 0px rgba(174, 187, 219, 0.55);
  background: #fff;
}

.banner a {
  width: 500px;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid #e3e3e3;
}

.banner a:hover img {
  transform: scale(1.2, 1.2)
}

.banner img {
  width: 100%;
  border-radius: 4px;
  transition: 0.3s;
}

.about {
  width: 100%;
}

.about img {
  width: 100%;
}


.news {
  padding: 0 0 100px 0;
}

.news ul {
  width: 1000px;
  margin: auto;
  border-radius: 12px;
  box-shadow: 0px 0px 40px 0px rgba(174, 187, 219, 0.55);
}

.news ul li {
  width: 100%;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #E0E0E9;
}

.news ul li .date {
  color: #655EB4;
  margin: 0 30px 0 0;
}

.news ul li p {
  flex: auto;
}

.contact {
  width: 100%;
  padding-bottom: 100px;
  margin: auto;
  position: relative;
}

.contact .contact-back {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}

form {
  width: 1000px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

form div {
  width: 100%;
  display: inline-block;
  margin: 15px 0 0 0;
}

form div span {
  color: #cc0a0a;
}

form input,form textarea {
  width: 100%;
  height: 70px;
  margin: 5px 0 0 0;
  font-size: 16px;
  border: none;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #9DB9EF;
  background: #fff;
}

form textarea {
  height: 120px;
}

form label {
  font-size: 18px;
}

form button {
  width: 300px;
  height: 60px;
  margin: 20px 0 0 0;
  font-size: 20px;
  border-radius: 60px;
  color: #fff;
  border: none;
  background: #4C3A57;
  transition: 0.3s;
  font-family: 'ten-mincho-text';
}

form button:hover {
  color: #4C3A57;
  border: 3px solid #4C3A57;
  background: #fff;
}

.logo-footer {
  width: 100%;
  padding: 150px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.logo-footer .logo {
  width: 100%;
  display: flex;
  justify-content: center;
}
.logo-footer .logo img {
  width: 200px;
}

.logo-footer .sns {
  display: flex;
  gap: 15px;
  margin: 20px 0 0 0;
}

.logo-footer .sns a {
  width: 32px;
}

.logo-footer .sns a img {
  width: 100%;
}

footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 20px 0;
  background: #4C3A57;
}

.schedule {
  width: 100%;
  padding-top: 200px;
  display: flex;
  justify-content: center;
}


.news-detail {
  width: 800px;
  padding: 30px;
  margin: 100px auto 100px auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 0px 40px 0px rgba(174, 187, 219, 0.55);
}

.news-detail h1 {
  margin: 10px 0 20px 0;
  font-size: 26px;
  line-height: 30px;
  font-weight: bold;
  text-align: left;
}

.news-detail p {
  margin: 0 0 20px 0;
  font-size: 16px;
  line-height: 26px;
}

.news-detail img {
  width: 100%;
  margin: 0 0 20px 0;
  height: auto;
}
[v-cloak] {
  display: none;
}

.wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  background: linear-gradient(180deg, #86D0E1 0%, #16ADC5 100%);
  flex-wrap: wrap;
  padding: 0 0 80px 0;
}

.wrap h1 {
  width: 100%;
  text-align: center;
  color: #fff;
}

.grid-container {
  width: 700px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  padding: 20px;
}

.profile-card {
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  padding: 10px;
}

.external-link-icon {
  width: 32px;
  top: 6px !important;
  right: 6px !important;
}

.profile-image {
  position: relative;
  width: 100%;
}

.profile-image img {
  width: 100%;
  display: block;
}

.external-link-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #ffffff;
  border-radius: 50%;
  z-index: 1;
}

.external-link-icon:hover {
  background-color: #333333;
}

.profile-name {
  width: 100%;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
}

.profile-name-jp {
  font-size: 32px;
}

.profile-name-en {
  font-size: 1rem;
  color: #ffffff;
}

.profile-info {
  font-size: 0.9rem;
  color: #333;
}

.profile-info p {
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 5px;
  text-align: left;
}

.profile-info p:last-child {
  border-bottom: none;
}

.calendar {
  width: 1000px !important;
  display: block;
  margin: 100px auto 0 auto;
}