@charset "UTF-8";

/*CSSDocument*/


/* html body base
===============================================================*/


/*
html ----------------------------------------------------------*/

*{ margin:0px; padding:0px;}

body{
  color:#333;
  margin:0;
  padding:0;
  background:#FFFFFF;
  font-family: "Noto Sans JP", system-ui;
  text-align:center;
  font-size:100%;
  -webkit-text-size-adjust: none;
  position:relative;
  font-optical-sizing: auto;
  letter-spacing: 0.08em;
}

a:link,
a:visited,
a:hover,
a:active { color:#333;text-decoration:none;}

ul{ list-style:none;}

img {
  padding:0px;
  margin:0px;
  vertical-align:bottom;
  max-width: 100%;
  height: auto;
}
a {
  transition: all 0.4s ease-out;
}
a:hover {
  opacity:0.7;
}

sup {
  font-size: 0.75em;
  vertical-align: super;
}

/*
html ----------------------------------------------------------*/

/*font-family: "Bebas Neue", system-ui;
font-family: "Noto Sans JP", system-ui;*/

input ,
select ,
button ,
textarea {
  font-family: "Noto Sans JP", system-ui;
}

/* body base
===============================================================*/

.l-inner {
  max-width: 1456px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 60px;
}
.l-inner2 {
  max-width: 1380px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 60px;
}

.l-wrap {
  padding: 150px 0 0 0;
}
.l-wrap.l-wrap--top {
  padding: 0px 0 0 0;
}
@media screen and (max-width: 1000px) {
  .l-wrap {
    padding: 120px 0 0 0;
  }
}

@media screen and (max-width: 768px) {
  .l-inner {
    padding: 0 20px;
  }
  .l-inner2 {
    padding: 0 20px;
  }
  .l-wrap {
    padding: 80px 0 0 0;
  }
}


.l-headerOuter {
  position: absolute;
/*
  position: fixed;
*/
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.l-header {
}
.l-headerWrap {
  height: 150px;
  display : flex;
  justify-content: center;
  align-items: center;
}
.l-header__logo {
  max-width: 300px;
  margin: 0 auto;
  position: relative;
  z-index: 1200;
}

.p-headerMenuBtn {
  display : flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 25px;
  right: 25px;
  height: 80px;
  width: 80px;
  cursor: pointer;
  z-index: 1020;
  border-radius: 50%;
  background: #182630;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.3);
  transition: all .4s;
}
.p-headerMenuBtnInner,
.p-headerMenuBtnInner span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.p-headerMenuBtnInner {
  position: relative;
  width: 38px;
  height: 29px;
  background: none;
  border: none;
  appearance: none;
}
.p-headerMenuBtnInner span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
}
.p-headerMenuBtnInner span:nth-of-type(1) {
  top: 0;
}
.p-headerMenuBtnInner span:nth-of-type(2) {
  top: 13px;
}
.p-headerMenuBtnInner span:nth-of-type(3) {
  bottom: 0;
}
.p-headerMenuBtn.is-open .p-headerMenuBtnInner span:nth-of-type(1) {
  transform: translateY(13px) rotate(-45deg);
}
.p-headerMenuBtn.is-open .p-headerMenuBtnInner span:nth-of-type(2) {
  opacity: 0;
}
.p-headerMenuBtn.is-open .p-headerMenuBtnInner span:nth-of-type(3) {
  transform: translateY(-13px) rotate(45deg);
}


@media screen and (max-width: 1000px) {
  .l-headerWrap {
    height: 120px;
  }
  .l-header__logo {
    max-width: 290px;
  }
  
  .p-headerMenuBtn {
    top: 25px;
    right: 25px;
    height: 70px;
    width: 70px;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.3);
  }
  .p-headerMenuBtnInner {
    width: 33px;
    height: 25px;
  }
  .p-headerMenuBtnInner span {
    height: 2px;
  }
  .p-headerMenuBtnInner span:nth-of-type(2) {
    top: 11px;
  }
  .p-headerMenuBtn.is-open .p-headerMenuBtnInner span:nth-of-type(1) {
    transform: translateY(11px) rotate(-45deg);
  }
  .p-headerMenuBtn.is-open .p-headerMenuBtnInner span:nth-of-type(3) {
    transform: translateY(-11px) rotate(45deg);
  }
}
@media screen and (max-width: 768px) {
  .l-headerWrap {
    height: 80px;
  }
  .l-header__logo {
    max-width: 200px;
  }
  
  .p-headerMenuBtn {
    top: 15px;
    right: 15px;
    height: 50px;
    width: 50px;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.3);
  }
  .p-headerMenuBtnInner {
    width: 23px;
    height: 18px;
  }
  .p-headerMenuBtnInner span {
    height: 2px;
  }
  .p-headerMenuBtnInner span:nth-of-type(2) {
    top: 8px;
  }
  .p-headerMenuBtn.is-open .p-headerMenuBtnInner span:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
  }
  .p-headerMenuBtn.is-open .p-headerMenuBtnInner span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
  }
}


