@charset "UTF-8";
/*!
Theme Name: MIFS
Description: MIFS
Theme URI: https://www.mutouinfo.co.jp/
Version: 1.0
License: mutouinfo
License URI: https://www.mutouinfo.co.jp/
*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=M+PLUS+1:wght@100..900&display=swap");
/****************************************

リセットCSSここから

*****************************************/
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  /*1em=10px */
  overflow-y: scroll;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

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

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

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

img {
  vertical-align: top;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/****************************************

メディアクエリ/レスポンシブ用mixin

*****************************************/
/****************************************

body設定(主に書式)

*****************************************/
body {
  min-width: 1240px;
  background: #FFF;
  color: #222;
  font-family: "M PLUS 1", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  body {
    min-width: initial;
    line-height: 1.8;
  }
}
/****************************************

ページ共通

*****************************************/
#wrapper {
  width: 100%;
  min-height: 100%;
  float: none;
  margin: 0 auto;
  overflow: hidden;
}

/****************************************

フォント指定

*****************************************/
li, tt, tr, dt, dd, p, figcaption {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}

h1 {
  color: #222;
  font-size: 5rem;
  font-weight: bold;
  line-height: 1.5;
}

h2 {
  color: #222;
  font-size: 3.4rem;
  font-weight: bold;
  line-height: 1.5;
}

h3 {
  color: #005F99;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  li, tt, tr, dt, dd, p {
    font-size: 1.4rem;
  }
  h1 {
    font-size: 2.4rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.8rem;
  }
}
/****************************************

リンク指定&オンマウス時のアクション

*****************************************/
a:link, a:visited {
  color: #3366CC;
  text-decoration: underline;
  transition: 0.3s;
}
a:hover, a:active {
  color: #264A97;
  text-decoration: none;
  transition: 0.3s;
}
a img.img_opacity {
  transition: 0.3s linear;
}
a:hover img.img_opacity {
  opacity: 0.7;
  transition: 0.3s linear;
}

a.link_txt {
  color: #222;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
a.link_txt::after {
  position: absolute;
  bottom: 0px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #222;
  transform: scale(1, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
a.link_txt:hover::after {
  transform-origin: right top;
  transform: scale(0, 1);
}

/****************************************

pcヘッダー

*****************************************/
@media print, screen and (min-width: 768px) {
  #sp_navi, #toggle {
    display: none;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  #top_header {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #EEF1F7;
  }
  .top_header_box {
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(255, 255, 255, 0.8);
    z-index: 998;
  }
  .page_header_box {
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(255, 255, 255, 0.8);
    z-index: 998;
  }
  .page_header_box .page_logo {
    padding: 7px 0 0 50px;
  }
  .page_header_box #g_navi {
    margin-right: 160px;
  }
  .header_mail {
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
    height: 140px;
    margin-left: 50px;
    border-left: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 0 0 0 20px;
    background: #0082D1;
    transition: 0.3s;
    z-index: 999;
  }
  .header_mail a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    color: #FFF;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    letter-spacing: 0.05em;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    transition: 0.3s linear;
  }
  .header_mail a img {
    margin: 8px 0;
  }
  .header_mail:hover {
    background: #F4B800;
  }
  /* header追従+途中で消える */
  #header_wrap.UpMove {
    animation: UpAnime 0.5s forwards;
  }
  @keyframes UpAnime {
    from {
      opacity: 1;
      transform: translateY(0);
    }
    to {
      opacity: 0;
      transform: translateY(-100px);
    }
  }
  @keyframes DownAnime {
    from {
      opacity: 0;
      transform: translateY(-100px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
/****************************************

spヘッダー

*****************************************/
@media screen and (max-width: 767px) {
  img {
    width: 100%;
    height: auto;
  }
  #top_header {
    position: relative;
    width: 100%;
    height: 100svh;
    background: #EEF1F7;
  }
  .top_header_box {
    display: none;
  }
  #page_header {
    position: relative;
    width: 100%;
    height: 80px;
  }
  .page_logo {
    width: 200px;
    padding: 15px 0 0 20px;
  }
  .header_mail {
    display: none;
  }
  #toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: #0053B5;
    cursor: pointer;
    z-index: 9999;
  }
  #toggle div {
    position: relative;
  }
  #toggle span {
    display: block;
    position: absolute;
    right: 12px;
    width: 26px;
    height: 2px;
    background: #FFF;
    transition: 0.35s ease-in-out;
  }
  #toggle span:nth-child(1) {
    top: 11px;
  }
  #toggle span:nth-child(2) {
    top: 18px;
  }
  #toggle span:nth-child(3) {
    top: 25px;
  }
  #toggle::after {
    position: absolute;
    content: "MENU";
    line-height: 1.2;
    font-size: 1.1rem;
    color: #FFF;
    text-align: center;
    bottom: 4px;
    left: 0;
    width: 100%;
  }
  /*spanの絶対位置指定の親にします*/
  .open_navi #toggle {
    position: fixed;
  }
  .open_navi #toggle span {
    background: #FFF;
  }
  .open_navi #toggle span:nth-of-type(1) {
    transform: translateY(7px) rotate(-315deg);
  }
  .open_navi #toggle span:nth-of-type(2) {
    opacity: 0;
  }
  .open_navi #toggle span:nth-of-type(3) {
    transform: translateY(-7px) rotate(315deg);
  }
  #sp_navi {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100vw;
    overflow-y: scroll;
    text-align: left;
    background: rgba(0, 130, 209, 0.9);
    z-index: 999;
    transform: translateY(-100%);
    transition: 0.7s ease-in-out;
  }
  .open_navi #sp_navi {
    transform: translateY(0);
    transition: 0.7s ease-in-out;
  }
  .open_navi #wrapper {
    transform-origin: left center;
    filter: blur(3px);
    transition: 0.7s ease-in-out;
  }
  #sp_navi .menu {
    padding: 50px 20px 30px;
    text-align: center;
  }
  #sp_navi .menu .menu-item {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    background: url(images/arrow.svg) no-repeat right center;
    background-size: auto 14px;
    cursor: pointer;
    color: #FFF;
    margin: 0 auto;
    font-size: 1.6rem;
    box-sizing: border-box;
  }
  #sp_navi .menu-item a {
    display: block;
    padding: 15px 0 14px;
    font-weight: bold;
  }
  #sp_navi .menu-item a:link, #sp_navi .menu-item a:visited, #sp_navi .menu-item a:hover, #sp_navi .menu-item a:active {
    color: #FFF;
    text-decoration: none;
  }
  #sp_navi .sub-menu {
    width: 100%;
    text-align: center;
    display: none;
  }
  #sp_navi .sub-menu > li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
  #sp_navi .sub-menu > li a {
    display: block;
    padding: 11px 0 10px;
    color: #FFF;
    background: rgba(0, 96, 153, 0.8);
  }
  #sp_navi .sub-menu > li a:link, #sp_navi .sub-menu > li a:visited, #sp_navi .sub-menu > li a:hover, #sp_navi .sub-menu > li a:active {
    color: #FFF;
    text-decoration: none;
  }
  #sp_navi .sub-menu > li a:hover {
    color: #FFF;
    background: rgba(0, 96, 153, 0.65);
  }
  #sp_navi .menu-item-has-children {
    position: relative;
  }
  #sp_navi .menu-item-has-children::before {
    content: "";
    width: 14px;
    height: 14px;
    border: 0px;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    transform: rotate(135deg);
    transition: 0.2s ease-in-out;
    position: absolute;
    top: 14px;
    right: 20px;
  }
  #sp_navi .menu-item-has-children.menu_open::before {
    transform: rotate(-45deg);
    transition: 0.2s ease-in-out;
    top: 22px;
  }
  #sp_navi .sp_navi_logo {
    width: 200px;
    padding: 15px 0 0 20px;
  }
}
/****************************************

pc用 横ナビ

*****************************************/
#g_navi {
  padding-top: 9px;
}
#g_navi .menu {
  *zoom: 1;
  display: flex;
  list-style-type: none;
}
#g_navi .menu > li {
  position: relative;
  width: auto;
  height: auto;
  line-height: 1;
  text-align: center;
}
#g_navi .menu > li > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  margin: 0;
  padding: 0 30px;
  color: #222;
  font-size: 1.6rem;
  font-weight: 600;
  transition: 0.3s;
}
#g_navi .menu > li > a span {
  display: block;
  margin-top: 8px;
  color: #0082D1;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.05em;
  font-size: 1rem;
  transition: 0.3s;
}
#g_navi .menu > li > a:link, #g_navi .menu > li > a:visited {
  color: #222;
  text-decoration: none;
}
#g_navi .menu > li > a:hover, #g_navi .menu > li > a:active {
  color: rgba(34, 34, 34, 0.7);
}
#g_navi .menu > li > a:hover span, #g_navi .menu > li > a:active span {
  color: rgba(0, 127, 209, 0.7);
}
#g_navi .menu li ul {
  display: block;
  position: absolute;
  top: 100%;
  left: -10%;
  z-index: 9999;
  list-style: none;
  width: 100%;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s linear;
}
#g_navi .menu li ul li {
  width: 100%;
}
#g_navi .menu li ul li a {
  display: block;
  padding: 12px 5px;
  background: #0082D1;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  visibility: hidden;
  transition: 0.3s linear;
}
#g_navi .menu li ul li a:link, #g_navi .menu li ul li a:visited {
  color: #FFF;
}
#g_navi .menu li ul li a:hover, #g_navi .menu li ul li a:active {
  background: rgba(0, 130, 209, 0.7);
  color: #FFF;
}
#g_navi .menu li:hover ul {
  visibility: visible;
  opacity: 0.95;
}
#g_navi .menu li:hover ul li a {
  visibility: visible;
  opacity: 1;
}

