@charset "UTF-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css?family=Questrial");
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}
* {
  box-sizing: border-box;
}

html {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

body {
  font-family: "Segoe UI", Verdana, "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  counter-reset: item;
  background: #fff;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
a {
  text-decoration: none;
}

.flex {
  display: flex;
}

.left {
  width: 30%;
}

.right {
  width: 70%;
}

.wht {
  color: #fff;
}

.red {
  color: #ff6347;
}

.bold {
  font-weight: bold;
}

.bg-wht {
  background: #fff;
}

.center {
  text-align: center;
}

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

header {
  position: fixed;
  /*background: linear-gradient(rgba(0, 0, 102, 0.3) 30%, rgba(0, 0, 102, 0) 100%);*/
  border-top: solid 5px #005bac;
  top: 0;
  width: 100%;
  z-index: 99;
}

.topnav__bg {
  background: #005bac;
}

.topnav {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 0;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 480px) {
  .topnav {
    padding: 10px 0;
  }
}

.toptxt {
  width: 100%;
  display: flex;
  box-sizing: border-box;
  padding: 10px;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .toptxt {
    align-items: baseline;
  }
}

.toptxt h1 {
  color: #fff;
  font-weight: bold;
  font-size: 1.2em;
  /*text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;*/
}
@media screen and (max-width: 480px) {
  .toptxt h1 {
    width: 100%;
    font-size: 1em;
  }
}
.toptxt h1 img {
  width: 100%;
  max-width: 250px;
}
@media screen and (max-width: 480px) {
  .toptxt h1 img {
    max-width: 200px;
  }
}

.h1-sub {
  margin-left: 15px;
  font-size: 0.9em;
  font-weight: bold;
  color: #fff;
}

.copy {
  color: #fff;
  font-weight: bold;
  font-size: 1.2em;
  font-style: italic;
  margin-left: auto;
  width: 100%;
  max-width: 350px;
  /*text-shadow: 1px 1px 0 #ccc;*/
}
@media screen and (max-width: 480px) {
  .copy {
    font-size: 0.9em;
    margin-left: 0;
    margin-top: 5px;
    max-width: 150px;
  }
}
.copy img {
  width: 100%;
}

.spname {
  display: none;
}
@media screen and (max-width: 1024px) {
  .spname {
    display: block;
    width: 200px;
    padding: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .spname img {
    width: 100%;
  }
}

.navToggle {
  display: none;
}
@media screen and (max-width: 1024px) {
  .navToggle {
    display: block;
    position: fixed;
    right: 5px;
    top: 5px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 101;
    text-align: center;
    border-radius: 5px;
  }
  .navToggle span {
    display: block;
    position: absolute;
    width: 47px;
    border-bottom: solid 4px #fff;
    transition: 0.35s ease-in-out;
    left: 6px;
  }
  .navToggle span:nth-child(1) {
    top: 9px;
  }
  .navToggle span:nth-child(2) {
    top: 23px;
  }
  .navToggle span:nth-child(3) {
    top: 37px;
  }
  .navToggle span:nth-child(4) {
    border: none;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    top: 45px;
  }
  .navToggle.nav_active span {
    box-shadow: none;
    text-shadow: none;
    border-bottom: solid 4px #005bac;
  }
  .navToggle.nav_active span:nth-child(1) {
    top: 22px;
    left: 6px;
    transform: rotate(-45deg);
  }
  .navToggle.nav_active span:nth-child(2), .navToggle.nav_active span:nth-child(3) {
    top: 22px;
    transform: rotate(45deg);
  }
  .navToggle.nav_active span:nth-child(4) {
    border: none;
    color: #005bac;
    font-size: 11px;
    font-weight: bold;
    top: 45px;
  }
}

nav.globalMenuSp {
  display: none;
}
@media screen and (max-width: 1024px) {
  nav.globalMenuSp {
    display: block;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    /*background: #fff;*/
    color: #000;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
    height: 100%;
  }
  nav.globalMenuSp ul {
    background: #fff;
    /*background: -webkit-linear-gradient(-45deg, #fa709a 0%, #fbb0c9 100%);*/
    background-size: cover;
    margin: 0 auto;
    padding: 50px 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }
  nav.globalMenuSp ul li {
    font-size: 1.1em;
    list-style-type: none;
    padding: 0;
    width: 100%;
    /*border-bottom: 1px dotted #fff;*/
  }
  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  nav.globalMenuSp ul li a {
    display: block;
    color: #855e4f;
    font-weight: bold;
    padding: 1em 0;
    font-size: 1.1em;
    border-bottom: dotted 1px #ccc;
  }
  nav.globalMenuSp ul li a:hover {
    background: rgba(245, 245, 245, 0.8);
  }
  nav.globalMenuSp.nav_active {
    transform: translateY(0%);
  }
}

.gnav {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin: 5px 0;
}
@media screen and (max-width: 1024px) {
  .gnav {
    display: none;
  }
}
.gnav li a {
  font-size: 1em;
  color: #fff;
  /*text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;*/
  font-weight: bold;
  border-left: solid 2px #fff;
  display: inline-block;
  padding: 5px 25px;
}
.gnav li a:hover {
  color: #ccc;
  transition: 0.3s;
}

.sns {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  padding: 10px 0;
}
@media screen and (max-width: 480px) {
  .sns {
    padding: 0;
  }
}
.sns li a {
  display: block;
  width: 60px;
  padding: 10px;
  box-sizing: border-box;
}
.sns li a img {
  width: 100%;
}

.top {
  position: relative;
  width: 100%;
  height: 900px;
}
@media screen and (max-width: 480px) {
  .top {
    height: 700px;
  }
}

.image__aria {
  position: absolute;
  width: 100%;
  max-width: 1200px;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  border-bottom: solid 5px #005bac;
}
@media screen and (max-width: 480px) {
  .image__aria {
    border-bottom: none;
    bottom: 10px;
    padding: 20px;
    box-sizing: border-box;
  }
}

.name__image {
  position: absolute;
  width: 100%;
  max-width: 700px;
  left: 10px;
  bottom: 10px;
  z-index: 3;
}
@media screen and (max-width: 480px) {
  .name__image {
    position: relative;
    left: auto;
    bottom: auto;
  }
}
.name__image img {
  width: 100%;
}

.person__image {
  position: absolute;
  width: 100%;
  max-width: 550px;
  right: 10px;
  bottom: 0;
  z-index: 2;
}
@media screen and (max-width: 480px) {
  .person__image {
    position: relative;
    right: auto;
    bottom: auto;
  }
}
.person__image img {
  width: 100%;
}

.copy__image {
  position: absolute;
  width: 100%;
  max-width: 500px;
  top: 55%;
  left: 30%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  padding: 20px;
  box-sizing: border-box;
  z-index: 5;
}
@media screen and (max-width: 1024px) {
  .copy__image {
    top: auto;
    top: 70%;
    left: 50%;
    max-width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .copy__image {
    top: auto;
    bottom: 80px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    box-sizing: border-box;
  }
}
.copy__image img {
  width: 100%;
}

.copy__image-y {
  position: absolute;
  width: 100%;
  max-width: 200px;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  padding: 20px;
  box-sizing: border-box;
  z-index: 5;
}
@media screen and (max-width: 480px) {
  .copy__image-y {
    top: 150px;
    right: 0;
    left: auto;
    max-width: 150px;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
    padding: 20px;
    box-sizing: border-box;
  }
}
.copy__image-y img {
  width: 100%;
  max-width: 600px;
}

@media screen and (max-width: 1024px) {
  .copy__image-pc {
    display: none;
  }
}

.copy__image-tab {
  display: none;
}
@media screen and (max-width: 1024px) {
  .copy__image-tab {
    display: block;
    max-width: 550px;
  }
}

.info {
  position: absolute;
  left: 10px;
  bottom: 300px;
  background: rgba(255, 255, 255, 0.7);
  padding: 20px;
  border-radius: 5px;
}
@media screen and (max-width: 1024px) {
  .info {
    display: none;
  }
}

.sp-info {
  display: none;
}

#contents {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 100px;
  text-align: center;
}
#contents p {
  line-height: 1.6em;
}

.title {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background-size: contain;
  background-repeat: repeat-x;
  text-align: center;
  padding: 250px 0 40px 0;
}
@media screen and (max-width: 480px) {
  .title {
    padding: 200px 10px 20px;
    box-sizing: border-box;
  }
}

.title-copy {
  position: absolute;
  top: 180px;
  right: 0;
  width: 100%;
  max-width: 500px;
}
.title-copy img {
  width: 100%;
}

h2.subpage-ttl {
  font-size: 2.5em;
  font-weight: bold;
  position: relative;
  padding: 0 65px;
  margin: 30px 0;
  text-align: center;
  box-sizing: border-box;
  line-height: 1.2em;
  letter-spacing: 3px;
  text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px, 3px 3px 3px #ccc;
}
@media screen and (max-width: 1024px) {
  h2.subpage-ttl {
    font-size: 1.3em;
  }
}
h2.subpage-ttl::before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: #005bac;
}
h2.subpage-ttl span {
  position: relative;
  padding: 0 1em;
  background: #fff;
}
@media screen and (max-width: 480px) {
  h2.subpage-ttl span {
    display: block;
    padding: 0;
  }
}

.sp-br {
  display: none;
}
@media screen and (max-width: 480px) {
  .sp-br {
    display: block;
  }
}

.subtop h2 {
  /*background-image: url(../img/shiba.png);*/
  font-size: 4em;
  color: #fff;
  font-weight: bold;
  padding: 0 20px;
  text-shadow: 1px 1px 3px #000;
  background: linear-gradient(transparent 80%, #CCCC00 80%);
  box-sizing: border-box;
}

.text-area {
  text-align: left;
}
@media screen and (max-width: 480px) {
  .text-area {
    padding: 10px;
    box-sizing: border-box;
  }
}
.text-area p {
  line-height: 1.6em;
}
.text-area ul li {
  list-style-position: inside;
  list-style-type: disc;
  line-height: 1.6em;
}

.gen-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 480px) {
  .gen-flex {
    padding: 10px;
  }
}

@media screen and (max-width: 480px) {
  .access {
    padding: 10px;
  }
}
.access table {
  text-align: left;
  width: 100%;
  line-height: 1.6em;
  margin-bottom: 100px;
}
@media screen and (max-width: 480px) {
  .access table tr {
    display: flex;
    flex-wrap: wrap;
  }
}
.access table th {
  width: 20%;
  font-size: 1.2em;
  font-weight: bold;
  color: grey;
  padding: 5px;
  border-bottom: 1px solid #005bac;
}
@media screen and (max-width: 480px) {
  .access table th {
    border-bottom: none;
    width: 100%;
    font-size: 1em;
  }
}
.access table td {
  font-size: 1.2em;
  padding: 5px;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 480px) {
  .access table td {
    width: 100%;
    font-size: 1em;
  }
}

.low {
  padding-top: 30px !important;
}

h3.ttl {
  font-size: 1.6em;
  font-weight: bold;
  text-shadow: 1px 1px 1px #fff;
  color: #003333;
  margin: 10px 0;
}

/*------------------------------------------------
政策
------------------------------------------------*/
.policy-bg {
  position: relative;
  background: #b9e3f9 !important;
}

.policy-image {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
}
@media screen and (max-width: 1024px) {
  .policy-image {
    display: none;
  }
}
.policy-image img {
  width: 100%;
}

.policy-area {
  width: 70%;
}
@media screen and (max-width: 480px) {
  .policy-area {
    width: 100%;
  }
}

.policy-box {
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
  .policy-box {
    bottom: 0;
  }
}
.policy-box img {
  width: 100%;
}

.pic-area {
  width: 28%;
}
@media screen and (max-width: 480px) {
  .pic-area {
    width: 100%;
  }
}

.pic-box {
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
  .pic-box {
    bottom: 0;
  }
}
.pic-box img {
  width: 100%;
}

/*------------------------------------------------
プロフィール
------------------------------------------------*/
.profile-bg {
  position: relative;
  background: #fffcdb !important;
}

.profile-area {
  width: 60%;
  text-align: left;
  line-height: 1.3em;
  padding-left: 18px;
  font-size: 1.2em;
  color: #953b2a;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .profile-area {
    width: 100%;
    font-size: 1em;
  }
}

