@charset "UTF-8";
/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
/* FontAwesome（外部読み込み） */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css");
/*====================
  変数定義
====================*/
/*====================
  Mixin（メディアクエリ管理）
====================*/
/*====================
  共通: デバイス表示制御（PC/SP）
====================*/
.pc_none {
  display: none;
}

.sp_none {
  display: block;
}

@media (max-width: 768px) {
  .pc_none {
    display: block;
  }
  .sp_none {
    display: none;
  }
}
/*====================
  ベース設定（BASE）
====================*/
html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
}

body {
  font-family: "Noto sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-feature-settings: "palt" 1;
  color: #000000;
  background-color: #ffffff;
}

/* リンク設定 */
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.6;
}

/* 外部リンクアイコン */
a.blank::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  vertical-align: middle;
  content: "\f08e"; /* FontAwesomeの外部リンクアイコン */
  padding-left: 3px;
}

/* 画像 */
img {
  max-width: 100%;
  height: auto;
}

/*======================================*/
.header {
  padding: 20px;
  text-align: left;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 90px;
  background-color: #ffffff;
  z-index: 100;
}
@media (max-width: 768px) {
  .header {
    padding: 15px;
    height: 60px;
  }
  .header h1 img {
    width: 140px;
  }
}
.header .spMenuBt {
  position: absolute;
  right: 0;
  top: 10px;
  z-index: 98;
  transition: all 0.4s;
  box-sizing: border-box;
  width: 64px;
  height: 60px;
  padding: 22px 0 0 0;
  cursor: pointer;
}
.header .spMenuBt span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  position: absolute;
  left: 20px;
  width: 24px;
  height: 2px;
  background-color: #cc0033;
  border-radius: 0;
}
.header .spMenuBt span:nth-of-type(1) {
  top: 22px;
}
.header .spMenuBt span:nth-of-type(2) {
  top: 29px;
}
.header .spMenuBt span:nth-of-type(3) {
  top: 36px;
}
.header .spMenuBt.active span:nth-of-type(1) {
  transform: translateY(6px) rotate(-45deg);
}
.header .spMenuBt.active span:nth-of-type(2) {
  opacity: 0;
}
.header .spMenuBt.active span:nth-of-type(3) {
  transform: translateY(-8px) rotate(45deg);
}
@media (max-width: 768px) {
  .header .spMenuBt {
    top: 0px;
  }
}
.header .spMenu {
  display: none;
  position: absolute;
  right: 0;
  top: 90px;
  box-shadow: 0 10px 20px rgba(35, 24, 21, 0.2);
}
.header .spMenu ul {
  width: 384px;
}
.header .spMenu ul li {
  border-bottom: 1px solid #fff;
}
.header .spMenu ul li:last-child {
  border-bottom: none;
}
.header .spMenu ul li a {
  display: block;
  font-size: 2.1em;
  background-color: #e5f4fb;
  padding: 30px 18px;
  line-height: 1em;
  font-weight: bold;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media (max-width: 768px) {
  .header .spMenu {
    top: 60px;
    right: auto;
    left: 0;
    width: 100%;
  }
  .header .spMenu ul {
    width: 100%;
  }
}

main {
  padding: 120px 0 0 0;
  background-image: url(../img/bg.png);
}
@media (max-width: 768px) {
  main {
    padding: 90px 0 0 0;
  }
}

.mv {
  padding: 0 0 100px 0;
  position: relative;
}
.mv .cpBt {
  position: absolute;
  bottom: -64px;
  left: 0;
  text-align: center;
  width: 100%;
  padding: 0 5%;
}
@media (max-width: 768px) {
  .mv {
    padding: 0 0 50px 0;
  }
  .mv .cpBt {
    bottom: -40px;
  }
}

.mvNote {
  padding: 90px 5% 35px 5%;
  background-color: #e5f4fb;
}
.mvNote p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.2em;
  line-height: 1.2em;
  text-indent: -1em;
  padding: 0 0 0 1em;
}
@media (max-width: 768px) {
  .mvNote {
    padding: 55px 5% 20px 5%;
  }
}

