@charset "UTF-8";
:root {
  --font_family: "Noto Sans JP", sans-serif;
  --en_font_family: "Montserrat", sans-serif;
  --main_color: #FFB420;
  --base_color: #FFFBF2;
  --accent_color: #145983;
  --light_blue_color:#E1F2FC;
  --sub_color: #FFF785;
  --white: #FFFFFF;
  --blue: #2D80B3;
  --orange: #F27F1B;
  --green: #11A66F;
  --yellowgreen: #76D34E;
  --purple: #916BDB;
  --pink: #E482B5;
  --red: #E25143;
  --brown: #9C6721;
  --yellow: #FFEF0C;
  --skyblue: #33AFB9;
  --box_shadow: 2px 2px 10px rgba(47, 150, 173, .3);
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

ul, ol {
  list-style: none;
}

a {
  color: var(--accent_color);
  text-decoration: none;
}

button,
input {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

* {
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100svw;
  width: 100vw;
  font-family: var(--font_family);
  font-size: 1.8rem;
  font-weight: 500;
  overflow-x: hidden;
}
body.on {
  overflow-y: hidden;
  height: 100svh;
}
@media screen and (max-width: 960px) {
  body {
    min-width: 960px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 750px) {
  body {
    font-size: 4.2666666667vw;
    min-width: 0;
  }
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 750px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/* #floating_header */
#floating_header {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 90px;
  box-sizing: border-box;
  background: var(--white);
  z-index: 1001;
  box-shadow: 0 2px 0 rgba(230, 158, 0, 0.5);
  transform: translateY(-90px);
  transition: opacity 0.5s, transform 0.3s;
}
#floating_header.on {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
#floating_header #header_logo {
  max-width: 410px;
  margin-left: 40px;
}
#floating_header ul {
  display: flex;
  justify-content: flex-end;
}
#floating_header ul li {
  width: 90px;
  height: 90px;
  border-left: 1px solid var(--blue);
}
#floating_header ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 13px;
  transition: background-color 0.5s;
}
#floating_header ul li a:hover {
  background-color: var(--light_blue_color);
}
#floating_header ul li a img {
  max-width: 40px;
  height: 40px;
  margin-bottom: 5px;
}
#floating_header ul li:not(:first-child) a {
  font-family: var(--en_font_family);
  font-size: 15px;
}
#floating_header ul #btn_menu {
  background: var(--blue);
  cursor: pointer;
  transition: background-color 0.5s;
}
#floating_header ul #btn_menu a {
  color: var(--white);
}
#floating_header ul #btn_menu a:hover {
  background-color: #3C9CD6;
}
#floating_header ul #btn_menu a div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
}
#floating_header ul #btn_menu a div span {
  display: block;
  width: 40px;
  height: 4px;
  background: var(--white);
  transition: opacity 0.3s;
}
#floating_header ul #btn_menu a div::before, #floating_header ul #btn_menu a div::after {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  background: var(--white);
  transition: transform 0.3s;
}
#floating_header ul #btn_menu.on a div span {
  opacity: 0;
}
#floating_header ul #btn_menu.on a div::before {
  transform: rotate(-45deg) translate(-10px, 10px);
}
#floating_header ul #btn_menu.on a div::after {
  transform: rotate(45deg) translate(-9px, -10px);
}
@media screen and (max-width: 1023px) {
  #floating_header {
    position: relative;
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }
}
@media screen and (max-width: 750px) {
  #floating_header {
    height: 16vw;
    padding: 2.6666666667vw;
    justify-content: center;
    z-index: 1;
  }
  #floating_header #header_logo {
    width: 72vw;
    margin-left: 0;
  }
  #floating_header ul {
    display: none;
  }
}

#btn_search {
  display: flex;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  transition: width 0.5s;
}
#btn_search.on {
  width: 300px;
}
#btn_search a {
  min-width: 90px;
  height: 90px;
  width: 90px !important;
}
#btn_search .search-box {
  margin-top: 0 !important;
}

