@charset "UTF-8";
@import url("common.css");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@700&display=swap");

html,
body,
div,
span,
object,
iframe,
h1,
.recent-updated-heading,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
button,
input[type=submit],
input[type=button] {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/*=============================================================
#base
=============================================================*/

body,
html {}

img {
  max-width: 100%;
  height: auto;
  min-width: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block
}

ol,
ul {
  list-style: none;
}

html {}

body {
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  -webkit-text-size-adjust: none;
  -webkit-touch-callout: none;
  background-color: #FFF;
  text-size-adjust: 100%;
  margin: 0px;
  padding: 0px;
  color: #333333;
  text-align: center;
}

:focus {
  outline: 0;
}

iframe {
  width: 100%;
}

#container {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

a {
  text-decoration: none;
}

.body {
  width: 90%;
  margin: 0 auto;
}

.drawerfixed {
  overflow: auto;
  height: 100%;
}

@media screen and (max-width: 960px) {
  .sp-hd {
    display: none;
  }
}

/*=============================================================
タイトル
=============================================================*/
h1,
h2,
h3,
h4,
h5 {
  font-family: "Helvetica", "Arial", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: bold;
}

h1 {
  text-align: center;
  color: #fff;
  font-size: 36px;
  text-shadow: 0 0 0.2em black;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 960px) {
  h1 {
    font-size: 30px;
  }
}

.title {
  padding: 60px 0 40px;
  color: #00adf1;
  /*メインカラー*/
}

.title p {
  font-size: 12px;
}

h2 {
  text-align: center;
  font-size: 40px;
  line-height: 1.2em;
}

/*=============================================================
ボタン
=============================================================*/
a.button {
  display: flex;
  margin: auto;
  align-items: center;
  font-family: "Noto Sans Japanese";
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  width: fit-content;
  gap: 1em;
}

a.button_w {
  display: flex;
  margin: auto;
  align-items: center;
  font-family: "Noto Sans Japanese";
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  position: relative;
  width: fit-content;
  gap: 1em;
}

.circle_btn {
  position: relative;
  background: #00adf1;
  /*メインカラー*/
  color: #fff;
  padding: 0.1rem;
  border-radius: 100vh;
  width: 40px;
  height: 40px;
  text-align: center;
  transition: 0.3s;
}

.circle_btn:after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: calc(50% - 2px);
  right: calc(50% - 0px);
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}

a.button:hover .circle_btn {
  transform: scale(1.15);
}

a.button_w:hover .circle_btn {
  transform: scale(1.15);
}

a.button:hover .circle_btn:after {
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

a.button_w:hover .circle_btn:after {
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

/*=============================================================
#FOOTER
=============================================================*/
#footer {
  width: 100%;
  padding: 60px 0 0;
  background: #d9d9d9;
}

#footer .logo {
  width: 100px;
  margin: auto;
}

#footer p {
  margin: 20px 0;
}

#footer p.copyright {
  padding: 60px 0 10px;
  font-size: 12px;
  line-height: 150%;
  color: #333;
  text-align: center;
}