@charset "UTF-8";
@media screen and (max-width: 750px) {
  /*-------------------------------------------
  all
  -------------------------------------------*/
  html {
    font-size: 87.5%;
  }
  body {
    font-family: "Noto Sans JP", sans-serif;
    margin: 0 auto;
    color: #000;
    width: 100%;
    overflow: hidden;
    line-height: 2;
  }
  a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
  }
  img {
    height: auto;
  }
  .btn {
    color: #fff;
    background: #E0809A;
    border-radius: 5px;
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 1.4rem;
    margin: 20px auto 60px;
    border-bottom: 5px solid #9F586B;
  }
  .shadow {
    padding: 10px;
    margin: 0 10px;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
            box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  }
  .border {
    font-weight: 700;
    position: relative;
    z-index: 0;
  }
  .border::after {
    content: "";
    background-color: #E6E6A1;
    border-radius: 200px;
    width: 100%;
    height: 40%;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: -1;
  }
  .inner {
    width: 95%;
    margin: 0 auto;
  }
  p {
    font-weight: 500;
  }
  p:not(:last-of-type) {
    margin-bottom: 1rem;
  }
  /*-------------------------------------------
  header
  -------------------------------------------*/
  .h_blc {
    background: #fff;
  }
  .h_blc .inner {
    padding: 20px;
  }
  .h_logo a {
    display: block;
    margin-bottom: 20px;
  }
  .h_logo a img {
    display: block;
  }
  /* .h_subnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #fff;
    padding: 10px;
    background-color: #E0809A;
    width: 80%;
    margin: 0 auto;
  } */
  .h_subnav {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .h_subnav li {
    width: 48%;
  }
  
  .h_subnav a {
    display: block;
    color: #fff;
    text-align: center;
    padding: 10px;
  }
  
  .h_subnav li:first-child a {
    background:  #E0809A;
  }
  .h_subnav li:last-child a {
    background:  #E0809A;
  }
  /*ハンバーガー*/
  .menubtn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 50px;
    width: 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 90;
    background: #0963b0;
  }
  .menubtn span {
    content: "";
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #ffffff;
    position: absolute;
  }
  .menubtn span:before, .menubtn span:after {
    content: "";
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #ffffff;
    position: absolute;
  }
  .menubtn span:before {
    bottom: 8px;
  }
  .menubtn span:after {
    top: 8px;
  }
  #menubtn_check {
    display: none;
  }
  #menubtn_check:checked ~ .menubtn span {
    background: rgba(255, 255, 255, 0);
  }
  #menubtn_check:checked ~ .menubtn span::before {
    bottom: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  #menubtn_check:checked ~ .menubtn span::after {
    top: 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .menu_content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
    background: #0963b0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .menu_content > ul {
    padding: 70px 10px 0;
  }
  .menu_content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
  }
  .menu_content ul li a {
    display: block;
    width: 100%;
    font-size: 1.2rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #ffffff;
    text-decoration: none;
    position: relative;
    padding: 20px;
    font-family: "Saira SemiCondensed", sans-serif;
  }
  .menu_content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 28px;
  }
  #menubtn_check:checked ~ .menu_content {
    left: 0;
  }
  /**/
  .catch {
    position: relative;
    background-image: url(../images/catch/catch_owbg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    height: auto;
  }
  .catch .catch_woman {
    position: absolute;
    right: 20px;
    bottom: 0;
    z-index: 50;
    width: 30%;
  }
  .catch .catchcopy {
    color: #fff;
    padding: 10px 10px 20px 10px;
  }
  .catch .catchcopy strong {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.8;
  }
  .catch .catchcopy span {
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.4;
    font-weight: 500;
  }
  .catch .catchcopy p {
    background-color: #63CCD9;
    padding: 10px;
    border-radius: 10px;
    width: 70%;
    position: relative;
    margin-top: 20px;
  }
  .catch .catchcopy p::after {
    content: "";
    background-color: #63CCD9;
    width: 35px;
    height: 35px;
    position: absolute;
    right: 15px;
    bottom: -20px;
    -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
            clip-path: polygon(0 0, 50% 100%, 100% 0);
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
  }
  /*-------------------------------------------
  main
  -------------------------------------------*/
  main .subtitle {
    font-size: 1.8rem;
    background-color: #63CCD9;
    color: #fff;
    padding: 10px;
    text-align: center;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.4;
  }
  main strong {
    font-size: 3rem;
    font-weight: 700;
    color: #63CCD9;
    padding: 5px;
  }
  main .text {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.6;
  }
  main p {
    font-size: 1.2rem;
  }
  main .list_yellow li {
    font-size: 1.2rem;
    font-weight: 500;
  }
  main .list_yellow li:not(:last-of-type) {
    margin-bottom: 1rem;
  }
  main .list_yellow li::before {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background-color: #E6E6A1;
    vertical-align: middle;
    display: inline-block;
    margin-right: 10px;
  }
  main .bubble {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.1em;
    background-color: #E5FCFF;
    border: 3px solid #63CCD9;
    padding: 10px;
    text-align: center;
    position: relative;
    margin-bottom: 40px;
    color: #63CCD9;
  }
  main .bubble:not(:first-of-type) {
    margin-top: 40px;
  }
  main .bubble::before, main .bubble::after {
    content: "";
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
            clip-path: polygon(0 0, 50% 100%, 100% 0);
  }
  main .bubble::before {
    background-color: #63CCD9;
    width: 27px;
    height: 27px;
    bottom: -27px;
  }
  main .bubble::after {
    background-color: #E5FCFF;
    width: 25px;
    height: 25px;
    bottom: -20px;
  }
  main .tc_blue {
    color: #63CCD9;
    font-weight: 700;
  }
  main #lead {
    background-image: url(../images/owschool/lead_bg.png);
    padding: 40px 0;
  }
  main #lead .img_lead {
    display: block;
    margin: 0 auto;
  }
  main #lead h2, main #lead p {
    text-align: center;
  }
  main #lead h2 {
    margin-bottom: 30px;
  }
  main #lead .text_chance {
    font-size: 2rem;
  }
  main #lead ul {
    margin: 30px 0;
  }
  main #lead ul li div {
    background-color: #63CCD9;
    padding: 10px 20px;
    border-radius: 10px;
    max-width: 90px;
    min-height: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    margin: 0 auto 10px;
  }
  main #lead ul li p {
    line-height: 1.4;
  }
  main #lead ul li:not(:last-of-type) {
    margin-bottom: 20px;
  }
  main #lead ul li:not(:last-of-type) div::before {
    content: "";
    background-image: url(../images/owschool/free.png);
    position: absolute;
    top: -20px;
    left: -20px;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  main #about h3 {
    color: #63CCD9;
    font-size: 2rem;
    letter-spacing: 0.1em;
    padding-bottom: 30px;
    font-weight: 500;
  }
  main #about h3::after {
    content: "";
    display: block;
    background-color: #ACBDBF;
    width: 40px;
    height: 2px;
    position: relative;
    bottom: -10px;
    left: 0;
  }
  main #about .imgleft {
    margin-bottom: 40px;
  }
  main #about .imgleft div {
    background: rgba(255, 255, 255, 0.8);
    padding: 10px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 100px;
    border-radius: 10px;
  }
  main #about .imgright {
    margin-bottom: 40px;
  }
  main #about .imgright div {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 100px;
    border-radius: 10px;
    z-index: 10;
  }
  main #about .list_yellow {
    margin-top: 20px;
  }
  main #about .btn {
    width: 95%;
    margin: 0 auto 60px;
  }
  main #school .inner > ul > li {
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
            box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  }
  main #school .inner > ul > li:not(:last-of-type) {
    margin-bottom: 30px;
  }
  main #school .inner > ul > li h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6F6F21;
    background-color: #E6E6A1;
    padding: 5px 10px;
    border-radius: 10px 10px 0 0;
  }
  main #school .inner > ul > li .list_yellow {
    margin-bottom: 10px;
  }
  main #school .inner > ul > li .imgleft {
    padding: 10px;
  }
  main #school .inner > ul > li .imgleft img {
    display: block;
    margin: 0 auto 10px;
  }
  main #school table {
    width: 100%;
    letter-spacing: 0;
  }
  main #school table th {
    font-size: 1.2rem;
    background: #C4C44B;
    color: #fff;
    text-align: center;
    font-weight: bold;
    border: 2px solid #fff;
    vertical-align: middle;
    padding: 5px;
    letter-spacing: 0.1em;
    width: 30%;
  }
  main #school table .thin {
    width: 30%;
  }
  main #school table .wide {
    width: 45%;
  }
  main #school table td {
    font-size: 1.2rem;
    background: #F7F7DE;
    font-weight: 500;
    text-align: center;
    border: 1px solid #C4C44B;
    vertical-align: middle;
    padding: 10px;
  }
  main #career p {
    text-align: center;
  }
  main #career .box {
    background-color: #F7F7DE;
    border-radius: 0 0 10px 10px;
    padding: 10px;
    position: relative;
    margin: 70px 0 20px;
    font-weight: 500;
  }
  main #career .box span {
    display: block;
    color: #fff;
    background-color: #C4C44B;
    border-radius: 10px 10px 0 0;
    padding: 5px 10px;
    max-width: 130px;
    position: absolute;
    left: 0;
    top: -50px;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  main #conditions dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1.2rem;
    margin-top: 20px;
  }
  main #conditions dl dt {
    min-height: 50px;
    background: #E6E6A1;
    color: #6F6F21;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 10px;
    font-weight: 700;
    width: 20%;
  }
  main #conditions dl dt:not(:last-of-type) {
    margin-bottom: 10px;
  }
  main #conditions dl dd {
    padding: 10px;
    font-weight: 500;
    width: 80%;
  }
  main #conditions ul {
    margin-bottom: 10px;
  }
  main #conditions ul li h4 {
    color: #fff;
    background-color: #C4C44B;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    text-align: center;
  }
  main #conditions ul li div {
    background-color: #F7F7DE;
    border-radius: 0 0 10px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
  main #conditions ul li div img {
    max-width: 100px;
  }
  main #conditions ul li p {
    color: #6F6F21;
    margin-top: auto;
    font-weight: 700;
    text-align: center;
  }
  main #conditions ul li:not(:last-of-type) {
    margin-bottom: 10px;
  }
  main #conditions .text_ftf {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
  }
  /*-------------------------------------------
  footer
  -------------------------------------------*/
  footer {
    padding: 20px 0;
    border-top: 2px solid #707070;
  }
  footer .f_logo {
    text-align: center;
  }
  footer li a {
    color: #868686;
    border-bottom: 1px solid #868686;
    display: block;
    padding: 20px;
  }
  footer a:hover {
    text-decoration: underline;
  }
  footer small {
    color: #868686;
    letter-spacing: 0;
    display: block;
    text-align: center;
    font-size: 0.8rem;
    padding: 10px;
  }
  .pagetop {
    width: 50px;
    height: 50px;
    border: 2px solid #0963b0;
    position: fixed;
    background: #fff;
    bottom: 20px;
    right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
  }
  .pagetop a {
    display: block;
    width: 15px;
    height: 15px;
    border-top: 4px solid #0963b0;
    border-left: 4px solid #0963b0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    margin-top: 10px;
  }
  /*---------------
  other
  ---------------*/
  .pconly {
    display: none !important;
  }
}/*# sourceMappingURL=smart-ow.css.map */