@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif:wght@100..900&display=swap");
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@400;500&display=swap");
@media screen and (min-width: 680px) {
  .pc {
    display: inline-block;
  }
  .sp {
    display: none;
  }
}
@media screen and (max-width: 680px) {
  .pc {
    display: none;
  }
  .sp {
    display: inline-block;
  }
}
body {
  font-size: 16px;
  font-family: "Noto Sans JP", "Beiruti", sans-serif;
  font-weight: 400;
  color: #333;
}

main {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Kiwi Maru", "Noto Serif", serif;
  color: #625245;
}

h3 {
  margin-bottom: 2rem;
  line-height: 1.7;
}

a {
  color: #002d44;
  text-decoration: underline;
  transition: 1s;
}

p,
ul,
ol,
th,
td {
  font-size: 15px;
  line-height: 1.9;
  font-weight: 400;
}
@media (max-width: 768px) {
  p,
  ul,
  ol,
  th,
  td {
    font-size: 14px;
  }
}

p.wide {
  line-height: 2;
  letter-spacing: 0.15rem;
}

/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 50%;
  height: 100vh; /*ナビの高さ*/
  background-color: #008cd6;
  /*動き*/
  transition: all 0.6s;
}
@media (max-width: 768px) {
  #g-nav {
    width: 90%;
  }
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 50%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  #g-nav.panelactive #g-nav-list {
    width: 90%;
  }
}

/*ナビゲーション*/
#g-nav ul {
  line-height: 3;
  padding-left: 0;
  text-align: center;
}

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.6235294118);
}
#g-nav li ul {
  padding-left: 1.5rem;
}
#g-nav li ul li:before {
  font-family: "Material Icons";
  content: "\e15b";
  padding-right: 0.5rem;
  color: white;
}

#g-nav li a {
  font-size: 16px;
  color: white;
  text-decoration: none;
  letter-spacing: 0.2em;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  letter-spacing: 0.1rem;
  background-color: #008cd6;
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 1px;
  right: 1px;
  cursor: pointer;
  width: 55px;
  height: 55px;
  color: white;
  text-align: center;
  font-size: 0.6rem;
  padding-top: 4px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 16px;
  height: 3px;
  border-radius: 2px;
  background-color: white;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 22px;
}

.openbtn span:nth-of-type(2) {
  top: 30px;
}

.openbtn span:nth-of-type(3) {
  top: 38px;
}

.openbtn.active span:nth-of-type(1) {
  top: 22px;
  left: 16px;
  transform: translateY(6px) rotate(-45deg);
  width: 45%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 34px;
  left: 16px;
  transform: translateY(-6px) rotate(45deg);
  width: 45%;
}

.shadow-box {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 4px 4px;
}

.head-up {
  padding: 0.4rem;
  display: flex;
  justify-content: space-between;
  z-index: 1000;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.6117647059);
}

.menu {
  list-style-type: none;
  display: flex;
  margin-bottom: 0;
}

@media screen and (max-width: 992px) {
  .menu {
    display: none;
  }
}
.menu > li a {
  display: block;
  color: #141414;
  padding: 1rem;
  font-weight: 500;
  text-decoration: none;
}

.menu > li a:hover {
  color: #c69e4d;
  transition: all 0.5s;
}

ul.menu__second-level {
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  padding-left: 0;
}

.menu__second-level li {
  border-bottom: 1px solid #e9e9e9;
}

/* 下矢印 */
.init-bottom:after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 0 3px 10px;
  border-right: 1px solid #161616;
  border-bottom: 1px solid #161616;
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  .init-bottom:after {
    border-right: 1px solid white;
    border-bottom: 1px solid white;
  }
}

/* floatクリア */
.menu:before,
.menu:after {
  content: " ";
  display: table;
}

.menu:after {
  clear: both;
}

.menu {
  *zoom: 1;
}

.menu > li.menu__single {
  position: relative;
}

li.menu__single ul.menu__second-level {
  position: absolute;
  top: 40px;
  width: 220px;
  background: #ffffff;
  transition: all 0.2s ease;
  list-style: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 0.5rem;
}

li.menu__single:hover ul.menu__second-level {
  top: 50px;
  visibility: visible;
  opacity: 1;
}

#top-logo {
  margin-top: 0.3rem;
  margin-left: 1.5rem;
}
@media (max-width: 768px) {
  #top-logo {
    margin-top: 0;
    margin-left: 0;
  }
}
#top-logo img {
  width: 200px;
}
@media (max-width: 768px) {
  #top-logo img {
    width: 150px;
  }
}

#top-logo-kasou {
  position: absolute;
  top: 1rem;
  left: 2rem;
}
@media (max-width: 768px) {
  #top-logo-kasou {
    top: 0.4rem;
    left: 0.4rem;
  }
}

#intro {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
#intro #copy-pc {
  position: absolute;
  bottom: 5%;
  left: 3%;
}
@media (max-width: 768px) {
  #intro #copy-pc {
    bottom: 5%;
    left: 0;
  }
}

