@charset "UTF-8";
@import url(//use.fontawesome.com/releases/v5.0.11/css/all.css);
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700|Open+Sans:400,700&display=swap");
/*==================================================

** outline

==================================================*/
* {
  box-sizing: border-box;
}

.pc {
  display: inherit;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
body {
  color: #333;
  position: relative;
  -webkit-text-size-adjust: 100%;
  min-width: 1000px;
}
@media screen and (max-width: 768px) {
  body {
    left: 0;
    transition: left ease-in-out 0.3s;
    min-width: 0;
  }
  body.opened {
    left: -200px;
  }
}

main {
  position: relative;
  top: 90px;
  padding-bottom: 100px;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  main {
    top: 50px;
  }
}

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

p {
  margin-top: 15px;
}
p:first-child {
  margin-top: 0;
}

.wrap {
  width: 900px;
  margin: 0 auto 0;
}
@media screen and (max-width: 768px) {
  .wrap {
    width: 90%;
    margin: auto;
  }
}

#function .wrap {
  width: 860px;
}

@media screen and (max-width: 768px) {
  #function .wrap {
    width: 90%;
    margin: auto;
  }
}
.center {
  text-align: center;
}

.right {
  text-align: right;
}

h2 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-top: 80px;
  padding-left: 10px;
  border-left: solid 5px #cf0100;
  line-height: 1.6;
}
h2 + * {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 2.2rem;
    margin-top: 50px;
  }
}

h2.top-ttl {
  padding-left: 0;
  border-left: none;
  text-align: center;
  margin-top: 0;
}
h2.top-ttl .en {
  display: block;
  font-size: 1.6rem;
  color: #cf0100;
}
h2.top-ttl + * {
  margin-top: 30px;
}

