/*!*******************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/assets/css/main.scss ***!
  \*******************************************************************************************************************/
/**
 * main.css
 * @date 14 Jul 2022
 */
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

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

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

/**
 * Fonts
 * @date 20 Apr 2022
 */
@font-face {
  font-family: "Noto Serif JP";
  src: url(../fonts/NotoSerifJP-Regular.woff2) format("woff2"), url(../fonts/NotoSerifJP-Regular.woff) format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "Noto Serif JP";
  src: url(../fonts/NotoSerifJP-Medium.woff2) format("woff2"), url(../fonts/NotoSerifJP-Medium.woff) format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "Noto Serif JP";
  src: url(../fonts/NotoSerifJP-Bold.woff2) format("woff2"), url(../fonts/NotoSerifJP-Bold.woff) format("woff");
  font-weight: 700;
}
/**
 * Default
 * @date 20 Apr 2022
 */
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Serif JP", sans-serif;
  color: #333;
}

a {
  color: royalblue;
  text-decoration: underline;
}
a:hover {
  color: #1a3ca2;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 20px;
}

h1 {
  font-size: 4.8rem;
  line-height: 5.8rem;
}

h2 {
  font-size: 3.2rem;
  line-height: 4.2rem;
}

h3, h4 {
  font-size: 2.4rem;
  line-height: 3.4rem;
}

h5, h6 {
  font-size: 1.8rem;
  line-height: 2.8rem;
}

p, ul, ol, dl, table {
  font-size: 1.6rem;
  line-height: 2.6rem;
}

p, ul, ol, dl, table {
  margin-bottom: 20px;
}

table th {
  font-weight: normal;
}

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

label, input, textarea, select, button {
  color: #222;
  font-size: 1.6rem;
  line-height: 2.6rem;
}

input[type=button], button {
  cursor: pointer;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  width: 100%;
  max-width: 100%;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: inherit;
  line-height: inherit;
  white-space: normal;
  padding: 0;
  margin-bottom: 1rem;
  display: block;
}

hr {
  border: none;
  margin: 0 auto;
  clear: both;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 3.2rem;
    line-height: 4.2rem;
  }

  h2 {
    font-size: 2.4rem;
    line-height: 3.4rem;
  }

  h3, h4 {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }

  h5, h6 {
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
}
/**
 * menu.scss
 * @date 14 Jul 2022
 */
.menu {
  position: relative;
  z-index: 999;
}
.menu-open, .menu-close {
  width: 100px;
  height: 100px;
  font-size: 2.4rem;
  color: #fff;
  background: #008C8C;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1;
}
.menu-open:hover, .menu-close:hover {
  color: #fff;
}
.menu-close {
  z-index: 1;
  color: #fff;
  background: none;
}
.menu-close:hover {
  color: #fff;
}
.menu-contents {
  width: 100%;
  height: 100%;
  padding: 120px;
  background: rgba(0, 140, 140, 0.96);
  overflow-y: auto;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 2;
  display: none;
}
.menu-contents ul {
  max-width: 640px;
  font-size: 1.8rem;
  line-height: 2.2rem;
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
}
.menu-contents ul.align-center {
  text-align: center;
}
.menu-contents ul a {
  text-decoration: none;
}
.menu-contents ul li {
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-width: 1px 0 0;
}
.menu-contents ul li a {
  color: #fff;
  padding: 20px 0;
  display: block;
}
.menu-contents ul.primary {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 4.8rem;
}
.menu-contents ul.primary li a {
  padding: 20px 0;
}

@media screen and (max-width:768px) {
  .menu-open, .menu-close {
    width: 60px;
    height: 60px;
  }
  .menu-contents {
    padding: 100px 40px;
  }
  .menu-contents ul li a {
    padding: 10px 0;
  }
  .menu-contents ul.primary {
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 4.8rem;
  }
  .menu-contents ul.primary li a {
    padding: 10px 0;
  }
}
/**
 * flexbox.scss
 * @date 22 Jul 2022
 */