/* ナビ下線用 */
@media print, screen and (min-width: 768px) {
  .menu > li > a {
    position: relative;
    display: inline-block;
    transition: 0.6s;
  }
  .menu > li > a::before,
  .menu > li > a::after {
    position: absolute;
    bottom: 0;
    content: "";
    width: 0;
    height: 2px;
    background-color: #0082D1;
    transition: 0.6s;
  }
  .menu > li > a::before {
    left: 50%;
  }
  .menu > li > a::after {
    right: 50%;
  }
  .menu > li > a:hover::before,
  .menu > li > a:hover::after {
    width: 40%;
    opacity: 0.9;
    filter: alpha(opacity=90);
  }
}
@media print, screen and (max-width: 1300px) and (min-width: 768px) {
  #g_navi .menu > li > a {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  #g_navi {
    display: none;
  }
}
/****************************************

メインビジュアル

*****************************************/
@media print, screen and (min-width: 768px) {
  #top_mv_sp {
    display: none !important;
  }
  #top_mv_pc {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
  }
  .top_mv_pc_inner {
    width: 780px !important;
    height: auto !important;
    padding-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  #top_mv_pc {
    display: none !important;
  }
  #top_mv_sp {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100svh;
  }
  .top_mv_sp_inner {
    width: 90% !important;
    height: auto !important;
  }
}
/****************************************

content 共通設定

*****************************************/
main#top_main {
  width: 100%;
}

main#page_main {
  width: 100%;
  padding-top: 70px;
  margin-bottom: 150px;
}

main#recruit_main {
  width: 100%;
  padding-top: 70px;
}

.breadcrumb_area {
  width: 1200px;
  margin: 0 auto 60px;
  text-align: right;
}
.breadcrumb_area .breadcrumb p {
  font-size: 1.4rem;
}
.breadcrumb_area .breadcrumb p a {
  color: #333;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.breadcrumb_area .breadcrumb p a::after {
  position: absolute;
  bottom: 0px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #333;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
.breadcrumb_area .breadcrumb p a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

/* 電話番号 */
a.tel_link:link, a.tel_link:visited, a.tel_link:hover, a.tel_link:active {
  color: #333;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  main#page_main {
    padding-top: 0;
    margin-bottom: 110px;
  }
  main#recruit_main {
    padding-top: 0;
  }
  .breadcrumb_area {
    width: calc(100% - 20px);
    margin: 0 10px 30px;
  }
  .breadcrumb_area .breadcrumb p {
    font-size: 1.1rem;
  }
}
/****************************************

contentトップ用

*****************************************/
/* MIFSについて */
.top_box01 {
  position: relative;
  width: 100%;
  margin-bottom: 140px;
  padding: 150px 0;
  background-color: #0082D1;
  z-index: 1;
}
.top_box01_txt {
  color: #FFF;
  text-align: center;
}

