@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, 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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 1em;
}

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

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

i {
  font-style: italic;
}

table {
  width: 100%;
  table-layout: fixed;
}

table, th, td {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

input {
  outline: none;
}

input[type=text], input[type=tel], input[type=email], textarea {
  padding: 5px;
  border-style: 1px;
}

input[type=checkbox], input[type=checkbox] {
  margin: 3px;
}

textarea {
  min-height: 5em;
  vertical-align: top;
}

hr {
  height: 1px;
  border: none;
  border-bottom: 1px rgba(0, 0, 0, 0.1) solid;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  scroll-behavior: smooth;
}

body {
  text-align: center;
}

#wrapper {
  min-width: 1000px;
}

.inner {
  max-width: 1400px;
  margin: auto;
  text-align: left;
}

a {
  transition: all 0.5s ease-in;
}
a:link {
  color: #1F7C9A;
  text-decoration: none;
}
a:visited {
  color: #9ea7a8;
  text-decoration: none;
}
a:hover, a:active {
  color: #219fc9;
  text-decoration: none;
}
a:hover img, a:active img {
  transition: all 0.5s ease-in;
  transition-duration: 0.1s;
  opacity: 0.9;
}

#toplink {
  transition: all 0.3s cubic-bezier(0.17, 0.67, 0.5, 1.16);
  transition-duration: 1.5s;
  position: fixed;
  right: -200px;
  bottom: 15%;
  z-index: 99;
  width: 80px;
  height: 80px;
}
#toplink.on {
  right: 50px;
  bottom: 15%;
}
#toplink a {
  position: relative;
  transition-duration: 0.2s;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  background: #005975;
}
#toplink a:link, #toplink a:visited {
  opacity: 0.75;
}
#toplink a:hover, #toplink a:active {
  opacity: 0.9;
}
#toplink a img {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 30px;
}

#loading {
  transition: all 0.5s ease-in;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  z-index: 9999;
  opacity: 1;
  background: #005975;
}
#loading p {
  animation: 1s linear 0s infinite alternate load;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 120px;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 1px;
}
#loading.loaded {
  opacity: 0;
  z-index: -1;
}

@keyframes load {
  0% {
    opacity: 0.35;
  }
  100% {
    opacity: 0.8;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 99;
  font-size: 0.8rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: rgba(4, 20, 25, 0.9);
}
header .logo {
  position: absolute;
  top: 20px;
  left: calc(50% - 55px);
  width: 110px;
  margin: auto;
}
header .desc {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: absolute;
  top: 45%;
  left: 50px;
  color: #AFAFAF;
  font-weight: 300;
}
header .desc span {
  color: #fff;
}
header nav {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: absolute;
  top: 45%;
  right: 50px;
}
header nav ul li {
  display: inline-block;
  margin-left: 12.5px;
  font-weight: 300;
}
header nav a {
  display: block;
  transition-duration: 0.3s;
}
header nav a:link, header nav a:visited {
  color: #AFAFAF;
}
header nav a:hover, header nav a:active {
  color: #fff;
}
header nav a::after {
  transition: all 0.3s cubic-bezier(0.17, 0.67, 0.5, 1.16);
  transform-origin: left;
  rotate: 45deg;
  content: "";
  position: relative;
  display: block;
  width: 0;
  height: 1px;
  opacity: 0;
  background: #afafaf;
}
header nav a:hover::after {
  rotate: 0deg;
  opacity: 0.9;
  width: 100%;
  background: #fff;
}

#PageTitle {
  overflow: hidden;
  position: relative;
  height: 450px;
  background: #000;
  background-position: center;
  background-size: cover;
}
#PageTitle::before {
  position: absolute;
  left: 50%;
  bottom: 0;
  content: "";
  width: 100vw;
  height: 1px;
  background: #fff;
  opacity: 0.5;
  translate: -60% -50%;
  rotate: -45deg;
}
#PageTitle .inner {
  position: relative;
  height: 100%;
  color: #fff;
  text-align: center;
}
#PageTitle .inner .title {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: absolute;
  top: 52%;
  width: 100%;
  font-size: 3.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
}
#PageTitle .inner #topicpath {
  position: absolute;
  left: 50px;
  bottom: 25px;
  font-size: 0.75rem;
  font-weight: 300;
  text-align: left;
  opacity: 0.9;
  letter-spacing: 2px;
}
#PageTitle .inner #topicpath ul li {
  display: inline-block;
}
#PageTitle .inner #topicpath ul li::after {
  display: inline-block;
  margin: 0 0.5em;
  content: "/";
}
#PageTitle .inner #topicpath ul li:last-of-type::after {
  display: none;
}
#PageTitle .inner #topicpath ul li .subtxt {
  margin-left: 0.5em;
  opacity: 0.65;
  letter-spacing: 0;
}
#PageTitle .inner #topicpath a {
  transition-duration: 0.1s;
}
#PageTitle .inner #topicpath a:link, #PageTitle .inner #topicpath a:visited {
  color: #fff;
}
#PageTitle .inner #topicpath a:hover, #PageTitle .inner #topicpath a:active {
  color: #219fc9;
}