.exp {
  background-color: #00a0e9;
  padding: 30px 5%;
  margin: 0 0 190px 0;
}
.exp .inner {
  max-width: 680px;
  margin: 0 auto;
}
.exp .inner .expBox {
  display: flex;
  justify-content: space-between;
  padding: 0 0 30px 0;
}
.exp .inner .expBox .expBoxB {
  width: 31%;
}
.exp .inner .expBox .expBoxB h3 {
  text-align: center;
  padding: 0 0 15px 0;
}
.exp .inner .expBox .expBoxB .expBoxBTxt {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(35, 24, 21, 0.2);
  padding: 15px;
}
.exp .inner ul li {
  font-size: 1.2em;
  line-height: 1.2em;
  text-indent: -1.4em;
  padding: 0 0 5px 1.4em;
  color: #fff;
}
.exp .inner ul li a {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .exp {
    padding: 15px 5%;
    margin: 0 0 80px 0;
  }
  .exp .inner .expBox .expBoxB h3 {
    padding: 0 0 10px 0;
  }
  .exp .inner .expBox .expBoxB .expBoxBTxt {
    padding: 15px 5px;
  }
}

.link {
  background-image: url(../img/link_bg.png);
  padding: 100px 5% 70px 5%;
}
.link ul {
  display: flex;
  max-width: 683px;
  margin: 0 auto;
  justify-content: space-between;
}
.link ul li {
  background-color: #ffff99;
  border: solid 3px #ff146d;
  border-radius: 20px;
  width: 30%;
  box-shadow: 0 10px 0px rgba(35, 24, 21, 0.2);
}
.link ul li a {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 2em;
  line-height: 1.3em;
  color: #ff146d;
  font-weight: bolder;
  font-family: "Zen Maru Gothic", sans-serif;
  height: 130px;
  padding: 0 0 40px 0;
  background-image: url(../img/link_bt.png);
  background-repeat: no-repeat;
  background-position: center 80%;
  background-size: 24px 24px;
}
@media (max-width: 768px) {
  .link {
    padding: 50px 5% 35px 5%;
  }
  .link ul li {
    width: 32%;
  }
  .link ul li a {
    font-size: 1.6em;
    height: 110px;
    padding: 0 0 30px 0;
    background-position: center 90%;
    background-size: 20px 20px;
  }
}

.regist {
  padding: 20px 5%;
  position: relative;
}
.regist #regist {
  position: absolute;
  top: -80px;
}
.regist .registTxt h2 {
  font-size: 5em;
  padding: 0 0 0.8em 0;
  text-align: center;
  color: #ff146d;
  font-weight: bolder;
  font-family: "Zen Maru Gothic", sans-serif;
}
.regist .registTxt p {
  font-size: 2em;
  padding: 0 0 1em 0;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
}
.regist .registTxt figure {
  text-align: center;
  padding: 40px 0;
}
.regist .registMore {
  padding: 0 0 180px 0;
}
.regist .registMoreBox {
  display: none;
  max-width: 680px;
  margin: 0 auto;
  background-color: #fff;
  border: solid 3px #0095da;
  border-top: none;
  padding: 35px;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
}
.regist .registMoreBox h3 {
  text-align: center;
  font-size: 5em;
  padding: 0 0 0.8em 0;
  color: #ff146d;
  font-weight: bolder;
}
.regist .registMoreBox h4 {
  font-size: 2em;
  font-weight: bold;
  padding: 0 0 10px 0;
}
.regist .registMoreBox h4 img {
  margin: 0 0 5px 0;
}
.regist .registMoreBox h5 {
  text-align: center;
  font-size: 1.7em;
  padding: 0 0 0 0;
  color: #ff146d;
  font-weight: bold;
}
.regist .registMoreBox .arrow {
  padding: 20px 0;
}
.regist .registMoreBox p {
  color: #626d73;
  font-size: 1.4em;
  text-align: center;
}
.regist .registMoreBox figure {
  padding: 10px 0 0 0;
}
.regist .registMoreBox .regist_block {
  border-bottom: solid 2px #0095da;
  margin: 25px 0;
  display: flex;
  justify-content: center;
}
.regist .registMoreBox .regist_block div {
  background-color: #ecf0ff;
  text-align: center;
  font-size: 1.6em;
  line-height: 1.2em;
  border-radius: 20px 20px 0 0;
  padding: 20px;
  margin: 0 5px;
  width: 45%;
  cursor: pointer;
}
.regist .registMoreBox .regist_block div.on {
  background-color: #0095da;
  color: #fff;
}
@media (max-width: 768px) {
  .regist .registMoreBox .regist_block div {
    font-size: 1.2em;
    padding: 10px;
    border-radius: 15px 15px 0 0;
  }
}
.regist .registMoreBox .regist_block_b {
  display: none;
}
@media (max-width: 768px) {
  .regist .registMoreBox {
    padding: 15px;
  }
}
@media (max-width: 768px) {
  .regist {
    padding: 20px 0 0 0;
  }
  .regist #regist {
    top: -40px;
  }
  .regist .registTxt .registTitle img {
    width: 250px;
  }
  .regist .registTxt h2 {
    font-size: 2.5em;
  }
  .regist .registTxt p {
    font-size: 1.8em;
  }
  .regist .registTxt figure {
    padding: 20px 0;
  }
  .regist .registToggle {
    margin: 0 5%;
  }
  .regist .registMore {
    padding: 0 0 90px 0;
  }
  .regist .registMoreBox {
    margin: 0 5%;
  }
  .regist .registMoreBox h3 {
    font-size: 2.5em;
  }
  .regist .registMoreBox h4 {
    font-size: 2em;
  }
}