.red-square {
  margin-top: 15px;
}
.red-square dt::before,
.red-square li::before,
.red-square th::before,
.red-square span::before {
  content: "\f45c";
  font-family: "font awesome 5 free";
  font-weight: 700;
  font-size: 1rem;
  color: #cf0100;
  margin-right: 10px;
  vertical-align: 5%;
}
.red-square tr {
  display: block;
  margin-top: 15px;
  text-align: left;
}
.red-square tr:first-child {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .wrap {
    width: 90%;
  }
}
/*==================================================

** header　ヘッダー

==================================================*/
.header {
  position: fixed;
  width: 100%;
  height: 90px;
  background-color: #fff;
  z-index: 1000;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 900px;
  height: 100%;
  margin: auto;
}
.header__inner__logo {
  display: flex;
  flex-direction: column;
}
.header__inner__logo__mark {
  width: 230px;
}
.header__inner__logo h1 {
  width: 230px;
}
.header__inner__logo__type {
  width: 230px;
  margin-top: 5px;
}
.header__inner__logo__type img {
  max-width: 100%;
}
.header__inner .gnav ul {
  display: flex;
}
.header__inner .gnav ul li {
  padding: 0 10px;
}
.header__inner .gnav ul li a {
  display: inline-block;
}
.header__inner .gnav ul li a::after {
  content: "";
  display: block;
  width: 0%;
  transition: width 0.2s;
  border-bottom: 3px solid #cf0100;
}
.header__inner .gnav ul li a:hover::after {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .header {
    width: 100%;
    height: 50px;
    padding: 10px 0 10px 10px;
  }
  .header__inner {
    display: flex;
    width: 100%;
    height: 100%;
  }
  .header__inner__logo {
    height: 100%;
    width: auto;
    margin-left: 10px;
  }
  .header__inner__logo a {
    height: 100%;
    align-items: center;
  }
  .header__inner__logo h1 {
    display: flex;
    align-items: center;
    width: auto;
    height: 50%;
  }
  .header__inner__logo h1 a {
    display: flex;
    align-items: center;
  }
  .header__inner__logo__mark {
    height: 50%;
  }
  .header__inner__logo__mark img {
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: 0 50%;
       object-position: 0 50%;
  }
  .header__inner__logo__type {
    height: 100%;
  }
  .header__inner__logo__type img {
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: 0 50%;
       object-position: 0 50%;
  }
  .header__inner .gnav {
    display: block;
    position: fixed;
    top: 0;
    right: -200px;
    width: 200px;
    height: 100vh;
    z-index: 100000;
    background-color: #efefef;
    transition: right ease-in-out 0.3s;
  }
  .opened .header__inner .gnav {
    right: 0;
  }
  .header__inner .gnav ul {
    display: block;
    width: 100%;
    padding: 10px;
  }
  .header__inner .gnav ul li {
    width: 100%;
    height: 65px;
    border-bottom: solid 1px #e5e5e5;
  }
  .header__inner .gnav ul li a {
    width: 100%;
    line-height: 65px;
  }
  .header__inner .gnav ul li a::before {
    content: "\f45c";
    font-family: "font awesome 5 free";
    font-weight: 700;
    font-size: 1rem;
    color: #cf0100;
    margin-right: 10px;
    vertical-align: 5%;
  }
  .header .menu-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 100000000;
    background-color: #aa8f7b;
  }
  .header .menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    transition: transparent ease-in-out 0.4s;
  }
  .opened .header .menu-btn span {
    background: transparent;
  }
  .header .menu-btn span:before, .header .menu-btn span:after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    transform-origin: 0 50%;
    transition: transform ease-in-out 0.4s;
  }
  .header .menu-btn span:before {
    transform: translateY(-7px);
  }
  .opened .header .menu-btn span:before {
    transform: rotate(45deg) translate(-2px, -7px);
  }
  .header .menu-btn span:after {
    transform: translateY(5px);
  }
  .opened .header .menu-btn span:after {
    transform: rotate(-45deg) translate(-2px, 6px);
  }
}
/*==================================================

** footer　フッター

==================================================*/
.footer {
  position: relative;
  top: 90px;
  width: 100%;
  background-color: #f8f8f8;
}
.footer a {
  line-height: 1;
}
.footer-upper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 900px;
  margin: auto;
  padding: 40px 0;
}
.footer-lower {
  height: 50px;
  background-color: #00131d;
}
.footer-lower small {
  display: block;
  line-height: 50px;
  color: #ccc;
  font-size: 1rem;
  text-align: center;
}
.footer__left1 {
  width: 23%;
}
.footer__left1__logo {
  width: 100%;
}
.footer__left1__logo__type {
  margin-top: 5px;
}
.footer__left1__link {
  margin-top: 20px;
}
.footer__left1__link span {
  display: block;
  font-size: 1.2rem;
}
.footer__left1__link span a {
  display: inline-block;
}
.footer__left1__link span a::after {
  content: "";
  display: block;
  width: 100%;
  opacity: 0;
  transition: opacity 0.2s;
  border-bottom: 1px solid #333;
}
.footer__left1__link span a:hover::after {
  opacity: 1;
}
.footer__left1__link span::before {
  content: "\f35d";
  font-family: "font awesome 5 free";
  font-weight: 700;
  display: inline-block;
  margin-right: 10px;
}
.footer__left4 .btn-area .btn {
  color: #fff;
}
.footer__left4 .btn-area .btn::after {
  position: absolute;
  right: 20px;
  content: "\f105";
  font-family: "font awesome 5 free";
  font-weight: 900;
}
.footer__left4 .btn-area .btn::before {
  background: #fff;
}
.footer__left4 .btn-area .btn.footer-join {
  border: 2px solid #414853;
  background: #414853;
}
.footer__left4 .btn-area .btn.footer-join:hover {
  color: #414853;
}
.footer__left4 .btn-area .btn.footer-contact {
  margin-top: 16px;
  background: #aa8f7b;
  border: solid 2px #aa8f7b;
}
.footer__left4 .btn-area .btn.footer-contact:hover {
  color: #aa8f7b;
}
.footer-nav li a {
  display: inline-block;
  font-size: 1.4rem;
}
.footer-nav li a::after {
  content: "";
  display: block;
  width: 100%;
  opacity: 0;
  transition: opacity 0.2s;
  border-bottom: solid 1px #333;
}
.footer-nav li a:hover::after {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .footer {
    top: 50px;
  }
  .footer-upper {
    width: 90%;
    padding: 20px 0 40;
  }
  .footer .footer-logo {
    width: 100%;
    height: 48px;
  }
  .footer .footer-logo-mark {
    width: 60%;
    height: 50%;
    padding-left: 10px;
  }
  .footer .footer-logo-mark img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: 0 50%;
       object-position: 0 50%;
  }
  .footer .footer-logo-type {
    width: 70%;
    height: 40%;
    padding-left: 10px;
    margin-top: 2px;
  }
  .footer .footer-logo-type img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: 0 50%;
       object-position: 0 50%;
  }
  .footer__left1 {
    display: none;
  }
  .footer__left2, .footer__left3 {
    width: 50%;
    padding: 0 10px;
    margin-top: 20px;
  }
  .footer__left4 {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .footer__left4 .btn-area {
    width: 48%;
    margin-top: 20px;
  }
  .footer__left4 .btn-area .btn::after {
    right: 5px;
  }
  .footer__left4 .btn-area a.btn.footer-contact {
    margin-top: 0;
  }
}

/*==================================================

** head-banner　h1が入る赤いバナー部分

==================================================*/
.head-banner {
  position: relative;
  width: 100%;
  height: 165px;
  background-image: url("/images/head-bg.jpg");
  background-size: cover;
  z-index: 0;
}
.head-banner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 165px;
  background-color: rgba(0, 0, 0, 0.3);
}
.head-banner__inner {
  display: flex;
  align-items: center;
  width: 900px;
  height: 100%;
  margin: auto;
}
.head-banner__inner__ttl {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .head-banner {
    height: 100px;
  }
  .head-banner::after {
    height: 100px;
  }
  .head-banner__inner {
    width: 90%;
    margin: auto;
  }
  .head-banner__inner__ttl {
    font-size: 2.6rem;
  }
}

/*==================================================

** bread-crumb　パンくずリスト

==================================================*/
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  width: 900px;
  margin: 20px auto 0;
  font-size: 1.2rem;
}
.breadcrumb__no-arrow {
  line-height: 1.8;
}
.breadcrumb__arrow {
  margin-right: 5px;
  line-height: 1.8;
}
.breadcrumb__arrow::after {
  content: "\f105";
  font-family: "font awesome 5 free";
  font-weight: 700;
}
.breadcrumb a {
  display: inline-block;
  line-height: 1.8;
}
.breadcrumb a::after {
  content: "";
  display: block;
  width: 100%;
  opacity: 0;
  transition: opacity 0.2s;
  border-bottom: 1px solid #333;
}
.breadcrumb a:hover::after {
  opacity: 1;
}
.breadcrumb + * {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    width: 90%;
  }
}

