@charset "UTF-8";
/*************** message page ****************/
/*================================================== 
  General
==================================================*/
/*************** html ****************/
html {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", YuGothic, "Yu Gothic medium", Meiryo, "sans-serif";
  line-height: 1.8;
  font-weight: 500;
  color: #000000;
  position: relative;
}
@media (max-width: 575.8px) {
  html {
    font-size: 14px;
  }
}
@media (min-width: 575.9px) {
  html {
    font-size: 14px;
  }
}
@media (min-width: 767.8px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 18px;
  }
}

/*************** body ****************/
body {
  min-width: 280px;
}

/*************** width ****************/
.content-width {
  width: 95%;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 1200px) {
  .content-width {
    width: 1200px;
  }
}

/*************** font ****************/
.font-ja {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", YuGothic, "Yu Gothic medium", Meiryo, "sans-serif";
}

.font-en {
  font-family: "Barlow Condensed", Arial, Helvetica, "sans-serif";
}

/*================================================== 
  Parts
==================================================*/
/*************** form ****************/
input[type=text],
input[type=email],
input[type=tel],
input[type=password],
textarea,
select {
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  text-indent: 0.01px;
  text-overflow: "";
  padding: 0.75em;
  border: solid 1px #E7E7E7;
  background: #FFF;
  box-shadow: inset 1px 1px 2px 0px rgba(0, 0, 0, 0.2);
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.5s;
  border-radius: 4px;
  max-width: 100%;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=password]:focus,
textarea:focus,
select:focus, input[type=text]:hover,
input[type=email]:hover,
input[type=tel]:hover,
input[type=password]:hover,
textarea:hover,
select:hover {
  border: solid 1px #00C4FF;
  box-shadow: 0px 0px 5px 0px rgba(233, 165, 102, 0.4);
}

input[type=radio]:focus {
  border: solid 1px #00C4FF;
  box-shadow: 0px 0px 5px 0px rgba(233, 165, 102, 0.4);
}

input[type=checkbox] {
  border: solid 1px #B9B9B9;
  vertical-align: -8px;
  position: relative;
  margin-right: 5px;
  border-radius: 3px;
  width: 1.5em;
  height: 1.5em;
  background: #B9B9B9;
  background: linear-gradient(to bottom, #FFF 0%, #B9B9B9 100%);
}
input[type=checkbox]:checked {
  background: #999999;
  background: linear-gradient(to bottom, #999999 0%, #333333 100%);
  border: solid 1px #111111;
}
input[type=checkbox]:checked::before {
  display: block;
  content: "";
  width: 10px;
  height: 4px;
  position: absolute;
  left: 1px;
  top: 1em;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  background: #FFF;
  transform: rotate(45deg);
  transform-origin: right center;
}
input[type=checkbox]:checked::after {
  display: block;
  content: "";
  width: 1em;
  height: 4px;
  position: absolute;
  left: 1px;
  top: 1em;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  background: #FFF;
  transform: rotate(-53deg);
  transform-origin: left center;
}

/*************** button ****************/
*:has(> .btn-type01), *:has(> .btn-type02), *:has(> .btn-type03) {
  width: 24rem;
  max-width: 80%;
  margin-right: auto;
  margin-left: auto;
}

.btn-type01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  border-style: solid;
  border-width: 1px;
  position: relative;
  background: #A044BB;
  color: #FFF;
  width: 100%;
  height: 4em;
}
.btn-type01::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  background: #FFF;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  position: absolute;
  top: 50%;
  right: 0.5em;
  transform: translateY(-50%);
}

.btn-type02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  border-style: solid;
  border-width: 1px;
  position: relative;
  border: solid 1px #FFF;
  color: #FFF;
  width: 100%;
  height: 4em;
}
.btn-type02::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  background: #FFF;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  position: absolute;
  top: 50%;
  right: 0.5em;
  transform: translateY(-50%);
}

