@charset "UTF-8";
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Variables
# Mixins
# Elements

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
/* Box sizing rules */
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@500;700&display=swap");
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  margin: 0;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  border-style: none;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/
/*
breakpoint
*/
/*
page-width
*/
/*--------------------------------------------------------------
# Mixins
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
/*
html
*/
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 62.5%;
}

/*
body
*/
body {
  font-size: 1.6em;
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.8;
  text-align: left;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  background-image: url(../img/bg-main.png);
  color: #3E3E3E;
  position: relative;
  word-break: break-word;
}
body:lang(ja) {
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
}

/*
heading
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  font-weight: initial;
  color: #E0486B;
  margin-bottom: 0.7em;
}

/*
list
*/
ul,
ol {
  margin: 0;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

/*
img
*/
img {
  height: auto;
  display: block;
}

/*
table
*/
table {
  margin: 0 0 1.5em;
  width: 100%;
  border: none;
}
table tr {
  border-bottom: 1px solid #E0A400;
}
table tr:first-of-type {
  border-top: 1px solid #E0A400;
}
table td {
  border: none;
}

.wp-block-table th {
  border: none;
  background-color: transparent;
  color: #DE5C21;
  padding: 1em;
}
.wp-block-table td {
  border: none;
  padding: 1em;
}

/*
figure
*/
figure {
  margin-bottom: 2em;
}

/*
section
*/
section {
  margin-bottom: 2em;
}

/*
forms
*/
input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  color: #000;
  border: 1px solid #999999;
  border-radius: 3px;
  padding: 0.5em;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  color: #000;
}

select {
  border: 1px solid #000;
}

textarea {
  width: 100%;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: none;
  position: relative;
  border-radius: 100px;
  cursor: pointer;
  width: 100%;
  line-height: 1.8;
  padding: 0.7em 1em;
}
button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  opacity: 0.7;
}

button,
input[type=submit] {
  background-color: #E0486B;
}
button:hover,
input[type=submit]:hover {
  background-color: #E0486B;
}

/*
a link
*/
a {
  color: #3E3E3E;
  text-decoration: none;
  /*

  &:visited {
  	color: $clrBlack;
  }

  &:hover,
  &:focus,
  &:active {
  	color: $clrBlack;
  }

  &:focus {
  	outline: thin dotted;
  }

  &:hover,
  &:active {
  	outline: 0;
  }
  */
}

footer {
  background-color: #fff;
  background-image: url(../img/bg-footer.png);
  color: #fff;
}

/*
PC visible
*/
.isPC {
  display: inline-block;
}

.isSP {
  display: none;
}

/*
SP visible
*/
@media screen and (max-width: 768px) {
  .isPC {
    display: none;
  }
  .isSP {
    display: inline-block;
  }
}
/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
body:not(.wp-admin) .display-none {
  display: none;
}

.no-margin div {
  margin: 0 !important;
}

.entry-content .subheader {
  margin-bottom: 0.3em;
  padding-top: 150px !important;
  margin-top: -150px;
}

.sectionline {
  margin: 4em 0;
}

.wp-block-file {
  margin-bottom: 5em;
}

.wp-block-file__button {
  background-color: #E0486B;
}
.wp-block-file__button:hover {
  color: #fff;
}

.jumbotron-overlay {
  background-color: rgba(110, 80, 0, 0.5);
}
.jumbotron-overlay .subheader {
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.wp-block-group {
  margin-bottom: 3em;
}

.wp-block-button a {
  position: relative;
}
.wp-block-button a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: 20px;
  margin: auto;
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.4em;
  height: 1.4em;
}
.wp-block-button a:hover {
  color: #fff;
}

.wpcf7-not-valid-tip {
  font-size: 1rem;
}

.wpcf7 form .wpcf7-response-output {
  background-color: #DE5C21;
  padding: 2em;
  color: #fff;
  border: none;
  margin: 0;
  border-radius: 1em;
}

.wpcf7-not-valid {
  border-color: #DE5C21 !important;
  border-width: 3px !important;
}

.wp-block-buttons.is-content-justification-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.is-layout-flex {
  gap: 0.5em;
}

.is-layout-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

div.wpcf7 .wpcf7-spinner {
  display: block;
  margin: 1em auto;
}

.gnav-features a::before {
  background-image: url(../img/illust-sugi.png);
}

