@charset “UTF-8”;

.lp-container {
  /* --- COLOR PALLET --- */
  --lp-color-text: #4c4948;
  --lp-color-bg: #ffffff;
  --lp-color-bg-gray: #f2f2f2;
}

.lp-container {
  font-family: 'Hiragino Sans', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', Osaka, monospace, sans-serif;
  font-size: 16px;
  color: #4c4948;
}

.lp-container * {
  box-sizing: border-box;
}

@media only screen and (min-width: 768px) {
  .lp-container .sp-only {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .lp-container .pc-only {
    display: none;
  }
}

.lp-container strong {
  font-weight: bold;
  font-weight: 600;
}


.lp-section {
  position: relative;
  overflow: hidden;
}

.lp-section h2 {
  margin: 40px auto;
  text-align: center;
  font-weight: bold;
  font-weight: 600;
  font-size: 1.5em;
}
.lp-section h3 {
  margin: 40px auto;
  margin-top: -0.5em;
  text-align: center;
  font-weight: bold;
  font-weight: 600;
  font-size: 1.4em;
}

.lp-container .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 72px;
}

.lp-container .container__full {
  padding: 0;
}

.lp-anchor {
  position: absolute;
  top: -50px;
}

.lp-container .flex-panel {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.lp-container .flex-panel>* {
  flex-basis: 100%;
}

/* ---------- .footnote ---------- */
.lp-container ul.footnote {
  margin: 2.0em 0;
  font-size: 13px;
}

.lp-container sup.footnote {
  vertical-align: top;
  font-size: 0.5em;
}

@media only screen and (max-width: 767px) {
  .lp-container .flex-panel {
    display: block;
  }

  .lp-section h2 {
    /*     color: red; */
    font-size: 22px;
  }

  .lp-container .container {
    width: 100%;
    padding: 0 20px;
  }

  .lp-container .container__full {
    padding: 0;
  }

  .lp-anchor {
    top: -80px;
  }
}

/* ========== accordion ========== */

.accordion-flag {
  display: none;
}

.accordion-bar {
  margin: 3px 0;
  background-color: #f2f2f2;
  font-size: 1.625em;
  /*26px*/
}

.accordion-bar label {
  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 22.5em;
  /*586px*/

  width: 586px;
  margin: 0 auto;
  padding: 0.5em 0;
  cursor: pointer;
}

.accordion-bar .label {
  line-height: 1.0;
  color: #4c4948;
}

.accordion-bar .mark {
  position: relative;
  width: 34px;
  height: 34px;
  margin-right: 40px;
  border: 1px solid #4c4948;
  border-radius: 50%;
}

.accordion-bar .mark::before,
.accordion-bar .mark::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  margin-left: -8px;
  background-color: #4c4948;
}

.accordion-bar .mark::after {
  transition: transform 0.3s ease-in-out;
}

.accordion-flag:not(:checked)+* .mark::after {
  transform: rotate(90deg);
  transition: transform 0.5s ease-in-out;
}

.accordion-flag+*+.accordion-body {
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}

.accordion-flag:not(:checked)+*+.accordion-body {
  height: 0px !important;
  transition: height 0.5s ease-in-out;
}

.accordion-inner {
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .accordion-bar {
    font-size: 1.4em;
  }

  .accordion-bar label {
    width: 100%;
  }

  .accordion-bar .label {
    margin-left: 15px;
  }

  .accordion-bar .mark {
    margin-right: 15px;
  }
}

/* ========== MENU ========== */

.lp-section_menu {
  overflow: inherit;
  line-height: 1.0;
  font-size: 14px;
  color: #ffffff;
  z-index: 30;
}

.lp-section_menu .float-bar {}

.lp-section_menu .float-inner {
  width: 100%;
  background-color: #0e7282;
}
.lp-section_menu .float-inner.fixed {
  position: fixed;
  top: 0;
}

.container-menu .container-inner {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 5px 0;
}

.container-menu .container-inner ul {
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}

.container-menu .container-inner ul.list-anchor li {
  padding: 0.6em 2.2em;
  border-left: 1px solid #ffffff;
}
.container-menu .container-inner ul.list-anchor li:last-child {
  border-right: 1px solid #ffffff;
}
.container-menu .container-inner ul.list-anchor li.box {
  border: none;
}

.container-menu .container-inner ul.list-anchor li.box a {
  display: inline-flex;
  align-items: center;
  padding: 0.4em 1.5em;
  background-color: #ffffff;
  border-radius: 5px;
  color: #4c4948;
}

.container-menu .container-inner ul.list-anchor li.box a img {
  margin-right: 0.5em;
}