.top_box02 {
  margin-bottom: 160px;
}
.top_box02_txt {
  width: 1200px;
  margin: 0 auto 60px;
  text-align: center;
}
.top_box02_bnr {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 20px;
}
.top_box02 .top_box02_parts {
  position: relative;
  width: calc((100% - 60px) / 4);
  max-width: 465px;
  height: 640px;
  transition: 0.3s;
}
.top_box02 .top_box02_parts::before {
  position: absolute;
  content: "";
  top: 7px;
  left: 7px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 2;
}
.top_box02 .top_box02_parts figure {
  width: 100%;
  height: 640px;
  overflow: hidden;
}
.top_box02 .top_box02_parts figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s linear;
}
.top_box02 .top_box02_parts_inner {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  padding: 35px 45px 0;
  background: rgba(0, 107, 179, 0.7);
  overflow: hidden;
  transition: 0.6s ease-in-out;
  z-index: 1;
}
.top_box02 .top_box02_parts_inner h3 {
  position: relative;
  font-size: 3.4rem;
  margin-bottom: 40px;
  color: #FFF;
}
.top_box02 .top_box02_parts_inner h3 span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  font-weight: 600;
}
.top_box02 .top_box02_parts_inner h3::before {
  position: absolute;
  content: "";
  right: -10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  background: url(images/arrow_up.svg) no-repeat left top;
  background-size: contain;
  transition: 0.5s;
}
.top_box02 .top_box02_parts_inner_txt {
  color: #FFF;
  transition: 0.5s;
}
.top_box02 .top_box02_parts:hover figure img {
  transform: scale(1.15);
}
.top_box02 .top_box02_parts:hover .top_box02_parts_inner {
  padding-top: 220px;
  height: 100%;
}
.top_box02 .top_box02_parts:hover .top_box02_parts_inner h3::before {
  transform: rotate(180deg);
}

.top_box03 {
  margin-bottom: 160px;
}
.top_box03_txt {
  width: 1200px;
  margin: 0 auto 60px;
  text-align: center;
}
.top_box03_bnr {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px 0;
}
.top_box03 .top_box03_parts {
  position: relative;
  width: 100%;
  height: 640px;
  margin-inline: auto;
  transition: 0.3s;
}
.top_box03 .top_box03_parts::before {
  position: absolute;
  content: "";
  top: 7px;
  left: 7px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 2;
}
.top_box03 .top_box03_parts figure {
  width: 100%;
  height: 640px;
  overflow: hidden;
}
.top_box03 .top_box03_parts figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s linear;
}
.top_box03 .top_box03_parts_inner {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  padding: 35px 3.75% 0;
  background: rgba(0, 107, 179, 0.7);
  overflow: hidden;
  transition: 0.6s ease-in-out;
  z-index: 1;
}
.top_box03 .top_box03_parts_inner h3 {
  position: relative;
  font-size: 3.4rem;
  margin-bottom: 40px;
  color: #FFF;
}
.top_box03 .top_box03_parts_inner h3 span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  font-weight: 600;
}
.top_box03 .top_box03_parts_inner h3::before {
  position: absolute;
  content: "";
  right: -10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  background: url(images/arrow_up.svg) no-repeat left top;
  background-size: contain;
  transition: 0.5s;
}
.top_box03 .top_box03_parts_inner_txt {
  color: #FFF;
  transition: 0.5s;
}
.top_box03 .top_box03_parts:hover figure img {
  transform: scale(1.15);
}
.top_box03 .top_box03_parts:hover .top_box03_parts_inner {
  padding-top: 130px;
  height: 100%;
}
.top_box03 .top_box03_parts:hover .top_box03_parts_inner h3::before {
  transform: rotate(180deg);
}