/*==================================================

** btn　基本のボタン

==================================================*/
.btn-area {
  width: 250px;
  height: 60px;
}
.btn-area .btn {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 60px;
  border: solid 1px #414853;
  color: #414853;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  transition: 0.3s;
  z-index: 1000;
}
.btn-area .btn::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  width: 120%;
  height: 100%;
  background: #414853;
  transform-origin: right top;
  transform: skewX(-30deg) scale(0, 1);
  transition: transform 0.3s;
}
.btn-area .btn:hover {
  color: #fff;
}
.btn-area .btn:hover::before {
  transform-origin: left top;
  transform: skewX(-30deg) scale(1, 1);
}
.btn-area.sche-btn {
  height: 44px;
  box-shadow: 2px 2px 4px rgba(65, 72, 83, 0.2);
}
.btn-area.sche-btn .btn {
  line-height: 44px;
}
.btn-area.sche-btn .btn::after {
  position: absolute;
  right: 20px;
  content: "\f105";
  font-family: "font awesome 5 free";
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .btn-area.sche-btn .btn::after {
    right: 5px;
  }
}
.btn-area.sche-btn.report-btn {
  margin-top: 7px;
}
@media screen and (max-width: 768px) {
  .btn-area.sche-btn.report-btn {
    margin-top: 0;
  }
}
.btn-area.pc-btn, .btn-area.dw-btn {
  width: 230px;
  height: 44px;
  box-shadow: 2px 2px 4px rgba(65, 72, 83, 0.2);
}
.btn-area.pc-btn a, .btn-area.dw-btn a {
  line-height: 44px;
}
.btn-area.pc-btn {
  margin-right: 30px;
}
.btn-area.download-btn {
  height: 44px;
}
.btn-area.download-btn a {
  line-height: 44px;
}
.btn-area.non-active a {
  border: solid 1px #ccc;
  color: #ccc;
  pointer-events: none;
}

/*==================================================

** top　トップページ

==================================================*/
main.top {
  position: relative;
  top: 0;
}

.top {
  width: 100%;
}
.top__mainvsl {
  width: 100%;
  height: 100vh;
  max-height: 800px;
  z-index: -1000;
}
.top__mainvsl__inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.top__mainvsl__inner__img {
  width: 100%;
  height: 100%;
  z-index: 0;
}
.top__mainvsl__inner__img .slick-list {
  width: 100%;
  height: 100%;
}
.top__mainvsl__inner__img .slick-list .slick-track {
  height: 100%;
}
.top__mainvsl__inner__img .slick-list .slick-track li {
  width: 100%;
  height: 100%;
}
.top__mainvsl__inner__img .slick-list .slick-track li img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top__mainvsl__inner__img .slick-list .slick-track li img.img02 {
  -o-object-position: 50% 70%;
     object-position: 50% 70%;
}
.top__mainvsl__inner__bk {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 100;
}
.top__mainvsl__inner__txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: auto;
  z-index: 200;
}
.top__mainvsl__inner__txt img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.top__aboutus {
  position: relative;
  width: 100%;
  background-color: #efefef;
  z-index: 200;
}
.top__aboutus__inner {
  position: relative;
  top: -100px;
  background-color: #fff;
  padding: 30px 120px 40px;
}
.top__news {
  padding: 60px 0;
}
.top__news__inner__list li {
  padding: 15px 20px;
  border-bottom: solid 1px #ccc;
}
.top__news__inner__list li a {
  transition: all 0.25s;
}
.top__news__inner__list li a:hover {
  color: #cf0100;
}
.top__news__inner__list li a .date {
  margin-right: 35px;
  font-size: 1.4rem;
}
.top__news__inner__more {
  margin-top: 12px;
  font-size: 1.4rem;
}
.top__news__inner__more span::after {
  content: "\f054";
  font-family: "font awesome 5 free";
  font-weight: 700;
  font-size: 1rem;
  margin-left: 10px;
  color: #cf0100;
}
.top__news__inner__more span a {
  transition: all 0.25s;
}
.top__news__inner__more span a:hover {
  text-decoration: underline;
}
.top__menu {
  width: 100%;
}
.top__menu__inner {
  width: 100%;
}
.top__menu__inner__container {
  display: flex;
  flex-wrap: wrap;
}
.top__menu__inner__container .menu-box {
  position: relative;
  width: 50%;
  height: 20vw;
  min-height: 280px;
}
.top__menu__inner__container .menu-box:first-child, .top__menu__inner__container .menu-box:nth-child(3) {
  border-right: solid 1px #ccc;
}
.top__menu__inner__container .menu-box:first-child, .top__menu__inner__container .menu-box:nth-child(2) {
  border-bottom: solid 1px #ccc;
}
.top__menu__inner__container .menu-box img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top__menu__inner__container .menu-box img.posi-top {
  -o-object-position: 50% 0;
     object-position: 50% 0;
}
.top__menu__inner__container .menu-box__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 76%;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8);
}
.top__menu__inner__container .menu-box__inner__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.top__menu__inner__container .menu-box .btn-area {
  margin: 20px auto 0;
}
.top__menu__inner__container .menu-box .btn-area a {
  position: relative;
}
.top__menu__inner__container .menu-box .btn-area a::after {
  position: absolute;
  right: 20px;
  content: "\f105";
  font-family: "font awesome 5 free";
  font-weight: 900;
}
.top__join {
  padding-top: 70px;
}
.top__join__txt {
  width: 100%;
  max-width: 660px;
  margin: auto;
  text-align: center;
}
.top__join .btn-area {
  margin: 25px auto 0;
  box-shadow: 2px 2px 4px rgba(65, 72, 83, 0.2);
}
.top__join .btn-area a {
  position: relative;
}
.top__join .btn-area a::after {
  position: absolute;
  right: 20px;
  content: "\f105";
  font-family: "font awesome 5 free";
  font-weight: 900;
}
.top + .footer {
  position: relative;
  top: 0;
}