.container-menu .container-inner .list-badge a {
  position: absolute;
  bottom: -120px;
  right: -30px;
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
  width: 100px;
  height: 100px;
  background-color: rgba(0,188,242,0.8);
  box-shadow: 0 5px 3px rgba(0,0,0,0.4);
  border-radius: 50%;
  border: 1px solid #ffffff;
  font-size: 15px;
}

@media only screen and (max-width: 767px) {
  .lp-section_menu {
    font-size: 13px;
  }

  .lp-section_menu .float-bar {
    height: 67px;
  }

  .lp-container .container-menu {
    padding: 0;
  }

  .container-menu .container-inner {
    display: block;
    padding: 0.75em 0 0.25em;
  }

  .container-menu .container-inner div.list-anchor {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
  }

  .container-menu .container-inner ul.list-anchor {
    overflow: hidden;
    flex-wrap: wrap;
/*     justify-content: space-between; */
    justify-content: center;
    margin: 0 10px;
  }

  .container-menu .container-inner ul.list-anchor li {
    position: relative;
    left: -1px;
    margin-bottom: 5px;
    padding: 0.2em 0.4em;
  }

  .container-menu .container-inner ul.list-anchor li.box {
    margin-left: auto;
  }

  .container-menu .container-inner .list-badge a {
    bottom: -105px;
    right: 5px;
  }
}

/* ========== HERO ========== */

.lp-section_hero {}

.container-hero .container-inner {
  position: relative;
}
.container-hero .container-inner h1 {
  position: absolute;
  z-index: -1;
}

.container-hero span,
.container-hero a {
  display: block;
}

.container-hero img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-width: inherit !important;
  height: inherit !important;
}

.container-hero .arrow {
  position: absolute;
  top: 50%;
  width: 3.0em;
  height: 3.0em;
  margin-top: -1.5em;
  border-style: solid;
  border-color: #ffffff;
  border-width: 2px;
  border-top-width: 0;
  border-right-width: 0;
  z-index: 1;
  cursor: pointer;
}

.container-hero .arrow-prev {
  left: 2.0em;
  transform: rotate(45deg);
}

.container-hero .arrow-next {
  right: 2.0em;
  transform: rotate(-135deg);
}

.container-hero .hero-dots {
  position: absolute;
  bottom: 40px;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
}

.container-hero .hero-dots li {
  position: relative;
  display: inline-block;
  margin: 0 12px;
  padding: 0;
  cursor: pointer;
}

.container-hero .hero-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.container-hero .hero-dots li button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #a4a4a4;
}

.container-hero .hero-dots li button:hover,
.container-hero .hero-dots li button:focus {
  outline: none;
}

.container-hero .hero-dots li button:hover::before,
.container-hero .hero-dots li button:focus::before {
  background-color: #ffffff;
}

.container-hero .hero-dots li.slick-active button::before {
  background-color: #ffffff;
}

.container-hero .slick-slide {
  height: unset !important;
}

@media only screen and (max-width: 767px) {
  .container-hero .arrow {
    width: 1.0em;
    height: 1.0em;
    margin-top: -0.5em;
  }

  .container-hero .arrow-prev {
    left: 0.5em;
  }

  .container-hero .arrow-next {
    right: 0.5em;
  }

  .container-hero .hero-dots {
    bottom: 20px;
  }

  .container-hero .hero-dots li {
    margin: 0 6px;
  }

  .container-hero .hero-dots li button:before {
    width: 8px;
    height: 8px;
  }
}



/* ========== VOICE ========== */

