@charset "UTF-8";
/* Import CSS */
@import url("grid.css");
@import url("https://fonts.googleapis.com/earlyaccess/notosansjp.css");
/*Common
-------------------------------------*/
body {
  color: #000;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  background: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

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

a {
  color: #1b179e;
  text-decoration-line: none;
  text-decoration: none;
}

a:hover {
  color: #24a4ff;
}

a img:hover {
  opacity: 0.8;
}

a, a:before, a:after, input {
  -webkit-transition-property: background color;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease;
  -moz-transition-property: background color;
  -moz-transition-duration: 0.2s;
  -moz-transition-timing-function: ease;
  -o-transition-property: background color;
  -o-transition-duration: 0.2s;
  -o-transition-timing-function: ease;
}

.center {
  text-align: center;
}

@media screen and (min-width: 550px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 550px) {
  .pc {
    display: none !important;
  }
}

/*ヘッダー
-------------------------------------*/
#topcopy {
  height: 25px;
  background: linear-gradient(#fff, #eaeae1);
  padding: 3px 2rem;
  color: #585757;
  font-size: 1.2rem;
  text-align: left;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header .header-content {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  padding: 1rem 2rem;
  background: #fff;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.17);
}

.header .header-content .site-title {
  position: relative;
  top: 2px;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  width: 236px;
}

.header .header-content .site-title img {
  width: 100%;
  height: auto;
}

.header .header-content .menu {
  background-color: #003399;
}

.header .header-content nav ul {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  list-style: none;
  margin-top: 5px;
  margin-bottom: 0;
}

.header .header-content nav ul li {
  flex: 1 0 auto;
  margin: 0 2px;
  font-size: 14px;
}

.header .header-content nav ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  color: #4e4e4e;
  font-weight: bold;
  padding: 12px 10px;
}

.header .header-content nav ul li a:hover {
  color: #e75106;
}

.header .header-content nav ul li.nav-support {
  margin-right: 2rem;
}

.header .header-content nav ul li.nav-app a {
  background: #8facbd url(../img/ico_app.svg) no-repeat 12px center;
  background-size: 30px;
  padding-left: 52px;
  color: #fff;
  border-radius: 5px;
  text-shadow: none !important;
}

.header .header-content nav ul li.nav-app a:hover {
  background-color: #fb9f7f;
}

.header .header-content nav ul li.nav-app a:active {
  background-color: #ec541e;
}

.header .header-content nav ul li.nav-user a {
  background: #009fe8 url(../img/ico_g.svg) no-repeat 12px center;
  background-size: 28px;
  padding-left: 52px;
  color: #fff;
  border-radius: 5px;
  text-shadow: none !important;
}

.header .header-content nav ul li.nav-user a:hover {
  background-color: #18acf1;
}

.header .header-content nav ul li.nav-user a:active {
  background-color: #0086c3;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  #topcopy {
    text-align: center;
  }
  .header .header-content {
    position: relative;
    padding: 1rem 1rem;
  }
  .header .header-content .site-title {
    top: 5px;
  }
  .header .header-content nav ul li {
    font-size: 12px;
  }
  .header .header-content nav ul li a {
    padding: 12px 5px;
  }
  .header .header-content nav ul li.nav-user a {
    padding-left: 43px;
    background-position: 9px center;
  }
  .header .header-content nav ul li.nav-app a {
    padding-left: 43px;
    background-position: 9px center;
  }
  .header .header-content nav ul li.nav-support {
    margin-right: .5rem;
  }
}

.sub-menu {
  display: none !important;
}

.menu-item-has-children:hover .sub-menu {
  display: block !important;
}

/**/
.header .menu-item-has-children {
  position: relative;
}

.header .menu-item-has-children:hover {
  cursor: pointer;
}

.header .menu-item-has-children:hover .sub-menu {
  display: block;
}

.header .sub-menu {
  display: none;
  position: absolute;
  top: 35px;
  left: -83px;
  width: 250px;
  background: white;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
  padding: 0;
  z-index: 100;
  border-radius: 5px;
  overflow: hidden;
}

.header .sub-menu > .menu-item:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.header .sub-menu > .menu-item a {
  display: inline-block;
  width: 100%;
  height: 100%;
  margin: 3px 0;
  padding: 1em 0.5em;
  border-radius: 6px;
}

.header .sub-menu > .menu-item a:hover {
  background: #1371d6;
  color: white;
}

/**/
#setting-toggle-button {
  position: absolute;
  top: 40px;
  right: 1rem;
  background: #1855C7;
  width: 32px;
  height: 32px;
  padding: 0;
  color: #fff;
  border: none;
  border-radius: 8px;
}

#setting-toggle-button.active {
  background: #082558;
}

#setting-toggle-button span,
#setting-toggle-button::before,
#setting-toggle-button::after {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 18px;
  height: 3px;
  margin: auto;
  background: #fff;
}

#setting-toggle-button span {
  overflow: hidden;
  z-index: 1;
  color: #000;
}

#setting-toggle-button::before {
  z-index: 2;
  transform: translate(0, -7px);
  content: "";
}

#setting-toggle-button::after {
  z-index: 2;
  transform: translate(0, 7px);
  content: "";
}

#setting-toggle-button span {
  opacity: 1;
  transition: opacity 150ms 50ms;
}

#setting-toggle-button::before,
#setting-toggle-button::after {
  transition: transform 200ms;
}

#setting-toggle-button.active span {
  opacity: 0;
  transition: opacity 150ms;
}

#setting-toggle-button.active::before {
  transform: rotate(45deg);
}

#setting-toggle-button.active::after {
  transform: rotate(-45deg);
}

@media screen and (min-width: 768px) {
  #setting-toggle-button {
    display: none !important;
  }
  .menu-gnav-container {
    display: block;
  }
  .menu-gnav-container .current-menu-item > a::before {
    content: '';
    width: 16px;
    height: 2px;
    position: absolute;
    bottom: 2px;
    left: 50%;
    margin-left: -8px;
    background: #24a4ff;
  }
  .current-menu-item.nav-app > a::before {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  #topcopy {
    text-align: center;
  }
  .header {
    position: relative;
  }
  .header .header-content {
    flex-direction: column;
    text-align: left;
    padding: 0;
    position: relative !important;
    width: auto !important;
    background: #fff !important;
  }
  .header .header-content .site-title {
    padding: 1rem 1rem 0.5rem 1rem;
    width: 100%;
    text-align: center;
  }
  .header .header-content .site-title img {
    width: 60%;
  }
  .header .header-content nav .menu-item a:hover {
    background-color: black;
    color: white;
  }
  .header .header-content nav ul {
    display: block;
    border-radius: 5px;
    overflow: hidden;
  }
  .header .header-content nav ul li {
    width: 100%;
    padding-top: 0;
    border-bottom: 1px solid #080c3b;
    margin: 0 !important;
  }
  .header .header-content nav ul li a {
    color: #fff;
    width: 100%;
    text-align: left;
    background-color: #1855C7;
    border-radius: 0 !important;
    text-shadow: none !important;
  }
  .header .header-content nav ul li.nav-app {
    border: none;
  }
  .header .header-content nav ul li.nav-app a {
    border-radius: 5px !important;
  }
  .header .header-content nav ul li.nav-user a {
    border-radius: 5px !important;
    margin-bottom: 5px;
  }
  .header .header-content nav .sub-menu {
    display: block !important;
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    background: white;
    box-shadow: none;
    padding: 0;
    z-index: auto;
    border-radius: 0;
    overflow: hidden;
    margin: 0.25rem 0 0.5rem 2rem;
  }
  .header .header-content nav .sub-menu > .menu-item a {
    margin: 0;
    padding: .5em;
    background-color: #1548a9;
  }
  .header .header-content nav .sub-menu > .menu-item:not(:last-child) {
    border-bottom: 1px solid #080c3b;
  }
  .header .header-content #menu-item-747 {
    border-bottom: none !important;
  }
  .header .header-content .menu-gnav-container {
    display: none;
    background: #082558;
    padding: 5px;
  }
  .header .header-content .menu-gnav-container.open {
    display: block;
  }
  .header .header #setting-toggle-button {
    position: absolute;
    top: 16px;
    right: 10px;
  }
}

