@charset "UTF-8";
/* -------------------------- */
/* basis */
/* -------------------------- */
html {
  font-size: 62.5%;
}

body {
  margin: 0;
  color: #222;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.4em;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: scroll;
  position: relative;
}

/* コンテンツ幅 */
.container {
  padding: 0 15px;
}

/* 表示制御 */
.visible_xs {
  display: block;
}

.hidden_xs {
  display: none;
}

.hidden_all {
  display: none;
}

/* フォント制御 */
.txt_normal {
  font-size: 1.4rem;
  line-height: 1.6;
}

.txt_c {
  text-align: center;
}

.txt_r {
  text-align: right;
}

/* 画像制御 */
.img_responsive {
  width: 100%;
  height: auto;
}

.thum_img {
  line-height: 0;
}

.icon {
  width: 15px;
  height: 15px;
  vertical-align: middle;
}

img {
  vertical-align: bottom;
}

/* -------------------------- */
/* reset */
/* -------------------------- */
h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, figure {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ul, ol, li {
  list-style: none;
}

* {
  box-sizing: border-box;
}

/* -------------------------- */
/* link */
/* -------------------------- */
a {
  outline: none;
}

a:link, a:visited {
  text-decoration: none;
}

a:hover {
  opacity: 0.6;
}

a:active {
  text-decoration: none;
}

/* -------------------------- */
/* flexbox */
/* -------------------------- */
/* x_type01 スマホ縦並び、TB横並び */
.flexible_x_type01 {
  display: flex;
  flex-direction: column;
}

/* x_type02 スマホ横並び、TB縦並び */
.flexible_x_type02 {
  display: flex;
  flex-direction: row;
}

/* x_type03 横並び */
.flexible_x_type03 {
  display: flex;
  flex-direction: row;
}

/* x_type04 横並び折返し */
.flexible_x_type04 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

/* y_type01 縦並び */
.flexible_y_type01 {
  display: flex;
  flex-direction: column;
}

/* -------------------------- */
/* bg */
/* -------------------------- */
/* -------------------------- */
/* title */
/* -------------------------- */
/* title_section */
.title_section {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
}

.title_section::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 50px;
  height: 2px;
  border-radius: 2px;
  background: #FF511C;
}

.title_section span {
  color: #FF511C;
}

/* title_style01 */
.title_style01 {
  position: relative;
  transform: translateY(-50%);
  padding: 10px;
  margin: 0 auto;
  max-width: 600px;
  border: solid 2px #25AD74;
  border-radius: 50px;
  background: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  color: #25AD74;
  text-align: center;
}

.title_style01::before, .title_style01::after {
  content: '';
  position: absolute;
  right: 0;
  left: 0;
  transform: translateY(100%);
  margin: auto;
  width: 0;
  height: 0;
}

.title_style01::before {
  bottom: 0;
  border-top: 14px solid #25AD74;
  border-right: 14px solid transparent;
  border-left: 14px solid transparent;
}

.title_style01::after {
  bottom: 3px;
  border-top: 14px solid #fff;
  border-right: 14px solid transparent;
  border-left: 14px solid transparent;
}

/* -------------------------- */
/* text */
/* -------------------------- */
.color_orange01 {
  color: #FF511C;
}

/* -------------------------- */
/* btn */
/* -------------------------- */
/* btn_default01 */
.btn_default01 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 45px;
  border: 2px solid #FF511C;
  border-radius: 10px;
  background: #FF511C;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
}

.btn_default01:hover {
  background: #fff;
  color: #FF511C;
  opacity: 1;
}

.btn_default01.btn_color01 {
  background: #fff;
  color: #FF511C;
}

.btn_default01.btn_color01:hover {
  background: #FF511C;
  color: #fff;
  opacity: 1;
}

/* -------------------------- */
/* form */
/* -------------------------- */
.input {
  width: 100%;
  height: 42px;
  padding: 15px 10px;
  background: #ECECEC;
  border: none;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 1.6rem;
  -webkit-appearance: none;
}