.faq {
  padding: 150px 5% 0 5%;
  position: relative;
}
.faq #faq {
  position: absolute;
  top: -80px;
}
.faq .inner {
  max-width: 680px;
  margin: 0 auto;
}
.faq .inner h2 {
  font-size: 5em;
  padding: 0 0 0 0;
  text-align: center;
  color: #ff146d;
  font-weight: bolder;
  font-family: "Zen Maru Gothic", sans-serif;
}
.faq .inner h3 {
  font-size: 2.88em;
  padding: 0 0 0 0.5em;
  border-left: 5px solid #ff146d;
  font-weight: bolder;
  font-family: "Zen Maru Gothic", sans-serif;
  margin: 70px 0 0.8em 0;
}
.faq .inner dl {
  padding: 0 0 20px 0;
}
.faq .inner dt {
  font-size: 2em;
  background-color: #40afe3;
  color: #fff;
  padding: 42px 70px 42px 30px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  background-size: 23px 23px;
  background-position: 95% center;
  background-repeat: no-repeat;
  background-image: url(../img/toggle_bt_icon.png);
}
.faq .inner dt.on {
  background-image: url(../img/toggle_bt_icon_on.png);
}
.faq .inner dd {
  display: none;
  border: solid 2px #40afe3;
  background-color: #fff;
  padding: 30px 30px 0 30px;
}
.faq .inner dd p {
  font-size: 1.6em;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  padding: 0 0 30px 0;
}
.faq .inner dd a {
  color: #00a0e9;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .faq {
    padding: 75px 5% 0 5%;
  }
  .faq #faq {
    top: -20px;
  }
  .faq .inner h2 {
    font-size: 2.5em;
  }
  .faq .inner h3 {
    font-size: 1.8em;
    margin: 35px 0 0.8em 0;
  }
  .faq .inner dl {
    padding: 0 0 10px 0;
  }
  .faq .inner dt {
    font-size: 1.5em;
    padding: 21px 35px 21px 15px;
    background-size: 12px 12px;
  }
  .faq .inner dd {
    padding: 15px 15px 0 15px;
  }
  .faq .inner dd p {
    font-size: 1.35em;
    padding: 0 0 15px 0;
  }
}

.value {
  padding: 50px 5% 180px 5%;
}
.value h2 {
  font-size: 5em;
  padding: 0 0 36px 0;
  text-align: center;
  color: #ff146d;
  font-weight: bolder;
  font-family: "Zen Maru Gothic", sans-serif;
}
.value h2 span {
  background-image: url(../img/value_title_bg.png);
  background-size: 392px 16px;
  background-repeat: no-repeat;
  background-position: bottom center;
  padding: 0 0 18px 0;
}
.value .inner p {
  text-align: center;
}
.value .inner .valueBox {
  display: flex;
  justify-content: center;
}
.value .inner ul {
  max-width: 680px;
  margin: 0 auto;
}
.value .inner ul li {
  font-size: 1.2em;
  line-height: 1.2em;
  text-indent: -1.4em;
  padding: 0 0 5px 1.4em;
}
.value .inner ul li a {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .value {
    padding: 25px 5% 70px 5%;
  }
  .value h2 {
    font-size: 2.5em;
  }
  .value h2 span {
    background-size: 196px 8px;
    padding: 0 0 9px 0;
  }
}