#profile #PageTitle {
  background-image: url(../img/pagetitle_bg_profile.jpg);
}

#services #PageTitle {
  background-image: url(../img/pagetitle_bg_services.jpg);
}

#logo #PageTitle {
  background-image: url(../img/pagetitle_bg_logo.jpg);
}

#contact #PageTitle {
  background-image: url(../img/pagetitle_bg_contact.jpg);
}

#notfound #PageTitle {
  background-image: url(../img/pagetitle_bg_404.jpg);
}

article {
  min-height: 30vh;
  padding-top: 75px;
  color: #343434;
}
article section {
  padding: 75px 0;
}
article section:nth-of-type(even) {
  background: #F2F3F3;
}
article section:nth-of-type(1) {
  padding-top: 0;
}
article h1, article h2 {
  margin-bottom: 50px;
  color: #005975;
  text-align: center;
}
article h1 span, article h2 span {
  position: relative;
  display: inline-block;
  min-width: 200px;
  font-size: 2.5rem;
  font-weight: 600;
}
article h1 span:nth-of-type(1), article h2 span:nth-of-type(1) {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  font-weight: 600;
  letter-spacing: 2px;
}
article h1 span:nth-of-type(1)::before, article h2 span:nth-of-type(1)::before {
  position: absolute;
  top: 0;
  left: -37.5px;
  rotate: -45deg;
  display: block;
  content: "";
  width: 30px;
  height: 5px;
  background: #005975;
}
article h1 span:nth-of-type(1)::after, article h2 span:nth-of-type(1)::after {
  position: absolute;
  bottom: 0;
  right: -37.5px;
  rotate: -45deg;
  display: block;
  content: "";
  width: 30px;
  height: 5px;
  background: #005975;
}
article h1 span:nth-of-type(2), article h2 span:nth-of-type(2) {
  display: block;
  color: #839197;
  font-size: 0.9rem;
}
article h3 {
  position: relative;
  display: inline-block;
  min-width: 250px;
  margin: auto;
  margin-bottom: 25px;
  color: #005975;
  font-size: 1.5rem;
  text-align: center;
}
article h3::before {
  position: absolute;
  top: -15px;
  left: -20px;
  content: url(../img/h3_pict_01.svg);
  width: 16px;
  height: 16px;
}
article h3::after {
  position: absolute;
  bottom: 10px;
  right: -20px;
  content: url(../img/h3_pict_02.svg);
  width: 16px;
  height: 16px;
}
article div {
  margin-bottom: 50px;
  padding: 0 50px;
}
article div div {
  padding: 0;
}
article p, article ul, article ol, article dl, article table {
  line-height: 1.8em;
}
article ul li {
  margin-left: 0.35em;
}
article ul li::before {
  position: relative;
  left: -0.5em;
  content: "●";
  color: #555555;
}
article table {
  background: #fff;
  border-top: 1px #B5B5B5 solid;
}
article table p, article table ul, article table ol, article table dl, article table table {
  margin-bottom: 0;
}
article table th, article table td {
  padding: 1.75em 1.5em;
  border-bottom: 1px #B5B5B5 solid;
}
article table tr th {
  text-align: center;
  border-right: 1px #B5B5B5 dotted;
}
article table tr:nth-of-type(odd) th {
  background: #F8F8F8;
}
article table tr:nth-of-type(odd) td {
  background: #F8F8F8;
}
article .center {
  text-align: center;
}
article .left {
  text-align: left;
}
article .right {
  text-align: right;
}
article .subtxt {
  font-size: 0.9em;
  line-height: 1.5em;
}
article .notice {
  position: relative;
  display: block;
  margin-left: 1em;
  font-size: 0.9em;
  line-height: 1.5em;
}
article .notice::before {
  content: "※";
  display: inline-block;
  position: absolute;
  left: -1em;
}
article .w5p {
  width: 5%;
}
article .w10p {
  width: 10%;
}
article .w15p {
  width: 15%;
}
article .w20p {
  width: 20%;
}
article .w25p {
  width: 25%;
}
article .w30p {
  width: 30%;
}
article .w35p {
  width: 35%;
}
article .w40p {
  width: 40%;
}
article .w45p {
  width: 45%;
}
article .w50p {
  width: 50%;
}
article .w55p {
  width: 55%;
}
article .w60p {
  width: 60%;
}
article .w65p {
  width: 65%;
}
article .w70p {
  width: 70%;
}
article .w75p {
  width: 75%;
}
article .w80p {
  width: 80%;
}
article .w85p {
  width: 85%;
}
article .w90p {
  width: 90%;
}
article .w95p {
  width: 95%;
}
article .w100p {
  width: 100%;
}
article .mb0 {
  margin-bottom: 0;
}
article .mb {
  margin-bottom: 50px;
}
article .edit {
  padding: 50px;
  text-align: right;
}