/* Main
-------------------------------------*/
main {
  background: #fefdf7;
  padding: 95px 0 5rem 0;
}

@media screen and (max-width: 768px) {
  main {
    padding-top: 0;
  }
}

/* Footer
-------------------------------------*/
.footer {
  padding: 2rem 0;
  background-color: #fff;
}

.footer nav ul {
  display: flex;
  margin-bottom: 0;
}

.footer nav ul li {
  list-style: none;
  font-size: 1.2rem;
}

.footer nav ul li a {
  color: #000;
  display: inline-block;
  margin-right: 1em;
}

.footer nav ul li a:hover {
  text-decoration: underline;
}

.footer .copyright {
  font-size: 1rem;
  color: #979797;
  padding: 1rem 0;
}

.content-footer {
  padding: 12rem 0 0 0;
  text-align: center;
}

.content-footer ul.sns {
  margin: 4em  0 0 0;
  padding: 0;
  text-align: center;
}

.content-footer ul.sns li {
  display: inline-block;
  margin: 0 0.25em;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .footer {
    text-align: center;
  }
  .footer nav ul {
    display: block;
  }
}

/* Top Button
-------------------------------------*/
#pagetop {
  position: fixed;
  bottom: 10px;
  right: 15px;
}

#pagetop a {
  display: block;
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  padding: 4px 5px 0;
  background: #003399;
  color: #fff;
  font-size: 1.5em;
  text-align: center;
  border-radius: 50%;
}

#pagetop a:hover {
  background: #3366FF;
}

/* Breadcrumb
-----------------------------------*/
.breadcrumb {
  font-size: 1.2rem;
  margin: 0 0 1em 0;
  padding: 2rem 0 0 0;
}

.breadcrumb li {
  display: inline-block;
  list-style-type: none;
  margin-right: 1em;
}

.breadcrumb li:nth-child(n + 2)::before {
  content: '>　';
}

.breadcrumb li a {
  color: #959fa5;
}

/* ホームページ */
body.home .header nav ul li.nav-home {
  display: none;
}

body.home .content-footer {
  display: none;
}

body.home .mainimg {
  max-height: 580px;
  overflow: hidden;
}

body.home .mainimg .main {
  width: 100vw;
}

body.home .mainimg .maincopy {
  width: 45%;
  position: absolute;
  margin-top: 15%;
  text-align: right;
}

body.home .mainimg .maincopy img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

body.home .mainimg .maincopy a.btn {
  display: block;
  margin: 2rem auto;
  width: 220px;
  background: #2da8b5;
  color: #fff;
  text-align: center;
  margin-top: 1em;
  padding: 0.5rem 1rem;
  border-radius: 3px;
  font-size: 1.75rem;
  font-weight: bold;
  box-shadow: #108c8c 0px 4px 0;
  position: relative;
}

body.home .mainimg .maincopy a.btn:hover {
  top: 3px;
  background: #2d99a5;
  box-shadow: #108c8c 0px 1px 0;
}

body.home main {
  padding-top: 2rem;
}

body.home main .btn {
  background: #cbe3f9;
  padding: 3px 15px;
  display: inline-block;
  border-radius: 7px;
  margin-bottom: 5px;
}

.news h2, .news h3, .news-sub h2, .news-sub h3 {
  margin-top: 1em;
  color: #1f228e;
  font-size: 19px;
  font-weight: bold;
  text-align: left;
}

.news header, .news-sub header {
  position: relative;
}

.news header .news-archive, .news-sub header .news-archive {
  position: absolute;
  top: -2px;
  right: 10px;
}

.news header .news-archive a, .news-sub header .news-archive a {
  display: inline-block;
  background: #24a4ff;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 19px;
  padding: 3px 12px;
}

.news header .news-archive a:hover, .news-sub header .news-archive a:hover {
  background: #009fe8;
}

.news footer, .news-sub footer {
  text-align: right;
  font-size: .75em;
}

.news dl, .news-sub dl {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: .5rem;
  margin-bottom: .5rem;
}

.news dl dt, .news-sub dl dt {
  color: #929292;
}

.news dl dd .new, .news-sub dl dd .new {
  position: relative;
  top: -2px;
  display: inline-block;
  margin-left: 3px;
  padding: 3px 5px;
  background: #f00;
  font-size: .6em;
  color: #fff;
  line-height: 1;
  border-radius: 8px;
}

.news dl dd .new, .news-sub dl dd .new {
  animation: blink 1.5s ease-in-out infinite alternate;
}

@keyframes blink {
  0% {
    opacity: .5;
  }
  100% {
    opacity: 1;
  }
}

.news dl dd a, .news-sub dl dd a {
  color: #000;
}

.news dl dd a:hover, .news-sub dl dd a:hover {
  color: #24a4ff;
}

.news dl dd.post-cat-important a, .news-sub dl dd.post-cat-important a {
  font-weight: bold;
  color: red;
}

.news-sub ul {
  margin: 0;
  padding: 0;
}

.news-sub ul li {
  list-style: none;
  margin: 0 0 1.3rem 0;
  padding: 0;
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  body.home .mainimg .maincopy {
    margin-top: 10%;
  }
}

/* 子ページ */
.page-header {
  position: relative;
  background: linear-gradient(#35afd8 0%, #005880 100%);
  height: 163px;
}

.page-header h1 {
  position: absolute;
  width: 100%;
  text-align: center;
  color: #fff;
  margin: 6rem 0;
}

.page-header .mainimg {
  max-height: 160px;
  overflow: hidden;
  background: #e9e9e9;
}

.page-header .mainimg img {
  width: 100vw;
}

.page-header-hasimg {
  position: relative;
}

.page-header-hasimg::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(26, 179, 255, 0.5);
}

.page-header-hasimg .page-image {
  max-height: 250px;
  overflow: hidden;
}

.page-header-hasimg .page-image img {
  width: 100vw;
  height: auto;
}

.page-header-hasimg .page-title {
  position: absolute;
  top: 0;
  width: 100%;
  color: #fff;
  text-shadow: 0px 0px 8px #0e3d58;
}

body.page .header nav ul li.nav-user, body.single .header nav ul li.nav-user, body.category .header nav ul li.nav-user, body.archive .header nav ul li.nav-user {
  display: none;
}

body.page .content-main, body.single .content-main, body.category .content-main, body.archive .content-main {
  /* Header */
}

body.page .content-main .bg_blue, body.single .content-main .bg_blue, body.category .content-main .bg_blue, body.archive .content-main .bg_blue {
  background: #f5f2e1;
  /*	color: #fff;*/
  margin: 3em 0;
  padding: 3em 0;
}

body.page .content-main .container > *:first-child, body.single .content-main .container > *:first-child, body.category .content-main .container > *:first-child, body.archive .content-main .container > *:first-child {
  margin-top: 0;
}

body.page .content-main h2, body.page .content-main h3, body.page .content-main h4, body.page .content-main h5, body.page .content-main h6, body.single .content-main h2, body.single .content-main h3, body.single .content-main h4, body.single .content-main h5, body.single .content-main h6, body.category .content-main h2, body.category .content-main h3, body.category .content-main h4, body.category .content-main h5, body.category .content-main h6, body.archive .content-main h2, body.archive .content-main h3, body.archive .content-main h4, body.archive .content-main h5, body.archive .content-main h6 {
  color: #1f228e;
}

body.page .content-main h2, body.single .content-main h2, body.category .content-main h2, body.archive .content-main h2 {
  margin-top: 0;
  padding-top: 10rem;
  position: relative;
  padding-bottom: 3em;
}

body.page .content-main h2::after, body.single .content-main h2::after, body.category .content-main h2::after, body.archive .content-main h2::after {
  content: '';
  background: #73d6ca;
  width: 100px;
  height: 3px;
  position: absolute;
  bottom: 65px;
  left: 50%;
  margin-left: -50px;
}