/* g_nav */
#g_nav {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  padding: 90px 40px 50px;
  width: 100%;
  height: 100svh;
  box-sizing: border-box;
  background: var(--base_color);
  z-index: 1000;
  transition: opacity 0.3s;
  overflow-y: scroll;
}
#g_nav #btn_close {
  display: none;
}
#g_nav.on {
  opacity: 1;
  pointer-events: all;
}
#g_nav .wrap {
  max-width: none;
}
#g_nav .wrap > ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: space-between;
  gap: 40px 60px;
  max-width: 1460px;
  margin: 0 auto;
  padding-top: 50px;
  padding-left: 0;
}
#g_nav .wrap > ul > li:nth-child(1) {
  grid-column: 1/2;
  grid-row: 1/4;
}
#g_nav .wrap > ul > li:nth-child(2) {
  grid-column: 2/3;
  grid-row: 1/4;
}
#g_nav .wrap > ul > li:nth-child(3) {
  grid-column: 3/4;
  grid-row: 1/4;
}
#g_nav .wrap > ul > li:nth-child(4) {
  grid-column: 4/5;
  grid-row: 1/2;
}
#g_nav .wrap > ul > li:nth-child(5) {
  grid-column: 4/5;
  grid-row: 2/3;
}
#g_nav .wrap > ul > li:nth-child(6) {
  grid-column: 1/2;
  grid-row: 4/5;
}
#g_nav .wrap > ul > li:nth-child(7) {
  grid-column: 2/3;
  grid-row: 4/5;
}
#g_nav .wrap > ul > li:nth-child(8) {
  grid-column: 3/4;
  grid-row: 4/5;
}
#g_nav .wrap > ul > li:nth-child(9) {
  grid-column: 4/5;
  grid-row: 4/5;
}
#g_nav .wrap > ul > li > a {
  position: relative;
  display: block;
  padding: 10px;
  color: var(--white);
  background: var(--main_color) url(../img/icon_arrow_orange.svg) no-repeat right 10px center;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, calc(100% - 10px) 100%, 10px 100%, 0 100%, 0 0);
  transition: background-color 0.5s;
}
#g_nav .wrap > ul > li > a:hover {
  background-color: var(--blue);
}
#g_nav .wrap > ul > li > a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
#g_nav .wrap > ul ul {
  margin-top: 5px;
}
#g_nav .wrap > ul ul li a {
  display: block;
  display: block;
  padding: 8px 30px 8px 10px;
  font-size: 1.5rem;
  border-radius: 6px;
  background: url(../img/icon_arrow_orange.svg) no-repeat right 10px center;
  transition: background-color 0.3s, color 0.3s;
}
#g_nav .wrap > ul ul li a:hover {
  background-color: var(--light_blue_color);
}
@media screen and (max-width: 750px) {
  #g_nav {
    width: 84vw;
    padding: 0;
    z-index: 1010;
  }
  #g_nav #btn_close {
    display: block;
    width: 16vw;
    height: 16vw;
    margin-left: auto;
    background: url(../img/btn_menu_close.svg) no-repeat center;
    background-size: auto 100%;
    cursor: pointer;
  }
  #g_nav .wrap {
    gap: 4vw;
    padding: 4vw;
    grid-template-columns: repeat(1, 1fr);
  }
  #g_nav .wrap .box .title {
    cursor: pointer;
  }
  #g_nav .wrap .box .title a {
    pointer-events: none;
  }
  #g_nav .wrap .box .title a span {
    font-size: 4.8vw;
    background: url(../img/icon_plus_minus.svg) no-repeat top right;
    background-size: auto 200%;
    overflow: hidden;
  }
  #g_nav .wrap .box .title.on span {
    background-position: bottom right;
  }
  #g_nav .wrap .box .title.mb30 {
    margin-bottom: 4vw !important;
  }
  #g_nav .wrap .box ul {
    display: none;
    padding: 0 1.3333333333vw;
    margin-top: 2.6666666667vw;
  }
  #g_nav .wrap .box ul li {
    margin-bottom: 2.6666666667vw;
  }
  #g_nav .wrap .box ul li a {
    font-size: 4.2666666667vw;
  }
}

.no_accordion a {
  pointer-events: all !important;
}
.no_accordion a span {
  background: url(../img/icon_arrow_orange.svg) no-repeat right 3.4666666667vw center !important;
}

/* contents_wrap */
.contents_wrap {
  position: relative;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 100px 40px 0;
  gap: 60px;
  z-index: 10;
}
.contents_wrap .left_contents {
  width: 100%;
  max-width: 1000px;
  min-width: 600px;
}
.contents_wrap .left_contents section {
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .contents_wrap {
    padding: 0 20px;
  }
  .contents_wrap .left_contents section {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 750px) {
  .contents_wrap {
    position: static;
    padding: 0 5.3333333333vw;
  }
  .contents_wrap .left_contents {
    min-width: 0;
  }
  .contents_wrap .left_contents section {
    margin-bottom: 21.3333333333vw;
  }
}

.icon_find {
  display: flex;
  align-items: center;
  font-size: 4rem;
  color: var(--blue);
  gap: 30px;
  margin-bottom: 30px;
  font-weight: 600;
}
.icon_find img {
  width: 100px;
  aspect-ratio: 1;
}
.icon_find span {
  position: relative;
}
.icon_find span::before {
  content: "";
  position: absolute;
  left: -5px;
  bottom: 0;
  display: block;
  width: calc(100% + 10px);
  height: 24px;
  background: var(--sub_color);
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .icon_find {
    gap: 20px;
    font-size: 3rem;
    margin-bottom: 20px;
  }
  .icon_find img {
    width: 70px;
  }
  .icon_find span::before {
    height: 16px;
  }
}
@media screen and (max-width: 750px) {
  .icon_find {
    flex-direction: column;
    font-size: 7.4666666667vw;
    gap: 4vw;
    margin-bottom: 8vw;
  }
  .icon_find img {
    width: 18.6666666667vw;
  }
  .icon_find span::before {
    left: -2.6666666667vw;
    width: calc(100% + 5.3333333333vw);
    height: 5.3333333333vw;
  }
}

.w1000 {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
}

.border_check_box {
  border: 4px solid var(--main_color);
  border-radius: 10px;
  box-sizing: border-box;
  padding: 40px 30px;
  background: url(../img/backimg_orange_check.svg) repeat center;
  background-size: 21px auto;
}
@media screen and (max-width: 960px) {
  .border_check_box {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 750px) {
  .border_check_box {
    border-radius: 2.6666666667vw;
    padding: 8vw 5.3333333333vw;
  }
}

.flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .flex {
    flex-direction: column;
  }
}

.gap30 {
  gap: 30px;
}
@media screen and (max-width: 960px) {
  .gap30 {
    gap: 20px;
  }
}
@media screen and (max-width: 750px) {
  .gap30 {
    gap: 8vw;
  }
}

.gap10 {
  gap: 10px;
}
@media screen and (max-width: 750px) {
  .gap10 {
    gap: 2.6666666667vw;
  }
}

.column {
  flex-direction: column;
  align-items: center;
}

.shadow {
  box-shadow: 5px 5px 0px #FFD80C;
  transition: box-shadow 0.3s, transform 0.3s;
}

.radius5 {
  border-radius: 5px;
}
@media screen and (max-width: 750px) {
  .radius5 {
    border-radius: 1.3333333333vw;
  }
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

/* bnr_list */
.bnr_list a:hover .shadow {
  box-shadow: none;
  transform: translate(5px, 5px);
}

/* link_line */
.btn_line span {
  position: relative;
}
.btn_line span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--accent_color);
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.5s;
}
.btn_line:hover span::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

