@charset "utf-8";
/*=============================================================
 base Layout
=============================================================*/
/* a Element
--------------------------------------------------------------*/
a {
  color: #0053d5;
  text-decoration: none;
}
a:visited {
  color: #5d3fbb;
}
a:hover {
  color: #0053d5;
  text-decoration: underline;
}
/* container
--------------------------------------------------------------*/
#container {
  overflow: hidden;
}
body,
#container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
/* pageBody
-------------------------------------------------------------*/
#pageBody {
}

/* contentsArea
-------------------------------------------------------------*/
#contentsArea {
}

/* contents
-------------------------------------------------------------*/
#contents {
  line-height: 1.85;
}

/* contentsInner
-------------------------------------------------------------*/
.contentsInner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 5%;
}
/* section
-------------------------------------------------------------*/
section + section {
  margin-top: 40px;
}

/*=============================================================
 col
=============================================================*/
[class^='col-'] + [class^='col-'] {
  margin-top: 48px;
}
[class^='col-'] {
  display: flex;
  flex-wrap: wrap;
  column-gap: 4%;
}
[class^='col-'] > * {
  box-sizing: border-box;
  margin-top: 20px;
}
[class^='col-'].col-d-r {
  flex-direction: row-reverse;
}

.col-2 > * {
  width: calc((99.9999% - 4%) / 2);
}
.col-3 > * {
  width: calc((99.9999% - 8%) / 3);
}

.col-2 > *:nth-child(-n + 2),
.col-3 > *:nth-child(-n + 3) {
  margin-top: 0;
}

.aiC {
  align-items: center;
}

/*=============================================================
 mw
=============================================================*/
.mw500mlAuto {
  max-width: 500px;
  margin-left: auto;
}
.mw500mRAuto {
  max-width: 500px;
  margin-right: auto;
}
.mw404 {
  max-width: 404px;
  margin: 0 auto;
}
.mw700 {
  max-width: 700px;
  margin: 0 auto;
}
.mw834 {
  max-width: 834px;
  margin: 0 auto;
}
/*=============================================================
 ttl-h2
=============================================================*/
.ttl-h2 {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 18px;
  align-items: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}
.ttl-h2 .ttl-text > span {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #004a9a;
  margin-top: 8px;
}

/*=============================================================
 Layout
=============================================================*/
/* main / ftrblock
-------------------------------------------------------------*/
#main {
  position: relative;
  margin-bottom: 140px;
  background: url('../../img/main-bg.png') center bottom no-repeat;
  background-size: cover;
  min-height: 765px;
}
.main-text {
  padding-top: 100px;
  max-width: 714px;
  width: 100%;
}
#ftrblock {
  background: #f1f5f5;
}
#ftrblock #ftrblock01 {
  background: url('../../img/bg02.png') center bottom no-repeat;
  background-size: cover;
  min-height: 1046px;
}
#ftrblock #ftrblock01 .contentsInner {
  padding: 60px 0;
}
#ftrblock .main-text {
}
#ftrblock .col-3 {
  width: 100%;
}
#ftrblock #ftrblock01 .col-3 a {
  display: block;
  font-size: 17px;
  font-weight: 700;
  background-color: rgba(121, 206, 209, 0.5);
  color: #333;
  border-radius: 5px;
  padding: 20px 20px 20px;
  box-sizing: border-box;
  width: 100%;
  margin-top: 40px;
  text-align: center;
  position: relative;
  transition: all 0.8s;
}
#ftrblock .col-3 a:hover,
#ftrblock .col-3 button:hover {
  opacity: 0.6;
  text-decoration: none;
}
#ftrblock #ftrblock01 .col-3 a .text {
  position: relative;
}
#ftrblock #ftrblock01 .col-3 a .text::after {
  content: '';
  background: url('../../img/icon02.png') no-repeat;
  width: 27px;
  height: 27px;
  position: absolute;
  bottom: -2px;
  left: -32px;
}