@media print, screen and (max-width: 1460px) and (min-width: 768px) {
  .top_box02_bnr {
    gap: 0 15px;
  }
  .top_box02 .top_box02_parts {
    width: calc((100% - 45px) / 4);
    height: 520px;
  }
  .top_box02 .top_box02_parts figure {
    height: 520px;
  }
  .top_box02 .top_box02_parts_inner {
    height: 135px;
    padding: 35px 45px 0 25px;
  }
  .top_box02 .top_box02_parts_inner h3 {
    font-size: 3rem;
  }
  .top_box02 .top_box02_parts_inner h3 span {
    font-size: 1.1rem;
  }
  .top_box02 .top_box02_parts_inner h3::before {
    right: -20px;
    bottom: 5px;
  }
  .top_box02 .top_box02_parts:hover .top_box02_parts_inner {
    padding-top: 140px;
  }
  .top_box03 .top_box03_parts {
    height: 520px;
  }
  .top_box03 .top_box03_parts figure {
    height: 520px;
  }
  .top_box03 .top_box03_parts_inner {
    height: 135px;
    padding: 35px 45px 0 25px;
  }
  .top_box03 .top_box03_parts_inner h3 {
    font-size: 3rem;
  }
  .top_box03 .top_box03_parts_inner h3 span {
    font-size: 1.1rem;
  }
  .top_box03 .top_box03_parts_inner h3::before {
    right: -20px;
    bottom: 5px;
  }
  .top_box03 .top_box03_parts:hover .top_box03_parts_inner {
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .top_box01 {
    width: calc(100% + 20px);
    margin: 0 0 70px -10px;
    padding: 70px 10px;
  }
  .top_box01_txt {
    padding: 0 15px;
    text-align: left;
  }
  .top_box01_txt .sub_tit {
    text-align: center;
  }
  .top_box01 figure {
    top: 45%;
    width: 350px;
    height: auto;
  }
  .top_box02 {
    margin-bottom: 70px;
  }
  .top_box02_txt {
    width: auto;
    margin-bottom: 30px;
    padding: 0 10px;
    text-align: left;
  }
  .top_box02_bnr {
    gap: 30px 0;
  }
  .top_box02 .top_box02_parts {
    width: calc(100% - 20px);
    margin: 0 10px;
    height: 400px;
  }
  .top_box02 .top_box02_parts figure {
    height: 400px;
  }
  .top_box02 .top_box02_parts_inner {
    height: 90px;
    padding: 20px 25px 0;
  }
  .top_box02 .top_box02_parts_inner h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  .top_box02 .top_box02_parts_inner h3 span {
    margin-bottom: 0;
    font-size: 1.2rem;
  }
  .top_box02 .top_box02_parts:hover .top_box02_parts_inner {
    padding-top: 130px;
  }
  .top_box03 {
    margin-bottom: 70px;
  }
  .top_box03_txt {
    width: auto;
    margin-bottom: 30px;
    padding: 0 10px;
    text-align: left;
  }
  .top_box03_bnr {
    gap: 30px 0;
  }
  .top_box03 .top_box03_parts {
    width: 100%;
    margin: 0 10px;
  }
  .top_box03 .top_box03_parts_inner {
    height: 90px;
    padding: 20px 25px 0;
  }
  .top_box03 .top_box03_parts_inner h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  .top_box03 .top_box03_parts_inner h3 span {
    margin-bottom: 0;
    font-size: 1.2rem;
  }
  .top_box03 .top_box03_parts:hover .top_box03_parts_inner {
    padding-top: 20px;
  }
}
@media screen and (max-width: 365px) {
  .top_box03 .top_box03_parts {
    height: 700px;
  }
  .top_box03 .top_box03_parts figure {
    height: 700px;
  }
}
/****************************************

news トップ用

*****************************************/
.news_box {
  padding: 150px calc((100% - 1200px) / 2) 230px;
  background: #EEF1F7;
}
.news_box .news_post {
  height: 300px;
  overflow-y: scroll;
}

.news_list {
  display: flex;
  align-items: flex-start;
  gap: 0 30px;
  position: relative;
  width: auto;
  margin-right: 20px;
  padding: 35px 20px 30px;
  border-bottom: 1px solid #C8C4C5;
  transition: 0.3s linear;
}
.news_list .news_list_left {
  display: flex;
  align-items: center;
  gap: 0 30px;
  width: 220px;
}
.news_list .news_list_left .date {
  display: block;
  color: #848484;
  font-size: 1.5rem;
}
.news_list .news_list_left .cat {
  width: 100px;
  padding: 7px 0;
  border-radius: 100vmax;
  color: #FFF;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
}
.news_list .news_list_left .bg_news {
  background: #0082D1;
}
.news_list .news_list_left .bg_ntt {
  background: #3AC08E;
}
.news_list .news_list_left .bg_dc {
  background: #0053B5;
}
.news_list .news_list_left .bg_recruit {
  background: #F4B800;
}
.news_list .news_list_right {
  width: calc(100% - 250px);
}
.news_list .news_list_right h3 {
  margin-bottom: 15px;
  color: #222;
  font-weight: bold;
  font-size: 1.8rem;
}
.news_list .news_list_right p {
  font-size: 1.4rem;
}

/* タブcss */
.tab_area_wrap {
  position: relative;
}

.tab__btn {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
}

.tab__name {
  display: block;
  color: #006099;
  background-color: #B8DAF2;
  font-size: 1.8rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 12px 12px 0 0;
  border: 2px solid #93D0F5;
  border-bottom: none;
  height: 60px;
  line-height: 60px;
  box-sizing: border-box;
  width: 24.5%;
  text-align: center;
}

.tab__name.is-active {
  color: #222;
  opacity: 1;
  transition: 0.3s ease;
  background-color: #FFF;
  border: 2px solid #93D0F5;
  border-bottom: none;
}

.tab__content {
  display: none;
  padding: 50px;
  border-right: 2px solid #93D0F5;
  border-bottom: 2px solid #93D0F5;
  border-left: 2px solid #93D0F5;
  border-radius: 0 0 20px 20px;
  background: #FFF;
}

.tab__content.is-show {
  display: block;
}

@media screen and (max-width: 767px) {
  .news_box {
    padding: 70px 10px 110px;
  }
  .news_list {
    flex-direction: column;
    gap: 10px 0;
    margin-right: 15px;
    padding: 20px 10px;
  }
  .news_list .news_list_left {
    gap: 0 20px;
    width: 100%;
  }
  .news_list .news_list_left .date {
    font-size: 1.4rem;
  }
  .news_list .news_list_left .cat {
    padding: 5px 0;
    font-size: 1.2rem;
  }
  .news_list .news_list_right {
    width: 100%;
  }
  .news_list .news_list_right h3 {
    margin-bottom: 7px;
    font-size: 1.6rem;
  }
  .news_list .news_list_right p {
    font-size: 1.3rem;
  }
  /* タブcss */
  .tab__btn {
    top: -40px;
  }
  .tab__name {
    font-size: 1.4rem;
    border-radius: 12px 12px 0 0;
    height: 40px;
    line-height: 40px;
    width: 24.5%;
  }
  .tab__content {
    padding: 20px 15px;
    border-radius: 0 0 12px 12px;
    background: #FFF;
  }
}
@media screen and (max-width: 365px) {
  .tab__name {
    font-size: 1.2rem;
  }
}
/****************************************

content下層用

*****************************************/
/* フレックス設定 */
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flex_r {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}

.width_1200 {
  width: 1200px;
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .flex figure,
  .flex_r figure {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .width_1200 {
    width: calc(100% - 20px);
    margin: 0 10px;
  }
}
/* 採用情報 */
.recruit_box {
  padding: 200px 20px 150px;
  background: url(images/recruit_bg.jpg) no-repeat center top #EEF1F7;
}
.recruit_box_inner {
  max-width: 1480px;
  margin-inline: auto;
  padding: 100px 0;
  background: #FFF;
}
.recruit_box_inner_txt {
  margin-bottom: 45px;
  text-align: center;
}
.recruit_box_inner_merit {
  display: flex;
  justify-content: space-between;
  width: 1200px;
  margin: 0 auto 60px;
}
.recruit_box_inner_merit li {
  width: 400px;
  padding: 10px 40px;
}
.recruit_box_inner_merit li figure {
  margin-bottom: 20px;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .recruit_box_inner_merit li:not(:last-child) {
    border-right: 1px solid #BDBFCE;
  }
}
.recruit_box_inner_btn {
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .recruit_box {
    padding: 70px 15px;
    background-size: 200%;
  }
  .recruit_box_inner {
    padding: 40px 20px;
  }
  .recruit_box_inner_txt {
    margin-bottom: 30px;
    text-align: left;
  }
  .recruit_box_inner_merit {
    flex-direction: column;
    width: 100%;
    margin-bottom: 30px;
  }
  .recruit_box_inner_merit li {
    width: 100%;
    padding: 0 0 20px;
  }
  .recruit_box_inner_merit li figure {
    margin-bottom: 15px;
  }
  .recruit_box_inner_merit li figure img {
    width: auto;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .recruit_box_inner_merit li:not(:last-child) {
    margin-bottom: 25px;
    border-bottom: 1px solid #BDBFCE;
  }
}
@media screen and (max-width: 767px) {
  .recruit_box_inner_btn {
    margin-inline: auto;
  }
}
/* お問い合わせ */
.contact_box {
  text-align: center;
}

.privacy_policy {
  padding: 50px;
  background: #EEF1F7;
}
.privacy_policy dt {
  margin-bottom: 10px;
  color: #005F99;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
.privacy_policy dd {
  font-size: 1.5rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contact_box {
    text-align: left;
  }
  .contact_box_tel {
    margin-top: 15px;
    font-size: 2.4rem;
  }
  .contact_box_tel span {
    font-size: 1.8rem;
  }
  .privacy_policy {
    padding: 30px 15px;
  }
  .privacy_policy dt {
    margin-bottom: 5px;
    font-size: 1.6rem;
  }
  .privacy_policy dd {
    font-size: 1.4rem;
    text-align: left;
  }
  .form {
    margin-bottom: -50px;
  }
}
/****************************************

aside

*****************************************/
.brand-cover {
  padding: 80px calc((100% - 1200px) / 2);
  background: #0082D1;
}

.bottom_box {
  display: flex;
  position: relative;
  z-index: 2;
}
.bottom_box li {
  width: 33.3333333333%;
}
@media print, screen and (min-width: 768px) {
  .bottom_box li:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.4);
  }
}
.bottom_box li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: 0.3s;
}
.bottom_box li a figure {
  margin-bottom: 20px;
  transition: 0.3s;
}
.bottom_box li a p {
  position: relative;
  color: #FFF;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  z-index: 1;
}
.bottom_box li a p span {
  display: block;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.05em;
  font-size: 1.3rem;
  font-weight: 600;
  transition: 0.3s;
}
.bottom_box li a:link, .bottom_box li a:visited, .bottom_box li a:hover, .bottom_box li a:active {
  text-decoration: none;
}
.bottom_box li a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  #brand_area {
    padding: 50px 0;
  }
  .bottom_box {
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
  }
  .bottom_box li {
    width: 100%;
    padding: 0 0 0 10px;
    background: url(images/arrow.svg) no-repeat right 10px top 20px;
  }
  .bottom_box li:not(:last-child) {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
  .bottom_box li a {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0 25px;
    text-align: left;
  }
  .bottom_box li a figure {
    width: 50px;
    margin: 0;
    text-align: center;
  }
  .bottom_box li a figure img {
    height: 46px;
  }
  .bottom_box li a p {
    font-size: 1.8rem;
  }
  .bottom_box li a p span {
    margin-bottom: 7px;
    font-size: 1.2rem;
  }
}
/****************************************

テーブル

*****************************************/
.overview_table {
  width: 100%;
  border-collapse: collapse;
}
.overview_table tr {
  display: flex;
  justify-content: space-between;
}
.overview_table th, .overview_table td {
  display: block;
  vertical-align: middle;
}
.overview_table th {
  width: 25%;
  padding: 32px 0;
  border-bottom: 2px solid #0082D1;
  color: #005F99;
  font-weight: bold;
  text-align: center;
}
.overview_table td {
  width: 74.5%;
  padding: 32px;
  border-bottom: 1px solid #CCC;
}
.overview_table td .map {
  margin: 15px 0;
  border: 1px solid #96B9CD;
}
.overview_table td .map img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .overview_table tr {
    flex-direction: column;
  }
  .overview_table th {
    width: 100%;
    padding: 18px 10px 0 10px;
    border-bottom: none;
    font-size: 1.6rem;
    text-align: left;
  }
  .overview_table td {
    width: 100%;
    padding: 0 10px 18px 10px;
    border-bottom: 2px solid #0082D1;
  }
}
/****************************************

ボタン

*****************************************/
.btn01 {
  width: 300px;
  border-radius: 8px;
  background: #0082D1;
  transition: 0.3s linear;
}
.btn01 a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  padding: 16px 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  color: #FFF;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  transition: 0.3s linear;
}
.btn01 a::before, .btn01 a::after {
  position: absolute;
  content: "";
  margin: auto;
  transition: 0.3s linear;
}
.btn01 a::before {
  right: 22px;
  bottom: calc(48% - 7px);
  width: 10px;
  height: 10px;
  border-top: 1px solid #FFF;
  transform: rotate(30deg);
}
.btn01 a::after {
  right: 20px;
  bottom: 48%;
  width: 20px;
  height: 6px;
  border-bottom: 1px solid #FFF;
}
.btn01:hover {
  background: #F4B800;
}
.btn01:hover a::before {
  right: 17px;
}
.btn01:hover a::after {
  right: 15px;
}