footer {
  padding: 25px 50px;
  background: #061E26;
}
footer .inner {
  color: #7F878A;
  font-size: 0.8rem;
  text-align: center;
}
footer .footer_logo {
  width: 110px;
  margin: auto;
  margin-bottom: 1em;
}
footer .footer_link {
  margin-bottom: 2.5em;
}
footer .footer_link a {
  transition: all 0.5s ease-in;
  overflow: hidden;
  position: relative;
  transition-duration: 0.2s;
  display: block;
  max-width: 200px;
  margin: auto;
  padding: 0.5em;
}
footer .footer_link a:link, footer .footer_link a:visited {
  color: #7F878A;
  background: rgba(85, 85, 85, 0.1);
  border: 1px rgba(255, 255, 255, 0.1) solid;
}
footer .footer_link a:hover, footer .footer_link a:active {
  color: rgba(255, 255, 255, 0.75);
  background: rgba(85, 85, 85, 0.25);
  border: 1px rgba(255, 255, 255, 0.35) solid;
}
footer .footer_link a::after {
  transition: all 0.3s cubic-bezier(0.17, 0.67, 0.5, 1.16);
  position: absolute;
  top: 0;
  left: 0;
  transition-duration: 0.5s;
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(45deg, rgb(0, 89, 117) 0%, rgb(74, 195, 206) 100%);
  opacity: 0.1;
}
footer .footer_link a:hover::after, footer .footer_link a:active::after {
  width: 100%;
}
footer .footer_cp {
  font-size: 0.75rem;
}

.flexbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}

#mv {
  position: relative;
  height: 100vh;
  min-height: 800px;
  color: #fff;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#mv .inner {
  position: relative;
  height: 100%;
}
#mv .mov {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#mv .mov .mov_cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5) url(../img/bg_ptn01.png);
}
#mv .mov video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
#mv .grdline {
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, #005975, #d1f598);
  background-size: 400% 400%;
  animation: grdanm2 10s ease infinite;
}
@keyframes grdanm2 {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
#mv .mv_txt {
  position: absolute;
  top: 45%;
  left: 55px;
  max-width: 720px;
  line-height: 2.2em;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}
#mv .mv_txt .mv_txt_1 {
  font-family: "Amiri", serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 0.5em;
  font-size: 4.8rem;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

#bussiness {
  background: #005975;
  color: #fff;
}
#bussiness .flexbox > div {
  width: 50%;
  margin: 0;
  padding: 50px 0;
  text-align: center;
}
#bussiness .flexbox .bizbox {
  padding: 37.5px 0;
}
#bussiness .flexbox .bizbox .title {
  margin: auto;
  margin-bottom: 25px;
  font-size: 1.25rem;
  font-weight: 500;
}
#bussiness .flexbox .bizbox .title span {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  color: #fefefe;
  font-size: 0.9rem;
  font-weight: 400;
}
#bussiness .flexbox .bizbox p {
  margin: 0 50px;
  color: #A5BDC5;
  font-size: 0.9rem;
  font-weight: 300;
}
#bussiness .flexbox .bizimg {
  padding: 25px 0;
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(249, 249, 249) 100%);
}
#bussiness .flexbox .bizimg img {
  max-height: 200px;
}

