@charset "UTF-8";
/* -----------------------------------
リセットCSS
基本的には触らないでください
----------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDGothic:wght@400;700&family=Montserrat:wght@700&display=swap");
input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
  -webkit-text-size-adjust 100%;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

ol,
ul {
  list-style: none;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
img,
p {
  margin: 0;
  padding: 0;
}

hr {
  border: none;
  height: 1px;
  background: #D1D1D4;
  margin: 2em auto;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
p {
  line-height: 1.6em;
}

/* -----------------------------------
ベース設定
----------------------------------- */
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  background-color: #FAFBFB;
  color: #000000;
  font-family: "BIZ UDGothic", sans-serif;
  padding: 0;
  margin: 0;
  position: relative;
}

/* つけるとスマホでしか表示されなくなるクラス */
.only-phone {
  display: inline-block;
}
@media (min-width: 500px) {
  .only-phone {
    display: none;
  }
}

/* つけるとタブレットでしか表示されなくなるクラス */
.only-pad {
  display: none;
}
@media (min-width: 500px) {
  .only-pad {
    display: inline-block;
  }
}
@media (min-width: 768px) {
  .only-pad {
    display: none;
  }
}

/* つけるとPCでしか表示されなくなるクラス */
.only-pc {
  display: none;
}
@media (min-width: 768px) {
  .only-pc {
    display: inline-block;
  }
}

/* つけるとPCで見たときだけ表示されなくなるクラス */
.except-pc {
  display: inline-block;
}
@media (min-width: 768px) {
  .except-pc {
    display: none;
  }
}

section {
  padding: 60px 0;
}
section#information {
  overflow: hidden;
}

.color-white,
.color-yellow {
  display: none;
}