/* btn_basic */
.btn_basic {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 260px;
  min-height: 70px;
  margin: 0 auto;
  font-size: 2rem;
  font-weight: 600;
  color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 100px;
  background: #fff;
  box-shadow: 2px 4px 0px rgba(45, 128, 179, 0.2);
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.btn_basic:hover {
  background-color: var(--light_blue_color);
  transform: translate(2px, 4px);
  box-shadow: none;
}
@media screen and (max-width: 960px) {
  .btn_basic {
    font-size: 1.8rem;
    width: 240px;
    min-height: 60px;
  }
}
@media screen and (max-width: 750px) {
  .btn_basic {
    width: 59.2vw;
    min-height: 16vw;
    font-size: 4.8vw;
  }
}

/* event_list */
.event_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.event_list li {
  overflow: hidden;
  border: 2px solid #fff;
  background: var(--white);
}
.event_list li:hover {
  box-shadow: none;
  transform: translate(5px, 5px);
}
.event_list li a {
  display: flex;
  align-items: stretch;
  min-height: 150px;
}
.event_list li a .day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 10px;
  font-family: var(--en_font_family);
  background: var(--blue);
  color: var(--white);
}
.event_list li a .day strong {
  font-size: 4rem;
  font-weight: 600;
}
.event_list li a .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
}
.event_list li a .title p {
  margin-bottom: 0.5em;
}
.event_list li a .title span {
  display: flex;
  font-size: 1.6rem;
  gap: 20px;
}
.event_list li a .title span::after {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 1;
  background: url(../img/icon_arrow_orange.svg) no-repeat right center;
  background-size: 100% auto;
}
@media screen and (max-width: 960px) {
  .event_list li a .day strong {
    font-size: 3rem;
  }
  .event_list li a .title {
    padding: 10px 15px;
  }
  .event_list li a .title p {
    margin-bottom: 1em;
  }
  .event_list li a .title span {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 750px) {
  .event_list {
    grid-template-columns: repeat(1, 1fr);
  }
  .event_list li a .day {
    min-width: 2.6666666667vw;
  }
  .event_list li a .day strong {
    font-size: 7.4666666667vw;
  }
  .event_list li a .day span {
    font-size: 3.7333333333vw;
  }
  .event_list li a .title {
    padding: 4.2666666667vw;
  }
  .event_list li a .title span {
    font-size: 3.7333333333vw;
  }
}

/* footer */
footer {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 160px 6.25svw;
  z-index: 0;
}
footer::before, footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: transform 1s ease-in-out;
}
footer::before {
  background: url(../img/img_orange_4.svg) no-repeat left top 5svw;
  background-size: cover;
  transform-origin: right top;
}
footer::after {
  background: url(../img/img_orange_5.svg) no-repeat left top;
  background-size: cover;
  transform-origin: left top;
}
footer .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  max-width: 960px;
}
footer h3 {
  flex: 100%;
  font-size: 4.8rem;
  font-weight: 500;
  color: var(--accent_color);
  margin-bottom: 150px;
}
footer .left {
  color: var(--white);
}
footer .left .footer_logo {
  max-width: 500px;
  margin-bottom: 40px;
}
footer .left p {
  margin-bottom: 12px;
}
footer .left .copyright {
  margin-top: 60px;
}
footer .sns {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 312px;
}
footer .sns strong {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 30px;
  color: var(--white);
}
footer .sns strong::before, footer .sns strong::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  margin: auto 0;
  width: 15px;
  height: 2px;
  background: var(--white);
}
footer .sns strong::before {
  left: 0;
  transform: rotate(70deg);
}
footer .sns strong::after {
  right: 0;
  transform: rotate(-70deg);
}
footer .sns ul {
  display: flex;
  gap: 20px;
}
footer .sns ul li {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid var(--yellow);
  background: var(--white);
}
footer .sns ul li a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-family: var(--en_font_family);
  font-size: 1.4rem;
}
footer .sns ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: inherit;
  border-radius: 50%;
  background: var(--light_blue_color);
  transform: scale(0);
  transition: transform 0.5s;
}
footer .sns ul li a:hover::before {
  transform: scale(1);
}
footer .sns ul li a span {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}
footer .sns ul li a span:first-child {
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
}
footer .sns ul li a span img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 750px) {
  footer {
    padding: 26.6666666667vw 5.3333333333vw 21.3333333333vw;
  }
  footer::before {
    background: url(../img/img_orange_4_sp.png) no-repeat left top 5%;
    background-size: 100% auto;
  }
  footer::after {
    background: url(../img/img_orange_5_sp.png) no-repeat left top;
    background-size: 100% 100%;
  }
  footer h3 {
    order: 1;
    font-size: 6.4vw;
    margin-bottom: 16vw;
    text-align: center;
  }
  footer .left {
    order: 3;
  }
  footer .left .footer_logo {
    width: 74.6666666667vw;
    margin-bottom: 8vw;
  }
  footer .left p {
    margin-bottom: 2.6666666667vw;
  }
  footer .left .copyright {
    margin-top: 10.6666666667vw;
  }
  footer .sns {
    order: 2;
    width: 74.6666666667vw;
    margin: 0 auto 13.3333333333vw;
  }
  footer .sns strong {
    margin-bottom: 6.6666666667vw;
  }
  footer .sns strong::before, footer .sns strong::after {
    width: 15px;
    height: 2px;
  }
  footer .sns ul {
    gap: 5.3333333333vw;
  }
  footer .sns ul li {
    width: 32vw;
    height: 32vw;
  }
  footer .sns ul li a {
    font-size: 3.7333333333vw;
  }
  footer .sns ul li a span:first-child {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
    margin-bottom: 1.3333333333vw;
  }
}