.l-gNav {
  position: fixed;
  width: 380px;
/*
  right: 0;
*/
  right: -380px;
  top: 0;
  height: 100vh;
  background: rgba(255,255,255,0.97);
  border-top: none;
  border-bottom: none;
  padding: 60px 0 100px 0;
  box-sizing: border-box;
  transition: all 0.3s ease-out;
  overflow-y: scroll;
  z-index: 1000;
}
.l-gNavInner {
  padding: 100px 0 150px;
}
.l-gNavMenu {
  padding: 0 30px;
}
.l-gNavMenuLink {
  margin-bottom: 40px;
}
.l-gNavMenuLinkItem {
  
}
.l-gNavMenuLinkItem a {
  display: block;
  background: #204359;
  box-sizing: border-box;
  text-align: center;
  padding: 15px 20px 16px;
  color: #FFF;
  border-radius: 10px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
  box-shadow: 3px 3px 3px rgba(0,0,0,0.1);
}
.l-gNavMenuList {
  text-align: left;
}
.l-gNavMenuList > li {
  border-bottom: #204359 1px solid;
  padding: 10px 0;
  transition: all 0.3s ease-out;
  opacity: 0;
  transition-delay: 0.4s;
  letter-spacing: -1em;
}
.l-gNavMenuList > li > a {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  position: relative;
  padding: 8px 0 9px 0px;
  display: block;
  color: #111;
}
.l-gNavMenuSubList {
  margin-left: 0px;
  padding: 0 0 7px 0;
}
.l-gNavMenuSubList > li {
}
.l-gNavMenuSubList > li > a {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  position: relative;
  color: #111;
  padding: 3px 0 4px 30px;
  display: block;
}
.l-gNavMenuSubList > li > a:before {
  content: '';
  display: block;
  width: 16px;
  height: 2px;
  background: #111;
  position: absolute;
  top: 15px;
  left: 0;
  opacity: 0.6;
}


.l-gNavMenuAccount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 0 0 30px 0;
  border-bottom: #ADADAD 1px solid;
  margin-bottom: 30px;
}
.l-gNavMenuAccount__img {
  width: 80px;
  border-radius: 50%;
  overflow: hidden;
}
.l-gNavMenuAccount__img img {
  aspect-ratio: 1;
  object-fit: cover;
}
.l-gNavMenuAccountContents {
  width: calc(100% - 100px);
  text-align: left;
}
.l-gNavMenuAccount__name {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
}
.l-gNavMenuAccount__id {
  display: flex;
  margin-top: 10px;
}
.l-gNavMenuAccount__id span:nth-of-type(1) {
  font-size: 10px;
  line-height: 1.4;
  display: block;
  background: #E6E6E6;
  padding: 2px 5px 3px 5px;
}
.l-gNavMenuAccount__id span:nth-of-type(2) {
  font-size: 12px;
  line-height: 1.4;
  display: block;
  padding: 1px 0 0 10px;
  color: #ADADAD;
  word-break: break-all;
}



.l-gNav.is-open {
  right: 0;
}
.l-gNav.is-open .l-gNavMenuList > li {
  opacity: 1;
  letter-spacing: 0.08em;
}