/* -----------------------------------
Flexbox設定
----------------------------------- */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 13px;
  padding-left: 13px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) and (max-width: 1029px) {
  .container {
    max-width: 750px;
  }
}
@media (min-width: 1030px) {
  .container {
    max-width: 980px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1050px;
  }
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex-reverse {
  flex-direction: row-reverse;
}

.flex-center {
  justify-content: center;
}

.center {
  text-align: center;
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.sp-mt10 {
  display: block;
  margin-top: 10px !important;
}
@media (min-width: 768px) {
  .sp-mt10 {
    margin-top: 0 !important;
  }
}

.mt20 {
  margin-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.sp-mt20 {
  display: block;
  margin-top: 20px !important;
}
@media (min-width: 768px) {
  .sp-mt20 {
    margin-top: 0 !important;
  }
}

.mt30 {
  margin-top: 30px !important;
}

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

.sp-mt30 {
  display: block;
  margin-top: 30px !important;
}
@media (min-width: 768px) {
  .sp-mt30 {
    margin-top: 0 !important;
  }
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.sp-mt40 {
  display: block;
  margin-top: 40px !important;
}
@media (min-width: 768px) {
  .sp-mt40 {
    margin-top: 0 !important;
  }
}

.mt50 {
  margin-top: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.sp-mt50 {
  display: block;
  margin-top: 50px !important;
}
@media (min-width: 768px) {
  .sp-mt50 {
    margin-top: 0 !important;
  }
}

.mt60 {
  margin-top: 60px !important;
}

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

.sp-mt60 {
  display: block;
  margin-top: 60px !important;
}
@media (min-width: 768px) {
  .sp-mt60 {
    margin-top: 0 !important;
  }
}

.mt70 {
  margin-top: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.sp-mt70 {
  display: block;
  margin-top: 70px !important;
}
@media (min-width: 768px) {
  .sp-mt70 {
    margin-top: 0 !important;
  }
}

.mt80 {
  margin-top: 80px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.sp-mt80 {
  display: block;
  margin-top: 80px !important;
}
@media (min-width: 768px) {
  .sp-mt80 {
    margin-top: 0 !important;
  }
}

.mt90 {
  margin-top: 90px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.sp-mt90 {
  display: block;
  margin-top: 90px !important;
}
@media (min-width: 768px) {
  .sp-mt90 {
    margin-top: 0 !important;
  }
}

.mt100 {
  margin-top: 100px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.sp-mt100 {
  display: block;
  margin-top: 100px !important;
}
@media (min-width: 768px) {
  .sp-mt100 {
    margin-top: 0 !important;
  }
}

.mt110 {
  margin-top: 110px !important;
}

.mb110 {
  margin-bottom: 110px !important;
}

.sp-mt110 {
  display: block;
  margin-top: 110px !important;
}
@media (min-width: 768px) {
  .sp-mt110 {
    margin-top: 0 !important;
  }
}

.mt120 {
  margin-top: 120px !important;
}

.mb120 {
  margin-bottom: 120px !important;
}

.sp-mt120 {
  display: block;
  margin-top: 120px !important;
}
@media (min-width: 768px) {
  .sp-mt120 {
    margin-top: 0 !important;
  }
}

.mt130 {
  margin-top: 130px !important;
}

.mb130 {
  margin-bottom: 130px !important;
}

.sp-mt130 {
  display: block;
  margin-top: 130px !important;
}
@media (min-width: 768px) {
  .sp-mt130 {
    margin-top: 0 !important;
  }
}

.mt140 {
  margin-top: 140px !important;
}

.mb140 {
  margin-bottom: 140px !important;
}

.sp-mt140 {
  display: block;
  margin-top: 140px !important;
}
@media (min-width: 768px) {
  .sp-mt140 {
    margin-top: 0 !important;
  }
}

.mt150 {
  margin-top: 150px !important;
}

.mb150 {
  margin-bottom: 150px !important;
}

.sp-mt150 {
  display: block;
  margin-top: 150px !important;
}
@media (min-width: 768px) {
  .sp-mt150 {
    margin-top: 0 !important;
  }
}

.mt0 {
  margin-top: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.col-lg1,
.col-md1,
.col-sm1,
.col-xl1 {
  width: 100%;
  margin-bottom: 40px;
}

.col-lg2,
.col-md2,
.col-sm2,
.col-xl2 {
  width: 100%;
  margin-bottom: 40px;
}

.col-lg3,
.col-md3,
.col-sm3,
.col-xl3 {
  width: 100%;
  margin-bottom: 40px;
}

.col-lg4,
.col-md4,
.col-sm4,
.col-xl4 {
  width: 100%;
  margin-bottom: 40px;
}

.col-lg5,
.col-md5,
.col-sm5,
.col-xl5 {
  width: 100%;
  margin-bottom: 40px;
}

.col-lg6,
.col-md6,
.col-sm6,
.col-xl6 {
  width: 100%;
  margin-bottom: 40px;
}

.col-lg7,
.col-md7,
.col-sm7,
.col-xl7 {
  width: 100%;
  margin-bottom: 40px;
}

.col-lg8,
.col-md8,
.col-sm8,
.col-xl8 {
  width: 100%;
  margin-bottom: 40px;
}

.col-lg9,
.col-md9,
.col-sm9,
.col-xl9 {
  width: 100%;
  margin-bottom: 40px;
}

.col-lg10,
.col-md10,
.col-sm10,
.col-xl10 {
  width: 100%;
  margin-bottom: 40px;
}

.col-lg11,
.col-md11,
.col-sm11,
.col-xl11 {
  width: 100%;
  margin-bottom: 40px;
}

.col-lg12,
.col-md12,
.col-sm12,
.col-xl12 {
  width: 100%;
  margin-bottom: 40px;
}

@media (min-width: 481px) {
  .sm {
    flex-direction: row;
  }

  .col-sm1 {
    width: calc((100% * 1) / 12);
    padding: 0 15px;
  }

  .col-sm2 {
    width: calc((100% * 2) / 12);
    padding: 0 15px;
  }

  .col-sm3 {
    width: calc((100% * 3) / 12);
    padding: 0 15px;
  }

  .col-sm4 {
    width: calc((100% * 4) / 12);
    padding: 0 15px;
  }

  .col-sm5 {
    width: calc((100% * 5) / 12);
    padding: 0 15px;
  }

  .col-sm6 {
    width: calc((100% * 6) / 12);
    padding: 0 15px;
  }

  .col-sm7 {
    width: calc((100% * 7) / 12);
    padding: 0 15px;
  }

  .col-sm8 {
    width: calc((100% * 8) / 12);
    padding: 0 15px;
  }

  .col-sm9 {
    width: calc((100% * 9) / 12);
    padding: 0 15px;
  }

  .col-sm10 {
    width: calc((100% * 10) / 12);
    padding: 0 15px;
  }

  .col-sm11 {
    width: calc((100% * 11) / 12);
    padding: 0 15px;
  }

  .col-sm12 {
    width: calc((100% * 12) / 12);
    padding: 0 15px;
  }
}
@media (min-width: 768px) {
  .md {
    flex-direction: row;
  }

  .col-md1 {
    width: calc((100% * 1) / 12);
    padding: 0 15px;
  }

  .col-md2 {
    width: calc((100% * 2) / 12);
    padding: 0 15px;
  }

  .col-md3 {
    width: calc((100% * 3) / 12);
    padding: 0 15px;
  }

  .col-md4 {
    width: calc((100% * 4) / 12);
    padding: 0 15px;
  }

  .col-md5 {
    width: calc((100% * 5) / 12);
    padding: 0 15px;
  }

  .col-md6 {
    width: calc((100% * 6) / 12);
    padding: 0 15px;
  }

  .col-md7 {
    width: calc((100% * 7) / 12);
    padding: 0 15px;
  }

  .col-md8 {
    width: calc((100% * 8) / 12);
    padding: 0 15px;
  }

  .col-md9 {
    width: calc((100% * 9) / 12);
    padding: 0 15px;
  }

  .col-md10 {
    width: calc((100% * 10) / 12);
    padding: 0 15px;
  }

  .col-md11 {
    width: calc((100% * 11) / 12);
    padding: 0 15px;
  }

  .col-md12 {
    width: calc((100% * 12) / 12);
    padding: 0 15px;
  }

  .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 1030px) {
  .col-lg1 {
    width: calc((100% * 1) / 12);
    padding: 0 15px;
  }

  .col-lg2 {
    width: calc((100% * 2) / 12);
    padding: 0 15px;
  }

  .col-lg3 {
    width: calc((100% * 3) / 12);
    padding: 0 15px;
  }

  .col-lg4 {
    width: calc((100% * 4) / 12);
    padding: 0 15px;
  }

  .col-lg5 {
    width: calc((100% * 5) / 12);
    padding: 0 15px;
  }

  .col-lg6 {
    width: calc((100% * 6) / 12);
    padding: 0 15px;
  }

  .col-lg7 {
    width: calc((100% * 7) / 12);
    padding: 0 15px;
  }

  .col-lg8 {
    width: calc((100% * 8) / 12);
    padding: 0 15px;
  }

  .col-lg9 {
    width: calc((100% * 9) / 12);
    padding: 0 15px;
  }

  .col-lg10 {
    width: calc((100% * 10) / 12);
    padding: 0 15px;
  }

  .col-lg11 {
    width: calc((100% * 11) / 12);
    padding: 0 15px;
  }

  .col-lg12 {
    width: calc((100% * 12) / 12);
    padding: 0 15px;
  }
}
@media (min-width: 1200px) {
  .col-xl1 {
    width: calc((100% * 1) / 12);
    padding: 0 15px;
  }

  .col-xl2 {
    width: calc((100% * 2) / 12);
    padding: 0 15px;
  }

  .col-xl3 {
    width: calc((100% * 3) / 12);
    padding: 0 15px;
  }

  .col-xl4 {
    width: calc((100% * 4) / 12);
    padding: 0 15px;
  }

  .col-xl5 {
    width: calc((100% * 5) / 12);
    padding: 0 15px;
  }

  .col-xl6 {
    width: calc((100% * 6) / 12);
    padding: 0 15px;
  }

  .col-xl7 {
    width: calc((100% * 7) / 12);
    padding: 0 15px;
  }

  .col-xl8 {
    width: calc((100% * 8) / 12);
    padding: 0 15px;
  }

  .col-xl9 {
    width: calc((100% * 9) / 12);
    padding: 0 15px;
  }

  .col-xl10 {
    width: calc((100% * 10) / 12);
    padding: 0 15px;
  }

  .col-xl11 {
    width: calc((100% * 11) / 12);
    padding: 0 15px;
  }

  .col-xl12 {
    width: calc((100% * 12) / 12);
    padding: 0 15px;
  }
}
/* -----------------------------------
見出し、テキストなど
----------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  line-height: 1.8em;
}

p {
  margin: 0 auto 1em;
}

.f_panel p{
 margin-left:1em;
 margin-top:1em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1.2em auto 0.1em;
  font-weight: 400;
}

h2 {
  font-size: 150%;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  h2 {
    font-size: 160%;
  }
}
h2 span.sub {
  font-size: 12px;
  display: block;
}
@media (min-width: 1030px) {
  h2 span.sub {
    display: inline-block;
    margin-left: 20px;
  }
}

h3 {
  font-size: 125%;
  color: #000000;
  border-bottom: 1px solid;
  padding-bottom: 0.5em;
  margin: 2em 0 1em;
  border-color:#D1D1D4;
}
h3 span.green {
  color: #1BAF78;
  display: inline-block;
  margin-right: 20px;
}
@media (min-width: 768px) {
  h3 {
    font-size: 145%;
  }
}
h3.h3-a {
  border-bottom: none;
  background: #F4F4F4;
  padding: 19px 25px;
  border-radius: 4px;
}
h3.h3-b {
  border-bottom: none;
  padding-bottom: 0;
}
h3 a.ad_link {
  color: #000000;
  font-size: 14px;
  text-decoration: underline;
}

h4 {
  font-size: 115%;
}
@media (min-width: 768px) {
  h4 {
    font-size: 135%;
  }
}

h5 {
  font-size: 110%;
}
@media (min-width: 768px) {
  h5 {
    font-size: 125%;
  }
}

h6 {
  font-size: 105%;
}
@media (min-width: 768px) {
  h6 {
    font-size: 110%;
  }
}

.h_wrap {
  position: relative;
}
.h_wrap a.link_arrow {
  position: absolute;
  margin: auto;
  margin-bottom: 14px;
  top: 0;
  bottom: 0;
  height: -moz-fit-content;
  height: fit-content;
  right: 0;
  font-size: 90%;
}

ul.list_style {
  list-style: disc;
  margin-left: 30px;
}
ul.list_style li {
  margin-bottom: 10px;
}

table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: solid 1px #929ba5;
  margin: 40px auto;
}
table thead {
  background: #efefef;
}
table th, table td {
  padding: 10px;
  border: solid 1px #929ba5;
  line-height: 1.6em;
}
table td {
  text-align: left;
}

/* -----------------------------------
リンク関係
----------------------------------- */
a {
  /* color: #1BAF78; */
  color:#0b774f;
  transition: 0.3s;
  /* text-decoration: underline; */ 
}
a:hover {
  color: #1BAF78;
}

a.linkbtn {
  display: block;
  color: white;
  background: #1BAF78;
  text-align: left;
  padding: 18px 52px 18px 30px;
  width: 100%;
  border-radius: 4px;
  margin: 40px auto 40px 0;
  position: relative;
  line-height: 1.6em;
  box-shadow: 0 0 10px #0000003d;
}
a.linkbtn:after {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
  border-right: 1.3px solid #1BAF78;
  border-top: 1.3px solid #1BAF78;
  transform: rotate(45deg);
  right: 34px;
  margin: auto;
  top: 0;
  bottom: 0;
  transition: 0.3s;
}
a.linkbtn:before {
  content: "";
  display: block;
  height: 18px;
  width: 18px;
  background: #ffffff;
  border-radius: 18px;
  position: absolute;
  right: 27px;
  margin: auto;
  top: 0;
  bottom: 0;
  transition: 0.3s;
}
a.linkbtn:hover {
  background: #1BAF78;
}
@media (min-width: 1030px) {
  a.linkbtn {
    padding: 22px 60px 22px 40px;
    box-shadow: none;
  }
  a.linkbtn.right {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  a.linkbtn.small {
    width: 50%;
  }
}
a.linkbtn.large {
  text-align: center;
  border-radius: 10px;
  padding: 22px 52px 22px 30px;
  margin: 0 auto;
  background: #F4F4F4;
  color: #000000;
  box-shadow: none;
}
a.linkbtn.large::after {
  border-right-color: #000000;
  border-top-color: #000000;
}
a.linkbtn.large:hover {
  background: #1BAF78;
  color: #ffffff;
  box-shadow: 0 0 10px #0000003d;
}
a.linkbtn.large:hover::after {
  border-right-color: #1BAF78;
  border-top-color: #1BAF78;
}
@media (min-width: 1030px) {
  a.linkbtn.large {
    padding: 30px 60px 30px 40px;
    box-shadow: none;
  }
  a.linkbtn.large.right {
    margin-right: 0;
  }
}

a.link_arrow {
  position: relative;
  color: #000000;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 45px 5px 10px;
}
a.link_arrow:after {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
  border-right: 1.3px solid #ffffff;
  border-top: 1.3px solid #ffffff;
  transform: rotate(45deg);
  right: 20px;
  margin: auto;
  top: 0;
  bottom: 0;
  transition: 0.3s;
}
a.link_arrow:before {
  content: "";
  display: block;
  height: 19px;
  width: 19px;
  background: #1BAF78;
  border-radius: 19px;
  position: absolute;
  right: 11px;
  margin: auto;
  top: 0;
  bottom: 0;
  transition: 0.3s;
}

a.linkbtn_g {
  display: block;
  background: #F4F4F4;
  text-align: center;
  color: #000000;
  border: 1px solid transparent;
  border-radius: 10px;
  position: relative;
  font-family: rustica, "BIZ UDGothic", sans-serif;
  height: 75px;
  line-height: 75px;
}
a.linkbtn_g.banner_link {
  background: #ffffff;
  display: flex;
}
a.linkbtn_g.banner_link img.bn {
  width: 90%;
  display: block;
  margin: auto;
}
@media (min-width: 1030px) {
  a.linkbtn_g {
    height: 85px;
    line-height: 85px;
  }
}
a.linkbtn_g:hover {
  border-color: #7D7D7D;
  background: #ffffff;
  box-shadow: 2px 2px 8px #00000029;
}
a.linkbtn_g img.sns_icon {
  width: 30px;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 20px;
}
@media (min-width: 768px) {
  a.linkbtn_g img.sns_icon {
    width: 40px;
  }
}

/* -----------------------------------
ヘッダー
----------------------------------- */
@media (min-width: 1200px) {
  .site-branding {
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}

header.site-header {
  background-color: #FAFBFB;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: 0.5s;
  height: 60px;
  top: 0px;
  position: fixed;
}
header.site-header .container {
  position: relative;
  background-color: #FAFBFB;
}
@media (min-width: 1200px) {
  header.site-header .container {
    width: 100%;
    max-width: 1400px;
  }
}
header.site-header .site-title {
  margin: 0 auto;
}
header.site-header .site-title a {
  padding: 7px 10px 0 2px;
  display: block;
  margin: 0 auto 0 0;
  width: -moz-fit-content;
  width: fit-content;
}
header.site-header .site-title a img {
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  height: 44px;
}
header.site-header .site-title a img.logo-pc {
  display: none;
}
@media (min-width: 1200px) {
  header.site-header .site-title a {
    margin: 20px auto 0 10px;
  }
  header.site-header .site-title a img {
    height: 50px;
  }
  header.site-header .site-title a img.logo-pc {
    display: block;
  }
  header.site-header .site-title a img.logo-sp {
    display: none;
  }
}
header.site-header .site-title a:hover {
  opacity: 0.6;
}
@media (min-width: 1200px) {
  header.site-header {
    height: auto;
    position: sticky;
    top: -78px;
  }
}

button#open_mobile_menu {
  background: transparent;
  margin: 0;
  cursor: pointer;
  border: 0;
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  position: absolute;
  top: 8px;
  right: 15px;
  padding: 3px;
}
button#open_mobile_menu svg {
  pointer-events: none;
  margin: auto;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  transition: 0.3s;
  position: absolute;
}
button#open_mobile_menu svg.open {
  width: 40px;
  opacity: 1;
}
button#open_mobile_menu svg.close {
  width: 30px;
  opacity: 0;
}
button#open_mobile_menu.checked svg.open {
  opacity: 0;
}
button#open_mobile_menu.checked svg.close {
  opacity: 1;
}
@media (min-width: 1200px) {
  button#open_mobile_menu {
    display: none !important;
  }
}

button#open_accessibility_menu {
  background: transparent;
  margin: 0;
  cursor: pointer;
  border: 0;
  display: block;
  height: 48px;
  text-align: center;
  position: absolute;
  top: 5px;
  right: 60px;
}
button#open_accessibility_menu img {
  width: 160px;
}
@media (min-width: 1200px) {
  button#open_accessibility_menu {
    display: none;
  }
}

.header_search {
  margin-top: 70px;
}
@media (min-width: 1200px) {
  .header_search {
    display: none;
  }
}

footer {
  padding: 90px 0 0;
  background: #F2F5F4;
  font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: 500;
  margin-top: 100px;
  position: relative;
}
footer a {
  color: #000000;
  text-decoration: underline;
}
@media (min-width: 1030px) {
  footer {
    font-size: 85%;
  }
}
footer .site_logo img {
  width: 150px;
}
@media (min-width: 1030px) {
  footer .site_logo img {
    width: 180px;
  }
}
footer p.title {
  font-size: 127%;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 30px;
}
footer p.address {
  line-height: 2.2em;
}
footer p.date {
  text-align: right;
  font-size: 90%;
  font-family: "BIZ UDGothic", sans-serif;
  margin: 10px 0 0;
}
footer .footer_counter_wrap {
  display: flex;
  width: 100%;
  margin-top: 80px;
  justify-content: space-between;
}
footer .footer_counter_wrap .counter {
  background: white;
  width: calc(50% - 5px);
  font-family: "BIZ UDGothic", sans-serif;
  display: flex;
  padding: 22px 18px;
  border-radius: 16px;
  font-size: 80%;
  line-height: 1em;
  word-break: keep-all;
}
footer .footer_counter_wrap .counter .counter_1 {
  margin: 0 auto 0 0;
}
footer .footer_counter_wrap .counter .counter_2 {
  margin: 0 0 0 auto;
  font-family: rustica, "BIZ UDGothic", sans-serif;
  font-weight: 500;
  font-size: 120%;
  letter-spacing: 0.05em;
}
footer .footer_counter_wrap .counter .counter_3 {
  margin: 0 0 0 5px;
}
@media (min-width: 500px) {
  footer .footer_counter_wrap .counter {
    font-size: 90%;
  }
  footer .footer_counter_wrap .counter .counter_2 {
    font-size: 140%;
  }
}
@media (min-width: 1030px) {
  footer .footer_counter_wrap {
    margin-top: 80px;
  }
  footer .footer_counter_wrap .counter {
    padding: 22px 24px;
    width: calc(50% - 10px);
    font-size: 100%;
  }
}
footer #footer {
  background: #1BAF78;
  color: #FAFBFB;
  font-family: rustica, "BIZ UDGothic", sans-serif;
  font-weight: 100;
  letter-spacing: 0.05em;
  padding: 15px 0;
  margin-top: 40px;
}
footer #footer p {
  text-align: left;
  font-size: 14px;
  margin: 0;
  padding: 0 15px;
}

