@charset "UTF-8";
/*
全てのページに影響するCSSに関して記述しているファイル
phpで作成したpartsごとのファイルを作成する様にする
*/
/*
変数関係をまとめたファイル
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
/*
変数関係をまとめたファイル
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
.header {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 30px rgba(26, 16, 62, 0.06);
          box-shadow: 0 0 30px rgba(26, 16, 62, 0.06);
  width: 14%;
  padding: 30px 15px;
}
@media screen and (max-width: 820px) {
  .header {
    -webkit-box-shadow: none;
            box-shadow: none;
    width: 100%;
    padding: 8px 15px;
  }
}
.header > .container {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  .header > .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 16px;
  }
}
.header > .container > .logo {
  width: 125px;
  height: 125px;
  margin: 0 auto 10vh;
}
@media screen and (max-width: 820px) {
  .header > .container > .logo {
    width: 12vw;
    height: auto;
    margin: 0;
  }
}
.header > .container > .logo > .link {
  display: inline-block;
}
.header > .container > .logo > .link > .image {
  width: 100%;
  height: 100%;
}
.header > .container > .list-menu {
  margin-bottom: 24px;
}
@media screen and (max-width: 820px) {
  .header > .container > .list-menu {
    display: none;
  }
}
.header > .container > .list-menu > .menu {
  border-top: 1px solid #CCCCCC;
  font-weight: 500;
  padding: 16px 10px;
}
.header > .container > .list-menu > .menu:last-child {
  border-bottom: 1px solid #CCCCCC;
}
.header > .container > .list-menu > .menu > .link {
  color: #222222;
  font-size: 1.1vw;
}
@media screen and (max-width: 820px) {
  .header > .container > .contact {
    display: none;
  }
}
.header > .container > .contact > .link {
  position: relative;
  display: inline-block;
  border: 1px solid #1C0D82;
  width: 100%;
  color: #1C0D82;
  font-size: 0.9vw;
  font-weight: 700;
  padding: 16px 12px 16px 14px;
}
.header > .container > .contact > .link:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #1C0D82;
  width: 7px;
  height: 9px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.header > .container > .hamburger-menu {
  display: none;
  position: relative;
  width: 6.4vw;
  height: 17px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
@media screen and (max-width: 820px) {
  .header > .container > .hamburger-menu {
    display: inline-block;
    z-index: 1101;
  }
}
.header > .container > .hamburger-menu > .line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: #1C0D82;
  -webkit-transition: top 0.2s ease, bottom 0.2s ease, width 0.2s ease, -webkit-transform 0.2s ease;
  transition: top 0.2s ease, bottom 0.2s ease, width 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, top 0.2s ease, bottom 0.2s ease, width 0.2s ease;
  transition: transform 0.2s ease, top 0.2s ease, bottom 0.2s ease, width 0.2s ease, -webkit-transform 0.2s ease;
}
.header > .container > .hamburger-menu > .line:first-child {
  top: 0px;
}
.header > .container > .hamburger-menu > .line:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header > .container > .hamburger-menu > .line:last-child {
  bottom: 0px;
}
.header > .container > .hamburger-menu > .line.active:first-child {
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
  top: 3px;
}
.header > .container > .hamburger-menu > .line.active:nth-child(2) {
  display: none;
}
.header > .container > .hamburger-menu > .line.active:last-child {
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
  bottom: 13px;
  width: 100%;
}

body.active .header > .container > .hamburger-menu > .line {
  background-color: #ffffff;
}

.menu-sp {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #1C0D82;
  width: 100%;
  height: 100vh;
  z-index: 1000;
}
@media screen and (max-width: 640px) {
  .menu-sp {
    padding: 32px 25px;
  }
}
.menu-sp > .menu-sp__logo {
  position: absolute;
  top: 8px;
  left: 15px;
  width: 12vw;
  height: 12vw;
  margin-bottom: 32px;
}
.menu-sp > .menu-sp__logo > .link {
  display: inline-block;
}
.menu-sp > .menu-sp__logo > .link > .image {
  width: 100%;
  height: 100%;
}
.menu-sp > .box-menu-content {
  padding-top: 19vh;
}
.menu-sp > .box-menu-content > .list-menu {
  max-width: 54vw;
  margin: 0 auto 20vh;
}
.menu-sp > .box-menu-content > .list-menu > .menu {
  border-top: 1px solid #CCCCCC;
  padding: 16px 0;
}
.menu-sp > .box-menu-content > .list-menu > .menu:last-child {
  border-bottom: 1px solid #CCCCCC;
}
.menu-sp > .box-menu-content > .list-menu > .menu > .link {
  color: #ffffff;
}
.menu-sp > .box-menu-content > .list-meta {
  max-width: 54vw;
  margin: 0 auto;
}
.menu-sp > .box-menu-content > .list-meta > .menu {
  margin-bottom: 16px;
}
.menu-sp > .box-menu-content > .list-meta > .menu > .link {
  color: #ffffff;
  text-decoration: underline;
}
.menu-sp > .box-menu-content > .list-meta > .menu > .copyright {
  color: #ffffff;
}
.menu-sp > .box-menu-content > .copyright {
  color: #ffffff;
  font-size: 14px;
  margin-top: 24px;
}
.menu-sp.active {
  display: block;
  overflow: auto;
}

.contact-fixed {
  display: none;
}
@media screen and (max-width: 820px) {
  .contact-fixed {
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #1C0D82;
    z-index: 900;
  }
}
.contact-fixed > .link {
  position: relative;
  display: block;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  padding: 16px;
}
.contact-fixed > .link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #ffffff;
  width: 7px;
  height: 9px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/*
変数関係をまとめたファイル
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
.footer {
  background-color: #1C0D82;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 13px 80px 14px;
}
@media screen and (max-width: 820px) {
  .footer {
    display: none;
  }
}
.footer > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer > .container > .menu > .link {
  color: #ffffff;
  font-size: 1vw;
  text-decoration: underline;
  margin-left: 40px;
}
.footer > .container > .copyright {
  color: #ffffff;
  font-size: 1vw;
  margin-left: 40px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
}

main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
}
@media screen and (max-width: 820px) {
  main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
}

.container-contents {
  width: 86%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}
@media screen and (max-width: 820px) {
  .container-contents {
    width: 100%;
    min-height: 93vh;
    padding-bottom: 56px;
  }
}

.container-contents > .footer {
  margin-top: auto;
}

.container-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px;
}
@media screen and (max-width: 820px) {
  .container-title {
    padding: 8px 16px 24px 16px;
  }
}

.page-title {
  font-size: 2.7vw;
  font-weight: 500;
}
@media screen and (max-width: 820px) {
  .page-title {
    font-size: 20px;
  }
}

.list-pagenation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 820px) {
  .list-pagenation {
    display: none;
  }
}
.list-pagenation > .page:first-child, .list-pagenation > .page:nth-child(2) {
  margin-right: 12px;
}
.list-pagenation > .page > .link {
  font-size: 1vw;
}
.list-pagenation > .page:first-child > .link {
  color: #1C0D82;
}
.list-pagenation > .page:last-child > .link {
  color: #888888;
}