@charset "UTF-8";
/* CSS Document */
/*■01.RESET HTML*/
html {
  background-color: #fff;
  font-family: "游ゴシック体", "游ゴシック", "Yu Gothic", "Meiryo", "メイリオ", "MS PGothic", "MS Pゴシック", sans-serif;
}

body {
  position: relative;
  font-family: "游ゴシック体", "游ゴシック", "Yu Gothic", YuGothic, sans-serif;
  color: #000;
  margin: 0 auto;
  word-wrap: break-word;
}

p, li, pre, td, th, dt, dd {
  line-height: 1.7;
}

#wrapper {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background-color: #FFF;
  position: relative;
  word-wrap: break-word;
  overflow-x: hidden;
}

a[href*="tel:"] {
  text-decoration: none;
}

/*■02.CLEAR FLOAT*/
.clearfix {
  display: inline-block;
}
.clearfix:after {
  clear: both;
  display: block;
  content: " ";
  height: 0px;
  visibility: hidden;
}

/* Hide these rules from IE-mac \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

.hidden {
  display: none;
}

/*■03.USE MEDIA*/
.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.media, .media-body {
  overflow: hidden;
}

.media-text:after {
  clear: both;
  display: block;
  content: "";
  height: 0px;
  visibility: hidden;
}

.dis_375, .hidden {
  display: none;
}

@media only screen and (max-width: 375px) {
  .dis_375 {
    display: block;
  }
}
/*■04.LAYOUT*/
.container {
  padding: 0 2%;
  position: relative;
}

.font14pc {
  font-size: 100%;
}

.font15pc {
  font-size: 107%;
}

.font16pc {
  font-size: 114%;
}

.font17pc {
  font-size: 121%;
}

.font18pc {
  font-size: 129%;
}

.font19pc {
  font-size: 136%;
}

.font20pc {
  font-size: 143%;
}

.font21pc {
  font-size: 150%;
}

.font22pc {
  font-size: 157%;
}

.font23pc {
  font-size: 164%;
}

.font24pc {
  font-size: 171%;
}

.font25pc {
  font-size: 179%;
}

.font26pc {
  font-size: 186%;
}

.font27pc {
  font-size: 193%;
}

.font28pc {
  font-size: 200%;
}

.font29pc {
  font-size: 207%;
}

.font30pc {
  font-size: 214%;
}

.font31pc {
  font-size: 221%;
}

.font32pc {
  font-size: 229%;
}

.flex_bg {
  width: 100%;
  margin-right: -100%;
}

.flex_content {
  width: 100%;
  position: relative;
}

/*■05.FLEX*/
.dis_flex {
  display: flex;
  display: -webkit-flex;
  /* Safari */
  display: -moz-flex;
  /* Firefox */
  display: -ms-flex;
  /* IE */
}

/*justify-content*/
.flex_jus_start {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.flex_jus_end {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.flex_jus_center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.flex_jus_between {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex_jus_around {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.flex_jus_ini {
  display: flex;
  flex-wrap: wrap;
  justify-content: initial;
}

/*■06.LAYOUT*/
/* 
--------------------------------------------------
 ▽ #HEADER （グローバルナビゲーション）
-------------------------------------------------- */
#header {
  position: relative;
}
#header .h_main {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3% 2%;
}
#header .h_main .h_logo {
  width: 43%;
}
#header .h_main .h_btn {
  width: 57%;
  display: flex;
  justify-content: flex-end;
}
#header .h_main .h_btn li {
  width: 50px;
}
#header .h_main .h_btn li:not(:last-child) {
  margin-right: 5px;
}
#header .h_main .h_btn li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  padding: 0;
}
#header .h_main .h_btn li a img {
  height: 20px;
  width: auto;
}
#header .h_main .h_btn li.cm-phone a {
  background: #000;
}
#header .h_main .h_btn li.btn a {
  background: #ff6d2d;
}
#header .h_main .h_btn li.navTrigger {
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: block;
  position: relative;
  background: #113f97;
}
#header .h_main .h_btn li.navTrigger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 30px;
  background: #fff;
  opacity: 1;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