#googlemap_wrap {
  width: 100%;
  height: 350px;
}
@media (min-width: 1030px) {
  #googlemap_wrap {
    height: 280px;
  }
}
#googlemap_wrap iframe {
  width: 100%;
  height: 100%;
}

/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/* -----------------------------------
グローバルナビゲーション
----------------------------------- */
nav {
  color: #000000;
  text-align: left;
}
nav > ul > li > a {
  font-weight: 600;
  cursor: pointer;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 5px auto;
  /*2階層目以降は横並びにしない*/
}
nav ul li {
  position: relative;
}
nav ul li a {
  display: block;
  text-decoration: none;
  color: #000000;
  padding: 5px 6px;
  margin: 10px 5px;
  transition: all 0.3s;
  font-size: 15px;
  line-height: 1;
  border-bottom: 1.5px solid transparent;
}
@media (min-width: 1030px) {
  nav ul li a {
    margin: 0px 12px;
    display: flex;
    flex-direction: column;
  }
  nav ul li a span.jp {
    display: block;
    margin: 10px auto;
    font-weight: 500;
  }
}
nav ul li a.current {
  border-bottom: 1px solid;
}
nav ul li li a {
  padding: 8px 10px 8px 45px;
  position: relative;
}
nav ul li li a:before {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  border-right: 2.5px solid #1BAF78;
  border-top: 2.5px solid #1BAF78;
  transform: rotate(45deg);
  margin: auto;
  top: 0;
  bottom: 0;
  left: 20px;
}
nav ul ul {
  display: block;
}

/* -----------------------------------
メニュー
----------------------------------- */
#accessibility_menu {
  flex-direction: column;
  overflow: scroll;
  padding: 1px 0 50px;
  height: 100vh;
  height: 100dvh;
  width: 100vw;
  position: fixed;
  bottom: 0;
  right: 0;
  background: #00000094;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s;
  z-index: 101;
  cursor: pointer;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#accessibility_menu::-webkit-scrollbar {
  display: none;
}
#accessibility_menu .acc_item {
  width: 250px;
  margin: 40px auto;
}
#accessibility_menu .acc_item svg, #accessibility_menu .acc_item img {
  width: 15px;
}
#accessibility_menu .acc_clickable {
  cursor: pointer;
  transition: 0.3s;
}
#accessibility_menu .acc_clickable:hover {
  opacity: 0.6;
}
#accessibility_menu .acc_item span {
  display: inline-block;
  border: 1.5px solid #000000;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 90%;
}
#accessibility_menu .acc_item span.active {
  background: #000000;
  color: #FAFBFB;
}
#accessibility_menu .acc_item span.black, #accessibility_menu .acc_item span.yellow, #accessibility_menu .acc_item span.white {
  padding: 4px;
}
#accessibility_menu .acc_item span.black {
  background: #ffffff;
  color: #000000;
}
#accessibility_menu .acc_item span.white {
  background: #000000;
  color: #ffffff;
}
#accessibility_menu .acc_item span.yellow {
  background: #1000FF;
  color: #FFFF00;
}
#accessibility_menu .acc_item select#acc_lang_select {
  border: none;
  background: transparent;
  font-family: "BIZ UDGothic", sans-serif;
  font-size: 100%;
  height: 20px;
  cursor: pointer;
  border-radius: 4px;
}
#accessibility_menu .acc_item select#acc_lang_select:focus {
  outline: solid 2px #1BAF78;
}
#accessibility_menu button#acc_menu_close {
  border: none;
  background: transparent;
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}
@media (min-width: 1200px) {
  #accessibility_menu button#acc_menu_close {
    display: none;
  }
}
#accessibility_menu .acc_menu_inner {
  background: #FAFBFB;
  color: #000000;
  width: 300px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 20px 30px;
  border-radius: 4px;
  margin: auto;
  position: absolute;
  right: 0;
  left: 0;
  top: 10%;
  cursor: auto;
}
#accessibility_menu.checked {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
#accessibility_menu a.site-contact {
  display: block;
  margin: 40px auto;
  width: 200px;
  padding-top: 40px;
}
#accessibility_menu nav.main-navigation {
  max-width: 400px;
  min-width: 200px;
  margin: 20px auto auto;
  width: 100%;
}
#accessibility_menu nav.main-navigation ul {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
#accessibility_menu nav.main-navigation ul li {
  border-top: 1px solid #C1BEBE;
  margin: 0 12px;
}
#accessibility_menu nav.main-navigation ul li a {
  margin: 0;
  padding: 20px;
  font-size: 14px;
  position: relative;
}
#accessibility_menu nav.main-navigation ul li a:before {
  content: "";
  width: 6px;
  height: 6px;
  display: block;
  position: absolute;
  border-right: 1.5px solid #000000;
  border-top: 1.5px solid #000000;
  transform: rotate(45deg);
  margin: auto;
  right: 29px;
  top: 0;
  bottom: 0;
  transition: 0.5s;
}
#accessibility_menu nav.main-navigation ul li a:hover {
  color: #FDECE8;
}
#accessibility_menu nav.main-navigation ul li a:hover:before {
  right: 25px;
}
#accessibility_menu nav.main-navigation ul li:last-of-type {
  border-bottom: 1px solid #C1BEBE;
}
#accessibility_menu nav.main-navigation ul.sub-menu li {
  margin: 0;
  border-top: 1px dashed #C1BEBE;
}
#accessibility_menu nav.main-navigation ul.sub-menu li:last-of-type {
  border-bottom: none;
}
#accessibility_menu nav.main-navigation ul.sub-menu li a {
  padding-left: 40px;
}
#accessibility_menu nav.main-navigation ul.sub-menu li a:before {
  display: none;
}
@media (min-width: 1200px) {
  #accessibility_menu nav.main-navigation ul {
    margin: 15px 0 0 auto;
  }
}
@media (min-width: 1200px) {
  #accessibility_menu {
    overflow: visible;
    padding: 0;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    bottom: auto;
    right: right;
    background: transparent;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    cursor: auto;
    top: 30px;
    right: 0px;
  }
 }
@media (min-width: 1200px) {
  #accessibility_menu {
    overflow: visible;
    padding: 0;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    bottom: auto;
    right: right;
    background: transparent;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    cursor: auto;
    top: 30px;
    right: 0px;
  }
  #accessibility_menu .acc_menu_inner {
    background: transparent;
    width: auto;
    height: auto;
    padding: 0;
    border-radius: auto;
    position: relative;
    right: auto;
    left: auto;
    top: auto;
    bottom: auto;
    cursor: auto;
    display: flex;
  }
  #accessibility_menu .acc_menu_inner .acc_item {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0;
    font-size: 90%;
    margin-right: 25px;
  }
  #accessibility_menu .acc_menu_inner .acc_item.acc_item_sound {
    line-height: 1.6em;
  }
}

.qa {
  margin: 20px auto;
}

.qa__block {
  display: flex;
  flex-direction: column;
}

.qa__item {
  display: block;
}

.qa__head {
  display: block;
  width: 100%;
  text-align: left;
  padding: 30px;
  position: relative;
  z-index: 2;
  transition: 0.3s;
  margin-bottom: 0;
  color: #000000;
  background: #ffffff;
  cursor: pointer;
  border-radius: 6px;
}
.qa__head:after {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
  border-right: 1.3px solid #FAFBFB;
  border-top: 1.3px solid #FAFBFB;
  transform: rotate(45deg);
  right: 34px;
  margin: auto;
  top: 0;
  bottom: 0;
  transition: 0.3s;
}
.qa__head:before {
  content: "";
  display: block;
  height: 19px;
  width: 19px;
  background: #1BAF78;
  border-radius: 19px;
  position: absolute;
  right: 26px;
  margin: auto;
  top: 0;
  bottom: 0;
  transition: 0.3s;
}
.qa__head.is-open {
  background: #1BAF78;
  color: #FAFBFB;
  box-shadow: 0 0 10px #0000002e;
}
.qa__head.is-open:after {
  border-right-color: #1BAF78;
  border-top-color: #1BAF78;
  transform: rotate(135deg);
  right: 33px;
}
.qa__head.is-open:before {
  background: #FAFBFB;
}
.qa__head.is-open:hover {
  color: #FAFBFB;
}

.qa__body {
  position: relative;
  background: #F4F4F4;
  border: transparent;
  opacity: 0;
  transition: 0.3s;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}
.qa__body .qa__body_container {
  padding: 0 15px;
  transition: 0.3s;
}
.qa__body p {
  line-height: 0;
  margin-bottom: 0;
  transition: 0.3s;
}
.qa__body dl {
  line-height: 0;
  opacity: 0;
  margin: 0;
  transition: 0.3s;
}
.qa__body dl dd {
  line-height: 0;
  margin-bottom: 0;
  transition: 0.3s;
}
.qa__body ul {
  line-height: 0;
}
.qa__body ul li {
  border-bottom: none;
  padding: 0 8px;
  width: 100%;
  /* border-bottom: 1px solid #000; */
}
.qa__body ul li:last-of-type {
  border-bottom: none;
}
.qa__body ul li a.link {
  display: block;
  padding: 0 45px 0 22px;
  line-height: 0;
  position: relative;
  color: #000000;
  width: 100%;
}
.qa__body ul li a.link:after {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
  border-right: 1.3px solid #000000;
  border-top: 1.3px solid #000000;
  transform: rotate(45deg);
  right: 20px;
  margin: auto;
  top: 0;
  bottom: 0;
  transition: 0.3s;
}
.qa__body ul li a.link:before {
  content: "";
  display: block;
  height: 19px;
  width: 19px;
  background: #ffffff;
  border-radius: 19px;
  position: absolute;
  right: 11px;
  margin: auto;
  top: 0;
  bottom: 0;
  transition: 0.3s;
}
@media (min-width: 1030px) {
  .qa__body ul {
    display: flex;
    flex-wrap: wrap;
  }
  .qa__body ul.text {
    flex-direction: column;
  }
  .qa__body ul.text li {
    width: auto;
  }
  .qa__body ul.text li:nth-of-type(2n) {
    margin-left: 15px;
  }
  /*
  .qa__body ul.text li:nth-last-of-type(2):nth-of-type(2n-1) {
    border-bottom: 1px solid;
  }
  */
  .qa__body ul li {
    width: calc(50% - 22.5px);
    margin: 0 15px;
    padding: 0;
  }
  .qa__body ul li:nth-of-type(2n) {
    margin-left: 0;
  }
  .qa__body ul li:nth-last-of-type(2):nth-of-type(2n-1) {
    border-bottom: none;
  }
}
.qa__body ul.text li {
  padding: 0 20px;
  transition: 0.3s;
}
@media (min-width: 1030px) {
  .qa__body ul.text li {
    padding: 0px 35px;
  }
}
.qa__body ul.text a.link.link-sm {
  margin-top: 0;
  padding: 0;
  font-size: 90%;
  padding-right: 40px;
  width: -moz-fit-content;
  width: fit-content;
}
.qa__body ul.text a.link.link-sm:before {
  background: #1BAF78;
}
.qa__body ul.text a.link.link-sm:after {
  border-right-color: #ffffff;
  border-top-color: #ffffff;
}
.qa__body.is-open {
  line-height: 1.8;
  opacity: 1;
}
.qa__body.is-open .qa__body_container {
  padding: 25px 15px;
}
.qa__body.is-open p {
  line-height: 1.8;
  margin-bottom: 15px;
}
.qa__body.is-open dl {
  line-height: 1.8;
  margin: 20px 0;
  opacity: 1;
}
.qa__body.is-open dl dd {
  line-height: 1.8;
}
@media (min-width: 1030px) {
  .qa__body.is-open dl {
    margin: 0;
  }
}
.qa__body.is-open ul {
  line-height: 1.8;
}
.qa__body.is-open ul li {
  padding: 8px;
}
.qa__body.is-open ul li a.link {
  display: block;
  color: #000;
  padding: 22px 45px 22px 22px;
  line-height: 1.6;
  border-radius: 4px;
}
.qa__body.is-open ul li a.link:hover {
  background: #E4E5E5;
}
.qa__body.is-open ul li a.link.link-sm {
  margin-top: 10px;
  padding: 10px 40px 10px 0;
}
@media (min-width: 1030px) {
  .qa__body.is-open ul li {
    padding: 8px 0;
  }
}
.qa__body.is-open ul.text li {
  padding: 15px 20px;
}
@media (min-width: 1030px) {
  .qa__body.is-open ul.text li {
    padding: 25px 35px;
  }
}