body.page .content-main h3, body.single .content-main h3, body.category .content-main h3, body.archive .content-main h3 {
  color: #fff;
  background: #2f70a9;
  border-radius: 26px;
  padding: 5px 20px;
}

body.page .content-main table, body.single .content-main table, body.category .content-main table, body.archive .content-main table {
  width: 100%;
  background: #fff;
  border: 1px solid gray;
}

body.page .content-main table caption, body.single .content-main table caption, body.category .content-main table caption, body.archive .content-main table caption {
  font-weight: 600;
  text-align: left;
}

body.page .content-main table th, body.page .content-main table td, body.single .content-main table th, body.single .content-main table td, body.category .content-main table th, body.category .content-main table td, body.archive .content-main table th, body.archive .content-main table td {
  padding: .5em;
  border: 1px solid gray;
}

body.page .content-main table th, body.single .content-main table th, body.category .content-main table th, body.archive .content-main table th {
  background: #fafafa;
}

body.page .content-main img.size70, body.single .content-main img.size70, body.category .content-main img.size70, body.archive .content-main img.size70 {
  display: block;
  max-width: 70%;
  height: auto;
  margin: 0 auto 3em auto;
}

body.page .content-main img.size80, body.single .content-main img.size80, body.category .content-main img.size80, body.archive .content-main img.size80 {
  display: block;
  max-width: 80%;
  height: auto;
  margin: 0 auto 3em auto;
}

body.page .content-main a.btn, body.single .content-main a.btn, body.category .content-main a.btn, body.archive .content-main a.btn {
  display: block;
  margin: 2rem auto;
  width: 260px;
  background: #2da8b5;
  color: #fff;
  text-align: center;
  padding: 1rem;
  border-radius: 3px;
  font-size: 1.75rem;
  font-weight: bold;
  box-shadow: #108c8c 0px 4px 0;
  position: relative;
}

body.page .content-main a.btn:hover, body.single .content-main a.btn:hover, body.category .content-main a.btn:hover, body.archive .content-main a.btn:hover {
  background: #35b9c7;
}

body.page .content-main a.btn:active, body.single .content-main a.btn:active, body.category .content-main a.btn:active, body.archive .content-main a.btn:active {
  top: 3px;
  background: #2d99a5;
  box-shadow: #108c8c 0px 1px 0;
}

body.page .content-main a.btn.btn-full, body.single .content-main a.btn.btn-full, body.category .content-main a.btn.btn-full, body.archive .content-main a.btn.btn-full {
  width: 100%;
}

body.page .content-main a.btn_dl, body.single .content-main a.btn_dl, body.category .content-main a.btn_dl, body.archive .content-main a.btn_dl {
  position: relative;
  background: #e08815;
  display: block;
  padding: 9px 30px 10px 69px;
  border-radius: 5px;
  font-weight: bold;
  color: #fff;
  width: 485px;
  font-size: 1.5em;
  margin: 0 auto;
  box-shadow: #8c5c10 0px 3px 0;
}

body.page .content-main a.btn_dl.kaitori, body.single .content-main a.btn_dl.kaitori, body.category .content-main a.btn_dl.kaitori, body.archive .content-main a.btn_dl.kaitori {
  background: #63b73b;
  box-shadow: #4a8c10 0px 3px 0;
}

body.page .content-main a.btn_dl.kaitori:hover, body.single .content-main a.btn_dl.kaitori:hover, body.category .content-main a.btn_dl.kaitori:hover, body.archive .content-main a.btn_dl.kaitori:hover {
  background: #75d04b;
}

body.page .content-main a.btn_dl.kaitori:active, body.single .content-main a.btn_dl.kaitori:active, body.category .content-main a.btn_dl.kaitori:active, body.archive .content-main a.btn_dl.kaitori:active {
  background: #478a27;
  box-shadow: #4a8c10 0px 1px 0;
}

body.page .content-main a.btn_dl .fas, body.single .content-main a.btn_dl .fas, body.category .content-main a.btn_dl .fas, body.archive .content-main a.btn_dl .fas {
  position: absolute;
  top: 7px;
  left: 28px;
  /*color: #09562c;*/
  font-size: 1.6em;
  opacity: .7;
}

body.page .content-main a.btn_dl:hover, body.single .content-main a.btn_dl:hover, body.category .content-main a.btn_dl:hover, body.archive .content-main a.btn_dl:hover {
  background: #e69c3a;
}

body.page .content-main a.btn_dl:active, body.single .content-main a.btn_dl:active, body.category .content-main a.btn_dl:active, body.archive .content-main a.btn_dl:active {
  background: #af6b13;
  top: 2px;
  box-shadow: #e69c3a 0px 1px 0;
}

body.page .content-main ul, body.page .content-main ol, body.single .content-main ul, body.single .content-main ol, body.category .content-main ul, body.category .content-main ol, body.archive .content-main ul, body.archive .content-main ol {
  margin-top: 2.5rem;
}

body.page .content-main ul li, body.page .content-main ol li, body.single .content-main ul li, body.single .content-main ol li, body.category .content-main ul li, body.category .content-main ol li, body.archive .content-main ul li, body.archive .content-main ol li {
  padding-left: 2em;
  clear: both;
}

body.page .content-main ul li, body.single .content-main ul li, body.category .content-main ul li, body.archive .content-main ul li {
  background: url(../img/arr.svg) no-repeat 0.75em 0.45em;
  list-style: none;
}

body.page .content-main ol, body.single .content-main ol, body.category .content-main ol, body.archive .content-main ol {
  counter-reset: item;
}

body.page .content-main ol li, body.single .content-main ol li, body.category .content-main ol li, body.archive .content-main ol li {
  position: relative;
  list-style: none;
}

body.page .content-main ol li::before, body.single .content-main ol li::before, body.category .content-main ol li::before, body.archive .content-main ol li::before {
  position: absolute;
  left: 0.6em;
  counter-increment: item;
  content: counter(item) ".";
  color: #225fcf;
  font-weight: bold;
}

body.page .content-main ul.no-arr li, body.single .content-main ul.no-arr li, body.category .content-main ul.no-arr li, body.archive .content-main ul.no-arr li {
  padding-left: 0;
  background: none;
}

body.home .header nav ul li.nav-user {
  display: inline-block !important;
}

@media screen and (max-width: 550px) {
  body.page .content-main img.size70,
  body.page .content-main img.size80, body.single .content-main img.size70,
  body.single .content-main img.size80 {
    max-width: 100%;
  }
  body.page .content-main a.btn_dl, body.single .content-main a.btn_dl {
    width: 100%;
  }
}

/**/
/*お知らせ
-----------------------------------*/
.nav-single {
  margin: 50px 0 0 0;
  border-top: #CCC 1px solid;
  font-size: 1.5em;
}

.nav-previous,
.nav-next {
  width: 50%;
  min-height: 100px;
  font-size: 1.2rem;
  line-height: 1;
}

.nav-previous a,
.nav-next a {
  text-decoration: none;
  display: block;
  min-height: 80px;
  color: #594f3e;
}

.nav-previous a:hover,
.nav-next a:hover {
  color: #f1513c;
}

.nav-previous em,
.nav-next em {
  margin: 0 0 10px 0;
  display: block;
  color: #999;
  font-style: normal;
}

.nav-previous {
  float: left;
  border-right: #CCC 1px solid;
}

.nav-previous a {
  padding: 20px 5px 0 5px;
}

.nav-next {
  float: right;
  text-align: right;
}

.nav-next a {
  padding: 20px 5px 0 5px;
}

.single .container .span-9,
.category .container .span-9,
.archive .container .span-9 {
  margin-bottom: 3rem;
}

.single .container .span-9 .post-header,
.category .container .span-9 .post-header,
.archive .container .span-9 .post-header {
  margin-bottom: 6rem;
}