.top__mainvsl .slider {
  opacity: 0;
  transition: all 0.3s;
}
.top__mainvsl .slider.slick-initialized {
  opacity: 1;
}
.top__mainvsl .slider ~ .top__mainvsl__inner__txt img {
  opacity: 0;
  transition: all 1s;
}
.top__mainvsl .slick-initialized.slider ~ .top__mainvsl__inner__txt img {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .top__mainvsl {
    height: 60vh;
  }
  .top__mainvsl__inner__txt {
    width: 90%;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
  }
  .top__menu__inner__container .menu-box {
    width: 100%;
    border-bottom: solid 1px #ccc;
  }
  .top__menu__inner__container .menu-box:last-child {
    border-bottom: none;
  }
  .top__aboutus {
    padding: 30px 0;
  }
  .top__aboutus__inner {
    top: 0;
    padding: 30px;
  }
  .top__news__inner__list li a span {
    display: block;
  }
}
/*==================================================

** photo　写真館

==================================================*/
.photo__order .photo__list {
  position: relative;
  padding: 100px 40px;
  background-color: #fff;
}
.photo__order .photo__list table {
  width: 100%;
}
.photo__order .photo__list table tr {
  display: block;
  width: 100%;
  padding: 30px 0;
  border-bottom: solid 1px #e5e5e5;
}
.photo__order .photo__list table tr td {
  width: 100%;
  vertical-align: top;
}
.photo__order .photo__list table tr td:nth-child(2) {
  width: 230px;
  margin-right: 0;
}
.photo__order .photo__list__date {
  position: relative;
  padding-left: 20px;
  line-height: 1.6;
}
.photo__order .photo__list__date::before {
  position: absolute;
  top: 4px;
  left: 0;
  content: "\f45c";
  font-family: "font awesome 5 free";
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.6;
  color: #cf0100;
}
.photo__order .photo__list__ttl {
  margin-top: 15px;
  padding-left: 20px;
}
.photo__order .photo__list__btn .sche-btn {
  width: 250px;
  height: 60px;
}
.photo__order .photo__list__btn .sche-btn a {
  line-height: 60px;
}
.photo__order__last h3 {
  color: #cf0100;
  font-size: 2.4rem;
  margin-top: 40px;
  font-weight: bold;
}
.photo__order__last h3 + * {
  margin-top: 20px;
}
.photo__order__last__list {
  padding: 25px 50px;
  background-color: #efefef;
  display: flex;
}
.photo__order__last__list li {
  margin-right: 20px;
}
.photo__order__last__list li::before {
  content: "\f105";
  font-family: "font awesome 5 free";
  font-weight: 700;
  color: #cf0100;
  margin-right: 5px;
}
.photo__order__last__list li a {
  display: inline-block;
}
.photo__order__last__list li a::after {
  content: "";
  display: block;
  width: 100%;
  opacity: 0;
  transition: opacity 0.2s;
  border-bottom: 1px solid #333;
}
.photo__order__last__list li a:hover::after {
  opacity: 1;
}
.photo__price table {
  display: block;
  width: 100%;
  padding: 40px;
  background-color: #efefef;
}
.photo__price table th {
  padding-right: 30px;
}
.photo .btn-area {
  box-shadow: 2px 2px 4px rgba(65, 72, 83, 0.2);
}
.photo .btn-area a::after {
  position: absolute;
  right: 20px;
  content: "\f35d";
  font-family: "font awesome 5 free";
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .photo__order .photo__list {
    padding: 50px 0;
  }
  .photo__order .photo__list table tr td {
    display: block;
  }
  .photo__order .photo__list table tr td:nth-child(2) {
    width: 100%;
  }
  .photo__order .photo__list table tr td:nth-child(2) .btn-area.sche-btn.photo-btn {
    width: 100%;
    margin-top: 20px;
  }
  .photo__order__last__list {
    padding: 25px;
  }
  .photo__price .red-square {
    padding: 20px;
  }
  .photo__price .red-square tr th {
    display: block;
  }
  .photo__price .red-square tr td {
    display: block;
    margin-left: 21px;
  }
}

/*==================================================

** greeting　支部長挨拶

==================================================*/
main.greeting {
  padding-bottom: 0;
}