.pic-area2 {
  width: 38%;
}
@media screen and (max-width: 480px) {
  .pic-area2 {
    width: 100%;
  }
}

.profile-space {
  margin-bottom: 16px;
}
.profile-space li {
  margin-bottom: 5px;
}

.profile-space2 {
  margin-bottom: 20px;
}

.profile-space3 {
  margin-bottom: 5px;
}

.circle {
  position: relative;
}

.circle::before {
  content: "";
  background: #953b2a;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  position: absolute;
  transform: translatey(-50%);
  top: 50%;
  left: -18px;
}

.profile-image {
  position: fixed;
  bottom: 0;
  right: 15px;
  width: 100%;
  max-width: 350px;
}
@media screen and (max-width: 1024px) {
  .profile-image {
    display: none;
  }
}
.profile-image img {
  width: 100%;
}

/*------------------------------------------------
後援会
------------------------------------------------*/
.supporter-catch {
  color: #953b2a;
  font-weight: bold;
  text-align: left;
  font-size: 1.5em;
  margin-bottom: 50px;
}
@media screen and (max-width: 480px) {
  .supporter-catch {
    padding: 10px;
    font-size: 1.2em;
  }
}
.supporter-catch h3 {
  margin-bottom: 20px;
}

.supporter-info {
  text-align: left;
}
@media screen and (max-width: 480px) {
  .supporter-info {
    padding: 10px;
  }
}