#ftrblock #ftrblock02 {
  margin-top: 40px;
  padding-bottom: 40px;
}
#ftrblock #ftrblock02 .col-3 {
  justify-content: center;
}
#ftrblock #ftrblock02 .col-3 > :nth-child(n + 4) {
  margin-top: 80px;
}
#ftrblock #ftrblock02 .ttl-cm {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #004a9a;
  margin-bottom: 40px;
}
#ftrblock #ftrblock02 .figcaption {
  display: block;
  margin-top: 5px;
}
#ftrblock #ftrblock02 a,
#ftrblock #ftrblock02 div.wrap,
#ftrblock #ftrblock02 button {
  font-size: 16px;
  text-decoration: none;
  color: #000;
  transition: all 0.8;
  text-align: left;
}
#ftrblock #ftrblock02 button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  display: block;
  width: 100%;
}
#ftrblock #ftrblock02 a img,
#ftrblock #ftrblock02 button img {
  transition: all 0.8;
}
#ftrblock #ftrblock02 a:hover img,
#ftrblock #ftrblock02 button:hover img {
  opacity: 0.6;
}
#ftrblock #ftrblock02 a .figcaption span,
#ftrblock #ftrblock02 div.wrap .figcaption span,
#ftrblock #ftrblock02 button .figcaption span {
  color: #004a9a;
  padding-right: 10px;
  font-weight: 700;
}
#ftrblock #ftrblock03 {
  background: url('../../img/bg02_under.png') center bottom no-repeat;
  background-size: cover;
  height: 120px;
}

#snsblock {
  text-align: center;
}
#snsblock .sns-ttl {
  font-size: 26px;
}
#snsblock .sns-list {
  max-width: 374px;
  margin: 40px auto 85px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 60px;
  align-items: center;
}
#snsblock .sns-list a {
  transition: all 0.8;
}
#snsblock .sns-list a:hover {
  opacity: 0.6;
}

#footer {
  background: #000;
  color: #fff;
  text-align: center;
  height: 60px;
  padding: 20px 0;
}
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 Smartphones
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
@media only screen and (max-width: 1024px) {
  /*=============================================================
 col
=============================================================*/
  [class^='col-'] > * {
    width: 100%;
  }
  [class^='col-'] > *:nth-child(n + 2) {
    margin-top: 20px;
  }
  [class^='sp-col-'] > *:nth-child(n) {
    margin-top: 15px;
  }

  .sp-col-2 > *:nth-child(n) {
    width: calc((99.9999% - 5%) / 2);
  }
  .sp-col-3 > *:nth-child(n) {
    width: calc((99.9999% - 10%) / 3);
  }

  .sp-col-2 > *:nth-child(-n + 2),
  .sp-col-3 > *:nth-child(-n + 3) {
    margin-top: 0;
  }

  /*=============================================================
 mw
=============================================================*/
  .mw500mlAuto {
    margin-top: 40px;
    max-width: 300px;
  }
  .mw500mRAuto {
    margin-top: 40px;
    max-width: 300px;
  }
  .mw404 {
    max-width: 300px;
  }
  .mw700 {
    max-width: 350px;
  }
  .mw834 {
    max-width: 350px;
  }
  /*=============================================================
 ttl-h2
=============================================================*/
  .ttl-h2 {
    grid-template-columns: 20px 1fr;
    column-gap: 10px;
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  .ttl-h2 .ttl-text > span {
    font-size: 16px;
  }

  /*=============================================================
 Layout
=============================================================*/
  /* main / ftrblock
-------------------------------------------------------------*/
  #main {
    margin-bottom: 60px;
    background: none;
    min-height: inherit;
  }
  .main-text {
    max-width: inherit;
    width: auto;
    padding: 0;
  }
  .main-text img {
    width: 100%;
  }

  #ftrblock #ftrblock01 {
    background: #e1f7fb url(../../img/bg02_sp.png) center bottom no-repeat;
    background-size: cover;
    min-height: 1200px;
  }
  #ftrblock #ftrblock01 .contentsInner {
    padding: 30px 5%;
  }
  #ftrblock .col-3 {
    width: 100%;
    margin-top: 40px;
  }
  #ftrblock [class^='col-'] > *:nth-child(n + 2) {
    margin-top: 0;
  }
  #ftrblock #ftrblock01 .col-3 a {
    font-size: 16px;
    padding: 10px 20px 20px;
    width: 100%;
    margin-top: 10px;
  }
  #ftrblock #ftrblock01 .col-3 a span:first-child {
    display: block;
  }

  #ftrblock #ftrblock02 .col-3 > *:not(:first-child) {
    margin-top: 20px !important;
  }
  #ftrblock #ftrblock02 .ttl-cm {
    font-size: 26px;
  }
  #ftrblock #ftrblock02 a {
    font-size: 15px;
  }

  #ftrblock #ftrblock03 {
    height: 60px;
  }

  #snsblock {
    text-align: center;
  }
  #snsblock .sns-ttl {
    font-size: 20px;
  }
  #snsblock .sns-list {
    max-width: 80%;
    margin: 40px auto 85px;
    gap: 60px;
  }
  #footer {
    font-size: 12px;
    height: inherit;
    padding: 20px 0;
  }
}