.greeting__mainvsl {
  width: 100%;
  background-color: #efefef;
  padding: 20px 0 100px;
}
.greeting__mainvsl__container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 680px;
  height: 210px;
  margin: 20px auto 0;
}
.greeting__mainvsl__container__left {
  display: flex;
  justify-content: center;
  align-items: bottom;
  width: 250px;
  margin-right: 50px;
}
.greeting__mainvsl__container__left img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.greeting__mainvsl__container__right {
  position: relative;
  width: 100%;
  height: 100%;
  font-weight: bold;
}
.greeting__mainvsl__container__right__inner {
  position: absolute;
  bottom: 30px;
}
.greeting__mainvsl__container__right__inner__ttl {
  font-size: 2.8rem;
  line-height: 1.6;
}
.greeting__mainvsl__container__right__inner__name {
  margin-top: 30px;
  font-size: 2.5rem;
}
.greeting__mainvsl__container__right__inner__name span {
  display: block;
  font-size: 2rem;
  margin-bottom: 5px;
}
.greeting__txt {
  position: relative;
  top: -100px;
  padding: 50px 40px 0;
  background-color: #fff;
}
.greeting__txt .greeting__name {
  margin: 50px 0 0 auto;
  width: 380px;
  height: auto;
}
.greeting__txt .greeting__name img {
  display: block;
}
.greeting .breadcrumb {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .greeting__mainvsl {
    padding: 20px 0;
  }
  .greeting__mainvsl__container {
    width: 90%;
    height: 160px;
  }
  .greeting__mainvsl__container__left {
    width: 30%;
    height: 130px;
    margin-right: 10px;
  }
  .greeting__mainvsl__container__left img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .greeting__mainvsl__container__right {
    width: 67%;
  }
  .greeting__mainvsl__container__right__inner {
    bottom: 10px;
  }
  .greeting__mainvsl__container__right__inner__ttl {
    font-size: 2rem;
  }
  .greeting__mainvsl__container__right__inner__name {
    margin-top: 20px;
    font-size: 2rem;
  }
  .greeting__mainvsl__container__right__inner__name span {
    font-size: 1.3rem;
  }
  .greeting__txt {
    top: 0;
    padding: 50px 10px;
  }
  .greeting__txt .greeting__name {
    width: 90%;
  }
}

/*==================================================

** schedule　年間予定

==================================================*/
.schedule__mainvsl {
  width: 100%;
  background-color: #efefef;
  padding: 20px 0 60px;
}
.schedule__mainvsl .breadcrumb {
  margin-top: 0;
}
.schedule__mainvsl__ttl {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.6;
}
.schedule__list {
  position: relative;
  padding: 100px 40px;
  background-color: #fff;
}
.schedule__list table {
  width: 100%;
}
.schedule__list table tr {
  display: block;
  width: 100%;
  padding: 30px 0;
  border-bottom: solid 1px #e5e5e5;
}
.schedule__list table tr td {
  width: 100%;
  vertical-align: top;
}
.schedule__list table tr td:nth-child(2) {
  width: 230px;
  margin-right: 0;
}
.schedule__list__date::before {
  content: "\f45c";
  font-family: "font awesome 5 free";
  font-weight: 700;
  font-size: 1rem;
  color: #cf0100;
  margin-right: 10px;
  vertical-align: 5%;
}
.schedule__list__ttl {
  margin-top: 15px;
  padding-left: 22px;
}
.schedule__list__btn .schedule-btn {
  width: 230px;
  height: 45px;
}
.schedule__list__btn .schedule-btn a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 45px;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.schedule__list__btn__description {
  background-color: #aa8f7b;
}
.schedule__list__btn__report {
  background-color: #414853;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .schedule__mainvsl {
    padding: 20px 0 40px;
  }
  .schedule__mainvsl__ttl {
    font-size: 2.4rem;
  }
  .schedule__list {
    padding: 50px 0 0;
  }
  .schedule__list table tr th {
    display: block;
  }
  .schedule__list table tr td {
    display: block;
  }
  .schedule__list table tr td:nth-child(2) {
    width: 100%;
    margin-top: 20px;
  }
  .schedule__list table tr td .schedule__list__btn {
    display: flex;
    justify-content: space-between;
  }
  .schedule__list table tr td .schedule__list__btn .btn-area {
    width: 48%;
  }
}

.about img,
.download img {
  display: block;
  width: auto;
  height: auto;
  margin: auto;
}

