@charset "UTF-8";
/* Scss Document */
/* =10px */
html {
  font-size: 62.5%;
}

body {
  font-size: 1rem;
}

body {
  margin: 0px;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 10px;
  /*62.5%*/
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-text-size-adjust: 100%;
  /* スマホを横向きにすると文字が余計に拡大されるのを防ぐ */
  color: #202935;
  counter-reset: number 0;
}

body {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
p {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 1em;
  text-align: justify;
  text-justify: distribute;
  word-break: break-all;
  word-break: normal;
  letter-spacing: 0.05em;
}

p:last-of-type {
  margin-bottom: 0;
}

a {
  color: #5A7480;
}

a:focus,
*:focus {
  outline: none;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .row {
    margin-right: -15px;
    margin-left: -15px;
  }
}

.p-0 {
  padding: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 1em !important;
}

.mb-2 {
  margin-bottom: 1.5em !important;
}

.mb-3 {
  margin-bottom: 2em !important;
}

.mb-4 {
  margin-bottom: 2.5em !important;
}

.mb-5 {
  margin-bottom: 3em !important;
}

header {
  background: #eee;
  padding: 16px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  margin-top: 24px;
  text-align: center;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 992px) {
  header {
    text-align: left;
    grid-template-columns: 30% calc(70% - 16px);
    align-items: center;
    justify-content: flex-start;
  }
}
header h1 {
  margin-bottom: 0;
}
header h1 img {
  max-width: 100%;
  height: auto;
}
header .nav-area nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  justify-content: center;
  gap: 4px;
  font-size: 1.6rem;
  font-weight: 600;
}
header .nav-area nav ul a {
  color: #202935;
  text-decoration: none;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
header .nav-area nav ul li::after {
  content: "/";
  padding-left: 4px;
}
header .nav-area nav ul li:last-child::after {
  content: none;
}
header .nav-area nav ul a:hover {
  color: #cd3e26;
}
@media (min-width: 992px) {
  header .nav-area nav ul {
    justify-content: flex-end;
    gap: 32px;
  }
  header .nav-area nav ul li:after {
    content: none;
  }
}

section {
  margin-top: 120px;
}
@media (min-width: 768px) {
  section {
    position: relative;
    margin-top: 240px;
  }
}
h2 {
  font-family: "Times New Roman", Times, serif;
  font-size: 2rem;
  font-weight: bold;
  color: #FFF;
  line-height: 1.1;
  margin-bottom: 32px;
}
h2 span {
  display: block;
  font-size: 8rem;
}
@media (min-width: 768px) {
  h2 span {
    font-size: 9rem;
  }
}
@media (min-width: 768px) {
  h2 {
    font-size: 2.2rem;
    margin-left: 5%;
  }
}

.circle {
  display: grid;
  grid-template-columns: auto auto;
  gap: 32px;
  text-align: center;
}
@media (min-width: 768px) {
  .circle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    grid-template-columns: 180px 180px;
    justify-content: flex-end;
  }
}
@media (min-width: 992px) {
  .circle {
    top: 0;
    right: 10%;
    transform: inherit;
  }
}

/*# sourceMappingURL=styles.css.map */
