@charset "UTF-8";
/*
 変数定義用のファイルです 
 自由に書き換えてください
*/
/*========= Media Size ===============*/
/*========= Font ===============*/
/*========= Color ===============*/
.pc {
  display: block !important;
}
@media (max-width: 800px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media (max-width: 800px) {
  .sp {
    display: block !important;
  }
}

html {
  font-size: 62.5%;
  margin-top: 0 !important;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.1;
  letter-spacing: 0.6px;
  color: #313131;
  overflow-x: hidden;
}
@media screen and (max-width: 800px) {
  body {
    font-size: 1.4rem;
    line-height: 1.9;
  }
}

main {
  overflow: hidden;
}

p.text {
  line-height: 2.4;
}
@media screen and (max-width: 800px) {
  p.text {
    line-height: 2;
  }
}

a {
  cursor: pointer;
  display: block;
  color: inherit;
  text-decoration: none;
}

img,
ul,
ol,
button {
  display: block;
}

h2 {
  text-align: center;
  font-size: 4.6rem;
  font-weight: 400;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 800px) {
  h2 {
    font-size: 2.3rem;
  }
}

.font--mintyo {
  font-family: "Zen Old Mincho", serif;
}

.btn--border {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 3px 20px;
  border: 1px solid #d7d7d7;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s;
  width: fit-content;
}
.btn--border span {
  font-size: 1.3rem;
}
.btn--border:hover {
  background: #ff5f41;
  color: #fff;
  border-color: #ff5f41;
}
@media screen and (max-width: 800px) {
  .btn--border:hover {
    color: inherit;
    background: #fff;
    border: 1px solid #d7d7d7;
  }
}

.header {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  position: fixed;
  justify-content: flex-start;
  gap: 50px;
  top: 10px;
  left: 0;
  width: 100%;
  padding: 0 0 0 20px;
  z-index: 10;
}
@media screen and (max-width: 800px) {
  .header {
    padding: 0 15px;
    gap: 10px;
    justify-content: space-between;
  }
}
.header__logo {
  line-height: 1.3;
  font-size: 2rem;
  font-family: "Zen Old Mincho", serif;
  transition: 0.8s;
}
.header__logo span {
  display: block;
  margin-top: 3px;
  font-size: 1.4rem;
}
@media screen and (max-width: 800px) {
  .header__logo {
    letter-spacing: 1px;
    font-size: 1.6rem;
  }
  .header__logo span {
    letter-spacing: 0px;
    font-size: 1.2rem;
  }
}
.header__logo.is-active {
  color: #fff;
  transform: scale(1.2) translate(20px, 20px);
}
@media screen and (max-width: 800px) {
  .header__logo.is-active {
    transform: scale(1.1) translate(10px, 10px);
  }
}
@media screen and (max-width: 800px) {
  .header .btn--border {
    font-size: 1.1rem;
  }
  .header .btn--border span {
    font-size: 1rem;
    display: block;
  }
}

/* 交通アクセスポップアップ */
.access-window {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  overflow: scroll;
  z-index: 10;
}
.access-window.is-active {
  display: block;
}
.access-window__close {
  width: 20px;
  height: 20px;
  background: url(../images/access_window_close.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 0 0 auto;
}
.access-window-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5%;
  background: #ff5f41;
}
.access-window-container__inner {
  max-width: 800px;
  margin: 0 auto;
}
.access-window-container__header {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  .access-window-container__header {
    display: block;
  }
}
.access-window-container__header .btn-wrap {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  .access-window-container__header .btn-wrap {
    margin-top: 20px;
  }
}
.access-window-container__header a {
  width: 160px;
  text-align: center;
  border: 1px solid #fff;
  padding: 5px;
  color: #fff;
  border-radius: 6px;
  font-size: 1.3rem;
}
.access-window-container__header a:nth-of-type(1) {
  margin-right: 20px;
}
.access-window-container h2,
.access-window-container h3,
.access-window-container p {
  color: #fff;
  line-height: 2;
}
@media screen and (max-width: 800px) {
  .access-window-container h2 {
    font-size: 2rem;
  }
}
.access-window-container h3 {
  margin-top: 30px;
  margin-bottom: 10px;
}
.access-window-container h3:nth-of-type(2), .access-window-container h3:nth-of-type(3) {
  margin-top: 50px;
}
.access-window-container h3:after {
  background: #fff;
}
@media screen and (max-width: 800px) {
  .access-window-container h3 {
    font-size: 1.8rem;
  }
}
.access-window-container p a {
  display: inline-block;
}
.access-window-container iframe {
  margin: 50px 0 0 0;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .access-window-container iframe {
    height: 300px;
  }
}
.access-window-container .way {
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .access-window-container .way {
    width: 100%;
  }
}

/* Footer */
.footer {
  position: relative;
  padding: 80px 20px 20px 20px;
  text-align: center;
  color: #fff;
  font-size: 1.3rem;
  background-color: #ff5f41;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  flex-direction: column;
}
.footer__logo {
  width: 200px;
  margin-bottom: 63px;
}
.footer__link-btns {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-bottom: 60px;
}
.footer__link-btns a {
  width: 155px;
  margin: 0 20px;
  padding: 7px 0;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 6px;
}
@media screen and (max-width: 800px) {
  .footer__link-btns {
    width: 100%;
  }
  .footer__link-btns a {
    width: 45%;
    margin: 0 7px;
  }
}
.footer__sns {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.footer__sns img {
  width: 90px;
  margin: 0 14px;
}
@media screen and (max-width: 800px) {
  .footer__sns img {
    width: 100px;
    margin: 0 12px;
  }
}
.footer__copyright {
  font-size: 1rem;
}

/*========= トップページ(front)用のCSS ===============*/
.infinity-right {
  position: fixed;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: visible;
}
.infinity-right .circle-frame {
  position: absolute;
  top: 0%;
  left: 47%;
  width: 100%; /* wrapperと同サイズ */
  height: 100%;
  transform-origin: center center; /* 中心回転 */
}
.infinity-right .circle {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 16%;
  height: 16%;
  margin-left: -11%;
}
@media screen and (max-width: 800px) {
  .infinity-right .circle {
    width: 30%;
    height: 30%;
    margin-left: -23%;
  }
}
.infinity-right .circle img {
  width: 100%;
}

.infinity-left {
  position: fixed;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: visible;
}
.infinity-left .circle-frame {
  position: absolute;
  top: 0%;
  right: 47%;
  width: 100%; /* wrapperと同サイズ */
  height: 100%;
  transform-origin: center center; /* 中心回転 */
}
.infinity-left .circle {
  position: absolute;
  top: 50%;
  right: 0%;
  width: 16%;
  height: 16%;
  margin-right: -11%;
}
@media screen and (max-width: 800px) {
  .infinity-left .circle {
    width: 30%;
    height: 30%;
    margin-right: -23%;
  }
}
.infinity-left .circle img {
  width: 100%;
}

.page-front {
  position: relative;
  padding-top: 140px;
  /* TOPのファーストビュー */
}
@media screen and (max-width: 800px) {
  .page-front {
    padding-top: 110px;
  }
}
.page-front .fv-container {
  position: relative;
}
.page-front .fv-container__top {
  text-align: center;
  font-size: 2.6rem;
  color: #777777;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 800px) {
  .page-front .fv-container__top {
    font-size: 2.4rem;
  }
}
.page-front .fv-container__top span {
  display: block;
}
.page-front .fv-container__top .fv-container__year {
  color: #ff5f41;
  margin-bottom: 20px;
}
.page-front .fv-container__top .fv-container__strong {
  color: #333333;
  font-size: 4.6rem;
}
@media screen and (max-width: 800px) {
  .page-front .fv-container__top .fv-container__strong {
    font-size: 3.8rem;
    margin: 10px 0;
  }
}
.page-front .fv-container__middle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  font-family: "Zen Old Mincho", serif;
  color: #ff5f41;
  font-size: 2.3rem;
  margin: 55px auto 110px;
}
@media screen and (max-width: 800px) {
  .page-front .fv-container__middle {
    font-size: 2rem;
    text-align: center;
    gap: 40px;
  }
}
.page-front .fv-container__middle .left-circle-img {
  position: absolute;
  top: 50%;
  left: -25px;
  width: 50px;
  transform: translateY(-50%);
}
@media screen and (max-width: 800px) {
  .page-front .fv-container__middle .left-circle-img {
    left: -20px;
    width: 38px;
  }
}
.page-front .fv-container__middle .right-circle-img {
  position: absolute;
  top: 50%;
  right: -25px;
  width: 50px;
  transform: translateY(-50%);
}
@media screen and (max-width: 800px) {
  .page-front .fv-container__middle .right-circle-img {
    right: -20px;
    width: 38px;
  }
}
.page-front .fv-container__middle .public {
  position: relative;
}
@media screen and (max-width: 800px) {
  .page-front .fv-container__middle .public {
    line-height: 1.7;
  }
}
.page-front .fv-container__middle .public::before {
  content: "";
  display: inline-block;
  width: 25vw;
  height: 1px;
  background: #ff5f41;
  position: absolute;
  top: 50%;
  right: 120%;
  transform: translateY(-50%);
}
@media screen and (max-width: 800px) {
  .page-front .fv-container__middle .public::before {
    width: 8vw;
    right: 113%;
  }
}
.page-front .fv-container__middle .welfare {
  position: relative;
}
@media screen and (max-width: 800px) {
  .page-front .fv-container__middle .welfare {
    line-height: 1.7;
  }
}
.page-front .fv-container__middle .welfare::after {
  content: "";
  display: inline-block;
  width: 25vw;
  height: 1px;
  background: #ff5f41;
  position: absolute;
  top: 50%;
  left: 120%;
  transform: translateY(-50%);
}
@media screen and (max-width: 800px) {
  .page-front .fv-container__middle .welfare::after {
    width: 8vw;
    left: 113%;
  }
}
.page-front .fv-container__middle .point {
  width: 12px;
  height: 12px;
  background: #ff5f41;
  border-radius: 100%;
}
@media screen and (max-width: 800px) {
  .page-front .fv-container__middle .point {
    width: 10px;
    height: 10px;
  }
}
.page-front .fv-container__bottom {
  width: 530px;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .page-front .fv-container__bottom {
    width: 85%;
  }
}
.page-front .fv-container__bottom--sub {
  text-align: center;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  white-space: nowrap;
}
.page-front .fv-container__bottom--sub::before {
  content: "";
  display: block;
  width: 35%;
  height: 1px;
  background: #bcbcbc;
}
.page-front .fv-container__bottom--sub::after {
  content: "";
  display: block;
  width: 35%;
  height: 1px;
  background: #bcbcbc;
}
.page-front .news {
  margin-top: 160px;
}
.page-front .news-container {
  position: relative;
  background: #f8f8f8;
  width: 90%;
  max-width: 800px;
  margin: 30px auto;
}
.page-front .news-container .more-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 36px;
  height: 100px;
  margin: 0 auto;
  transform: translateY(-50%);
  background-color: #e9e9e9;
  border-radius: 3px;
}
.page-front .news-container .more-btn img {
  display: block;
}
.page-front .news-container__inner {
  padding: 30px 40px;
}
@media screen and (max-width: 800px) {
  .page-front .news-container__inner {
    padding: 20px 20px;
  }
}
.page-front .news-item {
  display: flex;
  gap: 20px;
  margin: 10px 0;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .page-front .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.page-front .news-item .date {
  font-weight: 500;
  font-size: 1.2rem;
  color: #a8a8a8;
}
@media screen and (max-width: 800px) {
  .page-front .news-item .date {
    font-size: 1.1rem;
  }
}
.page-front .news-item .title {
  font-size: 1.6rem;
  font-weight: 400;
  color: inherit;
  white-space: nowrap;
  width: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 800px) {
  .page-front .news-item .title {
    font-size: 1.4rem;
  }
}
.page-front .oc {
  position: relative;
  margin-top: 160px;
}
.page-front .oc .red-circle {
  position: absolute;
  top: -28px;
  left: 16%;
  width: 44px;
  z-index: 0;
}
@media screen and (max-width: 800px) {
  .page-front .oc .red-circle {
    left: 8%;
  }
}
.page-front .oc h2 {
  text-align: center;
  margin-bottom: 60px;
}
.page-front .oc .movies {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: flex-start;
  align-items: center;
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .page-front .oc .movies {
    gap: 20px;
  }
}
.page-front .oc .movies .movie-item {
  width: calc(50% - 20px);
}
@media screen and (max-width: 800px) {
  .page-front .oc .movies .movie-item {
    width: calc(50% - 10px);
  }
}
.page-front .oc .movies .movie-item img {
  width: 100%;
}
.page-front .oc .movies--single {
  justify-content: center;
}
.page-front .oc .movies--single .movie-item {
  width: 100%;
  max-width: 500px;
}
@media screen and (max-width: 800px) {
  .page-front .oc .movies--single .movie-item {
    width: 100%;
  }
}
.page-front .region {
  margin-top: 160px;
}
.page-front .region-infinity-container {
  width: 100%;
  padding: 60px 0;
  background-color: #f7f7f7;
}
.page-front .region-infinity-container__inner {
  position: relative;
  width: 90%;
  max-width: 800px;
  margin: 30px auto;
}
@media screen and (max-width: 800px) {
  .page-front .region-infinity-container__inner {
    width: 100%;
    margin-top: 50px;
  }
}
.page-front .region-infinity-container img {
  width: 100%;
}
.page-front .region .region-link {
  position: absolute;
  width: 244px;
  height: 244px;
  border-radius: 100%;
  top: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px 0 rgba(210, 119, 14, 0.21);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .page-front .region .region-link {
    width: 30vw;
    height: 30vw;
  }
}
.page-front .region .region-link.is-left {
  left: 28%;
}
.page-front .region .region-link.is-right {
  left: 72%;
}
@media screen and (max-width: 800px) {
  .page-front .region .region-link.is-active {
    z-index: 4;
    left: 50%;
  }
}
.page-front .region .region-link h3 {
  color: #ff5f41;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.3rem;
  text-align: center;
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .page-front .region .region-link h3 {
    font-size: 1.8rem;
  }
}
.page-front .region .region-link__inner {
  opacity: 0;
  position: absolute;
  display: flex;
  flex-direction: column;
  border-radius: 100%;
  gap: 30px;
  width: 244px;
  height: 244px;
  background: #fff;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px 0 rgba(210, 119, 14, 0.21);
}
@media screen and (max-width: 800px) {
  .page-front .region .region-link__inner {
    width: 30vw;
    height: 30vw;
  }
}
.page-front .region .region-link__inner p {
  width: 273px;
}
.page-front .region .region-link__inner.is-active {
  opacity: 1;
  width: 380px;
  height: 380px;
}
@media screen and (max-width: 800px) {
  .page-front .region .region-link__inner.is-active {
    width: 350px;
    height: 350px;
  }
}
.page-front .seven-fields {
  position: relative;
  margin-top: 170px;
  padding-bottom: 100px;
  background: linear-gradient(0deg, rgba(145, 218, 252, 0.35) 0%, rgba(226, 246, 255, 0.35) 100%);
}
.page-front .seven-fields .red-circle {
  position: absolute;
  top: -28px;
  left: 16%;
  width: 44px;
  z-index: 0;
}
@media screen and (max-width: 800px) {
  .page-front .seven-fields .red-circle {
    left: 8%;
  }
}
.page-front .seven-fields .blue-circle {
  position: absolute;
  top: -17%;
  left: 22%;
  width: 90%;
  max-width: 600px;
  z-index: 0;
}
@media screen and (max-width: 800px) {
  .page-front .seven-fields .blue-circle {
    top: -7%;
    left: 48%;
    max-width: 200px;
  }
}
.page-front .seven-fields__inner {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 0;
}
.page-front .seven-fields__inner h2 {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
@media screen and (max-width: 800px) {
  .page-front .seven-fields__inner h2 {
    white-space: normal;
  }
}
.page-front .seven-fields__inner h2 span {
  color: #ff5f41;
}
.page-front .seven-fields__inner .seven-fields__picture {
  width: 100%;
}
.page-front .seven-fields ul {
  list-style: none;
  padding: 0;
  width: fit-content;
  margin: 40px auto;
}
.page-front .seven-fields ul li {
  position: relative;
  padding-left: 2.2em;
  margin-bottom: 10px;
  font-size: 2.6rem;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 800px) {
  .page-front .seven-fields ul li {
    font-size: 1.8rem;
  }
}
.page-front .seven-fields ul li::before {
  content: "";
  position: absolute;
  left: 0.5em;
  top: 0.6em;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  border: 1px solid #ff6f4d;
  box-sizing: border-box;
  display: inline-block;
}
.page-front .seven-fields p {
  width: 90%;
  margin: 40px auto 0 auto;
}
.page-front .what-new {
  position: relative;
  margin-top: 70px;
  padding-bottom: 70px;
}
.page-front .what-new .red-circle {
  position: absolute;
  top: -102px;
  left: 16%;
  width: 44px;
  z-index: 0;
}
@media screen and (max-width: 800px) {
  .page-front .what-new .red-circle {
    left: 8%;
  }
}
.page-front .what-new h2 {
  margin-bottom: 90px;
}
@media screen and (max-width: 800px) {
  .page-front .what-new h2 {
    margin-bottom: 50px;
  }
}
.page-front .what-new__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 550px;
  width: 90%;
  margin: 0 auto 120px auto;
}
@media screen and (max-width: 800px) {
  .page-front .what-new .figure-1 {
    width: 50%;
    margin-bottom: 20px;
  }
}
.page-front .what-new .figure-2 {
  margin-bottom: 10px;
}
@media screen and (max-width: 800px) {
  .page-front .what-new .figure-2 {
    width: 50%;
  }
}
.page-front .what-new .figure-3 {
  width: 100%;
}
.page-front .what-new h3 {
  color: #ff5f41;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.6rem;
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .page-front .what-new h3 {
    font-size: 2.3rem;
  }
}
.page-front .what-new p .arrow {
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: sub;
}
.page-front .what-new p .arrow img {
  width: 100%;
  height: 100%;
}
.page-front .what-learn {
  position: relative;
  margin-top: 70px;
}
.page-front .what-learn .red-circle {
  position: absolute;
  top: -102px;
  left: 16%;
  width: 44px;
  z-index: 0;
}
@media screen and (max-width: 800px) {
  .page-front .what-learn .red-circle {
    left: 8%;
  }
}
.page-front .what-learn .select-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  width: 90%;
  max-width: 750px;
  margin: 60px auto;
}
@media screen and (max-width: 800px) {
  .page-front .what-learn .select-container {
    flex-direction: column;
    margin: 30px auto;
  }
}
.page-front .what-learn .select-container .select-item {
  width: calc(50% - 20px);
}
@media screen and (max-width: 800px) {
  .page-front .what-learn .select-container .select-item {
    width: 100%;
  }
}
.page-front .what-learn .select-container .select-item .caption {
  margin: 22px 0;
  line-height: 1.8;
  font-size: 2.6rem;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .page-front .what-learn .select-container .select-item .caption {
    font-size: 2.2rem;
  }
}
.page-front .what-learn .select-container .select-item .label {
  padding: 10px;
  font-size: 2.6rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .page-front .what-learn .select-container .select-item .label {
    font-size: 2.2rem;
  }
}
.page-front .what-learn .select-container .select-item .label--public {
  background: #ffb01a;
}
.page-front .what-learn .select-container .select-item .label--welfare {
  background: #ffa7a7;
}
.page-front .what-learn .select-container .select-item img {
  width: 100%;
  margin-bottom: 25px;
}
.page-front .what-learn .select-container .select-item .btn--border {
  width: 110px;
  margin: 40px auto;
}
.page-front .what-learn .select-item {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
.page-front .what-learn .select-item .select-content {
  opacity: 0.4;
  transition: opacity 0.4s;
}
@media screen and (max-width: 800px) {
  .page-front .what-learn .select-item .select-content {
    opacity: 1;
  }
}
.page-front .what-learn .select-item.is-active .select-content {
  opacity: 1;
}
.page-front .what-learn .select-item .select-svg {
  margin-bottom: 16px;
  transform-origin: center;
  transform: rotate(-90deg);
}
@media screen and (max-width: 800px) {
  .page-front .what-learn .select-item .select-svg {
    display: none;
  }
}
.page-front .what-learn .select-item .select-circle {
  transition: 0.7s;
}
.page-front .what-learn .select-item.is-active .select-circle {
  stroke-dasharray: 190;
  stroke-width: 15;
}
.page-front .faq {
  position: relative;
  margin-top: 70px;
}
.page-front .faq .red-circle {
  position: absolute;
  top: -102px;
  left: 16%;
  width: 44px;
  z-index: 0;
}
@media screen and (max-width: 800px) {
  .page-front .faq .red-circle {
    left: 8%;
  }
}
.page-front .faq .faq-item {
  width: 90%;
  max-width: 710px;
  margin: 70px auto;
}
.page-front .faq .faq-item__question {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "Zen Old Mincho", serif;
  color: #ff5f41;
  font-size: 2.6rem;
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .page-front .faq .faq-item__question {
    line-height: 1.4;
    font-size: 2rem;
  }
}
.page-front .faq .faq-item__question span {
  position: relative;
  font-size: 2.6rem;
  font-weight: 400;
  color: #fff;
}
.page-front .faq .faq-item__question span::before {
  content: "";
  background: #ff5f41;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.page-front .faq .faq-item__answer {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 20px;
}
.page-front .faq .faq-item__answer span {
  position: relative;
  font-size: 2.6rem;
  font-weight: 400;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
}
.page-front .faq .faq-item__answer span::before {
  content: "";
  background: #313131;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.page-front .faq .faq-item__answer a {
  color: #ff5f41;
  text-decoration: underline;
  font-weight: 400;
  font-size: 1.6rem;
}
.page-front .contact {
  margin-top: 200px;
  padding-bottom: 200px;
}
.page-front .contact .btn--border {
  width: 450px;
  margin: 0 auto;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media screen and (max-width: 800px) {
  .page-front .contact .btn--border {
    width: 80%;
  }
}

/* お知らせ singleページ */
.single-common {
  margin-top: 100px;
  margin-bottom: 100px;
}
.single-common .breadcrumb {
  margin-top: 100px;
}
.single-common__inner {
  width: 90%;
  max-width: 920px;
  margin: 150px auto 200px auto;
}
@media screen and (max-width: 800px) {
  .single-common__inner {
    width: 100%;
  }
}
.single-common__inner .thumbnai-container {
  position: relative;
  margin-top: -100px;
}
.single-common__inner .thumbnai-container .thumbnai {
  width: 100%;
  aspect-ratio: 5/3;
}
@media screen and (max-width: 800px) {
  .single-common__inner .thumbnai-container .thumbnai {
    width: 90%;
    margin: 0 auto;
  }
}
.single-common__inner .thumbnai-container .thumbnai img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-common__inner .thumbnai-container .title {
  position: absolute;
  right: 0;
  width: 85%;
}
@media screen and (max-width: 800px) {
  .single-common__inner .thumbnai-container .title {
    padding-right: 5%;
  }
}
.single-common__inner .title {
  position: relative;
  width: 100%;
  margin: -74px 0 100px auto;
  padding: 28px 30px 28px 56px;
  background: #fff;
  font-size: 3rem;
  border-left: 4px solid #ff5f41;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  z-index: 2;
}
@media screen and (max-width: 800px) {
  .single-common__inner .title {
    width: 90%;
    margin: -74px auto 0 auto;
    font-size: 2rem;
    padding: 18px 0px 18px 16px;
    border-left: 3px solid #ff5f41;
  }
}
.single-common__inner .title .date {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  color: #a8a8a8;
  font-weight: bold;
  font-size: 1.6rem;
}
@media screen and (max-width: 800px) {
  .single-common__inner .title .date {
    font-size: 1.1rem;
  }
}

/* お知らせ archiveページ */
.page-archive {
  margin-bottom: 100px;
}
.page-archive h2 {
  display: flex;
  align-items: center;
  font-size: 2.8rem;
  text-align: left;
}
.page-archive h2:after {
  content: "";
  display: inline-block;
  flex: 1;
  height: 1px;
  background: #ff5f41;
  margin-left: 40px;
}
.page-archive__inner {
  position: relative;
  width: 90%;
  max-width: 920px;
  margin: 100px auto 200px auto;
}
@media screen and (max-width: 800px) {
  .page-archive__inner {
    margin: 100px auto 0px auto;
  }
}
.page-archive .list-container {
  padding-top: 20px;
}
.page-archive .news-item {
  margin: 20px 0;
}
.page-archive .news-item .date {
  font-weight: 500;
  font-size: 1.2rem;
  color: #a8a8a8;
}
@media screen and (max-width: 800px) {
  .page-archive .news-item .date {
    font-size: 1.1rem;
  }
}
.page-archive .news-item .title {
  font-size: 1.8rem;
  font-weight: 400;
  color: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 800px) {
  .page-archive .news-item .title {
    font-size: 1.4rem;
  }
}

article {
  width: 90%;
  max-width: 800px;
  margin: 0 auto 150px auto;
}
article h2 {
  margin-top: 3rem;
  margin-bottom: 34px;
  color: #313131;
  font-size: 2.6rem;
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 800px) {
  article h2 {
    font-size: 2.3rem;
  }
}
article h3 {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  margin-bottom: 67px;
  font-size: 2.2rem;
  font-weight: 500;
  color: #ff5f41;
  font-family: "Zen Old Mincho", serif;
}
article h3::after {
  content: "";
  display: block;
  flex: 0.95;
  width: auto;
  height: 1px;
  background: #ff5f41;
}
@media screen and (max-width: 800px) {
  article h3 {
    margin-bottom: 43px;
  }
}
article h4 {
  margin-bottom: 18px;
  font-weight: 400;
  font-size: 2.2rem;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 800px) {
  article h4 {
    font-size: 2rem;
  }
}
article p {
  margin: 3rem 0;
  line-height: 2;
}
article p a {
  display: inline-block;
  text-decoration: underline;
  color: indianred;
}
article p img {
  display: inline-block;
  vertical-align: middle;
}
article iframe {
  width: 100%;
  height: 445px;
}
@media screen and (max-width: 800px) {
  article iframe {
    height: 240px;
  }
}
article .is-style-external-link .wp-block-button__link {
  padding: 0;
  font-size: 16px;
  font-weight: bold;
  color: #017dba;
  background: transparent;
  text-decoration: underline;
}
article .is-style-external-link .wp-block-button__link:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 12px;
  background: url(../images/icon_dl_blue.svg);
  background-size: contain;
  margin-left: 13px;
}
article img {
  margin: 30px 0;
}
article table td {
  border-color: #dcdcdc !important;
}
article .wp-block-file a {
  font-size: 1.6rem;
  font-weight: bold;
  color: #017dba;
  text-decoration: underline;
}
article .wp-block-file a:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 12px;
  background: url(../images/icon_dl_blue.svg);
  background-size: contain;
  margin-left: 13px;
}
article .wp-block-flexible-table-block-table td,
article .wp-block-flexible-table-block-table th {
  border-color: rgba(0, 0, 0, 0.34) !important;
}
article .wp-block-flexible-table-block-table th {
  background-color: rgb(255, 205, 196) !important;
  font-weight: 400;
}
article .wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  background: unset;
  color: #000000;
  bottom: -6px;
}
article .wp-block-image figcaption {
  font-size: 1.3rem;
  text-align: center;
  margin-top: -20px;
}
article .has-background {
  padding: 20px;
}
article .has-orange-background-color {
  background-color: #ff5f41;
}
article .has-blue-background-color {
  background-color: #017dba;
}
article .has-lightblue-background-color {
  background-color: #b0c3d3;
}
article .has-white-background-color {
  background-color: #ffffff;
}
article .has-black-background-color {
  background-color: #000000;
}
article .has-orange-color {
  color: #ff5f41;
}
article .has-blue-color {
  color: #017dba;
}
article .has-lightblue-color {
  color: #b0c3d3;
}
article .has-black-color {
  color: #000000;
}
article .has-white-color {
  color: #ffffff;
}

.single-common h2 {
  background: #f8f8f8;
  padding: 13px 24px;
  border-bottom: 3px solid #ff5f41;
  font-size: 20px;
  font-weight: 600;
}/*# sourceMappingURL=style.css.map */