.qa__item:not(:first-child) {
  margin-top: 16px;
}

.link_list {
  position: relative;
  background: #F4F4F4;
  border: transparent;
  border-radius: 6px;
  margin-top: 40px;
}
.link_list ul {
  line-height: 1.8;
}
.link_list ul li {
  padding: 8px;
  width: 100%;
  border-bottom: 1px solid #000;
  font-size: 90%;
}
.link_list ul li:last-of-type {
  border-bottom: none;
}
.link_list ul li a.link {
  display: block;
  position: relative;
  color: #000000;
  width: 100%;
  padding: 22px 45px 22px 22px;
  line-height: 1.6;
  border-radius: 4px;
}
.link_list ul li a.link:hover {
  background: #E4E5E5;
}
.link_list ul li a.link:after {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
  border-right: 1px solid #000000;
  border-top: 1px solid #000000;
  transform: rotate(45deg);
  right: 20px;
  margin: auto;
  top: 0;
  bottom: 0;
  transition: 0.3s;
}
.link_list ul li a.link:before {
  content: "";
  display: block;
  height: 19px;
  width: 19px;
  background: #ffffff;
  border-radius: 19px;
  position: absolute;
  right: 12px;
  margin: auto;
  top: 0;
  bottom: 0;
  transition: 0.3s;
}
@media (min-width: 1030px) {
  .link_list ul {
    display: flex;
    flex-wrap: wrap;
  }
  .link_list ul li {
    width: calc(50% - 15px);
    margin: 0 10px;
    padding: 10px 0;
  }
  .link_list ul li:nth-of-type(2n) {
    margin-left: 0;
  }
  .link_list ul li:nth-last-of-type(2):nth-of-type(2n-1) {
    border-bottom: none;
  }
}

@media (min-width: 1030px) {
  .list_wrap {
    display: flex;
  }
  .list_wrap .left {
    width: 22%;
  }
  .list_wrap .right {
    width: calc(78% - 30px);
    margin-left: 30px;
  }
}

#breadcrumb {
  margin-top: 40px;
}
#breadcrumb.breadcrumb_pc {
  display: none;
}
@media (min-width: 1030px) {
  #breadcrumb.breadcrumb_pc {
    display: block;
  }
}
#breadcrumb.breadcrumb_sp {
  margin-top: 0;
  padding: 0 15px;
}
#breadcrumb.breadcrumb_sp ul {
  margin: 0;
}
#breadcrumb.breadcrumb_sp ul li {
  font-size: 15px;
}
@media (min-width: 1030px) {
  #breadcrumb.breadcrumb_sp {
    display: none;
  }
}
#breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
}
#breadcrumb ul li {
  font-size: 12px;
  margin-right: 24px;
  padding-right: 5px;
  min-width: 30px;
  color: #7D7D7D;
  position: relative;
}
#breadcrumb ul li:after {
  content: "";
  width: 6px;
  height: 6px;
  display: block;
  position: absolute;
  border-right: 1px solid #7D7D7D;
  border-top: 1px solid #7D7D7D;
  transform: rotate(45deg);
  top: 0;
  bottom: 0;
  margin: auto;
  right: -10px;
}
#breadcrumb ul li:last-of-type:after {
  display: none;
}
#breadcrumb ul li a {
  color: #7D7D7D;
  text-decoration: none;
}
#breadcrumb ul li a img {
  height: 14px;
  vertical-align: text-top;
}

dl.dl-a dd {
  margin-left: 20px;
  font-size: 90%;
}
@media (min-width: 768px) {
  dl.dl-a {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
  }
  dl.dl-a dt {
    width: 100px;
    text-align: justify;
    -moz-text-align-last: justify;
         text-align-last: justify;
  }
  dl.dl-a dd {
    width: calc(100% - 100px);
    padding-left: 20px;
    margin-left: 0;
    font-size: 100%;
  }
}

dl.dl-b {
  line-height: 1.8em;
}
dl.dl-b dd {
  margin-left: 20px;
  font-size: 90%;
}
@media (min-width: 768px) {
  dl.dl-b {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
  }
  dl.dl-b dt {
    width: 100px;
    text-align: justify;
    -moz-text-align-last: justify;
         text-align-last: justify;
  }
  dl.dl-b dd {
    width: calc(100% - 100px);
    padding-left: 20px;
    margin-left: 0;
    font-size: 100%;
  }
}

.event_card {
  background: white;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 2px 2px 8px #0000004a;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  width: calc(100% - 30px);
}
@media (min-width: 768px) and (max-width: 1029px) {
  .event_card {
    max-width: 750px;
  }
}
@media (min-width: 1030px) {
  .event_card {
    max-width: 980px;
  }
}
@media (min-width: 1200px) {
  .event_card {
    max-width: 1050px;
  }
}
.event_card .left {
  margin-bottom: 30px;
}
.event_card .right {
  text-align: center;
}
.event_card .right img {
  width: 230px;
  border: 1px solid #333;
}
@media (min-width: 768px) {
  .event_card {
    padding: 35px;
    width: 100%;
  }
}
@media (min-width: 1030px) {
  .event_card {
    padding: 60px;
    display: flex;
  }
  .event_card .left {
    margin-bottom: 0;
    margin-right: 40px;
    width: calc(100% - 270px);
  }
  .event_card .right {
    width: 230px;
  }
}
.event_card .date {
  font-size: 90%;
  font-family: rustica, "BIZ UDGothic", sans-serif;
  letter-spacing: 0.1em;
  margin-right: 20px;
  transition: 0.3s;
  margin-bottom: 30px;
  line-height: 2;
}
.event_card .date span.category {
  display: inline-block;
  background: #1BAF78;
  color: white;
  font-size: 13px;
  padding: 0 12px;
  border-radius: 20px;
  word-break: keep-all;
  margin-left: 11px;
  /*vertical-align: middle;*/
}
.event_card p {
  font-size: 90%;
}
.event_card p.title {
  font-size: 115%;
}
.event_card a.link_btn {
  display: block;
  margin-top: 40px;
  padding: 0;
  line-height: 0;
  position: relative;
  color: #000000;
  font-size: 90%;
  padding-right: 40px;
  width: -moz-fit-content;
  width: fit-content;
}
.event_card a.link_btn:after {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
  border-right: 1.3px solid #ffffff;
  border-top: 1.3px solid #ffffff;
  transform: rotate(45deg);
  right: 20px;
  margin: auto;
  top: 0;
  bottom: 0;
  transition: 0.3s;
}
.event_card a.link_btn:before {
  content: "";
  display: block;
  height: 19px;
  width: 19px;
  background: #1BAF78;
  border-radius: 19px;
  position: absolute;
  right: 11px;
  margin: auto;
  top: 0;
  bottom: 0;
  transition: 0.3s;
}

.event_slider {
  margin-top: 30px;
  margin-bottom: 140px;
}
.event_slider .splide__track {
  overflow: visible;
}
.event_slider .splide__arrows {
  display: none;
}
.event_slider .splide__pagination {
  bottom: -45px;
}
.event_slider .splide__pagination__page.is-active {
  background-color: #000000;
}
.event_slider .splide__pagination__page {
  margin: 0 6px;
}

div#flow {
  display: none;
  position: fixed;
  bottom: 50px;
  right: 30px;
  z-index: 30;
  transition: 0.3s;
  opacity: 1;
}
@media (min-width: 768px) {
  div#flow {
    display: block;
  }
}
div#flow a.flow_btn {
  display: block;
  width: 120px;
  height: 100px;
  font-size: 13px;
  line-height: 1.4em;
  background: white;
  border-radius: 8px;
  color: #E94820;
  position: relative;
  padding: 20px;
  font-weight: bold;
}
div#flow a.flow_btn img.img01 {
  position: absolute;
  width: 40px;
  right: 0;
  bottom: -20px;
}
div#flow #close_flow {
  width: 20px;
  height: 20px;
  background: #000000;
  border-radius: 20px;
  line-height: 1;
  position: absolute;
  top: -10px;
  right: 15px;
  cursor: pointer;
}
div#flow #close_flow img {
  width: 10px;
  margin: 5px;
}