.recommend {
  padding: 140px 5% 180px 5%;
}
.recommend h2 {
  font-size: 5em;
  padding: 0 0 36px 0;
  margin: 0 0 100px 0;
  text-align: center;
  color: #ff146d;
  font-weight: bolder;
  font-family: "Zen Maru Gothic", sans-serif;
}
.recommend h2 span {
  background-image: url(../img/recommend_title_bg.png);
  background-size: 546px 17px;
  background-repeat: no-repeat;
  background-position: bottom center;
  padding: 0 0 18px 0;
}
.recommend h3 {
  position: relative;
  width: 100%;
}
.recommend h3 img {
  position: absolute;
  left: 50%;
  top: -30px;
  text-align: center;
  transform: translate(-50%, 0);
  z-index: 90;
}
.recommend .recommendBox {
  position: relative;
  background-color: #fff;
  max-width: 680px;
  max-width: 0 auto;
  text-align: center;
  padding: 25px 48px;
  margin: 0 auto 74px auto;
  -webkit-clip-path: polygon(0 0, calc(100% - 60px) 0, 100% 60px, 100% 100%, 0 100%);
          clip-path: polygon(0 0, calc(100% - 60px) 0, 100% 60px, 100% 100%, 0 100%);
  filter: drop-shadow(0 10px 20px rgba(35, 24, 21, 0.2));
}
.recommend .recommendBox #detail {
  position: absolute;
  top: -130px;
}
.recommend .recommendBox h4 {
  padding: 65px 0 40px 0;
}
.recommend .recommendBox p {
  font-size: 3em;
  line-height: 1.3em;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  padding: 0 0 20px 0;
}
.recommend .recommendBox figure {
  padding: 0 0 30px 0;
}
.recommend .recommendBox ul li {
  text-align: left;
  font-size: 1.2em;
  line-height: 1.3em;
  text-indent: -1.4em;
  padding: 0 0 0 1.4em;
}
.recommend .toggleBt {
  text-align: left;
  padding: 25px 35px;
  margin: 0 auto 25px auto;
}
.recommend .recommendBoxtoggle {
  padding: 20px 0 0 0;
  display: none;
}
.recommend .recommendBoxtoggle h5 {
  font-size: 5em;
  padding: 0 0 36px 0;
  text-align: center;
  color: #ff146d;
  font-weight: bolder;
  font-family: "Zen Maru Gothic", sans-serif;
}
.recommend .recommendBoxtoggle .recommendBoxtoggleB {
  position: relative;
  background-color: #e5f4fb;
  padding: 35px;
  border-radius: 20px;
  margin: 0 0 40px 0;
}
.recommend .recommendBoxtoggle .recommendBoxtoggleB h6 {
  font-size: 3.3em;
  color: #0095da;
  font-weight: bold;
  font-family: "Zen Maru Gothic", sans-serif;
  padding: 0 0 15px 0;
}
.recommend .recommendBoxtoggle .recommendBoxtoggleB figure {
  padding: 20px 0;
}
.recommend .recommendBoxtoggle .recommendBoxtoggleB ul li {
  text-align: left;
  font-size: 1.2em;
  line-height: 1.3em;
  text-indent: -1.4em;
  padding: 0 0 0 1.4em;
}
.recommend .recommendBoxtoggle .rtLink {
  padding: 20px 0;
}
.recommend .recommendBoxtoggle .rtLink a {
  display: block;
  text-align: center;
  background-color: #d4a805;
  font-size: 2.5em;
  color: #fff;
  font-weight: bold;
  font-family: "Zen Maru Gothic", sans-serif;
  border-radius: 50px;
  padding: 15px 0;
  box-shadow: 0 5px 0px rgba(0, 149, 218, 0.6);
  background-size: 18px 18px;
  background-position: 95% center;
  background-repeat: no-repeat;
  background-image: url(../img/recommend_link_icon_a.png);
}
.recommend .recommendBoxtoggle .plus {
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  bottom: -60px;
  z-index: 90;
}
@media (max-width: 768px) {
  .recommend {
    padding: 70px 5% 40px 5%;
  }
  .recommend h2 {
    font-size: 2.5em;
    padding: 0 0 18px 0;
    margin: 0 0 50px 0;
  }
  .recommend h2 span {
    background-size: 273px 9px;
    padding: 0 0 9px 0;
  }
  .recommend h3 img {
    top: -20px;
    width: 80px;
  }
  .recommend .recommendBox {
    padding: 12px 24px;
    margin: 0 auto 37px auto;
    -webkit-clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
            clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
    filter: drop-shadow(0 10px 20px rgba(35, 24, 21, 0.2));
  }
  .recommend .recommendBox #detail {
    position: absolute;
    top: -80px;
  }
  .recommend .recommendBox h4 {
    padding: 32px 0 20px 0;
  }
  .recommend .recommendBox p {
    font-size: 1.5em;
    padding: 0 0 10px 0;
  }
  .recommend .recommendBox figure {
    padding: 0 0 15px 0;
  }
  .recommend .toggleBt {
    padding: 15px 25px;
    margin: 0 auto 25px auto;
  }
  .recommend .recommendBoxtoggle {
    padding: 10px 0 0 0;
  }
  .recommend .recommendBoxtoggle h5 {
    font-size: 2.5em;
    padding: 0 0 18px 0;
  }
  .recommend .recommendBoxtoggle .recommendBoxtoggleB {
    padding: 20px;
    border-radius: 10px;
    margin: 0 0 20px 0;
  }
  .recommend .recommendBoxtoggle .recommendBoxtoggleB h6 {
    font-size: 1.7em;
    padding: 0 0 10px 0;
  }
  .recommend .recommendBoxtoggle .recommendBoxtoggleB figure {
    padding: 10px 0;
  }
  .recommend .recommendBoxtoggle .rtLink {
    padding: 10px 0;
  }
  .recommend .recommendBoxtoggle .rtLink a {
    font-size: 1.3em;
    border-radius: 30px;
    padding: 10px 0;
    box-shadow: 0 3px 0px rgba(0, 149, 218, 0.6);
    background-size: 9px 9px;
  }
  .recommend .recommendBoxtoggle .plus {
    bottom: -30px;
  }
  .recommend .recommendBoxtoggle .plus img {
    width: 30px;
  }
}

