@charset "UTF-8";
/*
Theme Name: wordpress base
Description: クライアント用の情報に書き換えてください。
Version: 1.0
Tags: html5 css3(scss) javascript php mysql FontAwesome4.7.0
*/
@font-face {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
}
@font-face {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 200;
}
@font-face {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
}
@font-face {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@font-face {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
@font-face {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
}
@font-face {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
@font-face {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
*, *:before, *:after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}
html:focus {
  outline: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: #F9F9F9;
}

main {
  display: block;
  overflow: hidden;
}

address {
  font-style: normal;
}

.fontSerif {
  font-family: "Noto Sans JP", sans-serif;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
/* ----------------------------------- */
/* コンテナ
/* ----------------------------------- */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  transition: ease-in 0.1s;
}
@media screen and (min-width: 1025px) {
  .container {
    max-width: 1090px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
    max-width: 970px;
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 768px) {
  .container {
    max-width: 750px;
  }
}

/* ----------------------------------- */
/* clearfix
/* ----------------------------------- */
.clearfix:before, .clearfix:after, .container:before, .container:after {
  content: " ";
  display: table;
}

.clearfix:after, .container:after {
  clear: both;
}

/* ----------------------------------- */
/* リンク */
/* ----------------------------------- */
a {
  color: #333;
  text-decoration: underline;
  transition: all ease 0.3s;
}
a:hover, a:focus {
  color: #333;
  text-decoration: none;
  transition: all ease 0.3s;
}
a:focus, a:active, a:hover {
  outline: 0;
  text-decoration: none;
}
a img:hover {
  opacity: 0.8;
}

/* ----------------------------------- */
/* 配置 */
/* ----------------------------------- */
blockquote.alignleft,
img.alignleft {
  margin: 0 20px 20px 0;
}
blockquote.alignright,
img.alignright {
  margin: 0 0 20px 20px;
}
blockquote.aligncenter,
img.aligncenter {
  clear: both;
  margin-left: auto;
  margin-right: auto;
}

/* ----------------------------------- */
/* イメージ */
/* ----------------------------------- */
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}
img[class*=align], img[class*=wp-image-], img[class*=attachment-] {
  height: auto;
}
img.alignleft, img.alignright, img.aligncenter {
  margin-bottom: 30px;
}
img.alignleft {
  display: inline;
  float: left;
  margin-right: 20px;
}
img.alignright {
  display: inline;
  float: right;
  margin-left: 20px;
}
img.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px !important;
}

/* ----------------------------------- */
/* ボタン */
/* ----------------------------------- */
.btnWrap {
  margin: 40px 0;
}

.btn {
  clear: both;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 63px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  touch-action: manipulation;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  user-select: none;
  position: relative;
  color: #013168;
  max-width: 300px;
  width: 100%;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  background: #FFD12E;
  border-radius: 34px;
}
.btn.arrow:after {
  position: absolute;
  align-items: center;
  content: "";
  width: 10px;
  height: 10px;
  background: url("images/home/svg/n_circle.svg") no-repeat;
  background-size: 8px;
  background-position: center;
  transform: none;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease-in;
}
.btn.btnLeft {
  margin: 0;
}
.btn.btnRight {
  margin-left: auto;
  margin-right: 0;
}
.btn.btnCenter {
  margin: 0 auto;
}
.btn.type2 {
  max-width: 215px;
  background: #000000;
  color: #fff;
  font-weight: 500;
  height: 50px;
  border-radius: 32px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.btn.type2:after {
  color: #fff;
}
.btn.type3 {
  max-width: 380px;
  background: #FCDC00;
  color: #000000;
  font-weight: 500;
  height: 60px;
  font-size: 18px;
  border-radius: 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.btn.type3.arrow:after {
  width: 15px;
  height: 15px;
  background: url("images/home/svg/link_arrow_hober.svg") no-repeat;
  background-size: 13px;
  background-position: center;
}
.btn.type4 {
  max-width: 300px;
  background: #fff;
  font-weight: 500;
  justify-content: flex-start;
  height: 60px;
  padding: 0 15px;
  border-bottom: #535353 solid 1px;
}
.btn.type4.arrow:after {
  width: 15px;
  height: 15px;
  background: url("images/home/svg/down_arrow.svg") no-repeat;
  background-size: 10px;
  background-position: center;
}
@media print, screen and (min-width: 768px) {
  .btn:hover, .btn:focus {
    border: #013168 solid 2px;
    color: #013168 !important;
  }
  .btn:hover.arrow:after, .btn:focus.arrow:after {
    background: url("images/home/svg/n_arrow.svg") no-repeat;
    background-size: 8px;
    background-position: center;
  }
  .btn.arrow:hover:after, .btn.arrow:focus:after {
    color: #013168;
  }
  .btn.type2:hover {
    background: #fff;
    color: #000000;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
  .btn.type2:hover:after {
    color: #fff;
  }
}

/* ---------------------------------------------------------------- */
/* ヘッダー */
/* ---------------------------------------------------------------- */
#header {
  margin: 0 auto;
  height: 80px;
  transition: ease-in 0.1s;
  position: fixed;
  width: 100%;
  z-index: 50;
  background: rgba(249, 249, 249, 0.8);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  top: 0;
}
#header #headerCnt {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 15px;
  height: 100%;
}
#header #headerCnt #logoArea {
  flex-basis: 176px;
  width: 176px;
  align-self: center;
}
#header #headerCnt #logoArea #logo {
  margin: 0 !important;
  height: 100%;
}
#header #headerCnt #logoArea #logo a {
  display: flex;
  width: 100%;
  height: 100%;
  text-align: center;
  text-decoration: none;
}
#header #headerCnt #logoArea #logo a img {
  max-width: 176px;
  height: auto;
}
#header #headerCnt #headerContact {
  display: inline-flex;
  margin-left: auto;
  /*ul {
  	margin: 0 auto 0 15px;
  	padding: 0;
  	display: flex;
  	justify-content: flex-end;

  	li {
  		list-style: none;
  	}
  }*/
}
@media screen and (min-width: 1025px) {
  #header #headerCnt {
    max-width: 1200px;
  }
}
@media screen and (max-width: 920px) {
  #header #headerCnt #headerContact #mainNaviArea #mainNavi ul li {
    margin-right: 15px;
  }
  #header #headerCnt #headerContact #mainNaviArea #mainNavi ul li a {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #header #headerCnt {
    max-width: 970px;
    padding-left: 15px;
    padding-right: 15px;
  }
  #header #headerCnt #headerContact #mainNaviArea ul li a {
    font-size: 10px;
  }
  #header #headerCnt #headerContact #mainNaviArea ul li.header_contact_btn {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #header {
    height: 60px;
  }
  #header #headerCnt {
    max-width: 750px;
    justify-content: space-between;
    padding: 0 0 0 15px;
  }
  #header #headerCnt #logoArea {
    flex-basis: 141px;
    width: 141px;
  }
  #header #headerCnt #logoArea #logo {
    margin: 0 0 0 15px;
  }
  #header #headerCnt #logoArea #logo a img {
    max-width: 141px;
  }
  #header #headerCnt #mainNaviArea {
    display: none;
  }
  #header #headerCnt #headerContact {
    margin-right: 50px;
  }
}

/* ---------------------------------------------------------------- */
/* ヘッダーメニュー */
/* ---------------------------------------------------------------- */
/* SPメニュー */
/* ----------------------------------- */
.admin-bar #navi_contents.navi_contents-on {
  padding-top: 46px !important;
}

.openSpNavi {
  width: 100%;
  height: 100%;
}