.input:focus {
  background-color: #F2FCF8;
}

.input_size01 {
  width: 100%;
}

.input_size02 {
  width: 100%;
  height: 100px;
}

.input_size03 {
  width: 150px;
}

.input_size04 {
  width: 100%;
}

.input_size05 {
  width: 100%;
}

.cms_input_bottom {
  margin-bottom: 10px;
}

.input_btn {
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  transition: all 0.3s;
}

.input_btn:hover {
  opacity: 0.7;
}

.input_check {
  display: block;
  position: relative;
  margin-bottom: 15px;
  height: 30px;
  cursor: pointer;
}

.input_check:last-child {
  margin-bottom: 0;
}

.input_check input[type=radio],
.input_check input[type=checkbox] {
  display: none;
  position: relative;
}

.input_check input[type=radio] + span,
.input_check input[type=checkbox] + span {
  height: 32px;
  padding-left: 40px;
  display: inline-block;
  line-height: 32px;
}

.input_check input[type=radio] + span {
  line-height: 35px;
}

.input_check input[type=radio] + span::before,
.input_check input[type=checkbox] + span::before {
  background: #fff;
  border: 1px solid #FF511C;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all .2s;
}

.input_check input[type=radio] + span::before {
  width: 30px;
  height: 30px;
  border-radius: 40px;
  border: 2px solid #ECECEC;
}

.input_check input[type=checkbox] + span::before {
  width: 30px;
  height: 30px;
  border-radius: 5px;
}

.input_check input[type=checkbox]:checked + span::before {
  background: #FF511C;
}

.input_check input[type=checkbox]:checked + span::after {
  width: 30px;
  height: 30px;
  background: url(../images/icon/icon_check02.svg) no-repeat center/15px auto;
  border-radius: 3px;
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  line-height: 1;
  vertical-align: middle;
}

.input_check input[type=radio]:checked + span::before {
  border-color: #FF511C;
}

.input_check input[type=radio]:checked + span::after {
  width: 16px;
  height: 16px;
  background: #FF511C;
  border-radius: 15px;
  content: "";
  position: absolute;
  left: 9px;
  top: 9px;
}

/* input_check_btn */
.input_check_btn {
  width: 100%;
  height: 42px;
  display: block;
  cursor: pointer;
  position: relative;
}

.input_check_btn input {
  display: none;
  position: relative;
}

.input_check_btn input + span {
  width: 100%;
  height: 44px;
  color: #00f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  position: relative;
  text-align: center;
  z-index: 1;
}

.input_check_btn input + span:before {
  width: calc(100% - 4px);
  height: 40px;
  background: #fff;
  border: 2px solid #00f;
  border-radius: 100px;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all .2s;
  z-index: -1;
}

.input_check_btn input:checked + span {
  color: #fff !important;
}

.input_check_btn input:checked + span:before {
  background: #00f;
}

.input_check_btn input:checked + span:after {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  background: url(/images/icon/icon_check02.svg) no-repeat left top/15px auto;
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 1;
  vertical-align: middle;
  z-index: 2;
}

.input_check_btn img {
  width: 32px;
  height: auto;
  border: 1px solid #d4dbe1;
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}

/* select */
.select_box {
  width: 100%;
  height: 42px;
  background: #ECECEC;
  border: none;
  border-radius: 5px 0 0 5px;
  position: relative;
}

.select_box:before {
  width: 45px;
  height: 100%;
  background: #d3d3d3;
  border-radius: 0 5px 5px 0;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
}

.select_box:after {
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 8.7px 5px 0 5px;
  border-color: #000 transparent;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 17px;
}

.select_box::-ms-expand {
  display: none;
}

.select_box select {
  width: 100%;
  background: #ECECEC;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  text-indent: 0.01px;
  text-overflow: "";
  height: 40px;
  padding: 0 25px 0 10px;
  border: none;
  border-radius: 3px;
  text-indent: .01px;
  background-size: auto 45px;
  font-size: 1.4rem;
  position: relative;
  z-index: 4;
}