/*==================================================

** about　支部概要

==================================================*/
.about__table__outer {
  margin: auto;
  width: 100%;
}
.about__table__outer tr {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 30px 0;
  border-bottom: solid 1px #e5e5e5;
}
.about__table__outer tr.position-head {
  vertical-align: top;
  border-bottom: none;
}
.about__table__outer tr th {
  display: block;
  width: 30%;
  text-align: left;
  font-weight: bold;
}
.about__table__outer tr td {
  display: block;
  width: 70%;
}
.about__table__inner {
  width: 100%;
}
.about__table__inner tr {
  width: 100%;
  padding: 15px 0;
}
.about__table__inner tr.about__table__inner__head {
  padding-top: 0;
}
.about__table__inner tr.about__table__inner__head th {
  padding: 0 5px;
  font-weight: 400;
}
.about__table__inner tr.about__table__inner__head th:first-child {
  width: 40%;
}
.about__table__inner tr.about__table__inner__head th:nth-child(2) {
  width: 20%;
}
.about__table__inner tr.about__table__inner__head th:nth-child(3) {
  width: 25%;
  text-align: center;
}
.about__table__inner tr.about__table__inner__head th:nth-child(4) {
  width: 15%;
  text-align: center;
}
.about__table__inner tr td {
  padding: 0 5px;
}
.about__table__inner tr td a {
  text-decoration: underline;
}
.about__table__inner tr td:first-child {
  width: 40%;
}
.about__table__inner tr td:nth-child(2) {
  width: 20%;
}
.about__table__inner tr td:nth-child(3) {
  width: 25%;
  text-align: center;
}
.about__table__inner tr td:last-child {
  width: 15%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .about__table__outer tr.position-head {
    display: block;
    padding-bottom: 10px;
  }
  .about__table__outer tr.position-head td {
    width: 100%;
  }
  .about__table__inner {
    width: 100%;
  }
  .about__table__inner tr {
    width: 100%;
  }
  .about__table__inner tr.about__table__inner__head {
    padding-top: 0;
    margin-top: 20px;
    padding-bottom: 10px;
  }
  .about__table__inner tr.about__table__inner__head th {
    font-weight: 400;
    display: flex;
    align-items: center;
  }
  .about__table__inner tr.about__table__inner__head th:first-child {
    width: 28%;
  }
  .about__table__inner tr.about__table__inner__head th:nth-child(2) {
    width: 29%;
  }
  .about__table__inner tr.about__table__inner__head th:nth-child(3) {
    width: 25%;
    text-align: center;
    justify-content: center;
  }
  .about__table__inner tr.about__table__inner__head th:nth-child(4) {
    width: 18%;
    text-align: center;
    justify-content: center;
  }
  .about__table__inner tr td a {
    text-decoration: underline;
  }
  .about__table__inner tr td:first-child {
    width: 28%;
  }
  .about__table__inner tr td:nth-child(2) {
    width: 29%;
  }
  .about__table__inner tr td:nth-child(3) {
    width: 25%;
    text-align: center;
  }
  .about__table__inner tr td:last-child {
    width: 18%;
    text-align: center;
  }
}
/*==================================================

** column コラム

==================================================*/
.column__list__li a {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-bottom: 40px;
  border-bottom: solid 1px #ccc;
  transition: all 0.25s;
}
.column__list__li a .column-image {
  width: 100%;
  height: auto;
}
.column__list__li a .column-image img {
  aspect-ratio: 252/168;
  -o-object-fit: cover;
     object-fit: cover;
}
.column__list__li a .column-txt {
  width: 100%;
}
.column__list__li a .column-txt span {
  display: block;
}
.column__list__li a .column-txt .ttl {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: bold;
  transition: all 0.25s;
}
.column__list__li a .column-txt .date {
  font-size: 1.4rem;
  color: #777;
}
.column__list__li a .column-txt .name {
  color: #777;
}
.column__list__li a .column-txt .content {
  display: none;
}
@media screen and (min-width: 769px) {
  .column__list__li a:hover {
    opacity: 0.7;
  }
  .column__list__li a:hover .column-txt .ttl::after {
    opacity: 0.7;
  }
  .column__list__li a .column-image {
    width: 28%;
  }
  .column__list__li a .column-txt {
    width: 69%;
    margin-left: 2%;
  }
  .column__list__li a .column-txt .ttl::after {
    position: relative;
    bottom: 7px;
    content: "";
    display: block;
    width: 100%;
    opacity: 0;
    transition: opacity 0.2s;
    border-bottom: 1px solid #333;
  }
  .column__list__li a .column-txt .content {
    display: block;
    margin-top: 20px;
  }
}

/*==================================================

** column__details コラム詳細ページ

==================================================*/
.column-details {
  padding-bottom: 0;
}
.column-details__content {
  overflow: hidden;
  background-color: #efefef;
  padding-bottom: 100px;
}
.column-details__content__inner {
  background-color: #fff;
  padding: 50px 80px;
}
.column-details__content__inner__information {
  display: flex;
  color: #777;
}
.column-details__content__inner__information .name {
  margin-left: 20px;
}
.column-details__content__inner .text-area-content {
  margin-top: 50px;
}
.column-details__content__inner .text-area-content a {
  border-bottom: solid 1px #cf0100;
  transition: all 0.3s;
}
.column-details__content__inner .text-area-content a:hover {
  color: #cf0100;
  opacity: 0.8;
}
.column-details__content__inner__mainvsl {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 62% 0 0;
  margin-top: 20px;
}
.column-details__content__inner__mainvsl img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.column-details__content__inner__content-img {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 62% 0 0;
  margin-top: 20px;
}
.column-details__content__inner__content-img img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.column-details__content__inner h2 {
  margin-top: 0;
}
.column-details__content__inner h3 {
  margin: 60px 0 30px;
  font-size: 2rem;
  font-weight: bold;
  color: #cf0100;
}
@media screen and (max-width: 768px) {
  .column-details__content__inner {
    padding: 40px 15px;
  }
}

