@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
/*  font-family:"Material Icons Outlined";*/
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

ul {
  margin: 0;
  padding: 0;
}

table, th, td {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-collapse: collapse;
  border-spacing: 0px;
}

dl, dt, dd {
  margin: 0;
}

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

:root {
  --brand-color: #00469b;
  --asGrayLine:#ccc;
  --txt-color: #333;
  --margin: margin;
}

/* COMMON =========================================================================*/
html {
  font-size: 62.5%;
  font-weight: 500;
  overflow-x: hidden;
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:"Arial, Helvetica, sans-serif";
  font-size: 1.6rem;
  position: relative;
  font-weight: 400;
}

main {
  margin: 0 auto;
}

.headerUpside .haederCTA .freedaial a,
.commonCTA .freedaial a div span.aria{
  letter-spacing: 0.05em;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-weight: 700;
}

/*
.example {
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.yakuhan {
  font-feature-settings: "halt";
}

.palt-all {
  font-feature-settings: "palt";
}

.yakuhan-only {
  font-feature-settings: "halt";
}
*/


/*header*/
header {
  background: rgb(255, 255, 255);
  border-bottom: 1px solid #eee;
  padding:5px 0; 
  width: 100vw;
  background: rgb(255, 255, 255);
}
@media screen and (min-width:768px){
  header{
    padding:10px 0; 
  }
}
header.basic{
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
}
header .headerUpside {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .fixedWidth {
  width: 100%;
}
.fixedWidth {
  max-width: 1000px !important;
  margin: auto;
}
header h1 {
  margin: 0 !important;
  padding-left: 13px;
}

header h1 a {
  text-decoration: none;
  display: block;
  width: 200px;
  margin: 10px 0;
  color:currentColor;
}
header h1 a img {
  width: 100%;
  display: block;
}
header .haederCTA {
  display: none;
}
.callToAction {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}
.callToAction a {
  display: block;
}

#subNav {
  display: none;
}
.headerUpside {
  z-index: 1;
  display: flex;
}

/* メニューボタンのデザイン追加---ここから--- */
.btn-menu{
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 8px;
  right: 3%;
  font-family: inherit;
  font-size: 100%;
  background: none;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.btn-menu,
.btn-menu span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.btn-menu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: #00469b;
  border-radius: 4px;
}

.btn-menu span:nth-of-type(1) {
    top: 0;
}
.btn-menu.active span:nth-of-type(1) {
    -webkit-transform: translateY(18px) rotate(-45deg);
    transform: translateY(18px) rotate(-45deg);
}
.btn-menu span:nth-of-type(2) {
    top: 18px;
}
.btn-menu.active span:nth-of-type(2) {
    opacity: 0;
}
.btn-menu span:nth-of-type(3) {
    bottom: 0;
}
.btn-menu.active span:nth-of-type(3) {
    -webkit-transform: translateY(-18px) rotate(45deg);
    transform: translateY(-18px) rotate(45deg);
}
@media screen and (min-width:768px){
  .btn-menu{
      display: none;
      z-index: 1002;
      position: relative;
  }
  .btn-menu span {
    display: none;
  }
}
/*
メニューボタンのデザイン追加---ここまで---
*/

/**
PC用のメニュー　===========================================
*/

#mainNav {
  background: #fff;
  display: none;
  width: 100%;
  z-index: -1;
}

#mainNav .callToAction {
  font-family: "Noto Sans JP", sans-serif;
  padding: 1em;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 54px 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  font-weight: 500;
}
#mainNav .callToAction li.freeTrial a {
border-radius: 6px;
background-color: #69B413;
}
#mainNav .callToAction li.documentRequest a {
background-color: #FF8412;
border-radius: 6px;
}
#mainNav .callToAction li.freedaial {
  background-size: cover;
  background-color: green;
  color: #fff;
  border-radius: 6px;
  grid-area: 2/1/3/3;
}
#mainNav .callToAction li.freedaial a {
  display: grid;
  grid-template-columns: 50px 90%;
  row-gap: 5px;
  line-height: 1;
  justify-content: center;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  border-radius: 6px;
}
#mainNav .callToAction li.freedaial a img {
  grid-area: 1/1/2/2;
}
#mainNav .callToAction li.freedaial a .arial {
  white-space: nowrap;
  grid-area: 1/2/2/3;
  font-size: 4.2rem;
  line-height: 1;
  padding-left: 6px;
  font-weight: 600;
  text-align: center;
}
#mainNav .callToAction li.freedaial a .reception {
  font-size: 1.6rem;
  grid-area: 2/2/3/3;
  text-align: center;
}
#mainNav .callToAction li:not(.freedaial) {
  border-radius: 4px !important;
  color: #fff;
  font-size: 2rem;
}
#mainNav .callToAction li:not(.freedaial) a {
  text-decoration: none !important;
  padding: 20px 5px 20px 20px;
  display: block;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  color: #fff !important;
}
#mainNav .callToAction li:not(.freedaial) a span {
  flex: 1;
  text-align: left;
}
#mainNav .callToAction li:not(.freedaial) a:after {
  font-family: "Material Icons Outlined";
  content: "\e5e1";
}
#mainNav .callToAction li:not(.freedaial) a:hover {
  color: #fff !important;
}
#mainNav .callToAction .freedaial a {
  text-decoration: none;
  padding: 15px;
  width: 100%;
  display: block;
  display: grid;
  place-content: center;
}
#mainNav .callToAction .freedaial a div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 5px;
  align-items: center;
  justify-content: center;
}
#mainNav .callToAction .freedaial a img {
  width: auto;
  grid-area: 1/1/2/2;
}

ul.mainNav > li a {
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 1em;
  border-bottom: 1px solid #ccc;
  font-weight: bold;
  color: var(--txt-color) !important;
}
ul.mainNav li.hasSubNav > a::after {
  font-family: "Material Icons Outlined";
  content: "\e145";
  font-size: 2.4rem;
  color: var(--brand-color);
}
ul.mainNav li.hasSubNav.closed > a::after {
  font-family: "Material Icons Outlined";
  content: "\e15b";
}
ul.mainNav .sp_course {
  display: block;
}

li.hasSubNav.active > a::after {
  content: "\e15b";
}

ul .mainNav > li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ccc;
}

@media screen and (min-width:768px) {
  header .menuBtn{
    position: relative;
  }
  .subDrawerMenu{
    display: none;
  }
 .subDrawerMenu{
    position: absolute;
    top:30px;
    left: 0;
    padding:1em;
    background: #FFF;
    white-space: nowrap;
  }
  .subDrawerMenu li{
    text-align: left;
    border: none;
    padding: 0.25em;
    margin: 0;
  }
 .subDrawerMenu li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0.25em;
    min-width: 12em;
  }
}
.subDrawerMenu a:before {
  font-family: "Material Icons Outlined";
  content: "\e5e1";
  margin-right: 0.25em;
  color: #00469b;
  justify-content:start;
}

