@charset "UTF-8";
/*========================================================
	Foundation
========================================================*/
html {
  overflow-y: scroll;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  background-repeat: no-repeat;
}

:before, :after {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

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

blockquote, q {
  quotes: none;
}

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

/*form*/
input::-webkit-input-placeholder, input:-moz-placeholder,
textarea::-webkit-input-placeholder, textarea:-moz-placeholder {
  color: #888;
}

input[type="button"], input[type="submit"], input[type="search"], input[type="reset"] {
  -webkit-appearance: none;
}

button, [type="button"], [type="reset"], [type="submit"], [role="button"] {
  cursor: pointer;
}

[disabled] {
  cursor: default;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

button {
  overflow: visible;
}

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

button:-moz-focusring, [type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button, html [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
}

button, select {
  text-transform: none;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

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

select::-ms-value {
  color: currentColor;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/*selection */
::-moz-selection, ::-moz-selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}
::-moz-selection, ::selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

caption, th {
  text-align: left;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:active, a:hover {
  outline-width: 0;
}

a:focus {
  outline: none;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-repeat: no-repeat;
}

*:before, *:after {
  text-decoration: inherit;
  vertical-align: inherit;
}

html {
  font-size: 62.5%;
  /* 16px x 0.625 = 10px(=1rem) */
  min-height: 100%;
  width: 100%;
  overflow-x: hidden;
}
@media screen and (max-width: 640px) {
  html {
    min-width: 100%;
  }
}

body {
  background-color: #fff;
  color: #231815;
  font-family: "Helvetica", "Arial", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  margin: 0 auto;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}
@media screen and (max-width: 640px) {
  body {
    min-width: 100%;
  }
}

img {
  max-width: 100%;
  height: auto;
  outline: none;
  border: none;
  margin: 0;
  padding: 0;
  vertical-align: top;
}
@media screen and (max-width: 640px) {
  img {
    width: 100%;
  }
}

a, a * {
  color: inherit;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
a:link, a:visited, a *:link, a *:visited {
  text-decoration: none;
}

@-ms-viewport {
  width: auto;
  initial-scale: 1;
}
/*========================================================
   Layout
========================================================*/
/*
	Header
--------------------------------------------------------*/
header {
  background: #231815;
  color: #fff;
}

/*___Style for PC___*/
@media screen and (min-width: 821px) {
  header {
    width: 100%;
    min-width: 1020px;
  }
  header .header-inner {
    width: 1000px;
    margin: 0 auto;
    padding: 30px 0 15px;
    position: relative;
  }
  header .header-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 1.6rem;
  }
  header .header-top .tel-box img {
    margin-bottom: 8px;
  }
  header .header-logo-juida {
    position: absolute;
    bottom: 20px;
    left: 0;
  }
  header .header-logo-juida img:last-child {
    margin-left: 10px;
    margin-top: 5px;
  }
}
/*___Style for SP___*/
@media screen and (max-width: 820px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 56px;
    z-index: 1000;
  }
  header .header-inner {
    width: 100%;
    height: 56px;
    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;
    position: relative;
    border-bottom: 1px solid #e60012;
  }
  header .header-logo {
    width: 200px;
    height: 31px;
  }
 
  header .header-logo img {
    width: 200px;
    height: 31px;
  }
  header .tel-box {
    width: 200px;
    margin: 20px auto 0;
    text-align: center;
  }
  header .tel-box p {
    text-align: right;
    margin-top: 4px;
    margin-right: 18px;
    font-size: 0.8em;
  }
  header .header-logo-juida {
    margin: 0 auto;
    margin-top: 15px;
    text-align: center;
  }
  header .header-logo-juida img:first-of-type {
    width: 100px;
  }
  header .header-logo-juida img:last-of-type {
    width: 55px;
    margin-top: 5px;
    margin-left: 5px;
  }
}
/*
	Globalnavi
--------------------------------------------------------*/
/*___Style for PC___*/
@media screen and (min-width: 821px) {
  header #menu-trigger {
    display: none;
  }
  header .menu-bg {
    display: none;
  }
  header #g-nav {
    width: 70%;
    margin-left: 30%;
    margin-top: 50px;
  }
  header #g-nav .list {
    width: 100%;
    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;
  }
  header #g-nav .list a {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    padding-left: 25px;
    position: relative;
  }
  header #g-nav .list a:before {
    content: "";
    background: url(../images/common/icon_gnav.svg) no-repeat left center;
    background-size: cover;
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 2px;
  }
  header #g-nav .list a:hover:before, header #g-nav .list li.current a:before {
    content: "";
    background: url(../images/common/icon_gnav_on.svg) no-repeat left center;
    background-size: cover;
  }
}
/*___Style for SP___*/
@media screen and (max-width: 820px) {
  header {
    /*スマホ用メニュー開閉ボタン*/
  }
  header #g-nav {
    width: 100%;
    display: none;
    margin: 0;
    position: absolute;
    z-index: 110;
    top: 56px;
    left: 0;
    padding-bottom: 20px;
    border: none;
    -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
            box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    background-color: #231815;
  }
  header #g-nav .list li {
    font-size: 1.2em;
    width: 100%;
    border-bottom: 1px solid #85858578;
    padding: 10px 20px;
    position: relative;
  }
  header #g-nav .list li a {
    width: 100%;
    height: 100%;
    display: block;
  }
  header #g-nav .list li a:after {
    content: "";
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  header #menu-trigger {
    display: inline-block;
    -webkit-transition: all .4s;
    transition: all .4s;
    cursor: pointer;
    z-index: 200;
    margin: 10px;
    width: 30px;
    height: 21px;
    position: absolute;
    top: 8px;
    right: 0;
  }
  header #menu-trigger span {
    display: inline-block;
    -webkit-transition: all .4s;
    transition: all .4s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    cursor: pointer;
    position: absolute;
    background: #e60012;
    width: 30px;
    height: 2px;
    left: 0;
    margin: auto;
  }
  header #menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  header #menu-trigger span:nth-of-type(2) {
    top: 0;
    bottom: 0;
  }
  header #menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  header.active #menu-trigger {
    opacity: 1;
    filter: alpha(opacity=100);
    zoom: 1;
  }
  header.active #menu-trigger span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
            transform: translateY(10px) rotate(-45deg);
  }
  header.active #menu-trigger span:nth-of-type(2) {
    opacity: 0;
  }
  header.active #menu-trigger span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) rotate(45deg);
            transform: translateY(-9px) rotate(45deg);
  }
  header .menu-bg {
    display: none;
  }
  header.active > .menu-bg {
    display: block;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100vw;
    height: 100vh;
    z-index: 100;
    position: fixed;
    top: 56px;
  }

  html.active, body.active {
    overflow: hidden;
    height: 100%;
  }
}
/*
	Footer
--------------------------------------------------------*/
footer {
  clear: both;
  color: #fff;
  background: #231815;
}
footer .item:first-of-type {
  font-size: 1.3rem;
}
footer .item:nth-of-type(2) {
  font-size: 1.7rem;
}
footer .item:nth-of-type(2) li {
  margin-bottom: 10px;
}
footer .item:nth-of-type(2) a:hover {
  border-bottom: solid 1px #fff;
  opacity: 0.7;
  filter: alpha(opacity=70);
  zoom: 1;
}
footer .item:last-of-type {
  font-size: 1.4rem;
  line-height: 1.6;
}

