@charset "UTF-8";
/* Reset
------------------------------------------------------------*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0; }

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal; }

address, em {
  font-style: normal; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

th {
  font-weight: normal;
  text-align: left; }

legend {
  display: none; }

img, fieldset {
  border: 0; }

li {
  list-style-type: none; }

/* HTML5
------------------------------------------------------------*/
article, aside, dialog, figure, footer, header, hgroup, nav, section {
  display: block;
  margin: 0;
  padding: 0; }

/* common flexべbbだーいれる
------------------------------------------*/
html {
  font-size: 62.5%; }

body {
  min-width: 1360px;
  font-family: 'Noto Sans JP', Roboto;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.1rem;
  color: #000;
  background: #fff;
  text-align: justify;
  -webkit-text-size-adjust: 100%; }

img {
  max-width: 100%; }

.flex {
  display: flex;
  gap: 40px; }

.align__r {
  text-align: right; }

.align__c {
  text-align: center; }

a {
  text-decoration: none;
  color: #000; }

a:hover {
  opacity: .6;
  transition: opacity .3s ease-out; }

.mt10 {
  margin-top: 10px; }

.mt20 {
  margin-top: 20px; }

.mt30 {
  margin-top: 30px; }

.mt45 {
  margin-top: 45px; }

.mt60 {
  margin-top: 60px; }

.fs12 {
  font-size: 1.2rem; }

br.sp, .sp {
  display: none; }

#loader {
  width: 100%;
  height: 100%;
  background: #fff;
  text-align: center;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0; }
  #loader div {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }

.loaderIcon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: auto;
  position: relative;
  text-indent: -9999em;
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  border-left: 2px solid #13339f;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 .8s infinite linear;
  animation: load8 .8s infinite linear; }
  .loaderIcon::after {
    border-radius: 50%;
    width: 50px;
    height: 50px; }

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
p:not(:last-child) {
  margin-bottom: 20px; }

.inner {
  max-width: calc(980px + 10vw);
  padding: 0 5vw;
  margin: auto;
  box-sizing: border-box; }

/* header
------------------------------------------------------------*/
header {
  width: 100%;
  background-color: #fff;
  position: fixed;
  z-index: 1;
  padding: 7px 0;
  border-bottom: 1px solid #13339f;
  margin-top: -128px; }