#drawerNaviWrap {
  position: absolute;
  top: 0;
  right: 0;
  font-weight: 400;
}
#drawerNaviWrap .drawerNaviBtnWrap {
  width: 60px;
  height: 60px;
  position: relative;
  cursor: pointer;
}
#drawerNaviWrap .drawerNaviBtn {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  height: 20px;
  transition: all 0.5s;
  z-index: 3;
}
#drawerNaviWrap .drawerNaviBtn span {
  display: block;
  position: absolute;
  left: 0;
  width: 25px;
  height: 2px;
  background-color: #013168;
  border-radius: 2px;
  transition: all 0.5s;
}
#drawerNaviWrap .drawerNaviBtn span:nth-child(1) {
  top: 0;
}
#drawerNaviWrap .drawerNaviBtn span:nth-child(2) {
  top: 8px;
}
#drawerNaviWrap .drawerNaviBtn span:nth-child(3) {
  bottom: 0;
}
#drawerNaviWrap .drawer-nav {
  display: block;
  position: fixed;
  top: 60px;
  right: -390px;
  bottom: 0;
  width: 340px;
  background: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 0.5s;
  z-index: 999;
  opacity: 0;
  height: 100vh;
}
#drawerNaviWrap .drawer-nav .drawerInner {
  padding: 0;
  padding-top: 30px;
}
#drawerNaviWrap .drawer-nav ul {
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
  margin-bottom: 38px;
}
#drawerNaviWrap .drawer-nav ul li {
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
#drawerNaviWrap .drawer-nav ul li a {
  width: 100%;
  min-height: 40px;
  text-decoration: none;
  display: block;
  color: #333;
  font-size: 16px;
  padding: 10px 0 10px 15px;
  transition-duration: 0.2s;
  font-weight: 500;
}
#drawerNaviWrap .drawer-nav ul li.children {
  overflow: hidden;
}
#drawerNaviWrap .drawer-nav ul li.children > a {
  position: relative;
  width: calc(100% - 40px);
}
#drawerNaviWrap .drawer-nav ul li.children .childrenToggle {
  width: 40px;
  height: 40px;
  position: relative;
  top: 0px;
}
#drawerNaviWrap .drawer-nav ul li.children .childrenToggle:after {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid;
  border-color: transparent transparent #fff #fff;
  transform: rotate(-45deg);
  display: block;
  margin: 4px 15px 0 auto;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -8px;
}
#drawerNaviWrap .drawer-nav ul li.children .sub-menu {
  display: none;
}
#drawerNaviWrap .drawer-nav ul li.children .sub-menu li a {
  min-height: inherit;
  display: block;
  padding: 8px 15px 8px 27px;
}
#drawerNaviWrap .drawer-nav ul li.children .sub-menu li:last-child {
  border: none;
}
#drawerNaviWrap .drawer-nav ul li .fa-external-link {
  padding-left: 5px;
}
#drawerNaviWrap #overlay {
  display: none;
  transition: all 0.5s;
}
#drawerNaviWrap.open#drawerNaviWrap {
  position: relative;
  right: 0;
}
#drawerNaviWrap.open .drawerNaviBtnWrap {
  background: url(images/home/svg/close.svg) no-repeat;
  background-size: 25px;
  background-position: center;
}
#drawerNaviWrap.open .drawerNaviBtn {
  display: none;
}
#drawerNaviWrap.open .drawer-nav {
  right: 0;
  opacity: 1;
  background: #fff;
  padding: 0 15px;
}
#drawerNaviWrap.open #overlay {
  display: block;
  position: fixed;
  top: 60px;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  opacity: 0.6;
  z-index: 2;
}

/* ----------------------------------- */
/* PCメニュー */
/* ----------------------------------- */
#drawerNaviWrap {
  display: none;
}

#mainNaviArea {
  display: block;
  margin: 0;
  padding: 0;
}
#mainNaviArea #mainNavi {
  padding: 0;
}
#mainNaviArea #mainNavi ul {
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#mainNaviArea #mainNavi ul > li {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  flex: 1 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
}
#mainNaviArea #mainNavi ul > li:last-child {
  margin-right: 0;
}
#mainNaviArea #mainNavi ul > li a {
  justify-content: center;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-self: center;
  text-align: center;
  font-size: 14px;
  color: #333333;
  margin: 0;
  padding: 0;
  text-decoration: none;
  line-height: 1.2;
  font-weight: 500;
}
#mainNaviArea #mainNavi ul > li a:hover, #mainNaviArea #mainNavi ul > li a:focus, #mainNaviArea #mainNavi ul > li a:active {
  cursor: pointer;
  opacity: 0.8;
}
#mainNaviArea #mainNavi ul > li a span {
  flex-basis: 100%;
  font-size: 12px;
}
#mainNaviArea #mainNavi ul > li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: block;
  text-align: left;
  z-index: 0;
  padding: 0;
  margin: 0;
  height: 0;
  width: 180px;
}
#mainNaviArea #mainNavi ul > li ul.sub-menu li {
  overflow: hidden;
  padding: 0;
  margin: 0;
  height: 0;
  width: 180px;
}
#mainNaviArea #mainNavi ul > li ul.sub-menu li a {
  margin: 0;
  opacity: 0;
  padding: 0 10px;
  font-size: 14px;
  display: block;
  text-align: left;
  position: relative;
}
#mainNaviArea #mainNavi ul > li:hover, #mainNaviArea #mainNavi ul > li:focus {
  transition: 0.3s ease-in-out;
}
#mainNaviArea #mainNavi ul > li:hover ul.sub-menu, #mainNaviArea #mainNavi ul > li:focus ul.sub-menu {
  z-index: 1;
  height: 100%;
  opacity: 1;
}
#mainNaviArea #mainNavi ul > li:hover ul.sub-menu li, #mainNaviArea #mainNavi ul > li:focus ul.sub-menu li {
  padding: 0;
  height: auto;
  opacity: 1;
  width: 180px;
  text-align: left;
  background: #013168;
  border-bottom: #ccc 1px solid;
}
#mainNaviArea #mainNavi ul > li:hover ul.sub-menu li a, #mainNaviArea #mainNavi ul > li:focus ul.sub-menu li a {
  padding: 10px;
  opacity: 1;
  display: block;
  border-bottom: 1px solid #013168;
  transition: 0.3s ease-in-out;
}
#mainNaviArea #mainNavi ul > li:hover ul.sub-menu li a:last-of-type, #mainNaviArea #mainNavi ul > li:focus ul.sub-menu li a:last-of-type {
  border: none;
}
#mainNaviArea #mainNavi ul > li:hover ul.sub-menu li a:after, #mainNaviArea #mainNavi ul > li:focus ul.sub-menu li a:after {
  position: absolute;
  align-items: center;
  border: none;
  content: "\f0a9";
  font-family: FontAwesome;
  transform: none;
  color: #fff;
  right: 15px;
  font-size: 14px;
  border-radius: 0;
  top: 27%;
  transition: 0.3s ease-in;
}
#mainNaviArea #mainNavi ul > li:hover ul.sub-menu li a:hover, #mainNaviArea #mainNavi ul > li:hover ul.sub-menu li a:focus, #mainNaviArea #mainNavi ul > li:focus ul.sub-menu li a:hover, #mainNaviArea #mainNavi ul > li:focus ul.sub-menu li a:focus {
  color: #013168;
  background: #fff;
}
#mainNaviArea #mainNavi ul > li:hover ul.sub-menu li a:hover:after, #mainNaviArea #mainNavi ul > li:hover ul.sub-menu li a:focus:after, #mainNaviArea #mainNavi ul > li:focus ul.sub-menu li a:hover:after, #mainNaviArea #mainNavi ul > li:focus ul.sub-menu li a:focus:after {
  color: #013168;
}
#mainNaviArea #mainNavi ul > li:hover ul.sub-menu li:last-of-type a, #mainNaviArea #mainNavi ul > li:focus ul.sub-menu li:last-of-type a {
  border-bottom: none;
}
#mainNaviArea #mainNavi ul > li.current-menu-item > a {
  color: #c7c7c7 !important;
}
#mainNaviArea #mainNavi ul > li.current-menu-item > a ul.sub-menu > a {
  color: #c7c7c7 !important;
  background: #fff;
}
#mainNaviArea #mainNavi ul > li.current-menu-item > a ul.sub-menu > a:hover, #mainNaviArea #mainNavi ul > li.current-menu-item > a ul.sub-menu > a:focus {
  color: #c7c7c7 !important;
}
#mainNaviArea #mainNavi ul > li.current-menu-parent > ul li.current-menu-item a {
  color: #c7c7c7 !important;
  background: #fff;
}
#mainNaviArea #mainNavi ul > li.header_contact_btn {
  width: 160px;
  height: 40px;
  border-radius: 30px;
  border: #013168 solid 1px;
}
#mainNaviArea #mainNavi ul > li.header_contact_btn a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FCDC00;
  color: #000000;
  position: relative;
  border-radius: 30px;
  padding-right: 10px;
}
#mainNaviArea #mainNavi ul > li.header_contact_btn a::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: url("images/home/svg/n_circle.svg") no-repeat;
  background-position: center;
  background-size: 10px;
  display: block;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
}
#mainNaviArea #mainNavi ul > li.header_contact_btn:hover a::after {
  background: url("images/home/svg/n_arrow.svg") no-repeat;
  background-position: center;
  background-size: 10px;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
  #mainNaviArea {
    display: none;
  }
  #drawerNaviWrap {
    display: block;
  }
}
/* ---------------------------------------------------------------- */
/* フッターエリア */
/* ---------------------------------------------------------------- */
#footer {
  clear: both;
  position: relative;
  background: #fff;
  padding: 60px 0 0;
}
#footer::after {
  position: absolute;
  background: #013168;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  border-radius: 55px 55px 0 0;
}
#footer #footerCnt {
  position: relative;
  z-index: 3;
}
#footer #footerCnt #footerCntWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
#footer #footerCnt #footerCntWrap #logoArea a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
}
#footer #footerCnt #footerNaviWrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
#footer #footerCnt #footerNaviWrap .footer_adress {
  max-width: 380px;
  flex-basis: 380px;
  margin-bottom: 55px;
}
#footer #footerCnt #footerNaviWrap .footer_adress p {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 10px;
}
#footer #footerCnt #footerNaviWrap .footer_adress p a {
  text-decoration: none;
  color: #fff;
}
#footer #footerCnt #footerNaviWrap .footer_adress p span {
  font-weight: 700;
}
#footer #footerCnt #footerNaviWrap .footer_menu {
  max-width: calc(100% - 500px);
  flex-basis: calc(100% - 500px);
  display: flex;
}
#footer #footerCnt #footerNaviWrap .footer_menu .naviBox ul {
  margin: 0;
  padding: 0;
}
#footer #footerCnt #footerNaviWrap .footer_menu .naviBox ul li {
  display: block;
  padding-bottom: 15px;
}
#footer #footerCnt #footerNaviWrap .footer_menu .naviBox ul li a {
  text-decoration: none;
  font-size: 16px;
  color: #FFFFFF;
  font-weight: bold;
}
#footer #footerCnt #footerNaviWrap .footer_menu .naviBox ul li a:hover {
  opacity: 0.7;
}
#footer #footerCnt #footerNaviWrap .footer_menu .naviBox:first-child {
  margin-right: 80px;
}
#footer #copyright {
  flex-basis: 100%;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  border-top: #fff solid 1px;
}
#footer #copyright p {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 500;
  margin: 0;
}
@media screen and (max-width: 768px) {
  #footer {
    padding: 60px 0 0;
  }
  #footer #footerCnt #footerCntWrap {
    margin-bottom: 0;
  }
  #footer #footerCnt #footerCntWrap .logoArea {
    margin-bottom: 20px;
  }
  #footer #footerCnt #footerCntWrap .logoArea a img {
    max-width: 180px;
  }
  #footer #footerCnt #footerNaviWrap .footer_adress {
    max-width: 100%;
    flex-basis: 100%;
  }
  #footer #footerCnt #footerNaviWrap .footer_menu {
    max-width: 100%;
    flex-basis: 100%;
  }
  #footer #footerCnt #footerNaviWrap .footer_menu .naviBox:first-child {
    margin-right: 10px;
  }
}

