@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #000000;
  font-family: "YakuHanJP", Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: .1rem;
  background: #c7e0f3;
}

a {
  color: #0062AD;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover {
  color: #1499ff;
}

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

/* loadingAnim
----------------------------------*/
.loadingAnim {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}

.loadingAnim_line {
  line-height: 1;
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: inline-block;
  overflow: hidden;
  width: 150px;
  height: 1.25em;
  margin: auto;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
  text-align: center;
}

.loadingAnim_line:after {
  position: absolute;
  z-index: 100;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
  margin: auto auto auto 0;
  content: ' ';
  -webkit-animation: loadingAnim 1s ease-in-out .1s infinite normal backwards;
  animation: loadingAnim 1s ease-in-out .1s infinite normal backwards;
  background-color: #0062AD;
  will-change: transform, width;
}

.loadingAnim_line:before {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  display: block;
  content: 'LOADING';
  -webkit-animation: loadingAnim_text 1s ease .1s infinite alternate both;
  animation: loadingAnim_text 1s ease .1s infinite alternate both;
  letter-spacing: .5em;
  color: #fff;
  will-change: opacity;
}

.loaded .loadingAnim_line {
  overflow: hidden;
  height: 0;
}

.loaded .loadingAnim_line:after {
  -webkit-animation: none;
  animation: none;
}

.loaded .loadingAnim_line:before {
  -webkit-animation: none;
  animation: none;
  content: 'LOADED!';
  color: #ccc;
}

.loadingAnim:before, .loadingAnim:after {
  line-height: 1;
  position: fixed;
  z-index: 99;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 50%;
  margin-right: auto;
  margin-left: auto;
  content: ' ';
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
  background-color: #eee;
}

.loadingAnim:before {
  top: 0;
}

.loadingAnim:after {
  bottom: 0;
}

.loaded .loadingAnim:before {
  height: 0;
  -webkit-transform: translateY(-1%);
  transform: translateY(-1%);
}

.loaded .loadingAnim:after {
  height: 0;
  -webkit-transform: translateY(1%);
  transform: translateY(1%);
}

/* header
----------------------------------*/
#header {
  position: fixed;
  z-index: 3;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  border-top: 3px solid #0062AD;
  -webkit-box-shadow: 0 3px 3px rgba(1, 1, 1, 0.2);
          box-shadow: 0 3px 3px rgba(1, 1, 1, 0.2);
}

#header .inner {
  position: relative;
  padding: 0 10px;
  height: 78px;
}

#header .inner #logo {
  padding-top: 9px;
  width: 450px;
}

#header .inner #navi {
  position: absolute;
  top: 0;
  right: 155px;
  text-align: center;
  font-size: 1.4rem;
}

#header .inner #navi ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#header .inner #navi ul li {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 25px;
}

#header .inner #navi ul li a {
  display: block;
  position: relative;
  color: #000000;
  font-weight: 500;
}

#header .inner #navi ul li a span {
  display: block;
  font-family: "YakuHanJP", "Roboto", "sans-serif";
  font-size: 1rem;
  color: #0062AD;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#header .inner #navi ul li a:hover {
  -webkit-animation-duration: 1s;
  -webkit-animation-name: flash;
  animation-duration: 1s;
  animation-name: flash;
}

#header .inner .mail_contact {
  position: absolute;
  top: 0;
  right: 0;
}

#header .inner .mail_contact a {
  display: block;
  background: #0062AD;
  color: #FFFFFF;
  padding: 20px 25px;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
}

#header .inner .mail_contact a span {
  display: block;
  font-family: "YakuHanJP", "Roboto", "sans-serif";
  font-size: 1rem;
}

#header .inner .mail_contact a:hover {
  background: #007fe0;
}

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999;
}

#page-top a {
  display: block;
  background: #0062AD;
  color: #FFFFFF;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
}

#page-top a:hover {
  background: #007fe0;
}

#page-top a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f077";
  font-weight: 900;
}

/* footer
----------------------------------*/
#footer {
  position: relative;
}

#footer .inner {
  padding-bottom: 70px;
  background-color: #000000;
  color: #FFFFFF;
}

#footer .inner .foot_navi {
  padding: 70px 0;
}

#footer .inner .foot_navi > ul {
  width: 1024px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#footer .inner .foot_navi > ul > li {
  width: 20%;
}

#footer .inner .foot_navi > ul > li > a {
  position: relative;
  padding-left: 20px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #FFFFFF;
}

#footer .inner .foot_navi > ul > li > a:hover {
  -webkit-animation-duration: 1s;
  -webkit-animation-name: flash;
  animation-duration: 1s;
  animation-name: flash;
}

#footer .inner .foot_navi > ul > li > a:before {
  content: "";
  background-color: #0062AD;
  width: 10px;
  height: 4px;
  position: absolute;
  top: .6em;
  left: 0;
}

#footer .inner .foot_sub_navi {
  margin-top: 10px;
  font-size: 1.1rem;
}

#footer .inner .foot_sub_navi li {
  margin-bottom: 5px;
}

#footer .inner .foot_sub_navi li:last-child {
  margin-bottom: 0;
}

#footer .inner .foot_sub_navi li a {
  color: #FFFFFF;
}

#footer .inner .foot_sub_navi li a:hover {
  -webkit-animation-duration: 1s;
  -webkit-animation-name: flash;
  animation-duration: 1s;
  animation-name: flash;
}

#footer .inner .foot_sub_navi li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  margin-right: 10px;
  color: #0062AD;
}

#footer .inner .copyright {
  text-align: center;
  font-size: 1.2rem;
}

/* sp_navi
----------------------------------*/
#sp_navi,
#humberger,
#drawernav {
  display: none;
}

/* contact_btn
----------------------------------*/
.contact_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin-top: 30px;
}

.contact_btn li {
  width: 40%;
  margin: 0 2%;
}

.contact_btn li a {
  display: block;
  border: 1px solid #0062AD;
  padding: .7em 0;
  text-align: center;
  font-size: 2rem;
}

.contact_btn li a:before {
  margin-right: 10px;
}

.contact_btn li a.tel_btn {
  background: #FFFFFF;
  color: #0062AD;
}

.contact_btn li a.tel_btn:before {
  font-family: "Font Awesome 5 Free";
  content: "\f095";
  font-weight: 900;
}

.contact_btn li a.mail_btn {
  background: #0062AD;
  color: #FFFFFF;
}