/* sp_footer_menu */
#sp_footer_menu {
  display: none;
}

@media screen and (max-width: 750px) {
  #sp_footer_menu {
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100svw;
    height: 18.6666666667vw;
    background: var(--white);
    border: 1px solid var(--accent_color);
    box-sizing: border-box;
    z-index: 100;
  }
  #sp_footer_menu ul {
    height: inherit;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
  #sp_footer_menu ul li {
    border-right: 1px solid var(--accent_color);
    box-sizing: border-box;
    cursor: pointer;
  }
  #sp_footer_menu ul li:last-child {
    border-right: none;
  }
  #sp_footer_menu ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5333333333vw;
    width: 100%;
    height: 100%;
    color: var(--blue);
    font-size: 2.9333333333vw;
  }
  #sp_footer_menu ul li a img {
    width: 9.3333333333vw;
    height: auto;
  }
}
/* 検索ボックス */
.search-box {
  position: relative;
  display: block;
  max-width: 160px;
  height: 40px;
  box-sizing: border-box;
  padding-left: 45px;
  background: #F4F4F4;
  border-radius: 5px;
  margin: 4.329004329svh auto 0;
  overflow: hidden;
}
.search-box .search-submit {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
  cursor: pointer;
  transition: background-color 0.3s;
}
.search-box .search-submit span {
  color: var(--accent_color);
}
.search-box .search-submit:hover {
  background: var(--sub_color);
}
.search-box input {
  width: 100%;
  height: 40px;
}
.search-box input::-moz-placeholder {
  color: var(--accent_color);
  opacity: 0.7;
}
.search-box input::placeholder {
  color: var(--accent_color);
  opacity: 0.7;
}
@media screen and (max-height: 680px) {
  .search-box .search-box {
    margin-top: 0;
  }
}

.sidebar .search-box {
  height: 50px;
}
.sidebar .search-box .search-submit,
.sidebar .search-box input {
  height: 50px;
  font-size: 1.6rem;
}