/* ---------------------------------------------------------------- */
/* ページナビ */
/* ---------------------------------------------------------------- */
.wp-pagenavi {
  position: relative;
  text-align: center;
  padding: 0 0;
  margin: 30px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
}
.wp-pagenavi a, .wp-pagenavi span {
  color: #013168;
  width: 32px;
  height: 32px;
  padding: 3px 0 0 0;
  text-decoration: none;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 100%;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
}
.wp-pagenavi a:hover,
.wp-pagenavi a:focus {
  color: #fff;
  background: #013168;
  border: 1px solid #013168;
}
.wp-pagenavi span.current {
  color: #fff;
  background: #013168;
  font-weight: 400;
  border: 1px solid #013168;
}
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  font-size: 20px;
  color: #013168;
  background: none;
  border: none;
}
.wp-pagenavi .nextpostslink:hover, .wp-pagenavi .nextpostslink:focus,
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .previouspostslink:focus {
  color: #c7c7c7;
  background: none;
  border: none;
}

/* ---------------------------------------------------------------- */
/* ページトップ ボタン */
/* ---------------------------------------------------------------- */
#pagetopArea a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  #pagetopArea {
    position: absolute;
    top: 37px;
    right: 15px;
  }
}
/* ---------------------------------------------------------------- */
/* CTA固定ボタン */
/* ---------------------------------------------------------------- */
#fixedBtnSpArea {
  width: 100%;
  opacity: 0;
  z-index: 10;
  position: fixed;
  bottom: -60px;
  transition: 0.6s;
  background-color: #FFD12E;
}
#fixedBtnSpArea.fixedsp {
  opacity: 1;
  transition: 0.6s;
  bottom: 0;
}
#fixedBtnSpArea #fixedBtnSp {
  display: none !important;
}
#fixedBtnSpArea #fixedBtnSp ul {
  margin: 0 0 0 0;
  padding: 0;
  height: 60px;
  width: 100%;
  overflow: hidden;
  display: flex;
}
#fixedBtnSpArea #fixedBtnSp ul li {
  list-style: none;
  flex-basis: 100%;
}
#fixedBtnSpArea #fixedBtnSp ul li a {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  color: #013168;
  justify-content: center;
  align-items: center;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background-repeat: no-repeat;
  background-size: auto 20px;
  background-position: center 10px;
}
#fixedBtnSpArea #fixedBtnSp ul li a img {
  margin-right: 10px;
}
#fixedBtnSpArea #fixedBtnSp ul li a:hover, #fixedBtnSpArea #fixedBtnSp ul li a:focus {
  background-color: #013168;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #fixedBtnSpArea #fixedBtnSp {
    display: block !important;
  }
}

/* ---------------------------------------------------------------- */
/* HOME */
/* ---------------------------------------------------------------- */
/* ---------------------------------------------------------------- */
/* main_visual */
/* ---------------------------------------------------------------- */
.main_visual_fixed {
  position: fixed;
  z-index: 0;
  width: 100vw;
  overflow-y: scroll;
  overflow-x: hidden;
  height: 100vh;
  padding-bottom: 300px;
}
.main_visual_fixed::-webkit-scrollbar {
  display: none;
}

#main_visual {
  position: relative;
  z-index: 0;
  padding-top: 140px;
}
#main_visual .main_visual_txt {
  margin-bottom: 65px;
}
#main_visual .main_visual_txt h2 {
  font-size: 56px;
  font-weight: 700;
  color: #013168;
  margin: 0 0 30px;
  line-height: 1.2;
}
#main_visual .main_visual_txt p {
  font-size: 22px;
  font-weight: 400;
  margin: 0;
}
#main_visual .top-fvSwiper-wrap {
  padding: 0 40px;
}
#main_visual .top-fvSwiper {
  height: 100vh;
}
#main_visual .top-fvSwiper .swiper-wrapper .swiper-slide .slideimg_box {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 100vh;
  transition: all ease 0.3s;
  border-radius: 16px;
}
#main_visual .top-fvSwiper .swiper-wrapper .swiper-slide .slideimg_box img {
  border-radius: 16px;
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#main_visual .top-fvSwiper-arrow {
  position: absolute;
  width: 180px;
  height: 180px;
  background: #fff;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  top: 314px;
  right: 65px;
}
#main_visual .top-fvSwiper-arrow img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.btn--link {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(0.85);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(103, 139, 193, 0.43) 0%, rgba(205, 218, 244, 0.4) 40%, rgba(235, 240, 250, 0.57) 75%, rgba(245, 229, 233, 0.42) 80%, rgba(255, 243, 229, 0.82) 85%, #fff3e5 100%);
  background: -webkit-linear-gradient(135deg, rgba(103, 139, 193, 0.43) 0%, rgba(205, 218, 244, 0.4) 40%, rgba(235, 240, 250, 0.57) 75%, rgba(245, 229, 233, 0.42) 80%, rgba(255, 243, 229, 0.82) 85%, #fff3e5 100%);
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-radius-left {
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translate(1px, -1px);
}

.btn-radius-right {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(-1px, -1px);
}

.btn-arrow {
  -webkit-transform: translate(-50%, -50%);
  -webkit-animation: arrow_down 3s linear 0s infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: arrow_down 3s linear 0s infinite;
}

@media screen and (max-width: 768px) {
  .main_visual_fixed {
    height: auto;
    overflow-y: visible;
    padding-bottom: 0;
  }
  #main_visual {
    padding-top: 120px;
  }
  #main_visual .main_visual_txt {
    margin-bottom: 60px;
  }
  #main_visual .main_visual_txt h2 {
    font-size: 40px;
    margin: 0 0 40px;
  }
  #main_visual .main_visual_txt p {
    font-size: 16px;
  }
  #main_visual .top-fvSwiper-wrap {
    padding: 0 15px;
  }
  #main_visual .top-fvSwiper {
    height: auto;
  }
  #main_visual .top-fvSwiper .swiper-wrapper .swiper-slide .slideimg_box {
    padding-bottom: 200px;
  }
  #main_visual .top-fvSwiper-arrow {
    width: 70px;
    height: 70px;
    top: 50%;
    margin-top: 71px;
    right: 13%;
  }
  #main_visual .top-fvSwiper-arrow img {
    width: 55px;
    height: 55px;
  }
  .btn-radius-left {
    transform: translate(4px, -1px);
  }
  .btn-radius-right {
    transform: translate(-4px, -1px);
  }
}
/* ---------------------------------------------------------------- */
/* pagelink */
/* ---------------------------------------------------------------- */
#page01, #page02, #page03, #page04, #service01, #service02, #service03, #service04 {
  height: 1px;
  display: block;
  padding-top: 80px;
  margin-top: -80px;
}