.single .container .span-9 .post-header h1,
.category .container .span-9 .post-header h1,
.archive .container .span-9 .post-header h1 {
  margin: 0;
  font-size: 2.5rem;
}

.single .container .span-3 h3,
.category .container .span-3 h3,
.archive .container .span-3 h3 {
  text-align: left;
  margin-top: 0;
  font-size: 1em;
}

.single .container .span-3 .screen-reader-text,
.category .container .span-3 .screen-reader-text,
.archive .container .span-3 .screen-reader-text {
  display: none;
}

.single .container h3,
.category .container h3,
.archive .container h3 {
  margin-top: 3em;
}

.single .container img,
.category .container img,
.archive .container img {
  border-radius: 10px;
  border: 1px solid #d2cdca;
}

.single .container img.alignright,
.category .container img.alignright,
.archive .container img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

.single .container img.alignleft,
.category .container img.alignleft,
.archive .container img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

@media (min-width: 768px) {
  .single .container .span-9,
  .category .container .span-9,
  .archive .container .span-9 {
    margin-right: 3em;
  }
}

@media (max-width: 768px) {
  .single .container img.alignright,
  .single .container img.alignleft,
  .category .container img.alignright,
  .category .container img.alignleft,
  .archive .container img.alignright,
  .archive .container img.alignleft {
    display: block;
    float: none;
    margin: 0 0 1em 0;
  }
}

/*個別ページ
-----------------------------------*/
/* = Price
-------------------------------------------------------------- */
body.page .content-main .price-plan .col {
  background: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  overflow: hidden;
}

body.page .content-main .price-plan .col h2 {
  margin-top: 0;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
}

body.page .content-main .price-plan .col h2::after {
  display: none;
}

body.page .content-main .price-plan .col .price-plan-content {
  padding: 0 2rem;
}

body.page .content-main .price-plan .col .price-plan-content .osusu-point {
  background: #f3eedf;
  padding: 1em;
  margin-bottom: 1rem;
  border-radius: 5px;
}

body.page .content-main .price-plan .col .price-plan-content .osusu-point strong {
  color: #1b179e;
}

body.page .content-main .price-plan .col .price-plan-content .osusu-point ul {
  margin: 1rem 0;
}

body.page .content-main .price-plan .col .price-plan-content .osusu-point ul li {
  margin-bottom: .5rem;
  color: #614636;
  font-weight: bold;
  line-height: 1.3;
  background-position: 0.75em 0.25em;
  background-image: url(../img/arr_b.svg) !important;
}

body.page .content-main .price-plan .col .price-plan-content .osusu-point ul:last-child {
  margin-bottom: 0;
}

body.page .content-main .price-plan .col .price-plan-content .osusu-point img.osusume {
  width: 160px;
}

body.page .content-main .price-plan .col .price-plan-content table {
  border: 1px solid gray;
}

body.page .content-main .price-plan .col .price-plan-content table caption {
  color: #1f228e;
}

body.page .content-main .price-plan .col .price-plan-content table th, body.page .content-main .price-plan .col .price-plan-content table td {
  padding: 0.5rem 1.5rem;
  border: 1px solid gray;
}

body.page .content-main .price-plan .col .price-plan-content table th {
  width: 55%;
  background: #f3f3f3;
  font-weight: normal;
}

body.page .content-main .price-plan .col .price-plan-content table td .price-num {
  display: inline-block;
}

body.page .content-main .price-plan .col .price-plan-content table td .price-unit {
  display: inline-block;
  font-size: .7em;
}

body.page .content-main .price-plan .col .price-plan-content h5 {
  margin: 0;
  text-align: left;
}

body.page .content-main .price-plan .col .price-plan-content ul {
  margin: 0 0 1em 0;
}

body.page .content-main .price-plan .col .price-plan-content ul li {
  margin-bottom: 0;
}

body.page .content-main .price-plan .col.kaitori h2 {
  background: #7fc31c;
}

body.page .content-main .price-plan .col.rental h2 {
  background: #f59419;
}

/* = Contact
-------------------------------------------------------------- */
body.page .content-main .contact_ex {
  margin: 4rem;
  border: 1px solid #73d6ca;
  padding: 1rem 2.5rem;
  border-radius: 7px;
  background: #fff;
}

body.page .content-main .tel {
  border-left: 3px solid #73d6ca;
  padding: 0.5em 0 0.5em 1em;
}

body.page .content-main .tel strong {
  color: #1b179e;
}

body.page .content-main .tel .telnum {
  font-size: 3em;
  font-family: "SF Pro Text","SF Pro Icons","Helvetica Neue","Helvetica","Arial",sans-serif;
  line-height: 1;
}

body.page .content-main .tel small {
  display: block;
  margin-top: 7px;
}

/* = About
-------------------------------------------------------------- */
body.page .content-main .cirs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

body.page .content-main .cir {
  text-align: center;
  width: 185px;
  margin: 0 2rem 2rem;
}

body.page .content-main .cir .cir_icon {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  background: #e3f5bd;
  padding-top: 28px;
}

body.page .content-main .cir .cir_icon img {
  width: 70%;
  height: auto;
}

body.page .content-main .cir h4 {
  margin: -35px 0 0.25em 0;
  padding: 0;
  font-size: 2rem;
  line-height: 1.1;
  min-height: 46px;
}

body.page .content-main .cir p {
  font-size: .75em;
  line-height: 1.2;
  text-align: left;
}

body.page .content-main .cir.cir_1 .cir_icon {
  background: #e3f5bd;
}

body.page .content-main .cir.cir_2 .cir_icon {
  background: #f9e4bb;
  padding-top: 13px;
}

body.page .content-main .cir.cir_3 .cir_icon {
  background: #ffdedc;
}

body.page .content-main .cir.cir_3 .cir_icon img {
  width: 64%;
}

body.page .content-main .cir.cir_5 .cir_icon {
  padding-top: 35px;
  background: #ffdedc;
}

body.page .content-main .cir.cir_5 .cir_icon img {
  width: 68%;
}

body.page .content-main .cir.cir_6 .cir_icon {
  background: #c8dbef;
  padding-top: 20px;
}

body.page .content-main .cir.cir_6 .cir_icon img {
  width: 52%;
}

body.page .content-main .cir.cir_7 .cir_icon {
  background: #c8dbef;
  padding-top: 60px;
}

/* = CaseStudy
-------------------------------------------------------------- */
body.page .content-main .useimage {
  margin-bottom: 5em;
  display: flex;
  background: url(/imgs/familyimage.png) no-repeat center top;
  background-size: contain;
}

body.page .content-main .useimage .for-family,
body.page .content-main .useimage .for-child {
  width: 100%;
  padding: 0 50px 0 0;
}

body.page .content-main .useimage .for-family h3,
body.page .content-main .useimage .for-child h3 {
  margin: 40px 0 10px 0;
  padding: 5px 5px;
  background: #ef7e15;
  border-radius: 20px;
  color: #fff;
  font-size: 22px;
}

body.page .content-main .useimage .for-family p,
body.page .content-main .useimage .for-child p {
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: bold;
}

body.page .content-main .useimage .for-family ul li,
body.page .content-main .useimage .for-child ul li {
  font-size: .9em;
  line-height: 1.2;
}

body.page .content-main .useimage .for-family ul li a,
body.page .content-main .useimage .for-child ul li a {
  color: #000;
  font-weight: bold;
}

body.page .content-main .useimage .for-family ul li a:hover,
body.page .content-main .useimage .for-child ul li a:hover {
  color: #24a4ff;
}

body.page .content-main .useimage .for-child {
  padding: 0 0 0 50px;
}

body.page .content-main .useimage .for-child h3 {
  background: #18a6b5;
}

body.page .content-main .useimage .illust {
  width: 260px;
  flex-shrink: 0;
}

body.page .content-main .useimage-child, body.page .content-main .useimage-family {
  padding: 3em 0;
}

body.page .content-main .useimage-child .container, body.page .content-main .useimage-family .container {
  width: 860px;
}