/* ウィジェットサイドバー */
#sidebar,
#slide-in-sidebar {
  width: 100%;
  max-width: 290px;
}
#sidebar .search-box,
#slide-in-sidebar .search-box {
  max-width: 100%;
}
#sidebar .textwidget #side_sns,
#sidebar .textwidget #slide-in-side_sns,
#slide-in-sidebar .textwidget #side_sns,
#slide-in-sidebar .textwidget #slide-in-side_sns {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-left: 0;
}
#sidebar .textwidget #side_sns li,
#sidebar .textwidget #slide-in-side_sns li,
#slide-in-sidebar .textwidget #side_sns li,
#slide-in-sidebar .textwidget #slide-in-side_sns li {
  list-style: none;
}
#sidebar .textwidget #side_sns li a,
#sidebar .textwidget #slide-in-side_sns li a,
#slide-in-sidebar .textwidget #side_sns li a,
#slide-in-sidebar .textwidget #slide-in-side_sns li a {
  position: relative;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 50%;
  box-sizing: border-box;
  border: 2px solid #FFD80C;
  transition: background-color 0.5s;
  text-decoration: none;
  overflow: hidden;
}
#sidebar .textwidget #side_sns li a::before,
#sidebar .textwidget #slide-in-side_sns li a::before,
#slide-in-sidebar .textwidget #side_sns li a::before,
#slide-in-sidebar .textwidget #slide-in-side_sns li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: inherit;
  border-radius: 50%;
  background: var(--light_blue_color);
  transform: scale(0);
  transition: transform 0.5s;
  z-index: -1;
}
#sidebar .textwidget #side_sns li a:hover::before,
#sidebar .textwidget #slide-in-side_sns li a:hover::before,
#slide-in-sidebar .textwidget #side_sns li a:hover::before,
#slide-in-sidebar .textwidget #slide-in-side_sns li a:hover::before {
  transform: scale(1);
}
#sidebar .textwidget #side_sns li a img,
#sidebar .textwidget #slide-in-side_sns li a img,
#slide-in-sidebar .textwidget #side_sns li a img,
#slide-in-sidebar .textwidget #slide-in-side_sns li a img {
  width: 30px;
  height: auto;
}
#sidebar .textwidget #side_sns li a span,
#sidebar .textwidget #slide-in-side_sns li a span,
#slide-in-sidebar .textwidget #side_sns li a span,
#slide-in-sidebar .textwidget #slide-in-side_sns li a span {
  position: relative;
  font-family: var(--en_font_family);
  font-size: 1.4rem;
  z-index: 2;
}
#sidebar .textwidget #side_sns li:first-child a img,
#sidebar .textwidget #slide-in-side_sns li:first-child a img,
#slide-in-sidebar .textwidget #side_sns li:first-child a img,
#slide-in-sidebar .textwidget #slide-in-side_sns li:first-child a img {
  width: 40px;
}
@media screen and (max-width: 750px) {
  #sidebar .textwidget #side_sns li a,
  #sidebar .textwidget #slide-in-side_sns li a,
  #slide-in-sidebar .textwidget #side_sns li a,
  #slide-in-sidebar .textwidget #slide-in-side_sns li a {
    width: 100px;
    height: 100px;
  }
  #sidebar .textwidget #side_sns li a img,
  #sidebar .textwidget #slide-in-side_sns li a img,
  #slide-in-sidebar .textwidget #side_sns li a img,
  #slide-in-sidebar .textwidget #slide-in-side_sns li a img {
    width: 20px;
  }
  #sidebar .textwidget #side_sns li:first-child a img,
  #sidebar .textwidget #slide-in-side_sns li:first-child a img,
  #slide-in-sidebar .textwidget #side_sns li:first-child a img,
  #slide-in-sidebar .textwidget #slide-in-side_sns li:first-child a img {
    width: 35px;
  }
}
#sidebar .textwidget p,
#slide-in-sidebar .textwidget p {
  padding: 0 10px;
}
#sidebar .textwidget p a,
#slide-in-sidebar .textwidget p a {
  position: relative;
  display: block;
  padding: 15px 10px 20px;
  transition: background-color 0.5s;
  border-bottom: 2px dashed #FFD80C;
}
#sidebar .textwidget p a::before,
#slide-in-sidebar .textwidget p a::before {
  content: "";
  opacity: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: calc(100% - 10px);
  top: 5px;
  left: 0;
  border-radius: 10px;
  background-color: var(--sub_color);
  z-index: -1;
  transition: opacity 0.5s;
}
#sidebar .textwidget p a:hover::before,
#slide-in-sidebar .textwidget p a:hover::before {
  opacity: 1;
}
#sidebar .textwidget p a:hover strong,
#slide-in-sidebar .textwidget p a:hover strong {
  text-decoration: none;
}
#sidebar .textwidget p a .icon,
#slide-in-sidebar .textwidget p a .icon {
  padding: 0 8px;
  font-size: 1.4rem;
  border-radius: 5px;
  color: #fff;
}
#sidebar .textwidget p a .icon.orange,
#slide-in-sidebar .textwidget p a .icon.orange {
  background: var(--orange);
}
#sidebar .textwidget p a .icon.blue,
#slide-in-sidebar .textwidget p a .icon.blue {
  background: var(--blue);
}
#sidebar .textwidget p a .icon.skyblue,
#slide-in-sidebar .textwidget p a .icon.skyblue {
  background: var(--skyblue);
}
#sidebar .textwidget p a .icon.green,
#slide-in-sidebar .textwidget p a .icon.green {
  background: var(--green);
}
#sidebar .textwidget p a .icon.yellowgreen,
#slide-in-sidebar .textwidget p a .icon.yellowgreen {
  background: var(--yellow);
}
#sidebar .textwidget p a .icon.pink,
#slide-in-sidebar .textwidget p a .icon.pink {
  background: var(--pink);
}
#sidebar .textwidget p a .icon.purple,
#slide-in-sidebar .textwidget p a .icon.purple {
  background: var(--purple);
}
#sidebar .textwidget p a .icon.red,
#slide-in-sidebar .textwidget p a .icon.red {
  background: var(--red);
}
#sidebar .textwidget p a .icon.brown,
#slide-in-sidebar .textwidget p a .icon.brown {
  background: var(--brown);
}
#sidebar .textwidget p a strong,
#slide-in-sidebar .textwidget p a strong {
  display: block;
  margin-top: 0.5em;
  text-decoration: underline;
}
#sidebar #cc_footercontact_widget-2 h2,
#sidebar #slide-in-cc_footercontact_widget-2 h2,
#sidebar .widget-sidebar-title,
#slide-in-sidebar #cc_footercontact_widget-2 h2,
#slide-in-sidebar #slide-in-cc_footercontact_widget-2 h2,
#slide-in-sidebar .widget-sidebar-title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 2.8rem;
  font-weight: 500;
  margin-top: 50px;
  padding-bottom: 12px;
  color: var(--blue);
  border-bottom: 2px solid var(--main_color);
}
#sidebar #cc_footercontact_widget-2 h2 img,
#sidebar #slide-in-cc_footercontact_widget-2 h2 img,
#sidebar .widget-sidebar-title img,
#slide-in-sidebar #cc_footercontact_widget-2 h2 img,
#slide-in-sidebar #slide-in-cc_footercontact_widget-2 h2 img,
#slide-in-sidebar .widget-sidebar-title img {
  width: 30px;
  height: auto;
}
#sidebar .widget_calendar,
#slide-in-sidebar .widget_calendar {
  margin: 40px 0 0;
  padding: 0 10px;
}
#sidebar .widget_calendar table,
#slide-in-sidebar .widget_calendar table {
  width: 100%;
  font-size: 1.6rem;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 10px;
}
#sidebar .widget_calendar table caption,
#slide-in-sidebar .widget_calendar table caption {
  font-size: 1.6rem;
  color: var(--accent_color);
  margin-bottom: 5px;
}
#sidebar .widget_calendar table thead tr th,
#slide-in-sidebar .widget_calendar table thead tr th {
  height: 36px;
  background: #FFF6D9;
  font-weight: 500;
  color: var(--main_color);
  border-right: 1px solid #FFD80C;
  border-bottom: 1px solid #FFD80C;
}
#sidebar .widget_calendar table thead tr th:last-child,
#slide-in-sidebar .widget_calendar table thead tr th:last-child {
  border-right: none;
}
#sidebar .widget_calendar table tbody,
#slide-in-sidebar .widget_calendar table tbody {
  color: var(--accent_color);
  text-align: center;
  font-weight: 400;
}
#sidebar .widget_calendar table tbody td,
#slide-in-sidebar .widget_calendar table tbody td {
  height: 35px;
  background: var(--white);
  border-right: 1px solid #FFD80C;
  border-bottom: 1px solid #FFD80C;
}
#sidebar .widget_calendar table tbody td:last-child,
#slide-in-sidebar .widget_calendar table tbody td:last-child {
  border-right: none;
}
#sidebar .widget_calendar table tbody td a,
#slide-in-sidebar .widget_calendar table tbody td a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  background: #fff url(../img/bg_calender_orange.svg) no-repeat center;
  transition: background-color 0.3s;
}
#sidebar .widget_calendar table tbody td a:hover,
#slide-in-sidebar .widget_calendar table tbody td a:hover {
  background-color: var(--main_color);
}
#sidebar .widget_calendar table tbody #today,
#sidebar .widget_calendar table tbody #slide-in-today,
#slide-in-sidebar .widget_calendar table tbody #today,
#slide-in-sidebar .widget_calendar table tbody #slide-in-today {
  color: var(--white);
  background: #fff url(../img/bg_calender_blue.svg) no-repeat center;
}
#sidebar .widget_calendar nav,
#slide-in-sidebar .widget_calendar nav {
  font-size: 1.5rem;
}
#sidebar .widget_calendar nav a,
#slide-in-sidebar .widget_calendar nav a {
  text-decoration: underline;
}
#sidebar ul,
#slide-in-sidebar ul {
  margin-top: 10px;
}
#sidebar ul .cat-item,
#slide-in-sidebar ul .cat-item {
  padding: 0 10px;
}
#sidebar ul .cat-item .children,
#slide-in-sidebar ul .cat-item .children {
  padding-left: 0.5em;
}
#sidebar ul .cat-item .children .cat-item,
#slide-in-sidebar ul .cat-item .children .cat-item {
  display: flex;
  align-items: center;
  padding: 0;
}
#sidebar ul .cat-item .children .cat-item::before,
#slide-in-sidebar ul .cat-item .children .cat-item::before {
  content: "└";
  color: var(--accent_color);
}
#sidebar ul .cat-item a,
#slide-in-sidebar ul .cat-item a {
  display: block;
  padding: 10px 30px 10px 10px;
  font-size: 1.6rem;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
  background: url(../img/icon_arrow_orange.svg) no-repeat right 10px center;
  transition: background-color 0.5s, color 0.3s;
}
#sidebar ul .cat-item a:hover,
#slide-in-sidebar ul .cat-item a:hover {
  background-color: var(--light_blue_color);
}
#sidebar #cc_footercontact_widget-2 address,
#sidebar #slide-in-cc_footercontact_widget-2 address,
#slide-in-sidebar #cc_footercontact_widget-2 address,
#slide-in-sidebar #slide-in-cc_footercontact_widget-2 address {
  font-weight: 500;
  font-size: 1.6rem;
  padding: 10px;
}
@media screen and (max-width: 960px) {
  #sidebar #cc_footercontact_widget-2 h2,
  #sidebar #slide-in-cc_footercontact_widget-2 h2,
  #sidebar .widget-sidebar-title,
  #slide-in-sidebar #cc_footercontact_widget-2 h2,
  #slide-in-sidebar #slide-in-cc_footercontact_widget-2 h2,
  #slide-in-sidebar .widget-sidebar-title {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 1023px) {
  #sidebar {
    display: none;
  }
  #sidebar #btn_side_menu_close {
    width: 16vw;
    height: 16vw;
    margin-left: auto;
    background: url(../img/btn_menu_close.svg) no-repeat center right;
    background-size: auto 100%;
    cursor: pointer;
  }
}
#text-2 h3,
#slide-in-text-2 h3 {
  padding-left: 40px;
  background: url(../img/icon_announce.svg) no-repeat center left;
}