.recruit_box_inner_btn {
  position: relative;
  width: 480px;
  border-radius: 8px;
  background: #0082D1;
  text-align: center;
  transition: 0.3s linear;
}
.recruit_box_inner_btn a {
  display: inline-block;
  text-decoration: none;
  padding: 17px 0 15px;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  color: #FFF;
  font-size: 2.2rem;
  font-weight: bold;
  transition: 0.3s linear;
}
.recruit_box_inner_btn a span {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.recruit_box_inner_btn a::before {
  position: absolute;
  content: "";
  top: 0;
  right: 20px;
  bottom: 0;
  width: 34px;
  height: 34px;
  margin-block: auto;
  background: url(images/circle_arrow.svg) no-repeat;
  background-size: contain;
  transition: 0.3s linear;
}
.recruit_box_inner_btn:hover {
  background: #F4B800;
}
.recruit_box_inner_btn:hover a::before {
  right: 15px;
}

@media screen and (max-width: 767px) {
  .btn01 {
    width: 260px;
    border-radius: 6px;
  }
  .btn01 a {
    font-size: 1.4rem;
  }
  .recruit_box_inner_btn {
    width: 100%;
    border-radius: 6px;
  }
  .recruit_box_inner_btn a {
    padding: 17px 0 15px;
    font-size: 1.8rem;
  }
  .recruit_box_inner_btn a span {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
  }
  .recruit_box_inner_btn a::before {
    display: none;
  }
  .recruit_box_inner_btn:hover a::before {
    right: 10px;
  }
}
/****************************************

txt設定

*****************************************/
.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb100 {
  margin-bottom: 100px;
}

.mt30 {
  margin-top: 30px;
}

.ml15 {
  margin-left: 15px;
}

@media screen and (max-width: 767px) {
  .mb80, .mb90, .mb100 {
    margin-bottom: 70px;
  }
}
/****************************************

P

*****************************************/
/* 改行 */
.line_break {
  padding-top: 30px;
}

@media print, screen and (min-width: 768px) {
  .br-pc {
    display: block;
  }
  .br-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .br-pc {
    display: none;
  }
  .br-sp {
    display: block;
  }
}
/* 強調 */
.bold {
  font-weight: bold;
}

.big {
  font-size: 1.8rem;
}

.red {
  color: #C11C34;
}

.blue {
  color: #006099;
}

.sub {
  color: #555;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .big {
    font-size: 1.6rem;
  }
  .sub {
    font-size: 1.3rem;
  }
}
/* 位置 */
@media print, screen and (min-width: 768px) {
  .align_center {
    margin-right: auto;
    margin-left: auto;
  }
  .txt_center {
    text-align: center;
  }
}
/****************************************

トップページタイトル

*****************************************/
.top_headline {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  color: #FFF;
  font-size: 3.4rem;
}
.top_headline img {
  margin-right: 15px;
}