.header_top {
  padding: 12px 0 0;
  font-size: 1.2rem;
  color: #000; }

header .inner {
  display: flex;
  gap: 40px;
  -webkit-justify-content: space-between;
  justify-content: space-between; }

h1 {
  margin-bottom: 5px; }

.header_top .inner ul.flex {
  gap: 20px; }

.header_top .inner ul.flex li {
  line-height: 37px; }

.header_top a {
  color: #000; }

.btnEntry, .btnForm {
  padding: 0 20px;
  line-height: 35px;
  height: 35px;
  text-align: center;
  display: inline-block;
  transition-duration: .3s;
  position: relative;
  border: 1px solid #13339f; }

.btnForm {
  color: #051445;
  background-color: #fff; }

.btnEntry {
  background-color: #13339f;
  color: #fff !important; }

header > .inner, footer > .inner {
  display: flex;
  gap: 40px;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 60px;
  align-items: center; }

.logo img {
  padding-bottom: 8px;
  width: 70%; }

/* nav
------------------------------------------------------------*/
#menuBtn {
  display: none; }

nav ul {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  font-weight: 600; }

nav ul li {
  vertical-align: middle;
  width: 100px;
  text-align: center;
  position: relative; }

nav li a {
  font-size: 1.4rem;
  color: #000;
  display: inline-block;
  padding: 24px 0 16px;
  text-decoration: none;
  position: relative;
  letter-spacing: 1px;
  transition-duration: .3s; }

li.ac::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: #051445;
  width: 100%;
  height: 2px; }

.hasChild {
  position: relative; }

.hasChild .subMenu {
  display: flex;
  flex-direction: column;
  gap: 0px;
  display: none;
  position: absolute;
  z-index: 1000;
  background: #fff;
  text-align: center;
  width: 130px;
  left: -15%;
  box-shadow: 0 15px 25px 0 rgba(0, 0, 0, 0.08);
  padding: 0; }

.hasChild ul.subMenu li {
  border-bottom: 1px solid #ddd;
  width: 100%; }

.hasChild ul.subMenu li:last-child {
  border-bottom: none; }

.hasChild ul.subMenu li a {
  padding: 15px 0 15px; }

.hasChild ul.subMenu li a::before {
  display: none; }

.hasChild ul.subMenu li:hover {
  background: #051445;
  color: #000;
  transition-duration: .3s; }

.hasChild ul.subMenu li a:hover {
  color: #fff;
  opacity: 1;
  transition-duration: .3s; }

/*.ac.hasChild ul.subMenu li a::before{
    visibility: hidden;
    opacity: 0;
    
}*/
.ac.hasChild ul.subMenu li a:hover::before {
  visibility: visible;
  opacity: 1;
  transition-duration: .3s;
  animation: tooltipShow 0.3s linear 0s; }

.btn02 {
  width: 160px;
  height: 30px;
  color: #fff;
  padding: 5px 15px;
  display: inline-block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition-duration: .3s;
  display: flex;
  gap: 40px;
  gap: 10px;
  align-items: center;
  margin-top: 0;
  background-color: #000;
  transition: opacity .3s ease-out; }

.btn02::before {
  content: "";
  width: 20px;
  height: 12px;
  background: url("../img/icon_mail.svg") no-repeat center center/cover;
  display: inline-block; }

.btn02:hover {
  color: #000;
  background-color: #fff;
  border: 1px solid #000; }

.btn02:hover::before {
  background: url("../img/icon_mail02.svg") no-repeat center center/cover; }

.btn {
  position: relative;
  color: #13339f; }

.btn::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #13339f; }

.btn01 {
  width: 100%;
  height: 35px;
  padding: 8px 30px 8px 20px;
  color: #051445;
  margin-top: 20px;
  position: relative;
  transition: opacity .6s ease-out; }

.btn01::before {
  /* くの字の表示設定 */
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 6px;
  /* ②棒が長くなった分、右へ7px移動 */
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg); }

.btn01::after {
  /* 棒の表示設定 */
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  width: 15px;
  /* ①棒の長さを15⇒20pxに変更 */
  height: 1px;
  background: #fff; }

.btn:hover {
  color: #2c353b; }

.btn:hover::before {
  background: #2c353b; }

.modIconArrow {
  position: absolute;
  background: #273abf;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1000; }

.modIconArrow:before {
  display: none;
  content: "";
  background: #273abf;
  width: 36px;
  height: 36px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out; }

.modIconArrow--white:after {
  padding-right: 30px;
  display: inline-block;
  background-image: url(img/icon_arrow.svg); }

h2 {
  font-size: 2.2rem;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  margin: 10px 0 15px;
  line-height: 24px; }

h2 span {
  display: block;
  font-size: 1.3rem;
  padding-left: 15px;
  position: relative; }

h2 span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #13339f; }

/* nav
--------------

nav ul{
	@include flex();
	gap: 30px;
	justify-content: space-between;
	align-items: center;
    font-weight: 600;
}
nav ul li{
	vertical-align: middle;
	width: 100px;
    text-align: center;
	position: relative;

}

nav .subMenu {
    min-width: 100%;
    width: max-content;
    background: #fff;
    padding: 0 20px;
    border-top: 1px dotted #e5e5e5;
    position: absolute;
    top: 100%;
    right: 0;
    box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
    transition-duration: .3s;
    z-index: 1000;
}

li.ac::before{
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
	background: $subcolor; 
    width: 100%;
    height: 2px;
}

.hasChild {
    position: relative;
}

.subMenu {
    display: flex;
    flex-direction: column;
    gap: 0px;
    display: none;
    position: absolute;
    z-index: 1000;
    background: #fff;
    text-align: center;
    width: 200px;
    left: -110%;
    box-shadow: 0 15px 25px 0 rgba(0,0,0,.08);
    padding: 0;
}

.hasChild ul.subMenu li {
    border-bottom: 1px solid #ddd;
}

.hasChild ul.subMenu li a {
    padding: 15px 0 15px;
}

/* kv
--------------*/
.kv {
  position: relative;
  display: flex;
  gap: 40px;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  margin-top: 128px; }

.kv__bg {
  width: 100%;
  height: 650px; }

.kv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom; }

.kv__catch {
  position: absolute;
  width: 100%;
  max-width: calc(760px + 10vw);
  padding: 0 5vw;
  margin: auto;
  box-sizing: border-box; }

.catchCopy.flex {
  font-size: 5rem;
  justify-content: center;
  -webkit-justify-content: center;
  flex-wrap: wrap;
  gap: 25px; }

.catchCopySub {
  display: block;
  opacity: .8;
  font-size: 2rem;
  font-weight: 100;
  width: 100%; }

/* sec
--------------*/
.other_pages {
  margin-top: 100px;
}
.sec01, .sec02, .sec03 {
  margin-top: 50px; }

footer {
  margin-top: 50px; }

.sec01__list.inner {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  display: flex;
  gap: 40px;
  gap: 20px; }

.sec01 .sec01__list.inner {
  gap: 50px; }

.sec01__box {
  width: 50%; }

.sec01__box .txtArea {
  margin-bottom: 40px; }

.sec02 {
  background: #eceef2;
  padding: 50px 40px; }

.sec02__box {
  width: 100%; }

.sec02 dl {
  display: flex;
  gap: 40px;
  margin-top: 20px; }

.sec03 .sec01__list.inner {
  justify-content: center;
  -webkit-justify-content: center; }

/* footer background-color: rgba(0,145,67,.8);
------------------------------------------*/
footer {
  background-color: #fff;
  color: #000;
  border-top: 1px solid #051445;
  font-size: 1.4rem; }

p.name {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px; }

.footer__link.flex {
  gap: 30px; }

.footer__link ul.flex {
  gap: 10px 40px;
  flex-wrap: wrap;
  justify-content: flex-end; }

.footer__link ul.flex li {
  width: 21%; }

.footer__link ul li a {
  line-height: 35px;
  color: #000; }

footer .subMenu {
  display: block;
  position: inherit;
  margin-left: 15px; }

.footer__link ul.flex li ul.subMenu li {
  margin-left: 20px;
  font-size: 1.3rem;
  list-style: disc;
  width: 100%; }

footer .subMenu li a {
  line-height: 25px; }

.footer__txt .txt {
  margin-bottom: 0;
  width: 100%; }

.footer__txt .tel {
  font-size: 1.2rem; }

.footer__bottom {
  background-color: #051445;
  color: #fff;
  padding: 20px 0;
  font-size: 1.2rem; }

.footer__bottom a {
  color: #fff; }

.footer__bottom .flex {
  -webkit-justify-content: space-between;
  justify-content: space-between; }

.pagetop {
  display: block;
  position: fixed;
  right: calc(2.6vw - 25px);
  bottom: 5vh;
  z-index: 100; }

.pagetop a {
  line-height: 50px;
  width: 50px;
  background: #fff;
  display: block;
  text-align: center;
  border-radius: 50%;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
  transition: .3s; }

.pagetop a span {
  width: 12px;
  height: 12px;
  border-left: 2px solid;
  border-top: 2px solid;
  display: inline-block;
  position: relative;
  top: 4px;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: .3s;
  transition: .3s; }

/* sp
------------------------------------------*/
@media screen and (max-width: 600px) {
  body {
    min-width: initial; }

  .flex {
    flex-wrap: wrap;
    gap: 20px; }

  br.sp {
    display: inherit; }

  .sp {
    display: inherit; }

  header > .inner {
    flex-wrap: wrap;
    gap: 20px;
    gap: 0; }

  footer > .inner {
    flex-wrap: wrap;
    gap: 20px; }

  /* header-----------*/
  header {
    height: 61px;
    background: #fff;
    position: fixed;
    margin-top: -61px;
    z-index: 1000;
    padding: 0; }

  header .logo img {
    padding-bottom: 0;
    width: auto;
    height: 40px;
    margin-top: 10px; }

  .header_top {
    display: none; }

  header .sp {
    height: 69px;
    background: #fff; }

  /* menuBtn
  -------------------*/
  #menuBtn {
    width: 20px;
    height: 17px;
    background: #051445;
    padding: 22px;
    display: block;
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10000;
    transition: opacity .5s linear .1s; }

  #menuBtn > span {
    width: 30px;
    height: 2px;
    background: #fff;
    display: inline-block;
    position: absolute;
    right: calc(50% - 15px);
    transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1) 0.2s, width 0.3s cubic-bezier(0.65, 0, 0.35, 1), background 0.3s; }

  #menuBtn > span:nth-of-type(2) {
    top: 50%; }

  #menuBtn > span:nth-of-type(3) {
    top: calc(50% + 9px); }

  nav {
    background-color: #fff;
    color: #000;
    margin-top: 0;
    padding: 20px 5vw 0;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity .5s linear .1s; }

  .hasChild a {
    display: block;
    border-bottom: 1px solid #ddd; }

  nav ul li.hasChild .subMenu {
    display: block;
    position: inherit;
    width: 100%;
    left: auto;
    box-shadow: none; }

  .hasChild,
  nav ul li.hasChild .subMenu li {
    border-bottom: none !important; }

  nav ul li.hasChild .subMenu li a {
    padding: 0;
    font-size: 1.3rem;
    border-bottom: none !important; }

  nav ul {
    flex-wrap: wrap; }

  nav ul li {
    width: 100%;
    border-bottom: 1px solid #ddd;
    line-height: 35px; }

  nav li a {
    padding: 0; }

  li.ac::before {
    bottom: 0; }

  .sp.bunner {
    text-align: center;
    margin-top: 40px; }

  .sp.bunner .btnEntry,
  .sp.bunner img {
    display: inherit;
    width: 70%;
    margin: 20px auto 0; }

  .sp.bunner .btnEntry {
    padding: 0;
    margin: 0 auto; }

  .btn02:hover::before {
    background: url("../img/icon_mail02.svg") no-repeat center center/cover; }

  /* hover---------*/
  #menuBtn.ac > span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(-45deg);
    transform: translateY(9px) rotate(-45deg); }

  #menuBtn.ac > span:nth-of-type(2) {
    width: 0; }

  #menuBtn.ac > span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) rotate(45deg);
    transform: translateY(-9px) rotate(45deg); }

  nav.ac {
    pointer-events: auto;
    opacity: 1; }

  /* kv
  -------------------*/
  .kv {
    margin-top: 60px; }

  .kv__bg {
    height: 300px; }

  .kv__catch {
    margin-top: 20px;
    margin-right: 90px;
    max-width: calc(180px + 10vw); }

  /* sec
  -------------------*/
  .sec01, .sec02, .sec03, footer {
    margin-top: 40px; }

  .sec01__list.inner {
    gap: 40px; }

  .sec01__box {
    width: 100%; }

  .inner {
    flex-wrap: wrap;
    gap: 20px;
    margin: auto; }

  .sec01__box .txtArea {
    margin-bottom: 20px; }

  .sec02 dl {
    flex-wrap: wrap;
    gap: 20px; }

  .sec03 .sec01__list.inner {
    display: flex;
    gap: 10px; }

  .sec03 .sec01__box {
    width: 31%; }

  .sec01__box p.align__c.mt45 {
    margin-top: 20px; }

  /* footer
  -------------------*/
  footer {
    text-align: center;
    padding-top: 10px; }

  footer > .inner {
    justify-content: center;
    -webkit-justify-content: center; }

  footer .logo img {
    width: 50%; }

  .footer__link.flex {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    -webkit-justify-content: center;
    width: 100%;
    gap: 0; }

  .footer__link ul.flex {
    width: 100%;
    justify-content: center;
    -webkit-justify-content: center;
    gap: 5px 20px; }

  .footer__link ul.flex:nth-child(2) {
    margin-top: 0; }

  .footer__link ul.flex li {
    width: 100%;
    border-bottom: 1px solid #ddd; }

  .footer__link ul.flex li ul.subMenu {
    display: none; }

  .footer__txt {
    order: 2;
    width: 100%;
    margin: 20px 0; }

  .footer__bottom .flex {
    justify-content: center;
    -webkit-justify-content: center;
    gap: 10px 20px;
    margin-bottom: 10px; }

  .pagetop {
    right: 2vw; } }
/* 下層ページ
--------------*/
.yl {
  background: linear-gradient(transparent 65%, #ffee62 70%);
  display: inline-block;
  margin-left: 15px; }

.w100 {
  width: 100% !important; }

.ml30 {
  margin-left: 30px; }

.fs18 {
  font-size: 18px; }

.flex.x2 {
  align-items: center;
  -webkit-align-items: center; }

a.under {
  text-decoration: underline; }

.flex.x2 > p {
  width: 50%; }

.flex.x2 > p span {
  display: block; }

.x5 > * {
  width: 20%; }

.spAlign__c {
  text-align: right; }

.underlayer .kv__bg {
  height: 350px; }

.underlayer .kv__bg img {
  object-position: center top; }

.underlayer .catchCopySub {
  font-size: 1.5rem;
  opacity: 1; }

.underlayer .catchCopyMain {
  font-size: 3.2rem;
  font-weight: 600; }

.underlayer .catchCopy.flex {
  gap: 0;
  letter-spacing: 0.1rem;
  color: #fff;
  text-align: center; }

.bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); }

.subNav ul {
  display: flex;
  gap: 40px;
  justify-content: center;
  -webkit-justify-content: center;
  margin-top: 30px;
  gap: 10px;
  flex-wrap: wrap; }

.subNav ul li a {
  font-size: 1.3rem;
  text-align: center;
  display: inline-block;
  padding: 5px 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  color: #000; }

/*.subNav ul{
	@include flex();
	@include jc();
	margin-top: 10px;
}
.subNav ul:first-child{
	margin-top: 50px;
}

.subNav ul li{
	text-align: center;
}

.subNav ul li+ li {
  border-left: 1px solid #333;
  padding-left: 40px;
}

.subNav ul.x5{
	gap: 10px;
	align-items: center;
}
.subNav ul.x5 li{
	padding: 0 15px;
}
.subNav ul.x5 li+ li{
	padding-left: 10px;
} */
h2.ttl {
  position: relative;
  padding-left: 20px;
  font-size: 2.5rem;
  border-bottom-color: #13339f; }

h2.ttl::before {
  content: "";
  position: absolute;
  top: 28%;
  left: 0;
  margin: auto 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #13339f; }

h3 {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 25px;
  padding: 10px 0 10px 15px;
  margin: 60px 0 25px;
  color: #000;
  background-color: #f6f6ff;
  position: relative; }

h3::before {
  content: "";
  display: block;
  width: 3px;
  height: 30px;
  background-color: #13339f;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%); }

ul#pankuzu.flex {
  font-size: 1rem;
  margin-top: 40px;
  gap: 0;
  justify-content: end; }

ul#pankuzu li a {
  color: #13339f; }

#pankuzu li:not(:first-child)::before {
  content: "";
  width: 4px;
  height: 4px;
  margin: 0 10px;
  display: inline-block;
  border-top: 1px solid #13339f;
  border-right: 1px solid #13339f;
  position: relative;
  top: -2px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

.pt7 {
  padding-top: 7px; }

.supplement {
  font-size: 90%;
  color: #555; }

table.table_A {
  width: 100%;
  margin-top: 40px; }

table.table_A tr {
  border-bottom: 1px solid #ddd; }

table.table_A th {
  width: 18%;
  padding: 15px;
  font-weight: 600;
  border-bottom: 1px solid #aaa; }

table.table_A td {
  padding: 20px; }

#acces_map {
  width: 500px;
  height: 100%; }

#map {
  margin-top: 10px;
  width: 100%;
  overflow: hidden; }

#map iframe {
  width: 100%;
  height: 432px;
  margin-top: -140px; }

ul.disc li {
  list-style: disc;
  margin-left: 2.8rem; }

ul.decimal li {
  list-style: decimal;
  margin-left: 1.8rem; }

ul.decimal li + li {
  margin-top: 10px; }

.border {
  border: 2px solid #eee;
  padding: 20px 40px;
  margin: 30px 0; }

h4 {
  font-size: 1.8rem;
  font-weight: 600;
  padding: 8px 0;
  margin-top: 40px;
  position: relative; }

.txtArea > h4 {
  margin-top: 0; }

p.sub {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 10px;
  padding-left: 40px;
  color: #051445;
  padding-bottom: 5px;
  position: relative; }

p.sub::before {
  content: "";
  width: 24px;
  height: 1px;
  background: #051445;
  display: block;
  position: absolute;
  top: 14px;
  left: 0; }

.outlink {
  position: relative; }

.outlink::before, .outlink::after {
  content: "";
  display: block;
  width: 11px;
  height: 10px;
  border: 1px solid #13339f;
  position: absolute;
  top: 8px;
  right: 10px; }

.outlink::after {
  top: 13px;
  right: 15px;
  border-top: none;
  border-right: none; }

.flex > .txtArea {
  width: 45%; }

/* work
------------------------------------------*/
.border.flex > .txtArea {
  width: 100%; }

.flex.introduction figure {
  width: 40%; }

.flex.introduction div {
  width: 60%; }

/* recruit
------------------------------------------*/
.flex.recruit {
  flex-wrap: wrap; }

.flex.recruit > * {
  width: 47.9%; }

.flex.recruit p {
  text-align: center;
  color: #000; }

.nav02 ul {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  gap: 0;
  border-left: 1px solid #ccc;
  border-top: 1px solid #ccc;
  position: relative;
  z-index: 1000;
  margin-top: -42px; }

.nav02 ul li {
  width: 24.85%;
  background: #fff;
  text-align: center;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc; }

.nav02 ul li a {
  display: block;
  height: 40px;
  line-height: 40px;
  width: 100%;
  color: #000;
  transition-duration: .3s; }

.nav02 ul li.ac a {
  background: #eee;
  color: #051445; }

.nav02 ul li a:hover {
  background: #13339f; }

.nav02 ul li a:hover {
  color: #fff; }

.flex.message {
  border: 1px solid #ccc;
  align-items: center;
  margin-bottom: 50px; }

.flex.message p {
  width: 50%;
  padding: 10px; }

.flex.message p:first-child {
  background-image: linear-gradient(135deg, #a01e34 10%, rgba(61, 9, 9, 0.9) 90%);
  color: #fff;
  font-size: 2rem;
  margin-bottom: 0;
  text-align: center; }

.flex.message p:first-child span {
  font-size: 1.2rem; }

.entryBtn {
  margin-top: 40px;
  text-align: center; }

.entryBtn a {
  font-size: 2.6rem;
  letter-spacing: 0.25rem;
  font-weight: 600;
  background-image: linear-gradient(135deg, #000 10%, #aaa 100%);
  padding: 20px 90px;
  color: #fff;
  line-height: 70px; }

.bg {
  background: #fafafa;
  padding: 20px 25px; }

.flex.x3 {
  flex-wrap: wrap; }

.flex.x3 > * {
  width: 30%; }

.flex.x3 > * img {
  width: 100%; }

/* privacy
-------------------*/
.inner.privacy ul {
  margin-top: -10px; }

/* sitemap
-------------------*/
.flex.sitemap {
  justify-content: center;
  -webkit-justify-content: center;
  gap: 150px;
  margin-top: 30px; }

ul.sitemap li {
  font-weight: 600; }

ul.sitemap li + li {
  margin-top: 40px; }

ul.sitemap_sub li {
  list-style: disc;
  font-weight: normal;
  margin: 10px 0 0 35px; }

ul.sitemap_sub li + li {
  margin-top: 10px; }

/* question
-------------------*/
.question th {
  width: 30%; }

input {
  padding: 5px; }

.formTitle img {
  width: 60%; }

.table_A.question th {
  width: 30%;
  padding: 25px 15px; }

/* work
-------------------*/
.sec01__box h2.ttl {
  font-size: 2.2rem; }

.ttl {
  margin-top: 20px;
  font-size: 1.8rem;
  font-weight: 600; }

.flex.subMenu .border {
  padding: 20px; }

.border.work h3 {
  margin-top: 0; }

.border.work h3 span {
  margin-right: 7px;
  color: #13339f; }

.border.work h3.disc {
  padding-left: 50px; }

.border.work h3.disc span {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%); }

.border.work {
  position: relative;
  margin-bottom: 50px; }

.border.work::after {
  position: absolute;
  bottom: -80px;
  left: 46%;
  content: "";
  background: #13339f;
  height: calc(tan(60deg) * 120px / 2);
  width: 20px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: rotate(90deg); }

.border.work:last-child::after {
  display: none; }

.border.work .flex > * {
  width: 50%; }

.border.work figure {
  text-align: center; }

h3.ttl {
  font-size: 2rem;
  color: #fff;
  margin-top: 80px;
  background: linear-gradient(0.25turn, #13339f, #4133ff); }

h3.ttl::before {
  display: none; }

/* recruit
-------------------*/
.entry {
  margin-top: 30px; }

.entry .btnEntry {
  padding: 0 110px;
  line-height: 60px;
  height: 60px;
  font-size: 2.8rem; }

.align__c .btn {
  display: inline-block;
  font-size: 1.8rem; 
	margin-top: 40px;}

/* common flexべbbだーいれる
------------------------------------------
.business{
	margin-bottom: 40px;
	border-bottom: 1px solid #eee;
    padding-bottom: 40px;
}
.business:first-of-type,
.business:last-of-type{
	border-bottom: none;
	padding-bottom: none;
}

.align__c.service{
	margin-top: 60px;
}

.align__c figure{
	margin-top: 30px;
}

.textArea{
	width: 60%;
}

.entryBtn{
	margin-top: 40px;
	text-align: center;
}

.entryBtn a{
	font-size: 1.8rem;
	font-weight: 600;
	width: 180px;
    height: 10px;
    background-image: linear-gradient(135deg, #11ca67 10%, #096232 100%);
	padding: 30px 60px;
	color: #fff;
	line-height: 70px;
}


/* sitemap
-------------------
ul.sitemap{
	margin-left: 20px;
}
ul.sitemap li{
	margin-bottom: 20px;
}
ul.sitemap li a{
	color: #000;
}
ul.sitemap li a::before{
	content: "";
	 width: 8px;
    height: 8px;
    border-left: 1px solid;
    border-top: 1px solid;
    display: inline-block;
    position: relative;
    top: 0;
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transition: .3s;
    transition: .3s;
	margin-right: 10px;
}


p.outlink{
	font-weight: 600;
	margin: 40px 0 0 40px;
	
	
}

a.outlink{
	position: relative;
	padding-left: 30px;
}
.outlink::before, .outlink::after {
    content: "";
    display: block;
    width: 11px;
    height: 10px;
    border: 1px solid $maincolor;
    position: absolute;
    top: -24%;
    left: 9px;
}

.outlink::after {
	top: -3%;
    left: 5px;
    border-top: none;
    border-right: none;
}



/* sp
------------------------------------------*/
@media screen and (max-width: 600px) {
  .fs18 {
    font-size: 16px; }

  .underlayer .kv__bg {
    height: 150px; }

  .underlayer .kv__catch {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    max-width: inherit; }

  .underlayer .catchCopySub {
    font-size: 1.3rem;
    opacity: 1; }

  .underlayer .catchCopyMain {
    font-size: 2.5rem; }

  .subNav ul {
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 20px;
    justify-content: flex-start;
    -webkit-justify-content: flex-start; }
  .other_pages {
     margin-top: 50px;
  } 

  ul#pankuzu.flex {
    margin-top: 10px;
  }
  .sec01.inner {
    margin-top: 40px; }

  h3 {
    font-size: 1.8rem;
    margin: 30px 0 15px;
    padding: 10px 0 10px 20px; }

  h4 {
    margin-top: 15px; }

  .flex.x2 > p {
    width: 100%; }

  .spAlign__c {
    text-align: center; }

  .align__c.service {
    margin-top: 30px; }

  table.table_A th {
    width: 100%;
    display: block;
    padding: 10px 0 0;
    border-bottom: none; }

  table.table_A td {
    width: calc(100% - 15px);
    display: block;
    padding: 10px 0 10px 15px; }

  /* work
  -------------------*/
  figure.w100 img {
    width: 100%; }

  /* work
  -------------------*/
  h2.ttl {
    font-size: 2.2rem; }

  	/* service
  -------------------*/
  .subNav ul li a {
    font-size: 1rem; }

  ul.flex.service {
    flex-wrap: nowrap;
    font-size: 1.2rem; }

  .flex > .txtArea, .textArea {
    width: 100%; }

  ul.flex.cta .wb {
    width: 100%; }

  p.sub {
    margin-bottom: 7px; }

  .wb span.tel {
    font-size: 2.4rem; }

  .wb span.tel::before {
    top: 6px;
    width: 25px;
    left: -5px; }

  .wb span.mail {
    font-size: 2rem; }

  .wb span.mail::before {
    top: 2px;
    height: 30px;
    left: 0px; }

  	/* recruit
  -------------------*/
  .flex.recruit > * {
    width: 100%; }

  .nav02 ul {
    margin-top: 30px; }

  .nav02 ul li {
    width: 100%; }

  .flex.message {
    gap: 0;
    margin-bottom: 30px; }

  .flex.message p {
    width: 100%;
    text-align: center; }

  .entryBtn a {
    display: inline-block;
    text-align: center;
    width: 50%;
    height: auto;
    padding: 20px 40px;
    line-height: 30px; }

  #map {
    width: 100%; }

  .flex.x3.work {
    justify-content: center;
    gap: 10px; }

  	/* question
  -------------------*/
  .table_A.question {
    margin-top: 0; }

  .table_A.question td {
    width: 100%;
    padding-bottom: 25px; }

  .table_A.question th {
    width: 100%;
    padding-bottom: 0; }

  	/* sitemap
  -------------------*/
  .flex.sitemap {
    gap: 30px; }

  ul.sitemap {
    width: 90%; }

  ul.sitemap li + li {
    margin-top: 30px; }

  ul.sitemap li + li {
    margin-top: 15px; }

  .formTitle img {
    width: 100%; }

  .profile {
    width: 100%; }

  .ttl {
    margin-top: 10px;
    font-size: 1.6rem;
    font-weight: 600; }

  /* work
  ------------------------------------------*/
  .flex.introduction figure,
  .flex.introduction div {
    width: 100%; }

  .flex.introduction.order figure {
    order: 1; }

  .flex.introduction.order div {
    order: 2; }

  .flex.subMenu {
    flex-wrap: nowrap; }

  .flex.subMenu .border {
    gap: 0;
    padding: 5px;
    margin-top: 10px; }

  .border.work .flex > * {
    width: 100%; }
  }