#logotopics .slider {
  overflow: hidden;
  display: flex;
}
#logotopics .slider ul {
  display: flex;
  animation: scrollAnimation 60s infinite linear 0.5s both;
}
#logotopics .slider ul li {
  display: block;
}
#logotopics .slider ul li a {
  display: block;
  width: 20vw;
}
#logotopics .bottom {
  padding: 50px;
  background: #0C2C36;
}
#logotopics .bottom .button {
  transition-duration: 0.1s;
  display: block;
  max-width: 600px;
  margin: auto;
  padding: 25px;
  font-size: 1.5rem;
  font-weight: 500;
}
#logotopics .bottom .button span {
  display: block;
  padding-top: 0.5em;
  font-size: 0.8rem;
  font-weight: 400;
}
#logotopics .bottom .button:link, #logotopics .bottom .button:visited {
  color: #fff;
  background: #011C24;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.35);
}
#logotopics .bottom .button:link span, #logotopics .bottom .button:visited span {
  color: #A1A7A8;
}
#logotopics .bottom .button:hover, #logotopics .bottom .button:active {
  color: #A1A7A8;
  background: #020d11;
  box-shadow: inset 3px 2px 6px 0 rgba(0, 0, 0, 0.75);
}
#logotopics .bottom .button:hover span, #logotopics .bottom .button:active span {
  color: #757b7c;
}

@keyframes scrollAnimation {
  from {
    translate: 0;
  }
  to {
    translate: -100%;
  }
}
article .flexbox {
  margin-bottom: 0;
  padding: 0;
}
article .flexbox .works_box {
  width: 40%;
  margin: 5%;
  margin-top: 0;
  text-align: center;
}
article .flexbox .works_box p {
  text-align: left;
}
article .flexbox .works_box .img {
  margin-bottom: 1em;
  text-align: center;
}
article .flow {
  position: relative;
  text-align: center;
}
article .flow::before {
  position: absolute;
  left: 50%;
  content: "";
  width: 1px;
  height: 100%;
  background: #B9C3C6;
}
article .flow .flow_box {
  position: relative;
  max-width: 900px;
  margin: auto;
  margin-bottom: 50px;
  padding: 37.5px;
  padding-left: 80px;
  text-align: left;
  background: #fff;
}
article .flow .flow_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 100%;
  background: #005975;
}
article .flow .flow_box::after {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  width: 50px;
  color: #fff;
  font-size: 2.25rem;
  font-weight: 200;
  text-align: center;
}
article .flow .flow_box:nth-of-type(1)::after {
  content: "1";
}
article .flow .flow_box:nth-of-type(2)::after {
  content: "2";
}
article .flow .flow_box:nth-of-type(3)::after {
  content: "3";
}
article .flow .flow_box:nth-of-type(4)::after {
  content: "4";
}
article .flow .flow_box:nth-of-type(5)::after {
  content: "5";
}
article .flow .flow_box:nth-of-type(6)::after {
  content: "6";
}
article .flow .flow_box:nth-of-type(7)::after {
  content: "7";
}
article .flow .flow_box:nth-of-type(8)::after {
  content: "8";
}
article .flow .flow_box .title {
  display: block;
  min-width: auto;
  margin: 0;
  margin-bottom: 0.5em;
  font-size: 1.25rem;
  text-align: left;
}
article .flow .flow_box .title::before {
  display: none;
}
article .flow .flow_box .title::after {
  display: none;
}
article .PriceTable {
  margin-bottom: 25px;
  border: none;
}
article .PriceTable thead tr th {
  padding: 0.5em;
  color: #fff;
  font-weight: 400;
  border: none;
  background: #506D77;
}
article .PriceTable tbody tr th, article .PriceTable tbody tr td {
  border-color: #D2DBDE;
  background: #F8F8F8;
}
article .PriceTable tbody tr th {
  line-height: 1.35em;
  font-weight: normal;
  text-align: left;
}
article .PriceTable tbody tr th strong {
  display: block;
  margin-bottom: 0.25em;
  color: #005975;
  font-size: 1.05em;
  font-weight: bold;
}
article .PriceTable tbody tr td {
  text-align: center;
}
article .PriceTable tbody tr:nth-of-type(even) th, article .PriceTable tbody tr:nth-of-type(even) td {
  background: #EFEFEF;
}