.top_subhead01 {
  margin-bottom: 55px;
  padding-bottom: 30px;
  background: url(images/h2_top_subhead01.svg) no-repeat center bottom;
  font-size: 4.4rem;
  font-weight: bold;
  letter-spacing: 0.18rem;
  text-align: center;
}
.top_subhead01 .en {
  display: block;
  margin-bottom: 5px;
  color: #0082D1;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 1;
}

.top_news_tit {
  display: flex;
  align-items: baseline;
  gap: 0 18px;
  position: relative;
  margin-bottom: 110px;
}
.top_news_tit h2 {
  position: relative;
  z-index: 1;
  color: #006099;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.05em;
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 0 5px #EEF1F7, 0 0 5px #EEF1F7, 0 0 5px #EEF1F7, 0 0 5px #EEF1F7, 0 0 5px #EEF1F7, 0 0 5px #EEF1F7, 0 0 5px #EEF1F7, 0 0 5px #EEF1F7;
}
.top_news_tit h2 .jp {
  margin-left: 15px;
  color: #222;
  font-family: "M PLUS 1", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
}
.top_news_tit::before {
  position: absolute;
  content: "";
  top: -60px;
  left: -160px;
  width: 137px;
  height: 190px;
  background: url(images/news_img.png) no-repeat left top;
  background-size: contain;
}

@media print, screen and (max-width: 1240px) and (min-width: 768px) {
  .top_news_tit::before {
    left: -30px;
  }
}
@media screen and (max-width: 767px) {
  .top_headline {
    flex-wrap: wrap;
    margin-bottom: 30px;
    font-size: 2.2rem;
  }
  .top_headline img {
    width: 200px;
    margin-right: 8px;
  }
  .top_subhead01 {
    margin-bottom: 30px;
    padding-bottom: 20px;
    font-size: 2.6rem;
  }
  .top_subhead01 .en {
    margin-bottom: 3px;
    font-size: 1.2rem;
  }
  .top_news_tit {
    gap: 0 15px;
    margin-bottom: 65px;
  }
  .top_news_tit h2 {
    font-size: 3.4rem;
    text-shadow: 0 0 2px #EEF1F7, 0 0 2px #EEF1F7;
  }
  .top_news_tit h2 .jp {
    margin-left: 10px;
    font-size: 1.4rem;
  }
  .top_news_tit::before {
    top: -40px;
    right: 0;
    left: auto;
    width: 90px;
    height: 125px;
  }
}
/****************************************

下層ページタイトル

*****************************************/
.headline {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 280px;
  margin-bottom: 30px;
  background: url(images/headline_bg.jpg) no-repeat center left 50px;
  background-size: cover;
  text-align: center;
}
.headline h1 {
  position: relative;
  font-size: 5rem;
  letter-spacing: 0.08em;
  z-index: 2;
}
.headline .en {
  position: absolute;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.05em;
  font-size: 13rem;
  font-weight: 800;
  mix-blend-mode: overlay;
  z-index: 1;
}

.subhead01 {
  margin-bottom: 45px;
  padding-bottom: 30px;
  background: url(images/h2_top_subhead01.svg) no-repeat center bottom;
  text-align: center;
}

.recruit_box_inner_merit li h3 {
  margin-bottom: 20px;
  color: #005F99;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .headline {
    height: 150px;
    margin-bottom: 20px;
    background-position: center left;
  }
  .headline h1 {
    font-size: 2.6rem;
  }
  .headline .en {
    font-size: 5.4rem;
  }
  h2.subhead01 {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .recruit_box_inner_merit li h3 {
    margin-bottom: 13px;
  }
}
/****************************************

footer

*****************************************/
.footer_box {
  position: relative;
  margin: 60px 0 50px;
  text-align: center;
}
.footer_box .footer_logo {
  margin-bottom: 25px;
}
.footer_box p {
  font-size: 1.5rem;
}