.contact_btn li a.mail_btn:hover {
  background: #007fe0;
}

.contact_btn li a.mail_btn:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}

.contact_btn.contact_btn_02 li {
  width: 100%;
}

.contact_btn.contact_btn_03 li a {
  font-size: 1.5rem;
}

/* slideshow
----------------------------------*/
.slideshow {
  position: relative;
}

.slideshow #catch {
  position: absolute;
  z-index: 2;
  top: 55%;
  left: 50%;
  width: 652px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  animation: fadeIn 6s ease 0s 1 normal;
  -webkit-animation: fadeIn 6s ease 0s 1 normal;
}

.swiper-slide {
  padding: 34rem 0;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.slide_01 {
  background-image: url(../img/slide2.png);
}

.slide_02 {
  background-image: url(../img/bg_slide_02.jpg);
}

.slide_03 {
  background-image: url(../img/bg_slide_03.jpg);
  background-position: center 80%;
}

.slide_04 {
  background-image: url(../img/bg_slide_04.jpg);
}

/* contents
----------------------------------*/
.single {
  margin: 0 auto;
  width: 1024px;
  padding: 80px 0;
}

.single_01 {
  margin: 80px auto;
  max-width: 95%;
  padding-bottom: 70px;
}

.single_02 {
  margin: 0 auto;
  width: 960px;
  padding-bottom: 50px;
}

.single_03 {
  margin: 0 auto;
  width: 768px;
  padding-bottom: 50px;
}

.main_contents {
  padding-top: 50px;
}

/* bg
----------------------------------*/
.bg_common {
  padding-top: 70px;
}

.bg_b {
  margin-bottom: 70px;
}

.bg_01 {
  background-image: url(../img/footer.jpg);
  background-repeat: no-repeat;
  background-position: 50% 64%;
  background-size: cover;
}

.bg_02 {
  background-color: #FFFFFF;
}

/* column
----------------------------------*/
.half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.half .child {
  width: 50%;
}

.triple {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.triple .child {
  width: 33.3%;
}

.column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -3%;
}

.column2 .child {
  width: 48.44%;
  margin: 0 3% 3% 0;
}

.column2 .child:nth-child(2n) {
  margin: 0 0 3% 0;
}

.column3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -3%;
}

.column3 .child {
  width: 31.3%;
  margin: 0 3% 3% 0;
}

.column3 .child:nth-child(3n) {
  margin: 0 0 3% 0;
}

.column4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: -3%;
}

.column4 .child {
  width: 22.7%;
  margin: 0 3% 3% 0;
}

.column4 .child:nth-child(4n) {
  margin: 0 0 3% 0;
}

.column5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -1%;
}

.column5 .child {
  width: 19.2%;
  margin: 0 1% 1% 0;
}

.column5 .child:nth-child(5n) {
  margin: 0 0 1% 0;
}

/* mtitle
----------------------------------*/
.mtitle2 {
  margin: 0 auto 40px;
  text-align: center;
}

.mtitle2 .eng {
  font-size: 6rem;
  color: #4c4c4c;
  position: relative;
  display: block;
  line-height: 1.2;
}

.mtitle2 .eng:first-letter {
  color: #0062AD;
}

.mtitle2 .ja {
  font-size: 2rem;
  color: #232323;
  font-weight: 500;
}

.mtitle2.white {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

.mtitle2.white span {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

.mtitle2.white span:after {
  background-color: #eee;
}

.mtitle2.white span.eng:first-letter {
  color: #0062AD;
}

.mtitle2.black {
  color: #333;
}

.mtitle2.black span {
  color: #555;
}

.mtitle2.black span:after {
  background-color: #555;
}

.mtitle2.mtitle_left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.mtitle2.mtitle_left span:after {
  left: 0;
  -webkit-transform: none;
          transform: none;
}

@media all and (max-width: 639px) {
  .mtitle2 {
    text-align: center;
  }
  .mtitle2 .eng {
    font-size: 3rem;
  }
  .mtitle2 .ja {
    font-size: 1.3rem;
  }
}

.mtitle_big {
  position: relative;
  margin-bottom: 30px;
  font-size: 4rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}

.mtitle_big span {
  display: block;
  color: #0062AD;
  font-family: "YakuHanJP", "Roboto", "sans-serif";
  font-size: 1.5rem;
}

.mtitle_big.footer {
  margin-top: -40px;
}

.mtitle_big.mtitle_big_white span {
  color: #FFFFFF;
}

.mtitle_middle {
  background-color: #1e1e1e;
  color: #FFFFFF;
  padding: 8px 0 8px 10px;
  font-size: 1.8rem;
  letter-spacing: .1em;
  margin-bottom: 20px;
  border-left: 5px solid #0062AD;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mtitle_small {
  position: relative;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 30px;
}

.mtitle_small:before {
  content: '';
  width: 30px;
  height: 1px;
  background-color: #0062AD;
  position: absolute;
  left: 0;
  bottom: -15px;
}

.mtitle {
  position: relative;
  border-bottom: 2px solid #EEEEEE;
  margin-bottom: 20px;
  padding-bottom: 5px;
  font-size: 2.2rem;
  font-weight: 500;
}

.mtitle:before {
  font-family: "Font Awesome 5 Free";
  content: "\f068";
  font-weight: 900;
  margin-right: 5px;
  color: #0062AD;
}

.mtitle:after {
  position: absolute;
  bottom: -3px;
  left: 0;
  z-index: 2;
  content: '';
  width: 20%;
  height: 3px;
  background-color: #0062AD;
}

.mtitle.white {
  color: #fff;
}

.mtitle_border {
  margin-bottom: 30px;
  font-size: 3.5rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.4;
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  padding: 10px 0 20px;
}

.mtitle_border span {
  display: block;
  color: #0062AD;
  font-family: "YakuHanJP", "Roboto", "sans-serif";
  font-size: 1.6rem;
}

.mtitle_top {
  background: #0062AD;
  color: #FFFFFF;
  text-align: center;
}

.mtitle_sub {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  font-size: 1.8rem;
  font-weight: 500;
}

.mtitle_sub:before {
  content: "";
  background-color: #0062AD;
  width: 10px;
  height: 4px;
  position: absolute;
  top: .6em;
  left: 0;
}

.mtitle_message {
  margin-bottom: 15px;
  font-family: "YakuHanJP", Noto Serif JP, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: .2rem;
}

.mtitle_service {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
}

.mtitle_flow {
  padding: 0 0 30px 120px;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 2.5;
}

.mtitle_flow span {
  display: inline-block;
  position: absolute;
  left: 0;
  z-index: 1;
  width: auto;
  text-align: center;
  color: #FFFFFF;
  line-height: 1.8;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
  padding: 10px 20px;
}

.mtitle_flow span:before, .mtitle_flow span:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: skewX(-15deg);
  transform: skewX(-15deg);
}

.mtitle_flow span:after {
  background: #0062AD;
  content: "";
  z-index: -1;
}

.mtitle_voice {
  margin-bottom: 15px;
  padding-bottom: 5px;
  font-size: 1.8rem;
  font-weight: 500;
  border-bottom: 1px dotted #CCCCCC;
}

.mtitle_circle {
  position: relative;
  background: #0062AD;
  color: #FFFFFF;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  line-height: 180px;
  text-align: center;
}

.mtitle_circle h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  line-height: 1.2;
  font-family: "YakuHanJP", "Roboto", "sans-serif";
  font-size: 1.7rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: .3em;
}