@media screen and (min-width: 768px) {
  .subDrawerMenu a:before{
    content: none;
  }
  .subDrawerMenu li a:after {
    font-family: "Material Icons Outlined";
    content: "\e5e1";
    margin-left: 1em;
    color: #00469b;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

ul .subFeatures {
  padding-left: 1em;
}
ul .subFeatures a {
  display: flex;
  justify-content: flex-start !important;
}
ul .subFeatures a::before {
  font-family: "Material Icons Outlined";
  content: "\e5e1";
  margin-right: 0.5rem;
  color: var(--brand-color);
}

@media screen and (min-width: 768px) {
  #mainNav {
    width: 50%;
    right: 0px;
  }
  #goto-info {
    display: none;
  }
  #mainNavTrigger {
    display: none;
  }
  header h1 {
    padding-left: 0px;
  }
  header h1 a {
    display: block;
    max-width: 200px;
  }
  .headerUpside {
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .headerUpside .haederCTA {
    margin: 0;
    display: grid;
    grid-template-columns: auto auto auto ;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    text-decoration: none !important;
  }
  .headerUpside .haederCTA li.freedaial {
    border-radius: 6px;
  }
  .headerUpside .haederCTA li.freeTrial {
    background-size: cover;
    padding: 10px 5px 5px 5px;
  }
  .headerUpside .haederCTA li.documentRequest {
    background-size: cover;
    padding: 10px 5px 5px 5px;
  }
  .headerUpside .haederCTA li.documentRequest a {
    background-color: #FF8412;
  }
  .headerUpside .haederCTA li.freeTrial a {
    background-color: #69b413;
  }
  .headerUpside .haederCTA li.freeTrial,
  .headerUpside .haederCTA li.documentRequest {
    color: #fff;
  }
  .headerUpside .haederCTA li.freeTrial a,
  .headerUpside .haederCTA li.documentRequest a {
    letter-spacing: 2px;
    text-decoration: none !important;
    padding: 0.5em 0.5em 0.5em 1em;
    display: grid;
    place-content: center;
    align-items: center;
    line-height: 1;
    border-radius: 4px;
  }
  li.freeTrial a span{
    font-family: "Material Icons Outlined";
  }
  .headerUpside .haederCTA li.freeTrial a span,
  .headerUpside .haederCTA li.documentRequest a span {
    flex: 1;
    text-align: center;
    padding: 6px 4px;
  }
  .headerUpside .haederCTA li.freeTrial a span:after,
  .headerUpside .haederCTA li.documentRequest a span:after {
    font-family: "Material Icons Outlined";
    content: "\e5e1";
  }
  .headerUpside .haederCTA li.freeTrial a:hover,
  .headerUpside .haederCTA li.documentRequest a:hover {
    color: #fff !important;
  }
  .headerUpside .haederCTA li.freeTrial a:visited,
  .headerUpside .haederCTA li.documentRequest a:visited {
    color: #fff !important;
  }
  .headerUpside .haederCTA .freedaial {
    padding: 10px 5px 5px 5px;
  }
  .headerUpside .haederCTA .freedaial a {
    color: #143359;
    text-decoration: none;
    display: grid;
    grid-template-columns: 30px 200px;
    grid-template-rows: 1fr 1fr;
    align-items: center;
    line-height: 1;
    justify-content: center;
  }
  .headerUpside .haederCTA .freedaial a img {
    width: 30px;
    height: auto;
    grid-area: 1/1/2/2;
    display:block;
  }
  .headerUpside .haederCTA .freedaial a span.arial {
    white-space: nowrap;
    line-height: 1;
    grid-area: 1/2/2/3;
    font-size: 2.8rem;
    padding-left: 6px;
    letter-spacing: 0.05em;
  }
  .headerUpside .haederCTA .freedaial a .reception {
    grid-area: 2/2/3/3;
    font-size: 1.1rem;
    letter-spacing:normal;
    font-weight: 400;
  }
  #mainNav {
    display: block;
    position: inherit;
    background: none;
    width: 100%;
    padding: 0;
  }
  #mainNav .callToAction {
    display: none;
  }
  ul.mainNav {
    margin: 10px 0;
    display: flex;
    justify-content: center;
    padding: 0;
  }
  ul.mainNav > li {
    width: 100%;
    max-width: 200px;
    text-align: center;
    padding:0 2em;
    border-left: 1px solid #999;
  }
  ul.mainNav > li a {
    text-decoration: none;
    padding: 0;
    border-bottom: none !important;
  }
  ul.mainNav > li a:hover {
    cursor: pointer;
  }
  ul.mainNav > li:last-child {
    border-right: 1px solid #9f9f9f;
  }
  ul.mainNav li a {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: initial;
    border-bottom: none;
    font-weight: 400;
  }
  ul.mainNav .subDrawerMenu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: initial;
    border-bottom: none;
    font-weight: 400;
  }
  ul.mainNav li.hasSubNav > a::after {
    content: none !important;
  }
  ul.mainNav li.hasSubNav:hover ul.subNav {
    display: block;
  }
  ul.mainNav .sp_course {
    display: none;
  }
  ul.mainNav #subNavTrigger {
    display: block;
  }
  #subNavTrigger > #subNav {
    display: none;
    position: absolute;
    padding: 1.6rem 2.4rem 0 2.4rem;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: none !important;
  }
  #subNavTrigger > #subNav h4 {
    font-weight: bold;
    color: var(--brand-color);
  }
  #subNavTrigger ul.subFeatures {
    padding-left: 1em;
    border-bottom: 1px solid #ccc;
    padding: 0 0 0.5em 0;
    margin-bottom: 0.5em;
    width: 12em;
  }
  #subNavTrigger ul.subFeatures li {
    line-height: 2;
    padding: 0;
  }
  #subNavTrigger ul.subFeatures li a {
    padding: 0;
    justify-content: space-between !important;
    border-left: none;
    white-space: nowrap;
  }
  #subNavTrigger ul.subFeatures li a:before {
    content: none;
  }
  #subNavTrigger ul.subFeatures li a:after {
    font-family: "Material Icons Outlined";
    margin-left: 10px;
    content: "\e5e1";
    color: var(--brand-color);
  }
  #subNav > ul:last-child {
    border-bottom: none;
  }
}
footer {
  margin: 0 auto;
}
.nav-layout {
    display: grid;
    width: 90%;
    margin: 0 auto 40px auto;
    grid-template-columns: 1fr;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 100px;
    -moz-column-gap: 100px;
    column-gap: 100px;
}
.nav-layout img {
        width: 240px;
        margin: 0 auto 20px auto;
}
.footer-navi{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
}
.footer-navi li {
        border: none;
        text-align: left;
        padding: 0;
}
.footer-navi a {
    text-decoration: none;
    text-align: left;
    font-size: 1.6rem;
}
footer .footer-navi a:before {
        font-family: "Material Icons Outlined";
        content: "\e5e1";
        color: #00469b;
        margin-right: 0.2em;
}
footer .nav-groupe {
  padding: 0;
}
footer .nav-groupe .footer-group {
    display: grid;
    grid-template-columns: repeat(2, auto);
    -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
        row-gap: 20px;
        margin: 0 auto;
        text-align: center;
        width: 90%;
}
footer .nav-groupe .footer-group img {
    max-width: 100% !important;
    height: 50px;
    margin: 0 auto;
    display: block;
}
@media screen and (min-width: 768px) {
  footer {
    margin: 40px auto auto auto;
  }
  .nav-groupe {
    margin:0 auto;
    padding: auto;
    max-width: 1000px;
  }
  .nav-layout {
    grid-template-columns: 240px 1fr;
    margin-bottom: 40px;
    width: 100%;
  }
  .nav-layout img {
    width: 240px;
    margin: 0;
  }
  .footer-navi{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .footer-navi li {
      text-align: center;
      border-left: 1px solid #333;
      padding: 0 1em;
  }
  .footer-navi li:last-child {
      border-right: 1px solid #333;
  }
  footer .footer-navi a:before {
        content: "";
        margin: auto;
  }
  footer .nav-groupe .footer-group{
     grid-template-columns: repeat(6, auto);
 }
}

footer > div{
  background-color: #f9f9f9;
  padding: 30px 0;
}
footer div ul,
footer div li {
  margin: 0;
  padding: 0;
}
footer div ul a,
footer div li a {
  text-decoration: none;
}
footer div .footermenu {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 30px;
  font-size: 1.4rem;
  align-items: start;
  width: 90%;
}
footer div .footermenu div {
  margin: 0 auto 20px auto;
}
footer div .footermenu div .tosyocode{
  font-size: 1rem;
}
footer div .footermenu div img {
  display: block;
  width: 13em;
}
footer div .footermenu li a {
  display: block;
  margin-bottom: 0.25em;
  display: flex;
  padding: 0.5em 5px;
}
footer div .footermenu li a:before {
  margin-right: 0.2em;
  font-family: "Material Icons Outlined";
  content: "\e5e1";
  color: var(--brand-color);
}
footer div .footermenu .kensaku {
  border-bottom: 1px solid #ccc;
}
footer div .footermenu .nolink {
  display: none;
}
footer div .footerlinks {
  font-size: 1.4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  text-decoration: underline;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  footer div .footermenu {
    margin:0 auto;
    max-width: 1000px;
    justify-content: center;
    text-align: left;
    display: grid;
    gap: 20px;
    grid-template-columns: auto auto auto auto;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    font-size: 1.4rem;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
  }
  footer > div{
    background-color: #f9f9f9;
    padding: 60px 0;
  }
  footer div .footermenu div img {
    margin: 0 auto;
  }
  footer div .footermenu .kensaku {
    border-bottom: none;
  }
  footer div .footermenu .nolink {
    display: flex;
  }
  footer div .footermenu div {
    grid-area: 1/1/2/2;
    font-size: 1rem;
  }
  footer div div .footermenu div img {
    width: 160px;
  }
  footer div .footermenu li {
    padding: 0;
    border-top: none;
    margin-bottom: 0.25em;
    display: flex;
    justify-content: start;
  }
  footer div .footermenu li a {
    padding: 0;
  }
  footer div .footermenu li a:after {
    content: none;
  }
  footer div .footermenu ul.sublist li {
    font-size: 1.4rem;
    display: flex;
  }
  footer div .footerlinks {
    flex-direction: row;
    text-decoration: none;
  }
}
footer div .footerlinks li {
  margin: 0 0.5em;
  margin-bottom: 0.5em;
}
footer div .copyright {
  text-align: center;
  font-size: 1rem;
  font-family: "Arial, Helvetica, sans-serif";
  line-height: 1.5;
  font-size: 1.2rem;
}

.txtCenter {
  text-align: center;
}

.sp-only {
  display: block;
}

.pc-only {
  display: none;
}

.contents {
  max-width: 95%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .main {
    margin-top: 120px;
  }
  .ctr {
    text-align: center;
  }
  .sp-only {
    display: none;
  }
  .pc-only {
    display: block;
  }
  .form_main {
    margin-top: 0px !important;
  }
  .contents {
    max-width: 1024px;
  }
}

ul {
  list-style: none;
}

img {
  margin: 0;
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

a:hover {
  opacity: 0.7;
}

.breadcrumb a {
  color: var(--brand-color);
}

.breadcrumbs a {
  display: inline-block;
  white-space: nowrap;
  text-decoration: none;
}

.breadcrumbs a > span:after {
  font-family: "Material Icons Outlined";
  content: "\e5e1";
  display: inline-block;
  color: #00468c;
  margin: 0 0 0 0.5em;
}

.breadcrumb {
  width: 100%;
  font-size: 1.6rem;
  margin: 20px auto;
  max-width: 1000px;
  text-wrap: initial;
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 15px 0;
  list-style: none;
}

@media screen and (min-width: 768px) {
  .breadcrumb {
    width: 90%;
    font-size: 1.6rem;
    margin: 20px auto;
    max-width: 1000px;
    text-wrap: initial;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 15px 0;
    list-style: none;
  }
}
.breadcrumb::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.breadcrumb::-webkit-scrollbar-track {
  background-color: #ccc;
  border-radius: 3px;
}

.breadcrumb::-webkit-scrollbar-thumb {
  background-color: #00468c;
  border-radius: 3px;
}

h2.title-bg {
  text-align: center;
  margin: 40px auto;
  font-size: 2rem;
  line-height: 1.3;
  display: flex;
  width: 90%;
  border-left: 3px solid var(--brand-color);
  border-right: 3px solid var(--brand-color);
  background: #f7f7f7;
  transform: skewX(160deg); /*傾斜をつける*/
  text-align: center;
  padding: 10px 20px;
  color: var(--brand-color);
}
@media screen and (min-width: 768px) {
  h2.title-bg {
    max-width: 50%;
    font-size: 2.4rem;
  }
}
h2.title-bg div {
  margin: 0 auto;
  transform: skewX(-160deg);
}

h2.wbg {
  background: #fff;
}
h2.wbg div {
  margin: 0 auto;
  transform: skewX(-160deg);
}

.txtlong {
  font-size: 1.8rem !important;
  max-width: 95%;
}
@media screen and (min-width: 768px) {
  .txtlong {
    max-width: 70% !important;
    font-size: 2.4rem !important;
  }
}

.contents section {
  margin: 40px auto;
}
@media screen and (min-width: 768px) {
  .contents section {
    margin: 80px auto;
  }
}

h3.underline {
  text-align: center;
  font-size: 2rem;
  margin: 40px auto;
}
@media screen and (min-width: 768px) {
  h3.underline {
    margin: 60px auto;
  }
}
h3.underline span {
  line-height: 1.5;
  background: linear-gradient(transparent 70%, rgba(0, 91, 171, 0.2) 70%);
}

.linebox {
  margin: 60px auto 40px auto;
  max-width: 800px;
  padding: 8px;
  display: grid;
  justify-content: center;
  background: rgb(0, 91, 171);
  color: #fff;
}

.cycle {
  justify-content: center;
  display: grid;
  grid-template-columns: 1fr;
  width: 90%;
  margin: 30px auto;
  max-width: 1024px;
  gap: 10px;
}
.cycle img {
  border: 1px solid #ddd;
}
@media screen and (min-width: 768px) {
  .cycle {
    grid-template-columns: 240px minmax(10em, 28em);
    gap: 20px;
  }
  .cycle img {
    grid-area: 1/1/2/2;
  }
  .cycle dl {
    grid-area: 1/2/2/3;
  }
}
.cycle dl {
  margin-bottom: 1em;
}
.cycle dt {
  font-weight: 800;
  color: var(--brand-color);
  margin-bottom: 0.5em;
  font-size: 1.8rem;
}
.cycle dt span {
  border-radius: 4px;
  display: inline-block;
  background: var(--brand-color);
  color: #fff;
  padding: 2px 8px;
  margin-right: 5px;
  width: 8em;
  text-align: center;
  display: block;
  margin-bottom: 5px;
}
.cycle dd {
  display: flex;
  margin: 0;
  padding: 0;
}
.cycle dd:before {
  font-family: "Material Icons Outlined";
  content: "\e5c8";
  color: var(--brand-color);
}

.cycle-step {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(9, auto);
  width: 90%;
  max-width: 1024px;
  grid-template-rows: 1fr;
  gap: 10px;
  margin: 40px auto;
}
@media screen and (min-width: 768px) {
  .cycle-step {
    grid-template-columns: repeat(9, auto);
  }
}

.cycleimg {
  width: 90%;
  max-width: 400px;
  margin: 40px auto;
}

.coaching {
  margin: 20px auto;
  max-width: 36em;
}
.coaching li {
  font-size: 1.8rem;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
}
.coaching li:before {
  font-size: 3rem;
  display: inline-block;
  margin-right: 5px;
  color: var(--brand-color);
  font-family: "Material Icons Outlined";
  content: "\e5ca";
}

.coaching-point {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  row-gap: 30px;
}
.coaching-point dt {
  text-align: center;
  padding: 3px 10px;
  display: flex;
  align-items: center;
  color: #fff;
}
.coaching-point dt:nth-of-type(1) {
  background: var(--brand-color);
}
.coaching-point dt:nth-of-type(2) {
  background: red;
}
.coaching-point dt:nth-of-type(3) {
  background: green;
}
.coaching-point dt span {
  display: inline-block;
  margin-left: 10px;
  font-size: 2.4rem;
}
.coaching-point dd {
  font-size: 1.8rem;
  margin: 0;
}

.onlyone {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .onlyone {
    grid-template-columns: 320px auto;
    gap: 30px;
  }
}
.onlyone dl,
.onlyone dt,
.onlyone dd {
  margin: 0;
}
.onlyone dt {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-color);
  margin-bottom: 10px;
}

.fig {
  max-width: 600px;
  margin: 0 auto;
}

.data-step {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(7, auto);
  width: 90%;
  max-width: 1024px;
  grid-template-rows: 1fr;
  gap: 10px;
  margin: 40px auto;
}
.step-block {
  border: 2px solid var(--brand-color);
  border-radius: 10px;
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  position: relative;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .data-step {
    grid-template-columns: repeat(7, auto);
  }
  .step-block {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
  }
}

.step-block .snum {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 2em;
  background: var(--brand-color);
  color: #fff;
  padding: 5px;
  font-size: 2rem;
  border-radius: 6px 0 10px 0;
}
.step-block .stxt {
  text-align: center;
}
.step-block img {
  margin-top: 5px;
}

.arrows {
  text-align: center;
  background: #005bab;
  height: 17.3205080757px;
  width: 40px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  align-self: center;
  margin: 0 auto;
}

.threeQ {
  display: grid;
  max-width: 750px;
  grid-template-columns: 100px 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 20px;
  row-gap: 20px;
  margin: 40px auto;
}
.threeQ img {
  width: 100px;
  height: auto;
  margin: 0 auto;
}
.threeQ dt {
  color: var(--brand-color);
  font-weight: 700;
  text-align: left;
  margin-bottom: 0.25em;
}
@media screen and (min-width: 768px) {
  .arrows {
    height: 34.6410161514px;
    width: 25px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
  }
  .threeQ {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    grid-auto-flow: column;
    column-gap: 40px;
    row-gap: 20px;
    margin: 40px auto;
  }
  .threeQ img {
    width: 70%;
    height: auto;
    margin: 0 auto;
  }
  .threeQ dt {
    text-align: center;
  }
}

.manabo-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 700px;
  margin: 20px auto;
  align-items: center;
}
.manabo-step img {
  width: 240px;
  margin: 0 auto;
}
.manabo-step li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 2em;
}
.manabo-step li img {
  height: auto;
  width: 40px;
  margin-right: 10px;
}