.btn-type03 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  border-style: solid;
  border-width: 1px;
  position: relative;
  background: #333333;
  color: #FFF;
  width: 100%;
  height: 4em;
}
.btn-type03::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  background: #FFF;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  position: absolute;
  top: 50%;
  right: 0.5em;
  transform: translateY(-50%);
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 1rem 5%;
}

/*************** icon ****************/
.icon-wrap {
  font-size: 0;
}

.icon-txt {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  padding: 0.25em 0.5em;
  font-size: max(0.67rem, 10px);
}
.icon-txt.icon-new {
  color: #00C4FF;
  font-family: "Barlow Condensed", Arial, Helvetica, "sans-serif";
}
.icon-txt.icon-cat {
  color: #A044BB;
}
.icon-txt.icon-required {
  color: #FF3454;
}
.icon-txt.icon-arbitrary {
  color: #999999;
}

/*************** link ****************/
.link-txt {
  display: inline-block;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .link-txt:hover {
    text-decoration: none;
    opacity: 1;
  }
}
.link-txt.other-site::after {
  display: inline-block;
  content: "";
  width: 0.5em;
  max-width: 20px;
  height: 0.5em;
  max-height: 20px;
  background: url(../img/common/icon_other-site.png) no-repeat top left/contain;
  position: absolute;
  top: 50%;
  right: -0.75em;
  transform: translateY(-50%);
}

li .link-txt {
  position: relative;
  margin-left: 0.75em;
}
li .link-txt::before {
  display: inline-block;
  content: "";
  width: 0.5em;
  height: 0.5em;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  background: currentColor;
  position: absolute;
  top: 50%;
  left: -0.75em;
  transform: translateY(-50%);
}

/*************** title ****************/
.secttl01 {
  text-align: center;
  font-weight: bold;
  font-size: 1.43rem;
  margin-bottom: 1.75em;
  position: relative;
}
.secttl01::after {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 0.5rem;
  background: #00C4FF;
  border-radius: 50vh;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 105%;
}

.secttl02 {
  font-size: 1.43rem;
  margin-bottom: 1.5em;
  font-weight: bold;
  padding: 0.25em 0.5em;
  border-left: solid 6px #00C4FF;
  border-bottom: solid 1px #B9B9B9;
}

/*************** table ****************/
table.tbl-data {
  border-right: solid 1px #B9B9B9;
  border-bottom: solid 1px #B9B9B9;
}
table.tbl-data th {
  background: #F0F0F0;
  border-top: solid 1px #B9B9B9;
  border-left: solid 1px #B9B9B9;
  padding: 0.75em;
}
table.tbl-data td {
  background: #FFF;
  border-top: solid 1px #B9B9B9;
  border-left: solid 1px #B9B9B9;
  padding: 0.75em;
}

/*================================================== 
  Common
==================================================*/
/*************** header ****************/
.header {
  color: #FFF;
  width: 100%;
  height: 5rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
.header::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}
.header.fixed::after {
  opacity: 0.8;
}
.header__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  height: 100%;
}
.header__logo {
  width: 12rem;
  max-width: 45%;
  margin-left: 2.5%;
}
.header__menu, .header__navlist {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 1em;
}
.header__menu {
  margin-right: 2.5%;
}
.header__contact {
  width: 12rem;
}
.header__contact a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  border-style: solid;
  border-width: 1px;
  position: relative;
  height: 2.5em;
  border-color: currentColor;
}
.header__contact img {
  width: 1.25em;
  height: auto;
  margin-right: 0.25em;
}

/*************** main ****************/
body:not(.home) #main {
  padding-top: 5rem;
}

/*************** breadcrumb ****************/
#bread {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  font-size: max(0.67rem, 10px);
  padding: 1em 0 1.25em;
}
#bread > span {
  position: relative;
}
#bread > span:nth-of-type(n+2) {
  margin-left: 1.5em;
}
#bread > span:nth-of-type(n+2)::before {
  content: "";
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  border-top: solid 2px #999999;
  border-right: solid 2px #999999;
  position: absolute;
  transform: rotate(45deg);
  top: 0.5em;
  left: -1.5em;
}
#bread a[property=item] {
  text-decoration: underline;
}