.campaign {
  background-color: #e5f4fb;
  padding: 140px 5% 55px 5%;
}
.campaign h2 {
  font-size: 4em;
  text-align: center;
  color: #ff146d;
  font-weight: bolder;
  font-family: "Zen Maru Gothic", sans-serif;
  background-image: url(../img/campaign_title_bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  max-width: 663px;
  margin: 0 auto 30px auto;
}
.campaign ul li {
  text-align: center;
  padding: 0 0 20px 0;
}
@media (max-width: 768px) {
  .campaign {
    padding: 70px 5% 30px 5%;
  }
  .campaign h2 {
    font-size: 2.5em;
    background-image: url(../img/campaign_title_bg_sp.png);
    margin: 0 auto 15px auto;
  }
  .campaign ul li {
    text-align: center;
    padding: 0 0 10px 0;
  }
}

.prime {
  padding: 75px 5% 180px 5%;
  font-family: "Zen Maru Gothic", sans-serif;
  position: relative;
}
.prime #prime {
  position: absolute;
  top: -80px;
}
.prime h2 {
  text-align: center;
}
.prime .primeCopy {
  text-align: center;
  font-size: 3.4em;
  font-weight: bold;
  padding: 45px 0;
}
.prime .primeBox {
  background-color: #fff;
  max-width: 680px;
  margin: 0 auto 40px auto;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(35, 24, 21, 0.1);
}
.prime .primeBox figure {
  text-align: center;
  font-size: 1em;
}
.prime .primeBox h3 {
  color: #0095da;
  font-size: 2.5em;
  padding: 0.5em 0;
  font-weight: bold;
}
.prime .primeBox h3 img {
  margin: 0 10px 0 0;
}
.prime .primeBox h4 {
  font-size: 2em;
  padding: 0 0 0.3em 0;
}
.prime .primeBox p {
  font-size: 1.3em;
  padding: 0 0 1em 0;
}
.prime .primeBox p.note {
  font-size: 1.2em;
  padding: 0 1em 1em;
  text-indent: -1em;
}
@media (max-width: 768px) {
  .prime {
    padding: 40px 5% 70px 5%;
  }
  .prime #prime {
    position: absolute;
    top: -40px;
  }
  .prime h2 img {
    width: 230px;
  }
  .prime .primeCopy {
    font-size: 1.7em;
    padding: 25px 0;
  }
  .prime .primeBox {
    margin: 0 auto 20px auto;
    padding: 20px;
    border-radius: 10px;
  }
  .prime .primeBox figure img {
    width: 100%;
  }
  .prime .primeBox h3 {
    font-size: 2.3em;
  }
  .prime .primeBox h4 {
    font-size: 1.8em;
  }
  .prime .primeBox p {
    font-size: 1.5em;
  }
}

