@charset "UTF-8";
/* CSS Document */
/*==================================================
Foundation
==================================================*/
/*--------------------------------------------------
Font
--------------------------------------------------*/
/*@font-face {
  font-family: '';
  font-weight: normal;
  src: url('../font/') format('');
  font-display: swap;
}*/
/*--------------------------------------------------
Media Query
--------------------------------------------------*/
.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

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

/*--------------------------------------------------
Base
--------------------------------------------------*/
*, ::before, ::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "小塚ゴシック Pr6N", KozGoStd, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1em;
  font-weight: bold;
  line-height: 1.7;
  color: #000;
  position: relative;
  word-wrap: break-word;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 0.8125rem;
  }
}
body.is-fixed {
  overflow: hidden;
  height: 100%;
}

#container {
  background-color: #f4f9ff;
  min-width: 1300px;
}
@media screen and (max-width: 768px) {
  #container {
    min-width: 320px;
  }
}

a {
  text-decoration: none;
  word-break: break-word;
  color: inherit;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  margin: 0;
}

address {
  font-style: normal;
}

small {
  font-size: 100%;
}

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

input, select, textarea {
  font-size: 16px !important;
}

button {
  background-color: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
}

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

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

video {
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/*==================================================
Layout
==================================================*/
/*--------------------------------------------------
Header
--------------------------------------------------*/
.header h1 {
  background-color: #1e4b88;
  color: #fff;
  font-size: 21px;
  font-weight: normal;
  padding: 18px 4%;
}
@media screen and (max-width: 768px) {
  .header h1 {
    font-size: 16px;
    text-align: center;
    padding: 10px 4%;
  }
}
.header h1 a {
  display: block;
}
.header h1 .small {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .header h1 .small {
    display: block;
    font-size: 13px;
  }
}

/*--------------------------------------------------
Footer
--------------------------------------------------*/
.footer {
  background-color: #1e4b88;
  color: #fff;
  padding: 60px 4% 40px;
}
@media screen and (max-width: 768px) {
  .footer {
    font-size: 13px;
    margin-bottom: 75px;
    padding: 40px 4% 20px;
  }
}
.footer .inner {
  max-width: 1800px;
  margin: 0 auto;
}
.footer .address {
  font-size: 16px;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .footer .address {
    font-size: 13px;
    margin-bottom: 30px;
  }
}
.footer .bnr-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .footer .bnr-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    margin-bottom: 30px;
  }
}
.footer .bnr-list > li a:hover {
  opacity: 0.7;
}
.footer .copyright {
  font-size: 12px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer .copyright {
    font-size: 11px;
  }
}

.pagetop {
  position: fixed;
  z-index: 9;
  right: 50px;
  bottom: 50px;
}
@media screen and (max-width: 768px) {
  .pagetop {
    right: 10px;
    bottom: 10px;
  }
}

/*--------------------------------------------------
Main
--------------------------------------------------*/
.pagehead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 4%;
}
.pagehead .pagettl {
  font-size: 52px;
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .pagehead .pagettl {
    font-size: 26px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .pagehead .pagettl img {
    max-height: 50px;
  }
}

.breadcrumb {
  padding: 30px 4% 90px;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    padding: 10px 4% 40px;
  }
}
.breadcrumb .breadcrumb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 1300px;
  margin: 0 auto;
}
.breadcrumb .breadcrumb-list > li {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .breadcrumb .breadcrumb-list > li {
    font-size: 12px;
  }
}
.breadcrumb .breadcrumb-list > li::after {
  content: ">";
  margin: 0 5px;
}
.breadcrumb .breadcrumb-list > li:last-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 14em;
}
.breadcrumb .breadcrumb-list > li:last-child::after {
  display: none;
}
.breadcrumb .breadcrumb-list > li a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------
Side
--------------------------------------------------*/
.side-fixed {
  display: block;
  position: fixed;
  z-index: 9;
  top: 45px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .side-fixed {
    display: none;
  }
}
.side-fixed a:hover {
  opacity: 0.7;
}

.side-fixed-sp {
  display: none;
  background-color: #fff;
  text-align: center;
  padding: 10px 4%;
  position: fixed;
  z-index: 9;
  right: 0;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .side-fixed-sp {
    display: block;
  }
}
.side-fixed-sp a:hover {
  opacity: 0.7;
}
.side-fixed-sp img {
  max-height: 55px;
}

