/*------------------------------------------------------------
common
------------------------------------------------------------*/
body {
  font-family: 'Noto Sans JP', 'Century Gothic', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 游ゴシック体, YuGothic, "Yu Gothic Medium", 游ゴシック, 'Yu Gothic', メイリオ, Meiryo, sans-serif;
}

#information {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
  color: #5E666B;
  overflow: hidden;
  background: #fff;
  position: relative;
}

#information * {
  box-sizing: border-box;
}

#information *:focus {
  outline: none;
}

#information a {
  color: inherit;
  transition: opacity .3s;
}

#information a[href^="tel:"] {
  display: inline-block;
  transition: none;
}

#information a:hover {
  text-decoration: none;
}

#information a:focus-visible {
  outline: none;
}

#information img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

#information .js-fadein {
  opacity: 0;
  transform: translate(0, 20px);
  transition-property: opacity, transform;
  transition-duration: 1s;
}

#information .scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

#information .pc-br {
  display: none;
}

#information .sp-br {
  display: inline;
}

#information .inline-block {
  display: inline-block;
}

#information .inner {
  width: calc(100% - 60px);
  max-width: 800px;
  margin: 0 auto;
}

#information .font-sofia {
  font-family: sofia-pro-soft, sans-serif;
  font-weight: 500;
  font-style: normal;
}

#information .font-rounded {
  font-family: "m-plus-rounded-2c", sans-serif;
  font-weight: 500;
  font-style: normal;
}

#information .blue {
  color: #18B5EB;
}

#information .main {
  position: relative;
}

#information .main .content-main {
  position: absolute;
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  padding-top: calc(100vw / 750 * 80);
}

#information .main .content-main .en {
  font-size: 18px;
  font-weight: 700;
}

#information .main .content-main .ja {
  font-size: 24px;
}

#information .index {
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(232,248,253,1) 100%);
}

#information .index .ttl {
  position: relative;
  display: inline-block;
  font-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
}

#information .index .ttl::before {
  position: absolute;
  content: "";
  background: url("../images/information/information_index_icon_blue.svg") no-repeat center center / contain;
  width: 30px;
  height: 30px;
  left: 0;
  top: calc(50% - 15px);
}

#information .index-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 315px;
  margin: 0 auto;
}

#information .index-item {
  font-size: 13px;
  font-weight: 400;
  margin: auto 10px 8px;
}

#information .content-heading {
  position: relative;
  text-align: center;
  padding-top: 20px;
  margin-bottom: 36px;
}

#information .content-heading::before {
  position: absolute;
  content: "";
  background: url("../images/information/information_heading_icon_pink.svg") no-repeat center center / contain;
  width: 20px;
  height: 20px;
  top: 0;
  left: calc(50% - 10px);
}

#information .content-heading .ja {
  display: block;
  font-size: 22px;
}

#information .content-heading .en {
  display: block;
  font-size: 12px;
  line-height: initial;
}

#information .description-txt {
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 40px;
}

#information .shadow {
  box-shadow: 0px 2px 10px 0px rgba(15, 114, 187, 0.5);
}

@media print, screen and (min-width: 768px) {
  #information {
    font-size: 18px;
    font-weight: 400;
  }
  
  #information .sp-br {
    display: none;
  }
  
  #information .pc-br {
    display: inline;
  }
  
  #information .main .content-main {
    padding-top: calc(100vw / 1920 * 80);
  }
  
  #information .main .content-main .en {
    font-size: 24px;
  }
  
  #information .main .content-main .ja {
    font-size: 46px;
  }
  
  #information .index {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    padding-top: 16px;
  }
  
  #information .index-content{
    display: flex;
    align-items: center;
    width: 960px;
    margin: 0 auto;
  }
  
  #information .index .ttl {
    margin-bottom: 0;
    padding-left: 40px;
  }
  
  #information .index .ttl::before {
    width: 40px;
    height: 40px;
    top: calc(50% - 20px);
  }
  
  #information .index-list {
    max-width: fit-content;
    margin-left: 40px;
    margin-right: 0;
  }
  
  #information .index-item {
    font-size: 18px;
    font-weight: 500;
    margin: 0 32px 0 0;
    transition: all .3s;
  }
  
  #information .index-item:last-of-type {
    margin-right: auto;
  }
  
  #information .content-heading {
    padding-top: 34px;
    margin-bottom: 72px;
  }
  
  #information .content-heading::before {
    width: 40px;
    height: 40px;
    left: calc(50% - 20px);
  }
  
  #information .content-heading .ja {
    font-size: 40px;
  }
  
  #information .content-heading .en {
    font-size: 16px;
  }
  
  #information .description-txt {
    font-size: 36px;
    margin-bottom: 80px;
  }
  
  #information .shadow {
    box-shadow: 0px 4px 20px 0px rgba(15, 114, 187, 0.5);
  }
}
@media print, screen and (min-width: 768px) {
  #information .index-item:hover {
    color: #0F72BB;
  }
}