[class*=flexbox] {
  max-width: 1280px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin: 40px auto;
}
[class*=flexbox] .box {
  flex: 1;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
[class*=flexbox] .box-fig {
  display: block;
}
[class*=flexbox] .box-fig figure {
  margin-bottom: 10px;
}
[class*=flexbox] .box-fig figure figcaption {
  font-size: 1.4rem;
  line-height: 2.2rem;
  margin: 10px auto;
}
[class*=flexbox] .box-fig figure figcaption:last-child {
  margin-bottom: 0;
}
[class*=flexbox] .box-fig > *:last-child {
  margin-bottom: 0;
}
[class*=flexbox] .box-text {
  display: block;
}
[class*=flexbox] .box-text h2, [class*=flexbox] .box-text h3, [class*=flexbox] .box-text h4, [class*=flexbox] .box-text h5, [class*=flexbox] .box-text h6 {
  font-size: 2.2rem;
  line-height: 3rem;
  margin-bottom: 10px;
}
[class*=flexbox] .box-text p, [class*=flexbox] .box-text ul, [class*=flexbox] .box-text ol, [class*=flexbox] .box-text dl, [class*=flexbox] .box-text table, [class*=flexbox] .box-text figure {
  margin-bottom: 10px;
}
[class*=flexbox] .box-text > *:last-child {
  margin-bottom: 0;
}


@media screen and (max-width:768px) {
  .flexbox {
    flex-direction: column;
    row-gap: 40px;
  }
  .flexbox .box {
    flex: none;
    width: auto;
  }
}
[class*=flexbox-wrap] {
  flex-wrap: wrap;
  gap: 40px;
}
[class*=flexbox-wrap] .box {
  flex: none;
  width: calc(33.333333333% - 26.6666666667px);
}

.flexbox-wrap-2rows .box {
  width: calc(50% - 20px);
}

.flexbox-wrap-3rows .box {
  width: calc(33.333333333% - 26.6666666667px);
}

.flexbox-wrap-4rows .box {
  width: calc(25% - 30px);
}

.flexbox-wrap-5rows .box {
  width: calc(20% - 32px);
}

@media screen and (max-width:768px) {
  [class*=flexbox-wrap] {
    flex-direction: column;
  }
  [class*=flexbox-wrap] .box {
    flex: none;
    width: auto;
  }
}
[class*=flexbox-column] {
  flex-direction: column;
  row-gap: 0;
}
[class*=flexbox-column] .box {
  flex-direction: row;
  gap: 40px;
  padding: 40px 0;
}
[class*=flexbox-column] .box-fig {
  flex: 1;
}
[class*=flexbox-column] .box-text {
  flex: 2;
}
[class*=flexbox-column] .box-reverse {
  flex-direction: row-reverse;
}

.flexbox-column-reverse .box {
  flex-direction: row-reverse;
}

@media screen and (max-width:768px) {
  [class*=flexbox-column] {
    flex-direction: column;
    row-gap: 40px;
  }
  [class*=flexbox-column] .box {
    flex-direction: column;
    row-gap: 20px;
    padding: 0;
  }
  [class*=flexbox-column] .box-fig {
    flex: none;
    width: 100%;
  }
  [class*=flexbox-column] .box-text {
    flex: none;
    width: 100%;
  }
  [class*=flexbox-column] .box-reverse {
    flex-direction: column;
  }

  .flexbox-column-reverse .box {
    flex-direction: column;
  }
}
[class*=flexbox-list] {
  flex-direction: column;
  gap: 0;
}
[class*=flexbox-list] .box {
  display: block;
  padding: 20px 0;
  border: 1px solid #000;
  border-width: 1px 0 0;
}
[class*=flexbox-list] .box:last-child {
  border-bottom-width: 1px;
}

[class*=w-] {
  margin-left: auto;
  margin-right: auto;
}

.w-small {
  max-width: 540px;
}

.w-medium {
  max-width: 720px;
}

.w-large {
  max-width: 960px;
}

.w-xlarge {
  max-width: 1140px;
}

.w-xxlarge {
  max-width: 1320px;
}

.w-fill {
  max-width: 100%;
}

/**
 * anime.scss
 * @date 13 Jul 2022
 */
.inview .fade {
  opacity: 0;
  transition: opacity 1000ms ease 0ms;
}
.inview .slide {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1000ms ease 0ms, transform 1000ms ease 0ms;
}
.inview .slide-in {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1000ms ease 0ms, transform 1000ms ease 0ms;
}
.inview .slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1000ms ease 0ms, transform 1000ms ease 0ms;
}
.inview .slide-down {
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 1000ms ease 0ms, transform 1000ms ease 0ms;
}
.inview .scale {
  opacity: 0;
  transform-origin: center center;
  transform: scale(0);
  transition: opacity 1000ms ease 0ms, transform 1000ms ease 0ms;
}
.inview .scale-left {
  opacity: 0;
  transform-origin: left top;
  transform: scaleX(0);
  transition: opacity 1000ms ease 0ms, transform 1000ms ease 0ms;
}
.inview .scale-right {
  opacity: 0;
  transform-origin: right top;
  transform: scaleX(0);
  transition: opacity 1000ms ease 0ms, transform 1000ms ease 0ms;
}
.inview .scale-up {
  opacity: 0;
  transform-origin: left bottom;
  transform: scaleY(0);
  transition: opacity 1000ms ease 0ms, transform 1000ms ease 0ms;
}
.inview .scale-down {
  opacity: 0;
  transform-origin: left top;
  transform: scaleY(0);
  transition: opacity 1000ms ease 0ms, transform 1000ms ease 0ms;
}
.inview .rotate {
  opacity: 0;
  transform-origin: center center;
  transform: rotate(45deg);
  transition: opacity 1000ms ease 0ms, transform 1000ms ease 0ms;
}
.inview .rotate-reverse {
  opacity: 0;
  transform-origin: center center;
  transform: rotate(-45deg);
  transition: opacity 1000ms ease 0ms, transform 1000ms ease 0ms;
}
.inview .zoom-up {
  opacity: 0;
  transform-origin: center center;
  transform: scale(0.9);
  transition: opacity 1000ms ease 0ms, transform 1000ms ease 0ms;
}
.inview .zoom-down {
  opacity: 0;
  transform-origin: center center;
  transform: scale(1.1);
  transition: opacity 1000ms ease 0ms, transform 1000ms ease 0ms;
}
.inview .duration-fast {
  transition-duration: 500ms;
}
.inview .duration-slow {
  transition-duration: 2000ms;
}
.inview .order-1 {
  transition-delay: 1000ms;
}
.inview .order-2 {
  transition-delay: 2000ms;
}
.inview .order-3 {
  transition-delay: 3000ms;
}
.inview .order-4 {
  transition-delay: 4000ms;
}
.inview .order-5 {
  transition-delay: 5000ms;
}
.inview .order-6 {
  transition-delay: 6000ms;
}
.inview .order-7 {
  transition-delay: 7000ms;
}
.inview .order-8 {
  transition-delay: 8000ms;
}
.inview .order-9 {
  transition-delay: 9000ms;
}
.inview .order-10 {
  transition-delay: 10000ms;
}
.inview .order-11 {
  transition-delay: 11000ms;
}
.inview .order-12 {
  transition-delay: 12000ms;
}
.inview .order-13 {
  transition-delay: 13000ms;
}
.inview .order-14 {
  transition-delay: 14000ms;
}
.inview .order-15 {
  transition-delay: 15000ms;
}
.inview .order-16 {
  transition-delay: 16000ms;
}
.inview .order-17 {
  transition-delay: 17000ms;
}
.inview .order-18 {
  transition-delay: 18000ms;
}
.inview .order-19 {
  transition-delay: 19000ms;
}
.inview .order-20 {
  transition-delay: 20000ms;
}