form.mailform {
  margin-top: 40px;
}
form.mailform span.red {
  font-size: 80%;
  color: #D70C18;
}
form.mailform .form_flex_wrap {
  display: flex;
  flex-wrap: wrap;
}
form.mailform .form_flex_wrap .form_col2 {
  width: 100%;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  form.mailform .form_flex_wrap .form_col2 {
    width: calc(50% - 5px);
    margin-right: 10px;
  }
  form.mailform .form_flex_wrap .form_col2:nth-of-type(2n) {
    margin-right: 0;
  }
}
form.mailform .form_flex_wrap .form_col3 {
  width: 100%;
}
@media (min-width: 768px) {
  form.mailform .form_flex_wrap .form_col3 {
    width: calc(33.333% - 6.6666666667px);
    margin-right: 10px;
    margin-bottom: 50px;
  }
  form.mailform .form_flex_wrap .form_col3:nth-of-type(3n) {
    margin-right: 0;
  }
}
form.mailform label {
  cursor: pointer;
}
form.mailform input[type=text] {
  background: #F4F4F4;
  border: none;
  font-family: "BIZ UDGothic", sans-serif;
  box-shadow: none;
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  width: 100%;
  border-radius: 4px;
  margin-top: 20px;
}
form.mailform input[type=text]:focus {
  outline: solid 2px #1BAF78;
}
form.mailform input[type=text]::-moz-placeholder {
  color: #7D7D7D;
  font-family: "BIZ UDGothic", sans-serif;
}
form.mailform input[type=text]:-ms-input-placeholder {
  color: #7D7D7D;
  font-family: "BIZ UDGothic", sans-serif;
}
form.mailform input[type=text]::placeholder {
  color: #7D7D7D;
  font-family: "BIZ UDGothic", sans-serif;
}
form.mailform textarea {
  background: #F4F4F4;
  border: none;
  font-family: "BIZ UDGothic", sans-serif;
  box-shadow: none;
  line-height: 1.8em;
  padding: 15px;
  width: 100%;
  border-radius: 4px;
  margin-top: 20px;
  height: 200px;
}
form.mailform textarea:focus {
  outline: solid 2px #1BAF78;
}
form.mailform textarea::-moz-placeholder {
  color: #7D7D7D;
  font-family: "BIZ UDGothic", sans-serif;
}
form.mailform textarea:-ms-input-placeholder {
  color: #7D7D7D;
  font-family: "BIZ UDGothic", sans-serif;
}
form.mailform textarea::placeholder {
  color: #7D7D7D;
  font-family: "BIZ UDGothic", sans-serif;
}
form.mailform #file_upload {
  display: block;
  font-family: "BIZ UDGothic", sans-serif;
  margin-top: 20px;
  line-height: 50px;
  background: #F4F4F4;
  padding: 0 15px;
  width: 100%;
  height: 50px;
}
form.mailform #file_upload:focus {
  outline: solid 2px #1BAF78;
}
form.mailform #file_upload label {
  padding: 10px 40px;
  color: #000000;
  background-color: #ffffff;
  cursor: pointer;
  border: 1px solid #000000;
  border-radius: 3px;
  font-size: 90%;
}
form.mailform #file_upload input[type=file] {
  display: none;
}
form.mailform #file_upload span {
  display: inline-block;
  margin-left: 20px;
  color: #7D7D7D;
  font-size: 85%;
}
form.mailform .submit_wrap {
  position: relative;
  margin-top: 80px;
}
form.mailform .submit_wrap input[type=submit] {
  display: block;
  color: white;
  border: none;
  background: #1BAF78;
  font-family: "BIZ UDGothic", sans-serif;
  font-size: 100%;
  text-align: left;
  padding: 18px 52px 18px 30px;
  width: 100%;
  border-radius: 4px;
  margin: 40px auto 40px 0;
  position: relative;
  line-height: 1.6em;
  cursor: pointer;
}
form.mailform .submit_wrap input[type=submit]:hover {
  background: #1BAF78;
}
@media (min-width: 1030px) {
  form.mailform .submit_wrap input[type=submit] {
    padding: 22px 60px 22px 40px;
  }
}
form.mailform .submit_wrap:after {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
  border-right: 1.3px solid #1BAF78;
  border-top: 1.3px solid #1BAF78;
  transform: rotate(45deg);
  right: 34px;
  margin: auto;
  top: 0;
  bottom: 0;
  transition: 0.3s;
  z-index: 2;
}
form.mailform .submit_wrap:before {
  content: "";
  display: block;
  height: 18px;
  width: 18px;
  background: #ffffff;
  border-radius: 18px;
  position: absolute;
  right: 27px;
  margin: auto;
  top: 0;
  bottom: 0;
  transition: 0.3s;
  z-index: 1;
}
@media (min-width: 1030px) {
  form.mailform input[type=text],
form.mailform #file_upload,
form.mailform button {
    height: 50px;
    line-height: 50px;
  }
  form.mailform input[type=text] {
    padding: 0 30px;
  }
  form.mailform textarea {
    padding: 15px 30px;
  }
  form.mailform button {
    width: 50px;
  }
  form.mailform button img {
    width: 32px;
  }
}
form.mailform input[type=checkbox],
form.mailform input[type=radio] {
  display: none;
}
form.mailform input[type=checkbox] + .design_checkbox,
form.mailform input[type=radio] + .design_checkbox {
  display: flex;
  background: #F4F4F4;
  border: none;
  font-family: "BIZ UDGothic", sans-serif;
  box-shadow: none;
  min-height: 40px;
  line-height: 1.4em;
  padding: 10px 15px;
  width: 100%;
  border-radius: 4px;
  margin-top: 20px;
}
form.mailform input[type=checkbox] + .design_checkbox .box,
form.mailform input[type=radio] + .design_checkbox .box {
  height: 22px;
  width: 22px;
  min-width: 22px;
  margin: 0 12px 0 0;
  border-radius: 4px;
  border: 1px solid #000000;
  background: white;
  transition: 0.3s;
  position: relative;
}
form.mailform input[type=checkbox] + .design_checkbox .box:before,
form.mailform input[type=radio] + .design_checkbox .box:before {
  content: "";
  display: block;
  width: 13px;
  height: 8px;
  border-left: 3px solid white;
  border-bottom: 3px solid white;
  margin: auto;
  top: 0px;
  bottom: 2px;
  right: 0;
  left: 0;
  position: absolute;
  z-index: 2;
  transform: rotate(-45deg);
}
form.mailform input[type=checkbox] + .design_checkbox .text,
form.mailform input[type=radio] + .design_checkbox .text {
  font-size: 85%;
}
@media (min-width: 1030px) {
  form.mailform input[type=checkbox] + .design_checkbox,
form.mailform input[type=radio] + .design_checkbox {
    height: auto;
    padding: 13px 20px;
  }
  form.mailform input[type=checkbox] + .design_checkbox .box,
form.mailform input[type=radio] + .design_checkbox .box {
    height: 25px;
    width: 25px;
    margin: 0 17px 0 0;
  }
}
form.mailform input[type=checkbox]:checked + .design_checkbox .box,
form.mailform input[type=radio]:checked + .design_checkbox .box {
  background: #1BAF78;
}

p.supportnav {
  color: #1BAF78;
  margin-bottom: -20px;
}
p.supportnav img {
  vertical-align: middle;
}

.frontpage_search {
  display: none;
}
@media (min-width: 1030px) {
  .frontpage_search {
    display: flex;
  }
}
.frontpage_search .left {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 30px;
}
.frontpage_search .left p {
  font-size: 90%;
  font-weight: bold;
  line-height: 50px;
  margin-bottom: 0;
}
.frontpage_search .right {
  flex: 1;
}

#topics {
  overflow: hidden;
}
#topics h3 {
  margin-top: 0;
}

#topnews h3 {
  margin-top: 0;
}

.splide2 {
  margin-top: 30px;
}
.splide2 .splide__track {
  overflow: visible;
}
.splide2 .splide__arrows {
  display: none;
}
.splide2 .splide__pagination {
  bottom: -45px;
}
.splide2 .splide__pagination__page.is-active {
  background-color: #000000;
}
.splide2 .splide__pagination__page {
  margin: 0 6px;
}
.splide2 .splide__slide a {
  display: block;
}
.splide2 .splide__slide.is-active a {
  filter: drop-shadow(0 0 10px #0000002f);
}

.contents_wrap .contents_item {
  text-align: center;
  margin-bottom: 15px;
}
.contents_wrap .contents_item img {
  max-width: 300px;
}
@media (min-width: 100px) {
  .contents_wrap {
    display: flex;
    flex-wrap: wrap;
  }
  .contents_wrap .contents_item {
    width: calc(50% - 7.5px);
    margin-right: 15px;
  }
  .contents_wrap .contents_item:nth-of-type(2n) {
    margin-right: 0;
  }
  .contents_wrap .contents_item img {
    max-width: 100%;
    width: 100%;
  }
}
@media (min-width: 1030px) {
  .contents_wrap .contents_item {
    width: calc(33.3% - 10px);
  }
  .contents_wrap .contents_item:nth-of-type(2n) {
    margin-right: 15px;
  }
  .contents_wrap .contents_item:nth-of-type(3n) {
    margin-right: 0;
  }
}

.banners_sp {
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  max-width: 750px;
  margin: 40px auto 0;
}
.banners_sp .banner_col1 {
  margin-bottom: 10px;
}
.banners_sp .banner_col2 {
  width: calc(50% - 5px);
}
.banners_sp .banner_col2:nth-of-type(2n-1) {
  margin-right: 10px;
}
@media (min-width: 500px) {
  .banners_sp {
    display: none;
  }
}

.btns_wrap {
  display: flex;
  flex-wrap: wrap;
}
.btns_wrap .btns_item_col-3 {
  width: calc(50% - 7.5px);
  margin-right: 15px;
  margin-bottom: 15px;
}
.btns_wrap .btns_item_col-3:nth-of-type(2n) {
  margin-right: 0;
}
@media (min-width: 1030px) {
  .btns_wrap .btns_item_col-3 {
    width: calc(33.3% - 10px);
  }
  .btns_wrap .btns_item_col-3:nth-of-type(2n) {
    margin-right: 15px;
  }
  .btns_wrap .btns_item_col-3:nth-of-type(3n) {
    margin-right: 0;
  }
}
.btns_wrap.sns_icons .btns_item_col-3 {
  width: 100%;
  margin-right: 0;
}
@media (min-width: 500px) {
  .btns_wrap.sns_icons .btns_item_col-3 {
    width: calc(50% - 7.5px);
    margin-right: 15px;
  }
  .btns_wrap.sns_icons .btns_item_col-3:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media (min-width: 1030px) {
  .btns_wrap.sns_icons .btns_item_col-3 {
    width: calc(33.3% - 10px);
  }
  .btns_wrap.sns_icons .btns_item_col-3:nth-of-type(2n) {
    margin-right: 15px;
  }
  .btns_wrap.sns_icons .btns_item_col-3:nth-of-type(3n) {
    margin-right: 0;
  }
}
.btns_wrap .btns_item_col-5 {
  width: calc(50% - 7.5px);
  margin-right: 15px;
  margin-bottom: 15px;
}
.btns_wrap .btns_item_col-5:nth-of-type(2n) {
  margin-right: 0;
}
@media (min-width: 768px) {
  .btns_wrap .btns_item_col-5 {
    width: calc(33.3% - 10px);
  }
  .btns_wrap .btns_item_col-5:nth-of-type(2n) {
    margin-right: 15px;
  }
  .btns_wrap .btns_item_col-5:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media (min-width: 1030px) {
  .btns_wrap .btns_item_col-5 {
    width: calc(20% - 12px);
  }
  .btns_wrap .btns_item_col-5:nth-of-type(3n) {
    margin-right: 15px;
  }
  .btns_wrap .btns_item_col-5:nth-of-type(5n) {
    margin-right: 0;
  }
}

.ad_wrap {
  border-top: 1px solid;
  margin-top: 40px;
}
@media (min-width: 1030px) {
  .ad_wrap {
    display: flex;
    padding: 40px 0;
    border-bottom: 1px solid;
    align-items: center;
  }
  .ad_wrap .left {
    width: 220px;
    height: -moz-fit-content;
    height: fit-content;
  }
  .ad_wrap .left h3 {
    margin: auto;
  }
  .ad_wrap .left h3 a {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
  }
  .ad_wrap .right {
    width: calc(100% - 250px);
    margin-left: 30px;
  }
  .ad_wrap .right a.linkbtn_g.banner_link {
    height: 75px;
    line-height: 75px;
  }
}

.linkbuttons {
  display: flex;
  flex-wrap: wrap;
}
.linkbuttons .linkbuttons_col3 {
  width: 100%;
  margin-bottom: 10px;
}
@media (min-width: 500px) {
  .linkbuttons .linkbuttons_col3 {
    width: calc(50% - 5px);
    margin-right: 10px;
  }
  .linkbuttons .linkbuttons_col3:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media (min-width: 1030px) {
  .linkbuttons .linkbuttons_col3 {
    width: calc(33.333% - 6.6666666667px);
    margin-right: 10px;
  }
  .linkbuttons .linkbuttons_col3:nth-of-type(2n) {
    margin-right: 10px;
  }
  .linkbuttons .linkbuttons_col3:nth-of-type(3n) {
    margin-right: 0;
  }
}

/* -----------------------------------
リスト
----------------------------------- */
ul.ul {
  list-style: disc;
}
ul.ul li {
  margin-left: 30px;
  margin-bottom: 10px;
}

ol.ol li {
  margin-left: 30px;
  margin-bottom: 10px;
}

/* -----------------------------------
メニュー
----------------------------------- */
#mobile_menu {
  display: flex;
  flex-direction: column;
  overflow: scroll;
  padding: 10px 0 50px;
  height: calc(100vh - 60px);
  height: calc(100dvh - 60px);
  width: 100vw;
  width: calc(100vw - (100vw - 100%));
  position: fixed;
  top: calc(-100vh + 60px);
  top: calc(-100dvh + 60px);
  right: 0;
  background: #FAFBFB;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.5s;
  z-index: -1;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#mobile_menu::-webkit-scrollbar {
  display: none;
}
#mobile_menu form.searchbox {
  width: auto;
}
@media (min-width: 1200px) {
  #mobile_menu form.searchbox {
    position: absolute;
    right: -15px;
    bottom: 100px;
    z-index: 10;
    top:-70px;
  }
  #mobile_menu form.searchbox input[type=text] {
    height: 25px;
    padding: 0 8px;
  }
  #mobile_menu form.searchbox button {
    line-height: 25px;
    width: 25px;
    height: 25px;
  }
  #mobile_menu form.searchbox button img {
    vertical-align: text-bottom;
  }
}
#mobile_menu.checked {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  top: 60px;
}
#mobile_menu a.site-contact {
  display: block;
  margin: 40px auto;
  width: 200px;
  padding-top: 40px;
}
#mobile_menu nav.main-navigation {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 13px;
  padding-left: 13px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) and (max-width: 1029px) {
  #mobile_menu nav.main-navigation {
    max-width: 750px;
  }
}
@media (min-width: 1030px) {
  #mobile_menu nav.main-navigation {
    max-width: 980px;
  }
}
@media (min-width: 1200px) {
  #mobile_menu nav.main-navigation {
    max-width: 1050px;
  }
}
#mobile_menu nav.main-navigation ul {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  margin-top: 30px;
}
#mobile_menu nav.main-navigation ul li {
  border-top: 1px solid #C1BEBE;
}
#mobile_menu nav.main-navigation ul li a {
  margin: 0;
  padding: 20px;
  font-size: 16px;
  position: relative;
}
#mobile_menu nav.main-navigation ul li a:after {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
  border-right: 1.3px solid #FAFBFB;
  border-top: 1.3px solid #FAFBFB;
  transform: rotate(45deg);
  right: 30px;
  margin: auto;
  top: 0;
  bottom: 0;
  transition: 0.3s;
}
#mobile_menu nav.main-navigation ul li a:before {
  content: "";
  display: block;
  height: 19px;
  width: 19px;
  background: #1BAF78;
  border-radius: 19px;
  position: absolute;
  right: 21px;
  margin: auto;
  top: 0;
  bottom: 0;
  transition: 0.3s;
}
#mobile_menu nav.main-navigation ul li a:hover {
  color: #1BAF78;
}
#mobile_menu nav.main-navigation ul li:last-of-type {
  border-bottom: 1px solid #C1BEBE;
}
#mobile_menu nav.main-navigation ul.sub-menu li {
  margin: 0;
  border-top: 1px dashed #C1BEBE;
}
#mobile_menu nav.main-navigation ul.sub-menu li:last-of-type {
  border-bottom: none;
}
#mobile_menu nav.main-navigation ul.sub-menu li a {
  padding-left: 40px;
}
#mobile_menu nav.main-navigation ul.sub-menu li a:before {
  display: none;
}
@media (min-width: 1200px) {
  #mobile_menu nav.main-navigation {
    width: 100%;
    max-width: 100%;
  }
  #mobile_menu nav.main-navigation ul {
    margin: 15px 0 0 auto;
  }
}
@media (min-width: 1200px) {
  #mobile_menu {
    display: block;
    height: auto;
    width: 100%;
    position: relative;
    top: auto;
    right: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition: 0.5s;
    z-index: 1;
    padding-bottom: 13px;
    overflow: visible;
  }
  #mobile_menu.checked {
    top: auto;
  }
  #mobile_menu nav.main-navigation ul {
    flex-direction: row;
  }
  #mobile_menu nav.main-navigation ul li {
    border-top: none;
    width: calc(20% - 6.8571428571px);
    margin-right: 8px;
  }
  #mobile_menu nav.main-navigation ul li:last-of-type {
    border-bottom: none;
    margin-right: 0;
  }
  #mobile_menu nav.main-navigation ul li a {
    background: #F4F4F4;
    color: #000000;
    text-align: center;
    font-size: 14px;
    border-radius: 4px;
    padding: 17px 0;
  }
  #mobile_menu nav.main-navigation ul li a:before, #mobile_menu nav.main-navigation ul li a:after {
    display: none;
  }
  #mobile_menu nav.main-navigation ul li a:hover, #mobile_menu nav.main-navigation ul li a.active {
    background: #1BAF78;
    color: #FAFBFB;
  }
}