/*------------------------------------------------------------
contents
------------------------------------------------------------*/
#information .information-content{
  padding: 80px 0;
}

#information .information-content.action-plan{
  position: relative;
  z-index: 0;
  padding: 40px 0 80px;
}

#information .information-content.action-plan::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  inset: 0;
  background: rgb(255,255,255);
  background: linear-gradient(170deg, rgba(255,255,255,1) 0%, rgba(232,248,253,1) 25%, rgba(226,247,235,1) 50%, rgba(209,240,251,1) 75%, rgba(255,255,255,1) 100%);
  opacity: .6;
  z-index: -1;
}

#information .overview{
  margin-bottom: 32px;
  font-size: 14px;
}

#information .action-plan .overview{
  font-size: 13px;
}

#information .overview .address{
  margin-top: 1.8em;
}

#information .information-list{
  display: grid;
  grid-template-columns: repeat(1,1fr);
  grid-gap: 32px;
  counter-reset: listnum;
  list-style: none;
}

#information .list-ttl{
  position: relative;
  margin-bottom: 20px;
  padding-left: 23px;
  color: #0F72BB;
  font-size: 16px;
  line-height: 1.5;
}

#information .list-ttl::before{
  counter-increment: listnum;
  content: counter(listnum)".";
}

#information .list-ttl::after{
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #808585;
  border-radius: 1px;
  top: calc(50% - 1px);
  left: 0;
}

#information .list-item .contact{
  margin-top: 1.8em;
}

#information .inside-list-item{
  padding-left: 1em;
  text-indent: -1em;
}

#information .inside-list-item::before{
  content: "・";
}

#information .attempt-ttl{
  margin-bottom: 16px;
  font-size: 20px;
}

#information .attempt + .note{
  margin: 16px 0 32px;
  text-align: center;
}

#information .objective-list:not(:last-of-type){
  margin-bottom: 20px;
}

#information .objective-ttl{
  width: fit-content;
  margin-bottom: 16px;
  padding: 2px 8px;
  background-color: #18B5EB;
  border-radius: 2px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

#information .objective-item .ttl{
  margin: 16px 0 0;
}

@media print, screen and (min-width: 768px){
  #information .information-content{
    padding: 80px 0 160px;
    margin-top: 80px;
  }

  #information .information-content.action-plan{
    padding: 80px 0 160px;
  }

  #information .information-content.action-plan::before{
    background: rgb(255,255,255);
    background: linear-gradient(175deg, rgba(255,255,255,1) 0%, rgba(232,248,253,1) 25%, rgba(226,247,235,1) 50%, rgba(209,240,251,1) 75%, rgba(255,255,255,1) 100%);
  }
  
  #information .overview{
    margin-bottom: 48px;
    font-size: 18px;
    font-weight: 500;
  }
  
  #information .action-plan .overview{
    font-size: 18px;
  }

  #information .information-list{
    grid-gap: 48px; 
  }

  #information .list-ttl{
    margin-bottom: 24px;
    padding-left: 36px;
    font-size: 24px;
  }

  #information .list-ttl::after{
    width: 20px;
  } 

  #information .list-item .contact{
    font-weight: 500;
  }
  
  #information .attempt-ttl{
    margin-bottom: 16px;
    font-size: 36px;
  }

  #information .attempt + .note{
    margin: 16px 0 48px;
  }

  #information .objective-list:not(:last-of-type){
    margin-bottom: 24px;
  }

  #information .objective-ttl{
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 400;
  }
}