.inviewed .fade {
  opacity: 1;
}
.inviewed .slide,
.inviewed .slide-in {
  opacity: 1;
  transform: translateX(0);
}
.inviewed .slide-up,
.inviewed .slide-down {
  opacity: 1;
  transform: translateY(0);
}
.inviewed .scale {
  opacity: 1;
  transform: scale(1);
}
.inviewed .scale-left,
.inviewed .scale-right {
  opacity: 1;
  transform: scaleX(1);
}
.inviewed .scale-up,
.inviewed .scale-down {
  opacity: 1;
  transform: scaleY(1);
}
.inviewed .rotate,
.inviewed .rotate-reverse {
  opacity: 1;
  transform: rotate(0deg);
}
.inviewed .zoom-up,
.inviewed .zoom-down {
  opacity: 1;
  transform: scale(1);
}

@keyframes anime-shake {
  0% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(10deg);
  }
}
.yurayura {
  width: 100px;
  height: 100%;
  display: block;
  font-size: 100px;
  text-align: center;
  transform: rotate(-10deg);
  animation: anime-shake 1000ms linear 0ms infinite alternate both;
  border: 2px solid red;
}

.boxes {
  max-width: 960px;
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px auto;
}
.boxes .box {
  width: calc(25% - 15px);
  background: #aaa;
}
.boxes .box::before {
  content: "";
  padding-top: 200px;
  display: block;
}

/**
 * Slick
 * @date 24 Jul 2022
 */