.copyright {
  display: block;
  padding: 8px 0;
  background: #006099;
  color: #FFF;
  font-size: 1.4rem;
  text-align: center;
}

@media print, screen and (min-width: 768px) {
  .pagetop {
    position: fixed;
    right: 40px;
    bottom: 40px;
    width: 100px;
    height: 100px;
    z-index: 999;
    padding: 8px;
    background: #FFF;
    border-radius: 100vmax;
  }
  .pagetop a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
  }
  .pagetop .page-top-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 1;
    transition: opacity 0.3s ease;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .pagetop .page-top-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 17px;
    text-align: center;
    z-index: 1;
  }
  /* 回転用アニメーション */
  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .pagetop a:hover .page-top-circle {
    opacity: 0.7;
    animation: rotate 1.5s linear infinite;
  }
  .js-page-top {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .js-page-top.is-shown {
    opacity: 1;
    pointer-events: auto;
  }
  .sp_bnr {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  footer {
    padding-bottom: 50px;
  }
  .pagetop {
    display: none !important;
  }
  .footer_box {
    margin: 40px 0 30px;
  }
  .footer_box .footer_logo {
    width: 220px;
    margin: 0 auto 15px;
  }
  .footer_box p {
    font-size: 1.4rem;
  }
  .copyright {
    padding: 8px 0;
    font-size: 1.2rem;
  }
  .sp_bnr {
    display: flex;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    height: 50px;
    bottom: 0;
    left: 0;
    z-index: 99;
  }
  .sp_bnr .sp_bnr_parts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 33.3333333333%;
    background: #0082D1;
    border-top: 1px solid rgba(255, 255, 255, 0.8);
  }
  .sp_bnr .sp_bnr_parts:last-child {
    background: #F4B800;
  }
  .sp_bnr .sp_bnr_parts:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.8);
  }
  .sp_bnr .sp_bnr_parts > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
  }
  .sp_bnr .sp_bnr_parts img {
    width: 20px;
    height: 20px;
    margin-bottom: 7px;
  }
  .sp_bnr .sp_bnr_parts p {
    color: #FFF;
    font-size: 1.1rem;
    line-height: 1;
    text-align: center;
  }
}
/****************************************

Contact Form7

*****************************************/
/* フォームカラー */
.wpcf7 {
  width: 100%;
}

.wpcf7-form textarea {
  width: 100%;
  /*本文*/
  max-width: 100%;
  padding: 3px 5px;
  border: 1px solid rgba(154, 139, 120, 0.5);
  border-radius: 3px;
  transition: 0.3s;
}
.wpcf7-form select {
  width: auto;
  padding: 3px 5px;
  border: 1px solid rgba(154, 139, 120, 0.5);
  border-radius: 3px;
  transition: 0.3s;
}
.wpcf7-form input {
  padding: 10px;
  border: 1px solid rgba(154, 139, 120, 0.5);
  border-radius: 3px;
  transition: 0.3s;
  /*ラジオボタン、チェックボタン*/
}

/* 送信ボタン */
.wpcf7 .tc input[type=submit] {
  cursor: pointer;
  width: 410px;
  max-width: 100%;
  padding: 18px;
  box-shadow: none;
  border: none;
  border-radius: 8px;
  background-color: #0082D1;
  color: #fff;
  font-family: "M PLUS 1", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 18px;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.25s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-top: 30px;
}

.wpcf7 .tc input[type=submit]:disabled {
  cursor: not-allowed;
  background-color: #f8f8f8 !important;
  color: #929292 !important;
}
.wpcf7 .tc input[type=submit]:hover {
  background-color: #F4B800;
  color: #fff;
  transition: all 0.25s;
}
.wpcf7 .tc input[type=submit]:focus {
  outline: 0;
}

.wpcf7-text {
  width: 100%;
}

.form_row {
  display: flex;
  margin-bottom: 30px;
  padding: 0 20px 30px 20px;
  border-bottom: 1px dotted #ccc;
}
.form_row .form_label {
  width: 250px;
}
.form_row .form_label .required {
  display: inline-block;
  color: #fff;
  font-weight: normal;
  font-size: 1.2rem;
  padding: 0 4px;
  background: #cc0000;
  margin-right: 10px;
  border-radius: 3px;
}
.form_row .form_label .any {
  display: inline-block;
  color: #797979;
  font-weight: normal;
  font-size: 1.2rem;
  padding: 0 4px;
  background: #d7d7d7;
  margin-right: 10px;
  border-radius: 3px;
}
.form_row .form_input {
  width: calc(100% - 250px);
}
.form_row .form_input_post {
  width: 180px;
}
.form_row .form_input_post_txt {
  color: #b20000;
  font-weight: normal;
  font-size: 1.3rem;
}

.form_row.last_row {
  padding-bottom: 0;
  border-bottom: none;
}

.wpcf7 .form_input_post input[type=tel],
.wpcf7 .form_input input[type=email],
.wpcf7 .form_input input[type=tel],
.wpcf7 .form_input input[type=text],
.wpcf7 .form_input_post input[type=text],
.wpcf7 .form_input textarea {
  position: relative;
  border-left: 2px solid #0082D1;
}

.seireki input[type=text] {
  width: 130px;
  margin: 0 10px;
}

.month input[type=text] {
  width: 60px;
  margin: 0 10px;
}

.old {
  margin-left: 30px;
}
.old input[type=text] {
  width: 60px;
  margin: 0 10px;
}

.tc {
  text-align: center;
}

/* フォームの装飾ここから */
/* チェックボックス */
.wpcf7 .form_input input[type=checkbox] {
  display: none;
}
.wpcf7 .form_input input[type=checkbox] + span {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0 1em 0 1.8em;
  font-size: inherit;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}