.select_box select::-ms-expand {
  display: none;
}

/* file */
.input_fileUpload {
  display: none;
}

.file_label {
  width: 170px;
  height: 40px;
  background: #222;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.file_label:hover {
  opacity: 0.7;
}

.error_txt {
  padding-top: 5px;
  color: #FF511C;
}

.error_txt:empty {
  display: none;
}

/* required */
.required {
  padding: 2px 0;
  margin-left: 10px;
  width: 42px;
  height: 20px;
  border-radius: 5px;
  background: #FF511C;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-align: center;
  vertical-align: middle;
}

/* -------------------------- */
/* table */
/* -------------------------- */
.table_default {
  background: #fff;
  border-bottom: 2px dashed #222;
}

.table_default dt {
  width: 100%;
  padding: 10px;
  background: #222;
  color: #fff;
  font-weight: bold;
}

.table_default dt:not(:last-of-type) {
  border-bottom: 2px dashed #fff;
}

.table_default dd {
  width: 100%;
  padding: 10px 10px 15px 10px;
  border-left: 2px dashed #222;
  border-right: 2px dashed #222;
}

.table_default dd:not(:last-of-type) {
  border-bottom: 2px dashed #222;
}

/* table_line */
.table_line {
  width: auto;
  border-top: 2px dashed #ddd;
  border-bottom: 2px dashed #ddd;
  align-items: center;
}

.table_line > dt, .table_line > dd {
  width: 100%;
}

.table_line > dt {
  padding: 10px 0 0;
  font-weight: bold;
}

.table_line > dd {
  padding: 0 0 10px;
}

.table_line > dd:not(:last-of-type) {
  border-bottom: 2px dashed #ddd;
}

.table_line > dd a {
  color: #FF511C;
  text-decoration: underline;
  word-break: break-all;
}

/* -------------------------- */
/* header */
/* -------------------------- */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 500;
  width: 100%;
  height: 60px;
  padding: 0 10px;
}

.header_logo {
  width: 160px;
}

.header_logo span {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: bold;
  color: #FF511C;
  text-align: center;
  letter-spacing: 1px;
}

.header .global_navi .fat-nav__wrapper {
  height: 100% !important;
  transform: inherit !important;
}

.header .global_navi .global_navi_inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.header .global_navi .global_navi_inner .global_navi_inner_list {
  width: 80%;
  margin: 25px 0 30px;
  border-top: 1px solid #fff;
}

.header .global_navi .global_navi_inner .global_navi_inner_list > li {
  border-bottom: 1px solid #fff;
  overflow: hidden;
}

.header .global_navi .global_navi_inner .global_navi_inner_list > li > a {
  padding: 12px 15px;
  color: #fff;
  display: block;
  font-weight: bold;
}

.header_btn {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
}

.header_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: #FF511C;
  border: 2px solid #FF511C;
  font-weight: bold;
  color: #fff;
  line-height: 1.4;
  transition: .3s;
}

.header_btn a > span {
  display: inline-block;
  position: relative;
}

.header_btn a > span .icon {
  width: 30px;
  height: 30px;
  fill: #fff;
  transition: .3s;
}

.header_btn a > span .txt {
  display: none;
}

.header_btn a:hover {
  opacity: 1;
  background: #fff;
  color: #FF511C;
}

.header_btn a:hover > span .icon {
  fill: #FF511C;
}

.scroll {
  overflow: scroll !important;
}

/* -------------------------- */
/* content */
/* -------------------------- */
/* anchor */
.anchor {
  position: relative;
  top: -80px;
}

/* contact_form */
.contact_form {
  padding: 30px 15px;
  background: #fff;
  border-radius: 20px;
}

.contact_form .table_line {
  margin-bottom: 15px;
}

.contact_form .table_line > dt {
  margin-bottom: 5px;
  position: relative;
}

.contact_form .table_line > dt .required {
  position: absolute;
  right: 0;
  top: 10px;
}