.container-voice {
  font-size: 18px;
}
.container-voice .container-inner {
  margin-bottom: 60px;
}
.container-voice .container-inner h2 {
  margin: 2em 0 0.75em;
  font-weight: bold;
  font-weight: 500;
  font-size: 32px;
}
.container-voice .list-voice {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -17px;
}
.container-voice .list-voice > * {
/*   flex-basis: 50%; */
  width: 50%;
  padding: 17px;
}
.container-voice .list-voice .sheet {
  position: relative;
  height: 100%;
  padding: 40px;
  background-color: #E2F6F3;
}
.container-voice .list-voice .sheet .head {
/*   padding-right: 50px; */
  font-weight: bold;
  font-weight: 500;
  font-size: 24px;
}
.container-voice .list-voice .sheet .body {
  margin: 1.0em 0 0.5em;
  line-height: 1.8;
}
.container-voice .list-voice .sheet .body ul {
  list-style: disc;
  padding-left: 1.0em;
}
.container-voice .list-voice .sheet .foot {
  text-align: right;
  font-weight: bold;
  font-weight: 500;
}
.container-voice .list-voice .sheet::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 0;
  height:0;
  border-style: solid;
  border-width: 25px;
  border-color: #fff #fff #9FE2D7 #9FE2D7;
}
.container-voice .fadein .sheet {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.0s ease;
}
.container-voice .fadein.show .sheet {
  opacity: 1;
  transform: translateY(0);
}
.container-voice .list-voice li:nth-child(1) .sheet {
  background-color: #E2F6F3;
  transition-delay: 0ms;
}
.container-voice .list-voice li:nth-child(1) .sheet::after {
  border-color: #fff #fff #9FE2D7 #9FE2D7;
}
.container-voice .list-voice li:nth-child(2) .sheet {
  background-color: #E1F1E1;
  transition-delay: 250ms;
}
.container-voice .list-voice li:nth-child(2) .sheet::after {
  border-color: #fff #fff #9BD09B #9BD09B;
}
.container-voice .list-voice li:nth-child(3) .sheet {
  background-color: #F0F4DA;
  transition-delay: 500ms;
}
.container-voice .list-voice li:nth-child(3) .sheet::after {
  border-color: #fff #fff #CCD983 #CCD983;
}
.container-voice .list-voice li:nth-child(4) .sheet {
  background-color: #E2F6F3;
  transition-delay: 750ms;
}
.container-voice .list-voice li:nth-child(4) .sheet::after {
  border-color: #fff #fff #9FE2D7 #9FE2D7;
}
@media only screen and (max-width: 767px) {
  .container-voice .container-inner h2 {
    margin-top: 30px;
    font-size: 24px;
  }
  .container-voice .list-voice {
    flex-direction: column;
  }
  .container-voice .list-voice {
    margin: 0 -10px;
  }
  .container-voice .list-voice > * {
    width: 100%;
    padding: 10px;
  }
  .container-voice .list-voice .sheet {
    padding: 20px;
  }
}


/* ========== CAMPAIGN ========== */