/*==================================================
Object
==================================================*/
/*--------------------------------------------------
Component
--------------------------------------------------*/
.c-section {
  padding: 0 4% 100px;
}
@media screen and (max-width: 768px) {
  .c-section {
    padding: 0 4% 50px;
  }
}
.c-section:last-child {
  padding-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .c-section:last-child {
    padding-bottom: 75px;
  }
}

.c-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.c-heading {
  font-size: 38px;
  text-align: center;
  margin-bottom: 1em;
  padding-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-heading {
    font-size: 18px;
    padding-bottom: 10px;
  }
}
.c-heading::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  margin: auto;
  background-color: #dd3333;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .c-heading::after {
    width: 45px;
    height: 2px;
  }
}

.c-tbl-wrap table tr {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.c-tbl-wrap table th, .c-tbl-wrap table td {
  padding: 1em 2em;
}
@media screen and (max-width: 768px) {
  .c-tbl-wrap table th, .c-tbl-wrap table td {
    padding: 1em;
  }
}
.c-tbl-wrap table th {
  background-color: #e6f0fc;
  text-align: left;
  width: 300px;
}
@media screen and (max-width: 768px) {
  .c-tbl-wrap table th {
    width: 120px;
  }
}
.c-tbl-wrap table a {
  text-decoration: underline;
  color: #dd3333;
}
.c-tbl-wrap table a:hover {
  text-decoration: none;
}

.c-btn {
  max-width: 320px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-btn {
    max-width: 275px;
  }
}
.c-btn a {
  display: block;
  background-color: #202020;
  border: 1px solid #202020;
  border-radius: 0;
  color: #fff;
  font-size: 15px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .c-btn a {
    font-size: 13px;
  }
}
.c-btn a:hover {
  opacity: 0.7;
}

/*--------------------------------------------------
Form
--------------------------------------------------*/
.form table tr {
  border-top: 1px solid #c7c7c7;
  border-bottom: 1px solid #c7c7c7;
}
.form table th, .form table td {
  padding: 20px 30px;
}
@media screen and (max-width: 768px) {
  .form table th, .form table td {
    display: block;
    padding: 10px;
  }
}
.form table th {
  background-color: #e6f0fc;
  text-align: left;
  width: 300px;
}
@media screen and (max-width: 768px) {
  .form table th {
    width: auto;
  }
}
.form .required {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
  background-color: #ed432d;
  border-radius: 6px;
  color: #fff;
  font-size: 9px;
  font-weight: normal;
  margin-left: 1em;
  padding: 1px 6px;
}
.form .col-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.form .row-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.form label {
  cursor: pointer;
}
.form [type=text], .form [type=email], .form [type=tel] {
  background-color: #fff;
  border: 1px solid #c7c7c7;
  max-width: 300px;
  width: 100%;
  min-height: 40px;
  padding: 10px;
}
.form [type=number] {
  background-color: #fff;
  border: 1px solid #c7c7c7;
  max-width: 60px;
  width: 100%;
  min-height: 40px;
  padding: 10px;
}
.form select {
  border: 1px solid #c7c7c7;
  padding: 10px;
}
.form textarea {
  background-color: #fff;
  border: 1px solid #c7c7c7;
  max-width: 650px;
  width: 100%;
  height: 120px;
  padding: 10px;
}
.form ::-webkit-input-placeholder {
  color: #ccc;
}
.form ::-moz-placeholder {
  color: #ccc;
}
.form :-ms-input-placeholder {
  color: #ccc;
}
.form ::-ms-input-placeholder {
  color: #ccc;
}
.form ::placeholder {
  color: #ccc;
}
.form .privacy {
  margin: 2em 0;
}
.form .privacy .privacy-head {
  background-color: #e6f0fc;
  border-top: 1px solid #c7c7c7;
  border-bottom: 1px solid #c7c7c7;
  font-weight: bold;
  text-align: center;
  padding: 20px 30px;
}
@media screen and (max-width: 768px) {
  .form .privacy .privacy-head {
    padding: 10px;
  }
}
.form .privacy .privacy-body {
  border-bottom: 1px solid #c7c7c7;
  height: 240px;
  padding: 20px 30px;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  .form .privacy .privacy-body {
    height: 200px;
    padding: 10px;
  }
}
.form .privacy dl div {
  margin: 2em 0;
}
.form .privacy dl dt {
  font-weight: bold;
}
.form .agree {
  text-align: center;
  margin: 2em 0;
}
.form .btn {
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .form .btn {
    max-width: 275px;
  }
}
.form .btn button, .form .btn input {
  background-color: #1e4b88;
  border: 1px solid #1e4b88;
  border-radius: 99px;
  color: #fff;
  font-size: 15px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .form .btn button, .form .btn input {
    font-size: 13px;
  }
}
.form .btn button:hover, .form .btn input:hover {
  opacity: 0.7;
}

/*--------------------------------------------------
Pagination
--------------------------------------------------*/
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.2em;
  line-height: 1;
  padding: 2em 0;
}
.pagination .pagination-last,
.pagination .pagination-first,
.pagination .pagination-next,
.pagination .pagination-prev,
.pagination .pagination-item a,
.pagination .is-current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  text-decoration: none;
  background-color: #e6f0fc;
  border: 1px solid #e6f0fc;
  border-radius: 50%;
  min-width: 40px;
  min-height: 40px;
  padding: 0.5em 0.5em;
  margin: 0 0.2em;
}
.pagination .pagination-last:hover:not(li),
.pagination .pagination-first:hover:not(li),
.pagination .pagination-next:hover:not(li),
.pagination .pagination-prev:hover:not(li),
.pagination .pagination-item a:hover:not(li),
.pagination .is-current:hover:not(li) {
  background: #1e4b88;
  color: #fff;
}
.pagination .pagination-list {
  display: none;
}
@media (min-width: 520px) {
  .pagination .pagination-list {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
}
@media (min-width: 960px) {
  .pagination .pagination-list {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media (min-width: 520px) {
  .pagination .is-current {
    background: #1e4b88;
    border: 1px solid #1e4b88;
    color: #fff;
    font-weight: bold;
  }
}
.pagination .pagination-page {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  border: 1px solid #ccc;
  padding: 1em;
}
@media (min-width: 520px) {
  .pagination .pagination-page {
    display: none;
  }
}
.pagination .pagination-prev {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (min-width: 520px) {
  .pagination .pagination-prev {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (min-width: 960px) {
  .pagination .pagination-prev {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.pagination .pagination-next {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media (min-width: 520px) {
  .pagination .pagination-next {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media (min-width: 960px) {
  .pagination .pagination-next {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
.pagination .pagination-first {
  display: none;
}
@media (min-width: 960px) {
  .pagination .pagination-first {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    display: block;
  }
}
.pagination .pagination-last {
  display: none;
}
@media (min-width: 960px) {
  .pagination .pagination-last {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    display: block;
  }
}

.pagenav {
  padding: 2em 0;
}
.pagenav .pagenav-list {
  background-color: #e6f0fc;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 4%;
  padding: 20px 30px;
}
@media screen and (max-width: 768px) {
  .pagenav .pagenav-list {
    padding: 10px 20px;
  }
}
.pagenav .pagenav-list > li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .pagenav .pagenav-list > li {
    font-size: 13px;
  }
}
.pagenav .next {
  text-align: right;
}
.pagenav a {
  text-decoration: underline;
}
.pagenav a:hover {
  text-decoration: none;
}

/* Project
==================================================*/
/*--------------------------------------------------
top
--------------------------------------------------*/
.p-top .hero {
  position: relative;
}
.p-top .hero .img img {
  width: 100%;
}
.p-top .hero .btn {
  width: 44%;
  position: absolute;
  bottom: 14.1176470588%;
  left: 11.35%;
}
@media screen and (max-width: 768px) {
  .p-top .hero .btn {
    width: auto;
    margin: 0 auto;
    padding: 0 4%;
    top: 35.8095238095%;
    right: 0;
    bottom: auto;
    left: 0;
  }
}
.p-top .hero .btn a:hover {
  opacity: 0.7;
}

.p-top .section01 {
  background-color: #f4f9ff;
  padding: 150px 4% 120px;
}
@media screen and (max-width: 768px) {
  .p-top .section01 {
    padding: 75px 4% 60px;
  }
}
.p-top .section01 .inner {
  max-width: 1300px;
  margin: 0 auto;
}
.p-top .section01 .heading {
  font-size: 60px;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .heading {
    font-size: 26px;
  }
}
.p-top .section01 .heading .heading-in {
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .heading .jp img {
    max-height: 25px;
  }
}
.p-top .section01 .heading .en {
  position: absolute;
  z-index: -1;
  top: -65px;
  right: -168px;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .heading .en {
    width: 130px;
    top: auto;
    right: 0;
    bottom: 10px;
  }
}
.p-top .section01 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 35px 2.6923076923%;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .list {
    gap: 20px;
  }
}
.p-top .section01 .list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  background-color: #fff;
  border: 7px solid #cedbed;
  border-radius: 20px;
  font-size: 21px;
  width: 31.5384615385%;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .list > li {
    border-width: 3px;
    font-size: 1em;
    width: 100%;
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-top .section01 .list > li .img img {
    max-width: 65px;
    max-height: 65px;
  }
}
.p-top .section01 .list > li .cap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.p-top .section01 .list > li strong {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #fedd8b));
  background: linear-gradient(transparent 50%, #fedd8b 50%);
  color: #1e4b88;
}

.p-top .section02 {
  background-color: #f4f9ff;
  padding: 0 4% 150px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-top .section02 {
    padding-bottom: 60px;
    z-index: 0;
  }
}
.p-top .section02::before {
  content: "";
  display: block;
  background-image: url(../img/top/bg-circle01.png);
  background-repeat: no-repeat;
  width: 326px;
  height: 414px;
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: -130px;
}
@media screen and (max-width: 768px) {
  .p-top .section02::before {
    display: none;
  }
}
.p-top .section02 .inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
.p-top .section02 .heading {
  font-weight: bold;
  text-align: center;
  margin-bottom: -60px;
  padding: 0 4%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .heading {
    margin-bottom: -20px;
  }
}
.p-top .section02 .box {
  background-color: #fff8e7;
  border: 7px solid #fdbe21;
  border-radius: 30px;
  padding: 100px 50px 50px;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .box {
    border-width: 3px;
    padding: 20px;
  }
}
.p-top .section02 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top .section02 .list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-right: 1px solid #fdbe21;
  font-size: 21px;
  text-align: center;
  width: 324px;
  padding: 5px 50px;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .list > li {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    border: none;
    border-bottom: 1px solid #fdbe21;
    font-size: 1em;
    width: auto;
    padding: 20px 0;
  }
}
.p-top .section02 .list > li strong {
  color: #1e4b88;
}
.p-top .section02 .list > li .check {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .list > li .check {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 35px;
            flex: 0 0 35px;
    width: 35px;
    height: 35px;
    margin: 0;
  }
}
.p-top .section02 .list > li .cap {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .list > li .cap {
    margin: 0;
  }
}
.p-top .section02 .list > li .img {
  text-align: center;
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .list > li .img {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-top .section02 .list > li .img img {
    max-width: 50px;
    max-height: 50px;
  }
}
.p-top .section02 .list > li:last-child {
  border: none;
}

.p-top .section03 {
  background-color: #f4f9ff;
  padding: 0 4% 150px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .p-top .section03 {
    padding-bottom: 60px;
  }
}
.p-top .section03::before {
  content: "";
  display: block;
  background-image: url(../img/top/bg-circle02.png);
  background-repeat: no-repeat;
  width: 258px;
  height: 348px;
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: -110px;
}
@media screen and (max-width: 768px) {
  .p-top .section03::before {
    display: none;
  }
}
.p-top .section03::after {
  content: "";
  display: block;
  background-image: url(../img/top/bg-wave-blue.png);
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 472px;
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: -170px;
  left: 0;
}
.p-top .section03 .inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
.p-top .section03 .heading {
  font-size: 60px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .heading {
    font-size: 26px;
  }
}
.p-top .section03 .heading .heading-in {
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .heading .jp img {
    max-height: 25px;
  }
}
.p-top .section03 .heading .en {
  position: absolute;
  z-index: -1;
  top: -40px;
  right: -80px;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .heading .en {
    max-width: 80px;
    top: auto;
    right: 0;
    bottom: 10px;
  }
}
.p-top .section03 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 35px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .list {
    gap: 20px;
  }
}
.p-top .section03 .list::after {
  content: "";
  display: block;
  background-color: #1e4b88;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
  width: 300px;
  height: 110px;
  margin: 0 auto;
  position: absolute;
  right: 0;
  bottom: -550px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .list::after {
    width: 125px;
    height: 45px;
    bottom: -260px;
  }
}
.p-top .section03 .list > li {
  background-color: #fff;
  border: 7px solid #cedbed;
  border-radius: 20px;
  font-size: 21px;
  text-align: center;
  width: 380px;
  padding: 30px;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .list > li {
    border-width: 3px;
    font-size: 1em;
    position: static;
    width: 100%;
    padding: 20px;
  }
}
.p-top .section03 .list > li .under {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #fedd8b));
  background: linear-gradient(transparent 50%, #fedd8b 50%);
}
.p-top .section03 .list > li strong {
  color: #1e4b88;
}
.p-top .section03 .list > li:nth-child(1) {
  top: 0;
  left: 50px;
}
.p-top .section03 .list > li:nth-child(2) {
  top: 188px;
  left: 0;
}
.p-top .section03 .list > li:nth-child(3) {
  top: 0;
  right: 50px;
}
.p-top .section03 .list > li:nth-child(4) {
  top: 188px;
  right: 0;
}
.p-top .section03 .img {
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .img {
    max-width: 210px;
    margin: 40px auto 0;
  }
}

.p-top .section04 {
  background-color: #fff;
  padding: 150px 4% 250px;
}
@media screen and (max-width: 768px) {
  .p-top .section04 {
    padding: 60px 4% 100px;
  }
}
.p-top .section04 .inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
.p-top .section04 .heading {
  font-size: 60px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .heading {
    font-size: 26px;
  }
}
.p-top .section04 .heading .heading-in {
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .heading .jp img {
    max-height: 25px;
  }
}
.p-top .section04 .heading .en {
  position: absolute;
  z-index: -1;
  top: -50px;
  right: -134px;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .heading .en {
    max-width: 130px;
    top: auto;
    right: 0;
    bottom: 10px;
  }
}
.p-top .section04 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .list {
    gap: 20px;
  }
}
.p-top .section04 .list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 100px;
  background-color: #fff;
  border-radius: 30px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  font-size: 32px;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .list > li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    font-size: 1em;
    padding: 20px;
  }
}
.p-top .section04 .list > li .img img {
  border-radius: 20px;
}
.p-top .section04 .list > li .body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-top .section04 .list > li .point {
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .list > li .point {
    max-width: 100px;
  }
}
.p-top .section04 .list > li strong {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #fedd8b));
  background: linear-gradient(transparent 50%, #fedd8b 50%);
  color: #1e4b88;
}
.p-top .section04 .list > li:nth-child(even) .img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .list > li:nth-child(even) .img {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

.p-top .section05 {
  background-color: #f9f9f9;
  padding: 0 4% 150px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .p-top .section05 {
    padding-bottom: 60px;
  }
}
.p-top .section05::before {
  content: "";
  display: block;
  background-image: url(../img/top/bg-wave-gray.png);
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 472px;
  position: absolute;
  z-index: -1;
  right: 0;
  top: -170px;
  left: 0;
}
.p-top .section05::after {
  content: "";
  display: block;
  background-image: url(../img/top/bg-circle03.png);
  background-repeat: no-repeat;
  width: 327px;
  height: 453px;
  position: absolute;
  z-index: -1;
  top: 466px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-top .section05::after {
    display: none;
  }
}
.p-top .section05 .inner {
  max-width: 1300px;
  margin: 0 auto;
}
.p-top .section05 .heading {
  font-size: 60px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .heading {
    font-size: 26px;
  }
}
.p-top .section05 .heading .heading-in {
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .heading .jp img {
    max-height: 25px;
  }
}
.p-top .section05 .heading .en {
  position: absolute;
  z-index: -1;
  top: -35px;
  right: -72px;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .heading .en {
    max-width: 50px;
    top: auto;
    right: 0;
    bottom: 10px;
  }
}
.p-top .section05 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px 4.6153846154%;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-top .section05 .list > li {
  background-color: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  max-width: 390px;
  width: 30%;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .list > li {
    width: auto;
  }
}
.p-top .section05 .list > li .img img {
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .list > li .img img {
    height: auto;
  }
}
.p-top .section05 .list > li .body {
  font-size: 18px;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .list > li .body {
    font-size: 1em;
    padding: 20px;
  }
}

.p-top .section06 {
  background-color: #f9f9f9;
  padding: 0 4% 150px;
}
@media screen and (max-width: 768px) {
  .p-top .section06 {
    padding-bottom: 60px;
  }
}
.p-top .section06 .inner {
  max-width: 1300px;
  margin: 0 auto;
}
.p-top .section06 .heading {
  font-size: 60px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-top .section06 .heading {
    font-size: 26px;
  }
}
.p-top .section06 .heading .heading-in {
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .p-top .section06 .heading .jp img {
    max-height: 25px;
  }
}
.p-top .section06 .heading .en {
  position: absolute;
  z-index: -1;
  top: -34px;
  right: -97px;
}
@media screen and (max-width: 768px) {
  .p-top .section06 .heading .en {
    max-width: 68px;
    top: auto;
    right: 0;
    bottom: 10px;
  }
}
.p-top .section06 .box {
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  font-size: 18px;
  margin-bottom: 40px;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .p-top .section06 .box {
    font-size: 1em;
    margin-bottom: 20px;
    padding: 20px;
  }
}
.p-top .section06 .article {
  border-bottom: 1px solid #c7c7c7;
}
.p-top .section06 .article a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  padding: 30px 14px 30px 40px;
  background-image: url(../img/common/list-style.png);
  background-repeat: no-repeat;
  background-position: top 36px left 15px;
}
@media screen and (max-width: 768px) {
  .p-top .section06 .article a {
    display: block;
    background-size: 11px;
    background-position: top 15px left;
    padding: 10px 0 10px 15px;
  }
}
.p-top .section06 .article a:hover {
  opacity: 0.7;
}
.p-top .section06 .article .time {
  font-weight: bold;
  color: #1e4b88;
}
.p-top .section06 .article .ttl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-top .section06 .article:last-child {
  border: none;
}
.p-top .section06 .btn {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top .section06 .btn {
    max-width: 378px;
    width: 80%;
    margin: 0 auto;
  }
}
.p-top .section06 .btn a:hover {
  opacity: 0.7;
}

.p-top .section07 {
  background-color: #f9f9f9;
  padding: 0 4% 120px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .p-top .section07 {
    padding-bottom: 60px;
  }
}
.p-top .section07::before {
  content: "";
  display: block;
  background-image: url(../img/top/bg-circle04.png);
  background-repeat: no-repeat;
  width: 273px;
  height: 372px;
  position: absolute;
  z-index: -1;
  top: -30px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-top .section07::before {
    display: none;
  }
}
.p-top .section07 .inner {
  max-width: 1300px;
  margin: 0 auto;
}
.p-top .section07 .heading {
  font-size: 60px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-top .section07 .heading {
    font-size: 26px;
  }
}
.p-top .section07 .heading .heading-in {
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .p-top .section07 .heading .jp img {
    max-height: 25px;
  }
}
.p-top .section07 .heading .en {
  position: absolute;
  z-index: -1;
  top: -30px;
  right: -48px;
}
@media screen and (max-width: 768px) {
  .p-top .section07 .heading .en {
    max-width: 40px;
    top: auto;
    right: 0;
    bottom: 10px;
  }
}
.p-top .section07 dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-top .section07 dl {
    gap: 20px;
    margin-bottom: 50px;
  }
}
.p-top .section07 dl div {
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  font-size: 18px;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .p-top .section07 dl div {
    font-size: 1em;
    padding: 20px;
  }
}
.p-top .section07 dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #c7c7c7;
  font-weight: bold;
  color: #1e4b88;
  padding: 20px 5px;
}
@media screen and (max-width: 768px) {
  .p-top .section07 dl dt {
    padding: 10px 0;
  }
}
.p-top .section07 dl dt::before {
  content: "Q";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #1e4b88;
  border-radius: 50%;
  color: #fff;
  font-size: 21px;
  font-weight: bold;
  width: 40px;
  height: 40px;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .p-top .section07 dl dt::before {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30px;
            flex: 0 0 30px;
    font-size: 16px;
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
}
.p-top .section07 dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 5px;
}
@media screen and (max-width: 768px) {
  .p-top .section07 dl dd {
    padding: 10px 0;
  }
}
.p-top .section07 dl dd::before {
  content: "A";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fdbe21;
  border-radius: 50%;
  color: #fff;
  font-size: 21px;
  font-weight: bold;
  width: 40px;
  height: 40px;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .p-top .section07 dl dd::before {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30px;
            flex: 0 0 30px;
    font-size: 16px;
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
}
.p-top .section07 .btn {
  text-align: center;
}
.p-top .section07 .btn a:hover {
  opacity: 0.7;
}

/*--------------------------------------------------
topics
--------------------------------------------------*/
.topics-pagecontent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto 150px;
}
@media screen and (max-width: 768px) {
  .topics-pagecontent {
    display: block;
    padding: 0 4%;
  }
}
.topics-pagecontent .pagecontent-right {
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  border-radius: 50px;
  width: 940px;
  padding: 60px;
}
@media screen and (max-width: 768px) {
  .topics-pagecontent .pagecontent-right {
    border-radius: 20px;
    width: auto;
    padding: 20px;
  }
}
.topics-pagecontent .pagecontent-left {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: 300px;
}

.topics-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .topics-side {
    display: none;
  }
}
.topics-side .side-box {
  border-radius: 20px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.topics-side .side-box .head {
  background-color: #1e4b88;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding: 15px 20px;
}
.topics-side .side-box .body {
  background-color: #fff;
  padding: 20px;
}
.topics-side .side-box table th, .topics-side .side-box table td {
  text-align: center;
  padding: 3px;
}
.topics-side .side-box table a {
  text-decoration: underline;
  color: #1e4b88;
}
.topics-side .side-box table a:hover {
  text-decoration: none;
}
.topics-side .side-box .list > li {
  border-bottom: 1px solid #c7c7c7;
  font-size: 15px;
}
.topics-side .side-box .list > li a {
  display: block;
  padding: 15px 6px 15px 22px;
  position: relative;
}
.topics-side .side-box .list > li a::before {
  content: "";
  display: block;
  background-color: #202020;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
  width: 6px;
  height: 6px;
  position: absolute;
  top: 26px;
  left: 6px;
}
.topics-side .side-box .list > li a:hover {
  opacity: 0.7;
}
.topics-side .side-box .list > li:first-child {
  border-top: 1px solid #c7c7c7;
}
.topics-side .side-box select {
  font-size: 15px;
  width: 100%;
  padding: 10px;
}

.p-topics .section01 .heading {
  font-size: 30px;
  font-weight: bold;
  color: #1e4b88;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-topics .section01 .heading {
    font-size: 16px;
  }
}
.p-topics .section01 .list {
  border-top: 1px solid #c7c7c7;
}
.p-topics .section01 .article {
  border-bottom: 1px solid #c7c7c7;
}
.p-topics .section01 .article a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  padding: 30px 14px 30px 40px;
  background-image: url(../img/common/list-style.png);
  background-repeat: no-repeat;
  background-position: top 36px left 15px;
}
@media screen and (max-width: 768px) {
  .p-topics .section01 .article a {
    display: block;
    background-size: 11px;
    background-position: top 25px left;
    padding: 20px 0 20px 15px;
  }
}
.p-topics .section01 .article a:hover {
  opacity: 0.7;
}
.p-topics .section01 .article .time {
  font-weight: bold;
  color: #1e4b88;
}
.p-topics .section01 .article .ttl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: bold;
}

/*--------------------------------------------------
topics(single)
--------------------------------------------------*/
.p-topics-s .section01 .ttl {
  font-size: 24px;
  font-weight: bold;
  color: #1e4b88;
  border-bottom: 1px solid #c7c7c7;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-topics-s .section01 .ttl {
    font-size: 16px;
    padding-bottom: 10px;
  }
}
.p-topics-s .section01 .cat {
  text-align: right;
  margin: 1em 0 2em;
}
@media screen and (max-width: 768px) {
  .p-topics-s .section01 .cat {
    margin-bottom: 1em;
  }
}
.p-topics-s .section01 .foot {
  border-top: 1px solid #c7c7c7;
  text-align: right;
  margin-top: 50px;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .p-topics-s .section01 .foot {
    margin-top: 20px;
    padding: 10px 0;
  }
}

/*--------------------------------------------------
contact
--------------------------------------------------*/
.pagecontent-box {
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  border-radius: 50px;
  padding: 60px 100px;
}
@media screen and (max-width: 768px) {
  .pagecontent-box {
    border-radius: 20px;
    padding: 20px;
  }
}

.p-form .section01 .lead {
  text-align: center;
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .p-form .section01 .lead {
    text-align: left;
  }
}

/*--------------------------------------------------
thanks
--------------------------------------------------*/
.p-thanks .section01 .lead {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-thanks .section01 .lead {
    text-align: left;
  }
}/*# sourceMappingURL=style.css.map */



.topics-pagecontent .pagecontent-left {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    width: 300px;
    display: none;
}


.topics-pagecontent .pagecontent-right {
    background-color: #fff;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    border-radius: 50px;
    width: 90%;
    padding: 60px;
    margin: 0 auto;
}