.wpcf7 .form_input input[type=checkbox] + span:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.24em;
  height: 1.24em;
  border: 1px solid #0082D1;
  border-radius: 4px;
  background-color: #fefefe;
  box-sizing: border-box;
}
.wpcf7 .form_input input[type=checkbox] + span:after {
  content: "";
  opacity: 0;
  display: block;
  position: absolute;
  top: 0.15em;
  left: 0.44em;
  width: 0.4em;
  height: 0.8em;
  border-bottom: 3px solid #0082D1;
  border-right: 3px solid #0082D1;
  box-sizing: border-box;
  transform: rotate(40deg);
  transition: opacity 0.25s ease;
}
.wpcf7 .form_input input[type=checkbox]:checked + span {
  color: #6c5d2f;
  transition: all 0.25s ease;
}
.wpcf7 .form_input input[type=checkbox]:checked + span:before {
  opacity: 1;
  border: 1px solid #0082D1;
  box-shadow: 0 0 2px 2px rgba(0, 130, 209, 0.5);
  background-color: #0082D1;
  transition: opacity 0.25s ease;
}
.wpcf7 .form_input input[type=checkbox]:checked + span:after {
  opacity: 1;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: opacity 0.25s ease;
}

/* ラジオボタン */
.wpcf7 .form_input input[type=radio] {
  display: none;
}
.wpcf7 .form_input input[type=radio] + span {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0 1em 0 1.8em;
  font-size: inherit;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}
.wpcf7 .form_input input[type=radio] + span:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 1em;
  height: 1em;
  border: 1px solid #0082D1;
  border-radius: 50%;
  background-color: #fefefe;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}
.wpcf7 .form_input input[type=radio] + span:after {
  content: "";
  display: block;
  opacity: 0;
  position: absolute;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}
.wpcf7 .form_input input[type=radio]:checked + span:before {
  box-shadow: 0 0 2px 2px rgba(0, 130, 209, 0.5);
}
.wpcf7 .form_input input[type=radio]:checked + span:after {
  opacity: 1;
  top: 0.3em;
  left: 0;
  width: 1em;
  height: 1em;
  background-color: #0082D1;
  border-radius: 50%;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}

.wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 20px;
}

span.wpcf7-list-item {
  display: block;
  margin-left: 0;
}

/* セレクト */
.wpcf7 .form_input span.select-wrap {
  position: relative;
  width: 250px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.wpcf7 .form_input span.select-wrap:after {
  content: "";
  pointer-events: none;
  position: absolute;
  display: block;
  width: 0.6em;
  height: 0.6em;
  top: 50%;
  right: 0.8em;
  margin-top: -3px;
  border-bottom: 1px solid #0082D1;
  border-right: 1px solid #0082D1;
  transform: rotate(45deg) translateY(-50%);
  transform-origin: 50% 0;
  box-sizing: border-box;
}
.wpcf7 .form_input span.select-wrap:focus-within::after {
  border-bottom: 1px solid #0082D1;
  border-right: 1px solid #0082D1;
}

.wpcf7 .form_input select {
  cursor: pointer;
  width: 250px;
  max-width: 100%;
  margin: 0;
  padding: 0.5em 3.5em 0.5em 1em;
  border: 1px solid #0082D1;
  border-radius: 4px;
  box-shadow: none;
  background-color: #fefefe;
  background-image: linear-gradient(90deg, rgba(0, 130, 209, 0.7), rgba(0, 130, 209, 0.7));
  background-position: 100% 0;
  background-size: 2em 3.5em;
  background-repeat: no-repeat;
  color: inherit;
  font-size: inherit;
  line-height: 1;
  box-sizing: border-box;
  transition: border-color 0.2s ease, outline 0.2s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
}
.wpcf7 .form_input select:-ms-expand {
  display: none;
}

.wpcf7 .form_input span.select-wrap {
  position: relative;
  width: 250px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.wpcf7 .form_input span.select-wrap:after {
  content: "";
  pointer-events: none;
  position: absolute;
  display: block;
  width: 0.6em;
  height: 0.6em;
  top: 60%;
  right: 0.8em;
  margin-top: -3px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  transform-origin: 50% 0;
  box-sizing: border-box;
}

/* テキストフィールド フォーカス時 */
.wpcf7 .form_input input[type=text]:focus,
.wpcf7 .form_input input[type=tel]:focus,
.wpcf7 .form_input input[type=email]:focus,
.wpcf7 .form_input input[type=url]:focus,
.wpcf7 .form_input input[type=date]:focus,
.wpcf7 .form_input input[type=number]:focus,
.wpcf7 .form_input_post input[type=text]:focus,
.wpcf7 .form_input textarea:focus,
.wpcf7 .form_input_post input[type=tel]:focus {
  outline: 0;
  border: 1px #6c5d2f solid;
  box-shadow: 0 0 1px 1px rgba(0, 130, 209, 0.3);
}

.wpcf7 .form_input select:focus {
  outline: 0;
  border: 1px #6c5d2f solid;
  box-shadow: 0 0 1px 1px rgba(0, 130, 209, 0.3);
}

.wpcf7-response-output {
  font-size: 1.4em;
}

.wpcf7 .ajax-loader {
  display: block;
  margin: 15px auto 0;
}

@media screen and (max-width: 767px) {
  .wpcf7-form textarea {
    width: 100% !important;
    /*本文*/
  }
  .wpcf7-form input {
    max-width: 100% !important;
    /*ラジオボタン、チェックボタン*/
  }
  .wpcf7-submit {
    width: 100%;
  }
  .form_row {
    flex-direction: column;
    padding: 0 0 30px;
  }
  .form_row .form_label {
    width: 100%;
    margin-bottom: 10px;
  }
  .form_row .form_input {
    width: 100%;
  }
  .seireki input[type=text] {
    width: 75px;
    margin: 0 5px;
  }
  .month input[type=text] {
    width: 45px;
    margin: 0 5px;
  }
  .old {
    display: block;
    margin-left: 0;
    margin-top: 10px;
  }
  .old input[type=text] {
    width: 45px;
    margin: 0 10px;
  }
  .wpcf7-radio .wpcf7-list-item {
    margin-left: 0;
    display: block;
  }
  .ajax-loader {
    width: auto;
  }
}
/****************************************

clearfix

*****************************************/
.clearfix {
  display: inline-block;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

/* Hides from IE Mac */
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* End Hack *//*# sourceMappingURL=style.css.map */