section#mv {
  padding: 0;
  margin-top: 20px;
}
@media (min-width: 1200px) {
  section#mv .container {
    width: 100%;
    max-width: 1400px;
    padding-left: 28px;
    padding-right: 28px;
  }
}
section#mv .news .news_title {
  font-weight: bold;
  color: #E94820;
  font-size: 90%;
}
section#mv .news .news_wrap {
  overflow: hidden;
  height: 65px;
  margin-bottom: 15px;
}
section#mv .news .news_wrap ul.mv_news {
  position: relative;
  margin: 0;
}
section#mv .news .news_wrap ul.mv_news li.mv_news_item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-right: 0;
  opacity: 0;
  transform: translateY(0px);
  perspective: 1000;
  backface-visibility: hidden;
}
section#mv .news .news_wrap ul.mv_news li.mv_news_item a {
  display: flex;
  background: #FDECE8;
  padding: 20px 40px 20px 15px;
  height: 65px;
  color: #000000;
  border-radius: 3px;
  line-height: 1.6em;
  font-size: 85%;
  position: relative;
  overflow: hidden;
}
section#mv .news .news_wrap ul.mv_news li.mv_news_item a:after {
  content: "";
  width: 6px;
  height: 6px;
  display: block;
  position: absolute;
  border-right: 1px solid #000000;
  border-top: 1px solid #000000;
  transform: rotate(45deg);
  margin: auto;
  top: 0;
  bottom: 0;
  right: 20px;
}
section#mv .news .news_wrap ul.mv_news li.mv_news_item a .date {
  font-family: rustica, "BIZ UDGothic", sans-serif;
  display: none;
  letter-spacing: 0.1em;
  margin-right: 20px;
  line-height: 2em;
}
@media (min-width: 768px) {
  section#mv .news .news_wrap ul.mv_news li.mv_news_item a .date {
    display: block;
  }
}
section#mv .news .news_wrap ul.mv_news li.mv_news_item a .move_wrap {
  overflow: hidden;
}
section#mv .news .news_wrap ul.mv_news li.mv_news_item a .move_inner {
  white-space: nowrap;
  transition: transform 5s linear;
  width: -moz-fit-content;
  width: fit-content;
}

#mv_back {
  background: #cccccc;
  background-image: url("/share/imgs/mv.jpg");
  /*background-position: left;*/
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 300px;
  border-radius: 10px;
  position: relative;
}
#mv_back #mv_menu {
  display: none;
  background: #1BAF78;
  color: #ffffff;
  font-size: 80%;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 20px;
  right: 20px;
  border-radius: 13px;
  padding: 30px;
  box-shadow: 4px 4px 10px -4px #000000c4;
}
#mv_back #mv_menu img#icon_staff {
  position: absolute;
  width: 17px;
  top: 15px;
  right: 15px;
}
#mv_back #mv_menu p.sub {
  font-size: 82%;
  margin-bottom: 0;
}
#mv_back #mv_menu p.title {
  color: #FFFF00;
  font-weight: bold;
  font-size: 145%;
  margin-bottom: 10px;
}
#mv_back #mv_menu ul {
  margin: 0;
}
#mv_back #mv_menu ul li a {
  display: block;
  color: #ffffff;
  line-height: 2.2em;
  position: relative;
  padding-left: 27px;
}
#mv_back #mv_menu ul li a:after {
  content: "";
  width: 4px;
  height: 4px;
  display: block;
  position: absolute;
  border-left: 1.2px solid #000000;
  border-bottom: 1.2px solid #000000;
  transform: rotate(45deg);
  left: 6px;
  margin: auto;
  top: 0;
  bottom: 0;
  transition: 0.3s;
}
#mv_back #mv_menu ul li a:before {
  content: "";
  display: block;
  height: 16px;
  width: 16px;
  background: #ffffff;
  border-radius: 16px;
  position: absolute;
  left: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  transition: 0.3s;
}
#mv_back #mv_menu ul li a:hover:after {
  left: 2px;
}
#mv_back #mv_menu ul li a:hover:before {
  left: -4px;
}
#mv_back .text {
  color: white;
  position: absolute;
  top: 30px;
  left: 30px;
}
#mv_back .text p {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ＭＳ ゴシック", sans-serif;
  font-size: 30px;
  letter-spacing: 0.4em;
  line-height: 1.5em;
}
@media (min-width: 1030px) {
  #mv_back {
    height: 500px;
  }
  #mv_back .text {
    left: 25%;
    top: 25%;
  }
  #mv_back #mv_menu {
    display: block;
  }
}
@media (min-width: 1200px) {
  #mv_back {
    height: 600px;
  }
}
#mv_back .banners {
  position: absolute;
  bottom: 0;
  margin: auto;
  right: 0;
  left: 0;
  display: none;
}
@media (min-width: 500px) {
  #mv_back .banners {
    display: block;
    width: 300px;
  }
}
@media (min-width: 768px) {
  #mv_back .banners {
    width: 80%;
  }
}
#mv_back .banners .splide1 {
  height: 80px;
}
#mv_back .banners .splide1 .splide__pagination {
  display: none;
}
#mv_back .banners ul.splide__list li a {
  display: block;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
#mv_back .banners ul.splide__list li a img {
  width: 270px;
}
#mv_back .banners .splide__arrow {
  background: white;
  opacity: 1;
  top: 33%;
  width: 20px;
  height: 20px;
}
#mv_back .banners .splide__arrow svg {
  height: 0.5em;
  width: 0.5em;
}
#mv_back .banners .splide__arrow--prev {
  left: -2.5em;
}
#mv_back .banners .splide__arrow--next {
  right: -2.5em;
}
@media (min-width: 1200px) {
  #mv_back .banners {
    width: 980px;
  }
  #mv_back .banners ul.splide__list li a img {
    width: 310px;
  }
}

.fadeInDown {
  opacity: 0;
}

