/* base */
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+2:wght@100..900&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/
   v5.0.2 | 20191019
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}

body {
  line-height: 1;
}

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

blockquote, q {
  quotes: none;
}

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

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

body {
  position: relative;
  color: #000;
  font-family: "M PLUS 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
}

img {
  max-width: 100%;
}

a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}

@media all and (max-width:767px) {
  .for_pc {
    display: none;
  }
}
@media all and (min-width:768px) {
  .for_sp {
    display: none;
  }
}

@media all and (min-width:768px) {
  a[href^=tel] {
    pointer-events: none;
  }
}
/* mixin */
/* header */
header {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
header .logo {
  margin-left: 30px;
  width: 700px;
}
@media all and (min-width:1260px) and (max-width:1700px) {
  header .logo {
    width: 600px;
  }
}
header .logo a {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
}
header .logo a .mark {
  margin-top: 15px;
  width: 75px;
}
header .logo a .text {
  margin-left: 15px;
}
header .logo a .text .catch {
  color: #555;
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 1.2;
}
header .logo a .text h1 {
  font-size: 27px;
  font-weight: 700;
}
@media all and (min-width:1260px) and (max-width:1700px) {
  header .logo a .mark {
    margin-top: 10px;
    width: 60px;
  }
  header .logo a .text {
    margin-left: 10px;
  }
  header .logo a .text .catch {
    font-size: 11px;
  }
  header .logo a .text h1 {
    font-size: 22px;
  }
}
header .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
header .menu nav {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .menu nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .menu nav ul li a {
  position: relative;
  display: block;
  padding: 20px;
  color: #000;
  font-size: 16px;
  font-weight: 700;
}
@media all and (min-width:1260px) and (max-width:1700px) {
  header .menu nav ul li a {
    padding: 15px 1vw;
    font-size: 14px;
  }
}
header .menu nav ul li a:hover {
  color: #999;
}
header .menu nav ul li a::after {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: calc(50% - 25px);
  width: 50px;
  height: 3px;
  background: #00015b;
}
header .menu .tel {
  margin: 0 30px;
  width: 290px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
}
@media all and (min-width:1260px) and (max-width:1700px) {
  header .menu .tel {
    margin: 0 1.5vw;
    width: 16vw;
  }
}
header .menu .tel .address {
  margin-bottom: 10px;
  font-size: 14px;
}
header .menu .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 305px;
  margin-right: 30px;
}
@media all and (min-width:1260px) and (max-width:1700px) {
  header .menu .btns {
    width: 16vw;
  }
}
header .menu .btns li a {
  display: block;
  width: 150px;
  height: 85px;
  padding-top: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
@media all and (min-width:1260px) and (max-width:1700px) {
  header .menu .btns li a {
    width: 7.875vw;
  }
}
header .menu .btns li a:hover {
  opacity: 0.75;
}
header .menu .btns li:nth-of-type(1) a {
  background: url("../img/common/icon_recruit.png") no-repeat #eb6848;
}
header .menu .btns li:nth-of-type(2) a {
  background: url("../img/common/icon_mail.png") no-repeat #d5356c;
}
header .menu .btns li:nth-of-type(1) a, header .menu .btns li:nth-of-type(2) a {
  background-position: top 16px center;
  background-size: 24px auto;
}
@media all and (min-width:768px) and (max-width:1259px) {
  header {
    height: 8vw;
  }
  header .logo {
    margin-left: 1vw;
    width: 51vw;
  }
  header .logo a {
    height: 8vw;
  }
  header .logo a .mark {
    margin-top: 1vw;
    width: 4.5vw;
  }
  header .logo a .text {
    margin-left: 0.5vw;
  }
  header .logo a .text .catch {
    margin-bottom: 0.5vw;
    font-size: 1vw;
  }
  header .logo a .text h1 {
    font-size: 1.95vw;
  }
  header .menu nav {
    height: 8vw;
  }
  header .menu nav ul li a {
    padding: 1vw;
    font-size: 1.25vw;
  }
  header .menu nav ul li a::after {
    left: calc(50% - 2vw);
    width: 4vw;
    height: 0.25vw;
  }
  header .menu .tel {
    margin: 0 1vw;
    width: 15vw;
    height: 8vw;
  }
  header .menu .tel .address {
    margin-bottom: 0.5vw;
    font-size: 1vw;
  }
  header .menu .btns {
    width: 18vw;
    margin-right: 0;
  }
  header .menu .btns li a {
    width: 9vw;
    height: 8vw;
    padding-top: 5vw;
    font-size: 1.25vw;
  }
  header .menu .btns li:nth-of-type(1) a, header .menu .btns li:nth-of-type(2) a {
    background-position: top 1.5vw center;
    background-size: 2vw auto;
  }
}
@media all and (max-width:767px) {
  header {
    display: block;
    height: 60px;
  }
  header .logo {
    margin-left: 4vw;
    width: 77.5%;
  }
  header .logo a {
    height: 60px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  header .logo a .mark {
    margin-top: 5px;
    width: min(13.333vw, 60px);
  }
  header .logo a .text {
    margin-left: 2vw;
  }
  header .logo a .text .catch {
    margin-bottom: 3px;
    font-size: min(2.25vw, 11px);
  }
  header .logo a .text h1 {
    font-size: min(3.875vw, 20px);
  }
  header .menu {
    display: block;
    width: 100%;
    background: #fff;
    padding-bottom: 30px;
  }
  header .menu nav {
    height: auto;
    display: block;
  }
  header .menu nav ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 20px 0 5px;
  }
  header .menu nav ul li {
    margin-bottom: 15px;
    text-align: center;
  }
}
@media all and (max-width:767px) and (max-width:479px) {
  header .menu nav ul {
    padding: 5px 0;
  }
  header .menu nav ul li {
    margin-bottom: 10px;
    width: 100%;
  }
}
@media all and (max-width:767px) {
  header .menu .tel {
    margin: 20px auto;
    height: auto;
    display: block;
  }
  header .menu .tel .address {
    margin-bottom: 10px;
    font-size: 14px;
  }
  header .menu .btns {
    width: 290px;
    margin: 0 auto;
  }
  header .menu .btns li a {
    width: 140px;
    height: 60px;
    padding-top: 36px;
  }
  header .menu .btns li:nth-of-type(1) a, header .menu .btns li:nth-of-type(2) a {
    background-position: top 10px center;
    background-size: 20px auto;
  }
}

/*----- nav -----*/
@media all and (min-width:768px) {
  .sp_menu {
    display: block !important;
    width: 100%;
  }
  .spbtn {
    display: none !important;
  }
}
@media all and (max-width:767px) {
  .spbtn {
    position: absolute;
    top: 10px;
    right: 4vw;
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
  .spbtn > div {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .spbtn > div:nth-of-type(1) {
    top: 8px;
  }
  .spbtn > div:nth-of-type(3) {
    top: 32px;
  }
  .spbtn.active > div {
    top: 50%;
    -webkit-transform: rotate(37.5deg);
            transform: rotate(37.5deg);
  }
  .spbtn.active > div:nth-of-type(2) {
    display: none;
  }
  .spbtn.active > div:nth-of-type(3) {
    top: 50%;
    -webkit-transform: rotate(-37.5deg);
            transform: rotate(-37.5deg);
  }
}
/* footer */
footer {
  padding: 60px 0 0;
  background: #00015b;
  color: #fff;
}
@media all and (min-width:768px) and (max-width:1259px) {
  footer {
    padding: 40px 0 0;
  }
}
footer a {
  color: #fff;
}
footer .frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
}
@media all and (max-width:1024px) {
  footer .frame {
    margin-bottom: 40px;
  }
}
footer .frame .info {
  width: 59%;
}
footer .frame .info .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .frame .info .logo a .mark {
  width: 75px;
}
footer .frame .info .logo a .text {
  width: calc(100% - 75px - 10px);
}
footer .frame .info .logo a .text .catch {
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.25;
}
footer .frame .info .logo a .text h1 {
  font-size: 24px;
  font-weight: 700;
}
@media all and (min-width:768px) and (max-width:1259px) {
  footer .frame .info .logo a .mark {
    width: 7.5vw;
  }
  footer .frame .info .logo a .text {
    width: calc(100% - 9vw);
  }
  footer .frame .info .logo a .text .catch {
    margin-bottom: 1vw;
    font-size: 1.5vw;
  }
  footer .frame .info .logo a .text h1 {
    font-size: 3vw;
  }
}
footer .frame .info .address {
  margin: 30px 0;
  font-size: 14px;
  line-height: 2;
}
footer .frame .info .tel {
  width: 250px;
}
footer .frame .menu {
  width: 40%;
  padding: 15px 0 15px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-left: 1px solid #fff;
}
footer .frame .menu ul:nth-of-type(1) {
  margin-right: 60px;
}
footer .frame .menu ul li a {
  display: block;
  padding: 15px 0;
  font-size: 16px;
}
@media all and (max-width:767px) {
  footer {
    padding: 50px 0 0;
  }
  footer .frame {
    display: block;
  }
  footer .frame .info {
    width: 100%;
  }
  footer .frame .info .logo a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer .frame .info .logo a .mark {
    width: 15vw;
  }
  footer .frame .info .logo a .text {
    width: calc(100% - 15vw);
    margin-left: 2vw;
  }
  footer .frame .info .logo a .text .catch {
    margin-bottom: 1.5vw;
    font-size: 2.875vw;
  }
  footer .frame .info .logo a .text h1 {
    font-size: 4.5vw;
  }
  footer .frame .info .address {
    font-size: min(4vw, 16px);
    text-align: center;
  }
  footer .frame .info .tel {
    margin: 0 auto 40px;
    max-width: 100%;
  }
  footer .frame .menu {
    width: 100%;
    padding: 0;
    border-left: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer .frame .menu ul:nth-of-type(1) {
    margin-right: 6vw;
  }
  footer .frame .menu ul li a {
    font-size: min(4vw, 16px);
  }
}
footer .copyright {
  padding: 20px 0;
  background: #0c1f7f;
  font-size: 12px;
  text-align: center;
}
@media all and (max-width:767px) {
  footer .copyright {
    font-size: min(3.5vw, 12px);
  }
}

/* main */
main {
  margin-top: 100px;
}
@media all and (min-width:768px) and (max-width:1259px) {
  main {
    margin-top: 8vw;
  }
}
@media all and (max-width:767px) {
  main {
    margin-top: 60px;
  }
}

.ojf img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.wrap.narrow {
  max-width: 1000px;
}
@media all and (max-width:767px) {
  .wrap {
    padding: 0 6vw;
  }
}

.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 60px);
          transform: translate(0, 60px);
  -webkit-transition: all 1s;
  transition: all 1s;
}
.fadein.scrollin {
  opacity: 1 !important;
  -webkit-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
}
.fadein_first {
  -webkit-animation-name: fadeIn1s;
          animation-name: fadeIn1s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
  opacity: 0;
}

@-webkit-keyframes fadeIn1s {
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn1s {
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.m_title {
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 10px solid #d5356c;
}
.m_title h3 {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 700;
}
.m_title p {
  color: #5d5484;
  font-size: 14px;
  margin-left: 5px;
}
@media all and (min-width:768px) and (max-width:1259px) {
  .m_title {
    margin-bottom: 3vw;
    padding-left: 2vw;
    border-left-width: 1vw;
  }
  .m_title h3 {
    margin-bottom: 1.4vw;
    font-size: 3vw;
  }
  .m_title p {
    font-size: 1.5vw;
    margin-left: 0.5vw;
  }
}
@media all and (max-width:767px) {
  .m_title {
    margin-bottom: 25px;
    padding-left: 15px;
    border-left-width: 10px;
  }
  .m_title h3 {
    margin-bottom: 10px;
    font-size: 24px;
  }
  .m_title p {
    font-size: 15px;
    margin-left: 2px;
  }
}
.m_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}
.m_btn.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.m_btn.right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.m_btn a {
  position: relative;
  display: block;
  width: 300px;
  padding: 15px 0 15px 30px;
  background: #eb6848;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
.m_btn a::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  top: 0;
  left: 30px;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.m_btn a::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #eb6848;
  border-right: solid 2px #eb6848;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0;
  left: 34px;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.m_btn a:hover {
  opacity: 0.8;
}
.m_btn a:hover::before {
  left: 40px;
}
.m_btn a:hover::after {
  left: 44px;
}
@media all and (min-width:768px) and (max-width:1259px) {
  .m_btn {
    margin-top: 2.5vw;
  }
  .m_btn a {
    width: 30vw;
    padding: 2vw 0 2vw 3vw;
    font-size: 2vw;
  }
  .m_btn a::before {
    width: 2vw;
    height: 2vw;
    left: 3vw;
  }
  .m_btn a::after {
    width: 0.6vw;
    height: 0.6vw;
    left: 3.4vw;
  }
  .m_btn a:hover::before {
    left: 4vw;
  }
  .m_btn a:hover::after {
    left: 4vw;
  }
}
@media all and (max-width:767px) {
  .m_btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .m_btn.center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .m_btn.right {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .m_btn a {
    width: min(300px, 100%);
    font-size: 18px;
  }
  .m_btn a::before {
    left: 20px;
  }
  .m_btn a::after {
    left: 24px;
  }
  .m_btn a:hover::before {
    left: 20px;
  }
  .m_btn a:hover::after {
    left: 24px;
  }
}
.m_mv {
  position: relative;
}
.m_mv .pic img {
  height: 270px;
  -webkit-filter: brightness(0.66);
          filter: brightness(0.66);
}
.m_mv h2 {
  position: absolute;
  top: 100px;
  left: 30px;
  background: #fff;
  padding: 15px 30px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 4px;
}
@media all and (min-width:1600px) {
  .m_mv h2 {
    left: 6vw;
  }
}
@media all and (min-width:768px) and (max-width:1259px) {
  .m_mv .pic img {
    height: 20vw;
  }
  .m_mv h2 {
    top: 8vw;
    padding: 1vw 3vw;
    font-size: 3.2vw;
    letter-spacing: 0.4vw;
  }
}
@media all and (max-width:767px) {
  .m_mv .pic img {
    height: 160px;
  }
  .m_mv h2 {
    top: 55px;
    left: 6vw;
    padding: 10px 4vw;
    font-size: 25px;
    letter-spacing: 0.5vw;
  }
}

/* top */
.top_mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top_mv_slider {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 62.5%;
}
@media all and (min-width:1260px) and (max-width:1700px) {
  .top_mv_slider {
    width: 75%;
  }
  .top_mv_slider img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    height: 40vw;
  }
}
.top_mv_catch {
  position: relative;
  width: 37.5%;
  background: #00015b;
}
@media all and (min-width:1260px) and (max-width:1700px) {
  .top_mv_catch {
    width: 25%;
  }
}
.top_mv_catch .inner {
  position: absolute;
  z-index: 9;
  width: 250%;
  left: 30px;
  bottom: 30px;
}
@media all and (min-width:1260px) and (max-width:1700px) {
  .top_mv_catch .inner {
    width: 360%;
    bottom: 25px;
  }
}
.top_mv_catch .inner h2 {
  display: inline-block;
  margin-bottom: 10px;
  padding: 10px;
  background: #fff;
  font-size: 32px;
  font-weight: 700;
}
@media all and (min-width:1260px) and (max-width:1700px) {
  .top_mv_catch .inner h2 {
    font-size: 24px;
  }
}
.top_mv_catch .inner h2.end {
  margin-bottom: 22px;
}
.top_mv_catch .inner h2 span {
  color: #d5356c;
}
.top_mv_catch .inner p {
  display: inline-block;
  margin-bottom: 10px;
  padding: 10px;
  background: #fff;
  font-size: 20px;
  font-weight: 700;
}
@media all and (min-width:1260px) and (max-width:1700px) {
  .top_mv_catch .inner p {
    font-size: 17px;
  }
}
@media all and (min-width:768px) and (max-width:1259px) {
  .top_mv_catch .inner {
    bottom: 2vw;
    left: 2vw;
  }
  .top_mv_catch .inner h2 {
    margin-bottom: 1vw;
    padding: 0.75vw 1vw;
    font-size: 2vw;
  }
  .top_mv_catch .inner h2.end {
    margin-bottom: 2vw;
  }
  .top_mv_catch .inner p {
    margin-bottom: 1vw;
    padding: 0.75vw 1vw;
    font-size: 1.5vw;
  }
}
@media all and (max-width:767px) {
  .top_mv {
    display: block;
  }
  .top_mv_slider {
    width: 100%;
  }
  .top_mv_catch {
    width: 100%;
  }
  .top_mv_catch .inner {
    position: relative;
    width: calc(100% - 6vw);
    left: 3vw;
    bottom: 20px;
  }
  .top_mv_catch .inner h2 {
    margin-bottom: 5px;
    padding: 8px 2vw;
    font-size: min(3.75vw, 20px);
    line-height: 1.25;
  }
  .top_mv_catch .inner h2.end {
    margin-bottom: 3vw;
  }
  .top_mv_catch .inner p {
    margin-bottom: 5px;
    padding: 5px 2vw;
    font-size: min(3.75vw, 16px);
  }
}
.top_news {
  padding: 90px 0;
}
.top_news_iframe {
  width: 100%;
  height: 300px;
}
.top_news_iframe iframe {
  width: 100%;
  height: auto;
}
.top_news_ul {
  padding: 0 40px;
}
.top_news_ul li {
  border-bottom: 1px dotted #333;
}
.top_news_ul li a,
.top_news_ul li .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 0;
  color: #000;
}
.top_news_ul li a .pic,
.top_news_ul li .box .pic {
  width: 20%;
  display: block;
  height: 150px;
  background: url("../../shared/img/common/noimage.jpg") center no-repeat;
  background-size: cover;
}
.top_news_ul li a .pic img,
.top_news_ul li .box .pic img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/5;
  height: 150px;
}
.top_news_ul li a .text,
.top_news_ul li .box .text {
  width: 76%;
}
.top_news_ul li a .text .news_head,
.top_news_ul li .box .text .news_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
.top_news_ul li a .text .news_head .up_ymd,
.top_news_ul li .box .text .news_head .up_ymd {
  font-size: 15px;
}
.top_news_ul li a .text .news_head .catName,
.top_news_ul li .box .text .news_head .catName {
  margin-left: 12px;
  padding: 3px 10px;
  border: 1px solid #d5356c;
  color: #d5356c;
  font-size: 12px;
}
.top_news_ul li a .text h4,
.top_news_ul li .box .text h4 {
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top_news_ul li a .text h4 a,
.top_news_ul li .box .text h4 a {
  padding: 0;
  text-decoration: underline;
}
.top_news_ul li a .text h4 a:hover,
.top_news_ul li .box .text h4 a:hover {
  opacity: 0.7;
}
.top_news_ul li a .text h4 .newMark,
.top_news_ul li .box .text h4 .newMark {
  margin-left: 12px;
  padding: 1px 5px;
  background: #eb6848;
  color: #fff;
  font-size: 12px;
}
.top_news_ul li a .text p,
.top_news_ul li .box .text p {
  font-size: 14px;
  line-height: 1.6;
}
@media all and (min-width:768px) and (max-width:1259px) {
  .top_news {
    padding: 6vw 0;
  }
  .top_news_ul {
    padding: 0 3vw;
  }
  .top_news_ul li a,
  .top_news_ul li .box {
    padding: 2.5vw 0;
  }
  .top_news_ul li a .pic,
  .top_news_ul li .box .pic {
    width: 20%;
    height: 14vw;
  }
  .top_news_ul li a .pic img,
  .top_news_ul li .box .pic img {
    height: 14vw;
  }
  .top_news_ul li a .text,
  .top_news_ul li .box .text {
    width: 76%;
  }
  .top_news_ul li a .text .news_head,
  .top_news_ul li .box .text .news_head {
    margin-bottom: 1vw;
  }
  .top_news_ul li a .text .news_head .up_ymd,
  .top_news_ul li .box .text .news_head .up_ymd {
    font-size: 1.7vw;
  }
  .top_news_ul li a .text .news_head .catName,
  .top_news_ul li .box .text .news_head .catName {
    margin-left: 1.2vw;
    padding: 0.3vw 1vw;
    font-size: 1.4vw;
  }
  .top_news_ul li a .text h4,
  .top_news_ul li .box .text h4 {
    margin-bottom: 1.5vw;
    font-size: 2.2vw;
  }
  .top_news_ul li a .text h4 .newMark,
  .top_news_ul li .box .text h4 .newMark {
    margin-left: 1.2vw;
    padding: 0.1vw 0.5vw;
    font-size: 1.2vw;
  }
  .top_news_ul li a .text p,
  .top_news_ul li .box .text p {
    font-size: 1.5vw;
  }
}
@media all and (max-width:767px) {
  .top_news {
    padding: 50px 0;
  }
  .top_news_ul {
    padding: 0;
    margin-top: -20px;
  }
  .top_news_ul li a,
  .top_news_ul li .box {
    display: block;
    padding: 20px 0;
  }
  .top_news_ul li a .pic,
  .top_news_ul li .box .pic {
    background: none;
    width: min(400px, 100%);
    height: auto;
  }
  .top_news_ul li a .pic img,
  .top_news_ul li .box .pic img {
    margin-bottom: 15px;
    height: 40vw;
  }
  .top_news_ul li a .text,
  .top_news_ul li .box .text {
    width: 100%;
  }
  .top_news_ul li a .text .news_head,
  .top_news_ul li .box .text .news_head {
    margin-bottom: 10px;
  }
  .top_news_ul li a .text .news_head .up_ymd,
  .top_news_ul li .box .text .news_head .up_ymd {
    font-size: min(4vw, 16px);
  }
  .top_news_ul li a .text .news_head .catName,
  .top_news_ul li .box .text .news_head .catName {
    font-size: min(3.5vw, 13px);
  }
  .top_news_ul li a .text h4,
  .top_news_ul li .box .text h4 {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .top_news_ul li a .text p,
  .top_news_ul li .box .text p {
    font-size: 14px;
  }
}
.top_intro {
  padding: 60px 0;
  background: #fffade;
}
.top_intro .frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top_intro .frame .conts {
  width: 55%;
  text-align: center;
}
.top_intro .frame .conts h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.75;
}
.top_intro .frame .conts h3 b {
  color: #00015b;
  font-weight: 700;
}
.top_intro .frame .conts h3 span {
  font-size: 125%;
  color: #d5356c;
  font-weight: 700;
}
.top_intro .frame .conts h3 br.sp {
  display: none;
}
.top_intro .frame .conts p {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.8;
}
.top_intro .frame .pic {
  width: 40%;
}
@media all and (min-width:768px) and (max-width:1259px) {
  .top_intro {
    padding: 5vw 0;
  }
  .top_intro .frame .conts {
    width: 55%;
  }
  .top_intro .frame .conts h3 {
    font-size: 2.4vw;
  }
  .top_intro .frame .conts p {
    margin-top: 2vw;
    font-size: 1.675vw;
  }
  .top_intro .frame .pic {
    width: 40%;
  }
}
@media all and (max-width:767px) {
  .top_intro {
    padding: 50px 0;
  }
  .top_intro .frame {
    display: block;
  }
  .top_intro .frame .conts {
    width: 100%;
    text-align: left;
  }
  .top_intro .frame .conts h3 {
    font-size: min(4.75vw, 21px);
    text-align: center;
  }
  .top_intro .frame .conts h3 b {
    font-size: 125%;
    margin-right: 10px;
  }
  .top_intro .frame .conts h3 span {
    font-size: 137.5%;
  }
  .top_intro .frame .conts p {
    font-size: 15px;
  }
  .top_intro .frame .conts p br {
    display: none;
  }
  .top_intro .frame .pic {
    margin: 25px auto 0;
    width: min(400px, 100%);
  }
}
@media all and (max-width:479px) {
  .top_intro .frame .conts h3 br.sp {
    display: inline-block;
  }
}
.top_service {
  padding: 90px 0;
  background: #f5ecff;
}
.top_service .inner {
  padding: 0 40px;
}
.top_service .text {
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 1.8;
}
.top_service_ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
}
.top_service_ul li {
  width: 32%;
}
.top_service_ul li a img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.top_service_ul li a .pic {
  position: relative;
  display: block;
  overflow: hidden;
}
.top_service_ul li a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.top_service_ul li p {
  position: relative;
  background: #fff;
  padding: 20px 20px 20px 70px;
  font-size: 20px;
  font-weight: 700;
  color: #000;
}
.top_service_ul li p::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: #d5356c;
  border-radius: 50%;
  top: 3px;
  left: 30px;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.top_service_ul li p::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 3px;
  left: 34px;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.top_service_ul li p:hover::before {
  left: 40px;
}
.top_service_ul li p:hover::after {
  left: 44px;
}
@media all and (min-width:768px) and (max-width:1259px) {
  .top_service {
    padding: 7vw 0;
  }
  .top_service .inner {
    padding: 0 3vw;
  }
  .top_service .text {
    margin-bottom: 3vw;
    font-size: 1.7vw;
  }
  .top_service_ul {
    margin-bottom: 5vw;
  }
  .top_service_ul li p {
    padding: 2vw 2vw 2vw 6vw;
    font-size: 2vw;
  }
  .top_service_ul li p::before {
    width: 2vw;
    height: 2vw;
    left: 2vw;
  }
  .top_service_ul li p::after {
    width: 0.6vw;
    height: 0.6vw;
    left: 2.4vw;
  }
  .top_service_ul li p:hover::before {
    left: 3vw;
  }
  .top_service_ul li p:hover::after {
    left: 3.4vw;
  }
}
@media all and (max-width:767px) {
  .top_service {
    padding: 50px 0;
  }
  .top_service .inner {
    padding: 0;
  }
  .top_service .text {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .top_service_ul {
    display: block;
    margin-bottom: 30px;
  }
  .top_service_ul li {
    margin: 0 auto 20px;
    width: min(400px, 100%);
  }
  .top_service_ul li p {
    padding: 15px 15px 15px 50px;
    font-size: min(5vw, 22px);
  }
  .top_service_ul li p::before {
    left: 20px;
  }
  .top_service_ul li p::after {
    left: 24px;
  }
  .top_service_ul li p:hover::before {
    left: 20px;
  }
  .top_service_ul li p:hover::after {
    left: 24px;
  }
}
.top_about {
  padding: 90px 0;
}
.top_about_ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.top_about_ul li {
  width: 32%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}
.top_about_ul li a {
  position: relative;
  display: block;
  -webkit-box-shadow: 12px 12px 0 #89dac4;
          box-shadow: 12px 12px 0 #89dac4;
  overflow: hidden;
}
.top_about_ul li a img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-filter: brightness(66.66%);
          filter: brightness(66.66%);
}
.top_about_ul li a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.top_about_ul li a p {
  position: absolute;
  top: calc(50% - 12px);
  width: 100%;
  font-size: 25px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
  color: #fff;
  text-align: center;
}
@media all and (min-width:768px) and (max-width:1259px) {
  .top_about {
    padding: 7vw 0;
  }
  .top_about_ul li {
    margin-bottom: 3vw;
  }
  .top_about_ul li a {
    -webkit-box-shadow: 1vw 1vw 0 #89dac4;
            box-shadow: 1vw 1vw 0 #89dac4;
  }
  .top_about_ul li a p {
    top: calc(50% - 2vw);
    font-size: 3vw;
  }
}
@media all and (max-width:767px) {
  .top_about {
    padding: 50px 0;
  }
  .top_about_ul {
    display: block;
  }
  .top_about_ul li {
    width: 100%;
    margin-bottom: 30px;
  }
  .top_about_ul li a {
    width: 100%;
    -webkit-box-shadow: 3vw 3vw 0 #89dac4;
            box-shadow: 3vw 3vw 0 #89dac4;
  }
  .top_about_ul li a p {
    top: calc(50% - 12px);
    font-size: 23px;
  }
}
.top_recruit {
  padding: 90px 0;
  background: url("../../shared/img/top/bg_recruit.jpg") no-repeat center;
  background-size: cover;
}
.top_recruit .frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.top_recruit .frame .conts {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 47.5%;
}
.top_recruit .frame .conts h4 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.75;
}
.top_recruit .frame .conts p {
  font-size: 15px;
  line-height: 1.875;
}
.top_recruit .frame .pic {
  position: relative;
  width: 47.5%;
  height: 400px;
}
.top_recruit .frame .pic > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
}
.top_recruit .frame .pic > div:nth-of-type(2) {
  top: auto;
  left: auto;
  bottom: 0;
  right: 0;
}
@media all and (min-width:768px) and (max-width:1259px) {
  .top_recruit {
    padding: 6vw 0;
  }
  .top_recruit .frame .conts h4 {
    margin-bottom: 2vw;
    font-size: 2.75vw;
  }
  .top_recruit .frame .conts p {
    font-size: 1.5vw;
  }
  .top_recruit .frame .pic {
    height: 36vw;
  }
  .top_recruit .frame .pic > div {
    width: 75%;
  }
}
@media all and (max-width:767px) {
  .top_recruit {
    padding: 50px 0;
  }
  .top_recruit .frame {
    display: block;
  }
  .top_recruit .frame .conts {
    width: 100%;
  }
  .top_recruit .frame .conts h4 {
    margin-bottom: 15px;
    font-size: min(5.5vw, 24px);
  }
  .top_recruit .frame .conts p {
    font-size: 14px;
  }
  .top_recruit .frame .pic {
    width: min(400px, 100%);
    height: 60vw;
    margin: 30px auto 0;
  }
}