/*___Style for PC___*/
@media screen and (min-width: 641px) {
  footer {
    width: 100%;
    min-width: 1020px;
    padding: 30px 0 20px;
    margin-top: 120px;
  }
  footer .ft-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  footer .ft-inner span {
    display: none;
  }
  footer .ft-logo {
    width: 350px;
    margin-bottom: 20px;
  }
  footer .item:first-of-type {
    width: 370px;
  }
  footer .item:last-of-type {
    width: 340px;
  }

  footer .inner .grid-inner{
    display: flex;
    justify-content: space-evenly;
    width: 60%;
    margin: 10px auto 50px;
  }
}
/*___Style for SP___*/
@media screen and (max-width: 640px) {
  footer {
    margin-top: 50px;
    padding-top: 20px;
    width: 100%;
  }
  footer .ft-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    width: 100%;
  }
  footer .item:first-of-type {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    font-size: 1.0rem;
    background: #000;
    padding: 10px;
  }
  footer .item:nth-of-type(2) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-bottom: 20px;
  }
  footer .item:nth-of-type(2) li {
    display: inline-block;
    margin: 5px 15px;
  }
  footer .item:last-of-type {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding-bottom: 10px;
    font-size: 1.3rem;
  }

  footer .inner .grid-inner{
    display: grid;
    grid-template-rows: 89px;
    grid-template-columns: 140px 140px;
    grid-gap: 20px;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 30px;
  }

}
/*
	Sidebar
--------------------------------------------------------*/
/*
	Common
--------------------------------------------------------*/
/*
	  Layout
------------------------*/
.inner {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (max-width: 640px) {
  .inner {
    width: 100%;
    padding-left: 3vw;
    padding-right: 3vw;
  }
}

@media screen and (min-width: 641px) {
  .flex-btw {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

/*__Button__*/
.btn {
  background: #e60012;
  color: #fff;
  font-size: 2rem;
  border: 2px solid #e60012;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 1em 9px 1.5em;
  position: relative;
  margin: 25px auto;
  display: block;
  width: 16.5em;
  text-align: center;
}
.btn.btn_gray {
  background: #666;
}
.btn:before {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 1em;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.btn:hover {
  background: #fff;
  color: #e60012;
  border: 2px solid #e60012;
}
.btn:hover:before {
  border-color: #e60012;
}
@media screen and (max-width: 640px) {
  .btn {
    font-size: 1.6rem;
  }
}

/*
	  Pager Style
------------------------*/
.wp-pagenavi {
  clear: both;
  text-align: center;
  line-height: 1;
  margin: 0 auto;
  padding-top: 60px;
}
.wp-pagenavi a, .wp-pagenavi span {
  background-color: #fff;
  border: 1px solid #87d0ee;
  margin-left: 5px;
  width: 37px;
  height: 36px;
  display: inline-block;
  padding: 10px;
  text-decoration: none;
}
.wp-pagenavi span.pages, .wp-pagenavi a.first, .wp-pagenavi a.last {
  display: none;
}
.wp-pagenavi span.extend {
  border: none;
}
.wp-pagenavi a:hover {
  color: #FFF;
  background-color: #87d0ee;
}
.wp-pagenavi span.current, .wp-pagenavi a.current {
  background-color: #87d0ee;
  color: #fff;
}
.wp-pagenavi span.current:hover, .wp-pagenavi a.current:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  zoom: 1;
}
.wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink, .wp-pagenavi .link {
  width: auto;
  min-width: 37px;
}
.wp-pagenavi .previouspostslink:hover, .wp-pagenavi .nextpostslink:hover, .wp-pagenavi .link:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  zoom: 1;
}
@media screen and (max-width: 640px) {
  .wp-pagenavi {
    margin: 0 auto;
    padding-top: calc(40/320*100vw);
  }
  .wp-pagenavi span.pages {
    width: 100%;
    margin-right: 0;
    margin-bottom: 17px;
    height: 1em;
  }
  .wp-pagenavi a.page.larger, .wp-pagenavi span.extend {
    display: none;
  }
}

/*
	TopPage
--------------------------------------------------------*/
/*__Main Slider__*/
.mainvisual {
  width: 100%;
  min-width: 1020px;
  overflow-x: hidden;
}
@media screen and (max-width: 640px) {
  .mainvisual {
    width: 100%;
    min-width: 100%;
    margin-top: 56px;
  }
}

.mainvisual-inner {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 1020px;
}

/* swiper.js */
.swiper-container {
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 1;
}

.swiper-container img {
  width: 100%;
  height: 100%;
}

.swiper-button-prev,
.swiper-button-next {
  background: url(../images/top/slide-arrow.png) no-repeat;
  background-size: cover;
  width: 56px;
  height: 55px;
  margin: auto;
  top: 0;
  bottom: 0;
}
@media screen and (max-width: 640px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 25px;
    height: 25px;
  }
}

.swiper-button-prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 0.7;
}