.gnav-oneday a::before {
  background-image: url(../img/illust-sakura.png);
}

.gnav-event a::before {
  background-image: url(../img/illust-tanpopo.png);
}

.gnav-contact a::before {
  background-image: url(../img/illust-churippu.png);
}

.gnav-access a::before {
  background-image: url(../img/illust-yuri.png);
}

.gnav-dl a::before {
  background-image: url(../img/illust-hiyoko.png);
}

.site-logo img {
  -webkit-transform-origin: center center;
          transform-origin: center center;
  width: 150px;
}

.site-branding {
  padding-right: 0;
}

.home-header-overlay {
  background-color: transparent;
}

header .site-logo a:hover {
  opacity: 1;
}

.main-header-clone .site-logo {
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.intro {
  line-height: 2.8em;
  color: #3E3E3E;
}

.top-contents-block h3 {
  margin-bottom: 1em;
  position: relative;
  font-weight: 600;
  letter-spacing: 0.3em;
}
.top-contents-block h3 span {
  display: inline-block;
  padding: 0 0.2em 0 0.5em;
}
.top-contents-block .top-content-hoiku h3 span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #FFC9D6));
  background: -webkit-linear-gradient(transparent 60%, #FFC9D6 0%);
  background: linear-gradient(transparent 60%, #FFC9D6 0%);
}
.top-contents-block .top-content-shisetsu h3 span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #C5E2EF));
  background: -webkit-linear-gradient(transparent 60%, #C5E2EF 0%);
  background: linear-gradient(transparent 60%, #C5E2EF 0%);
}
.top-contents-block .top-content-enno h3 span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #C8ED9C));
  background: -webkit-linear-gradient(transparent 60%, #C8ED9C 0%);
  background: linear-gradient(transparent 60%, #C8ED9C 0%);
}
.top-contents-block .top-content-nenkan h3 span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #FFDE93));
  background: -webkit-linear-gradient(transparent 60%, #FFDE93 0%);
  background: linear-gradient(transparent 60%, #FFDE93 0%);
}
.top-contents-block figure img {
  border-radius: 1em;
}

footer {
  margin-top: 100px;
}
footer .widget {
  color: #fff;
}
footer .footer-logo a:hover {
  opacity: 1;
}

.site-bottom {
  background-color: transparent !important;
  border-top: none;
  color: #fff;
}
.site-bottom a {
  color: #fff;
}
.site-bottom .site-bottom-content {
  text-align: center;
}

.site-bottom a:hover, .site-bottom .current-menu-item > a {
  color: #fff;
}

.footer-logo {
  margin-bottom: 1em;
}

.footer-widget .widget {
  margin-bottom: 0;
}

.header-social-link,
.footer-navigation {
  float: none;
}

.footer-menu {
  margin-bottom: 4rem;
}

.site-info {
  float: none;
  text-align: center;
}

.site-credit {
  display: none;
}

.back-to-top:before {
  color: #fff;
}

.feature-shisetsu-block .wp-block-image {
  margin-bottom: 0;
}
.feature-shisetsu-block .wp-block-heading {
  position: relative;
  font-size: 1.6rem;
  color: #fff;
  background-color: #DE5C21;
  text-align: center;
  border-radius: 20px;
  margin: -1em auto 0.5em auto;
  padding: 0.25em 0;
  z-index: 10;
  width: 70%;
}
.feature-shisetsu-block img {
  border-radius: 10px;
}

.timetable thead {
  background-color: #DE5C21;
  color: #fff;
  border-bottom: none;
}
.timetable thead th {
  color: #fff;
  text-align: center;
}
.timetable thead th:nth-child(2) {
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
}
.timetable tbody strong {
  color: #DE5C21;
  font-size: 120%;
}
.timetable tbody .borderbottom-none {
  border-bottom: none;
}
.timetable tbody tr {
  border-bottom: none;
}
.timetable tbody td {
  border-bottom: 2px solid #FCB900;
}
.timetable tbody td:not(:nth-child(2)) {
  vertical-align: top;
  width: 40%;
}
.timetable tbody td:nth-child(2) {
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
  border-color: #DE5C21;
  border-bottom: none;
}

.event-table table tr td:first-of-type {
  font-size: 1.75rem;
  color: #DE5C21;
}
.event-table table tr:first-of-type {
  border-top: 2px solid #DE5C21;
}

.access .access-table table tr:first-of-type {
  border-top: 2px solid #DE5C21;
}

.admission-recruitment-container form label {
  width: 100%;
}
.admission-recruitment-container form .form-title {
  display: block;
  min-width: 23%;
  margin-bottom: 0;
  color: #999999;
}
.admission-recruitment-container form .req {
  display: inline-block;
  margin-left: 0.5em;
  background-color: #E0486B;
  color: #fff;
  border-radius: 3px;
  font-size: 0.66em;
  padding: 0.2em 0.3em 0.3em 0.3em;
}

@media screen and (max-width: 768px) {
  .isPC {
    display: none !important;
  }
  .isSP {
    display: inline-block !important;
  }
  .bigbtn {
    margin-top: 4rem;
  }
  .bigbtn a {
    padding: 2rem 1rem 2rem 2rem;
    font-size: 1.4rem;
    color: #fff;
  }
  .bigbtn a::after {
    width: 0.8rem;
    height: 0.8rem;
    margin: 0 6px 0 3rem;
  }
  .wp-block-table th {
    display: block;
    width: 100%;
    padding: 1em 0 0.5em 0;
  }
  .wp-block-table td {
    display: block;
    width: 100%;
    padding: 0.5em 0 1em 0;
  }
  .drawer-navigation .current_page_item > a,
  .drawer-navigation .current-menu-item > a {
    color: #3C92E8;
  }
  .drawer-navigation .current_page_item > a:hover,
  .drawer-navigation .current-menu-item > a:hover {
    color: #3C92E8;
  }
  .drawer-navigation .current_page_item > a:active,
  .drawer-navigation .current-menu-item > a:active {
    color: #3C92E8;
  }
  .drawer-hamburger {
    padding: 20px 15px;
  }
  .wp-block-column {
    margin-bottom: 0;
  }
  .wp-block-columns.is-layout-flex {
    gap: 2em;
  }
  .entry-content h2 {
    margin-bottom: 1em;
  }
  .entry-content p {
    margin-bottom: 0.5em;
  }
  .main-header {
    padding: 7px 0;
  }
  .main-header-content {
    position: relative;
  }
  .drawer-hamburger {
    position: absolute;
    right: 1em;
    border: none;
  }
  .drawer-navigation {
    background-image: url(../img/bg-spnav.png);
    background-repeat: repeat;
  }
  .drawer-navigation li {
    font-size: 1.8rem;
  }
  .drawer-navigation a {
    color: #E0486B;
  }
  .drawer-navigation a::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 32px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
  }
  .main-header {
    background-image: url(../img/bg-main.png);
  }
  .main-header::before {
    content: "";
    display: inline-block;
    width: 40%;
    height: 45px;
    background-image: url(../img/illust-headerleft.png);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
  }
  .main-header::after {
    content: "";
    display: inline-block;
    width: 40%;
    height: 45px;
    background-image: url(../img/illust-headerright.png);
    background-position: right top;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0;
  }
  .home-header-content {
    padding: 15em 0 2em 1em;
  }
  .home-header-text {
    margin-top: 0;
    text-shadow: none;
    color: #E0486B;
    font-weight: 900;
  }
  .home-header-text-body {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #fff;
    border-radius: 0.35em;
    padding: 1em 1.5em;
  }
  .home-header-text-body::before {
    content: "";
    max-width: 100px;
    width: 100%;
    max-height: 100px;
    height: 100%;
    display: block;
    background-image: url(../img/illust-sun.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -35%;
    right: -30%;
  }
  .home-header-text-body::after {
    content: "";
    max-width: 140px;
    width: 100%;
    max-height: 90px;
    height: 100%;
    display: block;
    background-image: url(../img/illust-cloud.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -60%;
    left: -15%;
  }
  .top-contents-block h3 {
    font-size: 20px;
  }
  .schedule-sp--first {
    margin-top: 0;
  }
  .schedule-sp {
    width: 100%;
  }
  .schedule-sp table thead {
    background-color: #DE5C21;
    border-bottom: none;
  }
  .schedule-sp table thead th {
    color: #fff;
    display: table-cell;
    padding: 1em;
  }
  .schedule-sp table thead th:first-of-type {
    border-right: 2px solid #fff;
    width: 30%;
  }
  .schedule-sp table thead th:nth-of-type(2) {
    width: 70%;
  }
  .schedule-sp table td {
    display: table-cell;
    padding: 1em;
  }
  .schedule-sp table td strong {
    color: #DE5C21;
  }
  .schedule-sp table td:first-of-type {
    border-right: 2px solid #DE5C21;
    width: 30%;
  }
  .schedule-sp table td:nth-of-type(2) {
    width: 70%;
  }
  .event-imohori {
    margin-top: 3em;
  }
  .event-table table tr td {
    padding: 0.5em;
    display: table-cell;
    width: auto;
  }
  .access-table table tr td {
    padding: 0.5em 0;
  }
}
@media screen and (min-width: 769px) {
  .isPC {
    display: inline-block !important;
  }
  .isSP {
    display: none !important;
  }
  a,
  button {
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
    -ms-transition-duration: 0.3s;
    -ms-transition-timing-function: ease-out;
    -webkit-transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    -moz-transition-duration: 0.3s;
    -moz-transition-timing-function: ease-out;
    -webkit-transition-property: opacity, color;
    transition-property: opacity, color;
  }
  a:hover,
  button:hover {
    opacity: 0.65;
  }
  .bigbtn {
    margin-top: 7rem;
  }
  .bigbtn a {
    padding: 3rem 2rem 3rem 3rem;
    font-size: 2rem;
  }
  .bigbtn a::after {
    width: 1.1rem;
    height: 1.1rem;
    margin: 0 10px 0 3rem;
  }
  .wp-block-button a:hover {
    opacity: 0.7;
  }
  .main-navigation .current_page_item > a,
  .main-navigation .current-menu-item > a {
    color: #3C92E8;
  }
  .wp-block-columns.is-layout-flex {
    gap: 3em;
  }
  .entry-content h2 {
    margin-bottom: 1.5em;
  }
  .entry-content p {
    margin-bottom: 1em;
  }
}
@media screen and (min-width: 769px) and (max-width: 979px) {
  .main-header {
    padding: 7px 0;
  }
  .site-logo img {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    width: 150px;
  }
  .main-header-content {
    position: relative;
  }
  .drawer-hamburger {
    position: absolute;
    right: 1em;
    border: none;
  }
  .drawer-navigation {
    background-image: url(../img/bg-spnav.png);
    background-repeat: repeat;
  }
  .drawer-navigation li {
    font-size: 1.8rem;
  }
  .drawer-navigation a {
    color: #E0486B;
  }
  .drawer-navigation a::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 32px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
  }
}
@media screen and (min-width: 769px) and (min-width: 980px) {
  .site-logo img {
    width: 180px;
  }
  .main-header-content {
    position: relative;
    z-index: 10;
  }
  .main-navigation {
    font-size: 14px;
    line-height: 2em;
  }
  .main-navigation li:first-of-type::before {
    content: "";
    display: inline-block;
    width: 2px;
    height: 40px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-image: url(../img/dotted-line.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .main-navigation li::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 40px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-image: url(../img/dotted-line.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .main-navigation a {
    color: #E0486B;
    min-width: 110px;
    width: 100%;
    display: inline-block;
    text-align: center;
  }
  .main-navigation a:hover {
    color: #E0486B;
  }
  .main-navigation a::before {
    content: "";
    display: block;
    width: 40px;
    height: 42px;
    margin-left: auto;
    margin-right: auto;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
  }
  .main-navigation ul.menu > li:first-child > a {
    padding-left: 15px;
  }
  .main-navigation ul.menu > li:last-child > a {
    padding-right: 15px;
  }
}
@media screen and (min-width: 769px) {
  .main-header {
    background-image: url(../img/bg-main.png);
  }
  .main-header::before {
    content: "";
    display: inline-block;
    width: 20%;
    height: 75px;
    background-image: url(../img/illust-headerleft.png);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
  }
  .main-header::after {
    content: "";
    display: inline-block;
    width: 20%;
    height: 75px;
    background-image: url(../img/illust-headerright.png);
    background-position: right top;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0;
  }
  .home-header-content {
    padding-bottom: 15vw;
    padding-top: 15vw;
  }
  .home-header-text {
    font-size: 2.2rem;
    margin-top: 0;
    text-shadow: none;
    color: #E0486B;
    font-weight: 900;
  }
  .home-header-text-body {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #fff;
    border-radius: 0.35em;
    padding: 1em 1.5em;
  }
  .home-header-text-body::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-image: url(../img/illust-sun.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    max-width: 150px;
    max-height: 150px;
    top: -30%;
    right: -20%;
  }
  .home-header-text-body::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-image: url(../img/illust-cloud.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    max-width: 230px;
    max-height: 150px;
    bottom: -55%;
    left: -15%;
  }
}
@media screen and (min-width: 769px) and (max-width: 980px) {
  .home-header-text-body::before {
    max-width: 140px;
    max-height: 140px;
    top: -30%;
    right: -20%;
  }
  .home-header-text-body::after {
    max-width: 180px;
    max-height: 130px;
    bottom: -55%;
    left: -15%;
  }
}
@media screen and (min-width: 769px) {
  .home .site-content::before {
    content: "";
    display: block;
    height: 180px;
    background-image: url(../img/illust-branch.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    width: 300px;
    top: 65vw;
    left: 0;
  }
  .home .site-content::after {
    content: "";
    display: block;
    height: 80px;
    background-image: url(../img/illust-bird.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    width: 220px;
    top: 70vw;
    right: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .home .site-content::before {
    width: 260px;
    top: 70vw;
    left: 0;
  }
  .home .site-content::after {
    width: 200px;
    top: 80vw;
    right: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 980px) {
  .home .site-content::before {
    width: 180px;
    top: 75vw;
    left: 0;
  }
  .home .site-content::after {
    width: 150px;
    top: 80vw;
    right: 0;
  }
}
@media screen and (min-width: 769px) {
  .top-contents-block h3 {
    font-size: 24px;
  }
  .wp-block-table table tr:last-of-type {
    border-bottom: 2px solid #DE5C21;
  }
  .wp-block-table table tr:last-of-type td {
    border-bottom: none;
  }
  .illust-01 {
    background-image: url(../img/schedule-01.png);
    background-position: 93%;
    background-size: 100px;
    background-repeat: no-repeat;
  }
  .illust-02 {
    background-image: url(../img/schedule-02.png);
    background-position: 93%;
    background-size: 100px;
    background-repeat: no-repeat;
  }
  .illust-03 {
    background-image: url(../img/schedule-03.png);
    background-position: 93%;
    background-size: 90px;
    background-repeat: no-repeat;
  }
  .illust-04 {
    background-image: url(../img/schedule-05.png);
    background-position: 93%;
    background-size: 115px;
    background-repeat: no-repeat;
  }
  .illust-05 {
    background-image: url(../img/schedule-04.png);
    background-position: 93%;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 3em 1em !important;
  }
  .event {
    position: relative;
  }
  .event .event-undoukai {
    position: absolute;
    top: 600px;
    right: 0;
    left: -75%;
    margin: auto;
    width: 350px;
    height: 350px;
    overflow: hidden;
    border-radius: 50%;
  }
  .event .event-undoukai img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .event .event-imohori {
    position: absolute;
    top: 1000px;
    right: 0;
    left: 60%;
    margin: auto;
    width: 220px;
    height: 220px;
    overflow: hidden;
    border-radius: 50%;
  }
  .event .event-imohori img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .event .event-christmas {
    position: absolute;
    top: 1300px;
    right: 0;
    left: -65%;
    margin: auto;
    width: 220px;
    height: 220px;
    overflow: hidden;
    border-radius: 50%;
  }
  .event .event-christmas img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .event .event-mamemaki {
    position: absolute;
    top: 1450px;
    right: 0;
    left: 60%;
    margin: auto;
    width: 300px;
    height: 300px;
    overflow: hidden;
    border-radius: 50%;
  }
  .event .event-mamemaki img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1400px) {
  .event .event-undoukai {
    left: -90%;
  }
  .event .event-imohori {
    left: 65%;
  }
  .event .event-christmas {
    left: -80%;
  }
  .event .event-mamemaki {
    left: 70%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .event .event-undoukai {
    left: -95%;
    width: 220px;
    height: 220px;
  }
  .event .event-imohori {
    left: 80%;
  }
  .event .event-christmas {
    left: -90%;
  }
  .event .event-mamemaki {
    left: 80%;
  }
}
@media screen and (min-width: 769px) and (max-width: 900px) {
  .event .event-undoukai {
    display: none;
  }
  .event .event-imohori {
    display: none;
  }
  .event .event-christmas {
    display: none;
  }
  .event .event-mamemaki {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */