@charset "UTF-8";
htmal {
  width: 100%;
}

@media print, screen and (min-width: 768px) {
  ._sp {
    display: none;
  }
}

._pc {
  display: none;
}
@media print, screen and (min-width: 768px) {
  ._pc {
    display: block;
  }
}

body {
  font-size: 16px;
  line-height: 1.5;
  font-family: "ヒラギノ明朝 Pro";
}

a {
  color: white;
  text-decoration: none;
}

img {
  width: 100%;
}

.header {
  background-color: #4D0000;
  display: flex;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  z-index: 1;
}
@media print, screen and (max-width: 768px) {
  .header {
    display: block;
    background-color: initial;
  }
}

.header-fixed {
  padding-left: 30px;
  /* デフォルトのbuttonスタイルをリセット */
}
@media print, screen and (max-width: 768px) {
  .header-fixed {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 30px;
    background-color: #4D0000;
  }
}
.header-fixed .header-logo {
  width: 150px;
  margin: 19px 0;
}
.header-fixed button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  margin: 0;
  outline: none;
  padding: 0;
  vertical-align: middle;
}
.header-fixed .nav-btn {
  display: none;
}
@media print, screen and (max-width: 768px) {
  .header-fixed .nav-btn {
    display: block;
    width: 52px;
    height: 30px;
    position: relative;
    z-index: 3;
    border: none;
  }
  .header-fixed .nav-btn .bar {
    width: 52px;
    height: 1px;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
  }
  .header-fixed .nav-btn .bar_top {
    top: 0;
  }
  .header-fixed .nav-btn .bar_mid {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .header-fixed .nav-btn .bar_bottom {
    bottom: 0;
  }
  .header-fixed .nav-btn.-active span {
    top: 0;
    bottom: 0;
    margin: auto;
    transition: transform 0.3s ease;
    left: 0;
  }
  .header-fixed .nav-btn.-active .bar_top {
    transform: rotate(45deg);
  }
  .header-fixed .nav-btn.-active .bar_mid {
    transform: rotate(45deg);
  }
  .header-fixed .nav-btn.-active .bar_bottom {
    transform: rotate(-45deg);
  }
}

.header-nav {
  display: flex;
  align-items: center;
}
.header-nav.-active {
  display: flex;
  transition: display 0.3s;
}
@media print, screen and (max-width: 768px) {
  .header-nav {
    display: none;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
  }
}
@media print, screen and (max-width: 768px) {
  .header-nav .nav-wrap {
    height: 246px;
    display: flex;
    align-items: center;
  }
}
.header-nav .nav-wrap .nav-list {
  display: flex;
}
@media print, screen and (max-width: 768px) {
  .header-nav .nav-wrap .nav-list {
    flex-direction: column;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  }
}
.header-nav .nav-wrap .nav-list .item {
  margin-right: 20px;
  font-size: 18px;
}
@media print, screen and (max-width: 768px) {
  .header-nav .nav-wrap .nav-list .item {
    font-size: 24px;
    margin: 0;
    text-align: center;
    margin-bottom: 20px;
    line-height: 24px;
  }
}
.header-nav .nav-wrap .nav-list .item:nth-child(4) {
  margin-right: 40px;
}
@media print, screen and (max-width: 768px) {
  .header-nav .nav-wrap .nav-list .item:nth-child(4) {
    margin: 0;
  }
}

main {
  background-color: black;
}
@media print, screen and (max-width: 768px) {
  main {
    padding-bottom: 80px;
  }
}

.cmn-section {
  color: white;
}
.cmn-section .inner .cmn-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
}
.cmn-section .inner .cmn-title .main {
  font-size: 32px;
  margin-bottom: 40px;
}
@media print, screen and (max-width: 768px) {
  .cmn-section .inner .cmn-title .main {
    font-size: 32px;
    margin-bottom: 34px;
  }
}
.cmn-section .inner .cmn-title .sub {
  font-size: 20px;
}