.manabo-grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 20px;
  row-gap: 20px;
  max-width: 750px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .manabo-step {
    grid-template-columns: auto 1fr;
  }
  .manabo-step img {
    width: 240px;
  }
  .manabo-grid {
    grid-template-columns: 40% 1fr;
    column-gap: 40px;
    row-gap: 30px;
  }
}
.manabo-grid dl {
  margin: 0;
}
.manabo-grid dt {
  font-weight: 800;
  color: var(--brand-color);
  margin-bottom: 0.25em;
  font-size: 1.8rem;
}
.manabo-grid dd {
  margin: 0;
}

.minibox {
  padding: 5px;
  border: 1px solid #ccc;
  text-align: center;
  margin: 30px auto;
  width: 16em;
}

.environment {
  display: grid;
  grid-template-columns: 1fr;
}
.environment dl,
.environment td,
.environment dd {
  margin: 0;
}
.environment dl {
  margin-top: 10px;
  margin-bottom: 20px;
}
.environment dt {
  font-weight: 800;
  color: var(--brand-color);
  font-size: 2.2rem;
  margin-bottom: 0.25em;
}
@media screen and (min-width: 768px) {
  .environment {
    grid-template-columns: 320px auto;
    gap: 30px;
    margin: 80px auto;
  }
  .environment dl {
    margin-top: 0;
  }
  .environment dt {
    margin-bottom: 20px;
  }
}

.eventblock {
  margin-bottom: 1em;
}
.eventblock strong {
  display: inline-block;
  margin: 0.5em 0;
  color: var(--brand-color);
}

.eventname {
  text-align: center;
  padding: 3px 5px;
  display: inline-block;
  font-weight: 700;
  margin-bottom: 0.25em;
  background: rgba(0, 91, 171, 0.2);
  min-width: 13em;
}

.mogilead {
  margin: 30px auto;
  max-width: 750px;
}

.mogitable {
  margin: 20px auto;
}
.mogitable th, .mogitable td {
  display: block;
  padding: 1em;
}
.mogitable th {
  min-width: 18em;
  background: rgba(0, 91, 171, 0.1);
}

.mogi {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 40px auto 10px auto;
}
.mogi table th {
  background: var(--brand-color);
  color: #fff;
}
.mogi table .subth th {
  background: #cfd5ea;
  color: inherit;
}
.mogi table th,
.mogi table td {
  border: 1px solid var(--brand-color);
  padding: 3px 5px;
}
.mogi table td:first-child {
  text-align: center;
}

.reason-catch {
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--brand-color);
}
@media screen and (min-width: 768px) {
  .mogitable th, .mogitable td {
    display: table-cell;
    border: 1px solid var(--brand-color);
  }
  .mogi {
    grid-template-columns: 1fr 1fr;
  }
  .reason-catch {
    font-size: 2.4rem;
  }
}
.reason-catch span {
  line-height: 1.5;
  background: linear-gradient(transparent 70%, rgba(0, 91, 171, 0.2) 70%);
}

.reason5list {
  font-size: 1.8rem;
  margin: 40px auto;
  max-width: 38em;
}
.reason5list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  column-gap: 10px;
  align-self: center;
  margin-bottom: 1em;
  align-items: start;
}
.reason5list li span {
  text-align: center;
  margin-right: 0.5em;
  background: rgba(0, 91, 171, 0.2) 70%;
  color: var(--brand-color);
  width: 1.6em !important;
  height: 1.6em !important;
  border-radius: 1em;
}

.cource {
  max-width: 800px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 40px;
  row-gap: 20px;
}
@media screen and (min-width: 768px) {
  .cource {
    grid-template-columns: 320px 1fr;
  }
}
.cource dl,
.cource dt,
.cource dd {
  margin: 0;
}
.cource dd {
  font-size: 1.6rem;
}
.cource .cource-txt > dt {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-color);
  margin-bottom: 0.25em;
}
.cource .cource-subject {
  margin-top: 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 5px;
  row-gap: 5px;
}
.cource .cource-subject dt {
  font-weight: 700;
  text-align: right;
}

.cource-titlte1 {
  background: #00ab0b;
}

.cource-titlte2 {
  background: #ff9c00;
}

.cource-titlte3 {
  background: #fc5c5c;
}

.cource-titlte4 {
  background: rgb(0, 134, 217);
}

dt.cource-copy1 {
  color: #00ab0b !important;
}

dt.cource-copy2 {
  color: #ff9c00 !important;
}

dt.cource-copy3 {
  color: #fc5c5c !important;
}

dt.cource-copy4 {
  color: #0086d9 !important;
}

dl.cource-subject1 {
  background: rgba(0, 171, 11, 0.1);
  padding: 10px;
}

dl.cource-subject2 {
  background: rgba(255, 156, 0, 0.1);
  padding: 10px;
}

dl.cource-subject3 {
  background: rgba(252, 92, 92, 0.1);
  padding: 10px;
}

dl.cource-subject4:nth-of-type(1) {
  margin-top: 40px;
}

dl.cource-subject4 {
  margin-top: 20px;
  background: rgba(0, 134, 217, 0.1);
  padding: 10px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 5px;
  row-gap: 5px;
}
dl.cource-subject4 dt {
  font-weight: 700;
  text-align: right;
}
dl.cource-subject4 .cource-sub {
  background: #0086d9;
  padding: 3px;
  text-align: center;
  color: #fff;
  grid-area: 1/1/2/3;
}

#admission_main {
  height: 300px;
  background: url(/grouptop/wp-content/themes/grouptop/images/admission_main.jpg) right -125px center no-repeat;
  background-size: auto 300px !important;
}
.ad-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.stepbox {
  width: 90%;
  max-width: 750px;
  margin: 0 auto 20px auto;
  border: 2px solid var(--brand-color);
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px;
  position: relative;
  padding: 10px 15px 10px 0;
}

@media screen and (min-width: 768px) {
  #admission_main {
    height: 380px;
    background: url(/grouptop/wp-content/themes/grouptop/images/admission_main.jpg) center center no-repeat;
    background-size: cover !important;
  }
  .ad-step {
    grid-template-columns: 40px 1fr;
    gap: 20px;
  }
  .stepbox {
    margin: 0 auto 40px auto;
    gap: 20px;
  }
}
.stepbox dl,
.stepbox dd {
  margin: 0;
}
.stepbox dt {
  color: var(--brand-color);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.25em;
}

.numbox {
  position: relative;
}

.step-arrow {
  position: relative;
  top: 0px;
  left: -20px;
  text-align: center;
  background: var(--brand-color);
  color: #fff;
  display: inline-block;
  font-weight: bold;
  padding: 5px 10px 8px 30px;
  position: relative;
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
}
.step-arrow:before {
  border-bottom: 15px solid transparent;
  border-right: 20px solid var(--brand-color);
  content: "";
  left: 0;
  position: absolute;
  top: 100%;
}
.step-arrow:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent var(--brand-color);
  position: absolute;
  top: 0;
  right: -16px;
  bottom: 0;
  margin: auto;
}

.number {
  font-family: "urw-din-semi-condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 5rem;
  color: var(--brand-color);
  position: relative;
  left: 10px;
  top: 0;
  line-height: 1;
}

.trial {
  box-sizing: border-box;
  max-width: 750px;
  margin: 0 auto;
  border: 5px solid #aecde9;
  padding: 20px 15px;
}
.trial dt {
  font-weight: 800px;
  font-size: 2rem;
  color: var(--brand-color);
  margin-bottom: 0.25em;
}

.tri {
  position: relative;
  top: -1px;
  margin: 0 auto 20px auto;
  display: block;
  background: #aecde9;
  content: "";
  height: 25.9807621135px;
  width: 40px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.imgset {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .imgset {
    grid-template-columns: 300px 1fr;
  }
}

.kakunin {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: center;
}
.kakunin dl {
  background: #e5f1fc;
  padding: 10px;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .kakunin dl {
    text-align: center;
  }
}

.mendan {
  text-align: center;
}

.btmmarign0 {
  margin-bottom: 0 !important;
}

#areaSearch {
  margin-top: 0;
}

#fee_main {
  height: 300px;
  background: url(/grouptop/wp-content/themes/grouptop/images/fee_main.jpg) right -125px center no-repeat;
  background-size: auto 300px !important;
}

@media screen and (min-width: 1024px) {
  #fee_main {
    height: 380px;
    background: url(/grouptop/wp-content/themes/grouptop/images/fee_main.jpg) center center no-repeat;
    background-size: cover !important;
  }
}
.plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .plans {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}
.plans .plan {
  display: grid;
  border: 2px solid var(--brand-color);
  padding: 20px 10px;
  grid-template-columns: 1fr;
  box-shadow: 3px 3px 0px 0px rgba(0, 91, 171, 0.2);
}
@media screen and (min-width: 1024px) {
  .plans .plan {
    padding: 20px;
  }
}
.plans .plan img {
  max-width: 35%;
  margin: 0 auto 20px auto;
}
@media screen and (min-width: 1024px) {
  .plans .plan img {
    max-width: 50%;
  }
}
.plans .plan dl {
  padding: 5px 0 5px 0;
  display: grid;
  grid-template-columns: 5em 1fr;
  column-gap: 10px;
  row-gap: 0;
  align-items: start;
  border-top: 1px solid #ccc;
}
@media screen and (min-width: 1024px) {
  .plans .plan dl {
    border-top: none;
  }
}
.plans .plan dt {
  background: #d9e9f9;
  text-align: center;
  padding: 3px;
  color: var(--brand-color);
  font-weight: 700;
}
.plans .plan dd {
  padding: 3px;
  word-break: keep-all;
}
.plans .plan dd:last-child {
  margin-bottom: 0;
}

.lead-txt {
  color: var(--brand-color);
  font-size: 2.2rem;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .lead-txt {
    font-size: 2.8rem;
  }
}

.lead-txt-sub {
  margin: 40px auto;
}

.lead-txt .underline {
  line-height: 1.5;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, rgba(0, 91, 171, 0.2)));
  background: -webkit-linear-gradient(transparent 70%, rgba(0, 91, 171, 0.2) 70%);
  background: linear-gradient(transparent 70%, rgba(0, 91, 171, 0.2) 70%);
}

.discount_detail {
  text-align: center;
  padding: 20px;
  margin: 20px auto;
  border: 1px solid var(--brand-color);
}
@media screen and (min-width: 1024px) {
  .discount_detail {
    max-width: 600px;
  }
}
.discount_detail h3 {
  padding-bottom: 10px;
  margin: 0 auto 20px auto;
  border-bottom: 1px solid #ccc;
}
.discount_detail strong {
  color: var(--brand-color);
  background: #d9e9f9;
  font-size: 2rem;
}

