:root{
  --primary-blue: #51c1f2;
  --secondary-blue:#e9f7fd;
  --primary-deepBlue: #0b4aa1;
  --secondary-deepBlue: #e6edf5;
  --primary-green:#7ecc04;
  --secondary-green:#e7f8e6;
  --primary-pink:#ea6689;
  --secondary-pink:#fef3f6;
}
.gfooter {
  z-index: 1;
}
@media (min-width: 1025px) {
  .gheader-brand-content {
    margin-top: calc(160 / var(--font) * 1rem);
  }
}

@media (min-width: 768px) {
  .gfooter__inner {
    margin-top: 0;
  }
}
.gheader.js-gheader-hide {
  transform: translateY(0);
}

a:hover, a:hover img{
  opacity: 1 !important;
}

sub {
  font-size: 110%;
  bottom: -0.16em;
}
@media (max-width: 800px) {
  sub {
  }
}
/* Utility */
.u-disp-pc{
  display: block !important;
}
.u-disp-sp{
  display: none !important;
}
@media (max-width: 800px){
  .u-disp-pc{
    display: none !important;
  }
  .u-disp-sp{
    display: block !important;
  }
}
@media (min-width: 768px) {
  .u-hide-pc {
    display: none;
  }
}
@media (max-width: 767px) {
  .u-hide-sp {
    display: none;
  }
}

.u-bg-pink {
  background-color: var(--primary-pink);
}
.u-bg-blue {
  background-color: var(--primary-blue);
}
.u-bg-green {
  background-color: var(--primary-green);
}
.u-bg-deepBlue {
  background-color: var(--primary-deepBlue);
}
.u-bg-lightGreen{
  background-color: #5fc603;
}
.u-bg-deepGreen{
  background-color: #1ca938;
}
.u-bg-brown{
  background-color: #9f821e;
}
.u-bg-deepBrown{
  background-color: #58453f;
}


.u-color-pink{
  color: var(--primary-pink);
}
.u-color-green {
  color: var(--primary-green);
}
.u-color-blue {
  color: var(--primary-blue);
}
.u-color-deepBlue {
  color: var(--primary-deepBlue);
}
.u-color-deepGreen {
  color: #1ca938;
}

@media (max-width: 800px){
  .u-br-sp::before {
    content: "\A" ;
    white-space: pre ;
  }
}


/* common */
html,body{
  /* overflow-x: hidden; */
}
body{
  -webkit-text-size-adjust: 100%;
}
/* btn */
.c-button {
  border-radius: 9999px;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  width: 320px;
  height: 56px;
  z-index: 1;
}
.c-button a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-button::after {
  content: "";
  position: absolute;
  top: calc((100% - 13px)/2);
  right: 22px;
  width: 7px;
  height: 13px;
  background: url(../img/icon_arrow.png) no-repeat left center;
  background-size: contain;
}
.c-button img{
  width: 83px;
}
@media (max-width: 800px){
  .c-button {
    width: 256px;
    height: 44px;
    margin: 25px auto 0;
  }
}
/* btn animetion */
@media (min-width: 801px){
  .c-button:hover {
    animation: hover-bounce .5s ease 1;
  }
  @keyframes hover-bounce {
    0% {
        transform: scale(1)
    }
  
    40% {
        transform: scale(.85)
    }
  
    to {
        transform: scale(1)
    }
  }
}
.c-button a{
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0;
}
.c-button.c-button-back::after {
  content: "";
  position: absolute;
  top: calc((100% - 13px)/2);
  left: 22px;
  width: 7px;
  height: 13px;
  background: url(../img/icon_arrow.png) no-repeat left center;
  background-size: contain;
  transform:rotate(180deg);
}
@media (max-width: 800px){
  .c-button a{
    font-size: 14px;
    letter-spacing: 0.1em;
  }
  .c-button::after{
    right: 15px;
    height: 10px;
    top: calc((100% - 10px)/2);
  }
  .c-button.c-button-back::after{
    left: 15px;
    height: 10px;
    top: calc((100% - 10px)/2);
  }

}