/*==================================================

** download　資料ダウンロード

==================================================*/
.download__table__outer {
  width: 100%;
  margin: auto;
}
.download__table__outer tr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 30px 0;
  border-bottom: solid 1px #e5e5e5;
}
.download__table__outer tr:first-child {
  border-top: solid 1px #e5e5e5;
}
.download__table__outer tr th {
  width: 45%;
  text-align: left;
}
.download__table__outer tr td {
  display: flex;
  width: 55%;
}
.download__table__outer tr td i {
  margin-right: 5px;
}
.download__table__outer tr.position-head {
  vertical-align: top;
}
.download__table .red-square tr {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .download__table__outer tr th {
    width: 100%;
  }
  .download__table__outer tr td {
    width: 100%;
    margin-top: 10px;
  }
  .download__table__outer tr td .btn-area {
    width: 48%;
  }
  .download__table__outer tr td .btn-area.pc-btn {
    margin-right: 10px;
  }
}

/*==================================================

** join　入会案内

==================================================*/
.join__requirement p {
  padding: 30px;
  background-color: #efefef;
}
.join .red-square {
  display: block;
  padding: 30px;
  margin-top: 40px;
  background-color: #efefef;
}
.join .red-square tr {
  display: flex;
}
.join .red-square tr th {
  display: block;
  margin-right: 20px;
}

/*==================================================

** report　事業報告
** announce　事業案内

==================================================*/
main.report,
main.announce {
  padding-bottom: 0px;
}

.report__content,
.announce__content {
  background-color: #efefef;
  overflow: hidden;
  padding-bottom: 100px;
}
.report__content__inner,
.announce__content__inner {
  padding: 50px 80px;
  background-color: #fff;
}
.report__content__inner h2,
.announce__content__inner h2 {
  margin-top: 0;
}
.report__content__inner .update,
.announce__content__inner .update {
  font-size: 1.4rem;
  margin-top: 25px;
}
.report__content__inner .eyecatch,
.announce__content__inner .eyecatch {
  width: 100%;
  height: auto;
  max-height: 550px;
  margin-top: 15px;
}
.report__content__inner .eyecatch img,
.announce__content__inner .eyecatch img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.report__content__inner .information-area,
.announce__content__inner .information-area {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
}
.report__content__inner .information-area__img,
.announce__content__inner .information-area__img {
  width: 45%;
}
.report__content__inner .information-area__img img,
.announce__content__inner .information-area__img img {
  width: 100%;
  height: 100%;
  -o-object-position: contain;
     object-position: contain;
}
.report__content__inner .information-area__txt,
.announce__content__inner .information-area__txt {
  width: 50%;
}
.report__content__inner .information-area__txt__number,
.announce__content__inner .information-area__txt__number {
  background-color: #efefef;
  padding: 20px 28px;
}
.report__content__inner .information-area__txt__number.red-square,
.announce__content__inner .information-area__txt__number.red-square {
  margin-top: 0;
}
.report__content__inner .information-area__txt__number.red-square span,
.announce__content__inner .information-area__txt__number.red-square span {
  margin-right: 20px;
}
.report__content__inner .information-area__txt .photo-btn,
.announce__content__inner .information-area__txt .photo-btn {
  width: 100%;
  margin-top: 20px;
}
.report__content__inner .information-area__txt .photo-btn a::after,
.announce__content__inner .information-area__txt .photo-btn a::after {
  position: absolute;
  right: 20px;
  content: "\f35d";
  font-family: "font awesome 5 free";
  font-weight: 900;
}
.report__content__inner .information-area__txt p,
.announce__content__inner .information-area__txt p {
  font-size: 1.2rem;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .report__content__inner,
  .announce__content__inner {
    padding: 40px 15px;
  }
  .report__content__inner .information-area__img,
  .announce__content__inner .information-area__img {
    display: none;
  }
  .report__content__inner .information-area__txt,
  .announce__content__inner .information-area__txt {
    width: 100%;
    margin: auto;
  }
}

.report .text-area {
  margin-top: 35px;
}

.announce {
  width: 100%;
}
.announce .text-area {
  margin-top: 70px;
}
.announce .information-area {
  width: 100%;
}
.announce .information-area table {
  width: 100%;
}
.announce .information-area table tr {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  vertical-align: top;
}
.announce .information-area table tr th {
  display: block;
  width: 25%;
  font-weight: bold;
}
.announce .information-area table tr td {
  display: block;
  width: 70%;
}
@media screen and (max-width: 768px) {
  .announce .text-area {
    margin-top: 50px;
  }
  .announce .information-area table tr th {
    width: 100%;
  }
  .announce .information-area table tr td {
    width: 100%;
  }
  .announce .information-area table tr td iframe {
    width: 100%;
  }
}

