﻿@charset "utf-8";
/*----------------------------------------------
	font
------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family-Noto+Sans+JP:wght@400;700&display-swap');
/*----------------------------------------------
	reset
------------------------------------------------ */
html, 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, 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%;
  background: transparent;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, small {
  display: block;
}
address, caption, cite, code, dfn, em, strong, var {
  font-style: normal;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  max-width: 100% !important;
  height: auto;
  border: 0;
  vertical-align: bottom;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
ol, ul {
  list-style: none;
}
input, select {
  vertical-align: middle;
}
@media screen and (max-width:768px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
  img {
    max-width: 100%;
    height: auto;
  }
}
/*----------------------------------------------
	common
------------------------------------------------ */
html {
  font-size: 62.5%;
  height: 100%;
}
body {
  width: 100%;
  height: auto;
  font-family: Helvetica, 'Noto Sans JP', sans-serif;
  color: #333;
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
  background: #FFF;
  letter-spacing: .05em;
  -webkit-text-size-adjust: 100%;
}
* /*, *:before, *:after*/ {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
a img {
  border: none;
}
a {
  color: #333;
  text-decoration: none;
  outline: none;
}
a:visited {
  color: #333;
  text-decoration: none;
}
a:hover, a:hover img {
  filter: alpha(opacity-70);
  -ms-filter: alpha(opacity-07);
  -webkit-filter: alpha(opacity-70);
  -moz-filter: alpha(opacity-70);
  -o-filter: alpha(opacity-70);
  opacity: 0.7;
  transition: opacity .20s ease-in-out;
  -ms-transition: opacity .20s ease-in-out;
  -webkit-transition: opacity .20s ease-in-out;
  -moz-transition: opacity .20s ease-in-out;
  -o-transition: opacity .20s ease-in-out;
}
a:focus {
  outline: none;
}
/*----------------------------------------------
	header
------------------------------------------------ */
#header {
  width: 100%;
}
.hd_inner, .hd_logosec, #gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hd_inner {
  width: 100%;
  padding: 0 2%;
  align-items: center;
}
.hd_logosec {
  width: 245px;
  margin: 10px 0;
  align-items: flex-start;
}
.logo {
  width: 245px;
}
.hd_contents {
  width: 65%;
  flex-direction: column;
  justify-content: flex-end;
}
.hd_nav {
  width: 100%;
}
#gnav {
  width: 100%;
  margin: 20px 0;
}
#gnav li {
  position: relative;
  display: flex;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.1em;
}
#gnav li a {
  display: block;
  padding: 10px 0;
  width: 100%;
  color: #333333;
  align-self: center;
}
#gnav .gnav_sub {
  position: absolute;
  width: 250px;
  margin: 50px 0 0;
  left: -80px;
  visibility: hidden;
  opacity: 0;
  transition: .2s ease-in-out;
  z-index: 999;
}
#gnav > li:nth-child(2) > a:after {
  content: '>';
  display: inline-block;
  margin-left: 12px;
  transform: rotate(90deg) scaleY(1.7);
  background-size: contain;
  font-size: 1.2rem;
  line-height: 0;
}
#gnav .gnav_sub li {
  background: #fff;
}
#gnav .gnav_sub li + li {
  border-top: 1px solid #ddd;
}
#gnav .gnav_sub a {
  padding: 10px 20px;
  font-size: 1.4rem;
}
#gnav li:hover > ul {
  visibility: visible;
  opacity: 1;
}
#spbtn {
  display: none;
}
@media screen and (max-width: 1200px) {
  .hd_logosec {
    width: 100% !important;
  }
  .hd_inner {
    position: relative;
    padding: 0 5%;
    z-index: 999;
  }
  .logo {
    width: 160px;
  }
  #spbtnbox {
    display: block;
  }
  #spbtn {
    display: block;
    position: relative;
    width: 42px;
    height: 42px;
    margin: 10px 0px 0 0;
    z-index: 10;
    border: none;
    background: none;
  }
  #spbtn span {
    position: absolute;
    display: block;
    background: #666;
    width: 24px;
    height: 2px;
    left: 9px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
  }
  #spbtn span:first-child {
    top: 12px;
  }
  #spbtn span:nth-child(2) {
    margin-top: -1px;
    top: 50%;
  }
  #spbtn span:last-child {
    bottom: 12px;
  }
  #spbtn.gnavon span:first-child {
    -webkit-transform: translateY(8px) rotate(45deg);
    -moz-transform: translateY(8px) rotate(45deg);
    -ms-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
  }
  #spbtn.gnavon span:nth-child(2) {
    opacity: 0;
  }
  #spbtn.gnavon span:last-child {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    -moz-transform: translateY(-8px) rotate(-45deg);
    -ms-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
  }
  .hd_contents {
    display: none;
    position: absolute;
    width: 100%;
    top: 72px;
    left: 0;
    background: url("../img/spnav_bg.jpg") no-repeat right top;
    background-size: cover;
    z-index: 9999;
  }
  #gnav {
    flex-direction: column;
  }
  #gnav li {
    width: 100%;
    text-align: left;
    flex-direction: column;
    font-size: 1.6rem;
  }
  #gnav li a {
    padding: 10px 20px;
  }
  #gnav li .gnav_sub li {
    font-weight: normal;
    font-size: 1.4rem;
  }
  #gnav li .gnav_sub li a {
    padding: 5px 20px;
  }
  #gnav .gnav_sub {
    position: relative;
    width: 100%;
    margin: 0;
    left: 0;
    visibility: visible;
    opacity: 1;
  }
  #gnav .gnav_sub li {
    margin-top: 0;
    background: none;
  }
  #gnav > li:nth-child(2) > a:after {
    content: none;
  }
}
/*------------------------------------------------
	pagetop
------------------------------------------------*/
.pagetop {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 10;
}
.pagetop a {
  display: block;
  width: 50px;
  height: 50px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(../img/cmn_pagetop.png) 0 0 no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .pagetop {
    bottom: 25px;
    right: 25px;
  }
  .pagetop a {
    width: 40px;
    height: 40px;
  }
}
/*------------------------------------------------
	footer
------------------------------------------------*/
#footer {
  margin-top: 60px;
}
.footer_sec {
  padding: 40px 0;
  background: url("../img/footer_bg.jpg") no-repeat center;
  background-size: cover;
}
#footer .inner {
  margin: 0 auto;
}
#footer .inner {
  display: flex;
  justify-content: space-between;
}
.footer_sec .inner .ftr_sec:first-child {
  width: 30%;
}
.footer_sec .inner .ftr_sec {
  width: 32%;
}
.ftr_title {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 2rem;
}
.ftr_title a, .footer_sec .inner ul li a {
  color: #116845;
}
.footer_sec .inner ul li a {
  display: inline-block;
  padding: 3px 0;
  font-size: 1.4rem;
}
.footer_copy_sec {
  padding: 20px 0;
  text-align: center;
}
.footer_copy_sec .inner, .footer_sublist {
  display: flex;
}
.footer_sublist li {
  font-size: 1.4rem;
  margin-left: 2em;
}
.copyright {
  font-size: 1.2rem;
  color: #116845;
}
@media screen and (max-width: 1200px) {
  #footer {
    margin-top: 5vw;
  }
  #footer .inner {
    flex-wrap: wrap;
    padding: 0 4%;
  }
  .footer_sec .inner .ftr_sec:first-child {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
  .footer_sec .inner .ftr_sec .logo {
    display: inline-block;
    width: 100px;
  }
}
@media screen and (max-width: 768px) {
  #footer .inner {
    flex-direction: column;
  }
  .footer_sec {
    background: url("../img/footer_bg_sp.jpg") no-repeat left top;
    background-size: cover;
  }
  .footer_sec .inner .ftr_sec {
    width: 100%;
  }
  .footer_sublist {
    flex-direction: column;
    justify-content: center;
  }
  .footer_sublist li {
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .footer_sublist {
    margin-bottom: 30px;
  }
}
/*----------------------------------------------
	contents
------------------------------------------------ */
.inner {
  width: 1200px;
  margin: 0 auto;
}
.inner_n {
  width: 980px;
  margin: auto;
}
.main_sec {
  position: relative;
  margin-top: 80px;
}
.sec {
  margin-top: 100px;
}
.msec {
  margin-top: 50px;
}
.ssec {
  margin-top: 30px;
}
.txt_c {
  text-align: center;
}
.icg {
  color: #116845;
}
.c_btitle, .ctitle_hd .c_btitle {
  font-size: 3rem;
}
.top .c_btitle {
  font-size: 5rem;
}
.c_btitle span {
  display: block;
  font-weight: normal;
  font-size: 1.6rem;
}
.c_mtitle {
  font-size: 2.6rem;
}
.c_stitle {
  font-size: 2rem;
}
.c_bld {
  font-weight: 700;
}
.sec_box {
  display: flex;
  justify-content: space-between;
}
.about .sec_box_l, .counseling .sec_box_l {
  width: 25%;
}
.about .sec_box_r, .counseling .sec_box_r {
  width: 70%;
}
@media screen and (max-width: 1200px) {
  .inner {
    width: 100%;
    margin: auto;
  }
  .web .inner, .seminar .inner, .recruit .main_sec .inner, .outline .inner, .about .main_sec .inner, .about_access .inner, .counseling .inner, .privacy .inner, .security .inner,
    .mv_contact_sec .inner{
    padding: 0 4%;
  }
  .main_sec {
    margin-top: 30px;
  }
  .sec {
    margin-top: 50px;
  }
  .msec {
    margin-top: 30px;
  }
  .sec_box {
    flex-direction: column;
  }
  .about .sec_box_l, .about .sec_box_r, .counseling .sec_box_l, .counseling .sec_box_r {
    width: 100%;
  }
  .top .c_btitle {
    font-size: 4rem;
  }
  .c_btitle, .ctitle_hd .c_btitle {
    font-size: 2.8rem;
  }
  .c_mtitle {
    font-size: 2.2rem;
  }
  .c_stitle {
    font-size: 1.8rem;
  }
}
@media screen and (max-width:980px) {
  .inner_n {
    width: 100%;
    padding: 0 4%;
  }
  .ctitle_hd .c_btitle {
    font-size: 2rem;
  }
  .c_mtitle {
    font-size: 2rem;
  }
}
/*------------------------------------------------
    contact sec
------------------------------------------------*/
.mv_contact_sec {
  margin: 70px 0;
  text-align: center;
  letter-spacing: .09em;
}
.mv_contact_ctitle {
  font-size: 2rem;
  font-weight: 700;
}
.mv_contact_btn {
  display: inline-block;
  width: 45%;
  margin-top: 20px;
  background: #116845;
}
.mv_contact_btn a {
  display: block;
  padding: 10px;
  font-size: 2rem;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .mv_contact_ctitle {
    font-size: 1.6rem;
  }
  .mv_contact_btn {
    width: 70%;
  }
}