.mtitle_circle h3 span {
  display: block;
  font-size: 1.6rem;
}

.mtile_news {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}

.mtile_news span {
  display: block;
  font-family: "YakuHanJP", "Roboto", "sans-serif";
  font-size: 1.4rem;
}

.mtitle_logo {
  margin: 0 auto 20px;
  width: 450px;
}

/* btn
----------------------------------*/
.cbtn {
  margin-top: 30px;
}

.cbtn a,
.cbtn button {
  display: block;
  position: relative;
  width: 320px;
  max-width: 100%;
  background: #000000;
  color: #FFFFFF;
  padding: 20px 0;
  text-align: center;
  font-weight: 500;
  letter-spacing: .3em;
}

.cbtn a:after,
.cbtn button:after {
  position: absolute;
  right: 15px;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  -webkit-transition: .2s;
  transition: .2s;
}

.cbtn a:hover:after,
.cbtn button:hover:after {
  right: 10px;
}

.cbtn.cbtn_01 {
  position: absolute;
  bottom: -8%;
}

.cbtn.cbtn_02 a,
.cbtn.cbtn_02 button {
  margin: 0 auto;
}

.abtn {
  margin-top: 30px;
}

.abtn a,
.abtn button {
  display: table;
  background: #FFFFFF;
  border: 1px solid #0062AD;
  color: #0062AD;
  padding: .3em 3em;
  border-radius: 100px;
  margin: 0 auto;
}

.abtn a:after,
.abtn button:after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  margin-left: 10px;
}

.abtn a:hover,
.abtn button:hover {
  background: #0062AD;
  color: #FFFFFF;
}

/* news
----------------------------------*/
.news_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #FFFFFF;
  margin-bottom: 70px;
}

.news_box .news_ttile {
  background: #0062AD;
  color: #FFFFFF;
  width: 230px;
  padding: 25px 0;
}

.news_box .news_bx {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 25px 20px;
}

.news-top dt {
  float: left;
  width: 7em;
}

.news-top dd {
  padding: 0 0 10px 8em;
  border-bottom: 1px dotted #aaa;
  margin: 0 0 10px;
}

.news-top dd:last-child {
  margin: 0;
  border-bottom: none;
}

.news-bl dt {
  float: left;
  width: 7em;
  margin-bottom: 10px;
  padding: 3px 5px;
  background: #0062AD;
  color: #FFFFFF;
  text-align: center;
}

.news-bl dd {
  padding: 0 0 10px 9em;
  line-height: 1.6;
  border-bottom: 1px dotted #CCCCCC;
  margin: 0 0 10px;
}

.news-bl dd:last-child {
  margin: 0;
  border-bottom: none;
}

/* tbl
----------------------------------*/
.tbl {
  width: 100%;
  background-color: #FFFFFF;
  text-align: center;
}

.tbl th,
.tbl td {
  vertical-align: middle;
  border: 1px solid #888888;
  padding: 10px;
}

.tbl th {
  background: #d7d7d7;
  font-weight: normal;
}

.tbl.type1 {
  text-align: left;
}

.tbl_new {
  width: 100%;
  background-color: #FFFFFF;
}

.tbl_new tr th,
.tbl_new tr td {
  vertical-align: top;
  padding: 10px;
}

.tbl_new tr th {
  width: 20%;
  font-weight: normal;
}

.tbl_new tr:nth-child(odd) th,
.tbl_new tr:nth-child(odd) td {
  background: #d7d7d7;
}

.tbl_new tr a {
  margin-left: 10px;
}

.tbl_new tr a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f35d";
  font-weight: 900;
  margin-left: 5px;
}

.type02 td {
  padding-left: 20px;
}

.type02 td:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ad";
  font-weight: 400;
  margin-right: 20px;
  padding-left: 15px;
}

.tbl_form tr th {
  text-align: left;
}

.company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}

.company th,
.company td {
  padding: 10px;
  vertical-align: middle;
}

.company th {
  text-align: left;
  width: 20%;
  position: relative;
  background: #0062AD;
  color: #FFFFFF;
  font-weight: normal;
}

.company th::after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: #FFFFFF;
  border-width: 10px;
  border-left-color: #0062AD;
  margin-top: -10px;
}

.company td {
  background: #FFFFFF;
  padding-left: 20px;
}

.tbl_company {
  width: 100%;
  text-align: center;
  background-color: #fff;
}

.tbl_company.type1 {
  text-align: left;
}

.tbl_company th,
.tbl_company td {
  vertical-align: middle;
}

.tbl_company th {
  width: 15%;
  border-bottom: 1px solid #fff;
  padding: 12px;
  font-weight: 500;
  background-color: #0062ad;
  color: #fff;
}

.tbl_company td {
  padding: 22px;
  border-bottom: 1px solid #2c5bb3dc;
  line-height: 1.8em;
}

.tbl_01 th {
  width: 25%;
}

/* list
----------------------------------*/
.list_common li {
  padding-bottom: 10px;
  padding-left: 1rem;
  margin-bottom: 10px;
  border-bottom: 1px dotted #fff;
}

.list_common li:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin: 0 5px 0 -1rem;
  color: #0062AD;
  padding: 1px;
}

.list_check li:before {
  content: "\f058";
  color: #0062AD;
}

.list_note li {
  margin-bottom: 5px;
  padding-left: 1.5em;
}

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