/* ---------------------------------------------------------------- */
/* sticky */
/* ---------------------------------------------------------------- */
.sticky {
  position: relative;
  margin-top: 1500px;
  z-index: 2;
  background: rgba(248, 248, 248, 0.7);
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
}

/* ---------------------------------------------------------------- */
/* #content01 */
/* ---------------------------------------------------------------- */
#content01 {
  padding: 120px 0 80px;
  position: relative;
  z-index: 0;
}
#content01 span {
  font-size: 20px;
  font-weight: 400;
  color: #013168;
  margin-bottom: 10px;
  display: block;
}
#content01 .inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#content01 .inner .leftbox {
  max-width: 450px;
  flex-basis: 450px;
}
#content01 .inner .leftbox h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}
#content01 .inner .rightbox {
  max-width: calc(100% - 550px);
  flex-basis: calc(100% - 550px);
}
#content01 .inner .rightbox p {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

@media screen and (max-width: 768px) {
  #content01 {
    padding: 80px 0 60px;
  }
  #content01 .inner .leftbox {
    max-width: 100%;
    flex-basis: 100%;
    margin-bottom: 40px;
  }
  #content01 .inner .leftbox span {
    font-size: 16px;
  }
  #content01 .inner .leftbox h2 {
    font-size: 26px;
  }
  #content01 .inner .rightbox {
    max-width: 100%;
    flex-basis: 100%;
  }
  #content01 .inner .rightbox p {
    margin: 0;
  }
}
/* ---------------------------------------------------------------- */
/* #content02 */
/* ---------------------------------------------------------------- */
#content02 {
  position: relative;
  z-index: 0;
  padding: 0 0 160px;
}
#content02 h2 {
  font-size: 22px;
  font-weight: 400;
  color: #013168;
  padding-bottom: 10px;
  border-bottom: #C8C8C8 solid 1px;
}
#content02 .inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}
#content02 .inner .box {
  border-radius: 8px;
  height: 213px;
}
#content02 .inner .box a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  position: relative;
}
#content02 .inner .box a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, rgb(1, 49, 104), rgba(2, 97, 206, 0.28));
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  border-radius: 8px;
  z-index: 1;
}
#content02 .inner .box a::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  display: block;
  background: #fff url("./images/home/svg/n_circle.svg") no-repeat;
  background-position: center;
  background-size: 8px;
  border-radius: 50%;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  transition: all ease 0.3s;
}
#content02 .inner .box a .imgbox {
  position: absolute;
  width: 100%;
  padding-bottom: 213px;
  overflow: hidden;
  border-radius: 8px;
}
#content02 .inner .box a .imgbox img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
#content02 .inner .box a h3 {
  position: absolute;
  z-index: 2;
  font-size: 28px;
  margin: 0;
  left: 32px;
}
@media print, screen and (min-width: 768px) {
  #content02 .inner .box:hover a::before, #content02 .inner .box:focus a::before {
    opacity: 0.7;
  }
  #content02 .inner .box:hover a::after, #content02 .inner .box:focus a::after {
    background: #fff url("./images/home/svg/n_arrow.svg") no-repeat;
    background-position: center;
    background-size: 8px;
  }
}

@media screen and (max-width: 768px) {
  #content02 {
    padding-bottom: 100px;
  }
  #content02 .inner {
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 0;
    grid-row-gap: 16px;
  }
  #content02 .inner .box {
    height: 104px;
  }
  #content02 .inner .box a .imgbox {
    padding-bottom: 104px;
  }
  #content02 .inner .box a h3 {
    font-size: 24px;
    left: 16px;
  }
  #content02 .inner .box a::after {
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    bottom: auto;
  }
}
/* ---------------------------------------------------------------- */
/* #fixed_banner */
/* ---------------------------------------------------------------- */
#fixed_banner {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 10;
}
#fixed_banner::before {
  position: absolute;
  cursor: pointer;
  top: -5px;
  left: -5px;
  background: #fff;
  content: "×";
  font-size: 14px;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  z-index: 11;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
#fixed_banner a {
  width: 100%;
  height: 100%;
  display: block;
}

@media screen and (max-width: 768px) {
  #fixed_banner {
    bottom: 70px;
  }
  #fixed_banner a img {
    max-width: 200px;
  }
}
/* ---------------------------------------------------------------- */
/* #voiceArea */
/* ---------------------------------------------------------------- */
#voiceArea {
  background: #013168;
  padding: 160px 0;
  border-radius: 60px 0 0 0;
}
#voiceArea .inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#voiceArea .inner .voicecol {
  max-width: 250px;
  flex-basis: 250px;
}
#voiceArea .inner .voicecol span {
  font-size: 20px;
  display: block;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
}
#voiceArea .inner .voicecol h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 45px;
}
#voiceArea .inner .voicecol p {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}
#voiceArea .inner .voicecol02 {
  max-width: calc(100% - 280px);
  flex-basis: calc(100% - 280px);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 18px;
}
#voiceArea .inner .voicecol02 .box {
  background: #fff;
  border-radius: 8px;
  max-width: 48%;
  flex-basis: 48%;
  padding: 20px;
}
#voiceArea .inner .voicecol02 .box .v_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
#voiceArea .inner .voicecol02 .box .v_box .voiceimgbox {
  max-width: 100px;
  flex-basis: 100px;
}
#voiceArea .inner .voicecol02 .box .v_box .voicetxtbox {
  max-width: calc(100% - 115px);
  flex-basis: calc(100% - 115px);
}
#voiceArea .inner .voicecol02 .box .v_box .voicetxtbox h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 5px;
  color: #013168;
}
#voiceArea .inner .voicecol02 .box .v_box .voicetxtbox .voicetxt01 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 15px;
  color: #013168;
}
#voiceArea .inner .voicecol02 .box .v_box .voicetxtbox .voicetxt02 {
  font-size: 12px;
  font-weight: 500;
  margin: 0 0 5px;
  color: #013168;
}
#voiceArea .inner .voicecol02 .box .v_box .voicetxtbox .voicetxt02 a {
  color: #013168;
  text-decoration: none;
}
#voiceArea .inner .voicecol02 .box .v_box .voicetxtbox .voicetxt02 span {
  font-size: 12px;
  color: #013168;
}
#voiceArea .inner .voicecol02 .box .v_box .voicetxtbox .voicetxt03 {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.voice-postListWrap {
  display: flex;
  gap: 0 18px;
}
.voice-postListWrap .postBox a {
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
  color: #fff;
}
.voice-postListWrap .postBox a .thumbnail {
  position: relative;
  width: 100%;
  padding-bottom: 60%;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 15px;
}
.voice-postListWrap .postBox a .thumbnail img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.voice-postListWrap .postBox a .permaLinkWrap .category {
  display: flex;
  align-items: center;
}
.voice-postListWrap .postBox a .permaLinkWrap .category object {
  border-radius: 16px;
  background: #fff;
  width: 90px;
  height: 24px;
  margin-right: 15px;
}
.voice-postListWrap .postBox a .permaLinkWrap .category object a {
  font-size: 12px;
  font-weight: 500;
  color: #013168;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.voice-postListWrap .postBox a .permaLinkWrap .category time {
  font-size: 14px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  #voiceArea {
    padding: 100px 0 60px;
  }
  #voiceArea .inner .voicecol {
    max-width: 100%;
    flex-basis: 100%;
    margin-bottom: 40px;
  }
  #voiceArea .inner .voicecol02 {
    max-width: 100%;
    flex-basis: 100%;
  }
  #voiceArea .inner .voicecol02 .box {
    max-width: 100%;
    flex-basis: 100%;
    margin-bottom: 10px;
  }
  .voice-fvSwiper .swiper-wrapper .swiper-slide a {
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
    color: #fff;
  }
  .voice-fvSwiper .swiper-wrapper .swiper-slide a .thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 60%;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
  }
  .voice-fvSwiper .swiper-wrapper .swiper-slide a .thumbnail img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 8px;
  }
  .voice-fvSwiper .swiper-wrapper .swiper-slide a .permaLinkWrap .category {
    display: flex;
    align-items: center;
  }
  .voice-fvSwiper .swiper-wrapper .swiper-slide a .permaLinkWrap .category object {
    border-radius: 16px;
    background: #fff;
    width: 90px;
    height: 24px;
    margin-right: 15px;
  }
  .voice-fvSwiper .swiper-wrapper .swiper-slide a .permaLinkWrap .category object a {
    font-size: 12px;
    font-weight: 500;
    color: #013168;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .voice-fvSwiper .swiper-wrapper .swiper-slide a .permaLinkWrap .category time {
    font-size: 14px;
    font-weight: 500;
  }
  .voice-fvSwiper .voice-button-prev {
    background: url(./images/home/svg/prev.svg) no-repeat;
    background-position: center;
    background-size: 40px;
    width: 40px;
    height: 40px;
    display: block;
    left: 0;
  }
  .voice-fvSwiper .voice-button-prev::after {
    display: none;
  }
  .voice-fvSwiper .voice-button-next {
    background: url(./images/home/svg/next.svg) no-repeat;
    background-position: center;
    background-size: 40px;
    width: 40px;
    height: 40px;
    display: block;
    right: 0;
  }
  .voice-fvSwiper .voice-button-next::after {
    display: none;
  }
}
/* ---------------------------------------------------------------- */
/* #content03 */
/* ---------------------------------------------------------------- */
#content03 {
  padding: 160px 0;
  background: #F9F9F9;
}
#content03 span {
  font-size: 20px;
  display: block;
  font-weight: 400;
  color: #013168;
  margin-bottom: 10px;
}
#content03 h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 45px;
}
#content03 .inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 13px;
  grid-row-gap: 0;
}
#content03 .inner .content03box {
  transition: all ease 0.3s;
}
#content03 .inner .content03box a {
  width: 100%;
  height: 100%;
  display: block;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  color: #333;
}
#content03 .inner .content03box a .content03imgbox {
  position: relative;
  width: 100%;
  padding-bottom: 160px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 10px;
}
#content03 .inner .content03box a .content03imgbox img {
  position: absolute;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#content03 .inner .content03box a p {
  display: flex;
}
#content03 .inner .content03box a p .circle {
  display: block;
  margin-left: 20px;
}
#content03 .inner .content03box a p .arrow {
  display: none;
}
@media print, screen and (min-width: 768px) {
  #content03 .inner .content03box:hover, #content03 .inner .content03box:focus {
    transition: all ease 0.3s;
  }
  #content03 .inner .content03box:hover a p .circle, #content03 .inner .content03box:focus a p .circle {
    display: none;
  }
  #content03 .inner .content03box:hover a p .arrow, #content03 .inner .content03box:focus a p .arrow {
    display: block;
    margin-left: 20px;
  }
}
#content03 .inner .content03box:last-child a .content03imgbox::after {
  content: "募集終了";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  #content03 {
    padding: 100px 0;
    background: #F9F9F9;
  }
  #content03 span {
    font-size: 16px;
  }
  #content03 h2 {
    font-size: 28px;
    margin: 0 0 40px;
  }
  #content03 .inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
  #content03 .inner .content03box a {
    font-size: 14px;
  }
  #content03 .inner .content03box a .content03imgbox {
    padding-bottom: 100px;
    margin-bottom: 10px;
  }
}
/* ---------------------------------------------------------------- */
/* #content04 */
/* ---------------------------------------------------------------- */
#content04 {
  padding: 100px 0;
  background: #fff;
}
#content04 .inner {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.12);
  border-radius: 16px;
}
#content04 .inner a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 50px 60px;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  color: #333;
}
#content04 .inner a .content04box {
  max-width: calc(100% - 160px);
  flex-basis: calc(100% - 160px);
}
#content04 .inner a .content04box h2 {
  font-size: 80px;
  color: #013168;
  margin: 0 0 10px;
  list-style: 1;
}
#content04 .inner a .content04box p {
  margin: 0;
}
#content04 .inner a .content04box02 {
  max-width: 160px;
  flex-basis: 160px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: #013168 solid 1px;
  background: url(images/home/svg/n_circle.svg) no-repeat;
  background-size: 20px;
  background-position: center;
}
@media print, screen and (min-width: 768px) {
  #content04 .inner:hover, #content04 .inner:focus {
    background: #FFD12E;
  }
  #content04 .inner:hover a .content04box02, #content04 .inner:focus a .content04box02 {
    background: url(images/home/svg/n_arrow.svg) no-repeat;
    background-size: 15px;
    background-position: center;
  }
}