.contact_form .table_line .add span {
  width: 25px;
  display: inline-block;
}

.contact_form .table_line .add input:first-of-type {
  margin-bottom: 10px;
}

.contact_form .input_check_list li {
  margin-bottom: 10px;
  font-weight: 500;
}

.contact_form .input_check_list li:not(:last-child) {
  margin-bottom: 10px;
}

.contact_form .input_agree {
  padding: 25px 0;
  text-align: center;
}

.contact_form .confirm > dt:first-child {
  padding: 15px;
}

.contact_form.thanks .title_contents04 {
  text-align: center;
}

/* -------------------------- */
/* footer */
/* -------------------------- */
.footer {
  padding-top: 40px;
  /* copy */
}

.footer > .container {
  padding: 0;
}

.footer_company {
  margin-bottom: 30px;
  text-align: center;
}

.footer_company_logo {
  margin: 0 auto 10px;
  width: 150px;
}

.footer_company p {
  font-size: 1.2rem;
}

.footer_company p a {
  color: #FF511C;
  text-decoration: underline;
}

.footer_navi {
  margin-bottom: 30px;
}

.footer_navi_list {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #ddd;
}

.footer_navi_list li {
  width: 50%;
  border-bottom: 1px solid #ddd;
}

.footer_navi_list li:nth-child(odd) {
  border-right: 1px solid #ddd;
}

.footer_navi_list li a {
  display: flex;
  justify-content: center;
  padding: 15px;
  font-size: 1.2rem;
  color: #222;
}

.footer_other {
  padding: 0 15px;
  margin-bottom: 30px;
}

.footer_other_list_box {
  display: flex;
  align-items: center;
}

.footer_other_list_box:not(:last-child) {
  margin-bottom: 20px;
}

.footer_other_list_box img {
  margin-right: 10px;
  height: 50px;
}

.footer_other_list_box p {
  font-size: 1rem;
  color: #888;
  line-height: 1.2;
}

.footer_other_list_box p a {
  color: #888;
  text-decoration: underline;
}