/*************** page firstview ****************/
.pagefv {
  background: #F0F0F0;
  padding-bottom: 4rem;
}
.pagefv__ttl {
  text-align: center;
  position: relative;
}
.pagefv__ttl span {
  display: block;
}
.pagefv__ttl .font-en {
  font-size: 1.43rem;
  color: #999999;
}
.pagefv__ttl .font-ja {
  font-size: 1.43rem;
  font-weight: bold;
}
.pagefv__ttl::after {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 0.5rem;
  background: linear-gradient(to right, #A044BB 0%, #5B44BB 100%);
  border-radius: 50vh;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 110%;
}

/*************** container ****************/
body:not(.home) #container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/*************** anchor pagetop ****************/
.ancPagetop {
  width: 4rem;
  height: 4rem;
  position: fixed;
  bottom: 7rem;
  right: 1rem;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.ancPagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #A044BB;
  color: #FFF;
  border: solid 1px #FFF;
}

/*************** footer ****************/
.footer {
  background: #111111;
  color: #FFF;
  text-align: center;
  padding-top: 5rem;
}
.footer__logo {
  width: 17rem;
  max-width: 80%;
  margin: 0 auto 1.25em;
}
.footer__name {
  font-weight: bold;
  margin-bottom: 1.25em;
}
.footer__address a {
  display: inline-block;
  margin-left: 0.25em;
}
.footer__name ~ p {
  font-size: 0.93rem;
}
.footer__contact {
  margin: 1rem auto 0.5em;
  width: 12rem;
}
.footer__contact a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  border-style: solid;
  border-width: 1px;
  position: relative;
  height: 2.5em;
  border-color: currentColor;
}
.footer__contact img {
  width: 1.25em;
  height: auto;
  margin-right: 0.25em;
}
.footer__nav {
  margin: 1rem auto 4rem;
}
.footer__navlist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 1.5em;
  font-size: 0.93rem;
}
.footer__copyright {
  border-top: solid 1px #999999;
  text-align: center;
  font-size: 0.86rem;
  padding: 1.5em 2.5%;
}

/*================================================== 
  Pages
==================================================*/
/*************** indexpage ****************/
/* index > header */
body.home .header:not(.fixed)::after {
  opacity: 0;
}

/* mvblock */
.mvblock {
  display: flex;
  align-items: center;
  width: 100%;
  height: 42.2rem;
  background: url(../img/index/bg_mv.png) no-repeat center top/cover;
  color: #FFF;
  position: relative;
}
.mvblock::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 5rem;
  background: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 70%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.mvblock__ttl {
  font-size: min(2.565rem, 10vw);
  font-weight: bold;
}
.mvblock__subttl {
  font-size: 1.716rem;
}
.mvblock__txtbox {
  font-size: min(1.43rem, 6.6666666667vw);
  margin-top: 1.5em;
}

/* noticeblock */
.noticeblock {
  margin-top: 4rem;
  margin-bottom: 4rem;
  border: solid 4px #F0F0F0;
  padding: 2rem 2.5%;
  text-align: center;
}
.noticeblock__flyer {
  width: 12rem;
  margin: 1em auto;
}
.noticeblock__infolist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0.5em 2em;
  color: #A044BB;
  max-width: 40rem;
  margin: 1rem auto 0;
}
.noticeblock__info {
  font-size: 0.86rem;
  margin-top: 1em;
}

