@charset "utf-8";
/* CSS Document */

@import url("https://fonts.googleapis.com/css2?family=Nothing+You+Could+Do&family=Noto+Sans+JP:wght@100..900&display=swap");

/* --------------------------------------------------
  common
-------------------------------------------------- */

body {
  color: #222;
  font-size: 16px;
  letter-spacing: 0.12em;
  line-height: 1.875;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  word-break: break-word;
  line-break: strict;
  background-color: #fff;
}
html {
	scroll-padding-top: 130px;
}


*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
/*  border-style: solid;
  border-width: 0;*/
}
a:link{color:#0E345C;text-decoration: none;}
a:visited{color:#0E345C;}
a:active{color:#0E345C;}
a:hover{
	color:#0E345C;
	text-decoration:underline;
}


.l-hero {
  width: 100%;
  position: relative;
  margin-top: 145px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .l-hero {
    margin-top: 54px;
    margin-bottom: 30px;
  }
}
.l-hero_bg {
  width: 100%;
  padding-top: 0;
  min-height: 300px;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.l-hero_bg.-bg01 {
  background-image: url(../img/common/hero-bg01_pc.jpg);
}
@media screen and (max-width: 767px) {
  .l-hero_bg {
    padding-top: 0;
    min-height: 0;
  }
  .l-hero_bg.-bg01 {
    background-image: url(../img/common/hero-bg01_sp.jpg);
  }
}

.l-hero_catch {
  width: 100%;
  position: absolute;
  left: 0;
  top: 47%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .l-hero_catch {
    padding: 0 20px;
    top: 42%;
  }
}
.l-hero_catch h1 {
  color: #fff;
  display: block;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  font-size: 42px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-hero_catch h1 {
    font-size: 27px;
  }
}
.l-hero_catch h1::after {
  content: "";
  width: 50px;
  height: 4px;
  background-color: #fff;
  display: block;
  margin: 10px auto 0 0;
}
@media screen and (max-width: 767px) {
  .l-hero_catch h1::after {
    width: 40px;
    height: 2px;
    margin: 5px auto 0 0;
  }
}
.l-hero .breadcrumb {
  width: 100%;
  background: rgba(14, 52, 92, 0.8);
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 40px 1px;
}
@media screen and (max-width: 767px) {
  .l-hero .breadcrumb {
    padding: 1px 20px 5px;
  }
}
.l-hero .breadcrumb_list {
  max-width: 1520px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.l-hero .breadcrumb_list::-webkit-scrollbar {
  display: none;
}
.l-hero .breadcrumb li {
  display: block;
  position: relative;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .l-hero .breadcrumb li {
    line-height: 1;
  }
}
.l-hero .breadcrumb li:first-child::before {
  display: none;
}
.l-hero .breadcrumb li.is-view a {
  pointer-events: none;
}
.l-hero .breadcrumb li::before {
  content: "＞";
  display: inline-block;
  margin: 0 3px 0 5px;
  font-size: clamp(14px, 14px, 14px);
}
@media screen and (max-width: 767px) {
  .l-hero .breadcrumb li::before {
    font-size: 11px;
    margin: 0 3px;
  }
}
.l-hero .breadcrumb li a {
  font-size: clamp(14px, 14px, 14px);
  font-weight: 400;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .l-hero .breadcrumb li a {
    font-size: 11px;
  }
}

.l-hero a {
  color: inherit;
}
.l-hero a:link, a:active, a:visited {
  text-decoration: none;
}


/*-------------- h2タイトル --------------*/
#member h2, #member_req h2 {
  display: block;
  background-color: #0E345C;
  color: #fff;
  font-size: 26px;
  position: relative;
  padding: 6px 20px;
  overflow: hidden;
  font-weight: 600;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #member h2, #member_req h2 {
    font-size: 18px;
    padding: 3px 20px;
    letter-spacing: 0.06em;
  }
}
#member h2::before, #member_req h2::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 18px solid transparent;
  border-left: 18px solid transparent;
  border-bottom: 18px solid rgba(255, 255, 255, 0.6);
  border-top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: -12px;
  top: -3px;
}
@media screen and (max-width: 767px) {
  #member h2::before, #member_req h2::before {
    border-right: 11px solid transparent;
    border-left: 11px solid transparent;
    border-bottom: 11px solid rgba(255, 255, 255, 0.6);
    right: -8px;
    top: -2px;
  }
}

/*-------------- h3タイトル --------------*/
#member h3 {
  display: block;
  color: #0E345C;
  font-size: 24px;
  position: relative;
  border:none;
  border-bottom: solid 1px #0E345C;
  letter-spacing: 0.12em;
  margin-bottom: 40px;
  font-weight: 600;
  background: none;
}
@media screen and (max-width: 767px) {
	#member h3 {
		font-size: 16px;
		margin-bottom: 30px;
	}
}