article .mailform table {
  max-width: 900px;
  margin: auto;
  margin-bottom: 50px;
  border: none;
  background: none;
}
article .mailform table th, article .mailform table td {
  padding: 37.5px 12.5px;
  font-weight: 500;
  border: none;
  background: none;
}
article .mailform table tr:nth-of-type(odd) th, article .mailform table tr:nth-of-type(odd) td {
  background: none;
}
article .mailform table th {
  width: 30%;
  font-weight: 400;
  text-align: right;
}
article .mailform table td input, article .mailform table td textarea {
  width: 95%;
  padding: 0.9em 0.75em;
  background: #fff;
  border: #707070 1px solid;
}
article .mailform table td select {
  min-width: 300px;
  padding: 0.75em;
  background: #fff;
  border: #707070 1px solid;
}
article .mailform table td textarea {
  height: 150px;
}
article .mailform .submit {
  text-align: center;
}
article .mailform .submit input {
  transition: all 0.5s ease-in;
  transition-duration: 0.2s;
  width: 80%;
  max-width: 500px;
  height: 80px;
  color: #fff;
  font-size: 1.5rem;
  background: #005975;
  border: none;
  cursor: pointer;
}
article .mailform .submit input:hover {
  background: #219fc9;
}
article .req {
  color: #D12424;
  font-size: 0.8em;
}