/* title */
.c-title img{
  display: block;
  margin: 0 auto;
  height: 72px;
  position: relative;
  z-index: 2;
  width: auto;
}
.c-title--pc{
  display: block;
  width: 100%;
}
.c-title--sp{
  display: none;
}
@media (max-width: 800px){
  .c-title--pc{
    display: none;
  }
  .c-title--sp{
    display: block;
  }
  .c-title img {
    height: 44px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
  }
}
@media all and (min-width:801px) {
  .c-title{
    margin-bottom: 40px;
  }
}

/* List */
.c-list_item{
  padding-left: 40px;
  padding-right: 40px;
  margin-top: 24px;
}
.c-list_item:first-of-type{
  margin-top: 0;
}
.c-list_item_content{
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.c-list_item_content_link{
  display: flex;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 20px;
  overflow: hidden;
  background-color: #ffffff;
  min-height: 225px;
}
.c-list_item_content_img{
  max-width: 400px;
  background-color: #d7d7d7;
  /* flex-basis: 45%; */
}
.c-list_item_content_link img{
  min-width: 100%;
  /* height: 100%; */
  object-fit: cover;
}
.c-list_item_content_textWrapper{
  padding-top: 33px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 32px;
  flex-basis: 55%;
  flex-grow: 1;
}
.c-list_item_content_title{
  font-size: 20px;
}
.c-list_item_content_text{
  font-size: 14px;
  margin-top: 23px;
  line-height: 1.7em;
}
.c-list_item_content_date{
  font-size: 14px;
  margin-top: 18px;
}
.c-list_item_content_location{
  font-size: 14px;
  margin-top: 12px;
}
@media screen and (max-width:800px) {
  .c-list_item{
    padding-left: 20px;
    padding-right: 20px;
    margin: 44px auto 0;
    max-width: 335px;
    width: 100%;
  }
  .c-list_item_content_link{
      flex-direction: column;
      min-height: unset;
      border-radius: 10px;
  }
  .c-list_item_content_img{
      max-width: unset;
      /* aspect-ratio: 16/9; */
      padding-top: 56%;
  }
  .c-list_item_content_textWrapper{
      padding-top: 28px;
      padding-left: 20px;
      padding-bottom: 44px;
      padding-right: 20px;
  }
  .c-list_item_content_title{
      font-size: 18px;
      text-align: center;
  }
  .c-list_item_content_text{
      font-size: 12px;
      margin-top: 28px;
  }
  .c-list_item_content_date{
      font-size: 12px;
      margin-top: 28px;
  }
  .c-list_item_content_location{
      font-size: 12px;
  }
}

/* hamburger */
header.hide{
  top: 0 !important;
}
body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}
body.fixed .gnav2 {
  overflow-y: scroll;
}

.common-nav {
  position: relative;
}
#common-nav{
  position: fixed;
  top: calc(160 / var(--font) * 1rem);
  width: 100%;
  z-index: 997;
}
.menu2 {
  position: fixed;
  top: calc(160 / var(--font) * 1rem);
  right: 0;
  z-index: 998;
  width: 71px;
  height: 66px;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .menu2 {
    top: calc(61 / var(--font) * 1rem);
  }
  .mc-breadcrumb {
  }
}
.gnav2 {
  background: #e9f7fd;
  background-size: cover;
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  padding: 43px 20px 250px;
  overflow: auto;
}

.menu__ico {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 71px;
  padding-top: 73px;
  background: url(../img/nav_pc.png) no-repeat right center;
  background-size: contain;
  transition: all .3s;
}
.menu__ico.active {
  background: url(../img/nav_close_pc.png) no-repeat right center;
  background-size: contain;
}