/*-------------- h4タイトル --------------*/
#member h4 {
  color: #222;
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 500;
  padding-left: 18px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #member h4 {
    font-size: 16px;
    line-height: 1.4;
    padding-left: 12px;
  }
}
#member h4:before {
  content: "";
  width: 10px;
  height: 26px;
  background: #0E345C;
  position: absolute;
  left: 0;
  top: 5px;
}
@media screen and (max-width: 767px) {
  #member h4:before {
    width: 5px;
    height: 100%;
    top: 0;
  }
}



/*-------------- 大枠・サイドメニュー --------------*/
#containerBG{
	width:1000px;
	margin:0 auto 50px;
	padding:10px 10px 20px;
	background: none;
}

.me_contBox{
	width:1000px;
	overflow:hidden;
	text-align:left;
}
.me_contentsL{
	width:220px;
	float:left;
	text-align:left;
}
.me_contentsR{
	width:760px;
	float:right;
	text-align:left;
}
.me_contents02{
	width:760px;
	margin:0 auto;
	padding:0;
	text-align:left;
	background-color:#fff;
}

#s-nav{border:none;}

#s-nav ul{
	list-style-type:none;
}

#s-nav img{
	display: inline-block;
	vertical-align:bottom;
}


/*-------------- toTOP --------------*/
.pagetop{
	margin:40px auto 0;
	width:1000px;
	text-align:right;
}


