@charset "utf-8";

/* ----------------------------------------------------------

Common Setting

---------------------------------------------------------- */
/*pc + sp*/
.pc   {display:block}
.sp   {display:none}
@media only screen and (max-width:767px) {
.pc   {display:none}
.sp   {display:block}
}

/*  基本スタイル */
:root {
  --color1: #fff;
  --color2: #122a88;/*main*/
  --color3: #fff648;/*sub*/
  --color4: #eef0f7;
  --color5: #fffaee;
  --color6: #3453b7;
  --bg1: #fff;
  --bg2: #122a88;/*main*/
  --bg3: #fff648;/*sub*/
  --bg4: #eef0f7;
  --bg5: #fffaee;
  --bg6: #3453b7
}

div,h1,h2,h3,h4,h5,h6,p,ul,ol,li,dl,dt,dd  {
  position: relative;
  word-break:break-all;
  padding:0;
  margin:0;
  box-sizing:border-box;
  outline:none;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

h1,h2,h3,h4,h5,h6   {
  font-weight:normal;
  padding:0;
  margin:0
}

/*font*/
.ja2  {
  font-family: "LINE Seed JP", sans-serif;
  font-style: normal;
}

.en {
  font-family: "din-2014", sans-serif;
  font-style: normal;
}

.en__italic {
  font-family: "din-2014", sans-serif;
  font-style: italic;
}


/*ul dl*/
ul,ul li  {
  list-style:none;
  padding:0;
  margin:0
}

ul.disc li {
  list-style: disc;
  margin-left: 1em;
}

ol  {
  margin-left: 1em;
}


/*position*/
.center {
  text-align:center
}

.left {
  text-align:left
}

.right  {
  text-align:right
}

.block  {
  display: block;
}

.large {
  font-size: 120%;
}

.small {
  font-size: 90%;
}


strong.marker {
  background:linear-gradient(transparent 60%, #fffaa3 60%);
}

/*flex
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: top;
}

  .flex.alignitems__center {
    align-items: center;
  }

  .flex.space__between {
    justify-content: space-between;
  }

  .flex.center {
    justify-content: center;
  }

  .flex.left {
    justify-content: left;
  }

  .flex.right {
    justify-content: right;
  }

.flex.divided2 .flex__list {
  flex-basis: 48%;
  margin-bottom: 4%;
}

  .flex.divided2 .flex__list:nth-child(even) {
    margin-left: 2%;
  }

.flex.divided3 .flex__list {
  flex-basis: 32%;
  margin-bottom: 4%;
}

  .flex.divided3 .flex__list:nth-child(3n-1) {
    margin-left: 1%;
    margin-right: 1%;
  }

.flex .flex__list.w20 {
  flex-basis: 20%;
}

.flex .flex__list.w25 {
  flex-basis: 25%;
}

.flex .flex__list.w30 {
  flex-basis: 30%
}

.flex .flex__list.w31 {
  flex-basis: 31%
}

.flex .flex__list.w32 {
  flex-basis: 32%
}

.flex .flex__list.w33 {
  flex-basis: 33%
}

.flex .flex__list.w35 {
  flex-basis: 35%
}

.flex .flex__list.w40 {
  flex-basis: 40%;
}

.flex .flex__list.w45 {
  flex-basis: 45%;
}

.flex .flex__list.w50 {
  flex-basis: 50%;
}

.flex .flex__list.w55 {
  flex-basis: 55%;
}

.flex .flex__list.w60 {
  flex-basis: 60%;
}

.flex .flex__list.w65 {
  flex-basis: 65%;
}

.flex .flex__list.w70 {
  flex-basis: 70%;
}

.flex__list a {
  text-decoration: none!important
}

@media only screen and (max-width:767px) {
  .flex.divided2 ,
  .flex.divided3  {
    margin-left: auto;
    margin-right: auto;
  }
  
  .flex.space__between {
    justify-content: center;
  }

  .flex .flex__list,
  .flex.divided2 .flex__list,
  .flex.divided3 .flex__list,
  .flex.divided2 .flex__list:nth-child(even),
  .flex.divided3 .flex__list:nth-child(even),
  .flex.divided3 .flex__list:nth-child(3n-1) {
    flex-basis: 100%;
    width: 100%;
    margin-bottom: 4%;
    margin-left: auto;
    margin-right: auto;
  }

  .flex .flex__list.w20,
  .flex .flex__list.w25,
  .flex .flex__list.w30 ,
  .flex .flex__list.w31,
  .flex .flex__list.w32,
  .flex .flex__list.w33,
  .flex .flex__list.w35,
  .flex .flex__list.w40,
  .flex .flex__list.w45,
  .flex .flex__list.w50,
  .flex .flex__list.w55 ,
  .flex .flex__list.w60,
  .flex .flex__list.w65 ,
  .flex .flex__list.w70 {
    flex-basis: 100%;
    margin-left: auto;
    margin-right: auto;
  }

}
*/

/*wide*/
.w10 {
  width: 10%;
}

.w20 {
  width: 20%;
}

.w30 {
  width: 30%;
}

.w40 {
  width: 40%;
}

.w50 {
  width: 50%;
}

.w60 {
  width: 60%;
}

.w70 {
  width: 70%;
}

.w80 {
  width: 80%;
}

.w90 {
  width: 90%;
}

.w100 {
  width: 100%;
}

/*link*/
a,
a:hover {
  cursor:pointer;
  color: inherit;
  transition-property: opacity;
  transition-duration: 0.5s;
  transition: 0.2s all;
}

a:hover {
  opacity: 0.7; 
}
/*
@media (min-width: 767px) {
  a[href^="tel:"] {
      pointer-events: none;
      cursor: default;
  }
}
*/
@media only screen and (max-width: 767px) {
  a:hover {
    opacity: 1.0; 
  }
}

/*img*/
img {
  vertical-align:middle;
  -ms-interpolation-mode:bicubic;
  max-width:100%
}

figure  {
  padding-left: 0;
  margin-right: 0;
  margin-left: auto;
  margin-right: auto;
}

.radius,
img.radius {
  border-radius: 18px;
}

@media only screen and (max-width:767px) {
  img.radius {
    border-radius:calc(36px / 2);
  }
}

img.round {
  border-radius: 100%;
}

.alignnone,
.alignleft,
.alignright,
.aligncenter  {
  margin:0;
}

.alignleft  {
  display:inline;
  float:left;
  margin-top:9px;
  margin-right:36px;
  margin-bottom:18px
}

.alignright {
  display:inline;
  float:right;
  margin-top:9px;
  margin-left:36px;
  margin-bottom:18px
}

.aligncenter  {
  clear:both;
  display:block;
  margin-left:auto;
  margin-right:auto;
  text-align:center
}

@media only screen and (max-width:767px) {
  .alignnone,
  .alignleft,
  .alignright,
  .aligncenter  {
    display:block;
    float:none;t
    ext-align:center;
    margin:1em auto
  }
}


/*loading */
.loader-bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 123456789;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  font-size: 10px;
  margin: auto;
  text-indent: -9999em;
  width: 5em;
  height: 5em;
  border-radius: 50%;
  background: #ffffff;
  background: -moz-linear-gradient(left, #999 10%, rgba(255, 255, 255, 0) 42%);
  background: -webkit-linear-gradient(left, #999 10%, rgba(255, 255, 255, 0) 42%);
  background: -o-linear-gradient(left, #999 10%, rgba(255, 255, 255, 0) 42%);
  background: -ms-linear-gradient(left, #999 10%, rgba(255, 255, 255, 0) 42%);
  background: linear-gradient(to right, #999 10%, rgba(255, 255, 255, 0) 42%);
  position: relative;
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

.loader:before {
  width: 50%;
  height: 50%;
  background: #fff;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}

.loader:after {
  background: #fff;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@-webkit-keyframes load3 {
  0% {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  }
  100% {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  }
  100% {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
  }
}
/* ----------------------------------------------------------

Btn Setting

---------------------------------------------------------- */
/*btn*/
.btn, 
button[type="button"], 
input[type="button"], 
input[type="submit"]  {
  display:block;
  text-decoration: none;
  text-align:center;
  text-decoration:none;
  box-sizing:border-box;
  position:relative;
  cursor:pointer;
  box-shadow:none;
  outline:none;
  appearance:none;
  font-weight: 600;
  border-radius:9px;
}

.btn__primary {
  background-color:  var(--color3);
  border: 1px solid var(--color3);
  background-position:95% 55% ;
  background-image: url(../img/icon__arrow.png);
  background-size: 6.25px;
  background-repeat: no-repeat;
  text-align: center;
  color: #222;
  font-size: 18px;
  padding:13.5px 36px;
}

  .btn__primary:hover,
  .btn__primary:focus  {
    color: #222;
  }

.btn__secondary {
  background-color: var(--color2);
  border: 1px solid var(--color1);
  background-position:95% 55% ;
  background-image: url(../img/icon__arrow__w.png);
  background-size: 6.25px;
  background-repeat: no-repeat;
  text-align: center;
  color:var(--color1);
  font-size: 18px;
  padding:13.5px 36px;
}

  .btn__secondary:hover,
  .btn__secondary:focus  {
    color: var(--color1);
  }

.btn__border {
  background-color:var(--color1);
  border: 1px solid var(--color2);
  background-position:95% 55% ;
  background-image: url(../img/icon__arrow.png);
  background-size: 6.25px;
  background-repeat: no-repeat;
  text-align: center;
  color: var(--color2);
  font-size: 18px;
  padding:13.5px 36px;
}

  .btn__border:hover,
  .btn__border:focus  {
    background-color:var(--color2);
    border: 1px solid var(--color1);
    background-position:95% 55% ;
    background-image: url(../img/icon__arrow__w.png);
    background-size: 6.25px;
    background-repeat: no-repeat;
    text-align: center;
    opacity: 1;
    color: var(--color1);
  }

/*icon__tel + icon__web */
.icon__tel {
  display: inline-block;
  vertical-align: middle;
  width: 16.5px;
  margin-right: 2.25px;
}

.icon__web {
  display: inline-block;
  vertical-align: middle;
  width: 15.5px;
  margin-right: 2.25px;
}


@media only screen and (max-width:767px) {
  .icon__tel {
    margin-right: calc(2.25px / 1.5);
    width:calc(17.5px / 1.75);
    margin-top: calc(2.25px / 1.5);
  }
  
  .icon__web {
    width: calc(15.5px / 1.5);
    margin-top:calc(2.25px / 1.5);
    margin-right: calc(2.25px / 1.5);
  }

}


@media only screen and (max-width:767px) {
  .btn__primary,
  .btn__secondary,
  .btn__line,
  .btn__border {
    font-size:calc(18px / 1.15);
    padding:calc(13.5px / 1) calc(36px / 2);
  }
}

/* ----------------------------------------------------------

Table Setting

---------------------------------------------------------- */
/*wide*/
table.w20 th {
  width: 20%;
}

table.w30 th {
  width: 30%;
}

table.w35 th {
  width: 35%;
}

table.w40 th {
  width: 40%;
}

table.w45 th {
  width: 45%;
}

table.w50 th {
  width: 50%;
}

@media only screen and (max-width:767px) {
  table.w30 th,
  table.w35 th,
  table.w40 th ,
  table.w45 th ,
  table.w50 th {
    width: 50%;
  }
}

/*table__bordered*/
table.table__bordered {
  border: none;
  width: 100%;
  table-layout: fixed;
  border: 1px solid #ccc;
  border-collapse: collapse;
  padding: 0;
  margin: 0;
}

table.table__bordered tr th {
  text-align: left;
  font-weight: 400;
  border: 1px solid #ccc;
  background: var(--color3);
  padding: 18px;
  font-weight: bold;
}

table.table__bordered tr td {
  text-align: left;
  font-weight: 400;
  border: 1px solid #ccc;
  padding: 18px;
}/*

  table.table__bordered tr:nth-last-child(1) th ,
  table.table__bordered tr:nth-last-child(1) td  {
    border-bottom: none;
  }
*/
@media only screen and (max-width:767px) {
  table.table__bordered  {
    border: none;
  }

  table.table__bordered tr th ,
  table.table__bordered tr td {
    display: block;
    width: 100%;
    padding:calc(18px / 1.5);
    box-sizing: border-box;
    position: relative;
    border: none;
  }

}

.wp-block-table table ,
.wp-block-table tr th ,
.wp-block-table tr td {
  border: 1px solid #ccc;
  border-collapse: collapse;
}


/*table__striped*/
table.table__striped {
  border: none;
  width: 100%;
  table-layout: fixed;
  border: none;
  border-collapse: collapse;
  padding: 0;
  margin: 0;
}

table.table__striped tr th ,
table.table__striped tr td {
  text-align: left;
  font-weight: 400;
  padding: 18px;
}

table.table__striped tr th {
  font-weight: bold;
}

  table.table__striped tr th.right {
    text-align: right;
  }

  table.table__striped tr:nth-child(odd) th ,
  table.table__striped tr:nth-child(odd) td {
    background: var(--bg3);
  }

  table.table__striped tr:nth-child(even) th ,
  table.table__striped tr:nth-child(even) td {
    background: #fff;
  }

/*

  table.table__bordered tr:nth-last-child(1) th ,
  table.table__bordered tr:nth-last-child(1) td  {
    border-bottom: none;
  }
*/

@media only screen and (max-width:767px) {
  table.table__striped  {
    border: none;
  }

  table.table__striped tr th ,
  table.table__striped tr td {
    box-sizing: border-box;
    border: none;
  }

    table.table__striped tr th{
    }

    table.table__striped tr td {
    }

}


/*table__responsive*/
@media only screen and (max-width:767px) {
  /*table__responsive*/
  .table__responsive {
    table-layout: fixed;
  }

  .table__striped.table__responsive tr th,
  .table__striped.table__responsive tr td,
  .table__responsive tr th,
  .table__responsive tr td {
    width: 100%;
    box-sizing: border-box;
    position: relative;
    display: block;
  }

  .table__responsive tr th,
  .table__striped.table__responsive tr th,
  .table__bordered.table__responsive tr th {
    padding-bottom: 2.25px;
    border: none;
  }

  .table__bordered.table__responsive tr {
    border: 1px solid #dedede;
  }

  .table__responsive tr td,
  .table__striped.table__responsive tr td,
  .table__bordered.table__responsive tr td {
    padding-top: 2.25px;
    border: none;
  }

  .table__responsive.w20,
  .table__responsive.w30,
  .table__responsive.w40,
  .table__responsive.w50 {
    width: 100%;
  }
}


/* ----------------------------------------------------------

Layout Setting

---------------------------------------------------------- */
body        {
  position: relative;
  font-feature-settings:"palt" 1;
  line-break:strict!important;
  overflow-wrap:break-word!important;
  word-wrap:break-word!important;
  box-sizing:border-box;
  width:100%;
  max-width: 1920px;
  min-width: 1180px;
  color: #222;
  font-weight: normal;
  font-size:18px;
  line-height:2;
  letter-spacing: 0.025em;
  padding:0;
  margin:auto;
}

main {
  position: relative;
}

.container__fluid  {
  width:100%;
  margin:auto;
  max-width: 1980px;
}

.container__wide {
  width:100%;
  margin:auto;
  padding-left: 2.5em;
  padding-right: 2.5em;
  max-width: 1980px;
}

.container  {
  width:1280px;
  max-width: 1980px;
  margin:auto;
}

.container__middle {
  max-width:1180px;
  margin:auto;
}

.container__narrow {
  max-width:1024px;
  margin:auto;
}

.container__xnarrow  {
  max-width:980px;
  margin:auto;
}

.container__xxnarrow {
  max-width:880px;
  margin:auto;
}

.container__xxxnarrow {
  max-width:780px;
  margin:auto;
}

.container__xxxxnarrow {
  max-width:680px;
  margin:auto;
}

.container__xxxxxnarrow {
  max-width:468px;
  margin:auto;
}

@media only screen and (max-width:767px) {
  body  {
    min-width:1px;
    font-size:calc(18px / 1.18);
    line-height: 1.89;
    -webkit-text-size-adjust:100%;
    -webkit-overflow-scrolling:touch;
  }

  .container__wide,
  .container,
  .container__middle,
  .container__narrow,
  .container__xnarrow,
  .container__xxnarrow,
  .container__xxxnarrow,
  .container__xxxxnarrow,
  .container__xxxxxnarrow {
    width:100%;
    max-width:100%;
    padding-left:1em;
    padding-right:1em;
    box-sizing:border-box
  }

  .container .container,
  .container .ccontainer__middle,
  .container .ccontainer__narrow,
  .container .ccontainer__xnarrow,
  .container .ccontainer__xxnarrow,
  .container .ccontainer__xxxnarrow,
  .container .ccontainer__xxxxnarrow,
  .container .ccontainer__xxxxxnarrow {
    width:100%;
    max-width:100%;
    padding-left:1em;
    padding-right:1em;
    box-sizing:border-box
  }

  .home main {
    overflow: hidden;
  }

}

/*iPhone横*/
@media (orientation: landscape) and (max-width:900px)　{
  body  {
    min-width:1180px;
  }
}

/*iPad用*/
@media screen and (device- width : 768px ) and (device- height : 1024px ) and (-webkit-device-pixel-ratio: 2 ) {
  body  {
    min-width: 1024px;
  }
}

/* ----------------------------------------------------------

Header Setting

---------------------------------------------------------- */
header {
  position: relative;
}

.header__container {
  z-index: 1234567;
  width: 100%;
  position: fixed;
  top: 0;
}

@media only screen and (max-width:767px) {
  .header__container {
    position: relative;
    top: 0;
  }
}


/*topbar*/
.topbar {
  min-width: 1180px;
}

.topbar__container {
  background-image: url(../img/bg__topbar.png);
  background-position: top center;
  background-repeat: repeat-x;
  background-size: cover;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items:center;
  padding-top: 9px;
  padding-bottom: 9px;
}

.topbar__logo {
  flex-basis:160px;
}

.topbar__menu {
  flex-basis: calc(100% - 180px);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items:center;
}

.topbar__logo img {
  width: 100%;
  text-align: center;
  margin:-4.5px auto auto;
}

  .gnav__pc {
    flex-basis:65%;
  }

  .topbar__contact {
    flex-basis:32.5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: top;
  }

.topbar__tel {
  margin-right: 9px;
}

.topbar__tel a span {
  display: inline-block;
  vertical-align: middle;
  font-weight: 600;
}

.gnav__pc {
  margin: 0 ;
  text-align: right;
}

.gnav__pc__list li {
  display: inline-block;
  text-align: center;
  margin: 0 18px;
}

.gnav__pc__list li a {
  display: block;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.topbar__contact a.btn {
  font-size: 16px;
  padding-left: 15.25px;
  padding-right: 15.25px;
  background-image: none!important;
}

.topbar__contact a.btn.btn__border:hover ,
.topbar__contact a.btn.btn__border:focus {
  background-color: var(--color1);
  border-color: var(--color2);
  color: var(--color2);
  opacity: 0.7; 
}

@media only screen and (min-width:768px) and (max-width:1480px) {
  /*.topbar {
    min-width: 1180px;
  }*/

  .topbar__logo {
    flex-basis:120px;
  }

  .topbar__menu {
    flex-basis: calc(100% - 120px);
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items:center;
  }

  .gnav__pc {
    flex-basis:65%;
  }

  .topbar__contact {
    flex-basis:32.50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: top;
  }

  .gnav__pc__list li  {
    padding: 0;
    margin: 0 7.25px;
  }

  .gnav__pc__list li a {
    display: block;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
  }

  .topbar__contact a.btn {
    font-size: 15px;
    padding-left: 13.5px;
    padding-right: 13.5px;
    background-image: none!important;
  }
}

@media only screen and (max-width:767px) {
  .topbar__container {
    background-image: none;
    background-color: #fff;
  }

  .topbar__logo  {
    flex-basis: 100%;
    padding: 9px 0 0;
  }

  .topbar__logo img {
    max-width: 128px;
  }

  .topbar__menu,
  .topbar__contact,
  .topbar__tel,
  .topbar__line ,
  .gnav__pc ,
  .gnav__pc__list {
    display: none;
  }
}

/*gnav_pc*/
nav.gnav__sp {
  display: none
}
@media only screen and (max-width:767px) {
  .gnav__pc {
    display: none;
  }

  nav.gnav__sp  {
    display:block;
    position:fixed;
    top:0;
    right:-85%;
    bottom:0;
    width:85%;
    overflow-x:hidden;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
    transition:all .5s;
    opacity:0;
    background:var(--color2);
    z-index: 1234567890123456789;
  }

  .open nav.gnav__sp  {
    right:0;
    opacity:1
  }

  nav.gnav__sp .inner {
    padding:0
  }

  nav.gnav__sp .inner ul  {
    list-style:none;
    margin-top: 36px;
    padding:18px;
  }

  nav.gnav__sp .inner ul li {
    position:relative;
    margin:0;
    text-align:left
  }

  nav.gnav__sp .inner ul li a {
    display:block;
    color:#fff;
    box-sizing:border-box;
    font-size:calc(18px / 1.2);
    font-weight: 500;
    padding:15px 9px;
    text-decoration:none;
    transition-duration:0.2s;
    border-bottom:1px solid rgba(255,255,255,0.25);
    color: #fff;
  }

  /*toggle__btn*/
  .toggle__btn {
    display:block;
    position:fixed;
    top:18px;
    right:1em;
    width:30px;
    height:30px;
    transition:all .5s;
    cursor:pointer;
    z-index: 123456789012345678901
  }

  .toggle__btn span {
    display:block;
    position:absolute;
    right:0;
    width:40px;
    height:2px;
    background-color:var(--color2);
    border-radius:0;
    transition:all .5s;
  }

  .toggle__btn span:nth-child(1) {
    top:4px
  }

  .toggle__btn span:nth-child(2) {
    top:12px
  }

  .toggle__btn span:nth-child(3)  {
    bottom:8px
  }

  .open .toggle__btn span {
    background-color:var(--color1);
  }

  .open .toggle__btn span:nth-child(1) {
    -webkit-transform:translateY(8px) rotate(-315deg);
    transform:translateY(8px) rotate(-315deg)
  }

  .open .toggle__btn span:nth-child(2) {
    opacity:0
  }

  .open .toggle__btn span:nth-child(3) {
    -webkit-transform:translateY(-8px) rotate(315deg);
    transform:translateY(-8px) rotate(315deg)
  }
}

/*dropmenu*/
.menu__list {
  display: flex;
  justify-content: center;
}

.menu__item {
  position: relative;
}

.menu__item:hover .dropmenu__list {
  visibility: visible;
}

.menu-item-has-children a {
  text-align: left!important;
  align-items: center;
  display: flex;
  height: auto;
  text-decoration: none;
}

.drop__menu .dropmenu__list {
  background-color: var(--color1);
  position: absolute;
  left: -18px;
  top: 100%;
  visibility: hidden;
  width: max-content;
  min-width: 256px;
  padding:18px;
  border-radius: 13.5px;
  text-align: left!important;
  z-index: 1234567;
}

.dropmenu__list li {
  display: block!important;
  text-align: left!important;
  margin: 13.5px 0!important;
}

.dropmenu__list li a {
  transition-property: opacity;
  transition-duration:0;
  transition: 0;
}

.gnav__pc__list li.menu__item .dropmenu__list li:after {
  display: none;
}

.dropmenu__list .drop__menu__item {
  display: block;
}

@media only screen and (max-width:767px) {
  .dropmenu__list {
    margin-top: 0!important;
    padding-top:0!important;
    margin-left: 1.1234em;
  } 
  
  .dropmenu__list li {
    display: block!important;
    text-align: left!important;
    margin:  0!important;
  }

}

/*home__mainvisual*/
.home__mainvisual {
  width: 100%;
  height: 100%;/*
  background: var(--color2);*/
  background-image:url(../img/home__mv__pc.jpg) ;
  background-repeat: no-repeat;
  background-position: top center;
  background-size:cover;
  margin-top: 90px;
}

.home__mainvisual__container {
  background: #fff;
}

.home__mainvisual__text {
  padding: 18px 36px 45px;
  text-align: center;
  height: 100%
}

.home__mainvisual__title {
  text-align: center;
  margin: auto auto 27px;
}

.home__mainvisual__text p {
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.025em;
  margin: auto ;
}

.home__mainvisual__icon {
  text-align: center;
  margin:27px auto auto ;
}

.home__mainvisual__icon img {
  width: calc(846px / 1.85);
  text-align: center;
  margin: auto ;
}

.home__mainvisual__img {
  display: none;
}

@media only screen and (max-width:767px) {
  .home__mainvisual {
    width: 100%;
    height: 100%;
    background-image: none;
    margin-top: 0;
    padding: 0;
  }

  .home__mainvisual__container.container__xxxnarrow {
    padding: 0;
  }

  .home__mainvisual__text {
    padding:0 0 calc(45px /2);
  }

  .home__mainvisual__title {
    margin: auto auto calc(27px /2);
  }

  .home__mainvisual__text p {
    font-size: calc(18px / 1.18);
    letter-spacing:calc(0.025em / 1.5);
  }

  .home__mainvisual__icon {
    padding-left: 2.5em;
    padding-right: 2.5em;
    box-sizing: border-box;
    margin:calc(27px / 1.5) auto auto ;
  }

  .home__mainvisual__icon img {
    width: 100%;
    max-width: 100%;
  }

  .home__mainvisual__img {
    display: block;
  }
}

/*page__header*/
.page__header {
  width: 100%;
  height:375px;
  background-repeat: no-repeat!important;
  background-position: top center!important;
  background-size: cover!important;
  z-index: -1;
  margin-top: 90px;
}

  .page__header.noimg {
    background-color: var(--color2);
    background-image: none;
    height:256px;
  }

.page__header:after  {
  content: '';
  position: absolute;
  top:0;
  left: 0;
  mix-blend-mode:multiply;
  background: rgba(100, 100, 100, 0.75);
  width: 100%;
  height: 100%;
  z-index: 1;
}

  .page__header.noimg:after  {
    display: none;
  }

.page__header__container {
  width: 100%;
  height: 100%;
  z-index: 123;
  color: var(--color1);
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.page__header__label {
  position: absolute;
  z-index: 34567;
  left: 2em;
  top: 1em;
}

.page__header__label span {
  border:1px solid var(--color1);
  color: var(--color1);
  text-align: center;
  padding: 9px 27px;
  font-size: 16px;
  display: block;
  background: transparent;
  line-height: 1;
}

.page__header__text {
  flex-basis: 100%;
  text-align: center;
  margin: auto;
  position: relative;
}

.page__header__title  {
  text-align: center;
  margin: auto;
  position: relative;
}

.page__header__title:after {
  content:'';
  position: absolute;
  top:120%;
  left: calc(50% - calc(100px / 2));
  margin-top: 0;
  width: 100px;
  height: 2.5px;
  border-top: 2.5px solid var(--color1);
}

  .page__header__title.noborder:after {
    display: none;
  }

.page__header__title span {
  display: block;
  text-align: center;
  margin: auto;
  font-size: 45px;
  line-height: 1.56789;
  font-weight: 700;
  letter-spacing: 0.12345em;
}

.page__header p {
  text-align: center;
  font-size: 17px;
  margin: 36px auto auto;
  font-weight:500;
  letter-spacing: 0.12345em;
}

@media only screen and (max-width:767px) {
  .page__header {
    height:calc(375px / 1.1);
    margin-top: 0;
    z-index: -1!important;
    background-size: cover!important;
  }

  .page__header.noimg {
    height:calc(256px / 1.1);
  }

  .page__header__container {
    width: 100%;
    padding-left: 1.25em;
    padding-right: 1.25em;
    height:100%;
  }

  .page__header__title:after {
    top:115%;
    left: calc(50% - calc(100px / 2));
    margin-top: 0;
    width: 100px;
    height: calc(2.5px / 1.5);
    border-top: calc(2.5px / 1.5) solid var(--color1);
  }

  .page__header__title span {
    font-size:  calc(45px / 1.55);
    line-height: 1.56789;
    font-weight: 700;
    letter-spacing:calc(0.12345em / 1.5);
  }

  .page__header p {
    text-align: justify;
    font-size: calc(17px / 1.17);
    margin: 36px 0 auto;
    font-weight:500;
    letter-spacing: 0.12345em;
  }

  .page__header__label {
    position: relative;
    text-align: center;
    margin: auto;
    left:0;
    top:2em;
  }

  .page__header__label span {
    display: inline-block;
    padding: calc(9px / 1.5) 18px;
    font-size: calc(16px / 1.16);
  }


}

/* ----------------------------------------------------------

Section Setting

---------------------------------------------------------- */
/*color*/
.color1 {
  color:var(--color1);
}

.color2 {
  color:var(--color2);
}

.color3 {
  color:var(--color3);
}

.color4 {
  color:var(--color4);
}

.color5 {
  color:var(--color5);
}

.color6 {
  color:var(--color6);
}

/*bg*/
.bg1 {
  background-color:var(--bg1);
}

.bg2 {
  background-color:var(--bg2);
}

.bg3 {
  background-color:var(--bg3);
}

.bg4 {
  background-color:var(--bg4);
}

.bg5 {
  background-color:var(--bg5);
}

.bg6 {
  background-color:var(--bg6);
}

/*section*/
.section {
  padding:90px 0 ;
}

.section.border__bottom {
  border-bottom: 1px solid #ccc;
}

p.leed {
  font-size: 18px;
}

p.leed.center {
  text-align: center;
}

@media only screen and (max-width:767px) {
  .section {
    padding:calc(90px / 2) 0;
  }

  p.leed {
    font-size: calc(18px / 1.18)
  }

}

/*padding margin*/
.mt-4  {
  margin-top: -4.5px
}

.mt-9  {
  margin-top: -9px
}

.mt-18  {
  margin-top: -18px
}

.mt-27  {
  margin-top: -27px
}

.mt-36 {
  margin-top: -36px
}

.mt-45 {
  margin-top: -45px
}

.mt-54 {
  margin-top: -54px
}

.mt-63 {
  margin-top: -63px
}

.mt-72 {
  margin-top: -72px
}

.mt-81 {
  margin-top: -81px
}

.mt-90 {
  margin-top: -90px
}

.mt-120 {
  margin-top: -120px;
}

.mt-150 {
  margin-top: -150px;
}

.mt-180 {
  margin-top: -180px;
}

.mb-9  {
  margin-bottom: -9px
}

.mb-18  {
  margin-bottom: -18px
}

.mb-27  {
  margin-bottom: -27px
}

.mb-36 {
  margin-bottom: -36px
}

.mb-45 {
  margin-bottom: -45px
}

.mb-54 {
  margin-bottom: -54px
}

.mb-63 {
  margin-bottom: -63px
}

.mb-72 {
  margin-bottom: -72px
}

.mb-81 {
  margin-bottom: -81px
}

.mb-90 {
  margin-bottom: -90px
}

.mt0 {
  margin-top: 0!important;
}

.mt9 {
  margin-top: 9px;
}

.mt18 {
  margin-top: 18px;
}

.mt27 {
  margin-top: 27px;
}

.mt36 {
  margin-top: 36px;
}

.mt45 {
  margin-top: 45px;
}

.mt54 {
  margin-top: 54px;
}

.mt63 {
  margin-top: 63px;
}

.mt72 {
  margin-top: 72px;
}

.mt81 {
  margin-top: 81px;
}

.mt90 {
  margin-top: 90px;
}

.mb0 {
  margin-bottom: 0!important;
}

.mb9 {
  margin-bottom: 9px;
}

.mb18 {
  margin-bottom: 18px;
}

.mb27 {
  margin-bottom: 27px;
}

.mb36 {
  margin-bottom: 36px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb54 {
  margin-bottom: 54px;
}

.mb63 {
  margin-bottom: 63px;
}

.mb72 {
  margin-bottom: 72px;
}

.mb81 {
  margin-bottom: 81px;
}

.mb90 {
  margin-bottom: 90px;
}

.pt0 {
  padding-top: 0;
}

.pt9 {
  padding-top: 9px;
}

.pt18 {
  padding-top: 18px;
}

.pt27 {
  padding-top: 27px;
}

.pt36 {
  padding-top: 36px;
}

.pt45 {
  padding-top: 45px;
}

.pt54 {
  padding-top: 54px;
}

.pt63 {
  padding-top: 63px;
}

.pt72 {
  padding-top: 72px;
}

.pt81 {
  padding-top: 81px;
}

.pt90 {
  padding-top: 90px;
}

.pt120 {
  padding-top: 120px;
}

.pt150 {
  padding-top: 150px;
}

.pt180 {
  padding-top: 180px;
}

.pb0 {
  padding-bottom: 0;
}

.pb9 {
  padding-bottom: 9px;
}

.pb18 {
  padding-bottom: 18px;
}

.pb27{
  padding-bottom: 27px;
}

.pb36 {
  padding-bottom: 36px;
}

.pb45 {
  padding-bottom: 45px;
}

.pb54 {
  padding-bottom: 54px;
}

.pb63 {
  padding-bottom: 63px;
}

.pb72 {
  padding-bottom: 72px;
}

.pb81 {
  padding-bottom: 81px;
}

.pb90 {
  padding-bottom: 90px;
}

.pb180 {
  padding-bottom: 180px;
}

.pb210 {
  padding-bottom: 210px;
}

.pd9 {
  padding: 9px;
}

.pd18 {
  padding: 18px;
}

.pd27 {
  padding: 27px;
}

.pd36 {
  padding: 36px;
}

.pd45 {
  padding: 45px;
}

.pd54 {
  padding: 54px;
}

.pd63 {
  padding: 63px;

}

@media only screen and (max-width:767px) {
  .mt-4  {
    margin-top: calc(-4.5px / 2)
  }

  .mt-9  {
    margin-top: calc(-9px / 2)
  }

  .mt-18  {
    margin-top: calc(-18px / 2)
  }

  .mt-27  {
    margin-top: calc(-27px / 2)
  }

  .mt-36 {
    margin-top: calc(-36px / 2)
  }

  .mt-45 {
    margin-top: calc(-45px / 2)
  }

  .mt-54 {
    margin-top: calc(-54px / 2)
  }

  .mt-63 {
    margin-top: calc(-63px / 2)
  }

  .mt-72 {
    margin-top: calc(-72px / 2)
  }

  .mt-81 {
    margin-top: calc(-81px / 2)
  }

  .mt-90 {
    margin-top: calc(-90px / 2)
  }

  .mt-120 {
    margin-top: calc(-120px / 2)
  }

  .mt-150 {
    margin-top: calc(-150px / 2)
  }

  .mt-180 {
    margin-top: calc(-180px / 2)
  }

  .mb-9  {
    margin-bottom: calc(-9px / 2)
  }

  .mb-18  {
    margin-bottom: calc(-18px / 2)
  }

  .mb-27  {
    margin-bottom: calc(-27px / 2)
  }

  .mb-36 {
    margin-bottom: calc(-36px / 2)
  }

  .mb-45 {
    margin-bottom: calc(-45px / 2)
  }

  .mb-54 {
    margin-bottom: calc(-54px / 2)
  }

  .mb-63 {
    margin-bottom: calc(-63px / 2)
  }

  .mb-72 {
    margin-bottom: calc(-72px / 2)
  }

  .mb-81 {
    margin-bottom: calc(-81px / 2)
  }

  .mb-90 {
    margin-bottom: calc(-90px / 2)
  }

  .mt9 {
    margin-top: calc(9px / 2)
  }

  .mt18 {
    margin-top: calc(18px / 2)
  }

  .mt27 {
    margin-top: calc(27px / 2)
  }

  .mt36 {
    margin-top: calc(36px / 2)
  }

  .mt45 {
    margin-top: calc(45px / 2)
  }

  .mt54 {
    margin-top: calc(54px / 2)
  }

  .mt63 {
    margin-top: calc(63px / 2)
  }

  .mt72 {
    margin-top: calc(72px / 2)
  }

  .mt81 {
    margin-top: calc(81px / 2)
  }

  .mt90 {
    margin-top: calc(90px / 2)
  }

  .mb9 {
    margin-bottom: calc(9px / 2)
  }

  .mb18 {
    margin-bottom: calc(18px / 2)
  }

  .mb27 {
    margin-bottom: calc(27px / 2)
  }

  .mb36 {
    margin-bottom: calc(36px / 2)
  }

  .mb45 {
    margin-bottom: calc(45px / 2)
  }

  .mb54 {
    margin-bottom: calc(54px / 2)
  }

  .mb63 {
    margin-bottom: calc(63px / 2)
  }

  .mb72 {
    margin-bottom: calc(72px / 2)
  }

  .mb81 {
    margin-bottom: calc(81px / 2)
  }

  .mb90 {
    margin-bottom: calc(90px / 2)
  }

  .pt9 {
    padding-top: calc(9px / 2)
  }

  .pt18 {
    padding-top: calc(18px / 2)
  }

  .pt27 {
    padding-top: calc(27px / 2)
  }

  .pt36 {
    padding-top: calc(36px / 2)
  }

  .pt45 {
    padding-top: calc(45px / 2)
  }

  .pt54 {
    padding-top: calc(54px / 2)
  }

  .pt63 {
    padding-top: calc(63px / 2)
  }

  .pt72 {
    padding-top: calc(72px / 2)
  }

  .pt81 {
    padding-top: calc(81px / 2)
  }

  .pt90 {
    padding-top: calc(90px / 2)
  }

  .pt120 {
    padding-top: calc(120px / 2)
  }

  .pt150 {
    padding-top: calc(150px / 2)
  }

  .pt180 {
    padding-top: calc(180px / 2)
  }

  .pb9 {
    padding-bottom: calc(9px / 2)
  }

  .pb18 {
    padding-bottom: calc(18px / 2)
  }

  .pb27{
    padding-bottom: calc(27px / 2)
  }

  .pb36 {
    padding-bottom: calc(36px / 2)
  }

  .pb45 {
    padding-bottom: calc(45px / 2)
  }

  .pb54 {
    padding-bottom: calc(54px / 2)
  }

  .pb63 {
    padding-bottom: calc(63px / 2)
  }

  .pb72 {
    padding-bottom: calc(72px / 2)
  }

  .pb81 {
    padding-bottom: calc(81px / 2)
  }

  .pb90 {
    padding-bottom: calc(90px / 2)
  }

  .pb180 {
    padding-bottom: calc(180px / 2)
  }

  .pb210 {
    padding-bottom: calc(210px / 2)
  }

  .pd9 {
    padding: calc(9px / 2)
  }

  .pd18 {
    padding: calc(18px / 2)
  }

  .pd27 {
    padding: calc(27px / 2)
  }

  .pd36 {
    padding: calc(36px / 2)
  }

  .pd45 {
    padding: calc(45px / 2)
  }

  .pd54 {
    padding: calc(54px / 2)
  }

  .pd63 {
    padding: calc(63px / 2)
  }

}

/*section__title*/
.section__title.left,
.section__title.left span,
.section__title span.left {
  text-align: left;
}

.section__title.cener,
.section__title.cener span {
  text-align: cener;
}

.section__title span {
  display: block;
  text-align: center;
  letter-spacing: 0.075em;
  font-weight: 900;
}

.section__title span.ja {
  font-size:36px;
  margin-bottom: 27px;
  line-height: normal;
}

  .section__title span.color1 {
    color: var(--color1);
  }

  .section__title span.ja.middle {
    font-size: 32.5px;
  }

  .section__title span.ja.small {
    font-size: 27px;
  }

.section__title.cener span {
  text-align: cener;
}

@media only screen and (max-width:767px) {
  .section__title span.ja {
    font-size:calc(36px / 1.5);
    margin-bottom: calc(27px / 1.5);
  }

  .section__title span.ja.middle {
    font-size:calc(32.5px / 1.5);
  }

  .section__title span.ja.small {
    font-size:calc(27px / 1.5);
  }
  /*
  .section__title span.ja:after {
    top:65%;
    left: calc(50% - calc(100px / 4));
    margin-top: calc(45px / 1.5);
    width: calc(100px / 2);
    height: calC(5px /1.5);
    border-top: calC(5px /1.5) solid var(--color2);
  }

  .section__title span.ja.small:after {
    left: calc(50% - calc(60px / 4));
    top: calc(4.5px /2);
    width: calc(60px /2);
    height: calC(4px /1.5);
    border-top: calC(4px /1.5) solid var(--color2);
  }*/

}

/*section__leed*/
.section__leed {
  text-align: center;
}

@media only screen and (max-width:767px) {
  .section__leed {
    text-align: justify;
  }
}

/*section__title__icon*/
.section__title__icon {
  margin: auto;
  text-align: center;
}

.section__title__icon img {
  display: block;
  width: calc(150px /2);
  text-align: center;
  margin: 9px auto;
}

@media only screen and (max-width:767px) {
  .section__title__icon img {
    width: calc(150px / 4);
    margin: calc(9px / 1.5) auto;
  }
}

/*breadnav*/
.breadnav {
  padding: 36px 0 
}

.breadnav p {
  font-size: 15px;
  line-height: 2
}

.breadnav p a {
  text-decoration: underline!important;
}

  .breadnav p a:focus ,
  .breadnav p a:hover  {
    text-decoration: none!important;
    transition: 0.3s;
  }

@media only screen and (max-width:767px) {
  .breadnav {
    padding:calc(36px / 1.5) 0
  }

  .breadnav p {
    font-size: calc(15px / 1.18)
  }

}

/*section__nav*/
.section__nav__list {
  margin: auto;
  text-align: center;
}

.section__nav__list li {
  display:inline-block;
  vertical-align: middle;
  margin: 0 4.5px;
  text-align: center;
}

.section__nav__list li a {
  padding:11.5px 72px;
}

.section__nav__list li a:hover,
.section__nav__list li a:focus  {
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .section__nav__list {
    margin: calc(54px / 54) auto calc(18px /1.5)
  }

  .section__nav__list li {
    margin: 4.5px auto;
    width: 100%;
  }

  .section__nav__list li a {
    padding:calc(11.5px /1.5) 18px;
  }

}

/*cta*/
.section.cta {
  width: 100%;
  padding: 0;
  background-image: url(../img/cta__pc.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;/*
  height: 100%;*/
}

.cta__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: top;
}

.cta__text {
  flex-basis: 52.5%;
  padding: 90px 0;
}

  .cta__img {
    display: none;
  }

.cta__title span {
  display: block;
  font-size: 45px;
  line-height: 1.456789;
  font-weight: 800;
  letter-spacing: 0.025em;
  text-align: left;
  margin: 24px 0;
}

.cta__title span.small {
  font-size: 22.5px;
  letter-spacing: 0.125em;
  margin: 9px 0;
  font-weight: 500;
}

.cta__title span strong {
  color: var(--color3);
}

.cta__list {
  margin: 36px auto 18px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  text-align: top;
}

.cta__list li.web {
  flex-basis: 60%;
  margin-right: 2.5%;
}

.cta__list li.tel {
  flex-basis: 37.5%;
}

.cta__list a span {
  display: inline-block;
  vertical-align: middle;
  font-size: 22px!important;
  font-weight: 600;
}

.cta__list li.web a {
  box-shadow:0 0 20px rgba(0, 0, 0, 0.75);
}

@media only screen and (max-width:767px) {
  .section.cta {
    width: 100%;
    padding: 0;
    background-image:none;
    background-color: var(--color2);
  }

  .cta__text {
    flex-basis: 100%;
    padding: calc(90px / 2.5) 0.5em ;
    text-align: center;
    margin: auto;
  }

  .cta__img {
    border-top:10px solid var(--color2);
    display: block;
  }

  .cta__title span {
    font-size: calc(45px / 1.55);
    letter-spacing:calc(0.025em / 1.5);
    margin:calc(24px / 1.5) auto;
    text-align: center;
  }

  .cta__title span.small {
    font-size: calc(22.5px / 1.225);
    letter-spacing:calc(0.125em / 1.5);
    margin: calc(9px / 1.5) 0;
    text-align: center;
  }

  .cta__list {
    margin: calc(36px / 1.5) auto calc(18px / 1.5);
  }

  .cta__list li.web ,
  .cta__list li.tel {
    margin: 1.5% auto;
    flex-basis: 100%;
  }

  .cta__list a span {
    font-size: calc(22px / 1.2)!important;
  }

  .cta__container p small {
    font-size: calc(14px / 1.1);
    text-align: center;
    margin: auto;
  }

}

/*common__difference*/
.common__difference__contaier {
  background: var(--color1);
  border-radius: 27px 27px 0 0;
  padding: 54px 72px;
  margin-top: 36px;
}

.common__difference__img {
  text-align: center;
  margin: auto;
  padding: 0;
}

.common__difference__message {
  background: var(--color2);
  padding: 36px;
  text-align: center;
  margin: auto;
  border-radius: 0 0 27px 27px;
}

.common__difference__message p {
  font-size: 27px;
  color: var(--color1);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.789;
}

.common__difference__message p strong {
  color: var(--color3);
}

@media only screen and (max-width:767px) {
  .common__difference__contaier {
    border-radius: calc(27px / 1.5) calc(27px / 1.5) 0 0;
    padding: calc(54px / 1.5) 18px;
    margin-top: calc(36px / 1.5);
  }

  .common__difference__message {
    padding: calc(36px / 1.5) 2em;
    border-radius: 0 0 calc(27px / 1.5) calc(27px / 1.5) ;
  }

  .common__difference__message p {
    font-size: calc(27px / 1.35) ;
    text-align: justify;
    letter-spacing: calc(0.05em / 1.5);
  }

}


/*common__course*/
.common__course {
  position: relative;
}

.common__course .section__title__icon {
  margin-top: calc(-90px - 90px);
  background: var(--color2);
  border-radius: 600px;
  width: 600px;
  height: 600px;
  padding-top:36px;
  margin-bottom:calc(-180px - 180px - 90px - 18px);
}

.common__course__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  margin-top: 27px;
}

.common__course__list {
  border-radius: 18px;
  background: #fff;
  flex-basis: 48.5%;
  margin: 1.5%;
}

  .common__course__list:nth-child(odd) {
    margin-left: 0;
  }

  .common__course__list:nth-child(even) {
    margin-right: 0;
  }

.common__course__img {
  border-radius:18px 18px 0 0;
}

.common__course__text {
  padding: 24px 36px 36px;
}

.common__course__title {
  display: flex;
  flex-wrap:wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.common__course__title .title span {
  display: block;
  flex-basis: 60%;
  font-size: 27px;
  line-height: 1.56789;
  font-weight: 800;
}

.common__course__title .label  {
  transform: skewX(-10deg);
  background-color: var(--color1);
  border:1px solid var(--color2);
}

.common__course__title .label span {
  display: block;
  flex-basis: 40%;
  color: var(--color2);
  text-align: center;
  line-height: 1.56789;
  padding: 1.25px 18px;
  font-size: 15px;
  transform: skewX(10deg);
}

.common__course__check {
  padding: 18px;
  border-radius: 9px;
  margin-top: 18px;
  background-color: var(--color4);
}

.common__course__check li {
  display: inline-block;
  background-image: url(../img/icon__check2.png);
  background-position: 0 11.5px;
  font-weight: bold;
  margin-right: 1em;
  color: var(--color2);
  background-repeat: no-repeat;
  background-size: 18px;
  padding-left: 20.25px;
}

.common__course__img img {
  border-radius:18px 18px 0 0;
}

.common__course__btn {
  max-width: 360px;
  margin:27px auto  auto;
  text-align: center;
}

.common__course__btn a {
  font-weight: 800;
  font-size: 20.25px;
}

@media only screen and (max-width:767px) {
  .common__course .section__title__icon {
    margin-top: calc(calc(-90px - 90px) /2);
    background: var(--color2);
    border-radius: calc(600px /2);
    width:calc(600px /2);
    height:calc(600px /2);
    padding-top:calc(36px / 1.5);
    margin-bottom:calc(calc(-180px - 180px - 90px - 18px) /2);
  }

  .common__course__container {
    margin-top: calc(27px / 1.5);
  }

  .common__course__list {
    flex-basis: 100%;
    margin: 2% auto;
  }

  .common__course__list:nth-child(odd),
  .common__course__list:nth-child(even) {
    margin-left: auto;
    margin-right: auto;
  }

  .common__course__text {
    padding: calc(24px / 1.5) 18px calc(36px / 1.5);
  }

  .common__course__title {
    margin-bottom: calc(18px / 1.5);
  }

  .common__course__title .title span {
    flex-basis: 100%;
    font-size: calc(27px / 1.27);
  }

  .common__course__title .label  {
    transform: skewX(-5deg);
  }

  .common__course__title .label span {
    flex-basis: 100%;
    padding: calc(1.25px / 1.5) calc(18px / 1.5);
    font-size: calc(15px / 1.15);
    transform: skewX(5deg);
  }

  .common__course__check {
    padding: calc(18px / 1.5);
    margin-top: calc(18px / 1.5);
  }

  .common__course__check li {
    background-image: url(../img/icon__check2.png);
    background-position: 0 9px;
    margin-right: 1em;
    background-repeat: no-repeat;
    background-size: calc(18px / 1.5);
    padding-left:calc(20.25px / 1.2);
  }

  .common__course__btn {
    max-width: 100%;
    margin:calc(27px / 1.5) auto  auto;
  }

  .common__course__btn a {
    font-size:calc(20.25px / 1.2025);
  }
}


/*page__cta*/
.page__cta {
  padding: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  padding:90px 0
}

.page__cta__container {
  width: 100%;
  height: 100%;
  border-radius: 27px;
  padding: 72px;
  background: rgba(255, 255, 255, 0.90);
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.page__cta__text {
  position: relative;
  flex-basis: 100%;
}

.page__cta__title {
  text-align: center;
  margin: auto;
  margin-bottom: 11.25px;
}

.page__cta__title span {
  display: block;
  font-size: 30.5px;
  font-weight: 900;
  text-align: center;
  margin: auto;
}

  .page__cta__title span:before {
    content: '＼';
  }

  .page__cta__title span:after {
    content: '／';
  }

.page__cta__text p {
  text-align: center;
  font-size: 20.25px;
  line-height: 1.789;
  margin: auto;
}

.page__cta__btn {
  max-width: 350px;
  text-align: center;
  margin: 45px auto auto;
}

@media only screen and (max-width:767px) {
  .page__cta {
    padding:calc(90px / 1.5) 0
  }

  .page__cta__container {
    border-radius: calc(27px / 1.5);
    padding: calc(72px / 1.5) 24px;
  }

  .page__cta__title {
    margin-bottom:calc(18px / 1)
  }

  .page__cta__title span:before,
  .page__cta__title span:after {
    display: none;
  }

  .page__cta__title span {
    font-size: calc(30.5px / 1.4);
    line-height: 1.56789;
  }

  .page__cta__text p {
    font-size:calc(20.25px / 1.35);
    text-align: justify;
  }

  .page__cta__btn {
    max-width: 100%;
    margin: calc(45px / 1.5) auto auto;
  }

}

/* ----------------------------------------------------------

Home Setting

---------------------------------------------------------- */
/*home__header__cta*/
.section.home__header__cta {
  padding: 54px 0 63px;
}

.home__header__cta__list {
  margin: 36px auto auto;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: top;
}

.home__header__cta__list li.tel {
  flex-basis: 42.5%;
  position: relative;
  z-index: 34;
}

.home__header__cta__list li.web {
  flex-basis: 56.5%;
  z-index: 12;
}

.home__header__cta__list a  {
  padding: 24px 18px;
  font-size: 22px;
}

.home__header__cta__list a span {
  display: inline-block;
  vertical-align: middle;
  font-size: 22px!important;
  font-weight: 600;
}

.home__header__cta__list li.tel img {
  margin-right: 2.25px;
  display: inline-block;
  vertical-align: middle;
  width: 17.5px;
  margin-top: 2.25px;
}

.home__header__cta__list li.web img {
  display: inline-block;
  vertical-align: middle;
  width: 15.5px;
  margin-top: 2.25px;
  margin-right: 2.25px;
}

.home__header__cta__list li.web a {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.75);
}

@media only screen and (max-width:767px) {
  .section.home__header__cta {
    padding: calc(54px / 1.5) 0 calc(63px / 1.5) ;
  }

  .home__header__cta__list {
    margin: calc(36px / 1.5) auto auto;
  }

  .home__header__cta__list li {
    margin: 1% auto;
  }

  .home__header__cta__list li.tel ,
  .home__header__cta__list li.web {
    flex-basis: 100%;
  }

  .home__header__cta__list a  {
    padding: calc(24px / 1.5) calc(18px / 1.5);
    font-size: calc(22px / 1.22);
  }

  .home__header__cta__list a span {
    font-size: calc(22px / 1.2)!important;
  }

  .home__header__cta__list li.tel img {
    margin-right: calc(2.25px / 1.5);
    width: calc(17.5px / 1.5);
    margin-top: calc(2.25px / 1.5);
  }

  .home__header__cta__list li.web img {
    width: calc(15.5px / 1.5);
    margin-top: calc(2.25px / 1.5);
    margin-right:calc(2.25px / 1.5);
  }
}


/*home__trouble*/
.section.home__trouble {
  padding:45px 0 72px;
}

.home__trouble .section__title  {
  text-align: center;
  margin: auto;
}

.home__trouble .section__title span {
  line-height: 1.765;
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0;
  border-bottom: 3px solid #000;
}

.home__trouble__container {
  padding:45px  ;
  position: relative;
}

.home__trouble__container:after {
  position: absolute;
  content: '';
  z-index: 4567!important;
  width: 0;
  height: 0;
  top: 98.5%;
  left: calc(50% - calc(60px / 1));
  margin: auto;
  border-style: solid;
  border-right: 60px solid transparent;
  border-left: 60px solid transparent;
  border-top: 40px solid var(--color4);
  border-bottom: 0;
}

.home__trouble__detail {
  padding: 27px 45px  ;
  margin: 18px auto;
}

.home__trouble__list {
  display: flex;
  color: #122a88;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
}

.home__trouble__list li {
  flex-basis: 50%;
  padding: 27px;
  border-bottom: 1px dotted #aaa;
  border-right:1px dotted #aaa;
  background-image: url(../img/icon__check1.png);
  background-position: 24px 36px;
  background-repeat: no-repeat;
  background-size: 40px;
}

  .home__trouble__list li:nth-child(2) ,
  .home__trouble__list li:nth-child(4) {
    border-right:none;
  }

  .home__trouble__list li:nth-child(3) ,
  .home__trouble__list li:nth-child(4) {
    border-bottom:none;
  }

.home__trouble__list li span {
  display: block;
  margin-left: 45px;
}

  .home__trouble__list li span.title {
    font-size: 27px;
    line-height: 1.789;
    font-weight: 800;
    letter-spacing: 0.05em;
  }

  .home__trouble__list li span.text {
    font-size: 15px;
    line-height: 1.6789;
    width: 80%;
    margin-top: 9px;
    letter-spacing: 0.05em;
    font-weight: 400;
  }

.home__trouble__list li span strong {
  background:linear-gradient(transparent 60%, #fffaa3 60%);
}

.home__trouble__list li span {
  display: block;
  margin-left: 45px;
}

.home__trouble__img li {
  position: absolute;
}

.home__trouble__img li.img1  {
  left: -72px;
  bottom: 100%;
}

.home__trouble__img li.img2  {
  right:-72px;
  bottom: 100%;
}

  .home__trouble__img li.img1 img {
    width: calc(377px/ 2);
    margin-bottom: -9px;
  }

  .home__trouble__img li.img2 img {
    width: calc(359px/ 2);
    margin-bottom: -9px;
  }

.home__trouble__answer {
  position: relative;
  border-radius: 0 0 18px 18px;
  padding: 63px 36px 45px;
  text-align: center;
  margin: auto;
}

.home__trouble__answer__text {
  text-align: center;
  margin: auto;
}

.home__trouble__answer__text span {
  display: block;
  font-weight: 800;
  font-size: 40.5px;
}

  .home__trouble__answer__text span:before {
    content: '＼ ';
  }

  .home__trouble__answer__text span:after {
    content: ' ／';
  }

@media only screen and (max-width:767px) {
  .section.home__trouble {
    padding:calc(45px / 1.5) 0 calc(72px / 3);
    margin-left: -1em;
    margin-right: -1em;
    box-sizing: border-box;
    width: calc(100% + 2em);
  }

  .home__trouble__list li:nth-child(1) ,
  .home__trouble__list li:nth-child(2) ,
  .home__trouble__list li:nth-child(3) ,
  .home__trouble__list li:nth-child(4) {
    border-right:none;
  }

  .home__trouble__container {
    padding:calc(45px / 1.5) 18px
  }

  .home__trouble__container:after {
    top: 98.5%;
    left: calc(50% - calc(60px / 1));
    margin: auto;
    border-style: solid;
    border-right: 60px solid transparent;
    border-left: 60px solid transparent;
    border-top: 40px solid var(--color4);
    border-bottom: 0;
  }

  .home__trouble__detail {
    padding: calc(27px / 1.5) 1em;
    margin: calc(18px / 1.5) auto;
  }

  .home__trouble__list li {
    flex-basis: 100%;
    padding: calc(27px / 2);
    background-image: url(../img/icon__check1.png);
    background-position: calc(24px / 1.5) calc(36px / 1.5);
    background-size: calc(40px / 2);
  }

  .home__trouble__list li span {
    margin-left: calc(45px / 1.5);
  }

  .home__trouble__list li span.title {
    font-size: calc(27px / 1.5);
    letter-spacing:calc(0.05em / 1.5);
    line-height: 1.567890;
  }

  .home__trouble__list li span.text {
    font-size: calc(15px / 1.15);
    width: 80%;
    margin-top: calc(9px / 1.5);
    letter-spacing:calc(0.05em / 1.5);
  }

  .home__trouble__list li span {
    margin-left: calc(45px / 1.5);
  }

  .home__trouble__img li.img1  {
    left: calc(-72px / 3);
  }

  .home__trouble__img li.img2  {
    right: calc(-72px / 3);
  }

  .home__trouble__img li.img1 img {
    width: calc(377px/ 4);
    margin-bottom: calc(-9px / 2.5);
  }

  .home__trouble__img li.img2 img {
    width: calc(359px/ 4);
    margin-bottom: calc(-9px / 2.5);
  }

  .home__trouble__answer {
    border-radius: 0 0 27px 27px;
    padding: calc(63px / 1.5) 18px calc(45px / 1.5);
  }

  .home__trouble__answer__text span {
    font-size: calc(40.5px / 1.455);
    line-height: 1.34567890;
  }

  .home__trouble__answer__text span:before{
    display: none;
  }

  .home__trouble__answer__text span:after {
    content: '！';
  }
}

/*home__feature*/
.section.home__feature {
  padding:72px 0 ;
  padding-bottom: calc(90px + 45px);
}

.home__feature__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  margin: 36px auto;
  border-radius: 36px;
}

.home__feature__text {
  padding: 0 54px 45px;
}

  .home__feature__list:nth-child(odd) .home__feature__text {
    flex-basis: 60%;
    order: 1;
  }

  .home__feature__list:nth-child(odd) .home__feature__img {
    flex-basis: 40%;
    order: 2;
  }

  .home__feature__list:nth-child(odd) .home__feature__img ,
  .home__feature__list:nth-child(odd) .home__feature__img img {
    border-radius:0 36px 36px 0;
  }

  .home__feature__list:nth-child(even) .home__feature__text {
    flex-basis: 60%;
    order: 2;
  }

  .home__feature__list:nth-child(even) .home__feature__img {
    flex-basis: 40%;
    order: 1;
  }

  .home__feature__list:nth-child(even) .home__feature__img ,
  .home__feature__list:nth-child(even) .home__feature__img img {
    border-radius:36px 0 0 36px
  }

.home__feature__title {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin: -13.5px 0 -9px;
}

.home__feature__title .num {
  flex-basis: 22.5%;
  font-size: 117px;
  margin-top: -13.5px;
}

.home__feature__title .title {
  flex-basis: 72.5%;
}

.home__feature__title .num span {
  display: inline-block;
  color: var(--color2);
  line-height: 1;
  border-bottom: 2px solid var(--color2);
  font-size: 117px;
}

  .home__feature__list:nth-child(1) .home__feature__title .num span {
    letter-spacing: -0.05em;
  }

.home__feature__title .title span {
  display: block;
  font-weight:800;
  font-size: 30px;
  line-height: 1.56789;
}

.home__feature__title .title span strong {
  font-weight: 700;
  background:linear-gradient(transparent 60%, #fffaa3 60%);
}

.home__feature__img {
  width: 110%;
}

@media only screen and (max-width:767px) {
  .section.home__feature {
    padding:calc(72px / 1.5) 0 ;
    padding-bottom:calc(calc(90px + 45px) /1.75)
  }

  .home__feature__list {
    margin: calc(36px / 2) auto;
    border-radius: calc(36px / 1.5);
  }

  .home__feature__text {
    padding: calc(45px / 3.00005) 18px;
  }

  .home__feature__list:nth-child(odd) .home__feature__text ,
  .home__feature__list:nth-child(even) .home__feature__text {
    flex-basis: 100%;
    order: 1;
  }

  .home__feature__list:nth-child(odd) .home__feature__img,
  .home__feature__list:nth-child(even) .home__feature__img {
    flex-basis: 100%;
    order: 2;
    margin-top: 9px;
  }


  .home__feature__list:nth-child(even) .home__feature__img ,
  .home__feature__list:nth-child(odd) .home__feature__img ,
  .home__feature__list:nth-child(even) .home__feature__img img ,
  .home__feature__list:nth-child(odd) .home__feature__img img {
    border-radius:0 0 calc(36px / 1.5) calc(36px / 1.5) ;
  }

  .home__feature__title {
    margin:calc(-13.5px / 2) 0 calc(-9px / 2);
  }

  .home__feature__title .num {
    flex-basis: 100%;
    font-size: calc(117px / 2.17);
    margin-top: calc(-13.5px / 2);
    margin: auto auto -4.5px;
    text-align: center;
  }

  .home__feature__title .num span {
    text-align: center;
    margin: auto;
  }

  .home__feature__title .title {
    flex-basis: 100%;
    margin:auto auto 20.25px;
    text-align: center;
  }

  .home__feature__title .num span {
    border-bottom: 2px solid var(--color2);
    font-size:calc(117px / 2.17);
  }

  .home__feature__title .title span {
    font-size:calc(30px / 1.3);
    line-height: 1.456789;
  }

  .home__feature__img {
    width: 100%;
  }

}

.home__success {
  padding: 0;
}

.home__success .section__title__icon {
  margin-top: -54px;
  background: var(--color5);
  border-radius: 400px;
  width: 400px;
  height: 400px;
  padding-top:18px;
  margin-bottom:calc(-180px - 90px - 18px);
}

.home__success__leed {
  margin: 27px auto;
  text-align: center; 
}

@media only screen and (max-width:767px) {
  .home__success .section__title__icon {
    margin-top: calc(-54px / 2);
    background: var(--color5);
    border-radius: calc(400px /2);
    width:calc(400px /2);
    height:calc(400px /2);
    padding-top:calc(18px / 1.95);
    margin-bottom:calc(calc(-180px - 90px - 18px) /2);
  }

  .home__success__leed {
    margin: calc(27px  /1.5) 0;
    text-align: left; 
  }

}


/*common__success*/
.common__success {
  padding-top: 0;
}

.common__success__body {
  position: relative;
  margin-top:-90px;
}

.common__success .section__title__icon {
  margin-top: -81px;
  background: var(--color5);
  border-radius: 300px;
  width: 300px;
  height: 300px;
  padding-top:36px;
  margin-bottom:calc(-90px - 72px);
}

@media only screen and (max-width:767px) {
  .common__success__body {
    margin-top:calc(-90px / 1.5);
  }

  .common__success .section__title__icon {
    margin-top:calc(-81px / 1.5);
    width: calc(300px / 1.5);
    height: calc(300px / 1.5);
    padding-top:calc(36px / 1.5);
    margin-bottom:calc(calc(-90px - 72px ) /1.5);
  }
}


/*home__review*/
.home__review__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  margin-top: 27px;
}

.home__review__list {
  flex-basis: 30%;
  margin: auto;
  background: #fff;
  padding: 36px 45px;
  border-radius: 13.5px;
  border-top: 6px solid var(--color2);
}

.home__review__title {
  text-align: center;
  margin:auto auto 9px;
}

.home__review__title span {
  display: inline-block;
  text-align: center;
  margin: auto;
  font-size: 27px;
  line-height: 1.3456789;
  background:linear-gradient(transparent 60%, #fffaa3 60%);
  font-weight: 700;
}

.home__review__test {
  display: block;
  text-align: center;
  margin: auto;
  font-size: 15px;
  line-height: 1.013456789;
  font-weight: 400;
}

.home__review__img {
  text-align: center;
  margin:36px auto ;
}

.home__review__img img {
  border-radius: 150px;
  text-align: center;
  margin: auto;
  height: 150px;
  width: 150px;
}

.home__review__list p {
  text-align: left;
  font-size: 17px;
}

.home__review__btn {
  max-width: 400px;
  text-align: center;
  padding-bottom: 90px;
  margin: 54px auto auto;
}

@media only screen and (max-width:767px) {
  .home__review__container {
    margin-top: calc(27px / 3);
  }

  .home__review__list {
    flex-basis: 100%;
    padding: calc(36px / 1.5) 18px;
    border-radius: 13.5px;
    margin: 4% auto auto;
  }

  .home__review__title {
    margin:auto auto calc(9px / 1.5);
  }

  .home__review__title span {
    font-size: calc(27px / 1.27);
  }

  .home__review__test {
    font-size: calc(15px / 1.15);
  }

  .home__review__img {
    margin:calc(36px / 1.5) auto ;
  }

  .home__review__img img {
    border-radius: calc(150px / 1.5);
    height: calc(150px / 1.5);
    width: calc(150px / 1.5);
  }

  .home__review__list p {
    font-size: calc(17px / 1.17);
  }

  .home__review__btn {
    max-width: 100%;
    padding-bottom: calc(90px / 2);
    margin: calc(54px / 2) auto auto;
  }
}


/*home__cta*/
.section.home__cta {
  padding: 0 0 72px;
}

.home__cta__body {
  position: relative;
}

.home__cta__container {
  margin-top: calc(-90px - 90px);
  border-radius: 27px;
  background: #fff;
  padding:72px 90px ;
  margin-bottom: 45px;
}

.home__cta__message {
  font-size: 27px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.025em;
  margin: auto;
}

.home__cta__message  strong {
  background:linear-gradient(transparent 60%, #fffaa3 60%);
  font-weight: 500;
}

.home__cta__list {
  margin: 36px auto auto;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: top;
}

.home__cta__list li.tel {
  flex-basis: 42.5%;
  position: relative;
  z-index: 23;
}

.home__cta__list li.web {
  flex-basis: 56.5%;
  z-index: 12;
}

.home__cta__list a  {
  padding: 24px 18px;
  font-size: 22px;
}

.home__cta__list a span {
  display: inline-block;
  vertical-align: middle;
  font-size: 22px!important;
  font-weight: 600;
}

.home__cta__list li.tel img {
  margin-right: 2.25px;
  display: inline-block;
  vertical-align: middle;
  width: 17.5px;
  margin-top: 2.25px;
}

.home__cta__list li.web img {
  display: inline-block;
  vertical-align: middle;
  width: 15.5px;
  margin-top: 2.25px;
  margin-right: 2.25px;
}

.home__cta__list li.web a {
  box-shadow:0 0 20px rgba(0, 0, 0, 0.75);
}

@media only screen and (max-width:767px) {
  .section.home__cta {
    padding: 0 0 calc(72px / 1.5);
  }

  .home__cta__container {
    margin-top: calc(calc(-90px - 90px) / 1.5);
    border-radius: calc(27px / 1.5);
    padding:calc(72px / 3) 36px ;
    margin-bottom: calc(45px / 1.5);
  }

  .home__cta__message {
    font-size: calc(27px / 1.5);
    text-align: left;
    line-height: 1.6789;
    letter-spacing: calc(0.025em / 1.5);
  }

  .home__cta__list {
    margin: calc(36px / 1.5) auto auto;
  }

  .home__cta__list li.tel ,
  .home__cta__list li.web {
    flex-basis: 100%;
    margin:1% auto;
  }

  .home__cta__list a  {
    padding: calc(24px / 1.5) calc(18px / 1.5);
    font-size:calc(22px / 1.22);
  }

  .home__cta__list a span {
    font-size: calc(22px / 1.2)!important;
  }

  .home__cta__list li.tel img {
    margin-right: calc(2.25px / 1.5);
    width:calc(17.5px / 1.5);
    margin-top:calc(2.25px / 1.5);
  }

  .home__cta__list li.web img {
    width:calc(15.5px / 1.5);
    margin-top:calc(2.25px / 1.5);
    margin-right: calc(2.25px / 1.5);
  }

}

/*home__faq*/
.home__faq {
  position: relative;
}

.home__faq__btn {
  max-width: 400px;
  position: relative;
  margin: 54px auto auto;
  text-align: center;
}

@media only screen and (max-width:767px) {
  .home__faq__btn {
    max-width: 100%;
    margin: calc(54px / 1.5) auto auto;
  }

}


/*home__news*/
.home__news {
  position: relative;
}

.home__news__container {
  padding: 45px;
  border-radius: 27px;
  background: #fff;
  margin-top: 54px;
}

.home__news__btn {
  max-width: 400px;
  margin: 54px auto auto;
  text-align: center;
}

@media only screen and (max-width:767px) {
  .home__news__container {
    padding: calc(45px / 1.5) 18px;
    border-radius: calc(27px / 1.5) ;
    margin-top: calc(54px / 1.5) ;
  }

  .home__news__btn {
    max-width: 100%;
    margin: calc(54px / 1.5) auto auto;
  }
}


/*home__access*/
.section.home__access {
  padding-top: 0;
  margin-top: 72px;
}

.home__access__body {
  position: relative;
}

.home__access__container {
  margin-top: calc(-90px - 90px);
  border-radius: 27px;
  background: #fff;
  padding:45px 72px 63px;
}

.home__access__detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.home__access__map {
  flex-basis: 50%;
  margin-top: 36px;
  border-radius: 18px;
}

.home__access__map iframe {
  width: 100%;
  height: 330px;
  border-radius: 18px;
}

.home__access__text {
  flex-basis: 45%;
}

.home__access__list dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: top;
  padding: 13.5px 0;
  background-image : linear-gradient(to right, #000 2px, transparent 2px);
  background-size: 10px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}

  .home__access__list dl:nth-last-child(1) {
    background-image:none;
  }

.home__access__list dl dt {
  flex-basis: 25%;
  font-weight: bold;
}

.home__access__list dl dd {
  flex-basis: 75%;

}

@media only screen and (max-width: 767px) {
  .section.home__access {
    margin-top: calc(72px / 2);
  }

  .home__access__container {
    margin-top: calc(calc(-90px - 90px) / 1.5);
    border-radius:calc(27px / 1.5);
    padding:calc(45px / 1.5) 18px calc(63px / 1.5);
  }

  .home__access__map {
    flex-basis: 100%;
    margin-top: calc(36px / 1.5);
  }

  .home__access__map iframe {
    height: calc(330px / 1.5);
  }

  .home__access__text {
    flex-basis: 100%;
  }

  .home__access__list dl {
    padding: calc(13.5px / 1.5) 0;
    background-image : linear-gradient(to right, #000 1px, transparent 1px);
    background-size: 5px 1px;
  }

  .home__access__list dl dt {
    flex-basis: 100%;
  }

  .home__access__list dl dd {
    flex-basis: 100%;

  }

}

/* ----------------------------------------------------------

About Setting

---------------------------------------------------------- */
/*about__strength*/
.about__strength__leed {
  text-align: center;
  margin: auto;
}

/*about__strength__list*/
.about__strength__container {
  margin-top:45px;
}

.about__strength__list {
  background: #fff;
}

.about__strength__detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 54px 0;
  margin-bottom: 36px;
  background: #fff;
}

.about__strength__text {
  flex-basis:52.5%;
  background: #fff;
}

.about__strength__img  {
  flex-basis: 42.50%;
}

  .about__strength__list:nth-child(odd) .about__strength__text {
    order: 1;
  }

  .about__strength__list:nth-child(odd) .about__strength__img {
    order: 2;
  }

  .about__strength__list:nth-child(even) .about__strength__text {
    order: 2;
  }

  .about__strength__list:nth-child(even) .about__strength__img {
    order: 1;
  }

.about__strength__img img {
  border-radius: 27px;
}

.about__strength__title {
  text-align: left;
  margin: 0;
  margin-bottom:36px ;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

.about__strength__title .num   {
  flex-basis: 18%;
}

.about__strength__title .title  {
  flex-basis: 77%;
  margin-left: 5%;
}
   
.about__strength__title .num span.en {
  display: inline-block;
  color: var(--color2);
  line-height: 1;
  border-bottom: 2px solid var(--color2);
  font-size: 117px;
  font-weight: 400;
  font-style: italic;
}

  .about__strength__list:nth-child(1) .about__strength__title .num span.en  {
    letter-spacing: -0.05em;
  }

.about__strength__title .title span {
  display: block;
  text-align: left;
  margin: 0;
  font-size: 30.5px;
  line-height: 1.56789;
  font-weight: 900;
}

.about__strength__title .title span strong {
  background:linear-gradient(transparent 60%, #fffaa3 60%);
  font-weight:800;
}

.about__strength__text p {
  text-align: justify;
}

.about__strength__label {
  text-align: left;
  margin:27px 0 0;
}

.about__strength__label span  {
  display: inline-block;
  text-align: center;
  margin: 0;
  padding: 2.25px 36px;
  font-size: 14px;
  font-weight: bold;
  border:1.5px solid var(--color2);
  color: var(--color2);
}

@media only screen and (max-width:767px) {
  .about__strength__container {
    margin-top:calc(45px / 1.5);
  }

  .about__strength__detail {
    padding: calc(54px / 1.5) 0;
    margin-bottom: calc(36px / 1.5);
  }

  .about__strength__text,
  .about__strength__img  {
    flex-basis:100%;
  }

  .about__strength__list:nth-child(odd) .about__strength__text,
  .about__strength__list:nth-child(even) .about__strength__text {
    order: 1;
  }

  .about__strength__list:nth-child(odd) .about__strength__img ,
  .about__strength__list:nth-child(even) .about__strength__img {
    order: 2;
  }

  .about__strength__img  {
    margin-top: 9px;
  }

  .about__strength__img img {
    border-radius: calc(27px / 1.5);
  }

  .about__strength__title {
    margin-bottom:calc(36px / 1.5);
  }

  .about__strength__title .num   {
    flex-basis: 100%;
    text-align: center;
    margin: auto auto 18px;
  }

  .about__strength__title .title  {
    flex-basis: 100%;
    text-align: center;
    margin: auto auto -9px;
  }
     
  .about__strength__title .num span.en {
    font-size: calc(117px / 2.17);
  }

  .about__strength__title .title span {
    font-size: calc(30.5px / 1.305);
    text-align: center;
    line-height: 1.567890;
    margin: auto auto ;
  }

  .about__strength__label {
    text-align: center;
    margin:calc(27px/ 1.5) auto;
  }

  .about__strength__label span  {
    text-align: center;
    margin: auto;
    padding: calc(2.25px/ 1.5) calc(36px/ 1.5);
    font-size: calc(14px/ 1.14);
  }

}


/*about__feature*/
.section.about__feature {
  padding: 0;
}

.about__feature__head {
  margin-bottom: 72px;
}

.about__feature__leed {
  text-align: center;
  margin: auto;
}

.about__feature__cotainer {
  padding-top: 18px;
}

@media only screen and (max-width:767px) {
  .about__feature__head {
    margin-bottom: calc(72px /1.5);
  }

  .about__feature__leed.spleft {
    text-align: justify;
    margin: 0;
  }

  .about__feature__cotainer {
    padding-top: calc(18px /1.5);
  }
}


/*about__point*/
.about__point__cotainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  margin-top:45px;
}

.about__point__list {
  flex-basis: 32%;
  padding: 36px;
  border-radius: 9px;
  margin: 0 auto;
}

  .about__point__list:nth-child(3n-2) {
    margin-left: 0;
  }

  .about__point__list:nth-child(3n) {
    margin-right: 0;
  };

.about__point__title {
  text-align: center;
  margin: auto auto ;
}
   
.about__point__title span {
  display: block;
  font-size: 24px;
  color: var(--color2);
  line-height: 1.56789;
  font-weight: bold;
  text-align: center;
  margin: auto auto 18px;
}

.about__point__list p {
  text-align:justify;
}

@media only screen and (max-width:767px) {
  .about__point__cotainer {
    margin-top:calc(45px / 3);
  }

  .about__point__list {
    flex-basis: 100%;
    margin: 2% auto;
    padding:calc(36px / 1.5) 18px;
  }

  .about__point__list:nth-child(3n-2) ,
  .about__point__list:nth-child(3n) {
    margin-left: auto;
    margin-right: auto;
  }
     
  .about__point__title span {
    font-size: calc(24px / 1.24);
    margin: auto auto calc(18px / 1.5);
  }

}

/*about__flow*/
.about__flow__cotainer {
  margin-top: 27px;
  padding: 45px 45px 27px;
  border-radius: 9px;
}

.about__flow__title {
  text-align: center;
  margin: auto auto ;
}
   
.about__flow__title span {
  display: block;
  font-size: 24px;
  color: var(--color2);
  line-height: 1.56789;
  font-weight: bold;
  text-align: center;
  margin: auto auto 18px;
}

.about__flow__list {
  margin-top: 18px;
}

.about__flow__list li {
  background: #fff;
  border:1px solid var(--color2);
  list-style: none;
  padding: 18px 27px;
  border-radius: 4.5px;
  position: relative;
  margin-bottom: 18px;
  font-size: 16.5px;
  border-radius: 9px;
}

.about__flow__list li strong {
  color:var(--color2);
}

.about__flow__list li:after {
  position: absolute;
  content: '';
  width: 0;
  top: 100%;
  left: calc(50% - calc(15px / 2));
  height: 0;
  margin: auto;
  border-style: solid;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-top:15px solid var(--color2);
  border-bottom: 0;
}

.about__flow__list li:nth-last-child(1)::after {
  display: none;
}

@media only screen and (max-width:767px) {
  .about__flow__cotainer {
    margin-top: calc(27px / 1.5);
    padding: calc(45px / 1.5) 18px calc(27px / 1.5);
  }
     
  .about__flow__title span {
    font-size: calc(24px / 1.24);
    margin: auto auto calc(18px / 1.5);
  }

  .about__flow__list {
    margin-top: calc(18px / 1.5);
  }

  .about__flow__list li {
    padding: calc(18px / 1.5) calc(27px / 1.5);
    margin-bottom: calc(18px / 1.5);
    font-size:calc(16.5px / 1.165);
  }

  .about__flow__list li:after {
    top: 100%;
    left: calc(50% - calc(15px / 2));
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-top:15px solid var(--color2);
    border-bottom: 0;
  }

}

/*about__booth*/
.about__booth__cotainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  margin-top: 54px;
}

.about__booth__list {
  flex-basis: 31.5%;
  border-top: 6px solid var(--color2);
  margin: 0 auto;
}

  .about__booth__list:nth-child(3n-2) {
    margin-left: 0;
  }

  .about__booth__list:nth-child(3n) {
    margin-right: 0;
  }

.about__booth__text {
  padding: 36px;
}

.about__booth__title {
  text-align: center;
  margin: auto;
  margin-bottom: 18px;
  color: var(--color2);
}

.about__booth__title span {
  display: block;
  text-align: center;
  margin: auto;
  font-size: 24px;
  font-weight: 800;
}

.about__booth__text p {
  text-align: justify;
}

.about__booth__img {
  text-align: center;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .about__booth__cotainer {
    margin-top: calc(54px /1.5);
  }

  .about__booth__list {
    flex-basis: 100%;
    border-top: 6px solid var(--color2);
  }

  .about__booth__list:nth-child(3n-2) ,
  .about__booth__list:nth-child(3n) {
    margin-left: auto;
    margin-right: auto;
  }

  .about__booth__text {
    padding: calc(36px /1.5);
  }

  .about__booth__title {
    margin-bottom: calc(18px / 2);
  }

  .about__booth__title span {
    font-size: calc(24px /1.12);
  }

}


/*about__supecial__cotainer*/
.about__supecial__cotainer {
  padding-top: 18px;
}

.about__supecial__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
}

.about__supecial__text {
  flex-basis: 67.5%;
  order: 2;
}

.about__supecial__img  {
  flex-basis: 27.5%;
  order: 1;
}

.about__supecial__text p {
  text-align: justify;
}

.about__supecial__title {
  text-align: left;
  margin: 18px 0;
}

.about__supecial__title span {
  display: block;
  color: var(--color2);
  font-size: 20px;
  line-height: 1.789;
  font-weight:700;
  text-align: left;
}

.about__supecial__title span strong {
  background:linear-gradient(transparent 60%, #fffaa3 60%);;
  font-weight: 700;
  text-align: left;
}

.about__supecial__check {
  padding: 36px;
  margin-top: 27px;
  border-radius: 9px;
}

.about__supecial__check li {
  display: block;
  width: 100%;
  font-weight: 600;
  font-size: 18px;
}

.about__supecial__check li span {
  color: var(--color2);
}

@media only screen and (max-width: 767px) {
  .about__supecial__cotainer {
    padding-top: calc(18px / 1.5);
  }

  .about__supecial__text {
    flex-basis: 100%;
    order: 1;
    margin-top: -18px;
  }

  .about__supecial__img  {
    flex-basis: 100%;
    order: 2;
    margin-top: 27px;
  }

  .about__supecial__title {
    margin: calc(18px / 1.5) 0;
  }

  .about__supecial__title span {
    font-size: calc(20px / 1.2);
  }

  .about__supecial__check {
    padding:calc(36px /2);
    margin-top:calc(27px / 1.5);
  }

  .about__supecial__check li {
    font-size: calc(18px / 1.18);
  }

}

/*about__featuree*/
.about__feature__title {
  margin-top: 27px;
}

.about__feature__title .num {
  text-align: center;
  margin: auto;
  position: relative;
  z-index: 123;
}

.about__feature__title .num span {
  display:block;
  text-align: center;
  margin: auto;
  width: 144px;
  height: 144px;
  padding: 36px ;
  border-radius: 144px;
  color: var(--color1);
  line-height: 0.5;
  font-size: 63px;
  font-weight: 400;
  font-style: italic;
  background-color: var(--color2);
}

.about__feature__title .title {
  padding:54px 18px 36px;
  background-color: var(--color2);
  margin: auto;
  border-radius: 27px 27px 0 0;
  margin-top: calc(-90px - 9px);
}

.about__feature__title .title span {
  display: block;
  text-align: center;
  position: relative;
  z-index: 345;
  font-size: 36px;
  font-weight: 800;
  color: var(--color3);
  margin: auto;
}

.about__feature__content {
  padding:36px 0;
}

.about__feature__leed {
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .about__feature__title {
    margin-top:calc(27px / 1.5);
  }

  .about__feature__title .num span {
    width: calc(144px / 1.5);
    height:calc(144px / 1.5);
    padding: calc(36px / 1.5);
    border-radius: calc(144px / 1.5);
    font-size: calc(63px / 1.63);
  }

  .about__feature__title .title {
    padding:calc(54px / 1.5) 18px calc(36px / 1.5);
    border-radius: calc(27px / 1.5) calc(27px / 1.5) 0 0;
    margin-top: calc(calc(-90px - 9px) /1.5);
  }

  .about__feature__title .title span {
    font-size: calc(36px / 1.5);
    line-height: 1.56789;
  }

  .about__feature__content {
    padding:calc(36px / 1.5) 0;
  }

}


/*about__price*/
.about__price__list {
  padding: 27px 63px;
  margin: 36px auto;
  border: 6px solid var(--color2);
  box-sizing: border-box;
  border-radius: 18px;
}

.about__price__detail {
  padding: 45px 0;
  border-radius: 18px;
}

.about__price__title {
  text-align: center;
  margin: auto auto 18px
}

.about__price__title span {
  display: block;
  text-align: center;
  font-size: 27px;
  font-weight: 600;
  color: var(--color2);
  margin: auto;
}

.about__price__leed {
  text-align: center;
  margin: auto;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6789;
}

.about__price__sample {
  border-radius: 9px;
  margin: 27px auto 18px;
  background: #fff;
  padding: 18px;
}

.about__price__sample span.ja {
  font-size: 17px;
  display: block;
  text-align: center;
  line-height: 1.456789;
  font-weight: 500;
}

.about__price__sample span.ja2 {
  display: block;
  font-size: 54px;
  text-align: center;
  line-height: 1.456789;
  color: var(--color2);
  font-weight: 600;
}

.about__price__sample span.ja2 small {
  font-size: 30px;
}

@media only screen and (max-width: 767px) {
  .about__price__list {
    padding: calc(27px / 1.5) 18px;
    margin: calc(36px / 1.5) auto;
  }

  .about__price__detail {
    padding: calc(45px / 1.5) 0;
  }

  .about__price__title {
    margin: auto auto calc(18px / 1)
  }

  .about__price__title span {
    font-size: calc(27px / 1.4);
    line-height: 1.456789;
  }

  .about__price__leed {
    font-size: calc(18px / 1.18);
  }

  .about__price__sample {
    margin: calc(27px / 1.5) auto calc(18px / 1.5);
    padding: calc(18px / 1.5);
  }

  .about__price__sample span.ja {
    font-size: calc(17px / 1.17);
  }

  .about__price__sample span.ja2 {
    font-size: calc(54px / 1.54);
  }

  .about__price__sample span.ja2 small {
    font-size: calc(30px / 1.3)
  }
}

/* ----------------------------------------------------------

Course Setting

---------------------------------------------------------- */
.course__leed {
  text-align: center;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .course__leed.spleft {
    text-align: left;
    margin: 0;
  }
}


/*course__point*/
.course__point__leed {
  text-align: center;
  margin: auto;
}

/*course__point__list*/
.course__point__container {
  margin-top:54px;
}

.course__point__list {
  background: #fff;
  margin-bottom: 45px;
}

.course__point__detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 63px 0;
  background: #fff;
}

.course__point__text {
  flex-basis:57.5%;
  background: #fff;
}

.course__point__img  {
  flex-basis: 37.50%;
}

  .course__point__list:nth-child(odd) .course__point__text {
    order: 1;
  }

  .course__point__list:nth-child(odd) .course__point__img {
    order: 2;
  }

  .course__point__list:nth-child(even) .course__point__text {
    order: 2;
  }

  .course__point__list:nth-child(even) .course__point__img {
    order: 1;
  }

.course__point__img img {
  border-radius: 27px;
}

.course__point__title {
  text-align: left;
  margin: 0;
  margin-bottom:36px ;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

.course__point__title .num   {
  flex-basis: 18%;
}

.course__point__title .title  {
  flex-basis: 77%;
  margin-left: 5%;
}
   
.course__point__title .num span.en {
  display: inline-block;
  color: var(--color2);
  line-height: 1;
  border-bottom: 2px solid var(--color2);
  font-size: 117px;
  font-weight: 400;
  font-style: italic;
}

  .course__point__list:nth-child(1) .course__point__title .num span.en  {
    letter-spacing: -0.05em;
  }

.course__point__title .title span {
  display: block;
  text-align: left;
  margin: 0;
  font-size: 27px;
  line-height: 1.456789;
  font-weight: 800;
}

.course__point__title .title span strong {
  background:linear-gradient(transparent 60%, #fffaa3 60%);
  font-weight:800;
}

.course__point__text p {
  text-align: justify;
}

.course__point__label {
  text-align: left;
  margin:27px 0 0;
}

.course__point__label span  {
  display: inline-block;
  text-align: center;
  margin: 0;
  padding: 2.25px 36px;
  font-size: 14px;
  border:1px solid var(--color2);
  color: var(--color2);
}

@media only screen and (max-width:767px) {
  .course__point__container {
    margin-top:calc(54px / 1.5);
  }

  .course__point__list {
    margin-bottom: calc(45px / 1.5);
  }

  .course__point__detail {
    padding: calc(63px / 1.5) 0;
  }

  .course__point__text ,
  .course__point__img  {
    flex-basis:100%;
  }

  .course__point__list:nth-child(odd) .course__point__text ,
  .course__point__list:nth-child(even) .course__point__text {
    order: 1;
  }

  .course__point__list:nth-child(odd) .course__point__img ,
  .course__point__list:nth-child(even) .course__point__img {
    order: 2;
  }

  .course__point__img  {
    margin-top:18px;
  }

  .course__point__img img {
    border-radius: calc(27px / 1.5);
  }

  .course__point__title {
    margin-bottom:calc(36px / 1.5);
  }

  .course__point__title .num   {
    flex-basis: 100%;
    text-align: center;
    margin: auto auto 18px;
  }

  .course__point__title .title  {
    flex-basis:100%;
    margin-left:0;
    margin-bottom: -9px;
  }
     
  .course__point__title .num span.en {
    font-size: calc(117px / 2);
    text-align: center;
    margin: auto;
  }

  .course__point__title .title span {
    font-size: calc(27px / 1.3);
    text-align: center;
    margin: auto;
  }

  .course__point__label {
    margin:calc(27px / 1.5) 0 0;
  }

  .course__point__label span  {
    padding: calc(2.25px 1.5) 18px;
    font-size: calc(14px / 1.14);
  }
}


/*timetable*/
.section.timetable {
  padding-bottom: 63px;
}

.timetable__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
}

.timetable__list {
  margin-top: 27px;
  flex-basis: 47.5%;
}

.timetable__subtitle {
  text-align: center;
  margin:auto;
}

.timetable__subtitle span {
  display: bold;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin:auto;
}

.timetable__table {
  margin-top:9px;
}

.timetable__table table {
  width: 100%;
  border-collapse: collapse;
  padding: 0;
  margin: 0;
}

.timetable__table table thead th ,
.timetable__table table tbody th ,
.timetable__table table tbody td {
  padding: 9px;
}

.timetable__table table thead th {
  text-align: center;
  font-weight: 500;
  background-color: var(--color4);
}

.timetable__table table thead th  {
  border-bottom:3px solid #000;
}

.timetable__table table tbody th ,
.timetable__table table tbody td {
  border-bottom: 1px solid #aaa;
}

  .timetable__table table tbody th {
    width: 20%;
  }

  .timetable__table table tbody td.center {
    font-weight:600;
  }

  .timetable__table table tbody td span.ja2 {
    display: block;
    font-size: 18px;
  }

.timetable__text {
  margin: 36px 0 0;
  border: 1px dotted #aaa;
  padding: 18px;
}

.timetable__text p {
  font-size: 14px;
  line-height: 1.67890;
}

@media only screen and (max-width:767px) {
  .section.timetable {
    padding-bottom: calc(63px / 1.5);
  }

  .timetable__list {
    margin-top: calc(27px / 1.5);
    flex-basis: 100%;
  }

  .timetable__subtitle span {
    font-size: calc(24px / 1.3);
  }

  .timetable__table {
    margin-top:calc(9px / 1.5);
  }

  .timetable__table table thead th ,
  .timetable__table table tbody th ,
  .timetable__table table tbody td {
    padding:calc(9px / 1.5);
  }

  .timetable__table table tbody th {
    width: 20%;
  }

  .timetable__table table tbody td span.ja2 {
    font-size: calc(18px / 1.18);
  }

  .timetable__text {
    margin: calc(36px / 1.5) 0 0;
    padding: calc(18px / 1.5);
  }

  .timetable__text p {
    font-size: calc(14px / 1.14);
  }

}


/*course__price__btn*/
.course__price__btn {
  margin: 18px auto 27px;
  max-width: 300px;
  text-align: center;
}

.course__price__btn a {
  font-size: 15px;
  padding: 7.25px!important;
}

@media only screen and (max-width:767px) {
  .course__price__btn {
    margin: calc(27px / 1.5) auto;
    max-width: 100%;
  }

  .course__price__btn a {
    font-size:calc(15px  /1);
    padding: calc(7.25px / 1.5)!important;
  }
}



/*course__price*/
.course__price__container {
  background-color: #fff;
  border-radius: 18px;
  padding:54px 36px;
  margin-top: 36px;
}

.course__price__list {
  margin-bottom:45px;
}

  .course__price__list:nth-last-child(1) ,
  .course__price__list:last-of-type {
    margin-bottom:auto;
  }

.course__price__title {
  text-align: center;
  margin:auto;
}

.course__price__title span {
  display: bold;
  text-align: center;
  font-size: 24px;
  font-weight:700;
  margin:auto;
}

.course__price__table {
  margin: 18px auto ;
}

.course__price__table table {
  width: 100%;
  border-collapse: collapse;
  padding: 0;
  margin: 0;
}

.course__price__table table thead th ,
.course__price__table table tbody th ,
.course__price__table table tbody td {
  padding: 9px;
}

.course__price__table table thead th {
  text-align: center;
  font-weight: 500;
  background-color:#fdebb6;
}

.course__price__table table thead th  {
  border-bottom:3px solid #000;
}

.course__price__table table tbody th ,
.course__price__table table tbody td {
  border-bottom: 1px solid #aaa;
}

  .course__price__table table tbody th {
    width: 20%;
  }

  .course__price__table table tbody td.center {
    font-weight:600;
  }

  .course__price__table table tbody td span.ja2 {
    display: block;
    font-size: 18px;
  }

.course__option__table table {
  width: 100%;
  border-collapse: collapse;
  padding: 0;
  margin: 0;
  border-top:2px solid #000;
  border-bottom:2px solid #000;
}

.course__option__table table tbody th ,
.course__option__table table tbody td {
  padding: 9px;
  text-align: left;
  border-bottom: 1px solid #aaa;
  font-size: 16px;
}

.course__option__table table tbody th {
  width:25%;
  padding-left: 90px;
}

.course__price__text {
  margin: 36px 0 18px;
  border: 1px dotted #aaa;
  padding: 18px;
}

.course__price__text p {
  font-size: 14px;
  line-height: 1.67890;
}

@media only screen and (max-width:767px) {
  .course__price__container {
    padding:calc(54px / 1.5) 18px;
    margin-top: calc(36px / 1.5);
  }

  .course__price__list {
    margin-bottom:calc(45px / 1.5);
  }

  .course__price__title span {
    font-size: calc(24px / 1.24);
  }

  .course__price__table {
    margin: calc(18px / 1.5) auto ;
  }

  .course__price__table table thead th ,
  .course__price__table table tbody th ,
  .course__price__table table tbody td {
    padding: calc(9px / 1.5);
  }

  .course__price__table table tbody th {
    width: 20%;
  }

  .course__price__table table tbody td span.ja2 {
    font-size: calc(18px / 1.18);
  }

  .course__option__table table tbody th ,
  .course__option__table table tbody td {
    font-size: calc(16px / 1.16);
  }

  .course__option__table table tbody th ,
  .course__option__table table tbody td {
    width:100%;
    position: relative;
    display: block;
  }

    .course__option__table table tbody th {
      border-bottom: none;
      padding:1em 1em 0 1em;
    }

    .course__option__table table tbody td {
      padding:0 1em 1em 1em;
    }

  .course__price__text {
    margin: calc(36px / 1.5) 0 calc(18px / 1.5);
    padding: calc(18px / 1.5);
  }

  .course__price__text p {
    font-size: calc(14px / 1.14);
  }

}

/*table__transpose*/
@media only screen and (max-width:767px) {
  .course__price__table table.table__transpose {
    border-top:1px solid #000;
    border-bottom:1px solid #000;
  }

  .course__price__table table.table__transpose thead th ,
  .course__price__table table.table__transpose tbody th ,
  .course__price__table table.table__transpose tbody td {
    border-bottom:1px solid #aaa;
  }

  .table__transpose {
    writing-mode: vertical-lr;
    border-collapse: collapse;
  }

  .table__transpose th,
  .table__transpose td {
    writing-mode: horizontal-tb;
    padding: 8px;
    border: 1px solid #ccc;
    text-align: center;
    background-color: #fff;
  }
}



/*course__feature*/
.course__feature {
  padding-top: 0;
}

.course__feature__body {
  padding-top: 90px;
}

.course__feature__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  margin-top: 45px;
}

.course__feature__list {
  flex-basis: 32%;
  margin: 0 1%;
  padding: 36px;
  border-radius: 18px;
  border-top:10px solid var(--color2);
  background-color: #fff;
}

  .course__feature__list:nth-child(3n-2) {
    margin-left: 0;
  }

  .course__feature__list:nth-child(3n) {
    margin-right: 0;
  }

.course__feature__title {
  text-align: center;
  margin:auto;
}

.course__feature__title span {
  display: bold;
  text-align: center;
  font-size: 27px;
  font-weight:800;
  margin:auto;
}

.course__feature__list p {
  text-align: justify;
}

.course__feature__sublist {
  margin-top: 36px;
  border-radius: 9px;
  border: 1px solid var(--color6);
}

.course__feature__subtitle {
  text-align: center;
  margin: auto;
  background-color:var(--color6);
  padding: 9px;
}

.course__feature__subtitle span {
  display: block;
  text-align: center;
  font-size: 17px;
  margin: auto;
  font-weight: bold;
  color: var(--color1);
}

.course__feature__sublist p {
  padding: 18px;
  font-size: 16px;
  text-align: justify;
}

@media only screen and (max-width:767px) {
  .course__feature__body {
    padding-top: calc(90px / 3);
  }

  .course__feature__container {
    margin-top:calc(45px / 1.5);
  }

  .course__feature__list {
    flex-basis: 100%;
    margin:1% auto;
    padding: calc(36px / 1.5);
    border-radius: 18px;
  }

  .course__feature__list:nth-child(3n-2) ,
  .course__feature__list:nth-child(3n) {
    margin-left: auto;
    margin-right: auto;
  }

  .course__feature__title span {
    font-size: calc(27px / 1.27);
  }

  .course__feature__sublist {
    margin-top: calc(36px / 1.5);
  }

  .course__feature__subtitle span {
    font-size:calc(17px / 1.16);
  }

  .course__feature__sublist p {
    padding: calc(18px / 1.5);
    font-size: calc(16px / 1.16);
  }
}

/*course__support*/
.course__support__container {
  margin-top: 45px;
  padding-bottom: 0;
  margin-bottom: -45px;
  position: relative;
}

.course__support__list {
  display: flex;
  flex-wrap: wrap;
  border-radius: 27px;
  background-color: #fff;
  justify-content: space-between;
  align-items: top;
  margin-bottom: 45px;
}

.course__support__text {
  flex-basis: 62.5%;
  order: 2;
  padding: 45px 72px 45px 0;
}

.course__support__img {
  order: 1;
  flex-basis: 32.5%;
}

.course__support__img img {
  border-radius: 27px 0 0 27px ;
}

.course__support__title {
  text-align: left;
  margin-bottom: 18px;
}

.course__support__title span {
  display: block;
  font-size: 25px;
  font-weight: 800;
  text-align: left;
}

.course__support__title span strong {
  background:linear-gradient(transparent 60%, #fffaa3 60%);
  font-weight: 800;
}

.course__support__text p {
  text-align: justify;
  font-size: 17px;
}

@media only screen and (max-width:767px) {
  .course__support__container {
    margin-top: calc(45px / 1.5);
    margin-bottom: calc(-45px / 1.5);
  }

  .course__support__list {
    border-radius: calc(27px / 1.5);
    margin-bottom: calc(45px / 1.5);
  }

  .course__support__text {
    flex-basis: 100%;
    order: 2;
    padding: calc(45px / 3) 1.25em calc(45px / 1.5);
  }

  .course__support__img {
    order: 1;
    flex-basis: 100%;
  }

  .course__support__img img {
    border-radius: calc(27px / 1.5) calc(27px / 1.5) 0 0 ;
    margin-bottom: 4.5px;
  }

  .course__support__title {
    text-align: center;
    margin: auto;
    margin-bottom: calc(18px / 1.5);
  }

  .course__support__title span {
    font-size: calc(25px / 1.25);
    line-height: 1.56789;
    text-align: center;
    margin: auto;
  }

  .course__support__text p {
    font-size: calc(17px / 1.17);
  }

}


/*course__others*/
.course__others {
  margin-top: -45px;
  position: relative;
  padding: 54px 0;
}

.course__others__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
}

.course__others__list {
  border-radius: 9px;
  border: 1px solid var(--color6);
  background: #fff;
}

  .course__others__container.column3 .course__others__list {
    flex-basis: 32%;
    margin: 0 1%;
  }

    .course__others__container.column3 .course__others__list:nth-child(3n-2) {
      margin-left: 0;
    }

    .course__others__container.column3 .course__others__list:nth-child(3n) {
      margin-right: 0;
    }

  .course__others__container.column4 .course__others__list {
    flex-basis: 24%;
    margin: 0 0.5%;
  }

    .course__others__container.column4 .course__others__list:nth-child(4n-3) {
      margin-left: 0;
    }

    .course__others__container.column4 .course__others__list:nth-child(4n) {
      margin-right: 0;
    }

.course__others__title {
  background-color: var(--color4);
  text-align: center;
  border-bottom: 1px solid var(--color6);
  margin: auto;
  padding:13.5px 18px;
  border-radius: 9px 9px 0 0;
}

.course__others__title .label span {
  display: inline-block;
  text-align: center;
  width: 72px;
  margin: auto;
  font-size: 15px;
  border: 1px solid var(--color6);
  background:var(--color1);
  border-radius: 4.5px;
  padding: 4.5px 9px;
  line-height: 1;
  color: var(--color6);
}

.course__others__title .title span{
  display: block;
  text-align: center;
  margin: auto;
  font-size: 20.5px;
  font-weight: 600;
  color: var(--color6);
}

.course__others__list p {
  padding: 24px;
  text-align: justify;
  font-size: 16.5px;
}

@media only screen and (max-width:767px) {
  .course__others {
    margin-top: calc(-45px / 1.5);
    padding: calc(54px / 1.5) 0;
  }

  .course__others__container.column3 .course__others__list ,
  .course__others__container.column3 .course__others__list:nth-child(3n-2) ,
  .course__others__container.column3 .course__others__list:nth-child(3n) {
    flex-basis: 100%;
    margin:1% auto ;
  }

  .course__others__container.column4 .course__others__list ,
  .course__others__container.column4 .course__others__list:nth-child(4n-3) ,
  .course__others__container.column4 .course__others__list:nth-child(4n) {
    flex-basis:100%;
    margin: 0.5% auto ;
  }

  .course__others__title {
    padding:calc(13.5px / 1.5) calc(18px / 1.5);
  }

  .course__others__title .label span {
    width: width: 100%;
    font-size: calc(15px / 1.15);
    border-radius: 4.5px;
    padding: calc(4.5px / 1.5) calc(9px / 1.5);
  }

  .course__others__title .title span{
    font-size: calc(20.5px / 1.205);
  }

  .course__others__list p {
    padding: calc(24px / 1.24);
    font-size: calc(16.5px / 1.165);
  }

}


/*course__university*/
.course__university__leed {
  text-align: center;
}

.course__university__container {
  margin-top: 36px;
  display:flex ;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
}

.course__university__list {
  background-color: var(--color1);
  flex-basis: 50%;
  border: 1px solid var(--color6);
  padding:54px 63px 45px;
}

.course__university__label {
  text-align: center;
  margin: auto;
}

.course__university__label span {
  display: inline-block;
  text-align: center;
  margin: auto;
  font-size: 18px;
  font-weight:bold;
  line-height: 1;
  padding: 7.25px 27px;
  background-color: var(--color6);
  color: var(--color1);
}

.course__university__title {
  text-align: center;
  margin:auto auto 18px;
}

.course__university__title span {
  display: block;
  text-align: center;
  margin: auto;
  font-size: 25px;
  font-weight: 800;
}

.course__university__list p {
  text-align: justify;
  font-size: 17px;
}

@media only screen and (max-width:767px) {
  .course__university__leed {
    text-align: left;
  }

  .course__university__container {
    margin-top: calc(36px / 1.5);
  }

  .course__university__list {
    flex-basis: 100%;
    padding:calc(54px / 1.5) 18px calc(45px / 1.5);
  }

  .course__university__label span {
    font-size: calc(18px / 1.18);
    padding: calc(7.25px / 1.5) calc(27px / 1.5);
  }

  .course__university__title {
    margin:auto auto calc(18px / 1.5);
  }

  .course__university__title span {
    font-size:calc(25px / 1.25);
    line-height: 1.456789;
  }

  .course__university__list p {
    font-size: calc(17px / 1.17);
  }

}


/* ----------------------------------------------------------

Achievement Setting

---------------------------------------------------------- */
/*achievement__leed*/
.achievement__leed {
  text-align: center;
  margin: auto;
}

.achievement__review__btn {
  max-width: 350px;
  text-align: center;
  margin: 54px auto auto;
}

@media only screen and (max-width: 767px) {
  .achievement__review__btn {
    max-width: 100%;
    margin: calc(54px / 1.5) auto auto;
  }

}

/*achievement__review*/
.achievement__review__img {
  margin: 0 1em;
}

.achievement__review__img img {
  border-radius: 18px;
}

.achievement__review__container {
  margin-top: 45px;
}

@media only screen and (max-width: 767px) {
  .achievement__review__img {
    margin: 0 auto;
  }

  .achievement__review__container {
    margin-top: calc(45px / 1.5);
  }
}


/*slick*/
.achievement .slide-arrow {
  bottom: 0;
  cursor: pointer;
  margin: auto;
  position: absolute;
  z-index: 200;
  top: -12.5%;
  width: calc(200px/ 3.25);
}

.achievement .prev-arrow {
  left: 36px;
}

.achievement .next-arrow {
  right: 36px;
}

@media only screen and (max-width:767px) {
  .achievement .slide-arrow {
    bottom: 0;
    cursor: pointer;
    margin: auto;
    position: absolute;
    z-index: 200;
    top: -12.5%;
    width: calc(200px/ 6);
  }

  .achievement .prev-arrow {
    left:9px;
  }

  .achievement .next-arrow {
    right: 9px;
  }

}


/*.achievement__reason*/
.section.achievement__reason {
  padding: 0;
}

.achievement__reason__body {
  padding: 72px 0;
}

.achievement__reason__container {
  background: #fff;
  padding:72px;
  border-radius: 18px;
}

.achievement__reason__list {
  margin: 18px 0 54px;
}

  .achievement__reason__list:nth-last-child(1) ,
  .achievement__reason__list:last-of-type {
    margin: 18px 0 0;
  }

.achievement__reason__title {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-end;
  padding-bottom:5px;
  border-bottom:3px solid var(--color2);
}

.achievement__reason__title .num {
  text-align: left;
  margin: 0;
}

.achievement__reason__title .num span {
  text-align: left;
  font-size: 72px;
  line-height: 0.2;
  font-weight: 400;
  font-style: italic;
  padding:0 27px;
  margin: 0;
  color: var(--color1);
  background-color: var(--color2);
  clip-path: polygon(15% 0, 100% 0, 85% 100%, 0% 100%);
}

.achievement__reason__title .title {
  text-align: left;
  margin: 0;
}

.achievement__reason__title .title span {
  display: block;
  text-align: left;
  line-height: 1.56789;
  margin: 0;
  font-size: 27px;
  padding-bottom:15px;
  padding-left: 24px;
  font-weight: bold;
}

.achievement__reason__title .title span strong {
  background:linear-gradient(transparent 60%, #fffaa3 60%);
}

.achievement__reason__list p {
  padding:18px 0 0;
  margin-left: 116px;
}

@media only screen and (max-width: 767px) {
  .achievement__reason__body {
    padding: calc(72px / 1.5) 0;
  }

  .achievement__reason__container {
    padding:calc(72px /4) 24px calc(72px / 2);
  }

  .achievement__reason__list {
    margin: calc(18px / 1.5) 0 calc(54px / 1.5);
  }

    .achievement__reason__list:nth-last-child(1) ,
    .achievement__reason__list:last-of-type {
      margin: calc(18px / 1.5) 0 0;
    }

  .achievement__reason__title {
    padding-bottom:calc(5px / 1.5);
    border-bottom:3px solid var(--color2);
  }

  .achievement__reason__title .num  {
    text-align: center;
    margin: 18px auto 9px;
  }

  .achievement__reason__title .num span {
    text-align: center;
    margin: auto;
    font-size: calc(72px / 2);
    padding:0 calc(27px / 1);
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
  }

  .achievement__reason__title .title span {
    font-size:calc(27px / 1.2);
    padding-bottom:calc(15px / 1.5);
    padding-left:0;
  }

  .achievement__reason__list p {
    padding:calc(18px / 1.5) 0 0;
    margin-left:0;
  }
}


/*achievement__test*/
.section.achievement__test {
  padding: 0;
}

.achievement__test__container {
  background: #fff;
  padding:45px 72px;
  margin-top: 45px;
  margin-bottom: -72px;
}

.achievement__test__title {
  text-align: center;
  margin:9px auto;
}

.achievement__test__title span {
  display: block;
  text-align: center;
  margin: auto;
  font-size: 27px;
  line-height: 1.56789;
  font-weight: bold;
}

.achievement__test__title span strong {
  background:linear-gradient(transparent 60%, #fffaa3 60%);
  font-weight: bold;
}

.achievement__test__url {
  padding: 36px 0;
}

.achievement__test__url li {
  font-size: 20px;
  font-weight:600;
  padding: 18px 24px;
  border-bottom: 2px dotted #aaa;
  background-image: url(../img/icon__check1.png);
  background-size: 36px;
  background-position: 24px 24px;
  background-repeat: no-repeat;
  padding-left: 72px;
}

.achievement__test__img li {
  position: absolute;
}

.achievement__test__img li.img1  {
  left: calc(-90px - 27px);
  bottom: calc(100% - 36px);
}

.achievement__test__img li.img2  {
  right:calc(-90px - 27px);
  bottom: calc(100% - 36px);
}

  .achievement__test__img li.img1 img {
    width: calc(380px/ 2);
    margin-bottom: -9px;
  }

  .achievement__test__img li.img2 img {
    width: calc(606px / 1.82);
    margin-bottom: -9px;
  }

@media only screen and (max-width: 767px) {
  .achievement__test__container {
    padding:calc(45px / 3) 18px;
    margin-top: calc(45px / 1.5);
    margin-bottom:calc(-72px / 1.5);
  }

  .achievement__test__title {
    margin:calc(9px / 1.5) auto;
  }

  .achievement__test__title span {
    font-size: calc(27px / 1.3) ;
  }

  .achievement__test__url {
    padding: calc(36px / 2) 0;
  }

  .achievement__test__url li {
    font-size: calc(20px / 1.5);
    padding: calc(18px / 1.5) calc(24px / 1.5);
    background-size: calc(36px / 1.5);
    background-position: calc(24px / 1.5) calc(24px / 1.5);
    padding-left: calc(72px / 1.5);
  }

  .achievement__test__img   {
    margin-top: 100px;
  }

  .achievement__test__img li.img1  {
    left: -18px;
    bottom: calc(calc(100% - 36px) / 1.5);
  }

  .achievement__test__img li.img2  {
    right: -18px;
    bottom: calc(calc(100% - 36px) / 1.5);
  }

  .achievement__test__img li.img1 img {
    width: calc(380px/ 4);
    margin-bottom:calc(-9px / 2);
  }

  .achievement__test__img li.img2 img {
    width: calc(606px / 3.74);
    margin-bottom:calc(-9px / 2);
  }

}

/*achievement__test__voice*/
.achievement__test__voice {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: top;
}

.achievement__voice__list {
  border-radius: 9px;
  flex-basis: 24%;
  margin:1% 0.5%;
  padding: 36px;
  background: #fff;
  border-top: 6px solid var(--color2);
}

  .achievement__voice__list:nth-chiilc(4n-3) {
    margin-left: 0;
  }

  .achievement__voice__list:nth-chiilc(4n) {
    margin-right: 0;
  }

.achievement__voice__title {
  text-align: center;
  margin: auto;
}

.achievement__voice__title span {
  display:inline-block;
  text-align: center;
  margin: auto;
  font-weight: bold;
  line-height: 1.456789;
  font-size: 18px;
  background:linear-gradient(transparent 60%, #fffaa3 60%);
}

.achievement__voice__title span strong {
  font-size: 27px;
}

.achievement__voice__title  small {
  display: block;
  font-size: 14.5px;
  font-weight: normal;
}

.achievement__voice__img {
  text-align: center;
  margin: 18px auto;
}

.achievement__voice__img img {
  width: 120px;
  height: 120px;
  border-radius: 100%;
}

.achievement__voice__list p {
  font-size: 15px;
  line-height: 1.789;
}

.achievement__voice__btn {
  max-width: 350px;
  position: relative;
  text-align: center;
  margin: 45px auto auto;
}


@media only screen and (max-width:767px) {
  .achievement__test__voice {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: top;
  }

  .achievement__voice__list {
    border-radius: 9px;
    flex-basis: 48%;
    margin:2% 1%;
    padding: calc(36px / 1.5);
  }

  .achievement__voice__list:nth-chiilc(4n-3),
  .achievement__voice__list:nth-chiilc(4n) {
    margin-left: auto;
    margin-right:auto;
  }

  .achievement__voice__list:nth-chiilc(odd) {
    margin-left: 0;
  }

  .achievement__voice__list:nth-chiilc(even) {
    margin-right:0;
  }

  .achievement__voice__title {
    min-height: 81.0px;
  }

  .achievement__voice__title span {
    font-size: calc(18px / 1.18);
    line-height: 1.356789;
  }

  .achievement__voice__title span strong {
    font-size: calc(27px / 1.27);
  }

  .achievement__voice__title  small {
    font-size: calc(14.5px / 1.14);
    line-height: 1.356789;
  }

  .achievement__voice__img {
    margin: calc(18px / 1.5) auto;
  }

  .achievement__voice__img img {
    width: calc(120px / 1.5);
    height:calc(120px / 1.5);
  }

  .achievement__voice__list p {
    font-size: calc(15px / 1.15);
  }

  .achievement__voice__btn {
    max-width: 100%;
    margin:calc(45px / 1.5) auto auto;
  }

}


/*common__success__list*/
.common__success__container {
  margin-top: 45px;
}

.common__success__title {
  text-align: center;
  margin: auto;
  background:var(--color2);
  border-radius: 27px 27px 0 0;
  padding:18px 9px;
}

.common__success__title span {
  display: block;
  text-align: center;
  margin: auto;
  font-weight: bold;
  font-size: 50px;
  font-style: italic;
  color: var(--color3);
}

  .common__success__title span small {
    font-size: 40px;
  }

.common__success__content {
  background: #fff;
  padding-bottom: 54px;
  border-radius: 0 0 27px 27px;
}

.common__success__leed {
  text-align: center;
  margin: auto;
  font-size: 22.5px;
  line-height: 1.567890;
  padding: 36px 0;
}

  .common__success__leed small {
    font-size: 15px;
  }

.common__success__detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}

.common__success__list {
  flex-basis: 30%;
  margin: auto;
}

.common__success__subtitle {
  background-color: var(--color2);
  border-radius: 13.5px 13.5px 0 0;
  padding:13.5px 9px;
}

.common__success__subtitle span {
  display: block;
  font-size: 20.25px;
  color: var(--color1);
  font-weight: 600;
  text-align: center;
  margin: auto;
}

.common__success__text  {
  border-radius:0 0 13.5px 13.5px ;
  background: #fff;
  border:1px solid var(--color2);
  padding: 22.5px 27px;
}

.common__success__text p  {
  text-align: justify ;
  font-size: 16px;
}

@media only screen and (max-width:767px) {
  .common__success__container {
    margin-top: calc(45px / 1.5);
  }

  .common__success__title {
    border-radius: calc(27px / 1.5) calc(27px / 1.5) 0 0;
    padding:calc(18px / 1) calc(9px / 1);
  }

  .common__success__title span {
    font-size: calc(50px / 1.5);
    line-height: 1.456789;
  }

  .common__success__title span small {
    font-size: calc(40px / 1.4);
  }

  .common__success__content {
    padding-bottom: calc(54px / 2);
    border-radius: 0 0 calc(27px / 1.5) calc(27px / 1.5);
  }

  .common__success__leed {
    font-size: calc(22.5px / 1.2);
    padding: calc(36px / 2) 0;
  }

  .common__success__leed small {
    font-size: calc(15px / 1.15);
  }

  .common__success__list {
    flex-basis: 100%;
    margin: 2% auto;
  }

  .common__success__subtitle {
    border-radius: 13.5px 13.5px 0 0;
    padding:calc(13.5px / 1.5) calc(9px / 1.5);
  }

  .common__success__subtitle span {
    font-size: calc(20.25px / 1.2025)
  }

  .common__success__text  {
    padding: calc(22.5px / 1.5) calc(27px / 1.5);
  }

  .common__success__text p  {
    font-size:calc(16px / 1.16);
  }

}


/*achievement__point*/
.achievement__point {
  padding: 0;
}

.achievement__point__body {
  padding: 72px 0;
}

.achievement__point__container {
  background: #fff;
  border-radius: 18px;
  margin-top: 18px;
  padding: 45px 72px;
}

.achievement__point__list__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  margin-top: 36px;
}

.achievement__point__list {
  flex-basis: 32%;
  margin:0 auto;
  background: #fff;
  border-radius:18px 18px;
}

  .achievement__point__list:nth-child(1) {
    margin-left: 0;
  }

  .achievement__point__list:nth-child(3) {
    margin-right: 0;
  }

.achievement__point__img,
.achievement__point__img img {
  text-align: center;
  margin: auto;
  border-radius: 18px 18px 0 0;
}

.achievement__point__num {
  text-align: center;
  position: relative;
  margin: auto;
  margin-top: -63px;
  margin-bottom: 18px;
}

.achievement__point__num span {
  display: block;
  text-align: center;
  margin: auto;
  font-weight: 400;
  font-style: italic;
  font-size: 36px;
  line-height: 1.890;
  letter-spacing: 0;
  border-radius: 100%;
  width:72px;
  height: 72px;
  background-color:  var(--color2);
  color:  var(--color1);
}

.achievement__point__text {
  padding: 24px 36px;
  border-top: 5px solid var(--color2);
}

.achievement__point__title {
  text-align: center;
  margin:9px auto 18px;
}

.achievement__point__title span {
  display: block;
  font-size: 27px;
  line-height: 1.34567890;
  font-weight: bold;
  text-align: center;
  margin: auto;
}

.achievement__point__text p {
  margin-top:9px;
  text-align: justify;
}

@media only screen and (max-width:767px) {
  .achievement__point__body {
    padding: calc(72px / 1.5) 0;
  }

  .achievement__point__container {
    margin-top: calc(18px / 1.5);
    padding: calc(45px / 1.5) 18px;
  }

  .achievement__point__list__container {
    margin-top: calc(36px / 1.5);
  }

  .achievement__point__list {
    flex-basis: 100%;
    margin-top: 2%;
    margin-bottom:2%;
    border-radius:18px 18px;
  }

    .achievement__point__list:nth-child(1),
    .achievement__point__list:nth-child(3) {
      margin-left: auto;
      margin-right:auto;
    }

  .achievement__point__num {
    margin-top:calc(-63px / 1.25);
    margin-bottom: calc(18px / 1.5);
  }

  .achievement__point__num span {
    font-size: calc(36px / 1.36);
    width:calc(72px / 1.5);
    height:calc(72px / 1.5);
  }

  .achievement__point__text {
    padding: calc(24px / 1) 
  }

  .achievement__point__title {
    margin:calc(9px / 1.5) auto calc(18px / 1.5);
  }

  .achievement__point__title span {
    font-size: calc(27px / 1.27);
  }

  .achievement__point__text p {
    margin-top:calc(9px / 1.5);
  }
}


/* ----------------------------------------------------------

Achievement Setting

---------------------------------------------------------- */
/*model__detail*/
.model__detail {
  padding: 36px 0 0;
  margin: 18px auto auto;
}

.model__detail__head ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: top;
}

.model__detail__head ul li {
  display: block;
  flex-basis: 50%;
  cursor: pointer;
}

.model__detail__head ul li {
  border-radius: 18px 18px 0 0;
  display: block;
  flex-basis: 50%;
  cursor: pointer;
  text-align: center;
  margin: auto auto -2px;
  padding:18px 27px 27px;
  position: relative;
  z-index: 123;
}

  .model__detail__head ul li.select.model__menu1 {
    background: #fffaee;
    border: 2px solid #fabe0d;
    border-bottom: none;
  }

  .model__detail__head ul li.select.model__menu2 {
    background: #f3f4f9;
    border: 2px solid #122a88;
    border-bottom: none;
  }

.model__detail__head ul li span {
  display: inline-block;
  vertical-align: middle;
}

  .model__detail__head ul li span.img img {
    width: calc(152px / 2);
  }

  .model__detail__head ul li span.ja {
    text-align: center;
    margin: auto;
    font-weight: bold;
    font-size: 24px;
  }

.model__detail__head ul li a {
  text-decoration: none;
}

.model__content {
  padding: 45px;
  border: 2px solid transparent;
  position: relative;
  z-index: 15;
}

  .model__content1 .model__content {
    background: #fffaee;
    border: 2px solid #fabe0d;
    border-radius: 0 18px 18px 18px ;
  }

  .model__content2 .model__content {
    background: #f3f4f9;
    border: 2px solid #122a88;
    border-radius: 18px 0 18px 18px ;
  }

.model__content2 {
  display: none;
}


@media only screen and (max-width:767px) {
  .model__detail {
    padding: calc(36px / 1.5) 0 0;
    width: calc(100% + 2em);
    box-sizing: border-box;
    margin: calc(18px / 1.5) -1em auto;
  }

  .model__detail__head ul li {
    flex-basis: 50%;
  }

  .model__detail__head ul li {
    border-radius: calc(18px / 1.5) calc(18px / 1.5) 0 0;
    display: block;
    flex-basis: 50%;
    margin: auto auto -2px;
    padding:calc(18px / 2) calc(27px / 1.5) calc(27px / 2);
  }

  .model__detail__head ul li span {
    display: block;
  }

  .model__detail__head ul li span.img img {
    width: calc(152px / 3);
    display: block;
    margin: 2.25px auto;
    text-align: center;
  }

  .model__detail__head ul li span.ja {
    font-size: calc(24px / 1.3);
    line-height: 1.56789;
  }

  .model__content {
    padding: calc(45px / 1.5) 18px calc(45px / 2) ;
  }

  .model__content1 .model__content {
    border-radius: 0 calc(18px / 1.5) calc(18px / 1.5) calc(18px / 1.5) ;
  }

  .model__content2 .model__content {
    border-radius: calc(18px / 1.5) 0 calc(18px / 1.5) calc(18px / 1.5) ;
  }

}

/*model__detail*/
.model__title {
  text-align: center;
  margin:  auto;
}

.model__title span {
  display: block;
  text-align: center;
  font-size: 27px;
  font-weight: bold;
  margin:  18px auto;
}

/*model__detail*/
.model__detail__container {
  background:var(--color1);
  padding:27px 45px;
  margin: 45px auto;
  border-radius: 27px;
}

.model__subtitle {
  text-align: center;
  margin:  auto;
}

.model__subtitle span {
  display: block;
  text-align: center;
  font-size: 24px;
  line-height: 1.6789;
  font-weight: bold;
  margin: 18px auto;
}

.model__detail__table {
  margin: 18px auto ;
}

.model__detail__table table {
  width: 100%;
  border-collapse: collapse;
  padding: 0;
  margin: 0;
}

.model__detail__table table thead th ,
.model__detail__table table tbody th ,
.model__detail__table table tbody td {
  padding: 9px 18px;
  line-height: 1.789;
}

.model__detail__table table thead th {
  text-align: center;
  font-weight: 500;
  background-color:#fdebb6;
}

  .model__detail__table.table1 table thead th {
    background-color:#e8f1f8;
  }

  .model__detail__table.table2 table thead th,
  .model__detail__table.table3 table thead th {
    background-color:#fdebb6;
  }

.model__detail__table table thead th  {
  border-bottom:3px solid #000;
}

.model__detail__table table tbody th ,
.model__detail__table table tbody td {
  border-bottom: 1px solid #aaa;
}

  .model__detail__table.table1 table tbody th {
    width: 30%;
  }

  .model__detail__table.table2 table tbody th {
    width: 20%;
  }

  .model__detail__table table tbody td.left {
    text-align: left;
  }

  .model__detail__table table tbody td.center {
    text-align: center;
  }

@media only screen and (max-width:767px) {
  .model__title span {
    font-size: calc(27px / 1.32);
    margin:calc(18px / 1.5) auto;
    line-height: 1.56789;
  }

  .model__detail__container {
    padding:calc(27px / 1.5) 18px;
    margin: calc(45px / 1.5)  auto;
    border-radius: calc(27px / 1.5) ;
  }

  .model__subtitle span {
    font-size: calc(24px / 1.3);
    margin: calc(18px / 1.5) auto;
    line-height: 1.56789;
  }

  .model__detail__table {
    margin: calc(18px / 1.5) auto ;
  }

  .model__detail__table table thead th ,
  .model__detail__table table tbody th ,
  .model__detail__table table tbody td {
    padding: calc(9px / 1.5) calc(18px / 1.5);
  }

  .model__detail__table table thead th  {
    border-bottom:calc(3px / 1.5) solid #000;
  }

  .model__detail__table.table1 table tbody th {
    width: 30%;
  }

  .model__detail__table.table2 table tbody th {
    width: 20%;
  }

}



/* ----------------------------------------------------------

Review Setting

---------------------------------------------------------- */
/*review__menu*/
.review__menu {
  padding: 54px 0 0;
  margin:  auto auto -18px;
  position: relative;
  text-align: center;
}

.review__menu__list {
  display: flex;
  flex-wrap:wrap;
  justify-content:center ;
  align-items: top;
}

.review__menu__list li {
  margin: 0 9px;
}

.review__menu__list li a {
  display: block;
  text-decoration: none;
  text-align: center;
  border: 1px solid var(--color2);
  background-color: #fff;
  color: #245993;
  padding: 7.25px 72px;
  font-size: 15px;
  font-weight: bold;
  border-radius: 9px;
  line-height: 1.789;
}

  .review__menu__list li.default a ,
  .review__menu__list li.active a ,
  .review__menu__list li a:hover,
  .review__menu__list li a:focus {
    border: 1px solid var(--color2);
    background-color: var(--color2);
    color: var(--color1);
    opacity: 1;
  }

@media only screen and (max-width:767px) {
  .review__menu {
    padding: calc(72px/2) 18px 0;
    margin:  auto auto -9px;
  }

  .review__menu__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: top;
  }

  .review__menu__list li {
    margin: 1% auto;
    flex-basis: 100%;
  }

  .review__menu__list li a {
    padding: calc(9px / 1.5) ;
    font-size: calc(14px / 1.14);
  }

}

/*review*/
.section.review {
  padding-bottom: 0;
}

.review__container {
  padding: 90px 0 calc(90px + 45px);
  margin-top: 45px;
}

.review__detail {
  border-radius: 18px;
  background: #fff;
  padding:54px 45px;
  margin-bottom: 27px;
}

  .review__detail:nth-last-child(1),
  .review__detail:last-of-type {
    margin-bottom: 0;
  }

.review__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
}

.review__img {
  text-align: center;
  margin: 0 auto;
  flex-basis:15%;
}

.review__img img {
  max-width: 124px;
  border-radius: 100%;
  text-align: center;
  margin:auto auto 9px;
}

.review__img span {
  display: block;
  text-align: center;
  line-height: 1.56789;
  font-size: 15px;
}

.review__img span strong {
  font-size: 17px;
  display: block;
}

.review__text {
  flex-basis: 80%;
  margin-left: 5%;
}

.review__title {
  text-align: left;
  margin-bottom: 18px;
}

.review__title span.ja {
  display: block;
  text-align: left;
  font-weight: 900;
  font-size:22.5px;
}

.review__text p {
  margin-bottom: 27px;
}

.review__dl {
  border-top: 1px dotted #aaa;
  margin-bottom: 27px;
}

.review__dl dl {
  border-bottom: 1px dotted #aaa;
  padding: 18px 0;
}

.review__dl dl dt {
  font-size: 15px;
  line-height: 1.789;
  font-weight: 600;
  color: #b2b2b2;
}

.review__dl dl dd {
  line-height: 1.789;
}

.review__voice {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 9px 0;
}

.review__voice__title span.ja {
  background: var(--color2);
  color:var(--color1);
  font-size: 17px;
  padding: 9px 45px 9px 27px;
  line-height: 1;
  font-weight: bold;
  clip-path: polygon(85% 0, 100% 50%, 85% 100%, 0 100%, 0 0);
}

.review__voice__text {
  margin-left: 13.5px;
  font-weight: 700;
  font-size:22.5px;
}

@media only screen and (max-width:767px) {
  .review__container {
    padding: calc(90px / 3) 0 ;
    margin-top:calc(45px / 3)
  }

  .review__detail {
    padding:calc(54px / 1.5) 1em;
    margin-bottom: calc(27px / 1.5);
  }

  .review__img {
    flex-basis:100%;
    margin-bottom: 18px;
  }

  .review__img img {
    max-width: calc(124px / 1.5);
    margin:auto auto calc(9px / 1.5);
  }

  .review__img span {
    font-size: calc(15px / 1.15);
  }

  .review__img span strong {
    font-size: calc(17px / 1.17);
  }

  .review__text {
    flex-basis:100%;
    margin-left: calc(5% / 1.5);
  }

  .review__title {
    margin-bottom: calc(18px / 1.5);
  }

  .review__title span.ja {
    font-size:calc(22.5px / 1.225);
  }

  .review__text p {
    margin-bottom:calc(27px / 1.5);
  }

  .review__dl {
    margin-bottom: calc(27px / 1.5);
  }

  .review__dl dl {
    padding: calc(18px / 1.5) 0;
  }

  .review__dl dl dt {
    font-size: calc(15px / 1.15);
  }

  .review__voice {
    padding: calc(9px / 1.5) 0;
  }

  .review__voice__title span.ja {
    font-size: calc(17px / 1.17);
    display: block;
    margin-bottom: 4.5px;
    padding: calc(9px / 1.25) calc(45px / 1.5) calc(9px / 1.25) calc(27px / 1.5);
    clip-path: polygon(90% 0, 100% 50%, 90% 100%, 0 100%, 0 0);
  }

  .review__voice__text {
    margin-left:0;
    font-size:calc(22.5px / 1.225);
  }

}

/* ----------------------------------------------------------

Column Setting

---------------------------------------------------------- */
.column__menu {
  padding:90px 0 0;
  margin:  auto auto -40.5px;
  position: relative;
  text-align: center;
}

.column__menu__list {
  display: flex;
  flex-wrap:wrap;
  justify-content:center ;
  align-items: top;
  position: relative;
  z-index: 3456;
}

.column__menu__list li {
  margin: 0 9px;
}

.column__menu__list li a {
  display: block;
  text-decoration: none;
  text-align: center;
  border: 1px solid var(--color2);
  background-color: #fff;
  color: #245993;
  font-weight: bold;
  padding: 7.25px 54px;
  font-size: 15px;
  border-radius: 9px;
  line-height: 1.789;
}

  .column__menu__list li.default a ,
  .column__menu__list li.active a ,
  .column__menu__list li a:hover,
  .column__menu__list li a:focus {
    border: 1px solid var(--color2);
    background-color: var(--color2);
    color: var(--color1);
    opacity: 1;
  }

@media only screen and (max-width:767px) {
  .column__menu {
    padding: calc(72px/2) 18px 0;
    margin:  auto auto -9px;
  }

  .column__menu__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: top;
  }

  .column__menu__list li {
    margin:1% auto;
    flex-basis: 100%;
  }

  .column__menu__list li a {
    padding: calc(9px / 1.5) ;
    font-size: calc(14px / 1.14);
  }

}


/*column__list*/
.column__list__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: top;
  padding-bottom: 45px;
}

.column__list {
  flex-basis: 32%;
  margin:1.5% 1%;
  position: relative;
}

  .column__list:nth-child(3n-2) {
    margin-left: 0;
  }

  .column__list:nth-child(3n) {
    margin-right: 0;
  }

.column__list span.cat a {
  display: inline-block;
  position: absolute;
  text-decoration: none;
  background-color:var(--color2);
  top: 9px;
  left: 9px;
  z-index: 123;
  display: block;
  text-decoration: none;
  text-align: center;
  color: var(--color1);
  font-size: 13px;
  line-height: 1.345678;
  padding: 4px 18px;
}

.column__list span.cat a:hover ,
.column__list span.cat a:focus {
  color: var(--color2);
  background-color:var(--color1);
}

.column__list a {
  display: block;
  text-decoration: none;
}

.column__list p {
  font-weight: 500;
}

.column__list .column__img {
  margin-bottom: 9px;
}

.recent__success .column__list .column__img img ,
.success .column__list .column__img img {
  border: 1px solid rgba(18, 42, 136, 0.250);
  border-radius: 18px;
  box-sizing: border-box;
  object-fit: cover;
  width: 100%;
  height:230px;
}

@media only screen and (max-width:767px) {
  .column__list {
    flex-basis: 100%;
    margin:18px auto;
  }

  .column__list:nth-child(3n-2) ,
  .column__list:nth-child(3n) {
    margin-left: auto;
    margin-right:auto;
  }

  .column__list span.cat a {
    top: 9px;
    left: 9px;
    font-size: 12px;
    padding: 4px 18px;
  }

  .column__list .column__img {
    margin-bottom:calc(9px /1.5)
  }

}

/* ----------------------------------------------------------

Access Setting

---------------------------------------------------------- */
/*access*/
.access__container {
  display: flex;
  flex-wrap:wrap;
  justify-content: space-between;
  align-items: center;
  padding: 36px 0 0;
}

.access__map {
  flex-basis: 52.5%;
  margin-bottom: 18px;
  border-radius: 18px;
}

.access__map iframe {
  width: 100%;
  height:560px;
  border-radius: 18px;
}

.access__map__link {
  display:block;
  text-align: left;
  margin-top: 9px;
}

.access__text {
  flex-basis: 42.5%;
  margin-left: 5%;
}

.access__title {
  text-align: left;
  font-size: 18px;
  font-weight: bold;
}

.access__list  {
  border-top: 2px solid #222;
  margin-top: 18px;
  padding-top: 18px;
}

.access__list dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: top;
  padding: 20.25px 0;
  background-image : linear-gradient(to right, #000 2px, transparent 2px);
  background-size: 10px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}

  .access__list dl:nth-last-child(1) {
    background-image:none;
  }

.access__list dl dt {
  flex-basis: 25%;
  font-size: 17px;
  font-weight: bold;
}

.access__list dl dd {
  font-size: 17px;
  flex-basis: 75%;
}

.access__map__link a {
  text-decoration: underline;
}

@media only screen and (max-width:767px) {
  .access__container {
    padding:calc(36px /1.5) 0 0;
  }

  .access__map {
    flex-basis:100%;
    order: 2;
    margin-bottom: calc(18px /1.5);
  }

  .access__map iframe {
    width: 100%;
    height:calc(560px / 2);
  }

  .access__map__link {
    margin-top: calc(9px /1.5);
  }

  .access__text {
    order: 1;
    flex-basis: 100%;
    margin-left: auto;
    margin-bottom: 18px;
  }

  .access__title {
    font-size: calc(18px * 1.1);
  }

  .access__list  {
    margin-top: calc(18px /1.5);
    padding-top: calc(18px /1.5);
  }

  .access__list dl {
    padding: calc(20.25px /1.5) 0;
    background-image : linear-gradient(to right, #000 1px, transparent 1px);
    background-size: 5px 1px;
  }

  .access__list dl dt ,
  .access__list dl dd {
    flex-basis: 100%;
    font-size: calc(17px /1.17);
  }

}

/*access__root*/
.access__root__container {
  display: flex;
  flex-wrap:wrap;
  justify-content: space-between;
  align-items: top;
  padding: 45px 0 0 ;
}

.access__root__left {
  flex-basis:60%;
}

.access__root__right {
  flex-basis:36%;
}

.access__root__left img,
.access__root__right img {
  border-radius: 18px;
  margin-bottom: 4.5px;
}

.access__root__right li {
  margin-bottom: 18px;
}

.access__root__container span {
  display: block;
}

.access__root__container span.text {
  font-size: 15px;
}

@media only screen and (max-width:767px) {
  .access__root__container {
    padding: calc(45px / 1.5) 0 calc(45px / 45);
  }

  .access__root__left {
    flex-basis:100%;
    margin-bottom: 18px;
  }

  .access__root__right {
    flex-basis:100%;
  }

  .access__root__left img,
  .access__root__right img {
    margin-bottom: calc(4.5px / 1.5) ;
  }

  .access__root__right li {
    margin-bottom: calc(18px / 1);
  }

  .access__root__container span.text {
    font-size: calc(15px / 1.1);
  }
}


/* ----------------------------------------------------------

FAQ Setting

---------------------------------------------------------- */
.section.faq {
  padding-bottom:45px;
}

.faq__main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  position: relative;
}

.faq__nav {
  order: 1;
  flex-basis: 350px;/*
  width: 100%;
  height: 100%;
  position: sticky;
  top:100px;*/
}

.faq__content {
  order: 2;
  flex-basis: calc(100% - 395px);
}

@media only screen and (max-width: 767px) {
  .section.faq {
    padding-bottom:calc(45px / 1.5);
  }

  .faq__nav {
    order:2;
    display: none;
    flex-basis: 100%
  }

  .faq__content {
    order: 1;
    flex-basis: 100%
  }
}


/*faq__nav*/
.faq__nav__container {
  border:1px solid #222;
  border-radius: 9px;
  box-sizing: border-box;
  padding:36px 30.5px;
}

.faq__nav__title {
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 9px;
}

.faq__nav__title a {
  text-decoration: none;
}

.faq__nav__list   {
  margin-bottom: 36px;
}

  .faq__nav__list:nth-last-child(1) ,
  .faq__nav__list:last-of-type {
    margin-bottom: 0;
  }

.faq__nav__list ul  {
  margin-left: 1em;
}

.faq__nav__list ul li {
  list-style-type: disc;
  font-size: 15.5px;
  margin: 4.5px 0;
}

.faq__nav__list ul li a {
  text-decoration: underline;
}

@media only screen and (max-width: 767px) {
  .faq__nav__container {
    padding:calc(36px / 1.5) 18px;
  }

  .faq__nav__title {
    font-size: calc(17px / 1.1);
    margin-bottom: calc(9px / 1.5);
  }

  .faq__nav__list   {
    margin-bottom: calc(36px / 1.5);
  }

  .faq__nav__list ul  {
    margin-left: calc(1em * 1.15);
  }

  .faq__nav__list ul li {
    font-size: calc(15.5px / 1.155);
    margin: calc(4.5px / 1.5) 0;
  }

}


/*faq__list*/
.faq__container {
  padding-bottom: 90px;
}

  .faq__container:nth-last-child(1) ,
  .faq__container:last-of-type {
    padding-bottom: 0;
  }

.faq__list__container {
  padding: 0 0;
  margin-top: 36px;
}

.faq__list dl {
  margin: 18px 0;
  position: relative;
}

.faq__list dl dt ,
.faq__list dl dd {
  position: relative;
  display: flex;
  flex-wrap:wrap;
  justify-content: flex-start;
  align-items: top;
  border-radius: 9px;
}

  .faq__list dl dt {
    background-color: var(--color4);
    padding:24px 36px 24px 18px;
    line-height: 1.6789;
  }

  .faq__list dl dd {
    background-color:var(--color1);
    padding:24px 0 24px 18px;
  }

.faq__list dl dt span.ja2 ,
.faq__list dl dd span.ja2 {
  flex-basis: 40px;
  width: 30px;
  height: 30px;
  position: relative;
  padding: 5px 0;
  text-align: center;
  line-height: 1.3456789;
  font-size:22.5px ;
  font-weight: 600;
}

  .faq__list dl dt span.ja2 {
    color: var(--color2);
    line-height:1 ;
  }

  .faq__list dl dd span.ja2 {
    color:#fabe0d
  }

.faq__list dl dt span.ja ,
.faq__list dl dd span.ja {
  flex-basis: calc(100% - 80px);
  text-align: left;
  margin-left: 24px;
}

  .faq__list dl dt span.ja {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.56789;
  }

@media only screen and (max-width:767px) {
  .faq__container {
    padding-bottom:calc(90px / 3) 
  }

  .faq__list__container {
    margin-top:calc(36px / 36) 
  }

  .faq__list dl {
    margin: calc(18px / 1.5) 0;
  }

  .faq__list dl dt ,
  .faq__list dl dd {
    justify-content: flex-start;
    align-items: top;
  }

  .faq__list dl dt {
    padding:calc(24px / 1.5) 0 calc(24px / 2) calc(13.5px / 1.5);
  }

  .faq__list dl dd {
    padding:calc(24px / 1.5) 0 calc(24px / 2) calc(13.5px / 1.5);
  }

  .faq__list dl dt span.ja2 ,
  .faq__list dl dd span.ja2 {
    flex-basis: 40px;
    width: 30px;
    height: 30px;
    padding: 5px 0;
    font-size: calc(22.5px / 1.225);
    font-weight: 600;
  }

  .faq__list dl dt span.ja ,
  .faq__list dl dd span.ja {
    flex-basis: calc(100% - 80px);
    margin-left: calc(24px  /1.5);
  }

  .faq__list dl dt span.ja {
    font-size: calc(18px / 1.15);
  }

  .faq__list dl dd span.ja {
    text-align: justify;
  }

}


/* ----------------------------------------------------------

News Setting

---------------------------------------------------------- */
/*news__list__container*/
.news__list__inner {
  background: #fff;
  border-radius: 27px;
  padding: 45px 54px 36px;
}

.news__list__container {
  padding-bottom: 54px;
}

@media only screen and (max-width:767px) {
  .news__list__inner {
    border-radius: calc(27px / 1.5);
    padding: calc(45px / 1.5) calc(54px / 1.5) calc(36px / 1.5);
  }

  .news__list__container {
    padding-bottom: calc(54px / 1.5);
  }
}

/*news__list*/
.news__list dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px dotted #aaa;
  padding: 20.25px 0;
  text-align: left;
}

.news__list dt {
  flex-basis: 15%;
  padding-left: 9px;
  padding-right: 9px;
}

.news__list dd {
  flex-basis: 75%;
}

  .home .news__list dt {
    flex-basis: 17.5%;
  }

  .home .news__list dd {
    flex-basis: 82.5%;
  }

.news__list dd span.cat ,
.news__list dd span.text {
  display: inline-block;
  vertical-align: middle;
}

.news__list dd span.cat {
  color: var(--color1);
  min-width: 100px;
  background-color: var(--color2);
  line-height: 1.1;
  font-size: 13px;
  text-align: center;
  margin:auto;
  margin-right: 27px;
  text-align: center;
  padding: 4.5px 9px;
}

@media only screen and (max-width:767px) {
  .news__list dl {
    padding: calc(20.25px / 1.5) 0;
  }

  .news__list dt {
    flex-basis: 100%;
    padding-left: calc(9px / 1.5);
    padding-right: calc(9px / 1.5);
  }

  .news__list dd ,
  .home .news__list dt ,
  .home .news__list dd {
    flex-basis: 100%;
  }

  .news__list dd span.cat {
    color: var(--color1);
    min-width: 1px;
    background-color: var(--color2);
    line-height: 1.1;
    font-size: calc(13px / 1.1);
    margin-right: calc(27px / 3);
    padding: calc(4.5px / 1.5) calc(9px * 1.5);
  }
}

/*single-news*/
.single__date {
  display: block;
  font-size: 16px;
  line-height: 1;
  color: #939292;
  margin-top: 36px;
  margin-bottom: 36px;
}

.entry__content p {
  margin-bottom: 36px;
}

.entry__thumbnail {
  margin-bottom: 36px;
}

.entry__thumbnail img {
  width: 100%;
}

.entry__content figure {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.entry__content .wp-element-caption {
  margin: 9px 0 0 ;
  color: #666;
  font-size: smaller;
}

.entry__btn  {
  display: block;
  margin: 36px auto 18px;
  max-width: 320px;
}

.entry__btn a  {
  font-size: 16px;
}


@media only screen and (max-width:767px) {
  .single__date {
    font-size: 16px;
    margin-top: calc(36px / 1.5);
    margin-bottom:calc(36px / 1.5);
  }

  .entry__content p {
    margin-bottom:calc(36px / 1.5);
  }

  .entry__thumbnail {
    margin-bottom:calc(36px / 1.5);
  }

  .entry__content .wp-element-caption {
    margin:calc(9px / 1.5) 0 0 ;
  }

  .entry__btn  {
    margin: calc(36px / 1.5) auto calc(18px / 1.5);
    max-width: 100%;
  }

}

/*wp-pagenavi*/
.pagination {
  position: relative;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  z-index: 11111;
}

.wp-pagenavi  {
  clear:both;
  margin:27px auto 45px;
  text-align:center
}

.wp-pagenavi a, .wp-pagenavi span {
  border:1px solid var(--color2);
  color:var(--color2);
  background-color:var(--color1);
  padding:9px 18px;
  margin:0 9px;
  white-space:nowrap;
  border-radius:0;
  transition:0.2s ease-in-out;
  text-align:center;
  text-decoration:none;
}

.wp-pagenavi a:hover  {
  background-color:var(--color2);
  border-color:var(--color2);
  color:var(--color1);
}

.wp-pagenavi span.current {
  background-color:var(--color2);
  border-color:var(--color2);
  color:var(--color1);
  font-weight:bold
}

.wp-pagenavi .pages {
  border:none;
}

.wp-pagenavi .extend {
  border:none;
  padding:9px 0;
  margin:0 4.5px;
}

.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  border:none;
}

@media only screen and (max-width:767px) {
  .wp-pagenavi  {
    clear:both;
    margin:calc(27px / 1.5) auto calc(45px / 1.5)
  }

  .wp-pagenavi a, .wp-pagenavi span {
    font-size: calc(18px / 1.2);
    padding:calc(9px / 1.5) calc(18px / 1.25);
    margin:0 calc(9px  /1.5);
  } 
} 


/* ----------------------------------------------------------

Recruit Setting

---------------------------------------------------------- */
/*recruit__nav*/
.recruit__nav__list {
  margin: 54px auto 18px;
  text-align: center;
}

.recruit__nav__list li {
  display:inline-block;
  vertical-align: middle;
  margin: 0 4.5px;
  text-align: center;
}

.recruit__nav__list li a {
  padding:11.5px 72px;
}

.recruit__nav__list li a:hover,
.recruit__nav__list li a:focus  {
  color: var(--color1);
}

@media only screen and (max-width: 767px) {
  .recruit__nav__list {
    margin: calc(54px / 1.5) auto calc(18px /1.5)
  }

  .recruit__nav__list li {
    margin: 4.5px auto;
    width: 100%;
  }

  .recruit__nav__list li a {
    padding:calc(11.5px /1.5) 18px;
  }

}

/* ----------------------------------------------------------

Contact Setting

---------------------------------------------------------- */
/*form*/
.form__leed {
  text-align: center;
  margin: auto;
}

.contact__form  {
  padding: 45px 90px;
  margin-top: 54px;
}

.contact__form dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 18px ;
  border-bottom: 1px dotted #aaa;
}

.contact__form dl dt {
  flex-basis: 30%;
  font-weight: 500;
}

.contact__form dl dd {
  flex-basis: 70%;
}

@media only screen and (max-width: 767px) {
  .form__leed {
    text-align: left;
  }

  .contact__form  {
    padding: calc(45px / 2) 0.5em;
    margin-top: calc(54px / 2);
  }

  .contact__form dl {
    padding: calc(18px / 1.5) ;
  }

  .contact__form dl dt {
    flex-basis: 100%;
    padding: 9px 0 2.25px;
  }

  .contact__form dl dd {
    flex-basis: 100%;
    padding: 2.25px 0 9px;
  }
}


/*wpcf7*/
.wpcf7 input[type=text],
.wpcf7 input[type=number],
.wpcf7 input[type=email],
.wpcf7 input[type=password],
.wpcf7 input[type=date],
.wpcf7 input[type=url],
.wpcf7 input[type=tel],
.wpcf7 textarea {
  appearance:none;
  outline:none;
  border-radius: 9px;
  border:2px solid #ccc;
  padding:18px ;
  box-sizing:border-box;
  width: 75%;
  max-width: 100%;
  font-size: 18px;
}

.wpcf7 input[type=radio],
.wpcf7 input[type=checkbox] {
  transform:scale(2.0);
  margin-right: 11.25px;
}

.wpcf7 .select select {
  box-sizing:border-box;
  width: 100%;
  outline: none;
  border:none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  appearance: none;
  color: #000;
  max-width: 100%;
  padding: 18px 36px 18px 18px;
  font-size: 18px;
}

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

.wpcf7 .select {
  display: inline-block;
  position: relative;
  border-radius: 9px;
  border:2px solid #ccc;
  box-sizing:border-box;
  background: #fff;
}

.wpcf7 .select::before {
  position: absolute;
  top: 45%;
  right:9px;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #222;
  pointer-events: none;
}

::-webkit-input-placeholder {
  color:#aaa;
}
:-ms-input-placeholder {
  color:#aaa;
}
::placeholder{
  color:#aaa
}

.wpcf7-list-item {
  margin-right: 1em;
}

.wpcf7 .req {
  margin: -3px 0 0 9px ;
  display: inline-block;
  vertical-align: middle;
  background: var(--color6);
  border-radius: 4.5px;
  padding:4.5px 9px ;
  text-align: center;
  color: var(--color1);
  font-size: 12px;
  line-height: 1.2
}

.wpcf7 .form__accept {
  display: block;
  text-align: center;
  font-weight: 600;
  margin:auto;
  padding: 36px 0 0;
}

.wpcf7 .form__accept .wpcf7-list-item {
  margin:auto
}

.wpcf7 .form__submit {
  margin:auto auto ;
  text-align: center;
}

.wpcf7 .form__submit input[type=submit] {
  margin:27px auto ;
  width: 400px;
  font-size: 18px;
  padding: 18px 90px;
  text-align: center;
}

@media only screen and (max-width:767px) {
  .wpcf7 input[type=text],
  .wpcf7 input[type=number],
  .wpcf7 input[type=email],
  .wpcf7 input[type=password],
  .wpcf7 input[type=date],
  .wpcf7 input[type=url],
  .wpcf7 input[type=tel],
  .wpcf7 textarea {
    padding:calc(18px / 1.15);
    width: 100%;
    max-width: 100%;
    font-size: calc(18px / 1.15);
  }

  .wpcf7 .select  {
    width: 100%;
    max-width: 100%;
  }
  
  .wpcf7 .select select {
    width: 100%;
    max-width: 100%;
    padding: calc(18px / 1.15) calc(36px / 1.15) calc(18px / 1.15) calc(18px / 1.15);
    font-size:calc(18px / 1.15);
  }

  .wpcf7 input[type=radio],
  .wpcf7 input[type=checkbox] {
    transform:scale(1.5)
  }

  .wpcf7 .req {
    padding:4.5px 9px;
    font-size: calc(12px / 1.15);
  }

  .wpcf7 .form__accept {
    padding: calc(18px / 1.5) 0 0;
  }

  .wpcf7 .form__submit input[type=submit] {
    margin:calc(27px / 1.5) auto ;
    width: 100%;
    font-size: calc(18px / 1);
    padding: calc(18px / 1) 18px;
  }

}

/* ----------------------------------------------------------

Sitemap Setting

---------------------------------------------------------- */
/*sitemap__container*/
.sitemap__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
}

/*sitemap__list*/
.sitemap__list {
  flex-basis: 27.5%;
}

.sitemap__list li.title {
  font-weight: bold;
  border-bottom: 1px solid #000;
  padding-bottom: 9px;
  margin-bottom: 9px;
}

.sitemap__list li a  {
  text-decoration: none;
  font-size: 15px;
}

@media only screen and (max-width:767px) {
  .sitemap__list {
    margin-bottom: 36px;
  }

    .sitemap__container .sitemap__list {
      flex-basis: 100%;
    }

    .footer__sitemap__container .sitemap__list {
      flex-basis: 47.5%;
    }

  .sitemap__list li.title {
    border-bottom: 1px solid #000;
    padding-bottom: 9px;
    margin-bottom: 9px;
  }

  .sitemap__list li a  {
    font-size: calc(15px / 1.15);
  }

}


/* ----------------------------------------------------------

Error404 Setting

---------------------------------------------------------- */
.error404 .section {
  padding:90px 0 ;
}

.error404 .entry__btn  {
  text-align: center;
  margin: 36px auto 18px;
  max-width: 256px;
}

.error404 .entry__btn a {
  font-size: 16px;
}

@media only screen and (max-width:767px) {
  .error404 .section {
    padding:calc(90px /1.5) 0;
  }

  .error404 .entry__btn  {
    margin: calc(36px /1.5) auto calc(18px /1.5);
    max-width: 100%;
  }

}

/* ----------------------------------------------------------

Footer Setting

---------------------------------------------------------- */
.footer {
  position: relative;
  z-index: 67890;
  padding-bottom: 45px;
  background: #fff;
}

@media only screen and (max-width:767px) {
  .footer {
    padding-bottom:45px;
    padding-top: 45px
  }

  .home .footer {
    padding-top: 45px
  }
}


/*footer__container*/
.footer__container {
  padding: 72px 0 ;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
}

.footer__text {
  flex-basis: 30%;
}

.footer__sitemap  {
  flex-basis: 60%;
}

.footer__logo {
  max-width: 256px;
  text-align: left;
  margin:0 0 18px ;
}

.footer__text p {
  text-align: left;
  font-size: 16px;
}

.footer__copyright {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
}

.footer__copyright .copyright {
  flex-basis: 50%;
  text-align: left;
  margin:0;
  letter-spacing: 0.05em;
}

.footer__copyright .copyright address {
  font-style: normal;
  font-weight: 300;
  font-size: 13.5px;
}

.footer__copyright .link {
  flex-basis: calc(50% - 100px);
  text-align: right;
  margin-right: 100px;
}

.footer__copyright .link a {
  margin-left: 18px;
  font-style: normal;
  text-decoration: underline;
  font-size: 13.5px;
}


@media only screen and (min-width:1480px) {
  .footer__copyright .link {
    flex-basis:50%;
    margin-right: 0;
  }

}

@media only screen and (max-width:767px) {
  .footer__container {
    padding: calc(72px / 72) 0 18px;
  }

  .footer__text {
    flex-basis: 100%;
    order: 2;
  }

  .footer__sitemap  {
    flex-basis: 100%;
    order: 1;
  }

  .footer__logo {
    max-width: 198px;
    margin:27px auto ;
  }

  .footer__text p {
    text-align: center;
  }

  .footer__copyright {
    margin-bottom: 45px;
  }

  .footer__copyright .copyright {
    flex-basis: 100%;
    order: 2;
    text-align: center;
    margin:27px auto auto;
    letter-spacing: calc(0.05em /2);
  }

  .footer__copyright .copyright address {
    font-size: calc(13.5px / 1.135);
  }

  .footer__copyright .link {
    flex-basis: 100%;
    order: 1;
    margin: auto;
    text-align: center;
  }

  .footer__copyright .link a {
    margin-left: auto;
    padding: 0 9px;
    font-size: calc(13.5px / 1.1);
  }

}

/*footer__sitemap*/
.footer__sitemap__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
}

/*pagetpp*/
.pagetop {
  width: 68px;
  height: 68px;
  right: 1em;
  bottom: 1em;
  position: fixed;
}

@media only screen and (max-width:767px) {
  .pagetop {
    display: none;
  }
}

/*footer__nav__sp*/
.footer__nav__sp {
  display: none;
}

@media only screen and (max-width:767px) {
  .footer__nav__sp {
    width: 100%;
    display: block;
    position: fixed;
    bottom: 0;
    z-index: 45678!important;
    overflow-y: hidden;
    height: 60px;
  }

  .footer__nav__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-top: 1px solid var(--color2);
    align-items: center;
  }

  .footer__nav__list li.web ,
  .footer__nav__list li.tel {
    flex-basis: 42.5%;
  }

  .footer__nav__list li.pagetop__sp {
    flex-basis: 15%;
  }

  .footer__nav__list li.tel img {
    margin-right: calc(2.25px / 1.5);
    width:calc(17.5px / 1.5);
    margin-top:-2.25px
  }

  .footer__nav__list li.web img {
    width: calc(15.5px / 1.5);
    margin-top:-2.25px;
    margin-right: calc(2.25px / 1.5);
  }

  .footer__nav__list li.pagetop__sp img {
    width: calc(22.5px / 1.35);
  }

  .footer__nav__list li a {
    display: block;
    background-image: none;
    text-decoration: none;
    text-align: center;
    padding:21.5px 9px;
    border: none!important;
    border-radius: 0!important;
    line-height: 1;
  }

  .footer__nav__list li.tel a {
    display: block;
    padding:22.5px 9px;
  }

  .footer__nav__list li.pagetop__sp a {
    background: #fff;
  }

}