/*スライド画像上のテキスト*/
.swiper-slide {
  position: relative;
}
.swiper-slide .txt {
  position: absolute;
  font-size: 4.8rem;
  color: #fff;
  font-weight: bold;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.8);
  margin: auto;
  top: 0;
  bottom: 0;
  left: 85px;
  height: 1em;
  line-height: 1;
}
@media screen and (max-width: 640px) {
  .swiper-slide .txt {
    font-size: 3rem;
    left: 0;
    right: 0;
    bottom: 30px;
    top: auto;
    text-align: center;
    text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
  }
}

/*__top-contents__*/
.top-contents {
  width: 100%;
  min-width: 1020px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .top-contents {
    min-width: 100%;
  }
}
.top-contents .ttl {
  font-size: 2.8rem;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .top-contents .ttl {
    font-size: 2.6rem;
  }
}

/*sec_01*/
.top-contents .sec01 {
  background-color: #f08300;
}
.top-contents .sec01 .item:first-child {
  font-weight: bold;
  line-height: 1.2;
}
.top-contents .sec01 .item:last-child {
  color: #fff;
}
@media screen and (min-width: 641px) {
  .top-contents .sec01 {
    padding: 40px 0;
  }
  .top-contents .sec01 .item:first-child {
    margin-right: 70px;
    font-size: 3.2rem;
    line-height: 1.2;
  }
  .top-contents .sec01 .item:last-child {
    line-height: 1.8;
    font-weight: bold;
    letter-spacing: -0.01em;
  }
  .top-contents .sec01 .ttl {
    width: 362px;
    height: 45px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 640px) {
  .top-contents .sec01 {
    text-align: center;
    padding: 25px 0 40px;
  }
  .top-contents .sec01 .ttl {
    width: 240px;
    height: 31px;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  .top-contents .sec01 .item:first-child {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .top-contents .sec01 .item:last-child {
    line-height: 1.8;
    text-align: left;
  }
}

/*sec02*/
.top-contents .sec02 {
  background-color: #f2f2f3;
  padding: 50px 0;
}
.top-contents .sec02 .item {
  width: 302px;
  border: 1px solid #231815;
  background-color: #fff;
}
.top-contents .sec02 .item img {
  width: 100%;
}
.top-contents .sec02 .item .ttl {
  text-align: center;
  padding: 8px;
  padding-left: 25px;
  position: relative;
}
.top-contents .sec02 .item .ttl:before {
  content: "";
  background: url(../images/common/icon-arrow-circle.png) no-repeat;
  background-size: cover;
  width: 21px;
  height: 20px;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  margin-left: -25px;
}
.top-contents .sec02 .item p {
  padding: 0 10px 25px 14px;
  word-break: break-word;
}
.top-contents .sec02 .item:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  zoom: 1;
}
@media screen and (max-width: 640px) {
  .top-contents .sec02 {
    padding: calc(40/375*100vw) 0;
  }
  .top-contents .sec02 .item {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: calc(20/375*100vw);
  }
  .top-contents .sec02 .item > a:first-of-type {
    pointer-events: none;
  }
  .top-contents .sec02 .item .ttl {
    padding: 6px;
    line-height: 1;
    padding-left: 20px;
    margin-top: -1px;
    background-color: #e60012;
    color: #fff;
  }
  .top-contents .sec02 .item .ttl:before {
    content: "";
    width: 16px;
    height: 15px;
    margin-left: -20px;
  }
  .top-contents .sec02 .item p {
    padding: 10px 10px 25px 14px;
  }
}

/*sec03*/
.top-contents .sec03 {
  padding: 30px 0;
  text-align: center;
}
.top-contents .sec03 .ttl {
  border: 1px solid #231815;
  padding: 0px 30px;
  display: inline-block;
  margin-bottom: 20px;
}
.top-contents .sec03 .map {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin-bottom: 10px;
}
.top-contents .sec03 .map iframe,
.top-contents .sec03 .map object,
.top-contents .sec03 .map embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top-contents .sec03 p {
  text-align: left;
}
@media screen and (max-width: 640px) {
  .top-contents .sec03 {
    padding: calc(40/375*100vw) 0;
  }
}

/*sec04*/
@media screen and (min-width: 641px) {
  .top-contents .sec04 {
    padding: 30px 0;
  }
  .top-contents .sec04 .inner {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .top-contents .sec04 .fb-box{
    width: 100%;
    height: auto;
    flex: 1;
  }
  .top-contents .sec04 .item {
    width: 450px;
    margin-left: 30px;
  }
  .top-contents .sec04 .item .ttl {
    font-size: 2.7rem;
    margin-bottom: 10px;
  }


}
@media screen and (max-width: 640px) {
  .top-contents .sec04 {
    padding: calc(40/375*100vw) 0;
  }
  .top-contents .sec04 .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top-contents .sec04 .fb-box {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .top-contents .sec04 .fb-box iframe {
    width: 100%;
  }
  .top-contents .sec04 .item {
    width: 100%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    padding-bottom: calc(30/375*100vw);
  }
  .top-contents .sec04 .item .ttl {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: bold;
  }
}

/*
	SubPages
--------------------------------------------------------*/
/*__page-ttl-area__*/
.page-ttl-area {
  background-color: #f08300;
  color: #fff;
  padding: 15px 0;
}
@media screen and (min-width: 820px) {
  .page-ttl-area {
    min-width: 1020px;
  }
}
@media screen and (max-width: 821px) {
  .page-ttl-area {
    margin-top: 56px;
    padding: 5px;
  }
}
.page-ttl-area .inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 641px) {
  .page-ttl-area .inner {
    height: 70px;
  }
}
@media screen and (min-width: 641px) {
  .page-ttl-area .item {
    width: 320px;
  }
}
@media screen and (max-width: 640px) {
  .page-ttl-area .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.page-ttl-area .page-ttl-l {
  font-size: 4.5rem;
  font-weight: bold;
  line-height: 1.1;
}
@media screen and (max-width: 640px) {
  .page-ttl-area .page-ttl-l {
    font-size: 1.8rem;
    margin-right: 15px;
  }
}
.page-ttl-area .page-ttl {
  font-weight: bold;
}
@media screen and (min-width: 641px) {
  .page-ttl-area .page-ttl {
    font-size: 3.7rem;
    width: calc(100% - 320px);
  }
}
@media screen and (max-width: 640px) {
  .page-ttl-area .page-ttl {
    font-size: 2.0rem;
  }
}

/*bread_crumb*/
.bread_crumb_list ul {
  margin: 0;
  font-size: 2.0rem;
  font-weight: normal;
}
@media screen and (max-width: 640px) {
  .bread_crumb_list ul {
    font-size: 1.4rem;
  }
}
.bread_crumb_list ul li {
  display: inline;
  margin-right: 0;
}
.bread_crumb_list ul li:after {
  content: '>';
  padding-left: 0.5em;
}
.bread_crumb_list ul li:last-child:after {
  content: none;
}
.bread_crumb_list ul li a {
  text-decoration: none;
}
.bread_crumb_list ul li a:hover {
  text-decoration: underline;
}

/*__subvisual*/
.subvisual {
  margin-bottom: 20px;
  width: 100%;
}
.subvisual img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 641px) {
  .subvisual {
    min-width: 1020px;
  }
}

/*__sub-contents common__*/
.sub-contents {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 641px) {
  .sub-contents {
    min-width: 1020px;
  }
}
.sub-contents .ttl {
  font-size: 3.4rem;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .sub-contents .ttl {
    font-size: 2.4rem;
  }
}
.sub-contents .ttl-box {
  background-color: #f2f2f3;
  text-align: center;
  padding: 25px 0;
  margin: 30px 0;
}
.sub-contents .ttl-box .inner .ttl {
  background-color: #231815;
  color: #fff;
  margin-bottom: 0.4em;
  padding: 5px;
}
.sub-contents .ttl-box .inner p {
  margin: 0 auto;
  text-align: left;
}
@media screen and (min-width: 641px) {
  .sub-contents .ttl-box .inner p {
    font-size: 2.3rem;
    font-weight: 600;
    width: 90%;
    max-width: 890px;
    padding-bottom: 10px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 640px) {
  .sub-contents .ttl-box .inner p {
    font-size: 1.6rem;
  }
}
.sub-contents .ttl-s {
  font-size: 2.2rem;
  font-weight: bold;
  padding: 15px 20px;
  margin: 1em 0;
  background-color: #dcdddd;
}
@media screen and (max-width: 640px) {
  .sub-contents .ttl-s {
    font-size: 1.9rem;
    text-align: center;
    margin: 10px 0;
    padding: 7px;
  }
}
.sub-contents .ttl-ss {
  font-size: 2.6rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 7px 0;
  margin-top: 35px;
  background-color: #f3962c;
}
@media screen and (max-width: 640px) {
  .sub-contents .ttl-ss {
    font-size: 2.0rem;
    margin-top: 15px;
  }
}
.sub-contents .table-style01 {
  font-size: 2.3rem;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1;
}
.sub-contents .table-style01 th, .sub-contents .table-style01 td {
  border-bottom: 1px solid #727171;
}
.sub-contents .table-style01 .border-bold th, .sub-contents .table-style01 .border-bold td {
  border-bottom: 2px solid #231815;
}
.sub-contents .table-style01 th {
  color: #fff;
  text-align: center;
  background-color: #9fa0a0;
  padding: 25px;
  border-right: 1px solid #727171;
}
.sub-contents .table-style01 td {
  padding-left: 30px;
}
.sub-contents .table-style01 td .small {
  font-size: 0.7em;
}
@media screen and (max-width: 640px) {
  .sub-contents .table-style01 {
    font-size: 1.6rem;
    font-weight: normal;
  }
  .sub-contents .table-style01 th, .sub-contents .table-style01 td {
    display: block;
    width: 100%;
    padding: 10px;
    border-left: 1px solid #727171;
  }
  .sub-contents .table-style01 tr:first-of-type {
    border-top: 1px solid #727171;
  }
  .sub-contents .table-style01 td {
    border-right: 1px solid #727171;
  }
}

/*__Service__*/
@media screen and (min-width: 641px) {
  .service p {
    font-weight: 600;
    font-size: 2rem;
  }
}
@media screen and (min-width: 641px) {
  .service .ttl-s span {
    margin-right: 1em;
  }
}
@media screen and (max-width: 640px) {
  .service .ttl-s span {
    display: block;
  }
}
.service .sec01 {
  text-align: center;
  margin: 20px 0 30px;
}
@media screen and (min-width: 641px) {
  .service .sec01 .ttl {
    font-size: 3.9rem;
    margin-bottom: 25px;
  }
}
.service .sec01 .ttl-s {
  font-size: 2.8rem;
  background-color: transparent;
  text-align: center;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 640px) {
  .service .sec01 .ttl-s {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 640px) {
  .service .sec01 .item {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 641px) {
  .service .sec01 .item img {
    width: 330px;
    height: auto;
  }
}
@media screen and (max-width: 640px) {
  .service .sec01 .item p {
    padding: 0 12%;
  }
}
@media screen and (min-width: 641px) {
  .service .sec03 .ttl-s, .service .sec03 .ttl-ss, .service .sec04 .ttl-s, .service .sec04 .ttl-ss {
    margin: 0;
  }
}
@media screen and (min-width: 641px) {
  .service .sec03 table th, .service .sec04 table th {
    width: 50%;
    padding: 18px;
  }
}
.service .sec03 table td, .service .sec04 table td {
  text-align: center;
}
.service .sec05 .ttl-box a {
  text-decoration: underline;
  -webkit-transition: 2s;
  transition: 2s;
}
.service .sec05 .ttl-box a:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
  zoom: 1;
}
@media screen and (min-width: 641px) {
  .service .sec05 > .inner:last-of-type {
    padding-bottom: 15px;
    border-bottom: 1px solid #727171;
  }
  .service .sec05 > .inner:last-of-type .ttl-ss {
    margin-bottom: 5px;
  }
  .service .sec05 > .inner:last-of-type p {
    font-size: 2.3rem;
    line-height: 1.6;
    width: 90%;
    max-width: 890px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 640px) {
  .service .sec05 .ttl-ss {
    margin-bottom: 10px;
  }
  .service .sec05 > .inner:last-of-type p {
    text-indent: -1em;
    padding-left: 1em;
  }
}

/*__School__*/
.school .page-ttl-area .inner {
  -webkit-box-pack: normal;
      -ms-flex-pack: normal;
          justify-content: normal;
}
@media screen and (min-width: 641px) {
  .school .page-ttl-area .item {
    width: 220px;
  }
}
.school .page-ttl-area .page-ttl {
  font-weight: normal;
  font-size: 1.6rem;
}
@media screen and (min-width: 641px) {
  .school .page-ttl-area .page-ttl {
    width: calc(100% - 220px);
  }
}
@media screen and (max-width: 640px) {
  .school .page-ttl-area .page-ttl {
    margin-top: 10px;
  }
}
.school .sec01 .ttl-box {
  margin-top: 0 !important;
}
@media screen and (max-width: 640px) {
  .school .sec01 .ttl-box .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.school .sec01 .ttl-box .inner p {
  font-size: 1.6rem;
  font-weight: normal;
  margin: 0;
}
.school .sec01 .ttl-box .inner p span {
  font-weight: 600;
}
@media screen and (min-width: 641px) {
  .school .sec01 .ttl-box .inner p {
    width: 750px;
    max-width: 750px;
  }
}
@media screen and (max-width: 640px) {
  .school .sec01 .ttl-box .inner p {
    line-height: 1.6;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.school .sec01 h3 {
  font-weight: 600;
  border-bottom: 1px solid #231815;
  padding-bottom: 2px;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (min-width: 641px) {
  .school .sec01 h3 {
    font-size: 2.1rem;
    width: 750px;
  }
}
@media screen and (max-width: 640px) {
  .school .sec01 h3 {
    font-size: 1.7rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.school .sec01 h3 span {
  font-weight: bold;
}
@media screen and (min-width: 641px) {
  .school .sec01 h3 span {
    font-size: 2.9rem;
  }
}
@media screen and (max-width: 640px) {
  .school .sec01 h3 span {
    font-size: 2.4rem;
    display: block;
    letter-spacing: 0;
  }
}
.school .sec01 img {
  width: 200px;
}
@media screen and (min-width: 641px) {
  .school .sec01 img {
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media screen and (max-width: 640px) {
  .school .sec01 img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: 15px auto;
  }
}
@media screen and (min-width: 641px) {
  .school .sec02 {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 640px) {
  .school .sec02 {
    margin-bottom: 40px;
  }
}
.school .ttl02 {
  color: #fff;
  font-weight: bold;
  background-color: #231815;
  margin-bottom: 20px;
  text-align: center;
  padding: 5px;
}
@media screen and (min-width: 641px) {
  .school .ttl02 {
    font-size: 3.4rem;
  }
}
.school .link-box .txt {
  color: #e60012;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (min-width: 641px) {
  .school .link-box .txt {
    font-size: 2.8rem;
  }
}
.school .link-box .link-list {
  margin: 20px 0 30px;
  overflow: hidden;
}
.school .link-box .link-list li {
  border: 3px dashed #f08300;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (min-width: 641px) {
  .school .link-box .link-list li {
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
    width: 310px;
    height: 73px;
  }
}
@media screen and (max-width: 640px) {
  .school .link-box .link-list li {
    width: 100%;
    height: 60px;
    margin-bottom: 10px;
  }
}
.school .link-box .link-list li:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  zoom: 1;
}
.school .link-box .link-list li a {
  color: #f08300;
  display: block;
  width: 100%;
  height: 100%;
  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;
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (min-width: 641px) {
  .school .link-box .link-list li a {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 640px) {
  .school .link-box .link-list li a {
    padding: 10px;
  }
}
@media screen and (max-width: 640px) {
  .school .sec-s {
    padding-top: 35px;
    margin-top: -56px;
  }
}
.school .sec-s .ttl-ss {
  margin-top: 25px;
  margin-bottom: 10px;
  text-align: left;
  padding: 7px 18px;
  position: relative;
}
@media screen and (max-width: 640px) {
  .school .sec-s .ttl-ss {
    padding: 7px;
    text-indent: -25px;
    padding-left: 40px;
  }
}
.school .sec-s .ttl-ss span {
  color: #231815;
  font-weight: 600;
}
@media screen and (min-width: 641px) {
  .school .sec-s .ttl-ss span {
    font-size: 2.1rem;
    text-align: right;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 18px;
    height: 24px;
  }
}
@media screen and (max-width: 640px) {
  .school .sec-s .ttl-ss span {
    font-size: 0.8em;
    text-align: center;
    display: block;
  }
}
@media screen and (max-width: 320px) {
  .school .sec-s .ttl-ss {
    padding: 7px 5px;
    position: relative;
    text-indent: -25px;
    padding-left: 40px;
  }
  .school .sec-s .ttl-ss span {
    font-size: 0.7em;
  }
}
.school .sec-s .top-box {
  margin-bottom: 15px;
}
.school .sec-s .top-box .txt01 {
  font-weight: 700;
  margin-bottom: 5px;
}
@media screen and (min-width: 641px) {
  .school .sec-s .top-box .txt01 {
    font-size: 2.1rem;
  }
}
.school .sec-s .top-box .txt02 {
  font-weight: 700;
}
@media screen and (min-width: 641px) {
  .school .sec-s .top-box .txt02 {
    font-size: 2.6rem;
  }
}
.school .sec-s .top-box .txt02 span {
  color: #e60012;
  border: 2px solid #e60012;
  padding: 2px 5px;
}
@media screen and (min-width: 641px) {
  .school .sec-s .top-box .txt02 span {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 640px) {
  .school .sec-s .top-box .txt02 span {
    font-size: 0.8em;
  }
}
@media screen and (max-width: 320px) {
  .school .sec-s .top-box .txt02 span {
    font-size: 0.8em;
    display: block;
    width: 8em;
    margin-bottom: 10px;
  }
}
.school .sec-s .top-box .txt03 {
  color: #727171;
  font-weight: 700;
}
@media screen and (min-width: 641px) {
  .school .sec-s .top-box .txt03 {
    font-size: 2.1rem;
  }
}
.school .sec-s .top-box .txt04 {
  color: #e60012;
  font-weight: 600;
  margin-top: 5px;
}
@media screen and (min-width: 641px) {
  .school .sec-s .top-box .txt04 {
    font-size: 2.0rem;
  }
}
.school .sec-s .box .ttl-ss02 {
  background-color: #efefef;
  padding: 4px 15px;
  font-weight: 700;
  margin: 15px 0;
}
@media screen and (min-width: 641px) {
  .school .sec-s .box .ttl-ss02 {
    font-size: 1.9rem;
  }
}
.school .sec-s .box .list li {
  text-indent: -11px;
  padding-left: 13px;
  padding-bottom: 3px;
  font-size: 1.5rem;
}
.school .sec-s .box .list li:before {
  content: "●";
}
@media screen and (min-width: 641px) {
  .school .sec03 .ttl02 {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 640px) {
  .school .sec03 .ttl02 {
    margin-bottom: 10px;
  }
}
.school .sec03 .txt01 {
  font-weight: 700;
}
@media screen and (min-width: 641px) {
  .school .sec03 .txt01 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 640px) {
  .school .sec03 .txt01 {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 641px) {
  .school .sec03 .txt02 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 640px) {
  .school .sec03 .txt02 {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 641px) {
  .school .sec03 .txt03 {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 640px) {
  .school .sec03 .txt03 {
    margin-bottom: 20px;
  }
}
.school .sec03 .txt04 {
  color: #e60012;
  font-weight: 700;
  display: block;
  border: 3px solid #e60012;
  padding: 4px;
  text-align: center;
}
@media screen and (min-width: 641px) {
  .school .sec03 .txt04 {
    font-size: 2.3rem;
  }
}
@media screen and (min-width: 641px) {
  .school .sec03 .btn {
    margin-bottom: 30px;
  }
}

/*__Company__*/
@media screen and (min-width: 641px) {
  .company .page-ttl-area .item {
    width: 530px;
  }
}
@media screen and (min-width: 641px) {
  .company .ttl-ss {
    font-size: 3.8rem;
    margin-top: 120px;
  }
}
@media screen and (max-width: 640px) {
  .company .ttl-ss {
    margin-top: 30px;
  }
}
@media screen and (min-width: 641px) {
  .company .sec01 {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 640px) {
  .company .sec01 {
    margin-bottom: 50px;
  }
}
.company .table-style01 th {
  background-color: #f2f2f3;
  color: #231815;
}
.company .table-style01 td {
  font-weight: normal;
  line-height: 1.4;
}
.company .table-style01 .bold {
  color: #f08300;
  font-weight: bold;
  display: block;
}
@media screen and (min-width: 641px) {
  .company .table-style01 th {
    width: 235px;
    font-weight: 600;
    text-align: left;
    padding: 25px 70px;
  }
  .company .table-style01 td {
    font-size: 2.2rem;
    padding: 10px 30px;
  }
  .company .table-style01 tr:last-of-type td {
    padding: 10px 15px;
  }
  .company .table-style01 tr:last-of-type td p {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  .company .table-style01 .bold {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 640px) {
  .company .table-style01 p {
    margin-bottom: 20px;
  }
}
.company .txt01 {
  color: #e60012;
  font-weight: 700;
  display: block;
  border: 3px solid #e60012;
  padding: 4px;
  text-align: center;
}
@media screen and (min-width: 641px) {
  .company .txt01 {
    font-size: 2.2rem;
    margin-top: 50px;
  }
}
@media screen and (max-width: 640px) {
  .company .txt01 {
    margin-top: 25px;
  }
}

/*__beginner__*/
.beginner .subvisual {
  margin-bottom: 0;
}
.beginner .ttl-box {
  margin-top: 0;
}
.beginner .ttl-box .inner p {
  color: #e60012;
  text-align: center;
}
@media screen and (min-width: 641px) {
  .beginner .ttl-box .inner p {
    font-size: 2.9rem;
  }
}
@media screen and (min-width: 641px) {
  .beginner dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.beginner dl dt {
  background-color: #f08300;
  border-radius: 100%;
  color: #fff;
  font-weight: bold;
  font-style: italic;
  line-height: 1.0;
  text-align: center;
  padding-top: 20px;
}
@media screen and (min-width: 641px) {
  .beginner dl dt {
    margin-bottom: 50px;
    width: 120px;
    height: 120px;
    font-size: 3.1rem;
    margin-right: 20px;
  }
}
@media screen and (max-width: 640px) {
  .beginner dl dt {
    margin: 0 auto;
    margin-bottom: 15px;
    width: 100px;
    height: 100px;
    font-size: 2.8rem;
  }
}
.beginner dl dt span {
  display: block;
  font-style: normal;
}
@media screen and (min-width: 641px) {
  .beginner dl dt span {
    font-size: 6rem;
  }
}
@media screen and (max-width: 640px) {
  .beginner dl dt span {
    font-size: 4rem;
  }
}
@media screen and (min-width: 641px) {
  .beginner dl dd {
    width: calc(100% - 140px);
    font-size: 2.5rem;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 640px) {
  .beginner dl dd {
    text-align: center;
    padding: 0 15px;
    margin-bottom: 30px;
  }
}
.beginner dl dd span {
  font-weight: bold;
  padding-bottom: 5px;
  display: block;
}
@media screen and (min-width: 641px) {
  .beginner dl dd span {
    font-size: 2.9rem;
  }
}

/*__Contact__*/
@media screen and (min-width: 641px) {
  .contact .inner > p {
    margin: 35px 0;
  }
}
@media screen and (max-width: 640px) {
  .contact .inner > p {
    margin: 15px 0;
  }
}
.contact .contact-form th, .contact .contact-form td {
  width: 100%;
  display: block;
}
.contact .contact-form th {
  padding-bottom: 5px;
}
@media screen and (min-width: 641px) {
  .contact .contact-form th {
    font-size: 2.2rem;
  }
}
.contact .contact-form td {
  padding-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 640px) {
  .contact .contact-form td {
    padding-bottom: 15px;
  }
}
.form-item-input,
.form-item-textarea,
select {
  border: 1px solid #898989;
  width: 100%;
}
@media screen and (min-width: 641px) {
  .contact .contact-form input, .contact .contact-form select, .contact .contact-form textarea {
    padding: 20px;
  }
}
@media screen and (max-width: 640px) {
  .contact .contact-form input, .contact .contact-form select, .contact .contact-form textarea {
    padding: 6px 10px;
  }
}
.form-item-textarea {
  height: 23rem;
}
.contact .contact-form .td-option:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 11px 0 11px;
  border-color: #000000 transparent transparent transparent;
  position: absolute;
  top: 25px;
  right: 20px;
  pointer-events: none;
}
@media screen and (max-width: 640px) {
  .contact .contact-form .td-option:after {
    border-width: 9px 6px 0 6px;
    top: 14px;
    right: 10px;
  }
}
.contact .button-submit input {
  background: #f08300;
  color: #fff;
  border: none;
  display: block;
  margin: 0 auto;
  padding: 10px;
  font-weight: bold;
}
@media screen and (min-width: 641px) {
  .contact .button-submit input {
    font-size: 2.8rem;
    width: 560px;
  }
}

/*========================================================
	Utility
========================================================*/
/*__display__*/
.u-show {
  display: block;
  visibility: visible;
  opacity: 1;
}

.u-hidden {
  display: none;
  visibility: hidden;
  opacity: 0;
}

@media screen and (min-width: 639px) {
  .u-sp {
    display: none !important;
  }

  .u-pc {
    display: block !important;
  }
}
@media screen and (max-width: 640px) {
  .u-sp {
    display: block !important;
  }

  .u-pc {
    display: none !important;
  }
}
/*__cleawrfix__*/
.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

/*__margin__*/
.u-mgt0 {
  margin-top: 0 !important;
}

.u-mgt05 {
  margin-top: 5px !important;
}

.u-mgt10 {
  margin-top: 10px !important;
}

.u-mgt15 {
  margin-top: 15px !important;
}

.u-mgt20 {
  margin-top: 20px !important;
}

.u-mgt30 {
  margin-top: 30px !important;
}

.u-mgt40 {
  margin-top: 40px !important;
}

.u-mgt50 {
  margin-top: 50px !important;
}

.u-mgt60 {
  margin-top: 60px !important;
}

.u-mgb0 {
  margin-bottom: 0 !important;
}

.u-mgb05 {
  margin-bottom: 5px !important;
}

.u-mgb10 {
  margin-bottom: 10px !important;
}

.u-mgb15 {
  margin-bottom: 15px !important;
}

.u-mgb20 {
  margin-bottom: 20px !important;
}

.u-mgb30 {
  margin-bottom: 30px !important;
}

.u-mgb40 {
  margin-bottom: 40px !important;
}

.u-mgb50 {
  margin-bottom: 50px !important;
}

.u-mgb60 {
  margin-bottom: 60px !important;
}

.u-mgr0 {
  margin-right: 0 !important;
}

.u-mgr05 {
  margin-right: 5px !important;
}

.u-mgr10 {
  margin-right: 10px !important;
}

.u-mgr15 {
  margin-right: 15px !important;
}

.u-mgr20 {
  margin-right: 20px !important;
}

.u-mgr30 {
  margin-right: 30px !important;
}

.u-mgr40 {
  margin-right: 40px !important;
}

.u-mgr50 {
  margin-right: 50px !important;
}

.u-mgr60 {
  margin-right: 60px !important;
}

/* 2023-06-28追加css */
.top-license h2 {
  color: #e60012;
}

.top-license p {
  margin-top: 20px;
}

.top-license a {
  font-weight: bold;
  font-size: 20px;
  margin-top: 20px;
  display: block;
  transition: .3s;
}
.top-license a img {
 padding-top: 3px;
 max-width: 21px;
}
.top-license a:hover {
  opacity: .7;
}

.license .bread_crumb_list ul {
  font-size: 1.6rem;
  line-height: 1.7;
}

.license .sub-contents {
  margin-top: 40px;
}

.boxtwo {
  display: flex;
  margin-top: 30px;
 }
 @media screen and (max-width: 767px) {
  .boxtwo {
    display: block;
  }
 }
 
 /*ライセンスページ*/
  .license-list-body h3 {
    font-size: 19px;
    color: #e60012;
  }
  .license-list-body  {
    font-size: 16px;
    margin-left: 30px;
  }
  @media screen and (max-width: 767px) {
    .license-list-body  {
      margin-top: 20px;
      margin-left: 0;
    }
  }
  
  .license-message {
   padding-left: 15px;
   padding-right: 15px;
   margin-top: 28px;
   margin-bottom: 20px;
  }
 
  
  .proof-lists li {
    position: relative;
    margin-top: 6px;
    line-height: 1.6;
    padding-left: 20px;
  }
  .proof-lists li::before {
    content: '・';
    left: 0;
    position: absolute;
  }
  
  .license-method {
    margin-top: 40px;
  }
  
  .c-red {
    color: #e60012;
  }
  
  .license-method li{
    margin-top: 30px;
  }
  
  .license-price-text {
    font-size: 17px;
    font-weight: 500;
  }
  
  .license-price-table {
    margin-top: 20px;
    width: 100%;
    font-size: 16px;
  }
  .license-price-table th {
    width: 33.333%;
    text-align: left;
    padding-left: 10px;
    background: #f3962c;
  }

  .license-price-table td {
    padding-left: 10px;
  }

  .license-price-table th,
  .license-price-table td {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #898989;
  }
  
  .license-price-table th:nth-child(n + 2),
  .license-price-table td:nth-child(n + 2),
  .border {
    border-left: 1px solid #898989;
  }
  
  .license-other-title {
    margin-top: 34px;
    font-weight: 500;
    font-size: 18px;
  }
  
  .license-price-table02 td {
    border-collapse: collapse;
    vertical-align: top;
  }
  .license-price-table02 th {
   background: #ddd;
   color: #000;
 }
 .license-price-table02 {
  margin-bottom: 20px;
 }
  
  .license-price-table02 td:last-of-type,
  .license-price-table td:last-of-type{
    text-align: right;
    padding-right: 10px;
  }
  
  .license-price-table{
    width: 100%;
    min-width: 620px;
  }
  
  .license-price-table02 th:nth-child(2) {
    text-align: center;
   }
  .license-list figure {
   border: solid 1px #000;
   padding-top: 20px;
   padding-bottom: 20px;
   margin: 0;
  }
  
  
  .long-ttx {
    word-break: break-all;
    font-size: 15px;
    margin-top: 10px;
  }
 
  .course-name {
   margin-top: 20px;
   padding: 8px 12px;
   background: #ddd;
   font-weight: 400!important;
  }
 
  @media(min-width:768px) {
   .is-sp {
 display: none;
   }
  }
.license-price-table02 td:nth-child(2),
.license-price-table02 td:nth-child(3) {
width: calc(33% / 2);
}

/*ナビゲーション*/
nav ul ul{
  display: block;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
  position: relative;
}
nav ul li li a{
  padding:10px;
  font-size: 14px!important;
}

nav ul li a:hover{
  color:#fff; 
}

/*下の階層を持っているulの指定*/
nav li.has-child ul{
position: absolute;
left:0;
top:50px;
z-index: 4;
  /*形状を指定*/
background:#231815;
width:180px;
  /*はじめは非表示*/
visibility: hidden;
opacity: 0;
  /*アニメーション設定*/
transition: all .3s;
}

/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
visibility: visible;
opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a{
color: #fff;
border-bottom:solid 1px rgba(255,255,255,0.6);
}

nav li.has-child ul li:last-child a{
border-bottom:none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
background:#e60012;
}

@media(min-width:821px) {
  .sp-only-nav-license {
    display: none;
  }
}
@media screen and (max-width:820px){
  nav li.has-child ul
  {
display: none;
}
}

.gnavi__list a:before {
  display: none!important;
}

@media(max-width: 820px) {
.tel-box {
display: none!important;
}
header .header-inner .u-pc{
  display: none!important;
}
header .header-inner .u-sp{
  display: block!important;
}
}

/****** リクルート追加 *******/
.recruit-banner {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 50px;
}
.recruit-banner a {
  transition: .3s;
}
.recruit-banner a:hover {
  filter: brightness(1.12);
}
/* recruit-page */
.l-section {
  padding-top: 50px;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding-top: 100px;
  }
}
.recruit-card {
  border: solid 2px #000000;
  padding: 20px 40px 30px;
}
@media screen and (max-width: 767px) {
  .recruit-card {
    padding: 0 15px 26px;
  }
}
.recruit-card dl {
  margin-top: 30px;
}
.recruit-card dl:last-of-type {
  margin-bottom: 30px;
}

.recruit-list {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .recruit-list {
    margin-bottom: 30px;
  }
}
.recruit-list dd {
  font-size: 18px;
  line-height: 1.67;
  margin-top: 18px;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .recruit-list dd {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-list dd {
    font-size: 15px;
    line-height: 1.65;
    margin-top: 15px;
  }
}
.recruit-list span {
  font-weight: 500;
  font-size: clamp(18px, 3vw, 25px);
}
.recruit-list small {
  font-size: clamp(14px, 3vw, 20px);
}

.recruit-title {
  font-size: clamp(20px, 3.2vw, 30px);
  font-weight: bold;
  padding-bottom: 2px;
  border-bottom: 1px solid #000;
}

.recruit-card dl,
.recruit-card p {
  font-size: 20px;
  line-height: 1.67;
  margin-top: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .recruit-card dl,
.recruit-card p {
    font-size: 17px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-card dl,
.recruit-card p {
    font-size: 14px;
    line-height: 1.65;
  }
}

.recruit-card p span {
  font-weight: 500;
  font-size: clamp(14px, 3vw, 22px);
}

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




/*========================================================
	問い合わせフォーム　2023-09-22
========================================================*/
/*=================================================
  フォーム
===================================================*/

input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}



.form-item:nth-child(n + 2) {
  margin-top: 4rem;
 }
 
.form-item-label {
 font-weight: bold;
 font-size: clamp(16px, 2.4vw, 2.2rem);
 margin-bottom: 2px;
}

.submit-button {
  max-width: 500px;
  width: 100%;
  background: #f08300;
  color: #fff;
  border: none;
  display: block;
  margin: 28px auto 0;
  padding: 10px;
  font-weight: bold;
  border: none;
  font-size: 22px;
}

#mfp_loading,
#mfp_loading_screen,
#mfp_overlay_background,
#mfp_overlay,
#mfp_hidden {
  display: none !important;
}


.thanks p {
  text-align: center;
  font-size: clamp(18px, 2.5vw, 22px);
}

.form-item-input,
.form-item-textarea {
  font-size: 17px;
}

textarea {
  width: 100%!important;
  height: 230px!important;
}

.mfp_err {
  font-size: 1.4rem;
  padding-top: 1rem;
  color: red;
}