.supporter-info-box {
  margin-bottom: 20px;
}

.rules {
  text-align: left;
  padding: 100px 0;
}
@media screen and (max-width: 480px) {
  .rules {
    padding: 50px 10px;
  }
}

.rules-box {
  padding: 10px;
  background: #f5f5f5;
  height: 300px;
  overflow-y: auto;
}

.supporter-ttl {
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 20px;
}

.add-number {
  display: flex;
  flex-wrap: wrap;
}
.add-number dt {
  width: 6%;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .add-number dt {
    width: 100%;
  }
}
.add-number dd {
  width: 92%;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .add-number dd {
    width: 100%;
  }
}

.tel-txt {
  letter-spacing: 1.8px;
}

/*------------------------------------------------
フッター
------------------------------------------------*/
.top-footer {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .top-footer {
    bottom: 0;
  }
}
.top-footer small {
  line-height: 1.5em;
  color: #005bac;
}
@media screen and (max-width: 480px) {
  .top-footer small {
    font-size: 0.8em;
  }
}

.sub-footer {
  position: relative;
  width: 100%;
  padding: 10px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .sub-footer {
    bottom: 0;
    padding: 10px;
    box-sizing: border-box;
  }
}
.sub-footer small {
  line-height: 1.5em;
  color: #005bac;
}
@media screen and (max-width: 480px) {
  .sub-footer small {
    font-size: 0.8em;
  }
}