#badge-newclass {
  position: absolute;
  top: -35%;
  right: 0;
  transform: rotate(10deg);
}
@media (max-width: 768px) {
  #badge-newclass {
    top: -80%;
    left: 2%;
    transform: rotate(-7deg);
  }
}

.object-fit-img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  font-family: "object-fit: cover; object-position: bottom;";
}

#bg1 {
  background-image: url(../img/top-back.jpg);
  background-size: cover;
}
@media (max-width: 768px) {
  #bg1 {
    background-image: url(../img/top-back-sp.jpg);
  }
}

#bg2 {
  background-image: url(../img/top-gaikan.jpg);
  background-size: cover;
  background-position: center left 30%;
}

#bg3 {
  background-image: url(../img/top-naikan.jpg);
  background-size: cover;
  background-position: center center;
}

.bg_container {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100vh;
}

.bg_container .image {
  position: absolute;
  width: 100%;
  height: 100vh;
  opacity: 0;
  animation: change-img-anim 18s infinite;
}

.bg_container .image:nth-of-type(1) {
  animation-delay: 0s;
}

.bg_container .image:nth-of-type(2) {
  animation-delay: 6s;
}

.bg_container .image:nth-of-type(3) {
  animation-delay: 12s;
}

@keyframes change-img-anim {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  63% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
#petal {
  position: absolute;
  top: 350px;
  right: 0;
}
@media (max-width: 768px) {
  #petal {
    top: 100px;
    left: -100px;
    transform: rotate(70deg);
  }
}

p.lead {
  font-size: 1.1rem;
  font-weight: 500;
  margin: auto;
  letter-spacing: 0.1rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.table-white > :not(caption) > * > * {
  color: white;
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.3960784314);
}

.table-white th {
  color: #f8d184 !important;
}

.table > :not(caption) > * > * {
  padding: 1.5rem;
}
@media (max-width: 768px) {
  .table > :not(caption) > * > * {
    padding: 0.5rem;
  }
}

.table th {
  white-space: nowrap;
  letter-spacing: 0.1rem;
  color: #c69e4d;
  font-weight: normal;
  font-weight: 500;
}
@media (max-width: 768px) {
  .table th {
    border-bottom: 0px;
    padding-bottom: 0;
  }
}

@media (max-width: 768px) {
  .table th,
  .table td {
    display: block;
    width: 100%;
  }
}

a.btn,
.btn {
  color: #fff;
  background-color: #ffa200;
  border-bottom: 3px solid #c77e00;
  transition: 0.3s;
  font-weight: 500;
  letter-spacing: 0.1rem;
  padding: 0.5rem 1.5rem 0.6rem;
  width: 300px;
  font-family: "Kiwi Maru", serif;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  a.btn,
  .btn {
    letter-spacing: 0;
    padding: 0;
  }
}

.btn-big {
  width: 200px;
}
@media (max-width: 768px) {
  .btn-big {
    width: 98%;
  }
}

a.btn:hover,
.btn:hover {
  color: #fff;
  background-color: #ffad20;
  border-bottom: 3px solid #fda308;
}

#footer {
  text-align: center;
  background-color: #efefef;
  background-image: url(../img/tel-left.png), url(../img/tel-right.png);
  background-repeat: no-repeat;
  background-position: center left 20%, center right 20%;
  padding: 3rem 0 0.1rem;
  position: relative;
  letter-spacing: 0.1rem;
}
@media (max-width: 768px) {
  #footer {
    background-image: none;
  }
}

.footer-copyright {
  padding: 1rem;
  font-size: 0.7rem;
  text-align: center;
}

.kadomaru-part {
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

ul.check {
  list-style: none;
  padding-left: 0;
}
ul.check li:before {
  color: #c69e4d;
  font-family: "Material Icons";
  content: "\e3c6";
  padding-right: 0.5rem;
}
ul.check li ol li::before {
  content: none;
}

.bg-beige {
  background-color: #f7f5ee;
}

.bg-kokuban {
  background-image: url(../img/bg-kokuban.jpg);
  color: white;
}

#kaso-head {
  background-image: url(../img/bg-kokuban.jpg);
  color: white;
  text-align: center;
  padding: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#kaso-head h1 {
  letter-spacing: 0.2rem;
  font-size: 2rem;
  margin-top: 1rem;
  color: white;
}
@media (max-width: 768px) {
  #kaso-head {
    padding: 5rem 2rem 3rem;
  }
  #kaso-head h1 {
    font-size: 1.8rem;
  }
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 0, "GRAD" 0, "opsz" NaN;
  vertical-align: middle;
  transform: translateY(-3px); /* 上下方向の位置を微調整する */
}

.mb-6 {
  margin-bottom: 6rem;
}

#totop {
  font-size: 0.9rem;
  position: absolute;
  right: 0;
  bottom: 70px;
  text-align: center;
  transition: 0.3s;
}
#totop:hover {
  bottom: 90px;
}
#totop .rotate {
  rotate: 90deg;
  translate: 0 30px;
}
@media (max-width: 768px) {
  #totop {
    display: none;
  }
}