.list_note li:before {
  content: "※";
  margin: 0 5px 0 -1.5em;
  color: #FF0000;
}

.list_disc li {
  margin-bottom: 5px;
  padding-left: 1.5em;
}

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

.list_disc li:before {
  content: "・";
  margin: 0 5px 0 -1.5em;
  color: #0062AD;
}

.list_line li {
  position: relative;
  display: inline-block;
  padding: 0 10px;
}

.list_line li:after {
  position: absolute;
  right: 0;
  content: "/";
}

.list_line li:last-child:after {
  display: none;
}

.list_macker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
  text-align: center;
  font-size: 1.1em;
  font-weight: bold;
}

.list_macker li {
  width: 18.4%;
  margin: 0 2% 1% 0;
}

.list_macker li:nth-child(5n) {
  margin: 0 0 1% 0;
}

.list_half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.list_half li {
  margin: 0 3% 1% 0;
  width: 48.5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.list_half li:nth-child(2n) {
  margin: 0 0 1% 0;
}

.rounded-list {
  counter-reset: li;
  padding-left: 1em;
  list-style: none;
}

.rounded-list li {
  position: relative;
  padding: .4em .4em .4em 2em;
  margin: .5em 0;
  background: #fafafa;
  border-radius: .3em;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.rounded-list li:before {
  content: counter(li);
  counter-increment: li;
  position: absolute;
  left: -1.3em;
  top: 50%;
  margin-top: -1.3em;
  background: #0062AD;
  color: #FFFFFF;
  height: 2em;
  width: 2em;
  line-height: 2em;
  border: .3em solid #fff;
  text-align: center;
  font-weight: bold;
  border-radius: 2em;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

/* works-area
----------------------------------*/
.works-area {
  display: table;
  width: 100%;
  margin-bottom: 40px;
}

.works-area .before-img,
.works-area p,
.works-area .after-img {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.works-area .before-img,
.works-area .after-img {
  background-color: #f8f8f8;
  width: 45%;
}

.works-area p {
  padding: 0 2%;
}

.works-area div img {
  width: auto;
  max-width: 4100px;
  height: 100%;
  max-height: 330px;
}

.works-area:last-child {
  margin-bottom: 0;
}

/* ggmap
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 46.25%;
  height: 0;
  overflow: hidden;
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* rss
----------------------------------*/
#rss li {
  border-bottom: 1px solid #CCCCCC;
}

#rss li a {
  display: block;
  padding: 10px;
  color: #000000;
  position: relative;
}

#rss li a:after {
  position: absolute;
  top: 50%;
  right: 3%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  color: #0062AD;
}

#rss li a:hover {
  background: #F8F8F8;
}

/* sns_list
----------------------------------*/
.sns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}

.sns_list li {
  width: 31.3%;
  margin-right: 3%;
}

.sns_list li:last-child {
  margin: 0;
}

.sns_btn {
  overflow: hidden;
  color: #FFFFFF;
  position: relative;
  display: block;
  border-radius: 100px;
  height: 50px;
  text-align: center;
  line-height: 50px;
}

.sns_btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sns_btn i {
  font-size: 2rem;
  position: relative;
  top: 3px;
  margin-right: 10px;
}

.sns_btn span {
  display: inline-block;
  position: relative;
  -webkit-transition: .5s;
  transition: .5s;
}

.sns_btn:hover {
  color: #FFFFFF;
}

.sns_btn:hover span {
  -webkit-transform: rotateX(360deg);
  transform: rotateX(360deg);
}

.facebook_btn {
  background: #4267b2;
}

.insta_btn {
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}