body.page .content-main .useimage-child .container .row, body.page .content-main .useimage-family .container .row {
  padding-left: 1.5em;
  padding-right: 1.5em;
}

body.page .content-main .useimage-child h3, body.page .content-main .useimage-family h3 {
  background: #18a6b5;
  color: #fff;
  text-align: left;
  padding: 0.3em 1em;
  box-shadow: 4px 4px 0 1px rgba(199, 199, 199, 0.5);
  transform: skewX(-10deg);
  margin-top: 0;
  line-height: 1.5;
  border-radius: 15px;
}

body.page .content-main .useimage-child h3 .in, body.page .content-main .useimage-family h3 .in {
  display: block;
  transform: skewX(10deg);
}

body.page .content-main .useimage-child h3 .sub-title, body.page .content-main .useimage-family h3 .sub-title {
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1;
  border: 1px solid;
  padding: 0.5rem 1.5rem;
  position: relative;
  top: -5px;
  margin-left: .5em;
  border-radius: 15px;
}

body.page .content-main .useimage-child strong, body.page .content-main .useimage-family strong {
  color: #1b179e;
}

body.page .content-main .useimage-child {
  background: #edf5f2;
}

body.page .content-main .useimage-family {
  background: #fbf8e7;
  margin-bottom: 3em;
}

body.page .content-main .useimage-family h3 {
  background-color: #ef7e15;
}

body.page .content-main .new-icon {
  display: inline-block;
  background: #ff4747;
  padding: 17px 0;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  float: left;
  margin-right: 10px;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  font-size: 11px;
  text-align: center;
}

body.page .content-main .new-feature {
  display: flex;
  background: #fff;
  padding: 0.5em 1em;
  border-radius: 5px;
  color: #267bc5;
  font-size: .8em;
  line-height: 1.3;
  margin-bottom: 1rem;
}

@media screen and (max-width: 780px) {
  body.page .content-main .useimage {
    margin-bottom: 5em;
    display: block;
    background: none;
  }
  body.page .content-main .useimage .for-family,
  body.page .content-main .useimage .for-child {
    padding: 0;
  }
  body.page .content-main .useimage-child .container, body.page .content-main .useimage-family .container {
    width: auto;
  }
  body.page .content-main .useimage-child .container h3, body.page .content-main .useimage-family .container h3 {
    font-size: 2rem;
  }
  body.page .content-main .useimage-child .container .span-5.col, body.page .content-main .useimage-family .container .span-5.col {
    text-align: center;
  }
}

/* = Support
-------------------------------------------------------------- */
body.page .content-main .sup-ex {
  border: 1px solid #b0daff;
  background: #fff;
  padding: 1em 2em;
  margin: .5em;
  border-radius: 5px;
}

body.page .content-main .sup-ex strong {
  color: #1b179e;
}