.features-cont {
  margin-top: 60px;
}
.features-cont .features-list .features-item {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
@media print, screen and (max-width: 768px) {
  .features-cont .features-list .features-item {
    flex-direction: column-reverse;
    padding-bottom: 60px;
  }
}
.features-cont .features-list .features-item .text {
  width: 50%;
  padding: 0 7.2%;
}
@media print, screen and (max-width: 768px) {
  .features-cont .features-list .features-item .text {
    width: auto;
  }
}
.features-cont .features-list .features-item .text .title {
  font-size: 28px;
  margin-bottom: 50px;
}
@media print, screen and (max-width: 768px) {
  .features-cont .features-list .features-item .text .title {
    font-size: 18px;
    margin-top: 40px;
    box-sizing: border-box;
  }
}
.features-cont .features-list .features-item .text .desc {
  font-size: 18px;
  margin-bottom: 60px;
}
@media print, screen and (max-width: 768px) {
  .features-cont .features-list .features-item .text .desc {
    font-size: 16px;
  }
}
.features-cont .features-list .features-item .text .foatures-link {
  text-align: center;
}
@media print, screen and (max-width: 768px) {
  .features-cont .features-list .features-item .text .foatures-link {
    width: 155px;
    margin: 0 auto;
  }
}
.features-cont .features-list .features-item .text .foatures-link a {
  background-color: rgba(184, 134, 11, 0.9176470588);
  padding: 11px 30px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 5px;
}
@media print, screen and (max-width: 768px) {
  .features-cont .features-list .features-item .text .foatures-link a {
    display: block;
    padding: 0;
    padding: 12px 0;
  }
}
.features-cont .features-list .features-item .image {
  width: 50%;
}
@media print, screen and (max-width: 768px) {
  .features-cont .features-list .features-item .image {
    width: 100%;
  }
}
.features-cont .features-list .features-item .image img {
  width: 100%;
}
.features-cont .features-list .features-item:nth-child(2) {
  flex-direction: row;
}
@media print, screen and (max-width: 768px) {
  .features-cont .features-list .features-item:nth-child(2) {
    flex-direction: column-reverse;
  }
  .features-cont .features-list .features-item:nth-child(2) .text {
    padding: 0;
  }
  .features-cont .features-list .features-item:nth-child(2) .text .title {
    padding: 0 4.2666666667%;
  }
  .features-cont .features-list .features-item:nth-child(2) .text .desc {
    padding: 0 7.2%;
  }
}
@media print, screen and (max-width: 768px) {
  .features-cont .features-list .features-item:nth-child(3) {
    padding-bottom: 0;
  }
}

.plan .inner .rec {
  margin-top: 60px;
}
.plan .inner .rec .rec-slick .rec-item {
  display: flex;
  flex-flow: column-reverse;
  color: black;
  border-radius: 8px;
  margin: 0 10px;
  height: 479.69px;
  width: 25.15625%;
}
.plan .inner .rec .rec-slick .rec-item .text {
  padding: 24px 25px 50px;
  background-color: white;
}
.plan .inner .rec .rec-slick .rec-item .text .title {
  font-size: 16px;
  height: 50px;
}
.plan .inner .rec .rec-slick .rec-item .text .price {
  font-size: 14px;
  margin-top: 66px;
}
.plan .inner .rec .rec-slick .rec-item .text .price span {
  color: red;
}
.plan .inner .service .service-wrap {
  margin-top: 102px;
}
@media print, screen and (max-width: 768px) {
  .plan .inner .service .service-wrap {
    padding: 0 7.2%;
  }
}
.plan .inner .service .service-wrap .service-list {
  display: flex;
  justify-content: center;
}
@media print, screen and (max-width: 768px) {
  .plan .inner .service .service-wrap .service-list {
    flex-direction: column;
  }
}
.plan .inner .service .service-wrap .service-list .service-item {
  display: flex;
  flex-flow: column-reverse;
  width: 30.390625%;
  background-color: grey;
  margin-right: 20px;
  padding-bottom: 76px;
  align-items: center;
}
@media print, screen and (max-width: 768px) {
  .plan .inner .service .service-wrap .service-list .service-item {
    width: auto;
    margin: 0;
    margin-bottom: 30px;
  }
}
.plan .inner .service .service-wrap .service-list .service-item:nth-child(3) {
  margin-right: 0;
}
.plan .inner .service .service-wrap .service-list .service-item .text {
  color: black;
  width: 87.6606683805%;
}
.plan .inner .service .service-wrap .service-list .service-item .text .title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
}
.plan .inner .service .service-wrap .service-list .service-item .text .desc-cont {
  height: 108px;
}
.plan .inner .service .service-wrap .service-list .service-item .text .desc {
  font-size: 18px;
}
.plan .inner .service .service-wrap .service-list .service-item .image {
  width: 160px;
}
.blog .blog-cont {
  margin: 64px 70px 0;
}
@media print, screen and (max-width: 768px) {
  .blog .blog-cont {
    margin-left: 0;
    margin-right: 0;
    padding: 0 7.2%;
  }
}
.blog .blog-cont .blog-list .row {
  display: flex;
  margin-bottom: 27px;
}
.blog .blog-cont .blog-list .row dt {
  color: white;
  background-color: #4D0000;
  width: 157px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}