.fadeInDown.run {
  animation: fadeInDown 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

.fadeOutDown {
  opacity: 1;
}

.fadeOutDown.run {
  animation: fadeOutDown 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

.fadeInUp {
  opacity: 0;
}

.fadeInUp.run {
  animation: fadeInUp 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

.fadeOutUp {
  opacity: 1;
}

.fadeOutUp.run {
  animation: fadeOutUp 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    transform: translateY(30px);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    transform: translateY(-30px);
  }
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@media (min-width: 1030px) {
  #mv_wrap .news {
    position: absolute;
    z-index: 10;
    width: 50%;
    background: #FAFBFB;
    padding-right: 5px;
    height: 80px;
    max-width: 1030px;
  }
  #mv_wrap .news:before {
    content: "";
    display: block;
    height: 80px;
    width: 40px;
    background-image: url("../img/news_radius_top.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center left;
    position: absolute;
    left: calc(100% - 5px);
    z-index: 10;
  }
  #mv_wrap .news:after {
    content: "";
    display: block;
    height: 20px;
    width: 20px;
    background-image: url("../img/news_radius_bottom.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top left;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 10;
  }
  #mv_wrap .news .news_wrap {
    height: 80px;
    position: absolute;
    width: calc(100% - 250px);
    top: 0;
    left: 169px;
  }
  #mv_wrap .news .news_title p {
    line-height: 60px;
    margin-bottom: 0;
  }
  #mv_wrap .news .news_arrow {
    display: block;
    height: 64px;
    width: 56px;
    position: absolute;
    top: 0;
    right: 15px;
  }
  #mv_wrap .news .news_arrow:before {
    content: "";
    width: 80%;
    height: 1px;
    display: block;
    background: #000000;
    margin: auto;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    position: absolute;
  }
  #mv_wrap .news .news_arrow .news_arrow_btn {
    height: 30px;
    width: 100%;
    position: absolute;
    cursor: pointer;
  }
  #mv_wrap .news .news_arrow .news_arrow_btn:before {
    margin: auto;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
  }
  #mv_wrap .news .news_arrow .news_arrow_btn#news_arrow_top {
    top: 0;
  }
  #mv_wrap .news .news_arrow .news_arrow_btn#news_arrow_top:before {
    content: "";
    width: 6px;
    height: 6px;
    display: block;
    position: absolute;
    border-right: 1px solid #000000;
    border-top: 1px solid #000000;
    transform: rotate(-45deg);
  }
  #mv_wrap .news .news_arrow .news_arrow_btn#news_arrow_bottom {
    bottom: 0;
  }
  #mv_wrap .news .news_arrow .news_arrow_btn#news_arrow_bottom:before {
    content: "";
    width: 6px;
    height: 6px;
    display: block;
    position: absolute;
    border-right: 1px solid #000000;
    border-bottom: 1px solid #000000;
    transform: rotate(45deg);
  }
}
.news_wrap a.news_item {
  display: block;
  background: #F4F4F4;
  color: #000000;
  margin-bottom: 10px;
  padding: 20px 50px 20px 20px;
  border-radius: 4px;
  line-height: 1.8em;
  position: relative;
}
.news_wrap a.news_item:after {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
  border-right: 1.3px solid #ffffff;
  border-top: 1.3px solid #ffffff;
  transform: rotate(45deg);
  right: 30px;
  margin: auto;
  top: 0;
  bottom: 0;
  transition: 0.3s;
}
.news_wrap a.news_item:before {
  content: "";
  display: block;
  height: 19px;
  width: 19px;
  background: #1BAF78;
  border-radius: 19px;
  position: absolute;
  right: 21px;
  margin: auto;
  top: 0;
  bottom: 0;
  transition: 0.3s;
}
.news_wrap a.news_item .news_container {
  display: flex;
  flex-wrap: wrap;
}
.news_wrap a.news_item .category span.news_category {
  display: block;
  background: #1BAF78;
  color: white;
  font-size: 13px;
  line-height: 1;
  padding: 4px 10px;
  border-radius: 20px;
  word-break: keep-all;
  margin-top: 3px;
}
.news_wrap a.news_item .date {
  font-size: 90%;
  font-family: rustica, "BIZ UDGothic", sans-serif;
  letter-spacing: 0.1em;
  margin-right: 20px;
  transition: 0.3s;
}
.news_wrap a.news_item .title {
  width: 100%;
}
.news_wrap a.news_item:hover {
  background: #FAFBFB;
  box-shadow: 2px 2px 8px #00000021;
}
.news_wrap a.news_item:hover .date {
  color: #1BAF78;
}
@media (min-width: 1030px) {
  .news_wrap a.news_item {
    /* padding: 40px 70px 40px 50px; */
    padding: 25px 70px 25px 50px;
  }
  .news_wrap a.news_item:after {
    right: 40px;
  }
  .news_wrap a.news_item:before {
    right: 31px;
  }
  .news_wrap a.news_item .news_container {
    flex-wrap: nowrap;
  }
  .news_wrap a.news_item .date {
    margin-right: 0;
    flex-wrap: nowrap;
    width: 140px;
  }
  .news_wrap a.news_item .category {
    margin-left: 30px;
    width: -moz-fit-content;
    width: fit-content;
  }
  .news_wrap a.news_item .title {
    width: auto;
    margin-left: 30px;
    font-size: 90%;
  }
}

.photo_container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}

a.photo_item {
  display: block;
  color: #000000;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 30px;
}
a.photo_item figure {
  margin: 0 0 10px;
  border-radius: 6px;
  overflow: hidden;
}
a.photo_item figure img {
  vertical-align: bottom;
}
@media (min-width: 500px) {
  a.photo_item {
    width: calc(50% - 7.5px);
    margin-right: 15px;
  }
  a.photo_item:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media (min-width: 1030px) {
  a.photo_item {
    width: calc(25% - 11.25px);
  }
  a.photo_item:nth-of-type(2n) {
    margin-right: 15px;
  }
  a.photo_item:nth-of-type(4n) {
    margin-right: 0;
  }
}

form.searchbox {
  width: 100%;
}
form.searchbox input[type=text] {
  background: #EBEBEC;
  border: none;
  font-family: "BIZ UDGothic", sans-serif;
  box-shadow: none;
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  width: calc((100% - 40px) - 10px);
  border-radius: 4px;
}
form.searchbox input[type=text]:focus {
  outline: solid 2px #1BAF78;
}
form.searchbox input[type=text]::-moz-placeholder {
  color: #7D7D7D;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: bold;
}
form.searchbox input[type=text]:-ms-input-placeholder {
  color: #7D7D7D;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: bold;
}
form.searchbox input[type=text]::placeholder {
  color: #7D7D7D;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: bold;
}
form.searchbox button {
  background: #1BAF78;
  border: none;
  box-shadow: none;
  width: 40px;
  margin: 0;
  height: 40px;
  vertical-align: bottom;
  border-radius: 4px;
  cursor: pointer;
}
form.searchbox button img {
  width: 27px;
  vertical-align: middle;
  pointer-events: none;
}
@media (min-width: 1030px) {
  form.searchbox input[type=text],
form.searchbox button {
    height: 50px;
    line-height: 50px;
  }
  form.searchbox input[type=text] {
    padding: 0 30px;
    width: calc(100% - 60px);
  }
  form.searchbox button {
    width: 50px;
  }
  form.searchbox button img {
    width: 32px;
  }
}

.link_btn_wrap {
  display: flex;
  flex-wrap: wrap;
}
.link_btn_wrap a.link_btn {
  display: block;
  background: #F4F4F4;
  color: #565353;
  text-align: center;
  border-radius: 4px;
  width: calc(50% - 5px);
  padding: 13px 0;
  margin-right: 10px;
  margin-bottom: 10px;
}
.link_btn_wrap a.link_btn.active, .link_btn_wrap a.link_btn:hover {
  background: #1BAF78;
  color: #FAFBFB;
}
.link_btn_wrap a.link_btn:nth-of-type(2n) {
  margin-right: 0;
}
@media (min-width: 500px) {
  .link_btn_wrap a.link_btn {
    width: calc(33% - 6.6666666667px);
  }
  .link_btn_wrap a.link_btn:nth-of-type(2n) {
    margin-right: 10px;
  }
  .link_btn_wrap a.link_btn:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media (min-width: 1030px) {
  .link_btn_wrap a.link_btn {
    width: calc(25% - 7.5px);
    padding: 17px 0;
  }
  .link_btn_wrap a.link_btn:nth-of-type(3n) {
    margin-right: 10px;
  }
  .link_btn_wrap a.link_btn:nth-of-type(4n) {
    margin-right: 0;
  }
}

.f_tabs_wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.f_tabs_wrap .tab_col {
  width: 25%;
  border-right: 1.2px solid #000000;
}
.f_tabs_wrap .tab_col:first-of-type {
  border-left: 1.2px solid #000000;
}
@media (min-width: 768px) {
  .f_tabs_wrap {
    justify-content: space-between;
  }
}
@media (min-width: 1030px) {
  .f_tabs_wrap {
    margin-top: 60px;
  }
}
.f_tabs_wrap .f_tab {
  background: transparent;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  height: 60px;
  border-radius: 8px;
  font-size: 90%;
  cursor: pointer;
  display: flex;
  position: relative;
  transition: 0.3s;
}
@media (min-width: 1030px) {
  .f_tabs_wrap .f_tab {
    background: #F4F4F4;
    color: #565353;
  }
}
.f_tabs_wrap .f_tab .triangle {
  background: #1BAF78;
  height: calc(tan(60deg) * 10px / 2);
  width: 10px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  margin: auto;
  right: 0;
  left: 0;
  bottom: -8px;
  opacity: 0;
  transition: 0.3s;
  z-index: -1;
}
.f_tabs_wrap .f_tab p {
  line-height: 1.2em;
  margin: auto;
}
.f_tabs_wrap .f_tab p span {
  display: block;
}
@media (min-width: 500px) {
  .f_tabs_wrap .f_tab p span {
    display: inline;
  }
}
.f_tabs_wrap .f_tab.f-active, .f_tabs_wrap .f_tab.f-active2 {
  background: #1BAF78;
  color: #ffffff;
}
.f_tabs_wrap .f_tab.f-active .triangle, .f_tabs_wrap .f_tab.f-active2 .triangle {
  opacity: 1;
}
.f_tabs_wrap .f_tab:hover {
  background: #1BAF78;
  color: #ffffff;
}

.f_panels_wrap {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) and (max-width: 1029px) {
  .f_panels_wrap {
    max-width: 750px;
  }
}
@media (min-width: 1030px) {
  .f_panels_wrap {
    max-width: 980px;
  }
}
@media (min-width: 1200px) {
  .f_panels_wrap {
    max-width: 1050px;
  }
}
.f_panels_wrap .f_panel2 {
  display: none;
  padding: 0 15px;
}
.f_panels_wrap .f_panel2.is-show {
  display: block;
}
.f_panels_wrap .f_panel1 {
  display: none;
  background: url("../img/bg01.png");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 300px;
}
@media (min-width: 1030px) {
  .f_panels_wrap .f_panel1 {
    background-size: contain;
  }
}
.f_panels_wrap .f_panel1.is-show {
  display: block;
}
.f_panels_wrap .f_panel1 ul.menu_btns {
  display: flex;
  margin: 0 15px;
  flex-wrap: wrap;
}
.f_panels_wrap .f_panel1 ul.menu_btns li {
  width: calc(24% - 6.6666666667px);
  margin-right: 10px;
  margin-bottom: 10px;
  height: 100px;
}
.f_panels_wrap .f_panel1 ul.menu_btns li.sp_colall{
  width:100%;
  margin-bottom:-50px;
}
.f_panels_wrap .f_panel1 ul.menu_btns li:nth-of-type(4n) {
  margin-right: 0;
}
@media (min-width: 768px) {
  .f_panels_wrap .f_panel1 ul.menu_btns li {
    width: calc(20% - 8px);
  }
  .f_panels_wrap .f_panel1 ul.menu_btns li:nth-of-type(4n) {
    margin-right: 10px;
  }
  .f_panels_wrap .f_panel1 ul.menu_btns li:nth-of-type(6n) {
    margin-right: 0;
  }
}
@media (min-width: 1030px) {
  .f_panels_wrap .f_panel1 ul.menu_btns li {
    width: calc(16.5% - 12px);
    margin-right: 15px;
    margin-bottom: 15px;
    height: 120px;
  }
  .f_panels_wrap .f_panel1 ul.menu_btns li.col2 {
    width: calc(49.5% - 12px);
    height: 80px;
  }
  .f_panels_wrap .f_panel1 ul.menu_btns li.col3 {
    width: calc(33% - 12px);
    height: 80px;
  }
  .f_panels_wrap .f_panel1 ul.menu_btns li:nth-of-type(3n) {
    margin-right: 15px;
  }
  .f_panels_wrap .f_panel1 ul.menu_btns li:nth-of-type(6n) {
    margin-right: 0;
  }
}
.f_panels_wrap .f_panel1 ul.menu_btns li a {
  display: block;
  background: white;
  color: #000000;
  border-radius: 8px;
  text-align: center;
  padding: 15px 5px;
  font-size: 14px;
  word-break: keep-all;
  font-weight: bold;
  box-shadow: 2px 2px 10px #0000002e;
  line-height: 1.4;
  height: 100%;
}
@media (min-width: 500px) {
  .f_panels_wrap .f_panel1 ul.menu_btns li a {
    font-size: 95%;
    letter-spacing: 0em;
  }
}
.f_panels_wrap .f_panel1 ul.menu_btns li a.blank {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 80%;
}
.f_panels_wrap .f_panel1 ul.menu_btns li a .menu_btn_inner {
  transition: 0.3s;
}
.f_panels_wrap .f_panel1 ul.menu_btns li a img {
  height: 46px;
}
@media (min-width: 1030px) {
  .f_panels_wrap .f_panel1 ul.menu_btns li a {
    padding: 20px 5px;
  }
  .f_panels_wrap .f_panel1 ul.menu_btns li a img {
    height: 55px;
  }
}
.f_panels_wrap .f_panel1 ul.menu_btns li a:hover .menu_btn_inner {
  opacity: 0.6;
}
.f_panels_wrap .f_panel1 ul.menu_btns li a.blue {
  background: #00A1CF;
  color: #ffffff;
}
.f_panels_wrap .f_panel1 ul.menu_btns li a.blue:hover {
  background: #2abde5;
}
.f_panels_wrap .f_panel1 ul.menu_btns li a.blue:hover .menu_btn_inner {
  opacity: 1;
}
.f_panels_wrap .f_panel1 ul.menu_btns li a.orange {
  background: #F39D4C;
  color: #ffffff;
}
.f_panels_wrap .f_panel1 ul.menu_btns li a.orange:hover {
  background: #ffbc7d;
}
.f_panels_wrap .f_panel1 ul.menu_btns li a.orange:hover .menu_btn_inner {
  opacity: 1;
}
.f_panels_wrap .f_panel1 ul.menu_btns li a.pink {
  background: #EF858C;
  color: #ffffff;
}
.f_panels_wrap .f_panel1 ul.menu_btns li a.pink:hover {
  background: #ffc2c6;
}
.f_panels_wrap .f_panel1 ul.menu_btns li a.pink:hover .menu_btn_inner {
  opacity: 1;
}

/* -----------------------------------
上に戻るボタン
----------------------------------- */
.footer_btn_wrap {
  position: absolute;
  display: flex;
  left: 10px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  z-index: 2;
  /*はじめは非表示*/
  position: fixed;
  opacity: 0;
  top: calc(100% - 50px);
  transform: translateY(100px);
}
@media (min-width: 768px) and (max-width: 1029px) {
  .footer_btn_wrap {
    max-width: 750px;
  }
}
@media (min-width: 1030px) {
  .footer_btn_wrap {
    max-width: 980px;
  }
}
@media (min-width: 1200px) {
  .footer_btn_wrap {
    max-width: 1050px;
  }
}
.footer_btn_wrap a {
  display: block;
  height: 50px;
  width: calc(25% - 12.5px);
  z-index: 20;
  background: #666666;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  font-family: "BIZ UDGothic", sans-serif;
  font-size: 11px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  padding-top: 9px;
  margin-right: 10px;
  line-height: 1.4em;
}
.footer_btn_wrap a#totop {
  margin-right: 0;
}
@media (min-width: 500px) {
  .footer_btn_wrap a {
    width: 90px;
  }
}
.footer_btn_wrap a.nav, .footer_btn_wrap a.ai {
  background: #1BAF78;
}
.footer_btn_wrap a img {
  height: 19px;
}
@media (min-width: 500px) {
  .footer_btn_wrap {
    margin-right: auto;
    margin-left: auto;
    right: 0;
    left: 0;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (min-width: 768px) {
  .footer_btn_wrap {
    right: 10%;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .footer_btn_wrap a.home, .footer_btn_wrap a.nav, .footer_btn_wrap a.ai {
    display: none;
  }
}
@media (max-width: 1200px) {
  .ul-widget-main-window{
    display:none;
  }
}
@media (max-width: 499px) {
  section {
    padding: 30px 0;
  }
  a.linkbtn_g {
    background: #fafbfb;
  }
  #googlemap_wrap {
    /* height: 0px; */
  }
  .ul-widget-main-window{
    display:none;
  }
  .btns_wrap.sns_icons .btns_item_col-3 {
    width: 50%;
  }
  .linkbuttons .linkbuttons_col3 {
    /* width: 45%; */
    margin-left: 10px;
    font-size: 1em;
  }
  #mv_back {
    height:200px;
  }
  .f_panels_wrap .f_panel1 ul.menu_btns li {
    margin-bottom: -15px;
  }
  .menu_btn_inner{
    font-size:0.7em;
  }
  .f_panels_wrap .f_panel1 ul.menu_btns li a {
    padding: 5px 5px;
  }
.f_panels_wrap .f_panel1 ul.menu_btns li a {
  height: auto;
}
}
section#information div.container ol,section#information div.detail table{
  margin: 0px;
}
section#information div.detail a{
  text-decoration: underline;
}
section#information div.detail a:hover {
  /* color: #0b774f; */
  text-decoration: none;
}