#header .h_main .h_btn li.navTrigger span:nth-child(1) {
  top: 15px;
  transform-origin: left center;
}
#header .h_main .h_btn li.navTrigger span:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
  transform-origin: left center;
}
#header .h_main .h_btn li.navTrigger span:nth-child(3) {
  bottom: 14px;
  transform-origin: left center;
}
#header .h_main .h_btn li.navTrigger.active span:nth-child(1) {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  left: 9px;
  top: 12px;
}
#header .h_main .h_btn li.navTrigger.active span:nth-child(2) {
  opacity: 0;
}
#header .h_main .h_btn li.navTrigger.active span:nth-child(3) {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  left: 9px;
  bottom: 14px;
}

/* 
--------------------------------------------------
 ▽ #gnav （グローバルナビゲーション）
-------------------------------------------------- */
#gnav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #113f97;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  border: none;
  padding: 10px 20px;
}
#gnav.opened {
  opacity: 1;
  visibility: visible;
}
#gnav .sub_menu li a {
  display: block;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 0;
}
#gnav .sub_menu li:first-child a {
  background-color: #fff;
  padding: 5px;
  color: #000;
  font-size: 12px;
}
#gnav .sub_menu li:first-child a .txt {
  margin-top: 3px;
}
#gnav .h_infor {
  margin: 15px 0;
}
#gnav .h_infor .h_link a {
  position: relative;
  display: inline-block;
  background: url("../common_img/h_icon_address.png") no-repeat left center;
  background-size: 10px;
  padding-left: 20px;
  text-decoration: none;
  color: #fff;
}
#gnav .h_infor .tel {
  text-align: center;
  margin: 5px 0;
}
#gnav .h_infor .tel a {
  background: url("../common_img/h_icon_tel.png") no-repeat left center;
  background-size: 20px;
  font-size: 28px;
  letter-spacing: 1px;
  padding-left: 30px;
  font-weight: bold;
  color: #fff;
}

/*■--------------------CM CSS--------------------*/
.a_absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
}

.btn_contact {
  display: block;
  position: relative;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: #ff6d2d;
  text-align: center;
  color: #fff;
  text-decoration: none !important;
  line-height: 1.5;
  padding: 12px;
  width: 225px;
  margin: auto;
  z-index: 3;
}
.btn_contact span {
  background: url("../common_img/icon_mail.png") no-repeat center left;
  background-size: 18px;
  padding-left: 25px;
}

.style_btn01 {
  margin-top: 20px;
}
.style_btn01 a, .style_btn01 .style_submit {
  background: #00b900;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  padding: 15px 50px;
  position: relative;
  min-width: 250px;
  color: #fff;
  z-index: 3;
}
.style_btn01 a.btn_orange, .style_btn01 .style_submit.btn_orange {
  background: #ff6d2d;
}

.cm-arr {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  width: 30px;
  height: 1px;
  background: #fff;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.cm-arr:after {
  content: "";
  position: absolute;
  top: -3px;
  right: 2px;
  margin: auto;
  width: 0;
  height: 0;
  border: solid #fff;
  border-width: 0 1px 0 0;
  display: inline-block;
  padding: 5px;
  transform: rotate(-60deg);
  -webkit-transform: rotate(-60deg);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.cm-arr.arr_back {
  right: auto;
  left: 15px;
}
.cm-arr.arr_back:after {
  right: 0;
  left: -15px;
  border-width: 1px 0 0 0;
  transform: rotate(-30deg);
  -webkit-transform: rotate(-30deg);
}

.style_ttl {
  margin-bottom: 10px;
}
.style_ttl span {
  display: block;
  font-size: 32px;
  font-family: "游明朝", "Yu Mincho", "游明朝体", YuMincho, "Noto Serif JP", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #113f97;
}

@media only screen and (max-width: 415px) {
  .style_ttl span {
    font-size: 30px;
  }
}
@media only screen and (max-width: 375px) {
  .style_ttl span {
    font-size: 28px;
  }
}
@media only screen and (max-width: 320px) {
  .style_ttl span {
    font-size: 24px;
  }
}
.style_ttl01 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.style_ttl01:after {
  position: absolute;
  content: "";
  background: #ff6d2d;
  width: 100px;
  height: 3px;
  left: 0;
  bottom: 0;
}
.style_ttl01 span {
  display: block;
  font-family: "游明朝", "Yu Mincho", "游明朝体", YuMincho, "Noto Serif JP", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  line-height: normal;
}
.style_ttl01 span.txt_jp {
  font-size: 27px;
  color: #113f97;
}
.style_ttl01 span.txt_eng {
  font-size: 16px;
}

@media only screen and (max-width: 415px) {
  .style_ttl01 span.txt_jp {
    font-size: 24px;
  }
}
.sec_contact {
  background: url("../images/contact_bg.jpg") no-repeat top;
  background-size: cover;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 8% 0;
  margin-top: 8%;
}
.sec_contact .style_ttl img {
  width: 76px;
}
.sec_contact .list_btn li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 300px;
  border: 2px solid #fcfcfc;
  color: #fff;
  position: relative;
  margin: 10px auto 0;
  padding: 5px 0 10px;
  box-sizing: border-box;
}
.sec_contact .list_btn li .tel a {
  background: url("../images/contact_icon_tel.png") no-repeat left center;
  background-size: 43px;
  font-size: 30px;
  font-weight: bold;
  padding-left: 50px;
  line-height: 1.3;
  color: #fff;
}
.sec_contact .list_btn li .time {
  font-weight: normal;
  font-size: 12px;
}
.sec_contact .list_btn li.contact {
  padding: 0;
}
.sec_contact .list_btn li.contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
  color: #fff;
  font-weight: normal;
  padding: 16px 0 14px;
  z-index: 3;
}
.sec_contact .list_btn li.contact a .txt {
  background: url("../images/contact_icon_mail.png") no-repeat center left;
  background-size: 25px;
  padding-left: 40px;
}