@media screen and (max-width: 768px) {
  #content04 {
    padding: 14px 0 80px;
  }
  #content04 .inner {
    background: #FFD12E;
  }
  #content04 .inner a {
    padding: 20px;
  }
  #content04 .inner a .content04box {
    max-width: 100%;
    flex-basis: 100%;
  }
  #content04 .inner a .content04box h2 {
    font-size: 48px;
    margin: 0;
  }
  #content04 .inner a .content04box p {
    font-size: 14px;
  }
  #content04 .inner a .content04box02 {
    max-width: 40px;
    flex-basis: 40px;
    width: 40px;
    height: 40px;
    background: url(images/home/svg/n_arrow.svg) no-repeat;
    background-size: 10px;
    background-position: center;
    margin-left: auto;
    margin-right: 0;
    border: #013168 solid 2px;
  }
}
/* ---------------------------------------------------------------- */
/* #newsArea */
/* ---------------------------------------------------------------- */
#newsArea {
  padding: 160px 0 100px;
  background: #fff;
}
#newsArea span {
  font-size: 20px;
  display: block;
  font-weight: 400;
  color: #013168;
  margin-bottom: 10px;
}
#newsArea h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 45px;
}
#newsArea .inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 25px;
  grid-row-gap: 0px;
}
#newsArea .inner .box {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  background: #fff;
}
#newsArea .inner .box a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #013168;
  font-size: 16px;
  font-weight: 500;
  flex-direction: column;
  text-decoration: none;
  padding: 60px 40px;
  position: relative;
  border-radius: 8px;
}
#newsArea .inner .box a::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  display: block;
  background: #013168 url("./images/home/svg/w_circle.svg") no-repeat;
  background-position: center;
  background-size: 8px;
  border-radius: 50%;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  transition: all ease 0.3s;
}
#newsArea .inner .box a span {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
#newsArea .inner .box a p {
  margin: 0;
}
@media print, screen and (min-width: 768px) {
  #newsArea .inner .box a:hover, #newsArea .inner .box a:focus {
    color: #fff;
    background: #013168;
    border-radius: 8px;
  }
  #newsArea .inner .box a:hover::after, #newsArea .inner .box a:focus::after {
    background: #fff url("./images/home/svg/n_arrow.svg") no-repeat;
    background-position: center;
    background-size: 8px;
  }
  #newsArea .inner .box a:hover span, #newsArea .inner .box a:focus span {
    color: #fff;
  }
}

@media screen and (max-width: 768px) {
  #newsArea {
    padding: 100px 0 100px;
  }
  #newsArea span {
    font-size: 16px;
  }
  #newsArea h2 {
    font-size: 24px;
    margin: 0 0 30px;
  }
  #newsArea .inner {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 20px;
  }
  #newsArea .inner .box a {
    padding: 50px 20px;
  }
}
/*.tabs{
	display: flex;
	gap: 0 15px;
	margin-bottom: 33px;
	.tab{
		width: 100%;
		max-width: 70px;
		height: 24px;
		border: $main_color solid 1px;
		border-radius: 16px;
		background: #fff;
		color: $main_color;
		font-size: 12px;
		font-weight: 500;
		display: flex;
		justify-content: center;
		align-items: center;
		&.active{
			background: $main_color;
			color: #fff;
		}
	}
}
.news-postListWrap{
	.postBox{
		border-top: #C8C8C8 solid 1px;
		a{
			width: 100%;
			height: 100%;
			display: flex;
			justify-content: space-between;
			flex-wrap: wrap;
			font-size: 16px;
			font-weight: 500;
			color: $text_color;
			padding: 30px 0;
			text-decoration: none;
			.permaLinkWrap{
				max-width: calc(100% - 240px);
				flex-basis: calc(100% - 240px);
				.category{
					display: flex;
					time{
						margin-right: 15px;
						font-size: 14px;
					}
					object{
						width: 100%;
						max-width: 70px;
						height: 24px;
						border: $main_color solid 1px;
						border-radius: 16px;
						background: #fff;
						color: $main_color;
						font-size: 12px;
						font-weight: 500;
						display: flex;
						justify-content: center;
						align-items: center;
						a{
							width: 100%;
							height: 100%;
							display: flex;
							justify-content: center;
							align-items: center;
							padding: 0;
							font-size: 12px;
							font-weight: 500;
							color: $main_color;
						}
					}
				}
			}
			.thumbnail{
				max-width: 200px;
				flex-basis: 200px;
				box-shadow: 0 2px 8px rgba(0,0,0,.12);
			}
		}
	}
}
@media screen and (max-width: $sp_width) {
	.news-postListWrap{
		.postBox{
			a{
				.permaLinkWrap{
					max-width: 100%;
					flex-basis: 100%;
					margin-bottom: 10px;
				}
				.thumbnail{
					max-width: 100%;
					flex-basis: 100%;
				}
			}
		}
	}
}*/
/* ---------------------------------------------------------------- */
/* accordion */
/* ---------------------------------------------------------------- */
.accordion-container {
  margin: 40px auto;
  width: 100%;
}
.accordion-container .accordion-list {
  background: #F8F8F8;
  margin-bottom: 30px;
}
.accordion-container .accordion-list::first-child {
  margin-top: 10px;
}
.accordion-container .accordion-list .accordion-title {
  cursor: pointer;
  font-size: 18px;
  padding: 18px 30px 18px 76px;
  position: relative;
  font-weight: bold;
  margin-bottom: 10px;
}
.accordion-container .accordion-list .accordion-title::before {
  position: absolute;
  content: "Q.";
  font-family: "全角ゴシック New";
  font-size: 34px;
  font-weight: bold;
  color: #1D976C;
  left: 30px;
  top: 4px;
}
.accordion-container .accordion-list .accordion-title::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 25px;
  height: 10px;
  width: 20px;
  background: url("images/home/down_arrow.svg") no-repeat;
  background-position: center;
  background-size: 20px;
  transition: all 0.3s ease-in-out;
}
.accordion-container .accordion-list .accordion-title.open::after {
  transform: rotate(180deg) !important;
}
.accordion-container .accordion-list .accordion-text {
  display: none;
  padding: 10px 35px 51px 76px;
  position: relative;
  font-size: 16px;
}
.accordion-container .accordion-list .accordion-text::before {
  position: absolute;
  content: "A.";
  font-family: "全角ゴシック New";
  font-size: 34px;
  font-weight: bold;
  color: #1D976C;
  left: 30px;
  top: 4px;
}