.toggleBt {
  max-width: 680px;
  margin: 0 auto;
  font-size: 3.4em;
  line-height: 1em;
  color: #fff;
  background-color: #d4a805;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  padding: 35px 70px;
  box-shadow: 0 10px 0px rgba(35, 24, 21, 0.2);
  cursor: pointer;
  background-size: 23px 23px;
  background-position: 95% center;
  background-repeat: no-repeat;
  background-image: url(../img/toggle_bt_icon.png);
}
.toggleBt.on {
  background-image: url(../img/toggle_bt_icon_on.png);
}
@media (max-width: 768px) {
  .toggleBt {
    font-size: 1.7em;
    padding: 24px 40px;
    background-size: 12px 12px;
    background-position: 90% center;
  }
}

.cp {
  position: relative;
  padding: 50px 5% 100px 5%;
  background-color: #fff;
}
.cp .cpHead {
  position: absolute;
  top: -150px;
  left: 0;
  width: 100%;
  height: 150px;
}
.cp .cpHead img {
  width: 100%;
  height: 100%;
}
.cp h2 {
  position: absolute;
  top: -64px;
  left: 0;
  text-align: center;
  width: 100%;
}
.cp p {
  text-align: center;
}
.cp .cpBt {
  position: absolute;
  bottom: -64px;
  left: 0;
  text-align: center;
  width: 100%;
}
@media (max-width: 768px) {
  .cp {
    padding: 70px 10% 50px 10%;
  }
  .cp .cpHead {
    position: absolute;
    top: -60px;
    height: 60px;
  }
  .cp h2 {
    top: 5px;
  }
  .cp h2 img {
    width: 210px;
  }
  .cp .cpBt {
    bottom: -32px;
    padding: 0 10%;
  }
}

.footerLink {
  background-color: #e5f4fb;
  padding: 150px 5% 50px 5%;
}
.footerLink .footerLinkBox {
  max-width: 680px;
  margin: 0 auto 50px auto;
}
.footerLink .footerLinkBox a {
  color: #0095da;
  display: block;
  background-color: #fff;
  border: solid 2.4px #0095da;
  text-align: center;
  font-size: 2.72em;
  font-weight: bolder;
  line-height: 1em;
  padding: 30px 0;
  font-family: "Zen Maru Gothic", sans-serif;
  box-shadow: 0 10px 0 rgba(35, 24, 21, 0.2);
  background-size: 18px 18px;
  background-position: 95% center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.footerLink .footerLinkBox .btA {
  background-image: url(../img/footer_link_icon_a.png);
}
.footerLink .footerLinkBox .btB {
  background-image: url(../img/footer_link_icon_b.png);
}
.footerLink .footerLinkBox .btB.on {
  background-image: url(../img/footer_link_icon_c.png);
}
.footerLink .footerLinkBox .footerLinkBoxD {
  display: none;
  background-color: #fff;
  border: solid 2.4px #0095da;
  box-shadow: 0 10px 0 rgba(35, 24, 21, 0.2);
  padding: 35px;
}
.footerLink .footerLinkBox .footerLinkBoxD h3 {
  font-size: 1.8em;
  text-align: center;
  color: #0095da;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  padding: 0 0 10px 0;
}
.footerLink .footerLinkBox .footerLinkBoxD ul li {
  font-size: 1.4em;
  line-height: 1.3em;
  text-indent: -1.4em;
  padding: 0 0 10px 1.4em;
}
@media (max-width: 768px) {
  .footerLink {
    padding: 75px 5% 25px 5%;
  }
  .footerLink .footerLinkBox {
    margin: 0 auto 25px auto;
  }
  .footerLink .footerLinkBox a {
    font-size: 1.7em;
    padding: 20px 0;
    background-size: 10px 10px;
  }
  .footerLink .footerLinkBox .footerLinkBoxD {
    display: none;
    background-color: #fff;
    border: solid 2.4px #0095da;
    box-shadow: 0 10px 0 rgba(35, 24, 21, 0.2);
    padding: 20px;
  }
  .footerLink .footerLinkBox .footerLinkBoxD h3 {
    font-size: 1.7em;
    padding: 0 0 10px 0;
  }
}

.footer {
  color: #ffffff;
  background-color: #0095da;
  text-align: center;
  padding: 50px 5%;
}
.footer address {
  font-size: 1.4em;
}
@media (max-width: 768px) {
  .footer {
    padding: 20px 5%;
  }
  .footer address {
    font-size: 1.2em;
  }
}/*# sourceMappingURL=home.css.map */