.service_list {
  display: grid;
  grid-template-columns: 1fr;
  margin: 30px auto;
  gap: 20px;
}
.service_list h3 {
  margin: 10px;
  font-size: 1.8rem;
  line-height: 1.3;
  color: var(--brand-color);
}
.service_list li {
  border: 1px solid #ccc;
  box-shadow: 3px 3px 0px 0px rgba(0, 91, 171, 0.1);
}
.service_list p {
  margin: 10px;
}
@media screen and (min-width: 1024px) {
  .service_list {
    max-width: 80%;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

.otoiawase {
  background: #d9e9f9;
  padding: 20px 20px 40px 20px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .otoiawase {
    padding: 30px 40px 50px 40px;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}
.otoiawase p {
  color: var(--brand-color);
  text-align: center;
  margin-bottom: 1em;
  font-size: 2rem;
}
.otoiawase .documentRequest,
.otoiawase .freedaial {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  text-decoration: none !important;
  height: 90px !important;
  align-items: center;
  display: grid;
}
.otoiawase .documentRequest {
  border-radius: 6px;
  background: url(/grouptop/wp-content/themes/grouptop/images/cta_bg_doc2.svg) center center no-repeat;
  background-size: cover;
  font-size: 2.4rem;
  text-align: center;
}
.otoiawase .documentRequest a {
  display: block;
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  color: #fff;
  padding: 20px;
}
.otoiawase .documentRequest a:after {
  font-family: "Material Icons Outlined";
  content: "\e5e1";
}
.otoiawase .documentRequest a span {
  flex: 1;
}
.otoiawase .freedaial {
  border-radius: 6px;
  background: url(/grouptop/wp-content/themes/grouptop/images/cta_bg_tel.svg) center center no-repeat;
  background-size: cover;
}
.otoiawase .freedaial a {
  color: #fff;
  text-decoration: none;
  display: grid;
  grid-template-columns: 40px 220px;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  line-height: 1;
  justify-content: center;
}
.otoiawase .freedaial a img {
  width: 40px;
  height: auto;
  grid-area: 1/1/2/2;
}
.otoiawase .freedaial a .arial {
  line-height: 1;
  grid-area: 1/2/2/3;
  font-size: 3rem;
  padding-left: 6px;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 1px rgba(24, 148, 59, 0.2), -2px 2px 1px rgba(24, 148, 59, 0.2), 2px -2px 1px rgba(24, 148, 59, 0.2), -2px -2px 1px rgba(24, 148, 59, 0.2), 2px 0px 1px rgba(24, 148, 59, 0.2), 0px 2px 1px rgba(24, 148, 59, 0.2), -2px 0px 1px rgba(24, 148, 59, 0.2), 0px -2px 1px rgba(24, 148, 59, 0.2);
}
.otoiawase .freedaial a .reception {
  grid-area: 2/2/3/3;
  font-size: 1.2rem;
}

#features {
  background: rgba(0, 91, 171, 0.05);
  padding: 40px 0;
}
@media screen and (min-width: 1024px) {
  #features {
    padding: 60px 0;
  }
}
#features h2 {
  margin-top: 0 !important;
}
#features .features_sub {
  font-size: 1.8rem;
  margin: 20px auto;
}
@media screen and (min-width: 1024px) {
  #features .features_sub {
    margin: 40px auto;
  }
}
#features .features_sub span {
  color: var(--brand-color);
}

.features,
.features2 {
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .features,
  .features2 {
    gap: 40px;
  }
}
.features > div,
.features2 > div {
  display: grid;
  grid-template-columns: 55% auto;
  grid-template-rows: repeat(3, auto);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .features > div,
  .features2 > div {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto auto;
    gap: 10px;
    text-align: center;
  }
  .features > div img,
  .features2 > div img {
    margin: 10px 0;
  }
}
.features > div img:first-of-type,
.features2 > div img:first-of-type {
  grid-area: 1/1/2/2;
}
.features > div h3,
.features2 > div h3 {
  font-weight: 600;
  font-size: 1.6rem;
  grid-area: 2/1/3/2;
}
.features > div a,
.features2 > div a {
  grid-area: 3/1/4/2;
}
.features > div img:last-of-type,
.features2 > div img:last-of-type {
  margin: 0;
  grid-area: 1/2/4/3;
}
@media screen and (min-width: 1024px) {
  .features > div img:first-of-type,
  .features2 > div img:first-of-type {
    grid-area: initial;
  }
  .features > div h3,
  .features2 > div h3 {
    font-size: 1.6rem;
    grid-area: initial;
  }
  .features > div a,
  .features2 > div a {
    grid-area: initial;
  }
  .features > div img:last-of-type,
  .features2 > div img:last-of-type {
    margin: 0;
    grid-area: initial;
  }
}
.features > div,
.features2 > div {
  background: #fff;
  padding: 20px 10px;
  box-shadow: 3px 3px 4px 0px rgba(0, 91, 171, 0.1);
}
.features > div h3,
.features2 > div h3 {
  text-align: center;
  margin: 0;
  line-height: 1.5;
}
@media screen and (min-width: 1024px) {
  .features > div h3,
  .features2 > div h3 {
    text-align: center;
    font-size: 1.8rem;
  }
}
.features > div a,
.features2 > div a {
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  color: #fff;
  background: var(--brand-color);
  padding: 5px 30px;
}
.features > div a:after,
.features2 > div a:after {
  font-family: "Material Icons Outlined";
  content: "\e5e1";
  margin-left: 10px;
}
.features > div .point,
.features2 > div .point {
  width: 40%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .features > div .point,
  .features2 > div .point {
    width: 50%;
  }
}
.features > div img,
.features2 > div img {
  margin: 10px 0;
}

.features {
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .features {
    margin-bottom: 30px;
    grid-template-columns: repeat(3, minmax(200px, 320px));
  }
}

@media screen and (min-width: 1024px) {
  .features2 {
    grid-template-columns: repeat(2, minmax(200px, 320px));
  }
}

.pageBottomCTA {
  margin: 30px auto;
  padding: 30px 0;
  background: #00469b;
  color: #fff;
}
.pageBottomCTA > div {
    width: 90%;
    margin:0 auto;
}

.pageBottomCTA div h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .pageBottomCTA {
    margin: 80px auto;
    padding: 50px 0;
    background: #00469b;
    color: #fff;
  }
  .pageBottomCTA>div {
    max-width: 1000px;
    margin:0 auto;
  }
  .pageBottomCTA div h2 {
    font-size: 2.8rem;
  }
}
.pageBottomCTA div .subCTAtxt {
  margin-top: 20px;
  font-size: 1.6rem;
  text-align: center;
}
.pageBottomCTA div .subCTAtxt + .commonCTA {
  margin-top: 30px;
}

.commonCTA {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-template-rows: repeat(2, 1fr);
  padding: 0;
  margin-top: 30px;
  column-gap: 30px;
  row-gap: 20px;
}
@media screen and (min-width: 1024px) {
  .commonCTA {
    grid-template-columns: 1fr auto auto;
    grid-template-rows: 1fr auto;
    column-gap: 30px;
    row-gap: 20px;
    margin-top: 30px;
  }
}

@media screen and (max-width: 1023px) {
  .commonCTA li.freedaial {
    grid-area: 2 / 1 / 3 / 3;
    margin: 0 auto;
  }
}
.commonCTA li.freedaial {
  display: grid;
   -webkit-column-gap: 15px;
   -moz-column-gap: 15px;
  column-gap: 15px;
  row-gap: 10px;
}
.commonCTA li.freedaial a{
  display: grid;
  grid-template-columns: auto 1fr;
   -webkit-column-gap: 15px;
   -moz-column-gap: 15px;
  column-gap: 15px;
  row-gap: 10px;
}
.commonCTA li.freedaial a img{
  width: 50px;
  height: auto;
  display: block;
}
.commonCTA li.documentRequest a {
  text-decoration: none;
  background-color: #FF8412;
  border-radius: 6px;
}
.commonCTA li.freeTrial a {
  text-decoration: none;
  background-color: #69b413;
  border-radius: 6px;
}
.commonCTA li.freeTrial,
.commonCTA li.documentRequest {
  color: #fff;
  width: 100%;
}
@media screen and (min-width:1024px) {
  .commonCTA li.freeTrial,
  .commonCTA li.documentRequest {
    width: 300px;
  }
}
.commonCTA li.freeTrial a,
.commonCTA li.documentRequest a {
  letter-spacing: 2px;
  font-size: 2.4rem;
  text-decoration: none !important;
  padding: 5px 5px 5px 10px;
  display: block;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.commonCTA li.freeTrial a span,
.commonCTA li.documentRequest a span {
  flex: 1;
  text-align: center;
  align-items: center;
}
.commonCTA li.freeTrial a:after,
.commonCTA li.documentRequest a:after {
  font-family: "Material Icons Outlined";
  content: "\e5e1";
}
.commonCTA li.freeTrial a:hover,
.commonCTA li.documentRequest a:hover {
  color: #fff !important;
}
.commonCTA li.freeTrial a:visited,
.commonCTA li.documentRequest a:visited {
  color: #fff !important;
}
.commonCTA .freedaial {
  padding: 10px 5px 5px 5px;
}
.commonCTA .freedaial a {
  color: #fff;
  text-decoration: none;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 15px;
  row-gap: 10px;
  align-items: center;
  line-height: 1;
  justify-content: center;
}

.commonCTA .freedaial a div {
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
}
.commonCTA .freedaial a div span.arial {
  line-height: 1;
  font-size: 4rem;
  padding-left: 6px;
  font-weight: 600;
}
.commonCTA .freedaial a .reception {
  display: block;
  font-size: 1.4rem;
}



.catch-sub {
  margin: 40px auto;
  line-height: 2;
  font-size: 1.8rem;
}

#questions{
  width: 95%;
  margin: 40px auto;
}
@media screen and (min-width: 1024px) {
  #questions{
    max-width: 1024px;
    margin: 80px auto;
  }
}
.remodal {
  position: relative;
}

.modal-close:after {
  font-family: "Material Icons Outlined";
  content: "\e14c";
  font-size: 2em;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
}

.faq {
  margin: 0 auto;
  border-top: 1px solid #c7c7c7;
  text-align: left;
}
.faq dt, .faq dd {
  padding: 15px 5px;
}
.faq dt p, .faq dd p {
  margin: 0;
  display: flex;
  align-items: center;
}
.faq dt {
  display: flex;
  justify-content: space-between;
}
.faq dt p:before {
  line-height: 1;
  content: "Q";
  color: var(--brand-color);
  font-size: 2.8rem;
  font-weight: bold;
  margin-right: 10px;
  display: inline-block;
  align-self: flex-start;
}
.faq dt:after {
  font-family: "Material Icons Outlined";
  content: "\e145";
  color: var(--brand-color);
  font-size: 2rem;
  margin-left: 10px;
  display: inline-block;
  align-self: center;
  transition: all 0.2s;
}
.faq .closed:after {
  font-family: "Material Icons Outlined";
  content: "\e15b";
}
.faq dt:hover {
  cursor: pointer;
}
.faq dd p:before {
  line-height: 1;
  content: "A";
  color: rgb(62, 171, 255);
  font-size: 2.8rem;
  font-weight: bold;
  margin-right: 10px;
  display: inline-block;
  align-self: flex-start;
}
.faq dd {
  border-top: 1px dashed #ccc;
  background: rgba(0, 91, 171, 0.04);
}

.faq:last-child {
  border-bottom: 1px solid #c7c7c7;
}

/*==============================*/
/*SP TOP 画像
/*==============================*/
#keyVisual {
  position: relative;
  max-width: 1000px;
  margin-top:60px;
  width:100%;
  height: 45vh;
  background-size: contain !important;
  background: url(/grouptop/wp-content/themes/grouptop/img/keyvisual_sp.webp)  top no-repeat;
}

.spSubtxt2 {
  text-align: center;
  padding: 10px 5px;
  font-size: 2em;
}
@media screen and (min-width: 1024px) {
  .spSubtxt2 {
    display: none;
  }
}

@media screen and (min-width: 800px) {
  #keyVisual {
    margin: auto auto 60px auto;
    height: 400px;
    max-width: 1000px;
    width:100%;
    background: url(/grouptop/wp-content/themes/grouptop/img/keyvisual_pc.webp) top center no-repeat;
    background-size: contain !important;
  }
  #keyVisual .os-txt {
    display: none;
    margin-top: 20px;
    display: block !important;
    font-size: 2.4em;
  }
}

 /* TOP:下部FCオーナー　SDGs */
 /* others */
#others {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
  row-gap: 20px;
  margin-top: 100px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  #others {
    grid-template-columns: 1fr;
    margin-top: 80px;
  }
}
#others a {
  text-decoration: none;
}
#others .other-img {
  height: 240px;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 768px) {
  #others .other-img {
    height: 200px;
  }
}
#others .other-img:nth-of-type(1) {
  background: url(/grouptop/wp-content/themes/grouptop/img/other_img02.jpg) center center no-repeat;
  background-size: cover;
}
#others .other-txt {
  padding: 1em;
  background: rgba(0, 74, 139, 0.6);
  color: #fff;
  font-size: 2rem;
}

#information {
  margin: 40px auto;
}
@media screen and (min-width: 1024px) {
  #information {
    margin: 80px auto;
  }
}


.tabInfoArea {
  width: 95%;
  max-width: 1024px;
  margin: 0 auto;
  border: 1px solid #ccc;
}
.tabInfoArea a {
  text-decoration: none;
}