@media screen and (max-width: 768px) {
  .accordion-container .accordion-list .accordion-title {
    padding: 26px 50px 20px 60px;
  }
  .accordion-container .accordion-list .accordion-title::before {
    left: 17px;
    top: 21px;
  }
  .accordion-container .accordion-list .accordion-text {
    padding: 10px 50px 51px 60px;
  }
  .accordion-container .accordion-list .accordion-text::before {
    left: 17px;
  }
}
/* ---------------------------------------------------------------- */
/* コンテンツ共通 */
/* ---------------------------------------------------------------- */
/* ---------------------------- */
/* ページヘッダー */
/* ---------------------------- */
#mainCnt {
  margin-top: 80px;
}

#cnts {
  margin-top: 50px;
  margin-bottom: 90px;
}
#cnts .pageTitlebox {
  position: relative;
  padding: 40px 0 65px;
}
#cnts .pageTitlebox span {
  text-transform: uppercase;
  font-size: 80px;
  font-weight: 400;
  color: #013168;
  line-height: 1;
  display: block;
}
#cnts .pageTitlebox p {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
}

@media screen and (max-width: 768px) {
  #mainCnt {
    margin-top: 60px;
  }
  #cnts .pageTitlebox {
    padding: 30px 0 50px;
  }
  #cnts .pageTitlebox span {
    font-size: 45px;
  }
  #cnts .pageTitlebox p {
    font-size: 18px;
  }
}
/* ---------------------------------------------------------------- */
/* パンくず */
/* ---------------------------------------------------------------- */
.breadcrumbsWrap {
  padding: 20px 0;
}

.breadcrumbs__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.4em;
  list-style: none;
  padding-left: 0 !important;
}
.breadcrumbs__item::marker {
  display: none !important;
}
.breadcrumbs__item:not(:last-child)::after {
  content: ">";
  padding: 0 6px;
}
.breadcrumbs__link {
  color: #575757 !important;
  text-decoration: none !important;
}
.breadcrumbs__link:hover {
  color: #013168 !important;
  text-decoration: underline !important;
}
@media screen and (min-width: 1025px) {
  .breadcrumbs {
    max-width: 1170px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .breadcrumbs {
    max-width: 970px;
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 768px) {
  .breadcrumbs {
    max-width: 750px;
  }
}

/* ---------------------------------------------------------------- */
/* 詳細ページ */
/* ---------------------------------------------------------------- */
.postPage #postCnt {
  min-height: 300px;
}
.postPage h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 40px;
}
.postPage h3 {
  font-size: 28px;
  font-weight: 700;
  border-bottom: #C8C8C8 solid 1px;
  position: relative;
  padding-bottom: 10px;
  margin: 0 0 32px;
}
.postPage h3::before {
  position: absolute;
  content: "";
  width: 80px;
  height: 3px;
  background: #013168;
  left: 0;
  bottom: -2px;
  display: block;
}
.postPage h4 {
  color: #013168;
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 25px;
}
.postPage h5 {
  background: #E0E0E0;
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 15px;
  padding: 10px;
  border-radius: 4px;
}
.postPage h6 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 25px;
}
.postPage h1, .postPage h2, .postPage h3, .postPage h4, .postPage h5, .postPage h6 {
  line-height: 1.2;
}
.postPage p {
  margin: 0 0 20px;
  text-align: justify;
  text-align: inter-ideograph;
}
.postPage p img {
  max-width: 100%;
  margin-bottom: 0;
}
.postPage p.tableAtt {
  margin: -20px 0 20px;
}
.postPage .bold {
  font-weight: bold;
}
.postPage .coming {
  text-align: center;
  margin: 50px 0;
  font-size: 16px;
}
.postPage .small {
  font-size: 14px;
}
.postPage .textLeft {
  text-align: left;
}
.postPage .textCenter {
  text-align: center;
}
.postPage .textRight {
  text-align: right;
}
.postPage code {
  font-family: "Noto Sans JP", sans-serif;
}
.postPage pre {
  overflow: auto;
  background: #efefef;
  padding: 15px;
  border-radius: 8px;
  font-family: "Noto Sans JP", sans-serif;
}
.postPage a {
  position: relative;
}
.postPage a:hover, .postPage a:focus {
  text-decoration: none;
  color: #F00;
}
.postPage table {
  margin: 0 0 30px;
  width: 100%;
  border-collapse: collapse;
}
.postPage table caption {
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  margin: 0;
}
.postPage table tr {
  border-bottom: 1px solid #C8C8C8;
  position: relative;
}
.postPage table tr th, .postPage table tr td {
  padding: 32px 0 16px;
  width: auto;
  line-height: 1.4;
}
.postPage table tr th {
  font-weight: 700;
  vertical-align: top;
  min-width: 190px;
  text-align: left;
  width: auto;
  color: #013168;
}
.postPage table tr th.w200 {
  width: 200px;
}
.postPage table tr th.thLeft {
  text-align: left;
}
.postPage table tr td {
  border-left: none;
}
.postPage table tr td a {
  text-decoration: none;
  color: #333;
}
.postPage table tr .tw15p {
  width: 15%;
}
.postPage table tr .tw30p {
  width: 30%;
}
.postPage table tr .tw33p {
  width: 33.333%;
  min-width: inherit;
}
.postPage table tr .tw50p {
  width: 50%;
  min-width: inherit;
}
.postPage table tr .tw70p {
  width: 70%;
}
.postPage table tr .tw200 {
  width: 200px;
}
.postPage table tr .tw210 {
  width: 210px;
}
.postPage table.type2 tr {
  border-bottom: 1px solid #FFD12E;
}
.postPage table.type2 tr th, .postPage table.type2 tr td {
  border-collapse: collapse;
}
.postPage table.type2 tr th {
  background: #013168;
  text-align: center;
  vertical-align: middle;
  color: #fff;
}
.postPage table.type2 tr th + th {
  border-left: 1px solid #999999;
}
.postPage table.type2 tr td + td {
  border-left: 1px solid #999999;
}
.postPage table.type2 tr td:nth-of-type(1) {
  border-left: none;
}
.postPage .tableSc {
  overflow: inherit;
  white-space: normal;
  width: 100%;
}
.postPage .tableSc table {
  width: 100%;
}
.postPage .tableSc table tr {
  border-bottom: 1px solid #C8C8C8;
}
.postPage .tableSc table tr:nth-of-type(odd) {
  background: none;
}
.postPage .tableSc table tr th, .postPage .tableSc table tr td {
  display: table-cell;
  border-collapse: collapse;
  width: inherit;
}
.postPage .tableSc table tr th {
  background: #FFD12E;
  text-align: center;
  vertical-align: middle;
  min-width: inherit;
}
.postPage .tableSc table tr th + th {
  border-left: 1px solid #333;
}
.postPage .tableSc table tr td + td {
  border-left: 1px solid #333;
}
.postPage .tableSc table tr td:nth-of-type(1) {
  border-left: none;
}
.postPage dl {
  margin: 0 0 30px;
}
.postPage dl dt {
  font-weight: bold;
}
.postPage dl dd {
  margin: 0;
  margin-bottom: 15px;
}
.postPage ul {
  margin: 0 0 20px 5px;
  padding: 0;
}
.postPage ul li {
  list-style: none;
  position: relative;
  padding: 0;
  line-height: 1.1;
  margin-bottom: 15px;
}
.postPage ul li ul {
  padding: 0 0 10px;
  margin: 10px 0 0 1em;
}
.postPage ul li ul li::marker {
  color: #013168;
}
.postPage ul.iconList li {
  padding: 0 0 0 0.8em;
}
.postPage ul.iconList li:before {
  position: absolute;
  left: 0;
  top: 4px;
  content: "";
  width: 10px;
  height: 10px;
  background: #013168;
  border-radius: 50%;
}
.postPage ol {
  padding: 0 0 0 1.6em;
}
.postPage ol li {
  margin: 0;
  padding: 0;
  line-height: 1.1;
  margin-bottom: 15px;
}
.postPage ol li:last-child {
  margin: 0 0 10px;
}
.postPage ol li ol {
  margin: 10px 0;
  padding: 0 0 0 1em;
}
.postPage address {
  font-style: normal;
}
.postPage hr.red {
  border-bottom: 1px solid #C65871 !important;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .postPage h2 {
    font-size: 30px;
  }
  .postPage h3 {
    font-size: 26px;
    margin: 0 0 25px;
  }
  .postPage h4 {
    font-size: 22px;
    margin: 0 0 20px;
  }
  .postPage h5 {
    font-size: 20px;
    margin: 0 0 15px;
  }
  .postPage h6 {
    font-size: 18px;
    margin: 0 0 20px;
  }
  .postPage table tr th, .postPage table tr td {
    display: block;
    width: 100%;
    padding: 16px 0;
  }
  .postPage table tr th + td, .postPage table tr td + td {
    border-left: 0;
  }
  .postPage table tr th {
    min-width: 1px;
    color: #013168;
    text-align: left;
  }
  .postPage table tr th.w200 {
    width: 100%;
  }
  .postPage table tr .tw15p {
    width: 100%;
  }
  .postPage table tr .tw30p {
    width: 100%;
  }
  .postPage table tr .tw33p {
    width: 100%;
  }
  .postPage table tr .tw50p {
    width: 100%;
  }
  .postPage table tr .tw70p {
    width: 100%;
  }
  .postPage table tr .tw200 {
    width: 100%;
  }
  .postPage table tr .tw210 {
    width: 100%;
  }
  .postPage table.type2 tr th, .postPage table.type2 tr td {
    display: table-cell;
    width: auto;
  }
  .postPage table.type2 tr th {
    min-width: 1px;
  }
  .postPage .tableSc {
    overflow: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}