article .ArchControls {
  padding: 12.5px 50px;
  background: #E1E6E9;
}
article .ArchControls div {
  margin-bottom: 0;
}
article .ArchControls .SearchForm {
  color: #005975;
  font-size: 0.9rem;
}
article .ArchControls .SearchForm input {
  height: 30px;
  margin: 0 0.5em;
  padding: 0 0.5em;
  color: #005975;
  border: none;
}
article .ArchControls .SearchForm input[type=text] {
  width: 150px;
}
article .ArchControls .SearchForm input[type=date] {
  width: 100px;
}
article .ArchControls .SearchForm input[type=submit] {
  transition: all 0.5s ease-in;
  transition-duration: 0.1s;
  width: 100px;
  color: #fff;
  background: #005975;
  cursor: pointer;
}
article .ArchControls .SearchForm input[type=submit]:hover {
  background-color: #219fc9;
}
article .ArchControls .SearchForm label {
  margin: 0 0.5em;
}
article .ArchControls .SearchForm select {
  position: relative;
  padding: 0 0.5em;
  height: 30px;
  padding-right: 40px;
  color: #005975;
  background: #fff;
  border: none;
}
article .ArchControls .switcher {
  display: flex;
  justify-content: right;
}
article .ArchControls .switcher img {
  width: 30px;
  cursor: pointer;
}
article .ArchControls .switcher p {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  margin-left: 7.5px;
}
article .ArchControls .switcher p::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  opacity: 0;
  cursor: pointer;
}
article .ArchControls .switcher p.on::after {
  opacity: 1;
}
article .ArchControls .switcher #swcList::after {
  content: url(../img/swclist_on.svg);
}
article .ArchControls .switcher #swcBlock::after {
  content: url(../img/swcblock_on.svg);
}
article #LogoArchive .inner .logobox {
  position: relative;
  display: flex;
  max-width: 900px;
  margin: auto;
  margin-bottom: 25px;
}
article #LogoArchive .inner .logobox .logobox_thmb {
  max-width: 200px;
  margin-right: 50px;
}
article #LogoArchive .inner .logobox .logobox_inf {
  padding: 0;
  padding-top: 6%;
  color: #343434;
}
article #LogoArchive .inner .logobox .logobox_inf .logobox_name {
  margin-bottom: 22.5px;
  text-align: left;
}
article #LogoArchive .inner .logobox .logobox_inf .logobox_name::before, article #LogoArchive .inner .logobox .logobox_inf .logobox_name::after {
  display: none;
}
article #LogoArchive .inner .logobox .logobox_inf .logobox_name a {
  transition-duration: 0.1s;
}
article #LogoArchive .inner .logobox .logobox_inf .logobox_name a:link, article #LogoArchive .inner .logobox .logobox_inf .logobox_name a:visited {
  color: #005975;
}
article #LogoArchive .inner .logobox .logobox_inf .logobox_name a:hover, article #LogoArchive .inner .logobox .logobox_inf .logobox_name a:active {
  color: #219fc9;
}
article #LogoArchive .inner .logobox .logobox_inf .logobox_desc {
  margin-bottom: 12.5px;
  padding: 0;
}
article #LogoArchive .inner .logobox .logobox_inf .logobox_desc p {
  line-height: 1.5em;
}
article #LogoArchive .inner .logobox .logobox_inf .logobox_tags a {
  transition-duration: 0.15s;
  display: inline-block;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  padding: 0.5em 0.75em;
  padding-top: 0.45em;
  line-height: 1em;
  font-size: 0.8rem;
  border-radius: 3px;
}
article #LogoArchive .inner .logobox .logobox_inf .logobox_tags a:link, article #LogoArchive .inner .logobox .logobox_inf .logobox_tags a:visited {
  color: #fff;
  background: #005975;
}
article #LogoArchive .inner .logobox .logobox_inf .logobox_tags a:hover, article #LogoArchive .inner .logobox .logobox_inf .logobox_tags a:active {
  color: #fff;
  background: #219fc9;
}
article #LogoArchive.block .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
article #LogoArchive.block .inner .logobox {
  overflow: hidden;
  position: relative;
  display: block;
  width: 25%;
  max-width: 300px;
  padding: 0;
}
article #LogoArchive.block .inner .logobox .logobox_thmb {
  max-width: 300px;
  margin-right: 0;
}
article #LogoArchive.block .inner .logobox .logobox_inf {
  transition: all 0.3s cubic-bezier(0.17, 0.67, 0.5, 1.16);
  transition-duration: 0.2s;
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
}
article #LogoArchive.block .inner .logobox .logobox_inf .logobox_name {
  margin: 0;
  padding: 0.5em 0.75em;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 400;
  text-align: center;
}
article #LogoArchive.block .inner .logobox .logobox_inf .logobox_name a {
  transition-duration: 0.1s;
}
article #LogoArchive.block .inner .logobox .logobox_inf .logobox_name a:link, article #LogoArchive.block .inner .logobox .logobox_inf .logobox_name a:visited, article #LogoArchive.block .inner .logobox .logobox_inf .logobox_name a:hover, article #LogoArchive.block .inner .logobox .logobox_inf .logobox_name a:active {
  color: #005975;
}
article #LogoArchive.block .inner .logobox .logobox_inf .logobox_desc {
  display: none;
}
article #LogoArchive.block .inner .logobox .logobox_inf .logobox_tags {
  display: none;
}
article #LogoArchive.block .inner .logobox:hover .logobox_inf {
  bottom: 0;
}
article #LogoArchive .msg404 {
  padding: 50px 0;
  text-align: center;
}
article .pagenavi {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  font-weight: 300;
  text-align: center;
  line-height: 1em;
}
article .pagenavi a, article .pagenavi span {
  display: inline-block;
  margin: 0 0.1em;
}
article .pagenavi span {
  min-width: 30px;
  height: 26px;
  padding: 10px;
  padding-top: 14px;
  color: #fff;
  background: #005975;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
article .pagenavi span.dots {
  padding-left: 0;
  padding-right: 0;
  color: #ccc;
  background: none;
}
article .pagenavi a {
  transition-duration: 0.2s;
  min-width: 30px;
  height: 26px;
  padding: 10px;
  padding-top: 14px;
}
article .pagenavi a:link, article .pagenavi a:visited {
  color: #fff;
  background: #D1DADC;
}
article .pagenavi a:hover, article .pagenavi a:active {
  color: #fff;
  background: #005975;
}

article .singleHeader {
  padding: 50px 0;
}
article .singleHeader .singleHeader_title {
  max-width: 900px;
  margin: auto;
  margin-bottom: 50px;
  color: #2E4147;
}
article .singleHeader .singleHeader_title::before {
  top: -40px;
  left: -80px;
  content: url(../img/singleHeader_title_pict01.svg);
  width: 40px;
}
article .singleHeader .singleHeader_title::after {
  bottom: 0;
  right: -80px;
  content: url(../img/singleHeader_title_pict02.svg);
  width: 40px;
}
article .singleHeader .singleHeader_title span {
  display: block;
  padding: 0.5em 0;
  color: #9B9B9B;
  font-size: 0.9rem;
  font-weight: 500;
}
article .tags a {
  transition-duration: 0.15s;
  display: inline-block;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  padding: 0.5em 0.75em;
  padding-top: 0.45em;
  line-height: 1em;
  font-size: 0.8rem;
  border-radius: 3px;
}
article .tags a:link, article .tags a:visited {
  color: #fff;
  background: #005975;
}
article .tags a:hover, article .tags a:active {
  color: #fff;
  background: #219fc9;
}
article .returnBtn {
  transition-duration: 0.2s;
  display: block;
  max-width: 400px;
  margin: auto;
  padding: 12.5px;
}
article .returnBtn:link, article .returnBtn:visited {
  color: #fff;
  background: #005975;
}
article .returnBtn:hover, article .returnBtn:active {
  color: #fff;
  background: #219fc9;
}

#sp_menu {
  transition: all 0.3s cubic-bezier(0.17, 0.67, 0.5, 1.16);
  position: fixed;
  top: 0;
  right: -100vw;
  width: 100%;
  height: 100%;
  color: #fff;
  background: #005975;
  opacity: 0;
  z-index: 9000;
}
#sp_menu.on {
  right: 0;
  opacity: 0.98;
}
#sp_menu ul {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1em;
}
#sp_menu ul li a {
  transition-duration: 0.1s;
  display: block;
  padding: 1.75em;
}
#sp_menu ul li a:link, #sp_menu ul li a:visited {
  color: #fff;
}
#sp_menu ul li a:hover, #sp_menu ul li a:active {
  color: #fff;
  opacity: 0.8;
}