.gnav__wrap{
  display: flex;
  justify-content: center;
  max-width: 960px;
  margin: 0 auto;
}
.gnav__menu{
  max-width:480px;
  width: 100%;
  max-height: 574px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.gnav__menu__item {
  background: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-top: 10px;
}
.gnav__menu__item:first-of-type {
  margin-top: 0;
}

.nav_logo{
  margin-top: auto;
  margin-bottom: auto;
}
.nav_logo img{
  width: 240px;
  margin-right: 118px;
}
.gnav_ttl{
  height: 12px;
  margin-bottom: 8px;
  width: auto;
}
.sp-accordion-child{
  cursor: pointer;
}
ul.gnav__menu + ul.gnav__menu{
  margin-left: 20px;
}

/* 親矢印 */
.gnav__menu li{
  padding: 18px 20px;
  position: relative;
}
.gnav__menu li a{
  position: relative;
  display: block;
  line-height: 1.3;
}
.gnav__menu li a::before{
  content: "";
  position: absolute;
  top: calc((100% - 13px)/2);
  right: 0px;
  width: 7px;
  height: 13px;
  background: url(../img/ico_nav01.png) no-repeat left center;
  background-size: contain;
}
.gnav__menu.ico-green li a::before{
  background: url(../img/ico_nav01.png) no-repeat left center;
  background-size: contain;
}
.gnav__menu__item.ico-pink > a:before{
  background: url(../img/ico_nav02.png) no-repeat left center;
  background-size: contain;
}
.gnav__menu__item.ico-blue > a:before{
  background: url(../img/ico_nav03.png) no-repeat left center;
  background-size: contain;
}
.gnav__menu__item.ico-deepBlue > a:before{
  background: url(../img/ico_nav04.png) no-repeat left center;
  background-size: contain;
}


/* 子矢印 */
.sp-accordion-child a::before{
  display: none;
}
.sp-accordion-child li::before{
  content: "";
  position: absolute;
  top: calc((100% - 13px)/2);
  right: 0;
  width: 7px;
  height: 13px;
  background: url(../img/ico_nav01.png) no-repeat left center;
  background-size: contain;
}
.gnav__menu__item.ico-pink li::before{
  background: url(../img/ico_nav02.png) no-repeat left center;
  background-size: contain;
}

.sp-accordion-child.u-color-pink li a{
  color: var(--primary-pink);
}
.sp-accordion-child.u-color-green li a{
  color: var(--primary-green);
}
.u-mb-18{
  padding-bottom: 18px;
}
li.gnav__menu__item.u-color-pink.ico-pink.u-disp-pc.bl_nest{
  padding-bottom: 0;
}
.sp-accordion-child li {
  position: relative;
}
.sp-accordion-child li::after {
  position: absolute;
  left: 0;
  top: 0;
  background: radial-gradient(circle farthest-side, #c5b478, #c5b478 60%, transparent 60%, transparent);
  background-size: 5px 5px;
  content: '';
  display: inline-block;
  height: 4px;
  width: 100%;
}

@media screen and (max-width: 1000px){
  header {
    position: fixed;
  }
}


@media (min-width: 801px){
  li.gnav__menu__item.ico-green.u-disp-pc{
    /* padding-bottom: 21%; */
  }
}
@media (min-width: 641px){
  #common-nav,.menu2 {
  }
}
@media (max-width: 640px){
  #common-nav {
    top: 61px;
    /* width: 100%;
    height: 100%; */
  }
}
@media (max-width: 800px){
  .gnav2{
    margin-top: 0;
    padding-bottom: 100vh;
  }
  #common-nav[data-navi="open"] .gnav2{
    width: 100%;
    height: 100%;
    padding-bottom: 150px; 
  }


  .menu2{
    width: 50px;
    height: 40px;
  }
  .menu__ico {
    top: 0;
    left: 0;
    width: 50px;
    padding-top: 40px;
    background: url(../img/nav_sp.png) no-repeat right center;
    background-size: contain;
    transition: all .3s;
  }
  .gnav__wrap {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-top: 0;
    max-width: 100%;
    margin: 0 auto;
  }
  .nav_logo img {
    width: 175px;
    margin:0 auto 28px;
  }
  .nav_logo {
    margin: 0 auto;
  }
  .gnav__menu {
    max-width: 335px;
    width: 100%;
    margin: 0 auto;
  }
  .gnav__menu__item + .gnav__menu__item {
    margin-top: 7px;
  }
  ul.gnav__menu + ul.gnav__menu{
    margin: 0 auto;
  }
  .sp-accordion-child li{
    padding-left: 0;
  }

  .gnav__menu__item{
    font-size: 12px;
    margin-top: 7px;
  }
  #wrapper > div.common-nav > nav > div > ul:nth-child(2) > li.gnav__menu__item > a > p, #wrapper > div.common-nav > nav > div > ul:nth-child(3) > li > a > p {
    padding-bottom: 0;
  }

  /* accordion */
  #sp-accordion{
    display:block;
    cursor:pointer;
  }
  #sp-accordion .sp-accordion-child{
    background:#f2f2f2;
    width:200px;
    height:50px;
    line-height:50px;
    display:none;
  }
  #wrapper > div.common-nav > nav > div > ul:nth-child(2) > li.gnav__menu__item.u-color-pink{
    padding-bottom: 20px;
  }

  .gnav__menu li{
    background: #fff;
    border-radius: 10px;
    padding: 18px;
  }
  .ac__block {
    display: flex;
    flex-direction: column;
  }
  li .ac__item {
    display: inline-block;
    padding: 0;
  }
  .ac__head {
    position: relative;
    text-align: left;
    width: 100%;
    font-size: 12px;
    font-weight: bold;
    padding-bottom: 20px;
  }
  .gnav__menu li.ac{
    padding-bottom: 0;
    margin-top: 7px;
  }
  .ac__head:after {
    content: '';
    position: absolute;
    top: 25%;
    right: 0px;
    width: 13px;
    height: 13px;
    background: url(../img/icon_plus.png) no-repeat left center;
    background-size: contain;
    transition: transform 0.3s;
  }
  .c-green .ac__head:after {
    background: url(../img/icon_plus_green.png) no-repeat left center;
    background-size: contain;
  }
  .ac__body {
    position: relative;
    border-radius: 0 0 8px 8px;
    background: #fff;
    color: black;
    border: transparent;
    line-height: 0;
    opacity: 0;
    transition: line-height 0.2s, opacity 0.2s;
    height: 0;
    font-size: 12px;
    font-weight: bold;
    display: none;
  }
  .ac__body.is-open {
    line-height: 1.5;
    opacity: 1;
    height: 100%;
    display: block;
  }
  .ac__head.is-open::after {
    background: url(../img/icon_minus.png) no-repeat left center;
    background-size: contain;
  }
  .c-green .ac__head.is-open::after {
    background: url(../img/icon_minus_green.png) no-repeat left center;
    background-size: contain;
  }
  .ac__item:not(:first-child) {
    margin-top: 16px;
  }
  .ac__body > ul > li:nth-child(1) > a::before,
  .ac__body > ul > li:nth-child(2) > a::before,
  .ac__body > ul > li:nth-child(3) > a::before,
  .ac__body > ul > li:nth-child(4) > a::before,
  .ac__body > ul > li:nth-child(5) > a::before,
  .ac__body > ul > li:nth-child(6) > a::before,
  .ac__body > ul > li:nth-child(7) > a::before,
  .ac__body > ul > li:nth-child(8) > a::before{
    display: none;
  }
  .ac__body > ul > li:nth-child(1):before,
  .ac__body > ul > li:nth-child(2):before,
  .ac__body > ul > li:nth-child(3):before {
    top: calc((100% - 11.5px)/2);
    right: 0;
    width: 7.5px;
    height: 11.5px;
    background: url(../img/ico_nav02.png) no-repeat left center;
    background-size: contain;
  }

  .c-green .ac__body > ul > li:nth-child(1):before,
  .c-green .ac__body > ul > li:nth-child(2):before,
  .c-green .ac__body > ul > li:nth-child(3):before {
    top: calc((100% - 11.5px)/2);
    right: 0;
    width: 7.5px;
    height: 11.5px;
    background: url(../img/ico_nav01.png) no-repeat left center;
    background-size: contain;
  }

}

/* fade */
.fadeIn{
  animation: fadeInAnime 300ms ease 0s forwards ;
}
.fadeOut{
  animation: fadeOutAnime 300ms ease 0s forwards ;
}
@keyframes fadeInAnime{
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOutAnime{
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media (min-width: 768px){
  .mc-breadcrumb{
    background-color: #fff;
    position: fixed;
    z-index: 1000;
    width: 100%;
    border-bottom: 6px solid var(--primary-green);
  }
  .gnav2{
    padding: 44px 43px 250px;
  }
}