/*
body.is-menuOpen {
  overflow: hidden;
}
body.is-menuOpen .l-header {
} 
*/
/*
body.is-menuOpen .p-headerMenuBtn {
  background: #FFF;
}
body.is-menuOpen .p-headerMenuBtnInner span {
  background-color: #182630;
}
*/


@media screen and (max-width: 768px) {
  .l-gNav {
    width: 280px;
    right: -280px;
    padding: 60px 0 100px 0;
  }
  .l-gNavInner {
    padding: 100px 0 100px;
  }
  .l-gNavMenu {
    padding: 0 30px;
  }
  .l-gNavMenuLink {
    margin-bottom: 30px;
  }
  .l-gNavMenuLinkItem a {
    padding: 11px 20px 13px;
    border-radius: 6px;
    font-size: 16px;
    box-shadow: 3px 3px 3px rgba(0,0,0,0.1);
  }
  .l-gNavMenuList {
  }
  .l-gNavMenuList > li {
    padding: 10px 0;
  }
  .l-gNavMenuList > li > a {
    font-size: 18px;
    padding: 6px 0 7px 0px;
  }
  .l-gNavMenuList > li > a:before {
    width: 44px;
    height: 44px;
    top: -4px;
    left: -6px;
  }
  .l-gNavMenuSubList {
    margin-left: 0px;
    padding: 0 0 7px 0;
  }
  .l-gNavMenuSubList > li {
  }
  .l-gNavMenuSubList > li > a {
    font-size: 16px;
    padding: 3px 0 4px 26px;
  }
  .l-gNavMenuSubList > li > a:before {
    width: 12px;
    height: 1px;
    top: 15px;
  }
  .l-gNavMenuAccount {
    padding: 0 0 20px 0;
    margin-bottom: 20px;
  }
  .l-gNavMenuAccount__img {
    width: 60px;
  }
  .l-gNavMenuAccountContents {
    width: calc(100% - 75px);
  }
  .l-gNavMenuAccount__name {
    font-size: 16px;
  }
  .l-gNavMenuAccount__id {
    margin-top: 7px;
  }
  .l-gNavMenuAccount__id span:nth-of-type(1) {
    font-size: 8px;
    padding: 2px 5px 3px 5px;
  }
  .l-gNavMenuAccount__id span:nth-of-type(2) {
    font-size: 8px;
    line-height: 1.4;
    padding: 2px 0 0 8px;
  }
}





.p-sns {
  background: #E6E6E6;
  padding: 40px 0;
}
.p-snsFrame {
}
.p-snsList {
  display: flex;
  justify-content: center;
}
.p-snsList > li {
  width: 49px;
  margin: 0 2px;
}

@media screen and (max-width: 768px) {
  .p-sns {
    padding: 30px 0;
  }
  .p-snsList > li {
    width: 40px;
    margin: 0 2px;
  }
}



.l-footer {
  background: #182630;
  color: #FFF;
}
.l-footer a {
  color: #FFF;
}
.l-footerWrap {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 35px 60px 30px;
}
.l-footerMenu {
  display: flex;
  flex-wrap: wrap;
}
.l-footerMenuList {
  width: 170px;
  text-align: left;
  margin-right: 20px;
  margin-bottom: 30px;
}
.l-footerMenuList > li {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
}
.l-footerMenuList > li + li {
  margin-top: 10px;
}
.l-footerMenuList > li > a {
  display: inline-block;
}
.l-footerMenuSubList {
  margin-top: 7px;
}
.l-footerMenuSubList > li {
  font-size: 12px;
  font-weight: 400;
}
.l-footerMenuSubList > li + li {
  margin-top: 5px;
}
.l-footerMenuSubList > li > a {
  display: inline-block;
}