ul.tabMenu {
  text-align: center;
  display: flex;
  justify-content: space-between;
}
ul.tabMenu li {
  width: calc(50% - 5px);
  cursor: pointer;
  font-size: 1.4rem;
  background: #ebebeb;
  padding: 1em 0.5em;
}
ul.tabMenu li:hover {
  color: var(--brand-color);
}
ul.tabMenu .current {
  background: #fff;
  color: var(--brand-color);
}

#tabBox_2 {
  display: none;
}

.tabBox {
  background: #fff;
  padding: 2rem 1.5rem;
}

.tagArea {
  display: flex;
  flex-direction: column;
}
.tagArea #tagAll {
  display: flex;
  align-items: flex-start;
  text-decoration: none;
}
.tagArea #tagAll:after {
  content: " ";
  display: inline-block;
  width: 1px;
  height: 1em;
}
.tagArea #tagAll a {
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1;
  margin: 0 1rem 1rem 0;
  border: 1px solid var(--brand-color);
  border-radius: 20px !important;
  padding: 0.5em 1em;
  background: var(--brand-color);
  color: #fff;
  padding: 0.5em 1em;
}

@media screen and (min-width: 1024px) {
  .tagArea {
    display: flex;
    flex-direction: row;
  }
  .tagArea #tagAll {
    display: flex;
    align-items: flex-start;
  }
  .tagArea #tagAll:after {
    content: " ";
    display: inline-block;
    border-right: 1px solid #ccc;
    width: 1px;
    height: 1em;
    padding: 0.5em 0;
    margin-right: 1em;
  }
}
.infoTags {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.infoTags li a {
  text-decoration: none;
  display: block;
  font-size: 1.5rem;
  line-height: 1;
  margin: 0 1rem 1rem 0;
  border: 1px solid var(--brand-color);
  border-radius: 20px !important;
  color: var(--brand-color);
  padding: 0.5em 1em;
  background: #fff;
}

.iframeWrapper {
  position: relative;
  padding-top: 100%;
}

@media screen and (min-width: 1024px) {
  .iframeWrapper {
    padding-top: 60%;
  }
}
iframe.info-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

iframe.info-frame::-webkit-scrollbar {
  width: 10px;
}

iframe.info-frame::-webkit-scrollbar-track {
  background-color: #ccc;
}

iframe.info-frame::-webkit-scrollbar-thumb {
  background-color: #17585d;
}

.parent:has(.infoContents){
  margin-bottom: 20px;
}

.news-list{
  margin: 0 auto !important;
}
.infoContents {
  max-width: 1000px;
  margin: 40px auto;
  text-align: left;
  border-top:2px solid #CCC;
  border-bottom: 2px solid #CCC;
  list-style: none;
  padding: 20px 0 0 0 ;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  font-weight: 400;
}
.infoContents li {
  border-bottom: 1px dotted #ccc;
  padding-bottom: 15px;
  width: 100%;
}/*
.infoContents li:last-child {
  border-bottom: 1px solid var(--asGrayLine);
}*/
.infoContents li a {
  text-decoration: none;
  display: inline-block;
  text-align: left;
  width: 95%;
  text-indent: -1em;
  margin-left: 1em;
}
.infoContents li a #info-title{
  box-sizing: border-box;
  min-height: 0vw;
  margin: 0 auto;
  padding: 0 auto;
}
.infoContents li a #info-title::before{
  content: "　";
}
.infoContents li p {
  font-size: 1.3rem;
}

.infoContents li div.list-title{
  margin: 0 auto;
}
.infoContents li div.list-title a:before{
  content: "　";
}


.entry-tags {
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  /*
  .course-new{
  	background: $course-new;
  	border:1px solid $course-new;
  }
  .event{
  	background: $event;
  	border:1px solid $event;
  }
  .news{
  	background: $news;
  	border:1px solid $news;
  }

  .seasonal-class{
  	background: $seasonal-class;
  	border:1px solid $seasonal-class;
  }*/
}
.entry-tags .tags {
  margin-top: 5px;
}
.entry-tags .tags span{
  font-size:1.4rem;
  border-radius: 2px;
  line-height: 1;
  display: block;
  text-indent: initial;
}
.entry-tags span, 
.entry-tags time, 
.entry-tags a {
  padding: 0.3em 0.5em;
  display: inline-block;
}
.entry-tags time {
  color: #0479c7;
  margin-right: 0.5em;
  /*仮*/
  font-family: 'Arial, Helvetica Neue, Helvetica, sans-serif';
}
.entry-tags span {
  margin-right: 0.5em;
  color: #fff;
  margin-bottom: 5px;
}
.entry-tags .course-new,
.entry-tags .event,
.entry-tags .news,
.entry-tags .open-school,
.entry-tags .seasonal-class{
  background: #fff;
  border: 1px solid var(--brand-color);
  color: var(--brand-color);
}
.entry-tags .flash-report,
.entry-tags .notices,
.entry-tags .new-opening {
  background: #fff;
  border: 1px solid var(--brand-color);
  color: var(--brand-color);
}
.entry-tags .important-notices {
  background: rgb(202, 0, 0);
  border: 1px solid rgb(202, 0, 0);
  color: #fff;
}

.linkToList {
  text-decoration: none;
  display: block;
  padding: 1em;
  border: 1px solid var(--brand-color);
  margin: 0 auto;
  width: 12em;
  color: var(--brand-color);
  line-height: 1;
  text-align: center;
}
.linkToList span:after {
  display: inline-block;
  font-family: "Material Icons Outlined";
  content: "\e5e1";
  margin-left: 1em;
}

.returnList {
  font-weight: 700;
  text-decoration: none;
  color: #333;
  margin-top: 20px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}
.returnList:before {
  color: var(--brand-color);
  display: inline-block;
  font-family: "Material Icons Outlined";
  content: "\e2ea";
  margin-right: 0.5em;
}