/* contentblock */
.contentblock {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.contentblock__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
  gap: 1rem 5%;
}
.contentblock__item--message {
  background: url(../img/index/bg_message.png) no-repeat left top/cover;
}
.contentblock__item--member {
  background: url(../img/index/bg_member.png) no-repeat left top/cover;
}
.contentblock li {
  text-align: center;
  width: 100%;
  aspect-ratio: 57/20;
  height: auto;
}
.contentblock li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  background: rgba(0, 0, 0, 0.65);
  height: 100%;
}
.contentblock li a .font-en {
  color: #B9B9B9;
}
.contentblock li a .font-ja {
  color: #FFF;
  font-size: 1.43rem;
  font-weight: bold;
}
.contentblock li a::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: #FFF;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  position: absolute;
  right: 0.5em;
  bottom: 0.5em;
}

/* newsblock */
.newsblock {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.newsblock__ttlwrap {
  text-align: center;
}
.newsblock__ttlwrap span {
  display: block;
}
.newsblock__ttl .font-en {
  font-size: 1.71rem;
  line-height: 1;
}
.newsblock__item {
  padding: 1em;
}
.newsblock__item:nth-child(n+2) {
  border-top: solid 1px #B9B9B9;
}
.newsblock__item .icon-new {
  margin-left: 1em;
}

/* bannerblock */
.bannerblock {
  background: #F0F0F0;
  padding: 3rem 0;
}
.bannerblock__item {
  text-align: center;
  width: 100%;
  max-width: 510px;
  margin-right: auto;
  margin-left: auto;
}
.bannerblock__item:nth-child(n+2) {
  margin-top: 1rem;
}
.bannerblock__item .caution {
  color: #A044BB;
  font-size: 0.93rem;
  margin-top: 0.5em;
}

/*************** message page ****************/
.messageblock__photo {
  width: 50%;
  margin: 0 auto 2em;
}

.messageblock__txt {
  text-indent: 1em;
  margin-bottom: 1.8em;
  line-height: 2;
}

.messageblock__authorbox {
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: solid 1px #B9B9B9;
  text-align: right;
}
.messageblock__authorbox .name {
  font-size: 1.1em;
  font-weight: bold;
  margin-left: 0.5em;
}

/*************** board member page ****************/
.memberlist__inner:has(ul.memberlist__list) {
  margin-top: 3rem;
}
.memberlist__item:nth-of-type(n+2) {
  margin-top: 1em;
}
.memberlist__item .belong {
  font-size: 0.86rem;
}

dl.memberlist__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  border-bottom: dotted 1px #B9B9B9;
  padding-bottom: 1em;
  margin: 0 auto 1em;
}
dl.memberlist__list dt {
  width: 20%;
  font-weight: bold;
}
dl.memberlist__list dd:nth-of-type(1) {
  width: 80%;
}
dl.memberlist__list dd:nth-of-type(n+2) {
  width: 100%;
  padding-left: 20%;
}

ul.memberlist__list li {
  margin-left: 1em;
}
ul.memberlist__list li .belong .sub {
  display: none;
}

/*************** contact page ****************/
.contactblock__inner:nth-of-type(2) {
  margin-top: 2rem;
}
.contactblock__txt {
  margin-bottom: 1em;
}
.contactblock__item::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.25em;
  width: 0.5em;
  height: 0.5em;
  background: #A044BB;
  border-radius: 2px;
}
.contactblock__mail {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 1em;
  background: #F0F0F0;
  padding: 1em;
  margin: 1em 0;
  border: double 4px #B9B9B9;
}
.contactblock__address img {
  width: 16rem;
  max-width: 100%;
}
.contactblock__caution {
  font-size: 0.86rem;
}
.contactblock__attentionttl {
  font-weight: bold;
  font-size: 1.1rem;
  color: #A044BB;
  margin-top: 1em;
}
.contactblock__data {
  background: #F0F0F0;
  padding: 1em;
  margin-top: 1em;
}

/*************** error404page ****************/
#pagefv--404 {
  padding: 2rem 0;
}

.missing__txt {
  text-align: center;
  margin-bottom: 2em;
}