/* ---------------------------------------------------------------- */
/* アクト・エイドについて */
/* ---------------------------------------------------------------- */
.pagelinksWrap {
  display: inline-block;
  padding: 10px 30px;
  background: #fff;
  border-radius: 48px;
  margin-bottom: 80px;
}
.pagelinksWrap .pagelinkscol {
  display: inline-block;
  margin-left: 35px;
}
.pagelinksWrap .pagelinkscol a {
  font-size: 16px;
  color: #C8C8C8;
  text-decoration: none;
  position: relative;
}
.pagelinksWrap .pagelinkscol a::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: #C8C8C8;
  border-radius: 50%;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
@media print, screen and (min-width: 768px) {
  .pagelinksWrap .pagelinkscol:hover a, .pagelinksWrap .pagelinkscol:focus a {
    color: #013168;
  }
  .pagelinksWrap .pagelinkscol:hover a::before, .pagelinksWrap .pagelinkscol:focus a::before {
    background: #013168;
  }
}

.abouttxtright {
  max-width: 65%;
  margin-left: auto;
  margin-right: 0;
}
.abouttxtright p {
  margin: 0;
}

.bg_halfgray {
  background: linear-gradient(180deg, #F9F9F9 0%, #F9F9F9 50%, #ffffff 50%, #ffffff 100%);
}

.aboutbox {
  padding-top: 90px;
}

.aboutbox {
  position: relative;
}

.bg-white {
  background: #fff;
}

.aboutbox02 {
  padding: 120px 0;
}

.visiontxt {
  font-size: 48px;
  text-align: center;
  font-weight: 700;
  color: #013168;
  margin: 0;
  text-align: center !important;
  list-style: 1;
}

.visiontxt02 {
  font-weight: 500;
  text-align: center !important;
}

.serviceWrap {
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 37px;
}
.serviceWrap .service_leftbox {
  max-width: 80px;
  flex-basis: 80px;
}
.serviceWrap .service_leftbox span {
  font-size: 20px;
  color: #013168;
  font-weight: 400;
  display: block;
}
.serviceWrap .service_leftbox p {
  font-size: 46px;
  font-weight: 400;
  margin: 0;
  color: #013168;
  line-height: 1;
}
.serviceWrap .service_rightbox {
  max-width: calc(100% - 110px);
  flex-basis: calc(100% - 110px);
}
.serviceWrap.last {
  margin-bottom: 100px;
}

.b_linknbtnWrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 0px;
}

@media screen and (max-width: 768px) {
  .pagelinksWrap {
    margin-bottom: 60px;
    padding: 10px 15px;
  }
  .abouttxtright {
    max-width: 100%;
  }
  .visiontxt {
    font-size: 32px;
  }
  .aboutbox {
    padding-top: 60px;
  }
  .aboutbox02 {
    padding: 60px 0;
  }
  .serviceWrap {
    padding: 20px 15px;
  }
  .serviceWrap .service_leftbox {
    max-width: 100%;
    flex-basis: 100%;
    margin-bottom: 10px;
  }
  .serviceWrap .service_rightbox {
    max-width: 100%;
    flex-basis: 100%;
  }
  .b_linknbtnWrap {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 10px;
  }
  .b_linknbtnWrap a {
    margin: 0 auto;
  }
}
/* ---------------------------------------------------------------- */
/* 契約までの流れ */
/* ---------------------------------------------------------------- */
.flowbox {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  padding: 40px;
  margin-bottom: 47px;
}
.flowbox p {
  color: #013168;
  font-weight: 400;
  font-size: 20px;
  display: flex;
  align-items: center;
  margin: 0 0 10px;
}
.flowbox p span {
  font-size: 40px;
  font-weight: 400;
  margin-left: 10px;
}
.flowbox .flowWrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.flowbox .flowWrap .flowimgbox {
  max-width: 310px;
  flex-basis: 310px;
  border-radius: 8px;
}
.flowbox .flowWrap .flowimgbox img {
  border-radius: 8px;
}
.flowbox .flowWrap .flowtxtbox {
  max-width: calc(100% - 340px);
  flex-basis: calc(100% - 340px);
}
.flowbox .flowWrap .flowtxtbox p {
  font-size: 16px;
  color: #333;
  margin: 0;
}
.flowbox.flowbox02 {
  margin-bottom: 120px;
}
.flowbox.last {
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .flowbox {
    padding: 20px 15px;
  }
  .flowbox .flowWrap .flowimgbox {
    max-width: 100%;
    flex-basis: 100%;
  }
  .flowbox .flowWrap .flowtxtbox {
    max-width: 100%;
    flex-basis: 100%;
    margin-bottom: 10px;
  }
  .flowbox.flowbox02 {
    margin-bottom: 60px;
  }
}
/* ---------------------------------------------------------------- */
/* 会社概要 */
/* ---------------------------------------------------------------- */
.companybox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 90px;
}
.companybox .companyimgbox {
  max-width: 270px;
  flex-basis: 270px;
  border-radius: 8px;
}
.companybox .companyimgbox img {
  border-radius: 8px;
}
.companybox .companytxtbox {
  max-width: calc(100% - 290px);
  flex-basis: calc(100% - 290px);
}
.companybox .companytxtbox .company_txt {
  text-align: right;
  font-weight: 500;
  font-size: 14px;
  margin: 0;
}
.companybox .companytxtbox .company_txt02 {
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  text-align: right;
}

.mb_box {
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .companybox .companyimgbox {
    max-width: 100%;
    flex-basis: 100%;
    order: 1;
    margin: 0 auto 10px;
  }
  .companybox .companyimgbox img {
    margin: 0 auto;
    display: block;
    text-align: center;
  }
  .companybox .companytxtbox {
    max-width: 100%;
    flex-basis: 100%;
    order: 2;
  }
}
/* ---------------------------------------------------------------- */
/* 料金表 */
/* ---------------------------------------------------------------- */
.price_box {
  padding-bottom: 90px;
}