@media screen and (min-width: 720px) {
  .entry-tags {
    display: flex;
    flex-direction: row;
    margin-top: 0px;
    align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .entry-tags {
    display: flex;
    flex-direction: row;
    margin-top: 0px;
    align-items: center;
  }
  .information h2 {
    font-size: 4rem;
    transform: translate(-50%, -50%);
  }
  ul.tabMenu li {
    font-size: 2rem !important;
  }
  .tabBox .tabBoxContents {
    padding: 60px 80px;
  }
  .infoContents h3 {
    font-size: 2rem !important;
  }
  .infoContents p {
    font-size: 1.4rem !important;
  }
}
.notices-msg {
  padding: 10px 0;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1024px) {
  .notices-msg {
    max-width: 100%;
  }
}
.notices-msg p {
  margin-bottom: 0.5em;
}
.notices-msg a {
  padding: 0.5em 1em;
  background: rgb(255, 240, 242);
  border: 1px solid rgb(255, 0, 64);
  color: rgb(255, 0, 64);
  display: flex;
  justify-content: center;
  text-align: left;
  align-items: center;
  text-decoration: none;
}
.notices-msg a:after {
  font-family: "Material Icons Outlined";
  content: "\e5e1";
  display: inline-block;
  font-size: 1em;
  margin-left: 0.5em;
}

.title_base {
  margin: 0 auto;
  width: 100%;
  max-width: 1000pX;
  background: var(--brand-color);
  color: #fff;
/*  display: flex;*/
  align-items: center;
  padding: 10px 0px;
  font-size: 2.2rem;
}
@media screen and (min-width: 1024px) {
  .title_base {
    padding: 10px 20px;
    font-size: 2.2rem;
  }
}

.title_fixWidth {
  width: 95%;
  margin: auto;
}
@media screen and (min-width: 1024px) {
  .title_fixWidth {
    max-width: 1024px;
  }
}

.category-page .fixedWidth {
  width: 95%;
  margin: auto;
}
@media screen and (min-width: 1024px) {
  .category-page .fixedWidth {
    max-width: 1000px !important;
  }
}
.category-page .tagArea {
  margin-top: 40px;
}

.category-page, .archive-page {
  background: #FFF;
}
.category-page .categorylist,
.category-page .archivelist, .archive-page .categorylist,
.archive-page .archivelist {
  text-align: left;
  margin: 40px auto;
}

.category-page .categorylist h2,
.category-page .archivelist h2 {
  line-height: 1.3;
  font-size: 1.8rem;
  text-wrap: initial;
}
.category-page .categorylist li,
.category-page .archivelist li {
  margin: 20px 0;
  background: #fff;
  padding: 20px;
}
.category-page .categorylist li a,
.category-page .archivelist li a {
  text-decoration: none;
}

.archive-page .categorylist li,
.archive-page .archivelist li {
  margin: 20px 0;
  background: #fff;
  padding: 20px;
}

.wp-pagenavi, .pagination {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.wp-pagenavi a.first:after,
.wp-pagenavi a.last:after,
.pagination a.first:after,
.pagination a.last:after {
  color: var(--brand-color);
  font-size: 1.5em;
}

.wp-pagenavi .pages, .pagination .pages {
  display: none;
}

.wp-pagenavi a,
.wp-pagenavi span,
.pagination a,
.pagination span {
  display: inline-block;
  line-height: 1;
  width: 2em;
  padding: 0.5em 0;
  text-align: center;
  margin: 10px;
  position: relative;
}

.wp-pagenavi a.first:after,
.pagination a.first:after {
  font-family: "Material Icons Outlined";
  content: "\e5dc";
  display: inline-block;
  visibility: visible;
}

.wp-pagenavi span.current, .pagination span.current {
  color: #fff;
  background: var(--brand-color);
}

.wp-pagenavi a, .wp-pagenavi span, .pagination a, .pagination span {
  display: inline-block;
  line-height: 1;
  width: 2em;
  padding: 0.5em 0;
  text-align: center;
  margin: 10px;
  position: relative;
  text-decoration: none;
  color: #333;
}

.wp-pagenavi a.nextpostslink:after, .pagination a.nextpostslink:after {
  font-family: "Material Icons Outlined";
  content: "\e5e1";
  display: inline-block;
  visibility: visible;
}

.wp-pagenavi a.previouspostslink, .wp-pagenavi a.nextpostslink, .pagination a.previouspostslink, .pagination a.nextpostslink {
  color: var(--brand-color);
  visibility: hidden;
}

.wp-pagenavi a.last:after, .pagination a.last:after {
  font-family: "Material Icons Outlined";
  color: var(--brand-color);
  content: "\e5dd";
  display: inline-block;
  visibility: visible;
}

.single-contents {
  background: #fff;
}
.single-contents h1 {
  text-align: left;
  border-bottom: 4px solid rgba(0, 52, 115, 0.2);
  padding-bottom: 10px;
  font-size: clamp(2.2rem, 2.08rem + 0.512vw, 2.4rem);
  line-height: 1.3;
  text-wrap: initial;
}

.single-contents .article_desc {
  text-align: left;
  min-height: 5em;
}
.single-contents .article_desc > ul *{
  margin: 1em 0;
  margin-left: 20px;
  padding-left: 5px;
  list-style-type: disc;
}

.single-contents .article_desc a{
  color:#00468b;
}

header.form-header {
  padding-top: 0 !important;
}
header.form-header img {
  height: 60px;
  width: auto;
}

.form-page {
  background: white;
  padding: 10px 0;
  min-height: 100%;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .form-page {
    padding: 40px 0 1px 0;
  }
}
.form-page button {
  background: var(--brand-color);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 0.5em;
}

.form-footer {
  padding: 10px 0;
  margin: 0;
  background: #f5f5f5;
}
@media screen and (min-width: 1024px) {
  .form-footer {
    padding: 0 0 40px 0;
  }
}
.form-footer p {
  margin: 0 auto;
  text-align: center;
}
.stuname,
.telArea,
.mailArea {
  border-top:1px dotted #999;
}

.gradeArea dt,
.telArea dt,
.mailArea dt {
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
.gradeArea dd,
.telArea dd,
.mailArea dd{
  margin-bottom: 20px;
}

@media screen and (min-width: 1024px) {
  .gradeArea {
    margin-bottom: 40px;
  }
}

.formArea {
  background: #fff;
  width: 95%;
  max-width: 1000px;
  padding: 20px 10px;
  max-width: 1024px;
  margin: 40px auto;
}
@media screen and (min-width: 1024px) {
  .formArea {
    padding: 60px;
  }
}
.formArea .required {
  color: #FFF;
  padding: 3px 5px;
  font-size: 1.4rem;
  line-height: 1;
  background: rgb(208, 0, 0);
  border-radius: 2px;
  margin:0 5px 0 1em;
}
.formArea .unrequired {
  color: var(--brand-color);
  border: 1px solid var(--brand-color);
  margin-left: 5px;
  padding: 0.2em 0.5em;
  font-size: 1.4rem;
  line-height: 1;
  background: #fff;
  border-radius: 2px;
}
.formArea h2 {
  background-color: rgba(0, 70, 155, 0.2);
  font-size: 1.8rem;
  padding: 8px 10px;
  font-weight: 500;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 auto 20px;
}
.formArea h2 .note {
  font-size: 0.8em;
  margin: 0 5px 0 1em;
}
.formArea h2:not(:first-child) {
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .formArea h2:not(:first-child) {
    margin-top: 60px;
  }
}
.formArea h3 {
  display: grid;
  grid-template-columns: repeat(2, auto) 1fr;
  gap: 10px;
}

.classname {
  font-weight: 600;
  background: rgba(0, 91, 171, 0.1);
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 5px 5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
}

.selected_class {
  margin: 0 auto 25px;
}
.selected_class h4 {
  padding: 0 2.4rem;
  display: inline;
}
.selected_class .selected-classroom {
  font-size: 3rem;
  font-weight: bold;
  color: #005BAB;
}
.selected_class .selected-classroom-postfix {
  font-size: 2rem;
  color: #005BAB;
}

dl.addressArea dt {
  margin-top: 10px;
  margin-bottom: 5px;
}
dl.addressArea dt:first-of-type {
  margin-top: 0;
}
@media screen and (min-width: 1024px) {
  dl.addressArea {
    margin-bottom: 40px;
  }
}
dl.addressArea .zipArea {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 10px;
  row-gap: 10px;
}
@media screen and (min-width: 1024px) {
  dl.addressArea .zipArea {
    column-gap: 30px;
  }
}

dl.nameArea {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 20px;
  row-gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  dl.nameArea {
    margin-bottom: 40px;
  }
}
dl.nameArea dd {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 10px;
  row-gap: 10px;
}
dl.nameArea dd input {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  dl.nameArea dd {
    grid-template-columns: 20em 20em;
  }
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
}

input[type=text] {
  font-size: 1.8rem;
  border: 1px solid #999;
  padding: 10px;
  width: 100%;
}
/*
input[type=checkbox] {
  width: 24px;
  height: 24px;
}
*/
.form-check {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
}
@media screen and (min-width: 1024px) {
  .form-check {
    font-size: 1.6rem;
  }
}

select {
  width: 100%;
  max-width: 22em;
  padding: 10px;
}

.telArea input[type=text] {
  font-size: 1.8rem;
  border: 1px solid #999;
  padding: 10px;
  width: 100%;
  max-width: 22em;
}

.mailArea input[type=text] {
  font-size: 1.8rem;
  border: 1px solid #999;
  padding: 10px;
  width: 100%;
}

textarea.questiontxt {
  min-height: 5em;
  width: 100%;
  font-size: 1.8rem;
  field-sizing: content;
  min-height: min-content;
  min-height: 3lh;
  max-height: 10lh;
}

.submitBtnArea {
  margin-top: 40px;
  text-align: center;
}
.submitBtnArea button {
  margin: 20px auto;
  display: block;
  margin-bottom: 1em;
  padding: 1em;
}

.formCTA {
  width: 90%;
  max-width: 750px;
  margin: 20px auto 40px auto;
}

/*====================================================================
 電話お問い合わせ
====================================================================*/
.btn-wrap-tablet {
  display: none;
}
.btn-wrap-tablet .tel_icon {
  width: 20px;
}

.btn, a.btn, button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.btn-wrap-pc-sp {
  max-width: 435px;
  margin: 0 auto 20px;
}

a.btn-pc-sp {
  line-height: 1.4;
  width: 49.5%;
  padding: 1.25rem 0;
  color: white;
}

a.btn--contact {
  font-size: 2rem;
  display: block;
  padding: 1.6rem 0 1.6rem 2.2rem;
  color: #fff;
  border-radius: 100vh;
  background: #eb6100;
  -webkit-box-shadow: 0 5px 0 #d25600;
  box-shadow: 0 5px 0 #d25600;
}

a.btn--contact i {
  font-size: 2rem;
}

a.btn--contact i.fa-position-left {
  font-size: 3rem;
  left: 2rem;
}

a.btn--contact .number {
  line-height: 1;
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 2rem;
  letter-spacing: 0;
  color: #eb6100;
  border-radius: 0.5rem;
  background: #fff;
}

a.btn--contact:hover {
  color: #fff;
}

a.btn--tel {
  display: block;
  margin: 40px auto;
  padding: 10px;
  font-size: 2rem;
  color: #fff;
  border-radius: 100vh;
  background: #008000;
  letter-spacing: 2px;
  width:90%;
  max-width: 1000px;
}

a.btn--tel i {
  font-size: 2rem;
}

a.btn--tel i.fa-position-left {
  font-size: 3rem;
  left: 2rem;
}

a.btn--tel .number {
  line-height: 1;
  display: inline-block;
  margin-top: 0;
  padding: 0.25rem 2rem;
  letter-spacing: 0;
  color: #094;
  border-radius: 0.5rem;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0;
  font-weight: 500;
}

a.btn--tel:hover {
  color: #fff;
}

.fa-position-left {
  position: absolute;
  top: calc(50% - 0.5em);
  left: 1rem;
}

.fa-position-right {
  position: absolute;
  top: calc(50% - 0.5em);
  right: 1rem;
}

.btn-wrap-tablet h2::before {
  background-image: url("/grouptop/wp-content/themes/grouptop/img/freedial_w.svg");
}

/*=====
 【タブレット縦以上】
=======*/
@media screen and (min-width: 768px) {
  /*=====
  全体
  =======*/
  .form-check-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  /*=====
  電話
  =======*/
  a.btn--tel {
    margin: 50px 20px;
  }
  .btn-wrap-pc-sp2 {
    display: none;
  }
  .btn-wrap-tablet {
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
    text-align: center;
    color: green;
    font-weight: bold;
    padding: 15px 0;
    display: block;
    background-color: #f9f9f9;
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
    font-weight: normal;
  }
  .btn-wrap-tablet p {
    font-size: 1.6rem;
    margin: 0;
    letter-spacing: 1.8px;
  }
  .btn-wrap-tablet h2 {
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: 1.8px;
    margin-top: 20px;
    display: grid;
    column-gap: 15px;
    justify-content: center;
    grid-template-columns: auto auto;
    row-gap: 10px;
  }
  .btn-wrap-tablet h2::before {
    content: "";
    display: inline-block;
    width: 50px;
    height: 45px;
    background-image: url("/grouptop/wp-content/themes/grouptop/img/freedial_green.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  
  
}
.formBnr {
  margin: 0 auto 20px auto;
}
@media screen and (min-width: 1024px) {
  .formBnr {
    margin: 40px auto;
  }
}

.stuname {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 30px 5px 5px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  font-weight: 500;
}

.selected_classTitle div,
.addressTitle div,
.questions div {
  font-weight: 600;
  display: flex;
  justify-content: start;
  align-items: center;
}

.selected_classTitle,
.addressTitle,
.questions {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 5px 5px;
  background: rgba(0, 91, 171, 0.1);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
}

.selected_classTitle:hover,
.addressTitle:hover,
.questions:hover {
  cursor: pointer;
}

.selected_classTitle:after,
.addressTitle:after,
.questions:after {
  padding-bottom: 3px;
  margin-right: 10px;
  border-radius: 50%;
  text-align: center;
  width: 1.5em;
  height: 1.5em;
  background: rgb(0, 91, 171);
  color: #fff;
  font-size: 2rem;
  font-family: "Material Icons Outlined";
  content: "\e15b";
}

.selected_classTitle.closed:after,
.addressTitle.closed:after,
.questions.closed:after {
  content: "\e145";
}

.selected_classArea,
.addressArea {
  display: none;
}

.questionArea {
  display: none;
  padding-bottom: 10px;
}

.formArea .tabContent {
  width: 100% !important;
  border-top: 1px solid #ccc;
  padding-top: 10px;
}

.confilm {
  max-width: 750px;
  margin: 20px auto;
  display: grid;
  grid-template-columns: auto 1fr;
  border-top: 2px solid rgba(0, 91, 171, 0.5);
  border-bottom: 2px solid rgba(0, 91, 171, 0.5);
}
@media screen and (min-width: 1024px) {
  .confilm {
    margin: 40px auto;
  }
}
.confilm dt, .confilm dd {
  padding: 5px 10px;
  border-bottom: 1px solid #ccc;
}
.confilm dt:last-child, .confilm dd:last-child {
  border-bottom: none;
}
.confilm dt {
  padding: 5px 1em;
  background: rgba(0, 91, 171, 0.05);
}
.confilm dd {
  display: flex;
  align-items: center;
}

.confilmArea {
  width: 90%;
  max-width: 1024px;
  margin: 20px auto;
}
.confilmArea h2 {
  color: var(--brand-color);
  text-align: center;
}

.btnArea {
  margin: 20px auto 40px auto;
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  gap: 10px;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .btnArea {
    grid-template-columns: auto auto;
    margin: 20px auto 40px auto;
    gap: 30px;
  }
}
.btnArea button {
  min-width: 11em;
  padding: 0.5em 0.5em;
  line-height: 1;
}
.btnArea .modBtn {
  order: 2;
  background: #ccc;
  color: #333;
}
.btnArea .sendBtn {
  order: 1;
}
@media screen and (min-width: 1024px) {
  .btnArea .modBtn {
    order: 1;
  }
  .btnArea .sendBtn {
    order: 2;
  }
}

.returnBtn {
  margin: 40px auto;
}

.errmsg {
  color: red;
}

#errmsg-purposes,
#errmsg-brand {
  font-size: 1.6rem;
}

.form-check-label {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
  -ms-flex-pack: start;
  justify-content: start;
  margin-bottom: 1em;
  gap: 10px;
  line-height: 1.5;
}
.form-check-label-err {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
  -ms-flex-pack: start;
  justify-content: start;
  margin-bottom: 1em;
  gap: 10px;
  line-height: 1.5;
}

.form-check-label:before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  border: 1px solid #aaa;
  background: #FFF;
}

.form-check-label-err:before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  border: 1px solid #aaa;
  background: #FFDFDE;
}
input[type=checkbox]:checked + label:before {
    border: 1px solid #00469b;
    background: #00469b !important;
}
input[type=checkbox]:checked + label:after {
    content: '';
    display: inline-block;
    position: absolute;
    width: 20px;
    padding-top: 10px;
    top: 5px;
    left: 4px;
    border-left: 2px solid #FFF;
    border-bottom: 2px solid #FFF;
    transform: rotate(-45deg);
}

.form-check-input {
  display: none;
  width: 0px;
  height: 0px;
  background-color: #FFDFDE !important;
}

/* sitemap */
.sitemap {
  padding: 40px 0;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  column-gap: 30px;
  row-gap: 30px;
  text-align: left;
}
.sitemap-grid li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
}
.sitemap-grid .primalMenu {
  color: #00468c;
  font-size: 1.8rem;
}
.sitemap-grid .primalMenu::before {
  font-family: "Material Icons Outlined";
  content: "\e038";
  font-size: 120%;
  padding-top: 2px;
}
.sitemap-grid li:before {
  color: #00468c;
  content: "\e5e1";
  display: block;
  font-family: "Material Icons Outlined";
  margin-right: 6px;
}
.sitemap-grid .line2br:before {
  align-self: start;
}

@media screen and (min-width: 1024px) {
  .sitemap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .sitemap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    row-gap: 30px;
    margin: 40px;
  }
}
#areaSearch {
  background: #EBF5FF;
  padding: 40px 10px;
}
@media screen and (min-width: 1024px) {
  #areaSearch {
    padding: 60px 10px;
  }
}
#areaSearch h2 {
  margin-top: 0;
}