body.page .content-main .list_support {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

body.page .content-main .list_support li {
  list-style: none;
  padding: 0;
  background: none !important;
  flex-basis: 32%;
}

body.page .content-main .list_support a {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: bold;
  padding-right: 1em;
  text-shadow: 0 0 5px #019b30;
  background: linear-gradient(to bottom, #60dd48, #129b61);
  border-radius: 200px;
}

body.page .content-main .list_support a:hover {
  background: linear-gradient(to bottom, #3eb73c, #128755);
}

body.page .content-main .list_support img {
  flex-basis: 35%;
  padding: 1em;
  max-width: 50%;
}

body.page .content-main .list_support img:hover {
  opacity: 1;
}

body.page .content-main .list_support span {
  flex-basis: 65%;
}

body.page .content-main .box_faq {
  background: #f4f3ec;
  border: 1px solid #d7d2ba;
  border-radius: 10px;
  padding: 1em 2em;
  margin-top: 5em;
}

body.page .content-main .box_faq h4 {
  margin-top: 0;
  text-align: left;
}

body.page .content-main .box_faq dl {
  background: #fff;
  border: 1px solid #d7d2ba;
  border-radius: 10px;
  background: url("../img/ico_q.png") 1em 1em #fff no-repeat;
  background-size: 30px 30px;
}

@media screen and (max-width: 550px) {
  body.page .content-main .list_support li {
    list-style: none;
    flex-basis: 100%;
    font-size: 1.75rem;
  }
  body.page .content-main .list_support li img {
    max-width: 27%;
    padding: .5em;
  }
}

/* = QA
-------------------------------------------------------------- */
body.page .content-main dt.q {
  padding: 1em 1em 1rem 3.5em;
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1.5;
}

body.page .content-main dd.a {
  position: relative;
  margin: 0 1em 1em 3em;
  padding: 1em 1em 1em 4em !important;
  background: url("../img/ico_a.png") 15px 15px #f8f7f3 no-repeat;
  background-size: 30px 30px;
  border-radius: 10px;
}

body.page .content-main dd.a .contact_info {
  margin: 1em 0 0 0;
  border: 1px solid #e2e2e2;
  padding: 0.75em 1.25em;
  border-radius: 5px;
  background: #fff;
}

body.page .content-main dd.a .contact_info strong {
  color: navy;
}

body.page .content-main dd.a:before {
  content: '';
  width: 1px;
  height: calc(100% - 1em);
  position: absolute;
  background: #e0e0e0;
  top: .5em;
  left: 3.5em;
  border: 0;
}

@media screen and (max-width: 550px) {
  body.page .content-main .box_faq {
    padding: 0.5em;
  }
  body.page .content-main .box_faq dl {
    background: url("../img/ico_q.png") 1em 1em #fff no-repeat;
    background-size: 30px 30px;
  }
  body.page .content-main dt.q {
    padding: 0.5em 0.5em 0.5em 3em;
    min-height: 60px;
  }
  body.page .content-main dd.a {
    margin: 0;
    padding: 1em 0.5em 1.5em 4.5em !important;
    border-radius: 0 0 10px 10px;
    margin-bottom: 0 !important;
    min-height: 60px;
  }
}

/* = Doko Support
-------------------------------------------------------------- */
body.page .content-main .box_dokosupport {
  border: 1px solid #58a540;
  border-radius: 10px;
  background: linear-gradient(to bottom, #aad882, #fcfff5);
  padding: 1em;
}

body.page .content-main .box_dokosupport_header {
  display: flex;
  margin: 1em;
  justify-content: center;
  width: 70%;
  margin: 0 auto 1em;
  align-items: flex-start;
}

body.page .content-main .sup_ico_dokosupport {
  flex-basis: 15%;
  max-width: 15%;
  height: auto;
}

body.page .content-main .sup_h_dokosupport {
  flex-basis: 80%;
  max-width: 80%;
  height: auto;
}

body.page .content-main .box_dokosupport_header img {
  margin: 0.5em;
}

body.page .content-main .box_dokosupport_normal {
  background: #e2ffff;
  border: 3px solid #23308c;
  border-radius: 10px;
  margin: 0 2em 4em;
  padding: 0.5em;
  display: flex;
  align-items: center;
  position: relative;
}

body.page .content-main .box_dokosupport_normal:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -30px;
  border: 30px solid transparent;
  border-top: 30px solid #23308c;
}

body.page .content-main .sup_h_normal {
  flex-basis: 35%;
  max-width: 35%;
  padding: 15px 30px;
  background: #23308c;
  border-radius: 10px;
  margin: 0 1em 0 0.5em;
  height: auto;
}

body.page .content-main .sup_txt_normal {
  flex-basis: 55%;
  max-width: 55%;
  margin-bottom: 0;
}

body.page .content-main .box_dokosupport_compensation {
  margin: 1em 2em;
  padding: 0.5em;
  background: #fff7cd;
  border: 3px solid #ef8b34;
  border-radius: 10px;
  text-align: center;
}

body.page .content-main .box_dokosupport_compensation div:nth-child(1) {
  padding: 0.5em;
  background: #ef8b34;
  border-radius: 10px;
  margin: -2em 5% 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

body.page .content-main .box_dokosupport_compensation div:nth-child(1) img {
  padding-top: 0.5em;
  width: 80%;
  height: auto;
}

body.page .content-main .box_dokosupport_compensation div:nth-child(2) {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  margin: 1em 0 1em;
}

body.page .content-main .sup_txt_1 {
  flex-basis: 55%;
  max-width: 55%;
  margin-right: 1em;
}

body.page .content-main .sup_txt_2 {
  flex-basis: 35%;
  max-width: 35%;
  height: auto;
}

body.page .content-main .sup_txt_3 {
  width: 60%;
}

body.page .content-main .hide_pc {
  display: none;
}

body.page .content-main .hide_sp {
  display: inline;
}

@media screen and (max-width: 550px) {
  body.page .content-main .box_dokosupport_header {
    display: block;
    text-align: center;
    width: 100%;
  }
  body.page .content-main .sup_ico_dokosupport {
    max-width: 20%;
    height: auto;
  }
  body.page .content-main .sup_h_dokosupport {
    max-width: 90%;
    height: auto;
  }
  body.page .content-main .box_dokosupport_normal {
    display: block;
    margin: 0 0 3em;
  }
  body.page .content-main .box_dokosupport_normal:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -20px;
    border: 20px solid transparent;
    border-top: 20px solid #23308c;
  }
  body.page .content-main .sup_h_normal {
    max-width: 100%;
    margin: 0;
  }
  body.page .content-main .sup_txt_normal {
    max-width: 90%;
    margin: 0.5em 5%;
  }
  body.page .content-main .box_dokosupport_compensation {
    margin: 0;
  }
  body.page .content-main .box_dokosupport_compensation div:nth-child(1) {
    position: static;
    max-width: 100%;
    margin: 0;
  }
  body.page .content-main .box_dokosupport_compensation div:nth-child(2) {
    margin: 1em 0 0;
    display: block;
  }
  body.page .content-main .sup_txt_1 {
    max-width: 100%;
  }
  body.page .content-main .sup_txt_2 {
    max-width: 50%;
  }
  body.page .content-main .sup_txt_3 {
    width: 90%;
  }
  body.page .content-main .hide_pc {
    display: inline;
  }
  body.page .content-main .hide_sp {
    display: none;
  }
}

/* = Corp Profile
-------------------------------------------------------------- */
body.page .content-main .profile {
  display: flex;
  flex-wrap: wrap;
}

body.page .content-main .profile dt {
  position: relative;
  width: 20%;
  margin-bottom: 2rem;
  font-weight: bold;
  background: #fefdf7;
  padding: 1rem 0 0 5px;
}

body.page .content-main .profile dt::before {
  width: 100%;
  height: 1px;
  content: '';
  background: #d0c7ba;
  position: absolute;
  top: 0;
  left: 0;
}

body.page .content-main .profile dd {
  position: relative;
  width: 80%;
  margin-bottom: 2rem;
  padding: 1rem 0 0 5px;
}

body.page .content-main .profile dd::before {
  width: 100%;
  height: 1px;
  content: '';
  background: #d0c7ba;
  position: absolute;
  top: 0;
  left: 0;
}

body.page .content-main .profile dd table th {
  white-space: nowrap;
}

@media screen and (max-width: 550px) {
  body.page .content-main .profile {
    display: block;
    margin-top: 1rem;
  }
  body.page .content-main .profile dt {
    width: 100%;
    border-top: 2px solid #d0c7ba;
    margin-bottom: 1rem;
  }
  body.page .content-main .profile dt::before {
    display: none;
  }
  body.page .content-main .profile dd {
    width: 100%;
  }
  body.page .content-main .profile dd::before {
    display: none;
  }
}

/* = Change Plan
-------------------------------------------------------------- */
body.page .content-main .kirikae-rental {
  background: #e08815;
}

body.page .content-main .kirikae-kaitori {
  background: #63b73b;
}

body.page .content-main .change-g h4 {
  margin-top: 0;
}

body.page .content-main .change-g table {
  font-size: .9em;
}

body.page .content-main .change-g table caption {
  color: #1b179e;
}

body.page .content-main .change-g table th {
  text-align: center;
  line-height: 1.2;
  font-weight: normal;
}

body.page .content-main .change-g table th, body.page .content-main .change-g table td {
  width: 33.3333%;
}

body.page .content-main .change-g table td:first-child {
  white-space: nowrap;
}

body.page .content-main .change-g table thead {
  font-weight: bold;
  border-bottom: 2px solid #000;
}

body.page .content-main .change-g table thead th:nth-child(2) {
  color: red;
}

body.page .content-main .change-g table td:nth-child(1), body.page .content-main .change-g table td:nth-child(2) {
  font-weight: bold;
}

body.page .content-main .change-g table tfoot {
  background: #fafafa;
  font-weight: bold;
  border-top: 2px solid #000;
}

/* フォーム関連 */
select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"] {
  color: #000;
  background-color: #fafafa;
  border: 1px solid #dbdbdb;
  height: 50px;
  padding: 6px 6px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
  height: auto;
  margin-right: 3px;
  max-width: 100%;
  font-size: 1.25em;
}

.mw_wp_form dl {
  padding: 0.25em 0 0.1em 0.75em;
  border-top: 1px solid #dbdbdb;
  margin-bottom: 0em;
  display: flex;
}

.mw_wp_form dt {
  flex: 5;
  padding: .25em;
  text-align: right;
}

.mw_wp_form dd {
  flex: 18;
  border-left: 1px solid #dbdbdb;
  padding: .5em;
}

#mw_wp_form_mw-wp-form-172 table tr:nth-child(2n) td {
  background: #f6f6f6;
}

#mw_wp_form_mw-wp-form-172 table th {
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
}

#mw_wp_form_mw-wp-form-172 table td {
  white-space: nowrap;
}

.form_req,
.form_nin {
  display: inline-block;
  background: #c30000;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  padding: 3px 5px;
  border-radius: 3px;
  margin: 0 3px;
  position: relative;
  top: -2px;
}

.form_nin {
  background: #a39661;
}

.form_note {
  font-size: .8em;
  line-height: 1.2;
  display: block;
  padding: .5em 0 0 0;
}

.txtbox {
  border: #cacaca 1px solid;
  background: #fff;
  padding: 1em;
  margin: 1em 0;
  height: 200px;
  overflow-y: auto;
  font-size: .95em;
  line-height: 1.3;
  border-radius: 7px;
}

.txtbox::-webkit-scrollbar {
  background: #ccc;
  width: 10px;
  border-radius: 0 5px 5px 0;
}

.txtbox::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 5px;
}

input[type="button"] {
  background-color: #222;
  border: 0;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  padding: 0.5em 6em;
  text-shadow: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  font-size: 30px;
}

input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  background: #767676;
  color: #fff;
}

input[type="submit"],
.search-submit {
  cursor: pointer;
  background: none;
  border: none;
  color: #000;
  font-size: 18px;
  margin: 0 10px;
  padding: 10px 24px;
  border: 1px solid #E0E0E0;
  text-shadow: 0px 1px 1px #E8E8E8;
  background: #f7f7f7;
  background: linear-gradient(top, #f7f7f7 1%, #f2f2f2 100%);
  border-radius: 5px;
  box-shadow: 0px 1px 1px #FFF inset, 0 0 0px 5px #EAEAEA;
  transition: all 0.2s linear;
  width: auto !important;
}

@media screen and (max-width: 650px) {
  .mw_wp_form dl {
    display: block;
  }
  .mw_wp_form dt {
    text-align: left;
  }
  .mw_wp_form dd {
    border-left: none;
  }
}

/*検索結果
-----------------------------------*/
body .content-main .search-result-content {
  background: #fff;
  border: 1px solid #d7d2ba;
  border-radius: 10px;
  margin-bottom: 1rem;
  padding: 1rem 3rem;
}

body .content-main .search-result-content .search-entry-title {
  font-size: 1.2em;
  font-weight: bold;
}

body .content-main .search-result-content p {
  margin-bottom: 0;
}

body .content-main .wp-pagenavi {
  margin: 3rem 0;
}

body .content-main .wp-pagenavi a, body .content-main .wp-pagenavi span {
  display: inline-block;
  padding: 0.5rem 2rem;
  border-radius: 19px;
  background: #fff;
}

body .content-main .wp-pagenavi span.current {
  background: #c7dfff;
}

/*プリント用
-----------------------------------*/
＠media print body {
  width: 1024px !important;
  transform: scale(0.6);
  -moz-transform: scale(0.6);
  -webkit-transform: scale(0.6);
  transform-origin: 0 0;
}

＠media print .header {
  display: block !important;
}

/*PR2021 2021/03/12
-------------------------------------*/
#pr2021_slider {
  position: relative;
  margin: 0;
  width: 100%;
}

