@charset "UTF-8";
/* -----------------------------------------------------------------

 #01　リセット

 ------------------------------------------------------------------ */
/*** The new CSS reset - version 1.8.4 (last updated 14.2.2023) ***/
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg*, symbol*)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a,
button {
  cursor: revert;
}

ol,
ul,
menu {
  list-style: none;
  padding-left: 0;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
  user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  appearance: revert;
}

:where(pre) {
  all: revert;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  line-break: after-white-space;
  -webkit-user-select: auto;
  user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

a{
    color: #005fee !important;
    text-decoration: underline  !important;
}
/* -----------------------------------------------------------------

 #02　基本タグの定義

 ------------------------------------------------------------------ */
html {
  font-size: 20px;
  line-height: 1.6;
}

body {
  color: #000000;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  background-color: #ffffff;
  text-align: left;
  background-repeat: no-repeat;
  width: auto;
  height: 100%;
  margin: 0px auto;
  background-position: top;
}

p {
  font-weight: bold;
  margin: 0;
}

em,
strong {
  font-style: normal;
  font-weight: 100;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th {
  text-align: left;
}

ol,
ul,
dl {
  list-style: none;
}

a img {
  border-style: none;
  outline: medium none;
}

object {
  border-style: none;
  outline: medium none;
}

a {
  font-size: 1em;
  color: #023461;
  text-decoration: none;
  outline: none;
  transition: 0.3s;
}
a:hover {
  text-decoration: underline;
  opacity: 0.7;
}
a:link {
  outline: medium none;
}
a:visited {
  outline: medium none;
}

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

.btn {
  display: inline-block;
  line-height: 0;
  border-radius: 60px;
  box-shadow: 10px 10px 10px rgba(0, 131, 158, 0.4);
}

.text-left {
  text-align: left;
}

/* -----------------------------------------------------------------
@mixin
------------------------------------------------------------------ */
/* -----------------------------------------------------------------

 #01 COMMON

 ------------------------------------------------------------------ */
.main,
.footer {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

p, picture {
  display: block;
  line-height: 0;
}

.line {
  margin: 30px 0;
  text-align: center;
}
.line img {
  width: 360px;
}

.about {
  margin: 80px 0 50px;
}
.about h2 {
  font-size: 35px;
  text-align: center;
}
.about-table {
  width: 640px;
  margin: auto;
  border-top: 2px solid #000;
}
.about-table th, .about-table td {
  padding: 20px 15px;
  font-size: 26px;
  border-bottom: 2px solid #000;
}
.about-table th {
  text-align: center;
  font-weight: normal;
  background: #F7F5B9;
  border-right: 2px solid #000;
}
.about-table td {
  padding-right: 0;
  text-align: left;
}

/* -----------------------------------------------------------------

 FOOTER

 ------------------------------------------------------------------ */
.footer {
  padding-top: 150px;
}

.fix-footer {
  position: fixed;
  z-index: 100;
  bottom: 20px;
  left: 50%;
  width: 100%;
  max-width: 750px;
  display: flex;
  transform: translateX(-50%);
  overflow: hidden;
}
.fix-footer a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.fix-footer a span {
  line-height: 0;
}

.anim-box.poyopoyo {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}/*# sourceMappingURL=style.css.map */