.red {
  color: red;
}

.form-label {
  font-weight: bold;
}

.form-control {
  padding: 1rem 1rem;
}

.tokucho-box {
  width: 100%;
  text-align: center;
  border: 4px solid #bfaa9e;
  border-radius: 20px;
  padding: 1.5rem 3rem;
  background-color: #fff;
  box-sizing: border-box;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .tokucho-box {
    padding: 1.5rem;
  }
}
.tokucho-box h3 {
  color: #f39800;
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 1.7rem;
}
.tokucho-box img {
  margin-bottom: 1.5rem;
}
.tokucho-box p {
  text-align: left;
}

.face-circle {
  margin: 0 auto 2rem;
  background-color: #fff;
  border-radius: 50%;
  max-width: 330px;
  height: 330px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-bungu {
  background-image: url(../img/bungu1.png), url(../img/bungu2.png), url(../img/bg-kokuban.jpg);
  background-position: left 10% top 80px, right 10% top 100px;
  background-repeat: no-repeat, no-repeat, repeat;
  position: relative;
}
@media (max-width: 768px) {
  .bg-bungu {
    background-image: url(../img/bungu1.png), url(../img/bungu2.png), url(../img/bg-kokuban.jpg);
    background-position: left top 200px, right top 200px;
    background-size: 50vw, 50vw;
  }
}

ul.profile {
  color: white;
  list-style: none;
  width: min(100vw, 700px);
  margin: 0 auto 6rem;
  padding-left: 0;
  padding-right: 1rem;
}
ul.profile li {
  padding: 1rem;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.74);
}

#letter {
  margin: auto;
  width: min(90vw, 800px);
  background-color: white;
  padding: 3rem;
  color: #333;
  box-shadow: rgba(0, 0, 0, 0.6) 0px 8px 24px;
}
@media (max-width: 768px) {
  #letter {
    padding: 1.5rem;
  }
}
#letter p {
  line-height: 3;
  text-decoration: underline;
  text-decoration-color: #98d0ec;
  text-underline-offset: 16px;
}
@media (max-width: 768px) {
  #letter p {
    line-height: 2;
    text-underline-offset: 8px;
  }
}

.sign {
  text-align: right;
  margin-top: 3rem;
}

#petal-letter {
  position: absolute;
  bottom: 0;
  left: 0;
}
#petal-letter img {
  max-width: 40vw;
  transform: scale(-1, 1);
}
@media (max-width: 768px) {
  #petal-letter {
    display: none;
  }
}

#room {
  position: relative;
}
#room h4 {
  text-align: center;
  padding: 1rem;
  background-color: #bfaa9e;
  color: white;
  letter-spacing: 0.2rem;
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
}
#room img.room-img {
  border-radius: 20px 20px 0 0;
}
#room p {
  padding: 0 2rem;
}

.links {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  text-align: center;
}
.links .btn {
  margin-bottom: 1rem;
}
.links img {
  height: 30px;
  margin: 0.8rem auto 0.4rem;
  display: block;
  border-radius: 0;
}
@media (max-width: 768px) {
  .links {
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
  }
}

.narrow {
  width: min(80vw, 700px);
  margin: auto;
}

.narrow2 {
  width: min(95vw, 900px);
  margin: auto;
}

#bukatsu {
  position: absolute;
  top: 100px;
  right: 100px;
}
@media (max-width: 768px) {
  #bukatsu {
    position: relative;
    top: 0px;
    right: 0px;
  }
  #bukatsu img {
    width: 100%;
    height: auto;
  }
}

#waribiki {
  position: absolute;
  top: 0;
  right: 100px;
}
@media (max-width: 768px) {
  #waribiki {
    top: -120px;
    right: 10px;
  }
  #waribiki img {
    width: 150px;
  }
}

.red {
  font-weight: bold;
  color: rgb(240, 45, 11);
}

#koremade {
  background-image: url(../img/kids-left.png), url(../img/kids-right.png);
  background-repeat: no-repeat;
  background-position: left center, right center;
  padding: 5rem 0;
}
@media (max-width: 768px) {
  #koremade {
    background-image: url(../img/kids-left-sp.png), url(../img/kids-right-sp.png);
    background-position: left top, right bottom;
    background-size: 30vw, 30vw;
  }
}
#koremade p {
  width: min(60vw, 500px);
  margin: auto;
  line-height: 2.2;
}

.voice-card {
  width: min(95vw, 800px);
  margin: auto;
  background-color: #fffeec;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
}
.voice-card .letter {
  padding: 3rem;
}
@media (max-width: 768px) {
  .voice-card .letter {
    padding: 1rem 2rem;
  }
}
.voice-card p {
  line-height: 2.2;
}
.voice-card .name {
  text-align: right;
}
.voice-card img {
  max-width: 100%;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .voice-card {
    flex-direction: column;
  }
}/*# sourceMappingURL=koyori.css.map */