@media screen and (max-width: 768px) {
  .price_box {
    padding-bottom: 60px;
  }
}
/* ---------------------------------------------------------------- */
/* フォーム設定 */
/* ---------------------------------------------------------------- */
/* フォームナビ */
/* ---------------------------- */
ul.formFlow {
  display: flex;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin: 0 0 30px;
  padding: 0;
}
ul.formFlow li {
  display: inline-flex;
  justify-content: center;
  flex: 1 0 33.333%;
  background: #e3eff6;
  color: #333333;
  list-style: none;
  padding: 0;
  margin: 0 !important;
  height: 100%;
  font-size: 16px;
  font-weight: bold;
  align-items: center;
  position: relative;
}
ul.formFlow li:before {
  display: none;
}
ul.formFlow li.visited {
  background: #999;
  color: #fff;
}
ul.formFlow li.active {
  background: #013168;
  color: #fff;
  position: relative;
}
ul.formFlow li.active:after {
  position: absolute;
  content: "";
  right: -40px;
  top: 0;
  z-index: 1;
  width: 0;
  height: 0;
  border: 20px solid transparent;
  border-left: 20px solid #013168;
}
ul.formFlow li.second.active:before {
  display: block;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  z-index: 3;
  width: 0;
  height: 0;
  border: 20px solid transparent;
  border-left: 20px solid #999;
}
ul.formFlow li.third.active {
  background: #013168 !important;
  color: #fff;
}
ul.formFlow li.third.active:after {
  display: none;
}
ul.formFlow li.third.active:before {
  background: none;
  display: inline;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  z-index: 2;
  width: 0;
  height: 0;
  border-radius: 0;
  border: 20px solid transparent;
  border-left: 20px solid #999;
}

/* ---------------------------- */
/* フォームエレメント */
/* ---------------------------- */
#formArea dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#formArea dl dt {
  flex-basis: 250px;
  text-align: left;
}
#formArea dl dd {
  flex-basis: calc(100% - 280px);
}
#formArea dl dd.fb100 {
  flex-basis: 100%;
}
#formArea .required {
  color: crimson;
  font-size: 12px;
  margin-left: 10px;
}
#formArea .any {
  color: #013168;
  font-size: 12px;
  margin-left: 10px;
}
#formArea .error {
  margin: 0;
}
#formArea .radio_wrap {
  margin-top: 10px;
}
#formArea .vertical-item {
  display: block !important;
}
#formArea input[type=text],
#formArea input[type=email],
#formArea input[type=number],
#formArea textarea {
  padding: 8px 0.5em 8px 10px;
  margin: 0;
  background: #EEEEEE;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 0;
  border: 1px solid #EEEEEE;
}
#formArea input[type=text]:focus,
#formArea input[type=email]:focus,
#formArea input[type=number]:focus,
#formArea textarea:focus {
  background: #fff;
}
#formArea input[type=text]:hover,
#formArea input[type=email]:hover,
#formArea input[type=number]:hover,
#formArea textarea:hover {
  background: #fff;
}
#formArea input[type=text] + input,
#formArea input[type=email] + input,
#formArea input[type=number] + input,
#formArea textarea + input {
  margin-top: 10px;
}
#formArea input[type=number].short {
  width: 60px;
}
#formArea input[type=text],
#formArea input[type=email] {
  width: 100%;
}
#formArea input[type=text] .short,
#formArea input[type=email] .short {
  max-width: 150px;
}
#formArea select {
  padding: 0.4em 0 0.3em 0.5em;
  margin-bottom: 5px;
  display: block;
  border-color: #e7e7e7;
}
#formArea select option {
  word-wrap: normal;
}
#formArea input[type=text].short {
  width: 200px;
  text-align: left;
  margin-bottom: 0;
}
#formArea input[type=text].hasDatepicker {
  margin: 5px 0;
  background: #EEEEEE;
}
#formArea input[type=text].hasDatepicker:hover, #formArea input[type=text].hasDatepicker:focus {
  background: #fff;
}
#formArea .mwform-checkbox-field {
  display: inline-block;
  width: auto;
  margin: 5px 5px;
  font-size: 14px;
}
#formArea input[type=checkbox] {
  border: 1px solid #aaaaaa;
  vertical-align: -8px;
  -webkit-appearance: none;
  position: relative;
  margin-right: 5px;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
  width: 26px;
  height: 26px;
  /*Other Browser*/
  background: #e2e2e2;
  /*For Old WebKit*/
  /*For Modern Browser*/
  background: linear-gradient(to bottom, #ffffff 0%, #e2e2e2 100%);
}
#formArea input[type=checkbox]:checked {
  /*Other Browser*/
  background: #013168;
  /*For Old WebKit*/
  /*For Modern Browser*/
  background: linear-gradient(to bottom, #013168 0%, #013168 100%);
  border: 1px solid #013168;
}
#formArea input[type=checkbox]:checked:before {
  position: absolute;
  left: 1px;
  top: 16px;
  display: block;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  content: "";
  width: 10px;
  height: 4px;
  background: #ffffff;
  -webkit-transform: rotate(45deg);
  -webkit-transform-origin: right center;
}
#formArea input[type=checkbox]:checked:after {
  display: block;
  position: absolute;
  left: 9px;
  top: 16px;
  content: "";
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  width: 16px;
  height: 4px;
  background: #ffffff;
  -webkit-transform: rotate(-53deg);
  -webkit-transform-origin: left center;
}
#formArea .mwform-zip-field input {
  width: inherit;
}
#formArea .mwform-tel-field input {
  margin: 0 !important;
  width: auto;
}
#formArea .mwform-radio-field {
  display: inline-block;
  margin: 0 15px 5px 0;
}
#formArea .mwform-radio-field input {
  margin: 0 15px 0 0;
}
#formArea .mwform-radio-field-text {
  margin-left: 10px;
}
#formArea input[type=file] {
  margin-bottom: 10px;
}
#formArea .inline_wrap select {
  display: inline-block;
}
#formArea .btnArea {
  display: flex;
}
#formArea .btnArea .submitArea {
  flex-basis: 100%;
}
#formArea .btnArea .submitArea .submit {
  clear: both;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  touch-action: manipulation;
  text-decoration: none;
  transition: 0.3s;
  user-select: none;
  position: relative;
  color: #013168;
  max-width: 300px;
  width: 100%;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  background: #FFD12E;
  border-radius: 34px;
  border: none;
  margin: 0 auto;
}
#formArea .btnArea .submitArea .submit:hover, #formArea .btnArea .submitArea .submit:focus {
  border: #013168 solid 2px;
  transition: 0.3s;
}
#formArea .btnArea .returnArea {
  flex-basis: 100%;
  display: none;
}
#formArea .btnArea .returnArea .return {
  clear: both;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 63px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  touch-action: manipulation;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  user-select: none;
  position: relative;
  color: #013168;
  max-width: 300px;
  width: 100%;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  background: #FFD12E;
  border-radius: 34px;
  border: none;
  margin: 0 auto;
}
#formArea .btnArea .returnArea .return:hover, #formArea .btnArea .returnArea .return:focus {
  border: #013168 solid 2px;
  transition: 0.3s;
}
#formArea .mw_wp_form_confirm .btnArea {
  display: flex;
  justify-content: center;
}
#formArea .mw_wp_form_confirm .btnArea .submitArea {
  margin: 0 20px;
}
#formArea .mw_wp_form_confirm .btnArea .returnArea {
  margin: 0 20px;
  display: block;
}
@media screen and (max-width: 768px) {
  #formArea dl {
    display: flex;
    flex-wrap: wrap;
  }
  #formArea dl dt {
    flex-basis: 100%;
    padding: 5px 0 0 0;
    margin: 0 0 15px;
    text-align: left;
  }
  #formArea dl dd {
    flex-basis: 100%;
    margin-bottom: 15px;
    align-self: center;
  }
  #formArea select {
    margin-bottom: 5px;
  }
  #formArea .mwform-checkbox-field {
    display: block;
    width: 100%;
  }
  #formArea .mwform-radio-field {
    display: block;
    margin: 5px 0 10px;
  }
  #formArea .mwform-radio-field .mwform-radio-field-text {
    margin-right: 15px;
  }
  #formArea .mwform-radio-field input {
    margin: 0;
  }
  #formArea .btnArea {
    flex-wrap: wrap;
  }
  #formArea .btnArea .submitArea {
    flex-basis: 100%;
    margin: 0 0 25px;
  }
  #formArea .mw_wp_form_confirm .btnArea {
    flex-direction: column-reverse;
  }
  #formArea .mw_wp_form_confirm .btnArea .submitArea .submit {
    margin: 0 auto 10px;
  }
  #formArea .mw_wp_form_confirm .btnArea .returnArea {
    display: block;
  }
  #formArea .mw_wp_form_confirm .btnArea .returnArea .return {
    margin: 0 auto;
  }
}

/* for IE *//*# sourceMappingURL=style.css.map */