.footer .copy {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background: #f5f5f5;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .container {
    padding: 0 30px;
  }
  .container.container_l {
    padding: 0 60px;
  }
  .visible_xs {
    display: none;
  }
  .hidden_xs {
    display: block;
  }
  .txt_normal {
    font-size: 1.4rem;
  }
  .flexible_x_type01 {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .flexible_x_type02 {
    flex-direction: column;
  }
  .title_section {
    padding-bottom: 20px;
    margin-bottom: 30px;
    font-size: 3rem;
  }
  .title_section br {
    display: none;
  }
  .title_style01 {
    padding: 15px;
    font-size: 2rem;
  }
  .title_style01 br {
    display: none;
  }
  .btn_default01 {
    width: 320px;
    height: 75px;
    margin: 0 auto;
    font-size: 1.6rem;
  }
  .input_check_btn input + span {
    font-size: 1.4rem;
  }
  .table_default {
    border-top: 3px solid #222;
    border-bottom-width: 3px;
    display: flex;
    flex-wrap: wrap;
  }
  .table_default dt {
    width: 20%;
    padding: 10px 15px 13px;
  }
  .table_default dd {
    width: 80%;
    padding: 10px 15px 13px;
    border-right-width: 3px;
  }
  .table_line {
    border-top: none;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .table_line > dt {
    width: 25%;
    padding: 15px;
  }
  .table_line > dt:not(:last-of-type) {
    border-bottom: 2px dashed #ddd;
  }
  .table_line > dt:first-of-type {
    border-top: 2px dashed #ddd;
  }
  .table_line > dd {
    width: 75%;
    padding: 15px;
  }
  .table_line > dd:first-of-type {
    border-top: 2px dashed #ddd;
  }
  .table_line .tel a {
    color: #000;
    pointer-events: none;
    text-decoration: none;
  }
  .header {
    padding: 0 30px;
    height: 84px;
  }
  .header_logo {
    margin-top: 2px;
    width: 250px;
  }
  .header_logo span {
    font-size: 1.2rem;
  }
  .header_btn a {
    width: 84px;
    height: 84px;
  }
  .hamburger {
    right: 84px;
    width: 84px;
    height: 84px;
  }
  .contact_form {
    padding: 30px;
  }
  .contact_form .table_line {
    margin-bottom: 25px;
  }
  .contact_form .table_line > dt {
    margin-bottom: 0;
    padding: 25px 15px 15px 15px;
  }
  .contact_form .table_line > dt .required {
    top: 26px;
  }
  .contact_form .table_line > dt.radio_box {
    padding: 20px 15px;
  }
  .contact_form .table_line > dt.radio_box .required {
    top: 22px;
  }
  .contact_form .input_check_list {
    margin-bottom: -10px;
    display: flex;
    flex-wrap: wrap;
  }
  .contact_form .input_check_list li {
    margin-right: 25px;
  }
  .contact_form .confirm > dt {
    padding: 15px;
  }
  .contact_form .confirm > dt .required {
    top: 15px;
  }
  .contact_form .confirm > dt:first-child .required {
    top: 15px;
  }
  .footer_other {
    padding: 30px;
  }
}

@media screen and (min-width: 1280px) {
  .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
  }
  .container.container_l {
    padding: 0 200px;
  }
  .txt_normal {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .title_section {
    padding-bottom: 30px;
    margin-bottom: 40px;
    font-size: 3.6rem;
  }
  .btn_default01 {
    height: 70px;
    font-size: 1.8rem;
  }
  .btn_default01.btn_color01 {
    border-width: 2px;
  }
  .input {
    height: 48px;
    padding: 15px;
  }
  .input_size02 {
    height: 200px;
  }
  .input_size04 {
    width: 50%;
  }
  .input_size05 {
    width: 400px;
  }
  .input_check {
    height: 40px;
  }
  .input_check input[type=checkbox] + span {
    height: 40px;
    padding-left: 52px;
    line-height: 36px;
    font-size: 1.6rem;
  }
  .input_check input[type=radio] + span {
    height: 36px;
    padding-left: 46px;
    line-height: 36px;
    font-size: 1.6rem;
  }
  .input_check input[type=radio] + span::before {
    width: 36px;
    height: 36px;
    border-radius: 100px;
  }
  .input_check input[type=checkbox] + span::before {
    width: 35px;
    height: 35px;
    top: -1px;
  }
  .input_check input[type=checkbox]:checked + span::after {
    width: 35px;
    height: 35px;
    background-size: 20px auto;
    top: 0px;
    left: 1px;
  }
  .input_check input[type=checkbox] + span::before {
    width: 35px;
    height: 35px;
  }
  .input_check input[type=radio]:checked + span::after {
    width: 20px;
    height: 20px;
    border-radius: 100px;
    left: 10px;
    top: 10px;
  }
  .input_check_btn {
    height: 65px;
  }
  .input_check_btn input + span {
    height: 65px;
    font-size: 1.8rem;
  }
  .input_check_btn input + span:before {
    height: 65px;
  }
  .input_check_btn img {
    width: 62px;
    left: 50px;
  }
  .input_check_btn input:checked + span:after {
    width: 25px;
    height: 25px;
    margin-top: 2px;
    background-size: 25px auto;
    right: 35px;
  }
  .select_box {
    height: 48px;
  }
  .select_box select {
    height: 48px;
    font-size: 1.6rem;
  }
  .required {
    width: 80px;
    height: 35px;
    padding-bottom: 3px;
    font-size: 1.6rem;
  }
  .table_default {
    font-size: 1.8rem;
  }
  .table_default dt {
    width: 15%;
    padding: 15px 15px 20px 25px;
  }
  .table_default dd {
    width: 85%;
    padding: 15px 15px 20px 25px;
  }
  .table_line {
    font-size: 1.6rem;
  }
  .table_line > dt {
    width: 20%;
    padding: 20px;
    font-size: 1.8rem;
  }
  .table_line > dd {
    width: 80%;
    padding: 20px 15px;
  }
  .header {
    padding: 0 30px;
  }
  .header_logo {
    width: 300px;
  }
  .header_logo span {
    font-size: 1.4rem;
  }
  .header .global_navi {
    height: 100%;
    padding-right: 230px;
    display: block !important;
    z-index: 1;
  }
  .header .global_navi .global_navi_inner {
    flex-direction: row;
    justify-content: flex-end;
  }
  .header .global_navi .global_navi_inner .global_navi_inner_list {
    width: auto;
    height: 100%;
    margin: 0;
    display: flex;
    border-top: none;
  }
  .header .global_navi .global_navi_inner .global_navi_inner_list > li {
    /* padding-right: 50px; */
    padding: 0 25px;
    border-bottom: none;
    display: flex;
    align-items: center;
    position: relative;
    overflow: inherit;
  }
  .header .global_navi .global_navi_inner .global_navi_inner_list > li > a {
    padding: 0;
    color: #222;
    font-size: 1.5rem;
    line-height: 1.2;
    position: relative;
  }
  .header_btn {
    position: absolute;
    width: 260px;
  }
  .header_btn a {
    width: auto;
    height: 104px;
    border-radius: 0 0 0 10px;
    font-size: 1.8rem;
    line-height: 1.2;
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
  }
  .header_btn a > span {
    margin-left: -5px;
    padding-left: 60px;
  }
  .header_btn a > span .icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
  }
  .header_btn a > span .txt {
    display: inline-block;
  }
  .contact_form {
    padding: 50px;
  }
  .contact_form .table_line > dt {
    width: 25%;
    padding: 35px 0 25px 25px;
  }
  .contact_form .table_line > dt .required {
    top: 36px;
  }
  .contact_form .table_line > dt.radio_box {
    padding: 28px 0 25px 25px;
  }
  .contact_form .table_line > dt.radio_box .required {
    top: 32px;
  }
  .contact_form .table_line > dd {
    width: 75%;
    padding: 25px 25px 25px 50px;
  }
  .contact_form .input_check_list li {
    margin-right: 30px;
  }
  .contact_form .confirm {
    margin-bottom: 50px;
  }
  .contact_form .confirm > dt {
    padding: 25px;
  }
  .contact_form .confirm > dt .required {
    top: 28px;
  }
  .contact_form .confirm > dt:first-child {
    padding: 25px;
  }
  .contact_form .confirm > dt:first-child .required {
    top: 28px;
  }
  .footer {
    padding-top: 60px;
  }
  .footer > .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 50px;
    margin-bottom: 30px;
  }
  .footer_company {
    margin-bottom: 0;
    text-align: left;
    width: 40%;
  }
  .footer_company_logo {
    margin-left: 0;
  }
  .footer_navi {
    width: 60%;
  }
  .footer_navi_list {
    display: block;
    column-count: 3;
    column-width: auto;
    column-gap: 60px;
    border: none;
  }
  .footer_navi_list * {
    border: none !important;
  }
  .footer_navi_list li {
    width: auto;
  }
  .footer_navi_list li:nth-of-type(1), .footer_navi_list li:nth-of-type(2) {
    width: 110px;
    margin-left: auto;
  }
  .footer_navi_list li a {
    position: relative;
    display: inline-flex;
    justify-content: flex-start;
    padding: 5px 5px 5px 15px;
    font-size: 1.4rem;
  }
  .footer_navi_list li a::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(45deg);
    width: 5px;
    height: 5px;
    border-top: 1px solid #222;
    border-right: 1px solid #222;
  }
  .footer_other {
    padding: 0;
    margin: 40px 0 0;
    width: 100%;
  }
  .footer_other_list {
    display: flex;
  }
  .footer_other_list_box:not(:last-child) {
    margin-bottom: 0;
    margin-right: 20px;
  }
}

/*# sourceMappingURL=map/import.css.map */