#areaSearch .tab-memu,
.formArea .tab-memu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-content: center;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  #areaSearch .tab-memu,
  .formArea .tab-memu {
    grid-template-columns: repeat(3, 6em);
    gap: 30px;
  }
}
#areaSearch .tab-memu li,
.formArea .tab-memu li {
  color: var(--brand-color);
  padding: 10px;
  background: #fff;
  border: 1px solid var(--brand-color);
}
#areaSearch .tab-memu li:hover,
.formArea .tab-memu li:hover {
  cursor: pointer;
}
#areaSearch .tab-memu li.current,
.formArea .tab-memu li.current {
  background: var(--brand-color);
  padding: 10px;
  color: #fff;
  border: 1px solid var(--brand-color);
}
#areaSearch .tabContent,
.formArea .tabContent {
  background: #fff;
  margin: 20px auto 0 auto;
  padding: 20px;
}
@media screen and (min-width: 1024px) {
  #areaSearch .tabContent,
  .formArea .tabContent {
    width: 750px;
    padding: 40px;
  }
}
#areaSearch .tabContent .tabbox:not(:first-child),
.formArea .tabContent .tabbox:not(:first-child) {
  display: none;
}
#areaSearch .pref,
.formArea .pref {
  margin-bottom: 20px;
}
#areaSearch .pref span,
.formArea .pref span {
  font-size: 2rem;
}
#areaSearch .pref:not(:first-of-type),
.formArea .pref:not(:first-of-type) {
  margin-top: 40px;
}
.remodal {
  position: relative;
}

.remodal-close {
  left: 100% !important;
  transform: translateX(-100%) !important;
}

.selectAreaBtn {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 20px;
}

.selectAreaBtn a {
  display: grid !important;
  grid-template-columns: 1fr auto;
  margin: 0;
  text-align: center;
  padding: 15px 10px;
  background: var(--brand-color);
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
}

.selectAreaBtn a.lightbg {
  background: #0197d3;
}

.selectAreaBtn a:after {
  font-family: "Material Icons Outlined";
  display: inline-block;
  content: "\e5e1";
}/*# sourceMappingURL=style.css.map */


/*new site*/

.onlySP {
  display: none;
}

@media screen and (max-width: 767px) {
  .onlySP {
    display: block;
  }

  .onlyPC {
    display: none;
  }
}

.h2-title {
  margin: 0 0 30px 0;
  text-align: center;
  font-weight: 500;
  font-size: clamp(2rem, 1.4rem + 2.56vw, 3rem);
  color: #003473;
  line-height: 1.5;
}
  .h2-title span {
    display: inline-block;
    padding-bottom: 0.3em;
    border-bottom: 4px solid rgba(0, 52, 115, 0.2);
  }

/* TOP : コース紹介 ==========================================-- */
#course-idx {
  @extend .sectionwidth;
  @extend .sectionMargin;
  margin-top: -5px;
  margin: 0 auto;
  max-width: 1000px;
}
/* 絞り込みのとこ */
#course-idx #selector {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    text-align: center;
    margin: 40px 0;
    padding: 0;
    list-style: none;
}
#course-idx #selector li {
      border-bottom: 5px solid #ddd;
      padding: 10px 0;
}
#course-idx #selector li:hover {
        border-bottom: 5px solid rgba(0, 52, 115, 0.5);
        cursor: pointer;
}
#course-idx #selector li.selected{
  border-bottom: 5px solid #003473;
}
#course-idx > p {
    text-align: center;
}
@media screen and (max-width: 767px) {
  /* SP */
    #course-idx #selector {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 20px;
      justify-content: center;
    }
    #course-idx #selector li {
        min-width: 5em;
        padding: 0.5em 1.25em;
        margin-right: 15px;
        margin-bottom: 15px;
        border: 1px solid #aaa;
        border-radius: 4px;
      }
              #course-idx #selector li:hover {
          border-bottom: 1px solid #ccc;
        }
        #course-idx #selector li:last-child{
          margin-right: 0;
        }

      #course-idx #selector li.selected {
        background: #003473;
        color: #fff;
        border-bottom: 1px solid #ccc;
      }
}

/* 各コースカード */
#course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 50px;
  row-gap: 50px;
}
#course-grid .course-card a{
    text-decoration: none;
}
@media screen and (max-width: 767px) {
  #course-grid{
    grid-template-columns: repeat(2, 1fr);
    column-gap: 15px;
    row-gap: 20px;
  }
}

  #course-grid .course-card {
      text-decoration: none;
      color: #333;

      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: auto auto 1fr auto;

      text-align: center;
      box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.2);
  }

      #course-grid .course-card .logobox {
        display: grid;
        place-content: center;
      }

        #course-grid .course-card .logobox:hover {
          cursor: pointer;
        }

          #course-grid .course-card .minilogo {
            margin: 0 auto;
            width: 90%;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
          }
            #course-grid .course-card .minilogo img {
                max-width: 100%;
                max-height: 100%;
                object-fit: contain;
              }
        #course-grid .course-card .minilogo.w80per {
            width: 80%;
        }
        #course-grid .course-card .minilogo.mgn20 {
            margin: 20px auto;
        }
        #course-grid .course-card img {
            margin: 0 auto;
        }

        #course-grid .course-card .catch {
            font-size: 1.4rem;
            margin-top: 10px;
            margin-bottom: 8px;
        }
  #course-grid .labels {
      padding: 10px 10px 15px 10px;
      display: grid;
      grid-template-columns: auto auto;
      gap: 20px;
      justify-content: center;
  }
    @media screen and (max-width: 767px) {
      #course-grid .labels {
          grid-template-columns: 1fr;
          gap: 10px;
      }
    }
    #course-grid .labels span {
          background: #ccc;
          border-radius: 1em;
          color: #fff;
          display: inline-block;
          padding: 3px 1em;
          line-height: 1;
          font-size: 1.4rem;
    }
      @media screen and (max-width: 767px) {
        #course-grid .labels span {
              padding: 3px 0.5em;
        }
        #course-grid .minicard {
          align-self: self-start;
        }
      }
  /*all 中・高・大 ===========================*/
    #course-grid .all .target {
        padding: 10px;
        color: green;
        border-top: 5px solid green;
    }
      #course-grid .all .labels span {
            background: green;
      }
  /*targetU 大学受験 ===========================*/
    #course-grid .targetU .target {
        padding: 10px;
        color: #005bab;
        border-top: 5px solid #005bab;
    }
      #course-grid .targetU .labels span {
            background: #005bab;
      }
  /*ups アルスポート ===========================*/
    #course-grid .usp .target{
        padding: 10px;
        color: #372851;
        border-top: 5px solid #372851;
    }
    #course-grid .usp .labels span{
        background: #372851;
    }

  /*smanavi スマートナビ ===========================*/
    #course-grid .smanavi .target {
        padding: 10px;
        color: #2db500;
        border-top: 5px solid #2db500;
    }
      #course-grid .smanavi .labels span {
          background: #2db500;
      }
  /*hoiku 保育園 ===========================*/
    #course-grid .hoiku .target {
        padding: 10px;
        color: #ff922d;
        border-top: 5px solid #ff922d;
    }

      #course-grid .hoiku .labels span {
          background: #ff922d;
      }
  /*labg 言語 ===========================*/
    #course-grid .lang .target {
        padding: 10px;
        color: #15a3e5;
        border-top: 5px solid #15a3e5;
    }
      #course-grid .lang .labels span {
            background: #15a3e5;
      }


  /* TOP:開成グループをもっと知る！ */
  #top-details{
    margin: 80px auto;
    max-width: 1000px;
  }
  #top-details #details-grid{
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(1fr);
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 30px;
  }
  #top-details #details-grid div.detail-img{
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    min-height: 240px;
    max-width: 530px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    text-decoration: none;
    width: 90%;
    margin: auto;
  }
     #top-details #details-grid div.detail-img a{
      position: absolute;
      top:0;
      left:0;
      display: block;
      text-decoration: none;
      height:100%;
      width: 100%;
      z-index: 100;
    }
  #top-details #details-grid div.detail-img .detail-txt,
  #top-details #info_list div.detail-img .detail-txt{
    background: rgba(0,74,139,0.6);
    padding: 10px;
    color: #fff;
    z-index: 1;
    position: relative;
  }
section > #info_list{
  list-style: none;
  width: 100%;
  max-width: 1000px;
  margin: 30px auto 0 auto;
  padding-right: 0.5%;
  gap: 15px;
  display: grid;
  grid-template-columns: repeat(4, 24%);
}

  #top-details #info_list div.detail-img{
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    min-height: 150px;
    max-width: 530px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    text-decoration: none;
    width: 100%;
    margin: auto;
  }
     #top-details #info_list div.detail-img a{
      position: absolute;
      top:0;
      left:0;
      display: block;
      text-decoration: none;
      height:100%;
      width: 100%;
      z-index: 100;
    }

  #top-details #info_list div.detail-img:nth-of-type(1)::after{
  position: absolute;
  top: 0;
  display: block;
  content: " ";
  width: 100%;
  height: 100%;
  background: url(/wp-content/themes/grouptop/img/top_corporate.png);
  background-size:cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-position:top;
  z-index: 0;
  transition: all 0.3s ease-out;
}
#top-details #info_list div.detail-img:nth-of-type(2)::after{
  position: absolute;
  top: 0;
  display: block;
  content: " ";
  width: 100%;
  height: 100%;
  background: url(/wp-content/themes/grouptop/img/top_recruit.png);
  background-size:cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-position:top;
  z-index: 0;
  transition: all 0.3s ease-out;
}
#top-details #info_list div.detail-img:nth-of-type(3)::after{
  position: absolute;
  top: 0;
  display: block;
  content: " ";
  width: 100%;
  height: 100%;
  background: url(/wp-content/themes/grouptop/img/top_jobinfo.png);
  background-size:cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-position:top;
  z-index: 0;
  transition: all 0.3s ease-out;
}
#top-details #info_list div.detail-img:nth-of-type(4)::after{
  position: absolute;
  top: 0;
  display: block;
  content: " ";
  width: 100%;
  height: 100%;
  background: url(/wp-content/themes/grouptop/img/top_fc.png);
  background-size:cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-position:top;
  z-index: 0;
  transition: all 0.3s ease-out;
}
  #top-details #info_list div.detail-img .detail-txt{
    padding: 5px;
  }
  #top-details #info_list div.detail-img .detail-txt h3{
    width: 100%;
    text-align: center;
    margin: 3px;
  }
@media screen and (max-width: 767px) {
  section > #info_list{
    list-style: none;
    width: 100%;
    max-width: 1000px;
    margin: 30px auto 0 2.5%;
    padding-right: 0.5%;
    gap: 15px;
    display: grid;
    grid-template-columns: repeat(1, 95%);
    row-gap: 30px;
  }
  #top-details #info_list div.detail-img{
    min-height: 240px;
  }
  #top-details #info_list div.detail-img .detail-txt h3{
    margin: 1em auto;
  }
}


  #top-details #details-grid div.detail-img:nth-of-type(1):after{
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    background-size: cover;
    transition: all 0.3s ease-out;
    z-index: 0;
  }
  #top-details #details-grid div.detail-img:nth-of-type(2):after{
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    background-size: cover;
    transition: all 0.3s ease-out;
    z-index: 0;
  }
  #top-details #details-grid div.detail-img:nth-of-type(3):after{
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    background-size: cover;
    transition: all 0.3s ease-out;
    z-index: 0;
  }
  @media screen and (min-width: 768px) {
    #top-details #details-grid{
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(3,1fr);
      -moz-column-gap: 30px;
      column-gap: 30px;
      row-gap: 30px;
    }

    #top-details #details-grid div.detail-img{
      position: relative;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
      min-height: 240px;
      -webkit-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
      overflow: hidden;
      text-decoration: none;
    }

  }





/**/
.subhead_img.course,
.subhead_img.principal,
.subhead_img.group{
  margin-top: 60px;
}
  @media screen and (min-width: 768px) {
    .subhead_img.course,
    .subhead_img.principal,
    .subhead_img.group{
      margin-top: 129px;
    }
  }


/*course案内 ====================================================*/
/*title*/
.coursemgn{
  margin-bottom: 80px;
}
#course-title{
  margin: 0 0 30px 0;
    text-align: center;
    font-weight: 500;
    font-size: clamp(1.8rem, 1.448rem + 1.502vw, 2.8rem);
    color: #003473;
    line-height: 2;
}
#course-title span{
  display: inline;
  padding-bottom: 0.3em;
  background: linear-gradient(transparent 80%, rgba(0, 52, 115, 0.1) 80%);
}

.target-name span {
  display: none;
  text-align: center;
  font-size: 0.7em;
  margin-top: 10px;
  font-weight: normal;
}