#categories-2 h3,
#slide-in-categories-2 h3 {
  padding-left: 40px;
  background: url(../img/icon_blog.svg) no-repeat center left;
}

/*///////////////////*/
/* SP用　footer_menu */
/*///////////////////*/
.mobile-menu-buttons {
  background: #fff;
  box-shadow: 0 0 5px darkgrey;
  font-size: 19px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  margin: 0;
  list-style: none;
  display: none;
  align-items: center;
  line-height: 1.4;
  min-height: 70px;
  transition: 0.3s;
  border: 1px solid var(--blue);
}

.mobile-menu-buttons .menu-button {
  width: 100%;
  min-height: 100%;
  border-right: 1px solid var(--blue);
}

.mobile-menu-buttons li:last-child {
  border-right: none;
}

.mobile-menu-buttons .menu-icon {
  text-align: center;
  display: block;
  width: 35px;
  height: 35px;
  position: relative;
}

.mobile-menu-buttons .menu-icon span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/icon_sp_footer_menu_1.svg) no-repeat center;
  background-size: 100% auto;
}

.mobile-menu-buttons .menu-icon .fa-home:before {
  background-image: url(../img/icon_sp_footer_menu_2.svg);
}

.mobile-menu-buttons .menu-icon .fa-search:before {
  background-image: url(../img/icon_sp_footer_menu_3.svg);
}