.contact_bottom {
  background: #69baa4;
  padding: 90px 0;
}
@media all and (min-width:1260px) and (max-width:1700px) {
  .contact_bottom {
    padding: 60px 0;
  }
}
.contact_bottom .inner {
  background: #fff;
  padding: 40px 120px;
}
.contact_bottom .title {
  margin-bottom: 40px;
  text-align: center;
}
.contact_bottom .title .ttl {
  margin-bottom: 15px;
  font-size: 25px;
  font-weight: 700;
}
.contact_bottom .title .sub {
  color: #5d5484;
  font-size: 16px;
}
.contact_bottom .frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 840px;
  margin: auto;
}
.contact_bottom .frame .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 47.5%;
  padding: 15px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}
.contact_bottom .frame .tel img {
  width: 80%;
}
.contact_bottom .frame .btn {
  width: 47.5%;
}
.contact_bottom .frame .btn a {
  display: block;
  padding: 20px 0 20px 40px;
  background: url("../img/common/icon_mail.png") no-repeat #d5356c;
  background-position: left 80px center;
  background-size: 24px auto;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
.contact_bottom .frame .btn a:hover {
  opacity: 0.75;
}
@media all and (min-width:768px) and (max-width:1259px) {
  .contact_bottom {
    padding: 5vw 0;
  }
  .contact_bottom .inner {
    padding: 4vw 8vw;
  }
  .contact_bottom .title {
    margin-bottom: 3vw;
  }
  .contact_bottom .title .ttl {
    margin-bottom: 1.5vw;
    font-size: 3.5vw;
  }
  .contact_bottom .title .sub {
    font-size: 1.5vw;
  }
  .contact_bottom .frame .tel {
    width: 47.5%;
    padding: 1.5vw;
  }
  .contact_bottom .frame .btn {
    width: 47.5%;
  }
  .contact_bottom .frame .btn a {
    padding: 2.4vw 0 2.4vw 4vw;
    background-position: left 6vw center;
    background-size: 2vw auto;
    font-size: 1.8vw;
  }
}
@media all and (max-width:767px) {
  .contact_bottom {
    padding: 50px 0;
  }
  .contact_bottom .inner {
    padding: 30px 4vw;
  }
  .contact_bottom .title {
    margin-bottom: 20px;
  }
  .contact_bottom .title .ttl {
    margin-bottom: 10px;
    font-size: min(6.66vw, 25px);
  }
  .contact_bottom .title .sub {
    font-size: min(4vw, 15px);
  }
  .contact_bottom .frame {
    display: block;
  }
  .contact_bottom .frame .tel {
    width: min(400px, 100%);
    margin: 0 auto 24px;
  }
  .contact_bottom .frame .btn {
    width: min(400px, 100%);
    margin: auto;
  }
  .contact_bottom .frame .btn a {
    padding: 20px 0 20px 30px;
    background-position: left 12.5% center;
    background-size: 20px auto;
    font-size: min(4.5vw, 20px);
  }
}

.uc {
  padding: 90px 0;
  background: #f1f1f1;
}
.uc .pic {
  width: 480px;
  margin: 0 auto;
}
.uc p {
  margin: 40px 0;
  font-size: 16px;
  line-height: 2;
  text-align: center;
}
.uc h1 {
  font-size: 15px;
  text-align: center;
}
.uc h1 span {
  color: #00015b;
  display: block;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 700;
}
@media all and (min-width:768px) and (max-width:1259px) {
  .uc {
    padding: 8vw 0;
  }
  .uc p {
    margin: 4vw 0;
    font-size: 1.6vw;
  }
  .uc h1 {
    font-size: 1.5vw;
  }
  .uc h1 span {
    margin-bottom: 1.5vw;
    font-size: 2.2vw;
  }
}
@media all and (max-width:767px) {
  .uc {
    padding: 50px 0;
  }
  .uc .pic {
    width: min(400px, 100%);
  }
  .uc p {
    margin: 30px 0;
    font-size: 14px;
    line-height: 1.75;
    text-align: left;
  }
  .uc h1 {
    font-size: min(3.5vw, 15px);
  }
  .uc h1 span {
    font-size: min(6vw, 24px);
  }
}

/* pshrd */
.p_sec {
  padding: 90px 0;
}
.p_sec.end {
  padding-bottom: 0;
}
.p_inner {
  padding: 0 40px;
}
@media all and (min-width:768px) and (max-width:1259px) {
  .p_sec {
    padding: 7.2vw 0;
  }
  .p_inner {
    padding: 0 3vw;
  }
}
@media all and (max-width:767px) {
  .p_sec {
    padding: 50px 0;
  }
  .p_inner {
    padding: 0;
  }
}

.svc_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 30px;
  margin-top: 30px;
}
.svc_btns .m_btn a {
  width: 300px;
}
.svc_frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.svc_frame .conts {
  width: 61.5%;
}
.svc_frame .conts p {
  line-height: 2;
}
@media all and (min-width:1260px) {
  .svc_frame .conts p {
    font-size: 16px;
  }
}
.svc_frame .conts p b {
  color: #d5356c;
  font-weight: bold;
}
.svc_frame .pic {
  width: 35%;
}
.svc_frame.opp .conts {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.svc_fj {
  background: #faefff;
}
.svc_sche {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  background: rgba(255, 0, 0, 0.1);
}
.svc_sche p b {
  color: #00015b !important;
}
@media all and (min-width:768px) and (max-width:1259px) {
  .svc_btns {
    gap: 0 3vw;
    margin-top: 3vw;
  }
  .svc_btns .m_btn a {
    width: 26vw;
  }
  .svc_frame {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .svc_frame .conts {
    width: 60%;
  }
  .svc_frame .pic {
    width: 36%;
  }
  .svc_sche {
    margin-top: 2vw;
    padding: 1.5vw 3vw;
  }
}
@media all and (max-width:767px) {
  .svc_btns {
    display: block;
    margin-top: 30px;
  }
  .svc_btns .m_btn a {
    width: 240px;
  }
  .svc_frame {
    display: block;
  }
  .svc_frame .conts {
    width: 100%;
  }
  .svc_frame .pic {
    margin: 30px auto 0;
    width: min(400px, 100%);
  }
  .svc_sche {
    display: block;
    margin-top: 15px;
    padding: 10px 4vw;
    text-align: center;
  }
  .svc_sche p {
    font-size: min(4.25vw, 16px);
  }
}

.abt_greeting .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.abt_greeting .box .conts {
  width: 65%;
}
.abt_greeting .box .conts p {
  line-height: 2.25;
  font-size: 16px;
}
.abt_greeting .box .conts p.name {
  margin-top: 30px;
  font-size: 20px;
  text-align: right;
}
.abt_greeting .box .conts p.name span {
  font-size: 15px;
  margin-right: 16px;
}
.abt_greeting .box .pic {
  width: 30%;
}
.abt_access {
  background: #f0faff;
}
.abt_access table.sheet {
  margin: 60px 0 90px;
  width: 100%;
  background: #fff;
}
.abt_access table.sheet tr {
  font-size: 16px;
  line-height: 2;
}
.abt_access table.sheet tr th {
  padding: 25px 30px;
  vertical-align: middle;
  background: #fafcff;
  border-bottom: 1px solid #00015b;
}
.abt_access table.sheet tr td {
  padding: 25px 30px;
  vertical-align: middle;
  border-bottom: 1px solid #000;
}
.abt_access table.sheet tr td a {
  color: #000;
}
.abt_access table.sheet tr td br.sp {
  display: none;
}
.abt_access table.sheet tr td span {
  display: inline-block;
  width: 150px;
}
.abt_map iframe {
  width: 100%;
  height: 300px;
}
.abt_history dl {
  margin-top: 60px;
}
.abt_history dl div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px dotted #00015b;
}
.abt_history dl div dt {
  width: 140px;
  line-height: 1.5;
  text-align: center;
}
.abt_history dl div dd {
  width: calc(100% - 160px);
  line-height: 2;
}
@media all and (min-width:768px) and (max-width:1259px) {
  .abt_greeting .box .conts p {
    line-height: 2;
    font-size: 1.8vw;
  }
  .abt_greeting .box .conts p.name {
    margin-top: 3vw;
    font-size: 2.4vw;
  }
  .abt_greeting .box .conts p.name span {
    font-size: 1.6vw;
    margin-right: 1.6vw;
  }
  .abt_access table.sheet {
    margin: 6vw 0 9vw;
  }
  .abt_access table.sheet tr {
    font-size: 1.8vw;
  }
  .abt_access table.sheet tr th,
  .abt_access table.sheet tr td {
    padding: 2.25vw 3vw;
  }
  .abt_access table.sheet tr th span,
  .abt_access table.sheet tr td span {
    width: 15vw;
  }
  .abt_map iframe {
    height: 25vw;
  }
  .abt_history dl {
    margin-top: 6vw;
  }
  .abt_history dl div {
    font-size: 1.75vw;
    margin-bottom: 2.4vw;
    padding-bottom: 2vw;
  }
  .abt_history dl div dt {
    width: 14vw;
  }
  .abt_history dl div dd {
    width: calc(100% - 18vw);
  }
}
@media all and (max-width:767px) {
  .abt_greeting .box {
    display: block;
  }
  .abt_greeting .box .conts {
    width: 100%;
  }
  .abt_greeting .box .conts p {
    font-size: 16px;
    line-height: 2;
  }
  .abt_greeting .box .conts p.name {
    margin-top: 20px;
  }
  .abt_greeting .box .pic {
    width: min(300px, 100%);
    margin: 30px auto 0;
  }
  .abt_access table.sheet {
    margin: 40px 0 50px;
  }
  .abt_access table.sheet tr {
    font-size: min(3.75vw, 16px);
    display: block;
  }
  .abt_access table.sheet tr th {
    display: block;
    padding: 20px 0 0;
    background: none;
    border-bottom: none;
    font-size: min(4vw, 17px);
    font-weight: bold;
    color: #00015b;
  }
  .abt_access table.sheet tr td {
    display: block;
    padding: 10px 6vw 20px;
    text-align: center;
  }
  .abt_access table.sheet tr td br.sp {
    display: inline-block;
  }
  .abt_access table.sheet tr td span {
    display: block;
    width: auto;
    margin-top: 10px;
  }
  .abt_map iframe {
    height: 240px;
  }
  .abt_history dl {
    margin-top: 40px;
  }
  .abt_history dl div {
    font-size: 15px;
    margin-bottom: 20px;
    padding-bottom: 16px;
  }
  .abt_history dl div dt {
    width: 120px;
  }
  .abt_history dl div dd {
    width: calc(100% - 120px);
  }
}

/* pshrd */
.n_sec {
  padding: 30px 0 90px;
}
.n_detail {
  padding-bottom: 30px;
}
.n_detail strong,
.n_detail b {
  font-weight: bold;
}
.n_nav {
  margin-bottom: 30px;
  font-size: 15px;
}
.n_nav a {
  color: #000;
}
.n_nav a:hover {
  opacity: 0.6;
}
.n_nav span {
  margin: 0 15px;
}
.n_title {
  margin-bottom: 20px;
  padding: 5px 0 10px 15px;
  border-left: 10px solid #d5356c;
  background: #f5f5f5;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
.n_ymd {
  margin-bottom: 30px;
  font-size: 15px;
  text-align: right;
}
.n_text {
  margin-bottom: 30px;
  font-size: 15px;
  letter-spacing: 0.5px;
  line-height: 1.875;
}
.n_file {
  margin-bottom: 30px;
  text-align: center;
}
@media all and (min-width:768px) and (max-width:1259px) {
  .n_sec {
    padding: 3vw 0 7.5vw;
  }
  .n_detail {
    padding-bottom: 3vw;
  }
  .n_nav {
    margin-bottom: 3vw;
    font-size: 1.5vw;
  }
  .n_nav span {
    margin: 0 1.5vw;
  }
  .n_title {
    margin-bottom: 2vw;
    padding: 0.5vw 0 1vw 1.5vw;
    font-size: 3.5vw;
  }
  .n_ymd {
    margin-bottom: 3vw;
    font-size: 1.7vw;
  }
  .n_text {
    margin-bottom: 3vw;
    font-size: 1.7vw;
  }
  .n_file {
    margin-bottom: 3vw;
  }
}
@media all and (max-width:767px) {
  .n_sec {
    padding: 30px 0 60px;
  }
  .n_detail {
    padding-bottom: 10px;
  }
  .n_nav {
    font-size: 13px;
  }
  .n_nav span {
    margin: 0 13px;
  }
  .n_title {
    font-size: min(6vw, 24px);
  }
  .n_ymd {
    margin-bottom: 20px;
    font-size: 15px;
  }
  .n_text {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .n_file {
    margin-bottom: 20px;
  }
}

/* form */
.form {
  padding: 90px 0;
}
.form.recruit {
  background: #fff5ee;
}
.form.recruit .form_sheet.confirm th {
  background: #ffe5d5;
}
.form.recruit .form_sheet.confirm td {
  background: #fff;
}
.form_sheet {
  width: 100%;
}
.form_sheet tr {
  border-bottom: 1px solid #000;
  font-size: 16px;
}
.form_sheet th {
  width: 30%;
  padding: 35px 15px 20px;
  text-align: left;
  vertical-align: top;
}
.form_sheet th span {
  float: right;
  padding: 3px 10px;
  background: #eb6848;
  color: #fff;
}
.form_sheet td {
  padding: 20px 15px;
  vertical-align: top;
}
.form_sheet.confirm {
  border-top: 1px solid #000;
}
.form_sheet.confirm th {
  background: #f8f8f8;
  text-align: center;
}
.form_sheet.confirm th, .form_sheet.confirm td {
  padding: 30px 20px;
  line-height: 1.5;
}
.form_sheet input[type=text],
.form_sheet input[type=email],
.form_sheet input[type=tel],
.form_sheet textarea {
  width: 100%;
  padding: 15px 20px;
  background: #f8f8f8;
  border: 1px solid #999;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
}
.form_sheet input[type=text]::-webkit-input-placeholder, .form_sheet input[type=email]::-webkit-input-placeholder, .form_sheet input[type=tel]::-webkit-input-placeholder, .form_sheet textarea::-webkit-input-placeholder {
  color: #ccc;
}
.form_sheet input[type=text]::-moz-placeholder, .form_sheet input[type=email]::-moz-placeholder, .form_sheet input[type=tel]::-moz-placeholder, .form_sheet textarea::-moz-placeholder {
  color: #ccc;
}
.form_sheet input[type=text]:-ms-input-placeholder, .form_sheet input[type=email]:-ms-input-placeholder, .form_sheet input[type=tel]:-ms-input-placeholder, .form_sheet textarea:-ms-input-placeholder {
  color: #ccc;
}
.form_sheet input[type=text]::-ms-input-placeholder, .form_sheet input[type=email]::-ms-input-placeholder, .form_sheet input[type=tel]::-ms-input-placeholder, .form_sheet textarea::-ms-input-placeholder {
  color: #ccc;
}
.form_sheet input[type=text]::placeholder,
.form_sheet input[type=email]::placeholder,
.form_sheet input[type=tel]::placeholder,
.form_sheet textarea::placeholder {
  color: #ccc;
}
.form_sheet textarea {
  height: 300px;
  line-height: 1.5;
}
.form_sheet label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 0;
}
.form_sheet label a {
  text-decoration: underline;
}
.form_sheet label input[type=checkbox] {
  margin-right: 10px;
  border: 1px solid #999;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}
.form .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 50px;
  gap: 0 30px;
}
.form .btns .btn {
  display: block;
  width: 280px;
  padding: 15px 30px;
  border: none;
  background: #eb6848;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.form .btns .btn:hover {
  opacity: 0.7;
}
.form .btns .btn.back {
  background: #aaa;
}
.form .error {
  padding: 20px 30px;
  background: #fee;
}
.form .error p {
  margin: 10px 0;
  color: #d5356c;
  font-weight: bold;
}
.form .error_title {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.5;
}
.form .complete {
  margin: 40px 0;
  line-height: 2;
}
@media all and (min-width:768px) and (max-width:1259px) {
  .form {
    padding: 6vw 0;
  }
  .form_sheet tr {
    font-size: 1.8vw;
  }
  .form_sheet th {
    width: 30%;
    padding: 3.5vw 1.5vw 2vw;
  }
  .form_sheet th span {
    padding: 0.3vw 1vw;
  }
  .form_sheet td {
    padding: 2vw 1.5vw;
  }
  .form_sheet.confirm th, .form_sheet.confirm td {
    padding: 3vw 2vw;
  }
  .form_sheet input[type=text],
  .form_sheet input[type=email],
  .form_sheet input[type=tel],
  .form_sheet textarea {
    padding: 1.5vw 2vw;
    font-size: 2vw;
  }
  .form_sheet textarea {
    height: 28vw;
  }
  .form_sheet label {
    padding: 1.4vw 0;
  }
  .form_sheet label input[type=checkbox] {
    margin-right: 1vw;
  }
  .form .btns {
    margin-top: 5vw;
    gap: 0 3vw;
  }
  .form .btns .btn {
    width: 25vw;
    padding: 2vw 3vw;
    font-size: 2vw;
  }
  .form .error {
    padding: 2vw 3vw;
  }
  .form .error p {
    margin: 2vw 0;
    font-size: 1.8vw;
  }
  .form .error_title {
    margin-bottom: 3vw;
    font-size: 1.8vw;
  }
  .form .complete {
    margin: 4vw 0;
    font-size: 1.8vw;
  }
}
@media all and (max-width:767px) {
  .form {
    padding: 50px 0;
  }
  .form_sheet tr {
    font-size: 16px;
    display: block;
  }
  .form_sheet th {
    display: block;
    width: 100%;
    padding: 24px 0 0;
  }
  .form_sheet td {
    display: block;
    width: 100%;
    padding: 18px 0 24px;
  }
  .form_sheet.confirm th {
    text-align: left;
    padding: 15px 6vw;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .form_sheet.confirm td {
    padding: 15px 6vw 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .form_sheet input[type=text],
  .form_sheet input[type=email],
  .form_sheet input[type=tel],
  .form_sheet textarea {
    padding: 15px 4vw;
    font-size: 16px;
  }
  .form_sheet textarea {
    height: 240px;
  }
  .form_sheet label {
    padding: 16px 0;
    line-height: 1.5;
  }
  .form .btns {
    margin-top: 40px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 20px;
  }
  .form .btns .btn {
    width: 240px;
    padding: 15px 0;
    font-size: 18px;
  }
  .form .btns div {
    margin-bottom: 30px;
  }
  .form .btns div:nth-of-type(1) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .form .error {
    padding: 15px 4vw;
  }
  .form .error p {
    margin: 15px 0;
    line-height: 1.5;
  }
  .form .error_title {
    margin-bottom: 30px;
    font-size: 18px;
  }
}

.policy h4 {
  margin: 40px 0 15px;
  font-size: 18px;
  font-weight: 700;
}
.policy p,
.policy ul {
  font-size: 15px;
  line-height: 1.75;
}
.policy p li,
.policy ul li {
  list-style: outside disc;
  margin-left: 20px;
}
.policy p a,
.policy ul a {
  color: #000;
}
@media all and (min-width:768px) and (max-width:1259px) {
  .policy h4 {
    margin: 4vw 0 1.5vw;
    font-size: 2vw;
  }
  .policy p,
  .policy ul {
    font-size: 1.5vw;
  }
  .policy p li,
  .policy ul li {
    margin-left: 1.75vw;
  }
}
@media all and (max-width:767px) {
  .policy h4 {
    margin: 30px 0 10px;
    font-size: 17px;
    line-height: 1.5;
  }
  .policy p,
  .policy ul {
    font-size: 13px;
  }
  .policy p li,
  .policy ul li {
    margin-left: 15px;
  }
}
/*# sourceMappingURL=style.css.map */