/*-------------- 下層　ボタン（白背景） --------------*/
.parts-btn {
  width: 300px;
  overflow: hidden;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .parts-btn {
    width: 270px !important;
  }
}
/*.parts-btn.-mini {
  width: 18rem;
  min-width: 120px;
}
.parts-btn.-mini a {
  width: 18rem;
  min-width: 120px;
}*/
.parts-btn a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  width: 300px;
  height: 54px;
  min-height: 35px;
  padding: 0 46px 0 30px;
  font-size: clamp(12px, 16px, 16px);
  letter-spacing: 0.1rem;
  position: relative;
  border-radius: 10rem;
  border: 1px solid #0E345C;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.4;
  color: #0E345C;
  margin-top:30px;
}
@media screen and (max-width: 767px) {
  .parts-btn a {
    width: 270px !important;
    height: 50px;
    min-height: 0;
    font-size: 16px;
    padding: 0 40px 0 25px;
  }
}
.parts-btn a::after {
  content: "";
  width: 44px;
  height: 44px;
  background: url(../img/common/btn_cmn_pc.png) no-repeat left top/contain;
  position: absolute;
  right: 5px;
}
@media screen and (max-width: 767px) {
  .parts-btn a::after {
    background-image: url(../img/common/btn_cmn_sp.png);
    width: 43px;
    height: 43px;
    right: 3px;
  }
}
.parts-btn a[href*=".pdf"] {
  background: #CDD1DB;
  padding: 0 46px 0 26px;
}
@media screen and (max-width: 767px) {
  .parts-btn a[href*=".pdf"] {
    padding: 0 40px 0 25px;
  }
}
.parts-btn a[href*=".pdf"]::before {
  content: "";
  width: 36px;
  height: 42px;
  background-image: url(../img/common/pdf-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: inline-block;
  margin-right: 1.4rem;
}
@media screen and (max-width: 767px) {
  .parts-btn a[href*=".pdf"]::before {
    width: 23px;
    min-width: 23px;
    height: 27px;
    min-height: 27px;
    margin-right: 10px;
  }
}
.parts-btn a[href*=".pdf"]:after {
  background: url(../img/common/btn_cmn_pdf.svg) no-repeat left top/contain;
}
.parts-btn a:link, a:active, a:visited {
  text-decoration: none;
}




 /* ---------    header    --------- */
.l-header {
  background: #fff;
  height: 130px;
  padding-top: 10px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;

  letter-spacing: 0.12em;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 77px;
    padding-top: 0;
    position: relative;
  }
}
.l-header-wrap {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  padding: 0 43px 16px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .l-header-wrap {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    padding: 0 10px;
    height: 100%;
  }
}
.l-header-logo {
  width: 320px;
}
@media screen and (max-width: 767px) {
  .l-header-logo {
    width: 197px;
  }
}
.l-header-util {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: end;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  gap: 30px;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .l-header-util {
    display: block;
    padding-bottom: 0;
  }
}
.l-header-util .util-lang {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: end;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .l-header-util .util-lang {
    margin-right: 2px;
  }
}
.l-header-util .util-lang li {
  font-size: clamp(14px, 1.6rem, 16px);
}
@media screen and (max-width: 767px) {
  .l-header-util .util-lang li {
    font-size: 13px;
    letter-spacing: 0.001em;
  }
}
.l-header-util .util-lang li + li {
  position: relative;
  margin-left: 4px;
  padding-left: 5px;
  letter-spacing: 0;
}
.l-header-util .util-lang li + li:before {
  content: "";
  width: 1px;
  height: 16px;
  background: #0E345C;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-header-util .util-lang li + li > * {
  text-decoration: underline;
}
.l-header-util .util-lang li.is-current {
  font-weight: 600;
}
.l-header-util .util-login {
  background: #7D8599;
  color: #0E345C;
  font-weight: 600;
  width: 170px;
  height: 40px;
  font-size: clamp(14px, 16px, 16px);
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  border-radius: 10rem;
  font-weight: 600;
  padding-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .l-header-util .util-login {
    font-size: 12px;
    letter-spacing: 0.001em;
    width: 120px;
    height: 32px;
    padding-bottom: 0;
    margin-top: 4px;
  }
}
.l-header-util .util-login .icn {
  width: 14px;
  height: 20px;
  background: url(../img/common/icn_login.svg) no-repeat left top/contain;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .l-header-util .util-login .icn {
    width: 10px;
    height: 12px;
    margin-right: 5px;
    padding-bottom: 2px;
  }
}
.l-header-util .util-login.--T {
  background: #D8DEE5;
  color: #0E345C;
}