.mobile-menu-buttons .menu-icon .fa-arrow-up:before {
  background-image: url(../img/icon_sp_footer_menu_4.svg);
}

.mobile-menu-buttons .menu-icon .fa-outdent:before {
  background-image: url(../img/icon_sp_footer_menu_5.svg);
}

.mobile-menu-buttons .menu-open.menu-button-in {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile-menu-buttons .menu-caption {
  font-size: 9px;
  text-align: center;
  opacity: 0.8;
  color: var(--blue);
}

.mobile-menu-buttons .menu-button {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.mobile-menu-buttons .menu-button > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  color: #333;
  text-decoration: none;
}

.mobile-menu-buttons .menu-button:hover .menu-button-in {
  opacity: 0.8;
}

.mobile-menu-buttons .ad-area {
  display: none;
}

.mobile-menu-buttons .menu-content {
  cursor: default;
}

.mobile-footer-menu-buttons {
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}

.logo-menu-button {
  text-align: center;
  font-weight: 900;
  line-height: 50px;
  min-width: 200px;
  overflow: hidden;
}

.logo-menu-button img {
  max-height: 44px;
  display: block;
  margin: 0 auto;
}

.fa.menu-icon {
  font: inherit;
}

/*閉じる用の薄黒カバー*/
#navi-menu-close,
#sidebar-menu-close,
#search-menu-close,
#share-menu-close,
#follow-menu-close {
  display: none;
  /*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;
  /*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  transition: 0.3s ease-in-out;
}

/*中身*/
.menu-content {
  overflow: auto;
  position: fixed;
  top: 0;
  z-index: 9999;
  /*最前面に*/
  width: 100%;
  /*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 400px;
  /*最大幅（調整してください）*/
  height: 100%;
  background: #FFFBF2;
  /*背景色*/
  transition: 0.3s ease-in-out;
  /*滑らかに表示*/
  opacity: 1;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
}

/* メニュー一覧 */
.menu-content .menu-drawer {
  padding: 0 1em 30px;
}

.menu-content .sidebar {
  width: 100%;
  display: block;
  margin: 0;
}

.navi-menu-content {
  left: 0;
  transform: translateX(-105%);
}

/* サイドバー一覧 */
.sidebar-menu-content {
  right: 0;
  transform: translateX(105%);
}

#slide-in-sidebar {
  display: block;
  margin: 0 auto 50px;
}

.search-menu-content,
.share-menu-content,
.follow-menu-content {
  transition: 0.3s ease-in-out;
  position: fixed;
  top: 40%;
  z-index: 99;
  width: 90%;
  left: 5%;
  right: 5%;
  transform: translateY(900%);
  opacity: 0;
}

.search-menu-content .search-box {
  max-width: 100%;
}