.subhead_img{
  width: 100%;
  max-width: 1000px;
  min-height: 350px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  justify-items: start;
}
.subhead_img.course {
  background: url(/grouptop/wp-content/themes/grouptop/img/course_main_pc.jpg);
  background-size: cover;
}
  @media screen and (max-width: 768px) {
    .subhead_img.course{
      background: url(/grouptop/wp-content/themes/grouptop/img/course_main_sp.jpg) center right -30px;
      background-size: cover;
    }
  }

.subhead_img .subhead_title {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 70, 155, 0.8)), color-stop(65%, rgba(0, 70, 155, 0.8)), to(rgba(0, 70, 155, 0)));
    background-image: -webkit-linear-gradient(left, rgba(0, 70, 155, 0.8), rgba(0, 70, 155, 0.8) 65%, rgba(0, 70, 155, 0));
    background-image: linear-gradient(90deg, rgba(0, 70, 155, 0.8), rgba(0, 70, 155, 0.8) 65%, rgba(0, 70, 155, 0));
    color: #fff;
    padding: 1em 6em 1em 3em;
    letter-spacing: 0.1em;
}
  @media screen and (max-width: 768px) {
    .subhead_img .subhead_title {
        padding: 1em 6em 1em 1em;
        margin-bottom: 40px;
    }
}

/*mainbubunn*/
.course-block{
  max-width: 1000px;
  width: 90%;
  margin: 30px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;
  row-gap: 20px;
  border-top:1px solid #CCC;
  padding:20px;
}
  @media screen and (max-width: 768px) {
    .course-block{
      grid-template-columns: 1fr;
      border: 1px solid #ccc;
      -webkit-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.2);
      box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.2);
    }
  }
.course-block .logo-side{
  text-align: center;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3,auto);
  gap:15px;
  align-self: self-start;
}
.course-block .minlabel{
  background:#00469b;
  color:#FFF;
  display: block;
  margin:0 auto;
  padding:0.25em 0.5em;
  align-self: center;
  width: 80%;
  border-radius: 1em;
}
  @media screen and (max-width: 768px) {
    .course-block .minlabel{
      text-align: center;
    }
  }
.course-block .minilogo {
  margin: 0 auto;
  width: 70%;
  height: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .course-block .minilogo img{
    width: 90%;
  }
}
.course-block .minilogo img {
  width: 100%;
  /* 親要素の幅に合わせて画像を最大化 */
  height: 100%;
  /* 親要素の高さに合わせて画像を最大化 */
  -o-object-fit: contain;
     object-fit: contain;
  /* アスペクト比を維持しながら、要素内に画像を収める */
}

.course-block dl {
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.course-block dl dt {
  border: 1px solid #ccc;
  width: 5em;
}
.course-block dl dd {
  margin: 0;
  text-align: left;
}

.course-block .catch {
  font-size: 2.2rem;
  font-weight: 600;
  color: #00469b;
}

.course-block .txt-side-kinder {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .course-block {
        grid-template-columns: 1fr;
        border: 1px solid #ccc;
        -webkit-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.2);
    }
}


.linkToDetail {
  margin-top: 10px;
  text-decoration: none;
  background: #00469b;
  padding: 0.5em;
  color: #fff;
  line-height: 1;
  display: block;
  margin-left: auto;
  width: 10em;
}

.linkToDetail span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.linkToDetail span:after {
  font-family: "Material Icons Outlined";
  content: "\e5e1";
}


/*学院長メッセージ ====================================================*/
.subhead_img{
  width: 100%;
    max-width: 1000px;
    min-height: 350px;
    margin: 0 auto;
    display: grid;
    place-items: center;
    justify-items: start;
}
.subhead_img.principal {
  background-image: url(/grouptop/wp-content/themes/grouptop/img/message_main_pc.jpg);
  background-size: cover;
}
.message{
  margin: 80px auto;
  max-width: 1000px;
}
.message .head-border{
  position: relative;
  display: inline-block;
  padding: 0 0 0 50px;
}
.message .head-border::before{
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 40px;
  height: 2px;
  background-color: #666;
  left: 0;
}
.message h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  line-break: anywhere;
  margin-bottom: 30px;
  line-height: 1.4;
}
.message p{
  line-height: 1.8;
}

.pc-col2{
  display: grid;
  grid-template-columns: 1fr 300px;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
  column-gap: 50px;
  row-gap: 20px;
  margin-bottom: 40px;
}
.pc-col2 img{
  margin:0 auto;
  margin-bottom: 5px;
}
.pc-col2 .nagai{
  font-size: 2rem;
  display: inline-block;
  margin-left: 10px;
}
.pc-col2 .colimg{
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}
.pc-col2-rev{
  display: grid;
  grid-template-columns: 400px 1fr;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
  column-gap: 50px;
  row-gap: 20px;
}
.pc-col2-rev img{
  width: 100%;
  margin:  0 auto;
}

/*sp*/
@media screen and (max-width: 768px){
  .subhead_img.principal{
    background-image: url(/grouptop/wp-content/themes/grouptop/img/message_main_sp.jpg);
  }
  .message{
    margin: 60px auto;
    width: 90%;
  }
  .message h2{
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .subhead_img{
    -webkit-box-align: end;
    -webkit-align-items: end;
    -ms-flex-align: end;
    align-items: end;
  }
  .pc-col2{
    grid-template-columns: 1fr;
  }
  .pc-col2 .colimg{
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    text-align: center;
  }
  .pc-col2 .coltxt{
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .pc-col2-rev{
    grid-template-columns: 1fr;
  }
  .pc-col2-rev img{
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
}

/*INFO関連 ====================================================*/
.breadcrumbs{
  margin:0;
}
@media screen and (max-width: 768px){
  .breadcrumbs{
    margin:auto auto auto 5%;
  }
  .breadcrumb:has(+ .category-page) .fixedWidth .breadcrumbs{
    margin:auto auto auto 10px;
  }
}

/*本社・本部所在地*/
.subhead{
  background: #00469b;
  width: 100%;
  max-width: 1000px;
  margin: 20px auto;
  padding: 1em;
}
.subhead .subhead_title{
  color: #fff;
  margin: 0;
  letter-spacing: 0.1em;
  font-size: clamp(2rem, 1.88rem + 0.512vw, 2.2rem);
}
.outline{
  max-width: 1000px;
  margin:0 auto 80px auto;
}
.h2-line{
  margin: 0 0 30px 0;
  text-align: center;
  font-weight: 500;
  font-size: clamp(2rem, 1.4rem + 2.56vw, 3rem);
  color: #003473;
  line-height: 1.5;
}
.h2-line span{
  display: block;
  padding-bottom: 0.3em;
  border-bottom: 4px solid rgba(0, 52, 115, 0.2);
}
.outline .outline-grid{
  display: grid;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-template-columns: auto auto;
  -webkit-column-gap: 70px;
  -moz-column-gap: 70px;
  column-gap: 70px;
  row-gap: 20px;
}
.outline .outline-grid img{
  width: 80%;
  margin: 0 auto;
}
.outline .outline-grid .officeimg{
  width: 100%;
}
.outline .outline-grid dl{
  text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    -webkit-column-gap: 1em;
    -moz-column-gap: 1em;
    column-gap: 1em;
    row-gap: 1em;
}
.outline .outline-grid dl dt{
  font-weight: bold;
}
.outline .outline-grid dl dd{
  margin: 0;
}
/*sp*/
@media screen and (max-width: 768px){
  .outline{
    width: 90%;
    margin:60px auto;
  }
  .outline .outline-grid{
    grid-template-columns: 1fr;
  }
}


/*開成教育グループ一覧*/
.subhead_img.group {
  background-image: url(/grouptop/wp-content/themes/grouptop/img/school_img_pc.jpg);
  background-size: cover;
}

#group-list{
  max-width:1000px;
  margin: 0 auto;
}
.h2-copy{
  margin: 0 0 30px 0;
  text-align: center;
  font-weight: 600;
  font-size: clamp(1.8rem, 1.448rem + 1.502vw, 2.8rem);
  color: #003473;
  line-height: 2;
}
.h2-copy span{
  display: inline;
  padding-bottom: 0.3em;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(80%, rgba(0, 52, 115, 0.1)));
  background: -webkit-linear-gradient(transparent 80%, rgba(0, 52, 115, 0.1) 80%);
  background: linear-gradient(transparent 80%, rgba(0, 52, 115, 0.1) 80%);
}
.group-list-item{
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    border-top: 1px solid #ccc;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 20px;
    margin-bottom: 20px;
}
.group-list-item .logolist img {
    width: 80%;
    margin: 0 auto;
}
.group-list-item .logolist {
    text-align: center;
}
.group-list-item dl {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 6em 1fr;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 2px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.group-list-item dl dt {
    color: rgb(1, 66, 144);
    background: rgba(1, 66, 144, 0.2);
    text-align: center;
    padding: 5px 1em;
    border-radius: 1em;
    line-height: 1;
}
.group-list-item dl dd {
    margin: 0;
    padding: 5px 0;
    word-break: break-all;
}
@media screen and (max-width: 768px) {
  .subhead_img.group {
    background-image: url(/grouptop/wp-content/themes/grouptop/img/school_img_sp.jpg);
    background-size: cover;
  }
  #group-list{
    width:90%;
    margin: 0 auto;
  }
  .group-list-item{
      padding-top: 30px;
      margin-bottom: 30px;
      grid-template-columns: 1fr;
      gap: 20px;
  }
}


/*当塾生の安全管理について*/
.security {
    max-width: 1000px;
    margin: 0 auto 80px auto;
}
.security .kakkonum {
    list-style-type: none;
    counter-reset: cnt;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5em;
    margin-top: 40px;
    width:95%;
    padding-left: 5%;
}
.security .security-name {
    width: 8em;
    margin: 1em 5% 1em auto;
}
.security .h2-topsub {
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}
.security .security-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr auto;
    -webkit-column-gap: 70px;
    -moz-column-gap: 70px;
    column-gap: 70px;
    row-gap: 20px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.security .security-grid > div{
  margin: 0 auto;
  padding: 0 0 0 5px;
/*  align-content: space-around;*/
}
.security strong {
    font-weight: bold;
    color: #00469b;
}
.security .security-grid img {
  width: 100%;
  max-width: 370px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .security{
    width:90%;
    margin: 40px auto;
  }
  .security .security-grid {
        margin: 40px auto auto auto;
        grid-template-columns: 95%;
  }
}

/*個人情報保護ポリシーについて*/
.privacy {
    max-width: 1000px;
    margin: 60px auto 80px auto;
}
.privacy p {
    margin: 1em 0;
}
.privacy h2 {
    font-size: 1.8rem;
}
.privacy h3 {
    font-size: 1.6rem;
}
.privacy .policy-box {
    font-size: 1.4rem;
    list-style: none;
}
.privacy .policy-box li {
    margin-bottom: 25px;
    padding-left: 2em;
    text-indent: -2em;
}
.privacy .policy-name {
    width: 11em;
    margin: 1em 0 1em auto;
}
.privacy .setback {
    padding-left: 1em;
    font-size: 1.4rem;
}
.privacy table {
    text-align: left;
    margin: 1em auto 2em auto;
}
.privacy table th {
    font-weight: normal;
    width: 35%;
    background: #F9F9F9;
    border: solid 1px #CCCCCC;
    padding: 10px;
}
.privacy table td {
    border: solid 1px #CCCCCC;
    padding: 10px;
}
.privacy ul {
    margin-left: 0;
    padding-left: 1em;
    list-style: disc;
}
.privacy ul li ::marker {
    unicode-bidi: isolate;
    font-variant-numeric: tabular-nums;
    text-transform: none;
    text-indent: 0px !important;
    text-align: start !important;
    text-align-last: auto !important;
}
.privacy .dl-indent {
    margin: 1em 0;
}
.privacy .dl-indent-wide {
    margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .privacy{
    width:90%;
    margin: 40px auto;
  }
}


/*カスタマーハラスメントに関する基本方針*/
.harassment {
    max-width: 1000px;
    margin: 40px auto 80px auto;
}
.harassment h2{
    font-size: 1.6rem;
    margin-bottom: 0.5em;
}
.harassment h2:not(:first-child){
    margin-top: 2em;
}
.harassment p, .harassment ol, .harassment ul{
    font-size: 1.4rem;
    margin: 0;
    padding: 0 0 0 2em;
}
.harassment ol li,
.harassment ul li {
    margin: 0 0 0 1em;
}
.harassment ul li{
  list-style: disc;
}
@media screen and (max-width: 768px) {
  .harassment{
    width:90%;
    margin: 40px auto;
  }
}