/*/////////////////////////////////////////////////////////// 

 Media Query - Extra small（〜576px） 

///////////////////////////////////////////////////////////*/
@media (max-width: 575.8px) {
  .header__contact--sp a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    border: solid 1px #FFF;
    width: 2.86rem;
    height: 2.86rem;
  }
  .header__contact--sp img {
    width: 1.5rem;
    height: auto;
  }
  .header__hmbgr {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.5rem;
    border: solid 1px #FFF;
    width: 2.86rem;
    height: 2.86rem;
    position: relative;
  }
  .header__hmbgr div {
    display: inline-block;
    width: 1.5rem;
    height: 1px;
    background: #FFF;
    transition: all 0.3s ease;
  }
  .header__hmbgr.close div:nth-of-type(1) {
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 25%;
  }
  .header__hmbgr.close div:nth-of-type(2) {
    width: 0;
  }
  .header__hmbgr.close div:nth-of-type(3) {
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    left: 25%;
  }
  .header__spmenu {
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 5rem;
    left: 0;
    z-index: inherit;
  }
  .header__navitem--sp {
    border-bottom: dotted 1px #B9B9B9;
  }
  .header__navitem--sp a {
    padding: 1em;
  }
  /*************** breadcrumb ****************/
  #bread {
    overflow-x: scroll;
  }
  /*************** indexpage : xs ****************/
  /* index > header */
  body.home .header.is-menu-open:not(.fixed)::after {
    opacity: 0.8;
  }
  /* mvblock */
  .mvblock {
    background: url(../img/index/bg_mv-sp.png) no-repeat center center/cover;
  }
  .mvblock__ttl {
    font-size: min(2.223rem, 8.3333333333vw);
  }
  /* noticeblock */
  .noticeblock__infoitem {
    width: 100%;
  }
  /* bannerblock */
  .bannerblock__item {
    width: 100%;
    max-width: 510px;
  }
  /*************** board member page ****************/
  dl.memberlist__list {
    flex-direction: column;
  }
  .memberlist__label {
    font-size: 1.2em;
    margin-bottom: 0.75em;
    width: 100% !important;
  }
  .memberlist__item {
    width: 100% !important;
    padding-left: 0 !important;
  }
  .memberlist__item .belong {
    display: block;
  }
  ul.memberlist__list li {
    margin-left: 0 !important;
  }
}
/*/////////////////////////////////////////////////////////// 

 Media Query - Small（576px〜） 

///////////////////////////////////////////////////////////*/
@media (min-width: 575.9px) {
  /*************** indexpage : sm ****************/
  /* contentblock */
  .contentblock li {
    width: 47.5%;
  }
}
/*/////////////////////////////////////////////////////////// 

 Media Query - Medium（768px〜） 

///////////////////////////////////////////////////////////*/
@media (min-width: 767.8px) {
  /*************** indexpage : md ****************/
  /* newsblock */
  .newsblock {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: row;
    gap: 0 2.5%;
  }
  .newsblock__ttlwrap {
    text-align: left;
    background: #F0F0F0;
    padding: 1.75em 0 1.75em 2.5%;
    width: 30%;
  }
  .newsblock__article {
    width: 65%;
  }
  .messageblock__inner {
    overflow: hidden; /* clearfix代替 */
  }
  .messageblock__photo {
    width: 30%;
    float: left;
    margin: 0 2em 0 0;
  }
}
/*/////////////////////////////////////////////////////////// 

 Media Query - Extra large（1200px〜） 

///////////////////////////////////////////////////////////*/
@media (min-width: 1200px) {
  /*************** indexpage : xl ****************/
  /* newsblock */
  .newsblock__ttlwrap {
    width: 36vw;
    padding: 1.75em 0;
  }
  .newsblock__ttl {
    margin-left: calc(50vw - 600px);
  }
  .newsblock__article {
    width: calc(14vw - 2.5% + 600px);
  }
}/*# sourceMappingURL=layouts.css.map */