/*ページtopボタン*/
#page_top {
  width: 100px;
  height: 100px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: green;
  border-radius: 50%;
  opacity: 0.6;
  z-index: 3;
}

#page_top a {
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
  text-decoration: none;
  border-radius: 50%;
}

#page_top a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f102";
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -25px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

#page_top a::after {
  content: "PAGE TOP";
  font-size: 13px;
  color: #fff;
  position: absolute;
  top: 50px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

.gmap {
  position: relative;
  padding-bottom: 450px;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.gmap iframe,
.gmap object,
.gmap embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 600px;
  height: 450px;
}

footer {
  height: auto;
  box-sizing: border-box;
}

footer p {
  position: static;
  font-size: 0.7em;
  padding: 20px;
  transform: translate(0, 0);
}

/*------------------------------------------------------------

問い合わせフォーム

------------------------------------------------------------*/
th.re_item {
  width: 300px;
}

.contact {
  width: 100%;
  background: #fff;
  box-sizing: border-box;
}
.contact tr {
  display: flex;
  padding: 20px 0;
}
@media screen and (max-width: 1024px) {
  .contact tr {
    flex-wrap: wrap;
  }
}
.contact tr:nth-of-type(odd) {
  background: #F6F7F9;
}
.contact th {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-weight: bold;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .contact th {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 1024px) {
  .contact th.re_item {
    width: 100%;
  }
}
.contact td {
  padding: 10px;
  box-sizing: border-box;
}
.contact input {
  margin: 5px 0;
}

.thanks {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.thanks h3 {
  font-size: 1.8em;
  padding: 5px;
  border-bottom: solid 1px #ccc;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .thanks h3 {
    font-size: 1.3em;
  }
}

.thanks-txt {
  padding: 10px;
  line-height: 1.8em;
}
@media screen and (max-width: 480px) {
  .thanks-txt {
    box-sizing: border-box;
  }
}

@media screen and (max-width: 480px) {
  .mfp_element_textarea {
    width: 100% !important;
    margin: 0 !important;
  }
}

/*------------------------------------------------
ポリシーテキスト
------------------------------------------------*/
.policy-text-area {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  text-align: left;
  padding: 20px;
}

.policy-text-area h3 {
  font-weight: bold;
  padding: 10px 0;
}

.policy-text-area p {
  font-weight: normal;
  color: #696969;
  text-shadow: none;
}

/*------------------------------------------------------------

TOPお知らせエリア（Wordpress）

------------------------------------------------------------*/
.wp-info {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 100px auto;
}

.info-title {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background-size: contain;
  background-repeat: repeat-x;
  text-align: center;
  padding: 0;
}
@media screen and (max-width: 480px) {
  .info-title {
    padding: 0 10px;
    box-sizing: border-box;
  }
}

.wp-info-box {
  max-height: 500px;
  overflow-y: auto;
}

.news-post {
  padding: 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .news-post {
    padding: 10px;
  }
}

.news-post li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px;
  border-bottom: solid 1px #ccc;
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
  .news-post li {
    flex-wrap: wrap;
  }
}

.news-post h3, .news-post h4 {
  font-weight: bold;
  line-height: 1.5em;
}

.date {
  font-size: 0.9em;
  color: #696969;
  line-height: 1.5em;
}
@media screen and (max-width: 480px) {
  .date {
    width: 100%;
    text-align: right;
  }
}/*# sourceMappingURL=style.css.map */