.l-header-gnav {
  position: absolute;
  right: 0;
  bottom: -37px;
  background: #0E345C;
}
@media screen and (max-width: 1280px) {
  .l-header-gnav {
    bottom: -27px;
  }
}
@media screen and (max-width: 767px) {
  .l-header-gnav {
    width: 100%;
    bottom: auto;
    top: 77px;
  }
}
.l-header-gnav ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: end;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  padding: 22px 40px;
  gap: 62px;
}
@media screen and (max-width: 1280px) {
  .l-header-gnav ul {
    padding: 10px 40px;
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-header-gnav ul {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    gap: 20px;
    padding: 10px 0;
  }
}
.l-header-gnav li a {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-width: 1280px) {
  .l-header-gnav li a {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .l-header-gnav li a {
    font-size: 14px;
    line-height: 1.2857142857;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .l-header-gnav.is-fixed {
    position: fixed;
    top: 0;
  }
}

.l-header img {
  image-rendering: -webkit-optimize-contrast;
  vertical-align: middle;
  width: 100%;
}
.l-header a {
  color: inherit;
}
.l-header a:link, a:active, a:visited {
  text-decoration: none;
}





/* ---------    footer    --------- */
.l-footer {
  margin-top: -10px;
  padding: 62px 0 20px;
  background: #0E345C;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-footer {
    margin-top: 110px;
    padding: 25px 0 0;
  }
}
.l-footer .c-inner {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-footer .c-inner {
    padding: 0;
    width: 100%;
  }
}
.l-footer-pagetop {
  position: relative;
}
.l-footer-pagetop .pagetop-btn {
  display: block;
  width: 70px;
  position: fixed;
  right: 40px;
  bottom: 30px;
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .l-footer-pagetop .pagetop-btn {
    width: 50px;
    right: 20px;
  }
}
.l-footer-pagetop .pagetop-btn.is-on {
  opacity: 1;
  pointer-events: auto;
}
@media print and (any-hover: hover), screen and (any-hover: hover) and (min-width: 768px) {
  .l-footer-pagetop .pagetop-btn.is-on:hover {
    opacity: 0.7;
  }
}
.l-footer-pagetop .pagetop-btn.is-foot {
  position: absolute;
  bottom: 80px;
}
@media screen and (max-width: 767px) {
  .l-footer-pagetop .pagetop-btn.is-foot {
    bottom: 35px;
  }
}
.l-footer-wrap {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  padding: 0 10rem;
  /*@include mq(l) {
  	padding: 0 5rem;
  }*/
}
@media screen and (max-width: 767px) {
  .l-footer-wrap {
    display: block;
    padding: 0;
  }
}
.l-footer-head {
  width: 319px;
}
@media screen and (max-width: 767px) {
  .l-footer-head {
    width: 100%;
    background: #08203A;
    padding: 20px 5%;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
            justify-content: flex-start;
    -ms-flex-align: start;
    -webkit-box-align: start;
            align-items: flex-start;
    gap: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-head .footer-logo {
    width: 132px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-head .footer-info {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.l-footer-head .footer-info .info-address {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  font-style: inherit;
}
@media screen and (max-width: 767px) {
  .l-footer-head .footer-info .info-address {
    margin-top: 0;
    font-size: 14px;
  }
}
.l-footer-head .footer-info .info-btn {
  background: #7D8599;
  color: #0E345C;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  border-radius: 10rem;
  font-weight: 600;
  margin-top: 15px;
  padding-bottom: 2px;
  width: 156px;
  height: 36px;
  font-size: clamp(13px, 16px, 16px);
}
@media screen and (max-width: 767px) {
  .l-footer-head .footer-info .info-btn {
    padding: 0;
    width: 160px;
    height: 40px;
  }
}
.l-footer-head .footer-info .info-btn .icn {
  width: 13px;
  height: 20px;
  background: url(../img/common/icn_login.svg) no-repeat left top/contain;
  margin-right: 10px;
  position: relative;
  top: 2px;
}

.l-footer-head .footer-info .info-btn.--T {
  background: #D8DEE5;
  color: #0E345C;
}

@media screen and (max-width: 767px) {
  .l-footer-body {
    padding-bottom: 20px;
  }
}
.l-footer-body .footer-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  gap: 130px;
  /*@include mq(l) {
  	gap: 5rem;
  }*/
}
@media screen and (max-width: 767px) {
  .l-footer-body .footer-list {
    display: block;
    padding: 0 5%;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-body .footer-list .list-col {
    width: 100%;
  }
  .l-footer-body .footer-list .list-col + .list-col {
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.l-footer-body .footer-list li {
  font-weight: 400;
  font-size: clamp(13px, 14px, 16px);
}
@media screen and (max-width: 767px) {
  .l-footer-body .footer-list li {
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .l-footer-body .footer-list li:last-of-type {
    border-bottom: none;
  }
  .l-footer-body .footer-list li a {
    display: block;
    padding-bottom: 10px;
  }
}
.l-footer-body .footer-list li + li {
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .l-footer-body .footer-list li + li {
    margin-top: 10px;
  }
}
.l-footer-ttl {
  font-size: 14px;
  margin-bottom: 40px;
  text-align: center;
}
.l-footer-ttl-logo {
  display: block;
  margin: 0 auto 20px;
  width: 155px;
}
.l-footer-list {
  margin-bottom: 43px;
}
.l-footer-list li {
  margin-bottom: 13px;
}
.l-footer-copyright {
  margin-top: 40px;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-footer-copyright {
    font-size: 8px;
    margin: 0;
    padding: 0 0 10px;
    background: #08203A;
  }
}

.l-footer a {
  color: #fff;
}
.l-footer a:link, a:active, a:visited {
  text-decoration: none;
}

@media print, screen and (min-width: 768px) {
  .l-footer a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
  .l-footer a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .l-footer a:hover {
    opacity: 0.7;
  }
}
.l-footer dl, ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-logo img{
	width:100%;
}




/* --------------------------------------------------
  display
-------------------------------------------------- */
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media print, screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}



/*----------------------------------------
	newsletter
 ----------------------------------------*/
.newsltr{
	width:760px;
	overflow:hidden;
	padding:20px 0 0;
	margin:0 auto;
}
.newsltr div{
	float:left;
	padding:0 30px 20px;
}
p.pic{
	border: 1px solid #EEEEEE;
	display:block;
	width:190px;
	height:280px;
	overflow:hidden;
	position:relative;
	z-index:1;
}
.newsltrLink{
	background-color: #F6F4EF;
	padding:20px 5px;
	margin:20px auto;
	width: 100%;
	font-size: 15px;
	text-align: center;
}
.newsltrLink a{
	color: inherit;
}
.newsltrLink a:link, a:visited, a:active {
	text-decoration: none;
}
.newsltrLink a:hover {
	text-decoration: underline;
}


/*----------------------------------------
	competition
 ----------------------------------------*/
.competitionBox{
	width:760px;
	overflow:hidden;
	padding:0;
	margin:0 auto;
	text-align: center;
}
.competitionLinkBox{
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 40px;
  justify-content: center;
}
.competitionLinkBox p{
	width: 130px;
	text-align: center;

}
.competitionLinkBox p a{
	font-size: 20px;
	display: block;
	color: #222;
	letter-spacing: 0.01em;
	padding: 6px 0;
	background-color: #E0E9F0;
	text-decoration: none;
}
.competitionLinkBox p a:hover{
	opacity:0.8;
}

.competitionLinkBox p.competitionLinkOn a{
	background-color: #0E345C;
	color: #fff;
}


table.res01{
	width:760px;
}
table.res01 th{
	background:#0E345C;
}
table.res01 td.Bbg04{
	background:#F6F4EF;
	color:#222;
}
table.res01 td:nth-last-of-type(1){
	background:#E0E9F0;
}
table.res01 td.L04{
	color:#a07a1c;
}
.res_title01{
	color:#0E345C;
}


/*----------------------------------------
	reserve
 ----------------------------------------*/
table.calendar td img{
	padding-bottom:6px;
	height: auto;
}



/*----------------------------------------
	requestform
 ----------------------------------------*/
#member_req h3{
	padding:0 !important;
  display: block !important;
  color: #0E345C !important;
  font-size: 24px !important;
  position: relative !important;
  border-bottom: solid 1px #0E345C !important;
  letter-spacing: 0.12em !important;
  margin-bottom: 40px !important;
  font-weight: 600 !important;
}

table.req01 {
	width:760px !important;
	border-collapse: separate;
	border-spacing: 0;
	border:#CCC solid 1px;
	margin:15px 0 10px;
	padding:0;
}

table.req01 th{
	width:220px !important;
	background:#F7F3EB;
	border-right:#CCC solid 1px;
	border-bottom:#CCC solid 1px;
	color:#3F3319;
	font-size:16px;
	font-weight:bold;
	text-align:left;
	padding:24px 12px;
	vertical-align:top;
}


/*----------------------------------------
	news
 ----------------------------------------*/

#me_newsList{
	overflow:hidden;
	width:760px;
	text-align:left;
}

dl.news03 dt{
	float: left;
	padding:15px 10px 15px 0;
	text-indent: 1em;
	width:150px;
}


.news03 dd{
	padding:15px 0 15px 160px;
	border-bottom:dotted 1px #CCC;
}




/*----------------------------------------
	login
 ----------------------------------------*/
.loginBG{
	background-color: #F6F4EF;
}