.slick {
  list-style: none;
  padding: 0;
  margin: 0 auto;
}
.slick-carousel {
  max-width: 1020px;
  position: relative;
}
.slick-carousel .slick-slide {
  padding: 0 20px;
  margin: 0;
}
.slick-carousel .slick-slide li {
  text-align: center;
  vertical-align: bottom;
}
.slick-carousel .slick-slide li img {
  display: block;
  margin: 0 auto;
}
.slick-carousel .slick-arrow {
  -webkit-appearance: none;
  appearance: none;
  width: 50px;
  height: 50px;
  color: #fff;
  background: #008C8C;
  border: none;
  opacity: 1;
  transition: opacity 200ms ease 0ms;
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
}
.slick-carousel .slick-arrow:hover {
  opacity: 0.6;
}
.slick-carousel .slick-prev {
  left: -50px;
}
.slick-carousel .slick-next {
  right: -50px;
}

@media screen and (max-width:768px) {
  .slick-carousel .slick-arrow {
    width: 40px;
    height: 40px;
  }
  .slick-carousel .slick-prev {
    left: 0;
  }
  .slick-carousel .slick-next {
    right: 0;
  }
}
body {
  font-family: "Noto Serif JP", sans-serif;
  color: #333;
}

a {
  color: #008C8C;
  text-decoration: underline;
}
a:hover {
  color: #002626;
}

.list-style-none {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.larger {
  font-size: 1.8rem;
  line-height: 3.6rem;
}

.header {
  height: 100px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: sticky;
  left: 0;
  top: 0;
  z-index: 99;
}
.header ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-logo .logo {
  width: 300px;
  height: 60px;
  text-indent: -9999px;
  overflow: hidden;
  background: none no-repeat center center;
  background-size: 300px auto;
  display: block;
  opacity: 1;
  transition: opacity 200ms ease 0ms;
}
.header-logo .logo:hover {
  opacity: 0.6;
}
.header-nav {
  flex: 1;
}
.header-nav ul {
  font-size: 2rem;
  line-height: 3rem;
  display: flex;
  gap: 10px;
}
.header-nav ul li a {
  text-decoration: none;
  padding: 10px;
  display: block;
}
.header-sns ul {
  font-size: 2.2rem;
  line-height: 2.2rem;
  display: flex;
  gap: 10px;
}
.header-buttons ul {
  display: flex;
  gap: 1px;
}
.header-buttons ul li a {
  padding: 10px;
  display: block;
  color: #fff;
  text-decoration: none;
  background: blue;
  opacity: 1;
  transition: opacity 200ms ease 0ms;
  border: 2px solid blue;
}
.header-buttons ul li a:hover {
  color: #fff;
  opacity: 0.6;
}

@media screen and (max-width:768px) {
  .header {
    height: 60px;
    padding-right: 60px;
    justify-content: center;
  }
  .header-logo .logo {
    width: 240px;
    height: 60px;
    background-size: 180px auto;
  }
  .header-nav, .header-sns, .header-buttons {
    display: none;
  }
}
.main-visual {
  position: relative;
}
.main-visual-single {
  height: calc(100vh - 100px);
  background: #000 no-repeat center center;
  background-size: cover;
}
.main-visual-single::before {
  content: "";
  display: block;
  padding-top: 50%;
}
.main-visual-poster {
  width: 540px;
  height: 340px;
  background: transparent no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

@media screen and (max-width:768px) {
  .main-visual-single {
    height: auto;
  }
  .main-visual-single::before {
    padding-top: 480px;
  }
  .main-visual-poster {
    width: 260px;
    height: 165px;
  }
}
.anchor {
  transform: translateY(-120px);
}

@media screen and (max-width:768px) {
  .anchor {
    transform: translateY(-100px);
  }
}
.btn {
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #fff;
  background: #008C8C;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  transition: opacity 200ms ease 0ms;
  position: relative;
}
.btn:hover {
  color: #fff;
  opacity: 0.6;
}
.btn-large {
  font-size: 1.6rem;
  line-height: 2.6rem;
  padding: 20px 20px;
}
.btn-xlarge {
  font-size: 2rem;
  line-height: 3rem;
}
.btn-xxlarge {
  font-size: 2.4rem;
  line-height: 3.4rem;
}
.btn .icon-first {
  display: inline-block;
  margin-left: -1rem;
  margin-right: 0.5rem;
}
.btn .icon-last {
  display: inline-block;
  margin-left: 0.5rem;
  margin-right: -1rem;
}

.fig {
  margin-left: auto;
  margin-right: auto;
}
.fig figcaption {
  font-size: 1.4rem;
  line-height: 2.4rem;
  margin: 10px auto;
}
.fig figcaption:last-child {
  margin-bottom: 0;
}
.fig-medium {
  max-width: 720px;
}
.fig-large {
  max-width: 960px;
}

.heading-bar {
  font-size: 2.4rem;
  line-height: 3.4rem;
  text-align: center;
  color: #fff;
  padding: 10px 20px;
  background: #008C8C;
  margin: 0 auto 40px;
}
.heading-bar-reverse {
  color: #008C8C;
  background: #fff;
  border: 2px solid #008C8C;
  border-width: 2px 0;
}
.heading-bar a {
  color: #fff;
}
.heading-bar + .heading-bar {
  margin-top: -40px;
}

.content {
  padding: 40px;
}
.content > *:last-child {
  margin-bottom: 0;
}
.content-full {
  padding: 0;
}
.content-bg {
  background: #efecdf url(../images/bage-bg-top.png) repeat-x top left;
  background-size: 1280px auto;
  padding-top: 80px;
  margin: 0 auto;
}


.news-content .flexbox{
	flex-wrap: wrap;
	align-items: stretch
}
.news-content .flexbox .box {
	flex-grow: 0;
	flex-basis: auto;
	width: 30%;
}

@media screen and (max-width:768px) {
  .content {
    padding: 40px 20px;
  }
  .content-full {
    padding: 0;
  }
  .content-bg {
    background: #efecdf url(../images/bage-bg-top.png) repeat-x top left;
    background-size: 1280px auto;
    padding-top: 80px;
    margin: 0 auto;
  }
  .news-content .flexbox .box{
	width: 100%
  }
}
.footer {
  padding: 40px 0;
}
.footer-fnav {
  margin: 0 auto 40px;
}
.footer-fnav .fnav-list {
  font-size: 1.6rem;
  line-height: 2.6rem;
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 0;
  margin: 0;
}
.footer-info {
  text-align: center;
}
.footer-info h2 {
  font-size: 3rem;
  line-height: 3rem;
  text-align: center;
  margin: 0 auto 20px;
}
.footer-info p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin: 0 auto 10px;
}
.footer-info > *:last-child {
  margin-bottom: 0;
}
.footer-return a {
  width: 60px;
  height: 60px;
  font-size: 2rem;
  line-height: 2rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 998;
  transition: background-color 400ms ease 0ms;
}
.footer-return a:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
}