.insta_btn:before {
  background: linear-gradient(15deg, #ffdb2c, #f9764c 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}

.line_btn {
  background: #00b82b;
}

/* article
----------------------------------*/
.article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 1px solid #CCCCCC;
}

.article .article_image {
  width: 60%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.article .article_detail {
  position: relative;
  width: 40%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 50px 0;
}

.article .article_detail .article_title {
  position: absolute;
  top: -80px;
  right: 80px;
}

.article .article_detail .inner {
  margin: 0 auto;
  width: 80%;
}

.article.article_b {
  margin-bottom: 100px;
}

.article.article_01 .article_image {
  background-image: url(../img/article_01.jpg);
}

.article.article_02 .article_image {
  background-image: url(../img/article_02.jpg);
}

.article.article_03 .article_image {
  background-image: url(../img/article_03.jpg);
}

.article.article_04 .article_image {
  background-image: url(../img/article_04.jpg);
}

.article.article_05 .article_image {
  background-image: url(../img/article_05.jpg);
}

.article.article_06 .article_image {
  background-image: url(../img/article_06.jpg);
}

/* link_block
----------------------------------*/
.link_block {
  position: relative;
  background: #FFFFFF;
}

.link_block::before, .link_block::after {
  display: block;
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  background: #0062AD;
  -webkit-transition: all 0.4s 0s ease;
  transition: all 0.4s 0s ease;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.link_block::before {
  left: 0;
  top: 0;
}

.link_block::after {
  right: 0;
  bottom: 0;
}

.link_block a {
  display: block;
  padding: 15px;
  color: #000000;
  font-size: 1.8rem;
  font-weight: 500;
  -webkit-transition: all 0.4s 0s ease;
  transition: all 0.4s 0s ease;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.link_block a::before, .link_block a::after {
  display: block;
  content: "";
  width: 1px;
  height: 0;
  position: absolute;
  background: #0062AD;
  -webkit-transition: all 0.4s 0s ease;
  transition: all 0.4s 0s ease;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.link_block a::before {
  left: 0;
  top: 0;
}

.link_block a::after {
  right: 0;
  bottom: 0;
}

.link_block a .image {
  margin-bottom: 15px;
}

.link_block a figcaption {
  position: relative;
}

.link_block a figcaption .icon_link_arrow {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.link_block a figcaption .icon_link_arrow:before {
  font-family: "Font Awesome 5 Free";
  content: "\f152";
  font-weight: 900;
  color: #0062AD;
}

.link_block:hover::before, .link_block:hover::after {
  width: 100%;
}

.link_block:hover a::before, .link_block:hover a::after {
  height: 100%;
}

/* category_tab
----------------------------------*/
.category_tab {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 30px;
}

.category_tab:before {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  content: '';
  background: #0062AD;
}

.category_tab li {
  position: relative;
  width: 25%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #0062AD;
  border-top: 3px solid #0062AD;
  border-right: 3px solid #0062AD;
  border-left: 3px solid #0062AD;
  color: #FFFFFF;
  padding: 20px 10px;
  cursor: pointer;
  margin-left: 20px;
}

.category_tab li:last-child {
  margin-right: 20px;
}

.category_tab li.active {
  background: #FFFFFF;
  color: #000000;
}

.category_tab li.active:before {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  content: '';
  background: #FFFFFF;
}

.panel {
  display: none;
}

/* news_list
----------------------------------*/
.news_list li {
  padding: 20px;
  border-bottom: 1px dotted #000000;
}

.news_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #000000;
}

.news_list li a .news_date {
  margin-right: 20px;
}

.news_list li a .news_category {
  background: #000000;
  color: #FFFFFF;
  padding: 5px;
  margin-right: 30px;
  min-width: 140px;
  text-align: center;
}

/* blog
----------------------------------*/
.blog_date {
  display: inline-block;
  margin: 0 20px 20px 0;
}

.blog_date:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 5px;
}

.blog_category {
  display: inline-block;
  background: #000000;
  color: #FFFFFF;
  padding: 5px;
  margin-bottom: 20px;
  min-width: 140px;
  text-align: center;
}

.pages {
  overflow: hidden;
  margin-top: 50px;
}

.pages .page_next,
.pages .page_prev {
  display: inline-block;
  border: 1px solid #0062AD;
  padding: 10px 20px;
}

.pages .page_next {
  float: left;
}

.pages .page_prev {
  float: right;
}

/* company_nav
----------------------------------*/
.company_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.company_nav li {
  width: 48.44%;
  margin: 0 3% 3% 0;
}

.company_nav li:nth-child(2n) {
  margin: 0 0 3% 0;
}

.company_nav li .inner {
  display: block;
  overflow: hidden;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
  border: 2px solid #0062AD;
  height: 250px;
  cursor: pointer;
}

.company_nav li .inner.company_nav_01 {
  /* background-image: url(../img/company_nav_01.jpg); */
  background-image: url(https://placehold.jp/500x250.png);
}

.company_nav li .inner.company_nav_02 {
  /* background-image: url(../img/company_nav_02.jpg); */
  background-image: url(https://placehold.jp/500x250.png);
}

.company_nav li .inner.company_nav_03 {
  /* background-image: url(../img/company_nav_03.jpg); */
  background-image: url(https://placehold.jp/500x250.png);
}

.company_nav li .inner.company_nav_04 {
  /* background-image: url(../img/company_nav_04.jpg); */
  background-image: url(https://placehold.jp/500x250.png);
}

.company_nav li .inner.company_nav_05 {
  /* background-image: url(../img/company_nav_05.jpg); */
  background-image: url(https://placehold.jp/500x250.png);
}

.company_nav li .inner.company_nav_06 {
  /* background-image: url(../img/company_nav_06.jpg); */
  background-image: url(https://placehold.jp/500x250.png);
}

.company_nav li .inner.company_nav_07 {
  /* background-image: url(../img/company_nav_07.jpg); */
  background-image: url(https://placehold.jp/500x250.png);
}

.company_nav li .inner.company_nav_08 {
  /* background-image: url(../img/company_nav_08.jpg); */
  background-image: url(https://placehold.jp/500x250.png);
}

.company_nav li .inner.company_nav_09 {
  /* background-image: url(../img/company_nav_09.jpg); */
  background-image: url(https://placehold.jp/500x250.png);
}

.company_nav li .inner.company_nav_10 {
  /* background-image: url(../img/company_nav_10.jpg); */
  background-image: url(https://placehold.jp/500x250.png);
}

.company_nav li .inner.company_nav_11 {
  /* background-image: url(../img/company_nav_11.jpg); */
  background-image: url(https://placehold.jp/500x250.png);
}

.company_nav li .inner:before {
  display: block;
  content: "";
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.company_nav li .inner:after {
  display: block;
  content: "";
  background: rgba(0, 98, 173, 0.7);
  height: 4rem;
  position: absolute;
  top: 50%;
  right: 24px;
  left: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition-duration: .2s;
          transition-duration: .2s;
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.58, 1);
          transition-timing-function: cubic-bezier(0, 0, 0.58, 1);
  z-index: 1;
}

.company_nav li .inner .company_nav_title {
  color: #FFFFFF;
  position: absolute;
  top: 50%;
  right: 10px;
  left: 10px;
  z-index: 5;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  font-weight: 500;
}

.company_nav li .inner .company_nav_more {
  opacity: 0;
  position: absolute;
  bottom: 20%;
  left: 50%;
  z-index: 5;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition-duration: .2s;
          transition-duration: .2s;
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.58, 1);
          transition-timing-function: cubic-bezier(0, 0, 0.58, 1);
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  font-size: 1.2rem;
  padding: 5px 15px;
  text-align: center;
}

.company_nav li .inner .company_nav_more:after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  margin-left: 5px;
}

.company_nav li .inner:hover::after {
  height: 100%;
  left: 0;
  right: 0;
}

.company_nav li .inner:hover .company_nav_more {
  opacity: 1;
}

/* history_list
----------------------------------*/
.history_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.history_list li .history_list_year {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40vw;
  min-width: 193px;
  max-width: 193px;
}

.history_list li .history_list_year .year_list .christian {
  margin-left: 10px;
  font-size: 1.5em;
  font-weight: bold;
}

.history_list li .history_list_txt {
  padding: 0 0 30px;
  border-left: 1px dashed #000000;
}

.history_list li .history_list_txt .txt_list {
  position: relative;
  padding: 6px 0 0 45px;
}

.history_list li .history_list_txt .txt_list:before {
  position: absolute;
  top: 16px;
  left: -7px;
  width: 12px;
  height: 12px;
  margin: auto;
  content: '';
  border-radius: 50%;
  background: #0062AD;
}

/* faq
----------------------------------*/
.faq dt:before,
.faq dd:before {
  margin-right: 10px;
  font-size: 2rem;
  color: #FFFFFF;
  width: 35px;
  height: 35px;
  display: inline-block;
  text-align: center;
}

.faq dt {
  font-weight: 500;
  margin-bottom: 10px;
}

.faq dt:before {
  content: "Q";
  background: #f60523;
}

.faq dd {
  margin-bottom: 20px;
  background: #FFFFFF;
  padding: 0 1em 1em 40px;
  text-indent: -40px;
}

.faq dd:before {
  content: "A";
  background: #0062AD;
  text-indent: 0;
}

/* blockquote
----------------------------------*/
.blockquote {
  position: relative;
  padding: 10px 15px 10px 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-style: italic;
  background: #F2F2F2;
}

.blockquote:before {
  display: inline-block;
  position: absolute;
  top: 18px;
  left: 15px;
  font-family: "Font Awesome 5 Free";
  content: "\f10d";
  font-weight: 900;
  color: #cfcfcf;
  font-size: 3rem;
  line-height: 1;
}

.blockquote p {
  margin: 10px 0;
}

.office_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.office_list li {
  width: 31.3%;
  margin: 0 2% 2% 0;
}

.office_list li:nth-child(3n) {
  margin: 0 0 2% 0;
}

/* info_list
----------------------------------*/
.info_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -3%;
}

.info_list li {
  width: 31.3%;
  margin: 0 3% 3% 0;
}

.info_list li:nth-child(3n) {
  margin: 0 0 3% 0;
}

.info_list li a {
  display: block;
  position: relative;
  background: #FFFFFF;
  border: 2px solid #FFFFFF;
  border-radius: 6px;
  padding: 20px;
}

.info_list li a i {
  color: #F2F2F2;
  font-size: 3rem;
  margin-right: 20px;
}

.info_list li a:after {
  display: block;
  content: "";
  border-top: 6px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 11px solid #F2F2F2;
  position: absolute;
  width: 0;
  height: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.info_list li a:hover {
  border: 2px solid #F2F2F2;
}

/* thumb_list
----------------------------------*/
.thumb_list {
  display: block;
  color: #000000;
  font-size: 1.4rem;
}

.thumb_list .thumb_image {
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
  background: #eef6f3;
}

.thumb_list .thumb_image img {
  -o-object-fit: contain;
     object-fit: contain;
  font-family: 'object-fit: contain;';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.thumb_list .thumb_image:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.thumb_list .thumb_image:after {
  display: block;
  content: '';
  padding-top: 67%;
}

.thumb_list .thumb_title {
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-weight: bold;
}

.thumb_list:hover {
  color: #000000;
}

.thumb_list:hover .thumb_image img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.detail_btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 3;
  text-align: center;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  background: #FFFFFF;
  padding: 3px 10px;
  font-size: 1.2rem;
}

.detail_btn:before {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  color: #0062AD;
  margin-right: 5px;
}

/* download
----------------------------------*/
.download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #F2F2F2;
  color: #000000;
}

.download:hover {
  color: #000000;
}

.download .download_image {
  width: 80px;
}

.download .download_detail {
  position: relative;
  width: calc(100% - 120px);
}

.download .download_detail .detail_title {
  margin-top: 20px;
}

/* handling
----------------------------------*/
.handling {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.handling .handling_img {
  width: 120px;
}

.handling .handling_detail {
  width: calc(100% - 140px);
}

/* flow_contents
----------------------------------*/
.flow_contents {
  position: relative;
}

.flow_contents:after {
  position: absolute;
  top: 0;
  left: 33px;
  z-index: 0;
  width: 6px;
  height: 100%;
  background-image: url(../img/bg_flow.gif);
  background-repeat: repeat-y;
  background-position: 0 9px;
  content: "";
}

.flow_contents:last-child:after {
  display: none;
}

.flow_contents .flow_list {
  margin-left: 120px;
  padding-bottom: 40px;
}

/* concept-wrap
----------------------------------*/
.concept-wrap {
  position: relative;
  padding: 50px 0;
  margin-bottom: 70px;
}

.concept-wrap .bg-back {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #F2F2F2;
  width: 50%;
  height: 100%;
}

.concept-wrap .concept-inner {
  position: relative;
  display: table;
  margin: 0 auto;
  width: 100%;
  max-width: 960px;
}

.concept-wrap .figure {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  display: table-cell;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  width: 60%;
  height: 100%;
}

.concept-wrap .fig01 {
  background-image: url("../img/fig_01.jpg");
}

.concept-wrap .in-wrap {
  position: relative;
  padding: 50px 0;
}

.concept-wrap .in-wrap .concept-box {
  background-color: rgba(255, 255, 255, 0.9);
  width: 570px;
  padding: 50px 30px;
}

.concept-wrap .in-wrap .concept-box .conts-ttl {
  width: 250px;
  margin: 0 auto 20px;
}

.concept-wrap .in-wrap .concept-box .conts-sub_ttl {
  font-family: "YakuHanJP", Noto Serif JP, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 2.5rem;
  color: #0062AD;
  margin-bottom: 15px;
}

/* greet
----------------------------------*/
#particle-bg {
  position: relative;
  height: 650px;
  background: #0062ad;
}

#particle-inside {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  line-height: 2.2;
  width: 650px;
  text-align: center;
}

/* flex
----------------------------------*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}

.flex li {
  width: 24%;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.flex li a {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  -webkit-transition: all 0.55s ease;
  transition: all 0.55s ease;
}

.flex li:hover .snip1445 img, .flex li:hover .snip1445 .hover img {
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: .4;
  opacity: .4;
}

.flex li:hover .snip1445 figcaption:before,
.flex li:hover .snip1445 .hover figcaption:before,
.flex li:hover .snip1445 figcaption:after,
.flex li:hover .snip1445 .hover figcaption:after,
.flex li:hover .snip1445 figcaption div:before,
.flex li:hover .snip1445 .hover figcaption div:before,
.flex li:hover .snip1445 figcaption div:after,
.flex li:hover .snip1445 .hover figcaption div:after {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.flex li:hover .snip1445 figcaption:before,
.flex li:hover .snip1445 .hover figcaption:before,
.flex li:hover .snip1445 figcaption:after,
.flex li:hover .snip1445 .hover figcaption:after {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

.snip1445 {
  position: relative;
  overflow: hidden;
  min-width: 230px;
  max-width: 100%;
  height: 320px;
  width: 100%;
  text-align: center;
  color: #FFFFFF;
  background-color: orange;
}

.snip1445.type1 {
  background-color: green;
}

.snip1445.type2 {
  background-color: blue;
}

.snip1445.type3 {
  background-color: #000;
}

.snip1445 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.55s ease;
  transition: all 0.55s ease;
}

.snip1445 *:before, .snip1445 *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.55s ease;
  transition: all 0.55s ease;
}

.snip1445 img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  vertical-align: top;
}

.snip1445 figcaption {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 10px 10px 10px;
}

.snip1445 figcaption:before, .snip1445 figcaption:after {
  height: 1px;
  width: 100%;
  position: absolute;
  content: '';
  background-color: #FFFFFF;
}

.snip1445 figcaption:before {
  top: 0;
  left: 0;
  -webkit-transform: translateX(200%);
  transform: translateX(200%);
}

.snip1445 figcaption:after {
  bottom: 0;
  right: 0;
  -webkit-transform: translateX(-250%);
  transform: translateX(-250%);
}

.snip1445 figcaption > div:before, .snip1445 figcaption > div:after {
  width: 1px;
  height: 300px;
  position: absolute;
  content: '';
  background-color: #FFFFFF;
}

.snip1445 figcaption > div:before {
  top: 0;
  left: 0;
  -webkit-transform: translateY(200%);
  transform: translateY(200%);
}

.snip1445 figcaption > div:after {
  bottom: 0;
  right: 0;
  -webkit-transform: translateY(-250%);
  transform: translateY(-250%);
}

.snip1445 h3, .snip1445 span {
  margin: 0;
  padding: 5px 0;
  width: 150px;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  color: #0062AD;
}

.snip1445 h3 {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.snip1445 span {
  display: block;
  background: #0062AD;
  color: #FFFFFF;
  font-family: "YakuHanJP", "Roboto", "sans-serif";
  font-size: 1.2rem;
}

.snip1445 .click {
  display: block;
  font-weight: bold;
  width: 150px;
  margin-left: auto;
  background-color: #F2F2F2;
  padding: 3px 10px;
  color: #000000;
  text-shadow: #fff 0px 0px 0px;
}

.snip1445 img {
  opacity: .9;
}

/* blockquote
----------------------------------*/
.blockquote {
  position: relative;
  padding: 10px 15px 10px 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-style: italic;
  background: #FFFFFF;
}

.blockquote:before {
  display: inline-block;
  position: absolute;
  top: 18px;
  left: 15px;
  font-family: "Font Awesome 5 Free";
  content: "\f10d";
  font-weight: 900;
  color: #cfcfcf;
  font-size: 3rem;
  line-height: 1;
}

.blockquote p {
  margin: 10px 0;
}

/* etc
----------------------------------*/
.mbox {
  background: #FFFFFF;
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.macker {
  background-image: -webkit-gradient(linear, right top, left top, color-stop(50%, transparent), color-stop(50%, #fbff00));
  background-image: linear-gradient(to left, transparent 50%, #fbff00 50%);
  background-repeat: repeat-x;
  background-size: 200% .3em;
  background-position: 0 1em;
  -webkit-transition: all 3.5s ease;
  transition: all 3.5s ease;
  font-style: normal;
  font-weight: bold;
  padding: 0 5px;
}

.macker.active {
  background-position: -100% .8em;
}

.policy {
  padding: 30px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
}

.post {
  display: inline-block;
  width: 13em;
  margin-right: 1em;
}

.post_name {
  display: inline-block;
  width: 7em;
}

.camera {
  margin-left: 1em;
}

.camera:before {
  font-family: "Font Awesome 5 Free";
  content: "\f083";
  font-weight: 900;
}

.cut {
  overflow: hidden;
  zoom: 1;
}

/* animation
----------------------------------*/
@-webkit-keyframes loadingAnim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}

@keyframes loadingAnim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}

@-webkit-keyframes loadingAnim_text {
  0% {
    opacity: 1;
    color: #0062AD;
  }
  50% {
    color: #000000;
  }
  100% {
    opacity: .5;
    color: #eee;
  }
}

@keyframes loadingAnim_text {
  0% {
    opacity: 1;
    color: #0062AD;
  }
  50% {
    color: #000000;
  }
  100% {
    opacity: .5;
    color: #eee;
  }
}

@-webkit-keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}

@keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes animation-bar {
  0% {
    left: 0;
    right: auto;
    width: 0;
  }
  50% {
    left: 0;
    right: auto;
    width: 100%;
  }
  51% {
    left: auto;
    right: 0;
    width: 100%;
  }
  100% {
    left: auto;
    right: 0;
    width: 101%;
  }
}

@keyframes animation-bar {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 101%;
    width: 0;
  }
}

@-webkit-keyframes animation-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes animation-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.animation.move .animation-bar:before {
  -webkit-animation: animation-bar 1s ease 0s 1 normal forwards;
  animation: animation-bar 1s ease 0s 1 normal forwards;
}

.animation.move .animation-txt {
  -webkit-animation: animation-txt 0s ease .5s 1 normal forwards;
  animation: animation-txt 0s ease .5s 1 normal forwards;
}

.animation .animation-box {
  display: block;
  text-align: center;
}

.animation .animation-bar {
  position: relative;
  display: inline-block;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.animation .animation-bar:before {
  content: '';
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: #F2F2F2;
}

.animation .animation-txt {
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.effect_fade {
  opacity: 0;
  -webkit-transform: translate(0, 45px);
          transform: translate(0, 45px);
  -webkit-transition: all 2s;
  transition: all 2s;
}

.effect_fade.effect_scroll {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* key_visual
----------------------------------*/
.key_visual {
  position: relative;
  background: url(../img/bg01.jpg);
}

.key_visual .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  width: 1024px;
  height: 320px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.key_visual .inner .content_box {
  max-width: 460px;
  padding-right: 15px;
}

.key_visual .inner .img_box {
  width: 57.14%;
  position: absolute;
  height: 320px;
  right: 0;
  top: 0;
  overflow: hidden;
}

.key_visual .inner .img_box img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
}

.key_title {
  font-size: 4.8rem;
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: .1em;
  line-height: 1.33;
  margin-bottom: 30px;
}

.key_title span {
  display: block;
  font-family: "YakuHanJP", "Roboto", "sans-serif";
  font-size: 1.6rem;
}

/* bread_list
----------------------------------*/
.bread_list {
  position: relative;
  margin: -70px auto 25px;
  width: 1024px;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.bread_list .inner {
  padding: 10px 20px;
  background: #FFFFFF;
  display: inline-block;
}

.bread_list .inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.bread_list .inner ul a {
  color: #000000;
}

.bread_list .inner ul a.home:before {
  font-family: "Font Awesome 5 Free";
  content: "\f015";
  font-weight: 900;
}

.bread_list .inner ul a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  margin: 0 10px;
  color: #0062AD;
}

/* form
----------------------------------*/
.form {
  margin: 0 auto;
  width: 90%;
}

.form dl dt {
  float: left;
  width: 280px;
  padding-top: 20px;
  font-weight: 700;
}

.form dl dt span {
  color: #fff;
  background: #183961;
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
  position: relative;
  top: -2px;
}

.form dl dt span.nini {
  background: #e7c52e;
  color: #463b2d;
}

.form dl dd {
  padding-left: 280px;
  padding-bottom: 20px;
  padding-top: 23px;
  line-height: 1.5;
  border-bottom: 1px dotted #cccccc;
}

.form dl dd:last-child {
  border-bottom: none;
}

.form .textarea,
.form textarea {
  border: 0;
  padding: 20px 15px;
  width: 100%;
  background: #f5f5f5;
  border-radius: 0;
  -webkit-appearance: none;
}

.form .textarea {
  height: 30px;
}

.form .textarea02 {
  width: 48.5%;
  margin-right: 3%;
}

.form .textarea02:last-child {
  margin-right: 0;
}

.form .textarea03 {
  width: 20%;
  margin-right: 1%;
}

.form button {
  cursor: pointer;
  display: block;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  border: 1px solid #183961;
  font-weight: 700;
  padding: 12px 5px;
  margin: 0 auto;
  width: 250px;
  background: #183961;
  border-radius: 25px;
}

.form button:hover {
  background: #fff;
  color: #183961;
}

.form button:before {
  font-weight: normal;
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 10px;
}

.form .select-wrap {
  position: relative;
  overflow: hidden;
  display: inline-block;
  min-width: 192px;
  min-width: 12em;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  color: #333;
}

.form .select-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
  display: block;
  width: 200%;
  width: -webkit-calc(100% + 5em);
  margin: 0;
  padding: 11px 35px 11px 11px;
  padding: 0.6875rem 2.1875rem 0.6875rem 0.6875rem;
  background: transparent;
  border: 0;
  outline: none;
  line-height: 1.5;
}

.form .entypo-down-open-mini:before {
  font-family: "FontAwesome";
  content: "\f0ab";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 12px;
  right: 0.75rem;
  margin-top: -8px;
  margin-top: -0.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  color: #183961;
}

.form label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}

.form label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 0px;
  top: 2px;
  content: "";
  z-index: 3;
}

.form label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 2px;
  top: 4px;
  background-color: #183961;
  z-index: 1;
}

.form label.radio_text input[type="radio"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 0px;
  margin: 0px;
  -webkit-box-shadow: 20px -1px #fff;
  box-shadow: 20px -1px #fff;
}

.form label.radio_text input[type="radio"]:checked {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form label.radio_text input[type="radio"]:focus {
  opacity: 0.2;
  -webkit-box-shadow: 20px -1px #eeebda;
  box-shadow: 20px -1px #eeebda;
}

.form label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin: 0 20px 5px 0;
  overflow: hidden;
  display: inline-block;
}

.form label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
  padding: 1px;
}

.form label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #183961;
  border-bottom: 3px solid #183961;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 1;
}

@media all and (max-width: 639px) {
  .form label.checkbox_text:after.type1 {
    margin-top: -18px;
  }
}

.form label.checkbox_text input[type="checkbox"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  -webkit-box-shadow: 41px 0px #fff;
  box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}

.form label.checkbox_text input[type="checkbox"]:checked {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form label.checkbox_text input[type="checkbox"]:checked:focus {
  -webkit-box-shadow: 40px 0px #666;
  box-shadow: 40px 0px #666;
  opacity: 0.1;
}

.form label.checkbox_text input[type="checkbox"]:focus {
  -webkit-box-shadow: 41px 0px #eee;
  box-shadow: 41px 0px #eee;
}

.form input[type="text"],
.form textarea {
  font-size: 16px;
}

@media all and (max-width: 639px) {
  .form input[type="text"],
  .form textarea {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    margin-left: -5px;
  }
}

.fm-txt {
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 5px;
}

.thanks {
  padding: 40px;
  border: 3px solid #183961;
  -webkit-box-shadow: 0 0 0 8px rgba(24, 57, 97, 0.2);
  box-shadow: 0 0 0 8px rgba(24, 57, 97, 0.2);
  max-width: 700px;
  margin: 0 auto;
}

@media all and (max-width: 639px) {
  .thanks {
    max-width: 90%;
    padding: 30px 20px;
  }
}

.shadow {
  -webkit-box-shadow: 0 0 10px rgba(70, 59, 45, 0.05);
  box-shadow: 0 0 10px rgba(70, 59, 45, 0.05);
}

.policy {
  padding: 30px;
  background: rgba(218, 178, 78, 0.3);
}

/* form
----------------------------------*/
/*photoギャラリー*/
.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gallery li {
  width: 24%;
  margin: 0 calc(1% + (1% / 3)) 25px 0;
}

.gallery li:nth-child(4n) {
  margin-right: 0;
}

.gallery li a {
  display: block;
  text-align: center;
  padding: 0px;
  height: 180px;
}

.gallery li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  /*IE対策*/
}

.gallery li p {
  font-size: 14px;
  margin: 3px 0 10px;
}

@media all and (max-width: 800px) {
  .gallery li {
    width: 48%;
    margin: 0 1% 20px;
  }
  .gallery li:nth-child(2n) {
    margin-right: 0;
  }
  .gallery li a {
    height: 120px;
  }
  .gallery li p {
    font-size: 12px;
  }
}

.bg-base {
  position: relative;
}

.bg-base:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #0a4ea18a;
  z-index: -1;
}

.bg-base.type1 {
  position: relative;
}

.bg-base.type1:before {
  background-image: -webkit-gradient(linear, left top, right top, from(#0062AD), to(#F2F2F2));
  background-image: linear-gradient(to right, #0062AD, #F2F2F2);
  opacity: .9;
}

.bg-base.type2 .inner {
  position: relative;
  z-index: 3;
}

.bg-base.type2:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: calc(100% - 80px);
  height: calc(100% - 80px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fefefe;
}

@media all and (max-width: 639px) {
  .bg-base.type2:before {
    width: calc(100% - 40px);
    height: calc(100% - 40px);
  }
}