#pr2021_wrapper {
  width: 100%;
  overflow: hidden;
}

#carousel li {
  margin: 0;
  border: none;
  display: block;
  float: left;
}

#carousel li img {
  width: 100%;
  height: auto;
}

body.page-template-page-pr2021 {
  background: #fff;
}

body.page-template-page-pr2021 .page-header {
  height: auto;
  background: #036eb0;
}

body.page-template-page-pr2021 .page-header .page-title-wrapper .page-title {
  margin: 3rem 0;
  z-index: 1;
}

body.page-template-page-pr2021 .page-header .page-title-wrapper .page-title img {
  width: 40%;
}

body.page-template-page-pr2021 .content-main {
  background: #fff;
}

body.page-template-page-pr2021 .content-main .pr2021_nav {
  padding: 3em 0 0 0;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}

body.page-template-page-pr2021 .content-main .pr2021_nav a {
  margin: 0 2px;
}

body.page-template-page-pr2021 .content-main section {
  overflow-x: hidden;
}

body.page-template-page-pr2021 .content-main .vertical {
  /* -ms-writing-mode: tb-rl;
	  -webkit-writing-mode: vertical-rl;
	  text-orientation: upright;
	  writing-mode: vertical-rl;
		text-align: center;*/
}

body.page-template-page-pr2021 .content-main .vertical p {
  padding: 0;
  margin: 0;
}

body.page-template-page-pr2021 .content-main h2::after {
  display: none;
}

body.page-template-page-pr2021 .content-main #pr2021_02 {
  background: fixed url(/imgs/pr2021_bg_bl.jpg) center top;
  background-size: cover;
}

body.page-template-page-pr2021 .content-main #pr2021_02 h2 {
  position: relative;
  padding: 100px 0 0 0;
  margin-bottom: -20%;
  z-index: 1;
  width: 500px;
}

body.page-template-page-pr2021 .content-main #pr2021_02 #pr2021_do {
  position: relative;
}

body.page-template-page-pr2021 .content-main #pr2021_02 #pr2021_do .pr2021_do:nth-child(odd) {
  float: right;
  right: -36px;
}

body.page-template-page-pr2021 .content-main #pr2021_02 #pr2021_do .pr2021_do:nth-child(even) {
  float: left;
  left: -36px;
}

body.page-template-page-pr2021 .content-main #pr2021_02 #pr2021_do .pr2021_circle {
  position: relative;
  margin-bottom: -190px;
  width: 610px;
  height: 610px;
  background: #fff;
  box-shadow: 0px 0px 15px -5px #018094;
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
}

body.page-template-page-pr2021 .content-main #pr2021_02 #pr2021_do .pr2021_circle figure {
  margin-bottom: .5em;
}

body.page-template-page-pr2021 .content-main #pr2021_02 #pr2021_do .pr2021_circle figure img {
  width: 100%;
  height: auto;
}

body.page-template-page-pr2021 .content-main #pr2021_02 #pr2021_do .pr2021_circle h2 {
  margin: 0 auto;
  padding: 0;
  line-height: 1;
}

body.page-template-page-pr2021 .content-main #pr2021_02 #pr2021_do .pr2021_circle h2::after {
  display: none;
}

body.page-template-page-pr2021 .content-main #pr2021_02 #pr2021_do .pr2021_circle h2 img {
  height: 42px;
  width: auto;
  margin-bottom: 6px;
}

body.page-template-page-pr2021 .content-main #pr2021_02 #pr2021_do .pr2021_circle div {
  margin: 0 auto 0.2em auto;
  text-align: center;
}

body.page-template-page-pr2021 .content-main #pr2021_02 #pr2021_do .pr2021_circle div img {
  margin: 0 auto;
  height: auto;
  width: 360px;
}

body.page-template-page-pr2021 .content-main #pr2021_02 #pr2021_do .pr2021_circle_end {
  margin-top: 110px;
  right: 0;
  width: 600px;
  position: relative;
  padding-bottom: 68px;
}

body.page-template-page-pr2021 .content-main #pr2021_03, body.page-template-page-pr2021 .content-main #pr2021_04 {
  clear: both;
  position: relative;
  min-height: 730px;
  padding: 68px 0;
}

body.page-template-page-pr2021 .content-main #pr2021_03 h2, body.page-template-page-pr2021 .content-main #pr2021_04 h2 {
  margin: 0;
  padding: 2em 0 0.5em 0;
}

body.page-template-page-pr2021 .content-main #pr2021_03 h2 img, body.page-template-page-pr2021 .content-main #pr2021_04 h2 img {
  width: 480px;
  height: auto;
}

body.page-template-page-pr2021 .content-main #pr2021_03 .pr2021_img_circle, body.page-template-page-pr2021 .content-main #pr2021_04 .pr2021_img_circle {
  position: absolute;
  border-radius: 50%;
  width: 630px;
  height: 630px;
  overflow: hidden;
  box-shadow: 0px 0px 15px -5px #777777;
}

body.page-template-page-pr2021 .content-main #pr2021_03 .pr2021_contbody, body.page-template-page-pr2021 .content-main #pr2021_04 .pr2021_contbody {
  width: 40%;
  text-shadow: 0 0 3px white;
}

body.page-template-page-pr2021 .content-main #pr2021_03 .pr2021_contbody a.btn, body.page-template-page-pr2021 .content-main #pr2021_04 .pr2021_contbody a.btn {
  text-shadow: none;
}

body.page-template-page-pr2021 .content-main #pr2021_03 .pr2021_img_circle {
  left: -36px;
}

body.page-template-page-pr2021 .content-main #pr2021_03 .pr2021_contbody {
  right: 0;
  margin: 0 0 0 auto;
}

body.page-template-page-pr2021 .content-main #pr2021_04 {
  margin-top: -20px;
}

body.page-template-page-pr2021 .content-main #pr2021_04 .pr2021_img_circle {
  top: 0;
  right: -36px;
}

body.page-template-page-pr2021 .content-main #pr2021_04 .pr2021_contbody {
  left: 0;
  margin: 0 auto 0 0;
}

body.page-template-page-pr2021 .content-main #pr2021_05 {
  clear: both;
}

body.page-template-page-pr2021 .content-main #pr2021_06 {
  padding: 68px 0;
  background: fixed url(/imgs/pr2021_bg_bl.jpg) center top;
  background-size: cover;
}

body.page-template-page-pr2021 .content-main #pr2021_06 h2 {
  text-align: center;
  padding: 0;
}

body.page-template-page-pr2021 .content-main #pr2021_06 table.comparisontable thead th {
  text-align: center;
}

body.page-template-page-pr2021 .content-main #pr2021_06 table.comparisontable tr th {
  vertical-align: middle;
}

body.page-template-page-pr2021 .content-main #pr2021_06 table.comparisontable tr td {
  vertical-align: middle;
}

body.page-template-page-pr2021 .content-main #pr2021_06 table.comparisontable tr td.pr2021_tc {
  text-align: center;
  line-height: 1;
}

body.page-template-page-pr2021 .content-main #pr2021_iroiro {
  padding: 68px 0;
  background: fixed url(/imgs/pr2021_bg_gr.jpg) center top;
  background-size: cover;
}