section#information div.container ol,section#information div.detail ul{
list-style:disc;
padding-left:25px;
}
section#information div.container ol,section#information div.detail ol{
list-style:auto;
padding-left:25px;
}
section#information div.container ol,section#information div.detail div{
line-height:2em;
}
/*
 a{
padding-top:100px;margin-top:-100px;
} */



@media print {
  #site-footer,#masthead,.searchbox{
    display:none;
  }
}
@media (min-width: 500px){
	#question{
	  flex-wrap:nowrap;
	}
}

div#ulAiWidget .ul-widget-main-window{
  display:block
}

@media (max-width: 1030px) {
  .detail table{
    max-width:100%;
    display: grid;
    overflow-x: auto;
    height: auto !important;
  }
  .detail tbody{
    display:table;
  }
  .detail td,.detail tr,.detail th{
      white-space: nowrap;
   }
}

@media (max-width: 499px) {
  #mv_back {
    background-image: url("/share/imgs/mv_sp.jpg");
    background-position: left;
  }
}

@media (max-width: 500px) {
  .splide2 .splide__pagination {
    height:50px;
  }
}
.news_wrap{
  margin-bottom: 2.5rem;
}
@media (max-width:450px){
  #open_accessibility_menu img{
    width:145px !important;
  }
}
/*クラブチーム用CSS*/
section#culture {
  overflow: hidden;
  padding: 15px 0;

}
section#sports {
  overflow: hidden;
  padding: 15px 0;
}
@media (min-width: 1030px) {
    a.linkbtn-sports {
        padding: 22px 60px 22px 40px;
        box-shadow: none;
    }
}
a.linkbtn-sports {
    display: block;
    color: white;
    background: #1BAF78;
    text-align: left;
    padding: 18px 40px 18px 40px;
    width: fit-content;
    border-radius: 4px;
    /*margin: 40px auto 40px 0;*/
    position: relative;
    line-height: 1.6em;
    box-shadow: 0 0 10px #0000003d;
}
.h_wrap-sports {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.h_wrap-sports h3 {
  margin: 0;
}

.h_wrap-sports .linkbtn-sports-2 {
  width: auto;         /* デフォルトの100%幅を解除 */
  padding: 10px 20px;  /* コンパクトに */
  margin-right: 12px;          /* デフォルトの余白を解除 */
  font-size: 90%;
}
@media (min-width: 768px) {
    a.linkbtn-sports-2.small {
        width: 25%;
    }
}
a.linkbtn-sports-2:before {
    content: "";
    display: block;
    height: 18px;
    width: 18px;
    background: #ffffff;
    border-radius: 18px;
    position: absolute;
    right: 27px;
    margin: auto;
    top: 0;
    bottom: 0;
    transition: 0.3s;
}
a.linkbtn-sports-2:after {
    content: "";
    width: 5px;
    height: 5px;
    display: block;
    position: absolute;
    border-right: 1.3px solid #1BAF78;
    border-top: 1.3px solid #1BAF78;
    transform: rotate(45deg);
    right: 34px;
    margin: auto;
    top: 0;
    bottom: 0;
    transition: 0.3s;
}
@media (min-width: 1030px) {
    a.linkbtn-sports-2 {
        padding: 22px 60px 22px 40px;
        box-shadow: none;
    }
}
a.linkbtn-sports-2 {
    display: block;
    color: white;
    background: #1BAF78;
    text-align: left;
    padding: 18px 52px 18px 30px;
    width: fit-content;
    border-radius: 4px;
    /*margin: 40px auto 40px 0;*/
    position: relative;
    line-height: 1.6em;
    box-shadow: 0 0 10px #0000003d;
}
h3.search-culture{
  margin-top: 5px;
}

/* 清水追記分 */
@media (max-width: 768px) {
  .linkbtn-sports-sp {
    padding: 9px 20px 9px 20px !important;
  }

  .fs-15 {
    font-size: 15px !important;
  }

  .fs-11 {
    font-size: 11px !important;
  }

  .fs-13 {
    font-size: 13px !important;
  }

  .fs-07 {
    font-size: 0.7em !important;
  }

  .linkbtn-sports-2-sp:before {
    right: 5px !important;
  }

  .linkbtn-sports-2-sp:after {
    right: 12px !important;
  }

  .linkbtn-sports-2-sp {
    padding: 10px 28px 10px 10px !important;
  }

  .menu_btns-spa {
    height: 95px !important;
  }

  .menu_btns-spli {
    margin-bottom: 4px !important;
  }

  .link_btn_wrap-sp {
    margin-left: 16px !important;
    gap: 14px !important;
  }

  .fs-12 {
    font-size: 12px !important;
  }

  .linkbtn-sports-2-sp-margin {
    margin-left: auto;
    margin-right: 16px;
  }
}

/* コンテナ：ボタン群 */
.sport_btns{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)); /* ← 変更 */
  gap: 10px;
  padding: 0 7px;
  margin: 0;
}

/* ブレークポイントごとの列数 */
@media (min-width: 768px){
  .sport_btns{ grid-template-columns: repeat(5, minmax(0, 1fr)); } /* ← 変更 */
}
@media (min-width: 1030px){
  .sport_btns{ grid-template-columns: repeat(6, minmax(0, 1fr)); } /* ← 変更 */
}

/* 各ボタン */
.sport_btn{
  display: block;
  background: #fff;
  color: #000;
  border-radius: 8px;
  text-align: center;
  padding: 15px 5px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  /* word-break: keep-all;  ← 削除 */
  overflow-wrap: anywhere;   /* ← 追加：日本語でも折り返す */
  word-break: normal;        /* ← 追加 */
  box-shadow: 2px 2px 10px #0000002e;
  text-decoration: none;
  min-height: 100px;
  min-width: 0;              /* ← 追加：グリッド内での縮小を許可 */
}

@media (min-width: 1030px){
  .sport_btn{ min-height: 120px; padding: 20px 5px; }
}

/* 画像調整 */
.sport_btn_inner img{
  max-width: 60px;
  height: auto;
  margin-bottom: 5px;
}

.button-subete {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    height: 100%;
}

.active {
    background: #1BAF78;
    color: #FAFBFB;
}

.sport_btn:hover {
    background: #1BAF78 !important;
    color: #FAFBFB !important;
}

/*清水さんへ。
　ここから下、森下追記しました。
　ここより上を修正してください。*/
@media (min-width: 768px) {
    a.linkbtn-sports-2.small-club {
        width: 15%;
    }
}
a.linkbtn-sports-2 {
    display: block;
    color: white;
    background: #1BAF78;
    text-align: left;
    padding: 18px 52px 18px 30px;
    width: fit-content;
    border-radius: 4px;
    /* margin: 40px auto 40px 0; */
    position: relative;
    line-height: 1.6em;
    box-shadow: 0 0 10px #0000003d;
}
.link_btn_wrap.activity{
    justify-content: center;
    gap: 80px;
    margin-top: 50px;
}