@media print, screen and (max-width: 768px) {
  .blog .blog-cont .blog-list .row dt {
    width: 23.4375%;
    font-size: 13px;
  }
}
.blog .blog-cont .blog-list .row dd {
  font-size: 24px;
  margin-left: 20px;
}
.blog .blog-cont .blog-list .row dd a {
  text-decoration: underline;
}
@media print, screen and (max-width: 768px) {
  .blog .blog-cont .blog-list .row dd {
    width: 76.5625%;
    margin: 0;
    padding-left: 20px;
    box-sizing: border-box;
  }
  .blog .blog-cont .blog-list .row dd a {
    font-size: 16px;
  }
}
.blog .blog-cont .blog-link {
  margin: 50px auto 0;
  width: 150px;
}
.blog .blog-cont .blog-link a {
  width: 100%;
  height: 37px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  background-color: rgba(184, 134, 11, 0.9176470588);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 5px;
}
@media print, screen and (max-width: 768px) {
  .blog .blog-cont .blog-link {
    margin-top: 40px;
  }
}

.top {
  height: 674px;
  background-image: url("../image/top-bg.png");
  background-size: cover;
  background-position: center;
  padding-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top .top-title {
  text-align: center;
  color: white;
  font-size: 50px;
}
@media print, screen and (max-width: 768px) {
  .top .top-title {
    font-size: 35px;
  }
}

.faq .inner .faq-cont {
  width: 70.859375%;
  margin: 60px auto 0;
  color: black;
  padding-bottom: 80px;
}
@media print, screen and (max-width: 768px) {
  .faq .inner .faq-cont {
    margin: 0;
    margin-top: 60px;
    padding: 0 7.2%;
    width: auto;
  }
}
.faq .inner .faq-cont .faq-list .faq-item {
  background-color: white;
}
.faq .inner .faq-cont .faq-list .faq-item a {
  display: flex;
  color: black;
  font-size: 16px;
  padding: 20px 0;
  justify-content: center;
}
@media print, screen and (max-width: 768px) {
  .faq .inner .faq-cont .faq-list .faq-item a {
    font-size: 16px;
    width: 90.9937888199%;
    margin: 0 auto;
  }
}
.faq .inner .faq-cont .faq-list .faq-item .detail {
  background-color: #F2F2F2;
  font-size: 16px;
  padding: 25px 0;
}
@media print, screen and (max-width: 768px) {
  .faq .inner .faq-cont .faq-list .faq-item .detail {
    padding: 13px 0;
    display: none;
  }
}
.faq .inner .faq-cont .faq-list .faq-item .detail p {
  width: 87.3208379272%;
  margin: 0 auto;
}
.faq .inner .faq-cont .faq-list .faq-item:nth-child(2) .detail p {
  text-align: center;
}
@media print, screen and (max-width: 768px) {
  .faq .inner .faq-cont .faq-list .faq-item:nth-child(2) .detail p {
    text-align: start;
  }
}

.footer .inner {
  background-color: #4D0000;
}
.footer .inner .nav-wrap .nav-list {
  display: flex;
  padding-top: 62px;
  justify-content: center;
}
.footer .inner .nav-wrap .nav-list .nav-item {
  margin-right: 40px;
}
.footer .inner .nav-wrap .nav-list .nav-item a {
  font-size: 16px;
}
@media print, screen and (max-width: 768px) {
  .footer .inner .nav-wrap .nav-list {
    flex-direction: column;
  }
  .footer .inner .nav-wrap .nav-list .nav-item {
    margin: 0 auto 20px;
  }
  .footer .inner .nav-wrap .nav-list .nav-item:nth-child(4) {
    margin-bottom: 0;
  }
}
.footer .inner .footer-logo {
  width: 188px;
  margin: 60px auto 20px;
}
.footer .inner .copyright {
  color: white;
  font-size: 16px;
  text-align: center;
  padding-bottom: 15px;
}
@media print, screen and (max-width: 768px) {
  .footer .inner .copyright {
    font-size: 15px;
    width: 93.8666666667%;
    margin: 0 auto;
  }
}/*# sourceMappingURL=style.css.map */

/* front-page.php */
.blog-left a{
  color: white;
}

@media screen and (max-width:376px){
  .top{
    margin-top: 56px;
  }
}

/* お問い合わせフォーム */

.sub-top{
  height: 296px;
  background-image: url("../image/street.png");
  /* margin-top: 70px; */
  background-position: center;
  background-size: cover;
}

.inq-inner{
  width: 70%;
  margin: 0 auto;
}

.page-container h1{
  font-size: 32px;
  text-align: center;
}

.page-container h2{
  font-size: 20px;
  text-align: center;
}

.page-title{
  margin-top: 40px;
}

.page-title h2{
  padding-top: 40px;
}

.mw_wp_form{
  margin-top: 30px;
}



.page-container input{
  display: block;
  width: 100%;
  height: 50px;
  padding-left: 20px;
  box-sizing: border-box;
  border:1px solid #fff;
  background-color: black;
  color: white;
}

.page-container input::-webkit-input-placeholder{
  color: #fff;
  /* border-color: #fff; */
}

.norton-idsafe-field-styling-divId .norton-idsafe-field-logo-imgId{
  display: none;
}

.mw_wp_form .form-title{
  margin-bottom: 12px;
  display: inline-block;
}

.mw_wp_form p{
  font-size: 16px;
  margin-bottom: 20px;
}

.mw_wp_form textarea{
  width: 100%;
  height: 240px;
  padding: 20px;
  margin-bottom: 60px;
  border:1px solid #fff;
  background-color: #000000;
  color: #fff;
  box-sizing: border-box;
}

.mw_wp_form textarea::-webkit-input-placeholder{
  color: #fff;
}

.policy{
  text-align: center;
}

.policy a{
  text-decoration: underline;
  color: #fff;
}

.mwform-checkbox-field label{
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.mwform-checkbox-field label input{
  width: 20px;
  height: 20px;
  color: #fff;
  border:1px solid #fff;
}

.mwform-checkbox-field label .mwform-checkbox-field-text{
  margin-left: 20px;
}

.submit-container{
  margin: 40px auto 0;
  width: 200px;
  background-color: #B8860B;
  border-radius: 5px;
}

.submit-container input{
  color: #fff;
  background-color: #B8860B;
  padding: 0;
  border-radius: 5px;
}

.page-container{
  color: #fff;
  background-color: #000000;
}


.inq-inner{
  padding-bottom: 100px;
}

@media screen and (max-width:376px){
  .inq-inner{
    width: 83%;
  }
  .mw_wp_form p{
    margin-bottom: 0;
  }
  .policy{
    text-align: left;
  }
}



/* 完了画面 */
.mw_wp_form_complete p{
  text-align: center;
}

.complete-ctr{
  height: 40px;
}

.to-home{
  padding-top: 50px;
  text-align: center;
}

.to-home a{
  text-decoration: underline;
  font-size: 16px;
  color: white;
}


/* パンくず */
.breadcrumb-list{
  display: flex;
  font-size: 20px;
  margin-left: 66px;
  padding-top: 20px;
}

.breadcrumb-item a{
  color: white;
  text-decoration: underline;
}

/* archive.php */
.archive-container{
  padding: 0 66px;
}

.archive-container img{
  width: 254px;
  height: 180px;
}

.arc-inner{
  display: flex;
  padding-top: 50px;
}

.arc-left{
  position: relative;
}

.arc-dt {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #4D0000;
  padding: 9px 30px;
}

.arc-dt a{
  color: white;
}

.arc-right{
  padding-left: 20px;
}

.arc-right .blog-date{
  padding-bottom: 15px;
  line-height: 16px;
}

.arc-right a{
  color: white;
  font-size: 28px;
  line-height: 26px;
  text-decoration: underline;
  padding-bottom: 20px;
  display: block;
}

.arc-text{
  font-size: 24px;
  line-height: 24px;
}

.pagenation{
  margin-top: 76px;
  padding-bottom: 120px;
}

.page-numbers{
  display: flex;
  justify-content: center;
}

.page-numbers li{
  width: 50px;
  height: 50px;
  border: 1px solid #B8860B;
  box-sizing: border-box;
  margin-right: 20px;
}

.page-numbers li:nth-child(3){
  margin-right: 0;
}

.page-numbers li .current{
  width: 100%;
  display: flex;
  justify-content: center;
  line-height: 48px;
  background-color: #B8860B;
}

.page-numbers li a{
  color: white;
  width: 100%;
  display: flex;
  justify-content: center;
  line-height: 48px;
}

@media screen and (max-width:376px){
  .archive-container{
    padding: 0 30px;
  }
  .arc-inner{
    display: block;
  }
  .arc-right{
    padding: 0;
  }
  .archive-container img{
    width: 100%;
    height: 223px;
  }
  .sub-top{
    margin-top: 56px;
  }
}


/* single.php */
.sing-top{
  height: 102px;
}

.sing-container{
  background-color: black;
}

.breadcrumb-list li{
  color: white;
}

.breadcrumb-item{
  color: white;
}

.sing-title{
  padding-top: 50px;
  padding-bottom: 50px;
  width: 90%;
  margin: 0 auto;
}

.sing-title ul{
  width: 120px;
}

.sing-title ul li{
  text-align: center;
  background-color: #4D0000;
  height: 32px;
}

.sing-title ul li a{
  color: white;
  line-height: 32px;
}

.sing-title h1{
  color: white;
  padding-top: 44px;
  font-size: 36px;
}

.sing-main{
  width: 90%;
  margin: 0 auto;
  padding-bottom: 165px;
  display: flex;
}

.main-s-top{
  display: flex;
  justify-content: space-between;
}

.main-s-top p{
  display: none;
}

.update-date{
  color: white;
  font-size: 24px;
}

.main-side{
  width: 71%;
}

.sec-topics{
  width: 100%;
  font-size: 36px;
  color: white;
  background-color: #030F55;
  margin-top: 40px;
}

.text-cont p{
  color: white;
  font-size: 24px;
  line-height: 26px;
  margin-top: 37px;
}

.third-topics{
  color: white;
  font-size: 26px;
  border-left: 8px solid #030F55;
  padding-left: 21px;
  margin-top: 50px;
}

.side-bar{
  width: 29%;
  padding-left: 60px;
  box-sizing: border-box;
}

.side-title{
  color: white;
  background-color: #030F55;
  padding: 23px 0 13px;
  text-align: center;
  font-size: 21px;
}

@media screen and (max-width:376px) {
  .sing-top{
    height: 62px;
  }
  .sing-title{
    width: 85%;
  }
  .sing-title h1{
    padding-top: 25px;
  }
  .sing-main{
    display: block;
    width: 85%;
    padding-bottom: 120px;
  }
  .main-side{
    width: auto;
  }
  .sec-topics{
    font-size: 28px;
  }
  .text-cont p{
    font-size: 18px;
  }
  .breadcrumb-list{
    margin-left: 20px;
    font-size: 16px;
  }
}

/* sidebar */
.rela-items{
  display: flex;
  margin-top: 30px;
  margin-bottom: 40px;

}

.rela-items a{
  color: white;
  font-size: 12px;
  text-decoration: underline;
}

.rela-items p{
  padding-left: 15px;
}

.rele-img img{
  width: 100px;
  height: 70px;
}

@media screen and (max-width:376px){
  .side-bar{
    width: auto;
    padding: 0;
    margin-top: 40px;
  }
}

.sing-photo img{
	height: auto;
}