body.page-template-page-pr2021 .content-main #pr2021_iroiro h2 {
  text-align: center;
  padding: 0;
}

body.page-template-page-pr2021 .content-main #pr2021_iroiro h2 img {
  max-width: 420px;
  height: auto;
}

body.page-template-page-pr2021 .content-main #pr2021_iroiro .pr2021_use {
  border-radius: 25px;
  padding: 1em 2em;
  margin-bottom: 1em;
  background: #fff;
  box-shadow: 0 0 7px 1px #7bd815;
}

body.page-template-page-pr2021 .content-main #pr2021_iroiro .pr2021_use .imgs {
  display: flex;
  flex-wrap: nowrap;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: .5em;
}

body.page-template-page-pr2021 .content-main #pr2021_iroiro .pr2021_use .imgs a {
  display: inline-block;
  width: 100%;
  line-height: 0;
}

body.page-template-page-pr2021 .content-main #pr2021_iroiro .pr2021_use p {
  margin-bottom: 0;
}

body.page-template-page-pr2021 .content-main #pr2021_iroiro .tosns {
  text-align: center;
}

body.page-template-page-pr2021 .content-main #pr2021_iroiro .tosns div {
  display: inline-block;
  background: #fff;
  padding: 1em 1.5em;
  border-radius: 30px;
  box-shadow: 0 0 7px 1px #7bd815;
  text-align: center;
  font-weight: bold;
}

body.page-template-page-pr2021 .content-main table.radius {
  border: 1px solid #aaa;
  border-collapse: separate;
  overflow: hidden;
  border-spacing: 0;
  border-radius: 10px;
  border: 1px solid #aaa;
}

body.page-template-page-pr2021 .content-main table.radius th, body.page-template-page-pr2021 .content-main table.radius td {
  border-right: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  border-top: none;
  border-left: none;
}

body.page-template-page-pr2021 .content-main table.radius th:last-child, body.page-template-page-pr2021 .content-main table.radius td:last-child {
  border-right: none;
}

body.page-template-page-pr2021 .content-main table.radius th {
  background: #f1f1f1;
}

body.page-template-page-pr2021 .content-main table.radius td {
  background: #fff;
}

body.page-template-page-pr2021 .content-main table.radius tbody tr:last-child th, body.page-template-page-pr2021 .content-main table.radius tbody tr:last-child td {
  border-bottom: none;
}

body.page-template-page-pr2021 .content-main table.radius2 {
  border: 1px solid #aaa;
  border-collapse: separate;
  overflow: hidden;
  border-spacing: 0;
  border-radius: 10px;
  text-align: center;
}

body.page-template-page-pr2021 .content-main table.radius2 th, body.page-template-page-pr2021 .content-main table.radius2 td {
  border: none;
}

body.page-template-page-pr2021 .content-main table.radius2 th + th, body.page-template-page-pr2021 .content-main table.radius2 th + td, body.page-template-page-pr2021 .content-main table.radius2 td + th, body.page-template-page-pr2021 .content-main table.radius2 td + td {
  border-left: 1px solid #aaa;
}

body.page-template-page-pr2021 .content-main table.radius2 th {
  background: #f1f1f1;
}

body.page-template-page-pr2021 .content-main table.radius2 td {
  background: #fff;
}

body.page-template-page-pr2021 .content-main table.radius2 tr + tr th, body.page-template-page-pr2021 .content-main table.radius2 tr + tr td {
  border-top: 1px solid #aaa;
}

@media screen and (max-width: 915px) {
  body.page-template-page-pr2021 .content-main #pr2021_02 h2 {
    width: 70%;
    height: auto;
    padding: 20px 0;
    margin: 0 auto 0 auto;
  }
  body.page-template-page-pr2021 .content-main #pr2021_02 #pr2021_do .pr2021_do:nth-child(odd),
  body.page-template-page-pr2021 .content-main #pr2021_02 #pr2021_do .pr2021_do:nth-child(even) {
    right: 0;
    left: 0;
  }
  body.page-template-page-pr2021 .content-main #pr2021_02 #pr2021_do .pr2021_circle_end {
    float: none !important;
    margin: 0 auto;
  }
  body.page-template-page-pr2021 .content-main #pr2021_02 #pr2021_do .pr2021_circle {
    margin-bottom: -4em;
  }
  body.page-template-page-pr2021 .content-main #pr2021_02 #pr2021_do .pr2021_circle h2 {
    width: 70%;
    height: 10%;
  }
  body.page-template-page-pr2021 .content-main #pr2021_02 #pr2021_do .pr2021_circle h2 img {
    width: auto;
    height: 70%;
  }
  body.page-template-page-pr2021 .content-main #pr2021_02 #pr2021_do .pr2021_circle div {
    width: 55%;
  }
  body.page-template-page-pr2021 .content-main #pr2021_02 #pr2021_03 .pr2021_contbody, body.page-template-page-pr2021 .content-main #pr2021_02 #pr2021_04 .pr2021_contbody {
    position: relative;
  }
}

@media screen and (max-width: 800px) {
  body.page-template-page-pr2021 .content-main #pr2021_03, body.page-template-page-pr2021 .content-main #pr2021_04 {
    min-height: inherit;
  }
  body.page-template-page-pr2021 .content-main #pr2021_03 .container, body.page-template-page-pr2021 .content-main #pr2021_04 .container {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
  }
  body.page-template-page-pr2021 .content-main #pr2021_03 .pr2021_img_circle, body.page-template-page-pr2021 .content-main #pr2021_04 .pr2021_img_circle {
    width: 50%;
    height: fit-content;
    position: relative;
  }
  body.page-template-page-pr2021 .content-main #pr2021_03 .pr2021_contbody, body.page-template-page-pr2021 .content-main #pr2021_04 .pr2021_contbody {
    width: 50%;
  }
  body.page-template-page-pr2021 .content-main #pr2021_03 .pr2021_contbody h2, body.page-template-page-pr2021 .content-main #pr2021_04 .pr2021_contbody h2 {
    padding: 0 0 0.5em 0;
  }
  body.page-template-page-pr2021 .content-main #pr2021_04 .container {
    flex-direction: row-reverse;
  }
}

@media screen and (max-width: 550px) {
  body.page-template-page-pr2021 .content-main .pr2021_nav {
    padding: 2em 0;
    flex-wrap: wrap;
  }
  body.page-template-page-pr2021 .content-main .pr2021_nav a {
    width: 36%;
  }
  body.page-template-page-pr2021 .content-main #pr2021_02 .container {
    overflow: hidden;
  }
  body.page-template-page-pr2021 .content-main #pr2021_02 .container #pr2021_do .pr2021_circle {
    width: 350px;
    height: 350px;
    margin-bottom: -1.5em;
  }
  body.page-template-page-pr2021 .content-main #pr2021_02 .container #pr2021_do .pr2021_circle_end {
    max-width: 70%;
    margin: 0 auto;
    position: relative;
    top: 3em;
  }
  body.page-template-page-pr2021 .content-main #pr2021_03, body.page-template-page-pr2021 .content-main #pr2021_04 {
    padding: 34px 0;
  }
  body.page-template-page-pr2021 .content-main #pr2021_03 .container, body.page-template-page-pr2021 .content-main #pr2021_04 .container {
    flex-wrap: wrap;
  }
  body.page-template-page-pr2021 .content-main #pr2021_03 .container .pr2021_img_circle, body.page-template-page-pr2021 .content-main #pr2021_04 .container .pr2021_img_circle {
    left: 0;
    right: 0;
    width: 80%;
    height: initial;
    margin: 0 auto -2em auto;
    box-shadow: none;
  }
  body.page-template-page-pr2021 .content-main #pr2021_03 .container .pr2021_contbody, body.page-template-page-pr2021 .content-main #pr2021_04 .container .pr2021_contbody {
    width: 100%;
  }
}

.whatlogo {
  width: 33vw !important;
  max-width: 400px !important;
  height: auto !important;
}

/*# sourceMappingURL=style.map */