/*========================================================
# リセットCSS
========================================================*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

body {
  height: 100%;
  margin: 0;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

/**
 * ***************************************
 * 	各スタイリング
 * ***************************************
 */

body {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.strong {
  font-weight: bold;
}

.content {
  width: 100%;
  max-width: 558px;
  margin-inline: auto;
  margin-top: 104px;
  text-align: center;
  padding-bottom: 422px;
}

@media (max-width:768px) {
  .content {
    margin-top: 45px;
    padding-right: 6.8%;
    padding-left: 6.8%;
    padding-bottom: 243px;
  }
}

.cono-design-logo {
  width: 240px;
  height: 81px;
  margin-inline: auto;
}

.cono-design-logo img {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width:768px) {
  .cono-design-logo {
    width: 180px;
    height: 61px;
  }
}

.title {
  font-size: 24px;
  line-height: calc(36 / 24);
  margin-top: 30px;
}

@media (max-width:768px) {
  .title {
    font-size: 20px;
  }
}

.text {
  line-height: 1.8;
}

.message {
  margin-top: 31px;
}

@media (max-width:768px) {
  .message {
    margin-top: 16px;
    text-align: left;
  }
}

.colored {
  color: #31539C;
}

.transfer-button {
  display: inline-block;
  margin-top: 30px;
  font-size: 18px;
  color: #fff;
  border: 1px solid #718CC7;
  background: #718CC7;
  line-height: calc(27 / 18);
  padding: 11px 60px;
  border-radius: 25px;
  transition: all 0.3s ease 0s;
}

@media (max-width:768px) {
  .transfer-button {
    margin-top: 25px;
  }
}

@media (any-hover: hover) {
  .transfer-button:hover {
    opacity: 0.8;
  }
}


.transfer-notice {
  margin-top: 32px;
  line-height: 1.8;
}

@media (max-width:768px) {
  .transfer-notice {
    margin-top: 30px;
    font-size: 14px;
    text-align: left;
  }
}

footer {
  text-align: center;
  color: #fff;
  background: #D7CF3A;
  height: 36px;
  font-size: 12px;
  line-height: 36px;
  margin-top: auto;
}