/*==================================================

** form 問合せフォーム

==================================================*/
#formWrap {
  width: 900px;
  margin: 30px auto 0;
}
#formWrap form {
  width: 100%;
}
#formWrap form table tr {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 20px 70px;
  border-bottom: solid 1px #e5e5e5;
}
#formWrap form table tr:first-child {
  border-top: solid 1px #e5e5e5;
}
#formWrap form table tr:last-child {
  border-bottom: none;
}
#formWrap form table tr th {
  position: relative;
  top: 10px;
  display: block;
  width: 30%;
  text-align: left;
  padding-right: 15px;
}
#formWrap form table tr th span {
  color: #cf0100;
  font-size: 1.4rem;
}
#formWrap form table tr td {
  display: block;
  width: 70%;
}
#formWrap form input {
  border: solid 1px #e5e5e5;
  height: 50px;
  padding: 0 10px;
}
#formWrap form input.small {
  width: 290px;
}
#formWrap form input.middle {
  width: 410px;
}
#formWrap form input.big {
  width: 100%;
}
#formWrap form select {
  -webkit-appearance: none;
  border: solid 1px #e5e5e5;
  height: 50px;
  padding: 0 10px;
  cursor: pointer;
}
#formWrap form textarea {
  width: 100%;
  border: solid 1px #e5e5e5;
  padding: 0 10px;
}
#formWrap .name-kanji {
  display: flex;
  align-items: center;
}
#formWrap .name-kanji span {
  display: block;
  width: 112px;
}
#formWrap .name-furigana {
  margin-top: 15px;
  display: flex;
  align-items: center;
}
#formWrap .name-furigana span {
  display: block;
  width: 112px;
}
#formWrap .address {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
#formWrap .address.post-no {
  margin-top: 0;
}
#formWrap .address.banchi input.small {
  width: 420px;
}
#formWrap .address span {
  display: block;
  width: 112px;
}
#formWrap .mail-box {
  display: flex;
  justify-content: flex-end;
}
#formWrap .mail-box-bottom {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
#formWrap .mail-p {
  font-size: 1.4rem;
  margin-top: 5px;
}
#formWrap .select {
  position: relative;
}
#formWrap .select::after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
  content: "\f0d7";
  font-family: "font awesome 5 free";
  font-weight: 900;
  pointer-events: none;
}
#formWrap .select.select-seireki {
  width: 153px;
  margin-right: 15px;
}
#formWrap .select.select-year {
  width: 95px;
}
#formWrap .select.select-gakubu {
  width: 153px;
  margin-right: 15px;
}
#formWrap .select.select-status {
  width: 95px;
}
#formWrap .year-area {
  display: flex;
}
#formWrap .seireki {
  width: 100%;
}
#formWrap .year {
  width: 100%;
}
#formWrap .gakubu-area {
  display: flex;
  margin-top: 15px;
}
#formWrap .gakubu {
  width: 100%;
}
#formWrap .status {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #formWrap {
    width: 100%;
  }
  #formWrap form table tr {
    display: block;
    padding: 0;
    margin-top: 50px;
    border-bottom: none;
  }
  #formWrap form table tr:first-child {
    border-top: none;
  }
  #formWrap form table tr th {
    top: 0;
    width: 100%;
    font-weight: bold;
    padding: 5px 10px;
    background-color: #efefef;
  }
  #formWrap form table tr td {
    width: 100%;
    margin-top: 30px;
    padding: 0 10px;
  }
  #formWrap form input.small {
    width: 100%;
  }
  #formWrap form input.middle {
    width: 100%;
  }
  #formWrap form input.big {
    width: 100%;
  }
  #formWrap .address {
    display: flex;
    align-items: center;
    margin-top: 15px;
  }
  #formWrap .address.post-no {
    margin-top: 0;
  }
  #formWrap .address.banchi input.small {
    width: 100%;
  }
  #formWrap .address span {
    display: block;
    width: 112px;
  }
}

.privacy-area {
  width: 100%;
  margin-top: 30px;
  padding: 22px 70px;
  background-color: rgba(239, 239, 239, 0.5);
}
.privacy-area .agree {
  font-weight: bold;
}
.privacy-area .agree input.agree-check {
  margin-right: 10px;
  height: 16px !important;
}
@media screen and (max-width: 768px) {
  .privacy-area {
    padding: 22px;
  }
}

#formWrap form .submit {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
}
#formWrap form .submit input.submit-input,
#formWrap form .submit input.reset-input {
  -webkit-appearance: none;
  display: block;
  width: 100%;
  height: 60px;
  letter-spacing: 0.1em;
  cursor: pointer;
}
#formWrap form .submit input.reset-input {
  height: 64px;
  transition: background-color 0.3s;
}
#formWrap form .submit input.reset-input:hover {
  background-color: rgba(65, 72, 83, 0.15);
}
#formWrap form .submit input.submit-input {
  position: relative;
  left: -2px;
  box-sizing: content-box;
  width: 206px;
  height: 60px;
  background-color: transparent;
  border-left: solid 2px #414853;
  border-right: solid 2px #414853;
  border-top: transparent;
  border-bottom: transparent;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s;
}
#formWrap form .submit input.submit-input:hover {
  color: #414853;
  z-index: 100;
}
#formWrap form .submit .reset-btn {
  width: 230px;
  height: 60px;
  z-index: 1000;
}
#formWrap form .submit .submit-btn {
  position: relative;
  border: 2px solid #414853;
  background: #414853;
  width: 230px;
  margin-right: 20px;
  font-weight: bold;
  z-index: 2;
}
#formWrap form .submit .submit-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
  content: "";
  width: 120%;
  height: 100%;
  background: #fff;
  transform-origin: right top;
  transform: skewX(-30deg) scale(0, 1);
  transition: transform 0.3s;
}
#formWrap form .submit .submit-btn:hover::before {
  transform-origin: left top;
  transform: skewX(-30deg) scale(1, 1);
}
@media screen and (max-width: 768px) {
  #formWrap form .submit {
    display: block;
  }
  #formWrap form .submit .submit-btn {
    margin: auto;
    width: 80%;
  }
  #formWrap form .submit .reset-btn {
    margin: 20px auto 0;
    width: 80%;
  }
  #formWrap form .submit input.submit-input {
    width: 100%;
    box-sizing: border-box;
  }
}