.lp-section_campaign {
  background-color: #E7F1F2;
}
.lp-section_campaign .section-head {
}
.lp-section_campaign .section-head .shoulder {
  padding: 0.5em 0;
  background-color: #0196A9;
  line-height: 1;
  text-align: center;
  font-weight: bold;
  font-weight: 500;
  font-size: 30px;
  color: #fff;
}
.lp-section_campaign .section-head .head {
  background-color: #B3DFE5;
}
.lp-section_campaign .section-head .head h2 {
  margin: 0;
  padding: 0.6em 0;
  padding-left: 3.5em;
  text-align: center;
  font-weight: bold;
  font-weight: 500;
  font-size: 41px;
}
.lp-section_campaign .section-head .head h2 strong {
    color: #F13770;
}
.container-campaign .container-inner {
  position: relative;
/*   padding: 40px 0; */
}
.container-campaign .container-inner .head .badge {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 4.46em;
    height: 4.46em;
    margin-top: -5.2em;
    background-color: #F13770;
    border-radius: 50%;
    line-height: 1;
    text-align: center;
    font-size: 30px;
    color: #ffffff;
}
.container-campaign .container-inner .head .badge span {
    display: block;
    margin: 3px 0;
}
.container-campaign .container-inner .head .badge span.line01 {
    font-size: 70%;
}
.container-campaign .container-inner .head .badge span.line02 {
    font-size: 110%;
}
.container-campaign .container-inner .head .badge span.line03 {
    font-size: 100%;
}
.container-campaign .row-1 {
  margin: 40px 0;
}
.container-campaign .row-1 .body {
  display: flex;
  line-height: 1.8;
  font-size: 20px;
}
.container-campaign .row-1 .body .picture {
  flex-shrink: 0;
}
.container-campaign .row-1 .body .picture img {
  width: 350px;
}
.container-campaign .row-1 .body .text {
  padding-left: 40px;
}
.container-campaign .row-2 {
  background-color: #fff;
  border-radius: 10px;
  border: 2px solid #0E7282;
  text-align: center;
}
.container-campaign .row-2 .head {
  font-size: 40px;
  margin: 20px 40px 0;
  padding-bottom: 20px;
  border-bottom: 2px solid #0E7282;
}
.container-campaign .row-2 .head strong {
  margin-left: 0.1em;
  vertical-align: bottom;
  line-height: 1;
  font-weight: bold;
  font-weight: 500;
  font-size: 140%;
  color: #F13770;
}
.container-campaign .row-2 .body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5px 40px 15px;
  line-height: 1.8;
  font-size: 20px;
}
.container-campaign .row-2 .body .title span {
  display: inline-block;
  padding: 0.3em 0.5em;
  border-radius: 4px;
  border: 1px solid #4C4948;
  line-height: 1;
  text-align: center;
  font-size: 20px;
}
.container-campaign .row-2 .body .value span {
  background: linear-gradient( transparent 60%, #FFE100 60% );
  font-size: 28.5px;
}
.container-campaign .row-2 .body .value span strong {
  font-size: 38px;
}
.container-campaign .row-2 .body .note {
  text-align: left;
  line-height: 1.5;
  font-size: 14px;
}
.container-campaign .row-3 table {
  display: block;
  margin-bottom: 60px;
  border-bottom: 1px solid #4C4948;
}
.container-campaign .row-3 table caption {
  margin: 2.0em 0 1.0em;
  font-size: 26px;
}
.container-campaign .row-3 table tr {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid #4C4948;
}
.container-campaign .row-3 table th ,
.container-campaign .row-3 table td {

}
.container-campaign .row-3 table th {
  flex-shrink: 0;
  padding: 0 1.5em;
  font-size: 20px;
}
.container-campaign .row-3 table td {
  padding: 5px 0;
  padding-left: 20px;
  border-left: 1px solid #4C4948;
  font-size: 18px;
}
.container-campaign .row-3 table .term td {
  font-size: 24px;
}
.container-campaign .from-to {
  display: inline-block;
  transform: rotate(90deg);
}
@media only screen and (max-width: 767px) {
  .lp-section_campaign .section-head .shoulder {
    font-size: 22px;
  }
  .lp-section_campaign .section-head .head {
    padding-right: 50px;
    text-align: right;
  }
  .container-campaign .container-inner {
    position: inherit;
  }
  .container-campaign .container-inner .head .badge {
    top: 50px;
    left: 10vw;
    margin-top: 0;
    font-size: 20px;
  }
  .lp-section_campaign .section-head .head h2 {
    display: inline-block;
    text-align: left;
    line-height: 1.1;
    font-size: 20px;
  }
  .container-campaign .row-1 {
    margin: 20px 0;
  }
  .container-campaign .row-1 .body {
    font-size: 18px;
    flex-direction: column;
    text-align: center;
  }
  .container-campaign .row-1 .body .text {
    padding-left: inherit;
    text-align: left;
  }
  .container-campaign .row-2 .head {
    margin: 20px 20px 0;
    font-size: 22px;
  }
  .container-campaign .row-2 .body {
    flex-direction: column;
    margin: 15px 10px 15px;
  }
  .container-campaign .row-2 .body .value {
    margin: 20px 0;
    line-height: 1.2;
  }
  .container-campaign .row-3 table tr {
    flex-direction: column;
  }
  .container-campaign .row-3 table th {
    font-size: 18px;
  }
  .container-campaign .row-3 table td {
    padding-left: 0;
    border-left: none;
    font-size: 16px;
  }
  .container-campaign .row-3 table .term td {
    font-size: 20px;
  }
  .container-campaign .row-3 table .term .sp {
    display: block;
    text-align: center;
  }
}
@media only screen and (max-width: 374px) {
  .lp-section_campaign .section-head .head {
    padding-right: 20px;
  }
  .container-campaign .container-inner .head .badge {
    left: 20px;
  }
}



/* ========== CONTACT ========== */

.lp-section__contact .container-head {
  color: #0E7282;
}
@media only screen and (max-width: 767px) {
}


/* ========== magnific-popup ========== */

.mfp-fade.mfp-ready .mfp-content .mfp-close {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -40px;
  left: auto;
  right: 0;
  padding: 5px;
  cursor: pointer;
}

.mfp-fade.mfp-ready .mfp-content .mfp-close>span {
  display: block;
  width: 100%;
  height: 100%;
}

.mfp-fade.mfp-ready .mfp-content .mfp-close>span::before,
.mfp-fade.mfp-ready .mfp-content .mfp-close>span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  margin: 0 0 0 -15px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #ffffff;
}

.mfp-fade.mfp-ready .mfp-content .mfp-close>span::before {
  transform: rotate(-45deg);
}

.mfp-fade.mfp-ready .mfp-content .mfp-close>span::after {
  transform: rotate(45deg);
}

@media screen and (min-width: 768px) {
  .mfp-fade.mfp-ready .mfp-content .mfp-close {
    width: 60px;
    height: 60px;
    top: -100px;
  }

  .mfp-fade.mfp-ready .mfp-content .mfp-close>span::before,
  .mfp-fade.mfp-ready .mfp-content .mfp-close>span::after {
    height: 2px;
    margin: 0 0 0 -30px;
  }
}