.l-footerLinks {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.l-footerLinksList {
  text-align: left;
  margin-right: 50px;
  margin-bottom: 12px;
}
.l-footerLinksList > li {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
}
.l-footerLinksList > li:nth-of-type(n + 2) {
  margin-top: 12px;
}
.l-footerLinksList > li > a {
  text-decoration: underline;
}

.l-footerCopy {
  margin-top: 58px;
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .l-footer {
  }
  .l-footer a {
  }
  .l-footerWrap {
    padding: 35px 20px 30px;
  }
  .l-footerMenu {
    display: flex;
    flex-wrap: wrap;
  }
  .l-footerMenuList {
    width: 50%;
    text-align: left;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .l-footerMenuList > li {
    font-size: 14px;
    line-height: 1.4;
  }
  .l-footerMenuList > li + li {
    margin-top: 10px;
  }
  .l-footerMenuList > li > a {
  }
  .l-footerMenuSubList {
    margin-top: 7px;
  }
  .l-footerMenuSubList > li {
    font-size: 12px;
  }
  .l-footerMenuSubList > li + li {
    margin-top: 5px;
  }
  .l-footerMenuSubList > li > a {
  }


  .l-footerLinks {
    margin-top: 20px;
    display: block;
  }
  .l-footerLinksList {
    margin-right: 0px;
    margin-bottom: 12px;
  }
  .l-footerLinksList > li {
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
  }
  .l-footerLinksList > li:nth-of-type(n + 2) {
    margin-top: 12px;
  }
  .l-footerLinksList > li > a {
    text-decoration: underline;
  }

  .l-footerCopy {
    margin-top: 58px;
    font-size: 12px;
  }
}



.c-body {
  font-size: 18px;
  line-height: 1.71;
  text-align: justify;
  font-weight: 400;
}
.c-body * + figure,
.c-body * + p {
  margin-top: 1.5em;
}
.c-body h2 {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 500;
  border-bottom: #ccc 1px solid;
  padding-bottom: 18px;
  margin-bottom: 40px;
}
.c-body * + h2 {
  margin-top: 100px;
}
.c-body h3 {
  font-size: 26px;
  line-height: 1.4;
  font-weight: 700;
  position: relative;
  padding: 0 0 0 18px;
  margin-bottom: 20px;
}
.c-body h3:before {
  content: '';
  display: block;
  background: #204359;
  width: 6px;
  position: absolute;
  height: calc(100% - 6px);
  left: 0;
  top: 4px;
  border-radius: 10px;
}
.c-body * + h3 {
  margin-top: 40px;
}

.c-body .youtube {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.c-body .cardBlock {
  max-width: 900px;
  margin: 0 auto;
}
.c-body * + .cardBlock {
  margin-top: 1.5em;
}
.c-body .cardBlock + .cardBlock {
  margin-top: 40px;
  padding-top: 40px;
  border-top: #CCC 1px solid;
}
.c-body .cardBlockFrame {
  display: flex;
}
.c-body .cardBlock__img {
  width: 300px;
}
.c-body .cardBlockContent {
  width: calc(100% - 300px);
  box-sizing: border-box;
  padding: 0 0 0 40px;
  align-self: center;
}

.c-body .eventNote {
  border: #000 4px solid;
  border-radius: 20px;
  padding: 30px 40px;
  
}
.c-body .eventNoteItem {
  display: flex;
}
.c-body .eventNoteItem:nth-of-type(n + 2) {
  border-top: #ADADAD 1px solid;
  margin-top: 28px;
  padding-top: 27px;
}
.c-body .eventNoteItem__tag {
  font-size: 22px;
  line-height: 1.5;
  font-weight: bold;
  width: 150px;
  box-sizing: border-box;
  padding-right: 20px;
}
.c-body .eventNoteItemContents {
  width: calc(100% - 150px);
}
.c-body .eventNoteItem p {
  font-size: 18px;
  line-height: 1.71;
  font-weight: 400;
}
.c-body p.eventNoteItem__txt {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 500;
}
.c-body .eventNoteItem__txt + p {
  margin-top: 5px;
}

.c-body .btnBox {
  text-align: center;
}
.c-body * + .btnBox {
  margin-top: 60px;
}
.c-body a.btn {
  display: inline-block;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  background: #204359;
  min-width: 400px;
  box-sizing: border-box;
  text-align: center;
  padding: 16px 20px 20px;
  color: #FFF;
  border-radius: 100px;
  box-shadow: 3px 3px 3px rgba(0,0,0,0.1);
}
.c-body table {
  width: 100%;
}
.c-body table tr {
}
.c-body table tr:nth-of-type(2n + 1) {
  background: #EEEEEE;
}
.c-body table th ,
.c-body table td {
  padding: 15px 30px 16px;
  box-sizing: border-box;
}
.c-body table th {
  width: 240px;
}
.c-body table td {
  width: calc(100% - 240px);
}
.c-body .googleMap {
  width: 100%;
  position: relative;
  padding-top: 400px;
}
.c-body * + .googleMap {
  margin-top: 1.5em;
}
.c-body .googleMap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .c-body {
    font-size: 15px;
  }
  .c-body h2 {
    font-size: 20px;
    padding-bottom: 15px;
    margin-bottom: 25px;
  }
  .c-body * + h2 {
    margin-top: 60px;
  }
  .c-body h3 {
    font-size: 18px;
    padding: 0 0 0 14px;
    margin-bottom: 15px;
  }
  .c-body h3:before {
    width: 5px;
    height: calc(100% - 4px);
    top: 2px;
  }
  .c-body * + h3 {
    margin-top: 30px;
  }
  .c-body h3 + p {
    margin-top: 0;
  }
  .c-body .youtube {
  }
  .c-body .cardBlock {
  }
  .c-body * + .cardBlock {
    margin-top: 1.5em;
  }
  .c-body .cardBlock + .cardBlock {
    margin-top: 30px;
    padding-top: 30px;
  }
  .c-body .cardBlockFrame {
    display: flex;
  }
  .c-body .cardBlock__img {
    width: 200px;
  }
  .c-body .cardBlockContent {
    width: calc(100% - 200px);
    padding: 0 0 0 25px;
  }
  .c-body .eventNote {
    border: #000 2px solid;
    border-radius: 10px;
    padding: 15px 20px;
  }
  .c-body .eventNoteItem {
  }
  .c-body .eventNoteItem:nth-of-type(n + 2) {
    margin-top: 15px;
    padding-top: 15px;
  }
  .c-body .eventNoteItem__tag {
    font-size: 16px;
    width: 100px;
    padding-right: 20px;
  }
  .c-body .eventNoteItemContents {
    width: calc(100% - 100px);
  }
  .c-body .eventNoteItem p {
    font-size: 15px;
  }
  .c-body p.eventNoteItem__txt {
    font-size: 16px;
  }
  .c-body .eventNoteItem__txt + p {
    margin-top: 2px;
  }

  .c-body .btnBox {
  }
  .c-body * + .btnBox {
    margin-top: 50px;
  }
  .c-body a.btn {
    font-size: 18px;
    min-width: 280px;
    padding: 16px 20px 18px;
    box-shadow: 3px 3px 3px rgba(0,0,0,0.1);
  }
  .c-body table ,
  .c-body table tbody,
  .c-body table tr,
  .c-body table th,
  .c-body table td {
    display: block;
  }
  .c-body table {
  }
  .c-body table tr {
    padding: 10px 20px;
  }
  .c-body table tr:nth-of-type(2n + 1) {
  }
  .c-body table th ,
  .c-body table td {
    padding: 0;
  }
  .c-body table th {
    width: 100%;
  }
  .c-body table td {
    width: 100%;
  }
  .c-body .googleMap {
    width: 100%;
    position: relative;
    padding-top: 300px;
  }
  .c-body * + .googleMap {
    margin-top: 1.5em;
  }
  .c-body .googleMap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 600px) {
  .c-body .cardBlockFrame {
    display: block;
  }
  .c-body .cardBlock__img {
    width: 200px;
    margin: 0 auto;
  }
  .c-body .cardBlockContent {
    width: 100%;
    padding: 0 0 0 0;
    margin-top: 25px;
  }
  .c-body .eventNoteItem {
    display: block;
  }
  .c-body .eventNoteItem:nth-of-type(n + 2) {
    margin-top: 18px;
    padding-top: 17px;
  }
  .c-body .eventNoteItem__tag {
    width: 100%;
    padding-right: 0px;
  }
  .c-body .eventNoteItemContents {
    width: 100%;
  }
}