/* 
--------------------------------------------------
 ▽ #FOOTER （グローバルナビゲーション）
-------------------------------------------------- */
#page-top {
  position: fixed;
  bottom: 10%;
  right: 2%;
  width: 50px;
  z-index: 999;
}

.back_pc {
  background: #fff;
  text-align: center;
}
.back_pc a {
  display: block;
  padding: 10px;
}

#footer .f_cont {
  background: #00205e url("../common_img/footer_bg.png") no-repeat top 15% center;
  background-size: 75%;
  padding: 8% 0;
  color: #fff;
}
#footer .f_cont .f_infor a {
  color: #fff;
}
#footer .f_cont .f_infor .left_infor .logo {
  width: 43%;
  display: inline-block;
  padding: 12px 5px;
  margin-bottom: 3%;
}
#footer .f_cont .f_infor .left_infor .txt_address {
  line-height: 1.8;
}
#footer .f_cont .f_infor .left_infor .link_address {
  position: relative;
  margin-top: 4%;
}
#footer .f_cont .f_infor .left_infor .link_address a {
  position: relative;
  display: inline-block;
  width: 250px;
  text-decoration: none !important;
  border: 1px solid #fff;
  padding: 15px 20px;
  text-align: center;
  z-index: 3;
}
#footer .f_cont .f_infor .left_infor .link_address a .txt {
  background: url("../common_img/footer_icon_address.png") no-repeat center left;
  background-size: 14px;
  padding: 4px 40px;
}
#footer .f_cont .f_infor .right_infor {
  width: 100%;
  margin-top: 6%;
}
#footer .f_cont .f_infor .right_infor .f_gnav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-bottom: 4%;
  border-bottom: 1px solid #fff;
}
#footer .f_cont .f_infor .right_infor .f_gnav ul {
  width: 50%;
}
#footer .f_cont .f_infor .right_infor .f_gnav ul li {
  width: 100%;
  margin-bottom: 5px;
}
#footer .f_cont .f_infor .right_infor .f_gnav ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none !important;
}
#footer .f_cont .f_infor .right_infor .infor_company {
  margin-top: 6%;
}
#footer .f_cont .f_infor .right_infor .infor_company ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 4%;
}
#footer .f_cont .f_infor .right_infor .infor_company ul li {
  line-height: 2;
}
#footer .f_cont .f_infor .right_infor .infor_company ul li:nth-child(2) {
  width: 40%;
}
#footer .f_cont .f_infor .right_infor .infor_company ul li:nth-child(2) img {
  width: 100%;
}
#footer .f_cont .f_infor .right_infor .infor_company ul li a {
  display: block;
}
#footer .copy_right {
  background: #000e22;
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 12px;
}

@media only screen and (max-width: 360px) {
  #footer .f_cont .f_infor .right_infor .infor_company ul {
    flex-wrap: wrap;
  }
  #footer .f_cont .f_infor .right_infor .infor_company ul li {
    width: 100%;
  }
  #footer .f_cont .f_infor .right_infor .infor_company ul li:nth-child(2) {
    margin-top: 4%;
    width: 55%;
  }
}
/*■07.FIX RESPONSIVE*/