@media screen and (max-width:768px) {
  .footer {
    padding: 40px 0 80px;
  }
  .footer-fnav {
    margin: 0 auto 40px;
  }
  .footer-fnav .fnav-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0;
    font-size: 1.4rem;
    line-height: 2.4rem;
    padding: 0 10px;
  }
  .footer-fnav .fnav-item {
    width: 50%;
    padding: 0 10px;
  }
  .footer-info h2 {
    font-size: 2.6rem;
    line-height: 3.6rem;
    margin-bottom: 10px;
  }
  .footer-info p {
    font-size: 1.3rem;
    line-height: 2.3rem;
    margin-bottom: 10px;
  }
  .footer-copyright {
    font-size: 1.3rem;
  }
  .footer-return a {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
}
.about {
  display: flex;
  padding: 20px;
}
.about-fig {
  flex: 1;
}
.about-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about-text {
  position: relative;
}
.about-text .text {
  width: fit-content;
  color: #fff;
  padding: 40px;
  position: relative;
  z-index: 2;
}
.about-text .text a, .about-text .text a:hover {
  color: #fff;
}
.about-text .text > *:last-child {
  margin-bottom: 0;
}
.about-text-bg {
  width: 100%;
  height: 100%;
  background: transparent url(../images/about-bg.png) no-repeat center center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.about-reverse {
  flex-direction: row-reverse;
}
.about .box {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 2px solid green;
}
.about .box > * {
  padding: 40px;
  border: 2px solid blue;
}
.about-photos {
  display: flex;
  gap: 20px;
  padding: 20px;
}

@media screen and (max-width:768px) {
  .about {
    flex-direction: column;
  }
  .about-text .text {
    padding: 40px 20px;
  }
  .about-reverse {
    flex-direction: column;
  }
  .about-photos {
    flex-direction: column;
  }
}
.cards .box {
  flex-direction: column;
  row-gap: 20px;
  background: #fff;
}
.cards .box-fig > *:last-child {
  margin-bottom: 0;
}
.cards .box-text h2, .cards .box-text h3, .cards .box-text h4 {
  font-size: 1.8rem;
  line-height: 2.8rem;
}
.cards .box-text .badge {
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.3rem;
  color: #fff;
  background: #333;
  padding: 10px 20px;
  margin-bottom: 15px;
  border-radius: 999px;
  display: inline-block;
}
.cards .box-text .badge-event {
  background-color: #38c6b1;
}
.cards .box-text .badge-information {
  background-color: #fcb924;
}
.cards .box-text .badge-recruitment {
  background-color: #b70d4e;
}

.facilities .facility-list {
  max-width: 960px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 40px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}
.facilities .facility-item {
  width: calc(33.333333333% - 26.6666666667px);
}
.facilities .facility-item > a {
  opacity: 1;
  transition: opacity 200ms ease 0ms;
}
.facilities .facility-item > a:hover {
  opacity: 0.6;
}
.facilities .facility-item .fig figcaption {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 3rem;
  text-align: center;
  margin: 10px auto;
}

.note {
  padding: 40px;
  background: #f5f5f5;
  margin: 40px auto;
}
.note > *:last-child {
  margin-bottom: 0;
}

@media screen and (max-width:768px) {
  .note {
    padding: 40px 20px;
  }
}
.gmap {
  max-width: 720px;
  margin: 40px auto;
  position: relative;
}
.gmap::before {
  content: "";
  padding-top: 62.5%;
  display: block;
}
.gmap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.banners {
  margin: 80px auto;
}

.breadcrumb {
  max-width: 960px;
  list-style: none;
  padding: 0;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
}
.breadcrumb li::before {
  content: "/";
  margin: 0 10px;
}
.breadcrumb li:first-child::before {
  display: none;
}

@media screen and (max-width:768px) {
  .breadcrumb {
    font-size: 1.3rem;
    line-height: 2.3rem;
    padding: 0 20px;
    margin: 20px auto 40px;
  }
  .breadcrumb li::before {
    content: "/";
    margin: 0 10px;
  }
  .breadcrumb li:first-child::before {
    display: none;
  }
}

.detail {
  max-width: 960px;
  display: flex;
  gap: 40px;
  margin: 40px auto 80px;
}
.detail-fig {
  flex: 1;
}
.detail-fig .fig {
  margin-bottom: 20px;
}
.detail-text {
  flex: 2;
}
.detail-text h1 {
  font-weight: 700;
  font-size: 3rem;
  line-height: 4.4rem;
  margin-bottom: 40px;
}
.detail-text p, .detail-text ul, .detail-text ol, .detail-text dl, .detail-text table {
  font-size: 1.8rem;
  line-height: 3.2rem;
  margin-bottom: 40px;
}
.detail-fig .cap {
	font-size: 1.5rem;
}
.detail-text .btn-back {
	white-space: nowrap;
}

@media screen and (max-width:768px) {
  .detail {
    margin: 0 auto 80px;
    flex-direction: column;
    row-gap: 40px;
  }
  .detail-fig {
    flex: none;
    width: 100%;
  }
  .detail-text {
    flex: none;
    width: 100%;
  }
  .detail-text h1 {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
  .detail-text p, .detail-text ul, .detail-text ol, .detail-text dl, .detail-text table {
    font-size: 1.6rem;
    line-height: 3.2rem;
  }
}
.gallery .swipebox {
  opacity: 1;
  transition: opacity 400ms ease 0ms;
}
.gallery .swipebox:hover {
  opacity: 0.6;
}

.box-fig .fig {
  width: 100%;
  aspect-ratio: 4 / 3; }

.box-fig .fig img {
  object-fit: cover;
  aspect-ratio: 4 / 3; 
width: 100%;
height: auto;}


.wp-block-image {
	position: relative;
	padding:0 10px 30px!important;
	margin-bottom: 10px!important;
	outline: none!important
}
.wp-block-image img {
	outline: none!important
}
.wp-block-image::before{
	display: none!important;
}
.wp-block-gallery figure.wp-block-image figcaption{
	background:none !important;
	color:#222 !important;
	text-shadow: none!important;
	position: absolute;
	left: 10px!important;
	bottom: 5px!important;
	padding: 0!important;
	display: flex;
	justify-content: flex-start;
}
*:focus {
outline: none;
}