#sp_menu_btn {
  transition: all 0.3s cubic-bezier(0.17, 0.67, 0.5, 1.16);
  position: fixed;
  top: 37.5px;
  right: 25px;
  width: 50px;
  height: 50px;
  z-index: 9999;
}
#sp_menu_btn span {
  transition: all 0.3s cubic-bezier(0.17, 0.67, 0.5, 1.16);
  transition-duration: 0.3s;
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: #fff;
}
#sp_menu_btn span:nth-of-type(1) {
  top: 0;
}
#sp_menu_btn span:nth-of-type(2) {
  top: 15px;
}
#sp_menu_btn span:nth-of-type(3) {
  top: 30px;
}
#sp_menu_btn.on span:nth-of-type(1) {
  top: 0;
  rotate: 215deg;
  opacity: 0;
}
#sp_menu_btn.on span:nth-of-type(2) {
  top: 15px;
  rotate: -215deg;
}
#sp_menu_btn.on span:nth-of-type(3) {
  top: 15px;
  rotate: 215deg;
}

@media screen and (min-width: 801px) {
  .pc {
    display: inherit;
  }
  .sp {
    display: none;
  }
  #sp_menu, #sp_menu_btn {
    display: none;
  }
  article .center_pc {
    text-align: center;
  }
  article .left_pc {
    text-align: left;
  }
  article .right_pc {
    text-align: right;
  }
  article .subtxt_pc {
    font-size: 0.9em;
    line-height: 1.5em;
  }
  article .w5p_pc {
    width: 5%;
  }
  article .w10p_pc {
    width: 10%;
  }
  article .w15p_pc {
    width: 15%;
  }
  article .w20p_pc {
    width: 20%;
  }
  article .w25p_pc {
    width: 25%;
  }
  article .w30p_pc {
    width: 30%;
  }
  article .w35p_pc {
    width: 35%;
  }
  article .w40p_pc {
    width: 40%;
  }
  article .w45p_pc {
    width: 45%;
  }
  article .w50p_pc {
    width: 50%;
  }
  article .w55p_pc {
    width: 55%;
  }
  article .w60p_pc {
    width: 60%;
  }
  article .w65p_pc {
    width: 65%;
  }
  article .w70p_pc {
    width: 70%;
  }
  article .w75p_pc {
    width: 75%;
  }
  article .w80p_pc {
    width: 80%;
  }
  article .w85p_pc {
    width: 85%;
  }
  article .w90p_pc {
    width: 90%;
  }
  article .w95p_pc {
    width: 95%;
  }
  article .w100p_pc {
    width: 100%;
  }
  article .mb0_pc {
    margin-bottom: 0;
  }
  article .mb_pc {
    margin-bottom: 50px;
  }
}/*# sourceMappingURL=core.css.map */