@charset "UTF-8";
/*------------------------------------------------------------
	Reset
------------------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

/* html {
  font-size: 62.5%;
} */

body {
  -webkit-text-size-adjust: 100%;
  min-width: 320px;
}

main{
  max-width: 100%;
  overflow: hidden;
}

body, table,
input, textarea, select, option,
h1, h2, h3, h4, h5, h6 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

table,
input, textarea, select, option {
  line-height: 1.1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: top;
}

a,
a img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

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

a:hover,
a:hover img {
  opacity: 0.80;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
}

img {
  max-width: 100%;
}

.sp-only {
  display: none;
}

@media only screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}

@media only screen and (min-width: 767px) {
  body {
    min-width: 1200px;
  }
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Layout .l-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
.c-headerV2 {
  background-color: white;
}

.c-headerV2--relative{
  position: relative;
}

.c-headerV2 .l-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.c-headerV2__head {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.c-headerV2__logo {
	width: 30%;
}

.c-headerV2__logo a{
  display: flex;
  align-items: center;
}

.c-headerV2__logo a img:not(:last-child){
  margin-right: 10px;
}

.c-headerV2__logo a p{
  font-size: 14px;
  color: white;
  background-color: #dfbe0f;
  padding: 2px 7px;
  border-radius: 5px;
  position: relative;
  word-break: keep-all;
}

.c-headerV2__list {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  align-items: flex-start;
}

/* .c-headerV2__list .c-btnV2 {
  margin-left: 20px;
} */
.c-headerV2__menu{
  background-color: #003363;
}

.c-headerV2__menu ul{
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: baseline;
  align-items: baseline;
}

.c-headerV2__menu ul li{
  width: calc(100% / 6);
  position: relative;
}

.c-headerV2__menu ul li:first-child::before,
.c-headerV2__menu ul li::after{
  display: block;
  position: absolute;
  content: '';
  width: 1px;
  height: 60%;
  top: 50%;
  background-image: linear-gradient(to top, #ddbb05 , white , #ddbb05);
}

.c-headerV2__menu ul li:first-child::before{
  left: 0;
  transform: translateX(-50%) translateY(-50%);
}

.c-headerV2__menu ul li::after{
  right: 0;
  transform: translateX(50%) translateY(-50%);
}

.c-headerV2__menu ul a{
  color: #f5d82f;
  padding: 23px 0;
  display: block;
  text-align: center;
  transition: 0.3s all;
}
.c-headerV2__menu ul a:hover{
  background-color: #f5d82f;
  color: #003363;
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .c-headerV2 {
    position: sticky;
    top: 0;
    z-index: 10;
    max-width: 100%;
  }
  .c-headerV2--relative{
    /* overflow: hidden; */
    padding: 15px 10px;
  }
  .c-headerV2__head {
    margin: unset;
    position: relative;
  }
  .c-headerV2__list.pc-only {
    display: none;
  }
  .c-headerV2__logo {
    width: 40%;
  }
  .c-headerV2__logo img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
  }
  .c-headerV2__logo a img:last-child{
    width: 30%;
  }
  .c-headerV2__logo a p{
    font-size: 11px;
    padding: 1px 5px;
    border-radius: 3px;
  }
  .c-headerV2__btnSp {
    width: 25px;
    margin-right: 10px;
    height: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    cursor: pointer;
  }
  .c-headerV2__btnSp span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #007dcf;
    position: relative;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
  }
  .c-headerV2__btnSp span:before, .c-headerV2__btnSp span:after {
    content: "";
    height: 3px;
    width: 100%;
    background-color: #007dcf;
    position: absolute;
    -webkit-transition: top 0s, -webkit-transform 0.8s;
    transition: top 0s, -webkit-transform 0.8s;
    transition: transform 0.8s, top 0s;
    transition: transform 0.8s, top 0s, -webkit-transform 0.8s;
  }
  .c-headerV2__btnSp span:before {
    top: -7px;
  }
  .c-headerV2__btnSp span:after {
    bottom: -7px;
  }
  .c-headerV2__btnSp.is-close span {
    height: 0;
    -webkit-transition: all 0s;
    transition: all 0s;
  }
  .c-headerV2__btnSp.is-close span:before {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    top: -1px;
  }
  .c-headerV2__btnSp.is-close span:after {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    top: -1px;
  }
  .c-headerV2__navSp {
    background-color: rgba(11, 124, 192, 0.9);
    padding: 20px 10px 30px;
    position: absolute;
    /* top: 50px; */
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    transform: translateY(100%);
    overflow-y: scroll;
    max-width: 100%;
    display: none;
    height: calc(100vh - 100%);
  }
  .c-headerV2__navSpButton {
    text-align: center;
    margin-top: 17px;
  }
  .c-headerV2__navSpButton .c-btn01 {
    min-width: 0;
    margin-left: 4px;
    margin-right: 4px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 500px) {
  .c-headerV2__logo a p{
    font-size: 8px;
  }
}

.c-footer {
  background-color: #03b1ee;
  padding-bottom: 30px;
  color: white;
}

.c-footer__content {
  background-color: #004587;
  padding-bottom: 30px;
}

.c-footer__menu {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  align-items: flex-start;
  width: 50%;
}

.c-footer__menu ul{
  margin-top: 20px;
}

.c-footer__menu ul li {
  margin-bottom: 10px;
  color: white;
}

.c-footer__menu ul li:last-child {
  margin-bottom: 0;
}

.c-footer__menu a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  content: '\f054';
  margin-right: 5px;
}

.c-footer__btns {
  width: 50%;
}

.c-footer__btns--flex {
  padding-left: 80px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: start;
  align-items: flex-start;
  margin-bottom: 35px;
}

.c-footer__copy {
  text-align: right;
}

.c-footer .l-container {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  align-items: flex-start;
}
@media only screen and (max-width: 550px){
  .c-footer__menu,.c-footer__btns--flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .c-footer__btns{
    width: 100%!important;
    margin: 0 auto;
    min-width: unset!important;
  }
  .c-footer__btns a{
    margin: 0 auto;
    /* margin-bottom: 3%; */
  }
}
@media only screen and (max-width: 767px) {
  .c-footer {
    max-width: 100%;
    overflow: hidden;
  }
  .c-footer .l-container {
    flex-wrap: wrap;
  }
  .c-footer__menu{
    width: 100%;
  }
  .c-footer__btns{
    width: 75%;
    margin: 0 auto;
    min-width: 510px;
  }
  .c-footer__menu ul {
    margin-top: 0;
    margin-bottom: 10px;
  }
  .c-footer__btns--flex {
    padding-left: 0;
    justify-content: space-around;
  }
  .c-footer__copy {
    text-align: center;
  }
  .c-footer__content{
    padding-top: 20px;
  }
}

/*------------------------------------------------------------
sidebar
------------------------------------------------------------*/
/* Breadcrumb
------------------------------------------------------------*/
/* layout
------------------------------------------------------------*/
body {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 16px;
  min-width: 1200px;
  line-height: 1.5;
}

@media only screen and (max-width: 767px) {
  body {
    min-width: 320px;
  }
}

/* .c-mainvisual {
  margin-top: -63px;
  padding: 0;
  height: 700px;
  background: url(../img/bg-header.jpg) no-repeat center;
  background-size: cover;
  color: #fff;
}

.c-mainvisual__inner {
  position: relative;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  padding-top: 63px;
  text-align: center;
}

.c-mainvisual h2 {
  width: 100%;
  flex-basis: 100%;
  font-size: 8rem;
  font-weight: 400;
}

.c-mainvisual p {
  width: 100%;
  font-size: 2rem;
}

.c-mainvisual .c-btn1 {
  margin-top: 50px;
}

.c-mainvisual--subpage {
  height: 300px;
}

.c-mainvisual--subpage h2 {
  font-size: 5rem;
} */

.l-container {
  width: 1200px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .l-container {
    width: auto;
    margin: 0 10px;
  }
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Component .c-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/* ---flow--- */
.c-flow__list{
  margin-top: 40px;
  padding-left: 40px;
  counter-reset: steps;
}

.c-flow__list li{
  display: flex;
  margin-bottom: 30px;
}

.c-flow__list li:last-child{
  margin-bottom: 0;
}

.c-flow__img{
  width: 206px;
  height: 170px;
  box-sizing: border-box;
  margin-right: 30px;
  position: relative;
}

.c-flow__img::before{
  counter-increment: steps;
  position: absolute;
  content: 'STEP 'counter(steps);
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #03b2ef;
  font-size: 16px;
  font-weight: bold;
  top: 50%;
  left: 0;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
}

.c-flow__img--2::before{
  color: #f5d82f;
  background-color: #003363;
}

.c-flow__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-flow__text{
  width: calc(100% - 206px - 30px);
}

.c-flow__text h3{
  font-size: 20px;
  color: #003363;
  font-weight: bold;
  margin-bottom: 20px;
}

/* .c-flow__text h3::before{
  counter-increment: steps;
  content: 'STEP 'counter(steps);
  color: white;
  background-color: #03b2ef;
  padding: 3px 10px;
  margin-right: 10px;
  font-size: 18px;
} */

.c-flow__text p{
  font-size: 16px;
}
@media screen and (max-width: 768px){
  .c-flow__list li{
    flex-direction: column;
    margin-bottom: 5vw;
  }
  .c-flow__text p{
    font-size: 14px;
  }
  .c-flow__list{
    padding: 0;
    margin-top: 5vw;
  }
  .c-flow__img{
    margin: 0 auto;
    width: 80vw;
    height: 60vw;
    max-width: 400px;
    max-height: 250px;
  }
  .c-flow__text{
    width: 100%;
    text-align: center;
    margin-top: 3vw;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  .c-flow__img::before{
    top: 0;
    left: 0;
    transform: translateX(-20%) translateY(-20%);
  }
}
/* ------------ */
.c-table{
  margin-top: 30px;
  width: 100%;
  font-size: 16px;
}
.c-table,
.c-table tr,
.c-table th,
.c-table td{
  border: 1px solid #e6e6e6;
  border-collapse: collapse;
}

.c-table th div,
.c-table td div{
  padding: 10px 15px;
  min-height: 38px;
}

.c-table table{
  margin-top: 30px;
  width: 100%;
  font-size: 16px;
}

.c-table th{
  width: 250px;
  text-align: center;
}

.c-table table th:last-child{
  width: calc(100% - 500px);
}

.c-table th:first-child,
.c-table td:first-child{
  background-color: #003363;
  color: white;
}

.c-table th:nth-child(2){
  background-color: #7f99b1;
  color: white;
}
@media only screen and (max-width: 768px){
  .c-table{
    font-size: 14px;
  }

  .c-table tr th{
    width: 33%;
  }
	.c-table tr th:nth-child(2) {
		width: 37%;
	}
  .c-table tr th:last-child{
    width: 30%;
  }

  .c-table th div,
  .c-table td div{
    padding: 10px 5px;
  }
}
@media only screen and (max-width: 450px){
	.c-table td {
		font-size: 10px;
	}
}
.c-page__banner{
  height: 140px;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-page__banner h2{
  font-size: 36px;
  margin: 0 125px;
  color: #f5d82f;
}

.c-page__banner img{
  height: 80%;
}

.c-pagination{
  margin-top: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-pagination .page-numbers{
  font-size: 16px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #eaeaea;
  box-sizing: border-box;
  margin: 0 5px;
  transition: 0.3s all;
}
.c-pagination .page-numbers:hover,
.c-pagination .current{
  color: white;
  background-color: #003363;
  border: 1px solid #003363;
}
.c-pagination .next,
.c-pagination .prev{
  width: unset;
  height: unset;
  border: none;
  color: #003363!important;
  background-color: transparent!important;
}
.c-pagination .prev{
  margin-left: 0;
  margin-right: 10px;
}
.c-pagination .next{
  margin-left: 10px;
  margin-right: 0;
}
.c-backBtn{
  width: 30%;
  margin: 0 auto;
  position: relative;
  margin-top: 30px;
}
.c-backBtn::before{
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
  color: white;
  pointer-events: none;
  font-size: 14px;
  z-index: 1;
}
.c-backBtn a{
  display: block;
  width: 100%;
  color: white;
  background-color: #003363;
  font-size: 14px;
  text-align: center;
  padding: 19.5px 0;
}
.c-content{
  position: relative;
  padding: 30px;
  border: 1px solid #e6e6e6;
  background-color: white;
  position: relative;
  font-size: 16px;
}
.c-content__fail{
  font-size: 18px;
}
.c-content__object--01,
.c-content__object--02{
  position: absolute;
  top: 0;
}
.c-content__object--01{
  right: 30px;
  transform: translateY(-60%);
}
.c-content__object--02{
  right: 0;
  transform: translateY(-20px) translateX(100px)
}
.c-content__voice-p1{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.c-content__voice-gallery{
  width: 250px;
}
.c-content__voice_example{
  width: calc(100% - 270px);
}
.c-content__voice_example h5,
.c-content__voice-p2 h5{
  font-size: 20px;
  color: #004587;
}
.c-content__voice-p2 h5{
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid #004587;
}
.c-content__voice-p2{
  margin-top: 65px;
  padding-bottom: 20px;
}
.c-content__voice_example h5{
  margin-bottom: 15px;
}
.c-content__voice-gallery img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-content__voice-mainImg,
.c-content__voice-img{
  border: 1px solid #eaeaea;
  overflow: hidden;
  box-sizing: border-box;
}
.c-content__voice-mainImg{
  width: 100%;
  height: 189px;
  margin-bottom: 10px;
}
.c-content__voice-mainImg div{
  width: 100%;
  height: 100%;
}
.c-content__voice-thumbnail{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  height: 60px;
}
.c-content__voice-thumbnail .slick-track{
  width: 100%!important;
  height: 100%!important;
}
.c-content__voice-thumbnail .c-content__voice-img:last-child{
  margin-right: 0;
}
.c-content__voice-img{
  width: 32%!important;
  margin-right: 2%;
  cursor: pointer;
}

.c-btnV2 {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  width: 250px;
  height: 100px;
  box-sizing: border-box;
  color: white;
  background-color: #00488c;
  padding: 10px 15px;
  padding-top: 15px;
}

.c-btnV2 i {
  margin-right: 10px;
  vertical-align: middle;
}

.c-btnV2 h4, .c-btnV2 i {
  font-size: 25px;
}

.c-btnV2 h5 {
  font-size: 23px;
  font-weight: normal;
}

.c-btnV2 p {
  font-weight: normal;
  font-size: 15px;
}

.c-btnV2--phone h4{
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
}

.c-btnV2--yellow {
  background-color: #f5d82f;
  color: #003363;
}

.c-btnV2--blue{
  background-color: #007bcd;
  color: white;
}

.c-btnV2--border {
  border: 2px solid white;
}

.c-faq__Q::before,
.c-faq__A::before{
  content: '';
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
  float: left;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.c-faq__Q,
.c-faq__A{
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding-left: 50px;
}

.c-faq__Q{
  margin-bottom: 20px;
  font-weight: bold;
}

.c-faq__A{
  margin-bottom: 40px;
}

.c-content .c-faq:last-child .c-faq__A{
  margin-bottom: 0;
}

/* .c-faq__Q p,
.c-faq__A */
@media only screen and (min-width: 767px) {
  .c-content__voice-img{
    height: 100%!important;
  }
}

@media only screen and (max-width: 767px) {
  /* Page Banner */
  .c-page__banner{
    position: relative;
  }
  .c-page__banner h2{
    font-size: 18px;
    margin: 0;
    padding: 0 30px;
  }
  .c-page__banner img{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .c-page__banner img[alt='object-left']{
    left: 10px;
  }
  .c-page__banner img[alt='object-right']{
    right: 10px;
  }
  /* /Page Banner */
  .c-pagination{
    margin-top: 20px;
  }
  .c-backBtn{
    width: 100%;
  }
  .c-backBtn a{
    padding: 13.5px 0;
  }
  .c-content{
    padding: 20px 10px;
    font-size: 14px;
  }
  .c-content__object--01{
    right: 0;
    transform: translateY(-30px) translateX(50%);
  }
  .c-content__object--02{
    display: none;
  }
  .c-btnV2 {
    height: 60px;
    padding: 5px;
  }
  .c-btnV2 h4, .c-btnV2 h5 {
    font-size: 16px;
  }
  .c-btnV2 p {
    font-size: 9px;
  }
  .c-btnV2 i {
    font-size: 16px;
    margin-right: 5px;
  }
  .c-content__voice-p1{
    flex-wrap: wrap;
  }
  .c-content__voice-gallery,
  .c-content__voice_example{
    width: 100%;
  }
  .c-content__voice-p2,
  .c-content__voice_example{
    margin-top: 20px;
  }
  .c-content__voice-p2 h5{
    margin-bottom: 15px;
  }
  .c-content__voice-mainImg{
    height: 50vw;
    max-height: 250px;
  }
  .c-content__voice-thumbnail,
  .c-content__voice-img{
    height: 15vw;
    max-height: 150px;
  }
  .c-content__voice-thumbnail .slick-list{
    height: 100%;
  }
  .c-pagination .page-numbers{
    width: 7vw;
    height: 7vw;
    min-width: 25px;
    min-height: 25px;
    max-width: 45px;
    max-height: 45px;
    font-size: 14px;
  }
  .c-pagination .next{
    margin-left: 5px;
  }
  .c-pagination .prev{
    margin-right: 5px;
  }
}

.c-tableV2 {
  width: 100%;
  background-color: white;
}

.c-tableV2__desc{
  margin-bottom: 28px;
}

.c-tableV2__title-icon{
  width: 50px;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.c-tableV2__services-icon{
  width: 50px;
  position: absolute;
  left: 20px;
  bottom: 0;
}

@media only screen and (max-width: 768px){
  .c-tableV2__title-icon{
    left: unset;
    right: 60px;
    opacity: 0.3;
  }

  .c-tableV2__services-icon{
    right: 20px;
    left: unset;
    opacity: 0.5;
  }
}

.c-tableV2__title-icon img{
  width: 100%;
  height: auto;
}

.c-tableV2__title {
  padding: 20px;
  padding-left: 75px;
  background-color: #003363;
  color: #f5d82f;
  font-weight: normal;
  position: relative;
  display: flex;
  align-items: center;
}

.c-tableV2__title--2{
  padding: 20px;
}

.c-tableV2__title h3{
  font-size: 20px;
}

.c-tableV2__title--object {
  position: absolute;
  width: 90px;
  height: 90px;
  right: 20px;
  bottom: 0;
}

.c-tableV2__title--object img {
  max-height: 100%;
  max-width: 100%;
}

.c-tableV2__title a {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.c-tableV2__title a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  content: '\f0a9';
  margin-right: 10px;
  vertical-align: middle;
}

.c-tableV2__content {
  padding: 30px;
  overflow: hidden;
  position: relative;
  border: 1px solid #eaeaea;
  border-top: none;
}

.c-tableV2__content--no-hide {
  overflow: unset;
}

.c-tableV2__content--yellow {
  background-color: #fef9d1;
}

.c-tableV2__itemDesc{
  margin-top: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

.c-tableV2__menuList {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
/*   -webkit-box-align: start; */
/*   align-items: flex-start; */
  flex-wrap: wrap;
}

.c-tableV2__menuItem {
  display: block;
  overflow: hidden;
/*   background-color: #003363; */
  color: white;
  text-align: center;
	width: 100%;
	height: 100%;
}

.c-tableV2__menuItem p {
  background-image: linear-gradient(to top, #ddbb05 , white , #ddbb05);
  padding: 8px 20px;
  position: relative;
  font-size: 13px;
  color: black;
	height: calc(100% - 160px);
	display: flex;
	justify-content: center;
	align-items: center;
}

.c-tableV2__menuItem .blue{
  background-image: unset;
  background-color: #003363;
  color: white;
}

.c-tableV2__menuItem p::before {
  display: block;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  content: '\f054';
  top: 50%;
  right: 12px;
	transform: translatey(-50%);
}

.c-tableV2__noticeList li {
  margin-bottom: 10px;
}

.c-tableV2__noticeList li:last-child {
  margin-bottom: 0;
}

.c-tableV2__noticeList a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: baseline;
  align-items: baseline;
}

.c-tableV2__noticeList a p:nth-child(2) {
  margin: 0 10px;
  font-size: 12px;
  padding: 5px 10px;
  vertical-align: middle;
}

.c-tableV2__ImenuIcon {
  height: 160px;
  background-color: #b3c7da;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

@media only screen and (min-width: 767px) {
  /* .c-tableV2__itemDesc{
    margin-top: 2%;
  } */
  .c-tableV2__menuList li {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 2%;
  }
  .c-tableV2__menuList li:nth-child(3n) {
    margin-right: 0;
  }
/*   .c-tableV2__menuList li:nth-last-child(-n+4) {
    margin-bottom: 0;
  } */
}
@media only screen and (max-width: 435px) {
/*   .c-tableV2__menuList li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .c-tableV2__ImenuIcon {
    height: 50vw;
  }
  .c-tableV2__menuList li:last-child{
    margin-bottom: 0;
  } */
	.c-tableV2__itemDesc,
	.c-tableV2__menuItem p::before{
		display: none;
	}
}
/* @media only screen and (min-width: 435px) and (max-width: 767px) {
  .c-tableV2__menuList li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 2%;
  }
  .c-tableV2__menuList li:nth-child(2n) {
    margin-right: 0;
  }
  .c-tableV2__menuList li:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
  .c-tableV2__ImenuIcon {
    height: 30vw;
  }
} */
@media only screen and (max-width: 767px) {
  .c-tableV2__desc{
    margin-bottom: 10px;
  }
  .c-tableV2__title,
  .c-tableV2__title--2 {
    padding: 10px;
  }
  .c-tableV2__title--object {
    right: 0;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
  .c-tableV2__ImenuIcon img{
    width: 90%;
    height: 90%;
    object-fit: contain;
  }
  .c-tableV2__content {
    padding: 15px 10px;
    padding-bottom: 20px;
  }
  .c-tableV2__noticeList {
    position: relative;
  }
  .c-tableV2__noticeList a {
    flex-wrap: wrap;
  }
  .c-tableV2__noticeList a p:nth-child(2) {
    padding: 3px 10px;
  }
  .c-tableV2__noticeList a p:last-child {
    width: 100%;
    margin-top: 10px;
  }

  .c-tableV2__menuList li {
    width: 31%;
    margin-right: 3.5%;
    margin-bottom: 3.5%;
  }
	.c-tableV2__menuItem p {
		padding: 8px 5px;
		height: calc(100% - 30vw);
	}
  .c-tableV2__menuList li:nth-child(3n) {
    margin-right: 0;
  }
/*   .c-tableV2__menuList li:nth-last-child(-n+2) {
    margin-bottom: 0;
  } */
  .c-tableV2__ImenuIcon {
    height: 30vw;
  }
}

.c-gnavSp {
  color: #fff;
}

.c-gnavSp > li + li {
  margin-top: 25px;
}

.c-gnavSp > li > a {
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: bold;
  padding: 5px 0;
  border-bottom: 1px solid #fff;
  display: block;
}

.c-gnavSp li ul {
  margin-top: 6px;
  padding-bottom: 20px;
}

.c-gnavSp ul li a {
  display: block;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 2px;
  padding-top: 7px;
  padding-bottom: 7px;
}

@media only screen and (max-width: 767px) {
  .c-info01 {
    background-color: #fff;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    padding: 5px 15px;
    box-sizing: border-box;
  }
  .c-info01__cont {
    margin-left: 12px;
  }
  .c-info01__cont .tel {
    font-size: 34px;
    font-weight: bold;
    line-height: 1;
  }
  .c-info01__cont .time {
    font-size: 18px;
    width: 100%;
    display: inline-block;
  }
  .c-info01__cont .time span:nth-child(1) {
    display: inline-block;
    margin-right: 15px;
  }
}

.c-btn01 {
  color: #fff;
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  padding-left: 7px;
  min-height: 55px;
  border-radius: 55px;
  font-weight: bold;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .c-btn01 {
    min-height: 50px;
    padding-left: 8px;
    font-weight: 500;
    min-width: 225px;
    box-sizing: border-box;
  }
}

.c-btn01__icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  border-radius: 50%;
}

@media only screen and (max-width: 768px) {
  .c-btn01__icon {
    width: 35px;
    height: 35px;
  }
}

.c-btn01__icon--bgBlack {
  background-color: #353223;
}

.c-btn01__txt {
  padding-left: 3px;
  padding-right: 28px;
  position: relative;
  letter-spacing: 1.8px;
  font-size: 18px;
}

.c-btn01__txt:after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-size: 20px;
  position: absolute;
  right: 9px;
  top: 50%;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  .c-btn01__txt {
    font-size: 15px;
    letter-spacing: 2px;
    -webkit-box-flex: 1;
    flex-grow: 1;
  }
}

@media only screen and (max-width: 768px) {
  .c-btn01__txt:after {
    font-size: 18px;
  }
}

.c-btn01--c01 {
  color: #333;
}

.c-btn01--c01 .c-btn01__txt:after {
  color: #333;
}

.c-btn01--bgBlue {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#7bcfda), to(#48bec8));
  background-image: linear-gradient(to bottom, #7bcfda, #48bec8);
}

.c-btn01--bgYellow {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fbe791), to(#f9d479));
  background-image: linear-gradient(to bottom, #fbe791, #f9d479);
}

.c-btn01--spmd {
  padding-left: 10px;
}

.c-btn01--spmd .c-btn01__txt {
  padding-left: 5px;
  padding-right: 37px;
}

.c-btn01--spmd .c-btn01__txt:after {
  right: 12px;
}

.c-btn01--spbig {
  padding-left: 14px;
}

.c-btn01--spbig .c-btn01__txt {
  padding-left: 10px;
  padding-right: 46px;
}

@media only screen and (max-width: 768px) {
  .c-btn01--spbig {
    padding-left: 10px;
  }
}

@media only screen and (max-width: 768px) {
  .c-btn01--spbig .c-btn01__txt:after {
    right: 12px;
  }
}

.c-btn01--spbig02 {
  padding-left: 14px;
}

.c-btn01--spbig02 .c-btn01__txt {
  padding-left: 11px;
  padding-right: 41px;
}

.c-btn01--spbig02 .c-btn01__txt:after {
  right: 15px;
}

.c-btn01--spbig03 {
  padding-left: 9px;
}

.c-btn01--spbig03 .c-btn01__txt {
  padding-left: 16px;
  padding-right: 34px;
}

.c-btn01--big {
  min-height: 70px;
  padding-left: 15px;
}

.c-btn01--big .c-btn01__icon {
  width: 46px;
  height: 46px;
}

.c-btn01--big .c-btn01__txt {
  font-size: 24px;
  padding-left: 15px;
  letter-spacing: 1.2px;
  padding-right: 52px;
}

.c-btn01--big .c-btn01__txt:after {
  font-size: 26px;
  right: 17px;
}

@media only screen and (max-width: 768px) {
  .c-btn01--big {
    min-height: 50px;
    padding-left: 10px;
  }
  .c-btn01--big .c-btn01__txt {
    padding-right: 35px;
  }
}

@media only screen and (max-width: 768px) {
  .c-btn01--big .c-btn01__icon {
    width: 35px;
    height: 35px;
  }
}

@media only screen and (max-width: 768px) {
  .c-btn01--big .c-btn01__txt {
    font-size: 16px;
    padding-left: 8px;
    padding-right: 30px;
    letter-spacing: 0;
  }
}

@media only screen and (max-width: 768px) {
  .c-btn01--big .c-btn01__txt:after {
    right: 15px;
    font-size: 18px;
  }
}

.c-btn01--noarrow .c-btn01__txt:after {
  content: none;
}

.c-btn01--cart {
  min-height: 45px;
}

.c-btn01--cart .c-btn01__txt {
  font-size: 14px;
  padding-left: 10px;
  padding-right: 10px;
  letter-spacing: 0;
}

.c-btn01--cart .c-btn01__icon {
  width: 35px;
  height: 35px;
}

/*------------------------------------------------------------
other
------------------------------------------------------------*/
/* .slick-track{
  width: 100%!important;
  height: 100%!important;
} */
/*
------------------------------------------------------------*/
/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Project .p-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/*------------------------------------------------------------
Css of home page
------------------------------------------------------------*/
.p-mainVisualV2 {
  width: 100%;
  height: 550px;
  background-color: gray;
  background-repeat: no-repeat;
  background-size: cover;
	background-position: center;
  position: relative;
}
.p-mainVisualV2::after{
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 200px;
  bottom: 0;
  transform: translateY(100%);
  background-color: #004587;
}

@media screen and (max-width: 768px) {
	.p-mainVisualV2 {
		height: 50vw;
		min-height: 200px;
		max-height: 550px;
	}
}

.p-contentV2 {
  padding-top: 50px;
  padding-bottom: 140px;
  /* background-color: white; */
  background-repeat: no-repeat;
  background-size: cover;
}

.p-contentV2 .l-container {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  align-items: flex-start;
}

.p-contentV2__p1 {
  width: 250px;
  position: relative;
  z-index: 1;
}

.p-contentV2__p2 {
  width: 879px;
}

.p-contentV2__asideMenu, .p-contentV2__contactBox {
  max-width: 500px;
  margin: 0 auto;
}

.p-contentV2__asideMenu {
  margin-bottom: 30px;
  background-color: white;
}

.p-contentV2__asideMenu--object img {
  max-width: 100%;
  max-height: 100%;
}

.p-contentV2__asideMenu h5 {
  text-align: center;
  color: #f5d82f;
  background-color: #003363;
  font-size: 20px;
  padding: 15px 0;
}

.p-contentV2__asideMenu .main li:not(:last-child) span,
.p-contentV2__asideMenu .sub li:not(:last-child){
	border-bottom: 1px solid #eaeaea;
}

.p-contentV2__asideMenu a,
.p-contentV2__asideMenu span{
  display: block;
  padding: 12px 0;
}

.p-contentV2__asideMenu a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  content: '\f054';
  color: #003363;
  margin-right: 10px;
}

.p-contentV2__asideMenu .main {
  padding: 0 20px;
  border: 1px solid #eaeaea;
  border-top: none;
	overflow: hidden;
}

.p-contentV2__asideMenu ul li:last-child a {
  border: none;
}

.p-contentV2__contactBox {
  margin-bottom: 20px;
}

.p-contentV2__contactBox--object {
  position: absolute;
  top: 10px;
}

.p-contentV2__contactBox--object-01{
  left: 15%;
  transform: translateX(-50%);
}

.p-contentV2__contactBox--object-02{
  right: 15%;
  transform: translateX(50%);
}

/* .p-contentV2__contactBox--object img {
  max-width: 100%;
  max-height: 100%;
} */

.p-contentV2__contactBox a {
  display: block;
}

.p-contentV2__contactBox a i {
  margin-right: 10px;
  font-size: 25px;
  vertical-align: middle;
}

.p-contentV2__contactBox2 a, .p-contentV2__contactBox3 a {
  padding: 0 10px;
  text-align: center;
}

.p-contentV2__contactBox2 a p,
.p-contentV2__contactBox3 a p{
  font-size: 14px;
}

.p-contentV2__contactBox2 a {
  background-color: #f5d82f;
  padding-top: 3px;
  padding-bottom: 3px;
  color: #003363;
}

.p-contentV2__contactBox2 a h2 {
  font-size: 34px;
  font-family: 'Oswald', sans-serif;
  font-weight: normal;
}

.p-contentV2__contactBox1 {
  padding-top: 9px;
  padding-bottom: 9px;
  text-align: center;
  color: #ffeb01;
  position: relative;
  background-color: #00488c;
}

.p-contentV2__contactBox1 h3 {
  font-size: 24px;
}

.p-contentV2__contactBox3 a {
  padding-top: 16px;
  padding-bottom: 6px;
  background-color: #007bcd;
  color: white;
}

.p-contentV2__contactBox3 a h4 {
  font-size: 20px;
  margin-bottom: 5px;
}

.p-contentV2__asideBanner {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  width: 100%;
  height: 100px;
  background-color: gray;
  color: white;
  margin-bottom: 20px;
  overflow: hidden;
}

.p-contentV2__asideBanner a{
  display: block;
  width: 100%;
  height: 100%;
}
.p-contentV2__asideBanner a img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-contentV2__logo {
  height: 70px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  padding: 3px;
  background-color: white;
}

.p-contentV2__logo img {
  max-width: 100%;
}

.p-contentV2__banner {
  width: 100%;
  height: 250px;
  background-color: gray;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  color: white;
  margin-bottom: 40px;
  position: relative;
}

.p-contentV2__banner .c-object-01{
  display: none;
}

.p-contentV2__p2 .p-contentV2__banner:first-child .c-object-01{
  display: block;
}

.p-contentV2__banner a{
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.p-contentV2__banner a img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-contentV2__menu, .p-contentV2__voice {
  margin-bottom: 30px;
  position: relative;
}

.p-contentV2__menu--object a {
  max-width: 100%;
  max-height: 100%;
}

.p-contentV2__menu--object {
  width: 90px;
  height: 90px;
}

@media only screen and (max-width: 768px) {
  .p-contentV2__asideBanner.pc-only, .p-contentV2__logo.pc-only {
    display: none;
  }
  .p-contentV2 {
    max-width: 100%;
    overflow: unset;
    padding-top: 20px;
    padding-bottom: 40px;
    /* background-color: white; */
    background-repeat: no-repeat;
    background-size: cover;
  }
  .p-contentV2 .l-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .p-contentV2__p1, .p-contentV2__p2 {
    width: 100%;
  }
  .p-contentV2__p1 {
    order: 2;
  }
  .p-contentV2__p2{
    margin-bottom: 20px;
  }
  .p-contentV2__menu, .p-contentV2__voice, .p-contentV2__banner {
    margin-bottom: 15px;
  }
  .p-contentV2__asideBanner {
    height: 30vw;
    max-height: 250px;
  }
  .p-contentV2__asideMenu h5{
    padding: 10px 0;
    font-size: 18px;
  }
  .p-contentV2__asideMenu a{
    padding: 10px 0;
    font-size: 14px;
  }
  .p-contentV2__asideMenu .main{
    padding: 0 10px;
  }
	.p-contentV2__asideMenu .sub{
		width: 95%!important;
	}
  .p-contentV2__asideMenu{
    margin-bottom: 15px;
  }
  .p-contentV2__contactBox1{
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .p-contentV2__contactBox2 a{
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .p-contentV2__contactBox3 a{
    padding-top: 10px;
  }
}
/* ---Contact Page--- */
.p-contact__object--01,
.p-contact__object--02{
  position: absolute;
  top: 0;
}
.p-contact__object--01{
  right: 30px;
  transform: translateY(-20px);
}
.p-contact__object--02{
  right: 0;
  transform: translateY(-20px) translateX(100px);
}
.p-contact__content table,
.p-contact__content tr,
.p-contact__content td{
  border: 1px solid #e6e6e6;
  border-collapse: collapse;
}
.p-contact__content table{
  margin-top: 25px;
  width: 100%;
  font-size: 16px;
}
.p-contact__content td{
  padding: 10px;
}
.p-contact__content tr td:first-child{
  color: white;
  background-color: #003363;
  padding: 10px 20px;
  width: 175px;
  box-sizing: border-box;
	font-size: 12px;
}
.p-contact__list-checkBox{
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}
.p-contact__content td input[type='text'],
.p-contact__content td input[type='email'],
.p-contact__content td textarea{
  box-sizing: border-box;
  border: 1px solid #e6e6e6;
  outline: none;
  font-size: 14px;
  padding: 6.5px 10px;
  color: #827f7fd1;
  transition: 0.3s all;
  font-weight: bold;
}
.p-contact__content td input[type='text']:focus,
.p-contact__content td input[type='email']:focus,
.p-contact__content td textarea:focus{
  background-color: #e6e6e675;
}
.p-contact__content td input[type='text'],
.p-contact__content td input[type='email']{
  width: 50%;
}
.p-contact__content td textarea{
  width: 100%;
}
.p-contact__btn{
  width: 260px;
  height: 60px;
  margin: 0 auto;
  margin-top: 40px;
  position: relative;
}
.p-contact__btn::before{
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
  color: white;
  pointer-events: none;
}
.p-contact__btn input{
  border: none;
  outline: none;
  width: 100%;
  height: 100%;
  color: white;
  font-size: 14px;
  background-color: #003363;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .p-contact__object--01{
    right: 0;
    transform: translateY(-30px) translateX(50%);
  }
  .p-contact__list-checkBox label{
    margin-right: 10px;
  }
  .p-contact__list-checkBox label:last-child{
    margin-right: 0;
  }
  .p-contact__content table{
    font-size: 13px;
  }
  .p-contact__content tr td:first-child{
    padding: 2%;
    width: 35%;
    max-width: 175px;
  }
  .p-contact__content td input[type='text'],
  .p-contact__content td input[type='email']{
    width: 100%;
  }
  .p-contact__btn{
    margin-top: 15px;
    width: 50%;
    height: 15vw;
    min-width: 200px;
    max-height: 60px;
    max-width: 260px;
  }
}
/* ---Single Voice--- */

/* ---Voice List--- */
.p-archiveVoice__list{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

.p-archiveVoice__box{
  overflow: hidden;
  margin-bottom: 10px;
}

.p-archiveVoice__box:hover img{
  transform: scale(1.1);
}

.p-archiveVoice__desc{
  margin-bottom: 35px;
}

.p-archiveVoice__btn{
  position: relative;
}

.p-archiveVoice__btn::before{
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  content: '\f054';
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: white;
  z-index: 1;
  transition: 0.3 all ease-in-out;
}

.p-archiveVoice__btn:hover::before{
  color: #003363;
}

.p-archiveVoice__btn a{
  text-align: center;
  color: white;
  display: block;
  background-color: #003363;
  border: 1px solid #003363;
  width: 100%;
  font-size: 14px;
  box-sizing: border-box;
  padding: 4.5px 40px;
}

.p-archiveVoice__btn a:hover{
  opacity: 1;
  background-color: white;
  color: #003363;
}

.p-archiveVoice__img{
  width: 100%;
  border: 1px solid #eaeaea;
  border-bottom: none;
}

.p-archiveVoice__img a{
  display: block;
  width: 100%;
  height: 100%;
}

.p-archiveVoice__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s all;
}

.p-archiveVoice__quick{
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

@media only screen and (min-width: 767px){
  .p-archiveVoice__item{
    width: 32%;
    margin-right: 2%;
    margin-bottom: 20px;
  }

  .p-archiveVoice__img{
    height: 160px;
  }

  .p-archiveVoice__list .p-archiveVoice__item:nth-child(3n){
    margin-right: 0;
  }

  .p-archiveVoice__list .p-archiveVoice__item:nth-last-child(-n+3){
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px){
  .p-archiveVoice__item{
    width: 49%;
    margin-right: 2%;
    margin-bottom: 10px;
  }
  .p-archiveVoice__list .p-archiveVoice__item:nth-child(2n){
    margin-right: 0;
  }
  .p-archiveVoice__btn a{
    padding: 4.5px 10px;
  }
  .p-archiveVoice__btn::before{
    display: none;
  }
  .p-archiveVoice__img{
    height: 30vw;
    max-height: 160px;
  }
  .p-archiveVoice__box{
    margin-bottom: 0;
  }
}
/* ---Post List--- */
.p-archivePost__list .p-archivePost__item:last-child{
  margin-bottom: 0;
}

.p-archivePost .p-contentV2{
  padding-bottom: 290px;
}

.p-archivePost__item{
  margin-bottom: 10px;
}

.p-archivePost__item a{
  display: flex;
}

.p-archivePost__itemCat{
  font-size: 14px;
  width: 120px;
  color: black;
  background-image: linear-gradient(to right, #ddbb05 , white , #ddbb05);;
  text-align: center;
  box-sizing: border-box;
  padding: 0 18px;
  margin-left: 13px;
  margin-right: 20px;
  /* Text overflow with ... */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; 
}

@media only screen and (max-width: 768px){
  .p-archivePost__item{
    margin-bottom: 15px;
  }
  .p-archivePost__item a{
    flex-wrap: wrap;
  }
  .p-archivePost__item a p:last-child{
    width: 100%;
    margin-top: 5px;
  }
  .p-archivePost .p-contentV2{
    padding-bottom: 30px;
  }
}
/* ---Single Post--- */
.p-singlePost__img{
  width: 100%;
  height: 550px;
  background-color: #03b2ef;
}
.p-singlePost__p1{
  display: flex;
}
.p-singlePost__cat{
  font-size: 14px;
  background-color: #03b2ef;
  color: white;
  width: 120px;
  text-align: center;
  box-sizing: border-box;
  padding: 0 10px;
  margin-right: 10px;
  border-radius: 15px;
}
.p-singlePost__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-singlePost__p1{
  margin-bottom: 20px;
}

.p-singlePost__part-02{
  margin-bottom: 30px;
}

.p-singlePost__part-02 h3{
  margin-bottom: 20px;
}

.p-singlePost__part-03 p{
  line-height: 1.6;
}

.p-singlePost .p-contentV2{
  padding-bottom: 240px;
}

@media only screen and (max-width: 768px){
  .p-singlePost__img{
    height: 70vw;
    min-height: 200px;
    max-height: 350px;
  }
  .p-singlePost .p-contentV2{
    padding-bottom: 30px;
  }
}
/* ---Site map--- */
.p-site-map__list li a::before{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
  margin-right: 10px;
  color: #003363;
}

.p-site-map__list li{
  padding: 10px 0;
  border-bottom: 1px solid #eaeaea;
}

.p-site-map__list li:first-child{
  margin-top: 0;
}

.p-site-map__list li:last-child{
  margin-bottom: 0;
  border-bottom: 0;
}

/* ---Price List--- */
.p-price-list .p-contentV2__p2 h3{
  font-size: 20px;
  font-weight: bold;
  color: #003363;
  border-bottom: 2px solid #003363;
  padding-bottom: 10px;
}

.p-price-list__box{
  margin-top: 30px;
}

.p-price-list .p-contentV2__p2 .c-table{
  margin-top: 15px;
}

.p-price-list .p-contentV2__p2 h4{
  margin-top: 30px;
}

@media only screen and (max-width: 767px){
  .p-price-list__box{
    margin-top: 5vw;
  }
}
/* ---Store Guide--- */
.p-store-guide .p-contentV2__p2 h3{
  font-size: 20px;
  color: #003363;
  padding-bottom: 10px;
  border-bottom: 2px solid #003363;
  margin-bottom: 30px;
}

.p-store-guide__quick-info{
  margin-top: 30px;
  display: flex;
}

.p-store-guide__quick-info .image{
  width: 250px;
  height: 190px;
  border: 1px solid #e6e6e6;
  margin-right: 20px;
  overflow: hidden;
}

.p-store-guide__quick-info .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-store-guide__quick-info .text{
  width: calc(100% - 250px - 20px);
  line-height: 1.5;
}

.p-store-guide__challenges{
  margin-top: 50px;
}

.p-store-guide__challenges table{
  width: 100%;
  font-size: 16px;
}

.p-store-guide__challenges table td:first-child{
  width: 250px;
  background-color: #003363;
  color: white;
}

.p-store-guide__challenges td{
  width: calc(100% -250px);
}

.p-store-guide__challenges td div{
  min-height: 38px;
  padding: 10px 23px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.p-store-guide__challenges table,
.p-store-guide__challenges tr,
.p-store-guide__challenges td{
  border: 1px solid #e6e6e6;
  border-collapse: collapse;
}

.p-store-guide__map{
  margin-top: 55px;
}

.p-store-guide__map-box{
  height: 300px;
  width: 100%;
  overflow: hidden;
  background-color: #02b2ed;
}

.p-store-guide__map-box iframe{
  width: 100%;
  height: 100%;
}

.p-store-guide__contact{
  margin-top: 55px;
}

@media only screen and (max-width: 767px){
	.p-store-guide__map-box{
		height: 50vw;
		max-height: 300px;
	}
	.p-store-guide__quick-info{
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
	.p-store-guide__quick-info .image{
		margin-right: 0;
		margin-bottom: 20px
	}
	
	.p-store-guide__quick-info .text{
		width: 100%
	}
	
	.p-store-guide__challenges,
	.p-store-guide__map,
	.p-store-guide__contact{
		margin-top: 20px;
	}
	
	.p-store-guide__challenges table{
		font-size: 14px
	}
	
	.p-store-guide__challenges td{
		width: 65%
	}
	
	.p-store-guide__challenges table td:first-child{
		width: 35%;
	}
	
	.p-store-guide__challenges td div{
		padding: 8px 13px
	}
	
	.p-store-guide .p-contentV2__p2 h3{
		margin-bottom: 15px;
	}
}
/* ---Single Service--- */
.p-singleServ .p-contentV2__p2 h3.title{
  font-size: 20px;
  color: #003363;
  padding-bottom: 10px;
  border-bottom: 2px solid #003363;
  margin-bottom: 30px;
}
.p-singleServ__basic-info .content{
  display: flex;
}
.p-singleServ__basic-info .image{
  width: 250px;
  height: 200px;
  overflow: hidden ;
  margin-right: 30px;
}
.p-singleServ__basic-info .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-singleServ__basic-info .text{
  width: calc(100% - 280px);
}
.p-singleServ__basic-info,
.p-singleSerV__flow{
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px){
  .p-singleServ__basic-info{
    margin-bottom: 5vw;
  }
  .p-singleServ__basic-info .content{
    flex-direction: column;
  }
  .p-singleServ__basic-info .image{
    width: 80%;
    height: 50vw;
    max-width: 500px;
    max-height: 400px;
    margin: 0 auto;
    margin-bottom: 3vw;
  }
  .p-singleServ__basic-info .text{
    width: 100%;
  }
  .p-singleServ .p-contentV2__p2 h3.title{
		margin-bottom: 15px;
	}
  .p-singleServ__basic-info,
  .p-singleSerV__flow{
    margin-bottom: 3vw;
  }
}
.p-singleSerV__price-list .option{
  margin-top: 30px;
}
.p-singleSerV__price-list .option h4{
  /* text-align: center; */
  margin-bottom: 15px;
}
.p-singleSerV__price-list .option .c-table{
  margin-top: 0;
}

/*------------------------------------------------------------
Css of home page
------------------------------------------------------------*/
/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Utility .u-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/

/*# sourceMappingURL=style.css.map */
#breadcrumbs{
  list-style:none;
  margin:10px 0;
  overflow:hidden;
}

#breadcrumbs li{
  display:inline-block;
  vertical-align:middle;
  margin-right:15px;
}

#breadcrumbs .separator{
  font-size:18px;
  font-weight:100;
  color:#ccc;
}

#breadcrumbs .c-breadcrumbs__home{
  color: #35c1f2;
}
/* --- 12/27 --- */
.c-h3{
  font-size: 20px;
  color: #003363;
  padding-bottom: 10px;
  border-bottom: 2px solid #003363;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px){
	.c-h3 {
		margin-bottom: 15px;
	  }
}

.p-contentV2__p2 .c-tableV2__menuList:not(:last-child){
	margin-bottom: 30px;
}

.p-contentV2__asideMenu span{
	cursor: pointer;
	font-weight: bold;
	position: relative;
	transition: 0.3s all;
	z-index: 2;
}

.p-contentV2__asideMenu .main span::after{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translatex(-50%);
	height: 100%;
	width: calc(100% + 42px);
	max-width: 250px;
	transition: 0.3s all;
	pointer-events: none;
	z-index: -1;
}
@media screen and (max-width: 768px){
	.p-contentV2__asideMenu .main span::after{
		max-width: calc(100vw - 20px);
	}
}
.p-contentV2__asideMenu span:hover,
.p-contentV2__asideMenu span.active{
	color: #003363;
}

.p-contentV2__asideMenu span:hover::after,
.p-contentV2__asideMenu span.active::after{
	background: #f5d82f;
}

.p-contentV2__asideMenu span:hover::before,
.p-contentV2__asideMenu span.active::before{
	color: white;
}

.p-contentV2__asideMenu .sub{
	font-size: 14px;
	width: 90%;
	margin-left: auto;
	margin-right: 0;
}
/* 
.p-contentV2__asideMenu a::before{
	color: #007bcd;
} */
.p-contentV2__asideMenu .sub{
/* 	display: none; */
}
.p-contentV2__asideMenu .sub li:not(:last-child){
	border-style: dashed;
}
/* --- 12/28 --- */
.p-list-services .p-contentV2__p2 .p-contentV2__menu{
	margin-bottom: 0;
}
.p-contentV2__asideMenu .sub a{ 
	position: relative;
	z-index: 2;
}
.p-contentV2__asideMenusub a::before{ 
	transition: 0.3s all;
}
.p-contentV2__asideMenu .sub a::after{
	content: "";
	display: block;
	position: absolute;
	right: -20px; 
	top: 0;
	bottom: 0;
	transition: 0.3s all;
	z-index: -1;
	pointer-events: none;
	width: 0;
}
.p-contentV2__asideMenu .sub a:hover,
.p-contentV2__asideMenu .sub a:hover::before{ 
	color: #f5d82f;
	transition: 0.6s all;
	opacity: 1;
}
.p-contentV2__asideMenu .sub a:hover::after{
	width: calc(100% + 30px);
	background: #003363;
}
@media screen and (max-width: 768px){
	.p-contentV2__asideMenu .sub a::after{
		right: -10px;
	}
	.p-contentV2__asideMenu .sub a:hover::after{
		width: calc(100% + 20px);
	}
	/* 	.c-tableV2__menuItem */
	.c-tableV2__menuItem{
/* 		width: 70%;
		margin: 0 auto; */
	}
	.p-list-services .c-tableV2__menuItem img{
		object-fit: contain;
		width: 80%;
		height: 80%;
	} 
}