.search-menu-content .search-edit,
.share-menu-content .search-edit,
.follow-menu-content .search-edit {
  width: 100%;
}

/*チェックが入ったらもろもろ表示*/
#navi-menu-input:checked ~ #navi-menu-close,
#sidebar-menu-input:checked ~ #sidebar-menu-close,
#search-menu-input:checked ~ #search-menu-close,
#share-menu-input:checked ~ #share-menu-close,
#follow-menu-input:checked ~ #follow-menu-close {
  display: block;
  /*カバーを表示*/
  opacity: 0.5;
}

#navi-menu-input:checked ~ #navi-menu-content,
#sidebar-menu-input:checked ~ #sidebar-menu-content,
#search-menu-input:checked ~ #search-menu-content,
#share-menu-input:checked ~ #share-menu-content,
#follow-menu-input:checked ~ #follow-menu-content {
  transition: 0.3s ease-in-out;
  transform: translateX(0%);
  opacity: 1;
}

/* メニュー一覧 */
.menu-drawer > li {
  margin-bottom: 20px;
}

.menu-drawer > li > a {
  display: block;
  padding: 10px 10px 10px 0;
  margin-bottom: 10px;
  color: var(--accent_color);
  border-bottom: 2px solid var(--main_color);
  cursor: pointer;
  background: url(../img/icon_plus_minus.svg) no-repeat top right;
  background-size: auto 200%;
}
.menu-drawer > li > a.on {
  background-position: bottom right;
}

.menu-drawer > li:nth-last-child(-n+2) > a {
  pointer-events: all;
  background: url(../img/icon_arrow_orange.svg) no-repeat right 13px center;
}

.menu-drawer .sub-menu {
  display: none;
}

.menu-drawer .sub-menu li a {
  display: block;
  padding: 10px;
  border-radius: 5px;
  background: url(../img/icon_arrow_orange.svg) no-repeat right 10px center;
  transition: background-color 0.5s;
}

.menu-drawer .sub-menu li a:hover {
  background-color: var(--light_blue_color);
}

.menu-close-button {
  display: block;
  cursor: pointer;
  text-align: center;
  font-size: 2em;
  width: 60px;
  height: 60px;
  margin-bottom: 30px;
  margin-left: auto;
  background: url(../img/btn_menu_close.svg) no-repeat right top;
  background-size: auto 100%;
}
.menu-close-button span {
  display: none;
}

.sidebar-menu-close-button {
  margin-left: 0;
  margin-right: auto;
}

.wpo-collapsible-content,
.display-none {
  display: none;
}

@media screen and (max-width: 1023px) {
  .mobile-menu-buttons {
    display: flex;
    align-items: stretch;
  }
  .mobile-header-menu-buttons {
    top: 0;
    bottom: auto;
    justify-content: space-around;
    min-width: 46px;
    z-index: 3;
    box-shadow: 0 0 5px darkgrey;
  }
  .has-logo-button .menu-button {
    width: 70px;
  }
  .has-logo-button .logo-menu-button {
    flex-grow: 99;
  }
  .no-mobile-sidebar .sidebar,
  .mobile-button-fmb .go-to-top-button,
  .no-mobile-header-logo #header .logo-header {
    display: none;
  }
  .mblt-header-mobile-buttons {
    margin-top: 46px;
  }
  .mblt-footer-mobile-buttons {
    margin-bottom: 50px;
  }
  .mblt-header-and-footer-mobile-buttons {
    margin-top: 46px;
    margin-bottom: 50px;
  }
  .scrollable-mobile-buttons {
    margin-bottom: 0;
  }
  .navi-footer-in > .menu-footer {
    justify-content: center;
  }
  .footer-bottom.fdt-left-and-right .footer-bottom-content {
    flex-direction: column;
  }
  .mblt-footer-mobile-buttons .go-to-top-button,
  .mblt-header-and-footer-mobile-buttons .go-to-top-button {
    display: none;
  }
  .mblt-header-mobile-buttons .menu-pc {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .menu-content {
    max-width: 84%;
  }
}
/* font-size / color */
.fs110 {
  font-size: 110% !important;
}

.fs120 {
  font-size: 120% !important;
}

.fs130 {
  font-size: 130% !important;
}

.fs140 {
  font-size: 140% !important;
}

.fs150 {
  font-size: 150% !important;
}

.fs160 {
  font-size: 160% !important;
}

.fs170 {
  font-size: 170% !important;
}

.fs180 {
  font-size: 180% !important;
}

.fs190 {
  font-size: 190% !important;
}

.fs200 {
  font-size: 200% !important;
}

.c_red {
  color: var(--red) !important;
}

.c_blue {
  color: var(--blue) !important;
}

.c_skyblue {
  color: var(--skyblue) !important;
}

.c_green {
  color: var(--green) !important;
}

.c_yellow {
  color: var(--yellow) !important;
}

.c_orange {
  color: var(--orange) !important;
}

.c_purple {
  color: var(--purple) !important;
}

.c_pink {
  color: var(--pink) !important;
}

.c_brown {
  color: var(--brown) !important;
}/*# sourceMappingURL=styles.css.map */