@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: #0262cc;/*main*/
  --color3: #be1e2d;/*sub*/
  --color4: #4fba09;/*line*/
  --color5: #1b2560;
  --color6: #fff000;
  --color7: #eef4fb;
  --bg1: #fff;
  --bg2: #0262cc;/*main*/
  --bg3: #be1e2d;/*sub*/
  --bg4: #4fba09;/*line*/
  --bg5: #1b2560;
  --bg6: #fff000;
  --bg7: #eef4fb;
}

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: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.en__italic  {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: italic;
}


/*ul dl*/
ul,ul li  {
  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%, #fff000 60%);
}

/*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: 520px) {
  a[href^="tel:"] {
      pointer-events: none;
      cursor: default;
  }
}

@media only screen and (max-width: 520px) {
  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;
  font-size: 18px;
  border-radius:100px;
}

.btn__primary {
  background-color: var(--color2);
  border: 1px solid var(--color2);
  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);
  padding:13.5px 36px;
}

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

.btn__secondary {
  background-color: var(--color3);
  border: 1px solid var(--color3);
  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);
  padding:13.5px 36px;
}

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

.btn__tertiary {
  background-color: var(--color5);
  border: 1px solid var(--color5);
  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);
  padding:13.5px 36px;
}

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

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

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

.btn__line {
  background-color:var(--color4);
  border: 1px solid var(--color4);
  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);
  padding:13.5px 36px;
}

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

.icon__web,
.icon__line {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  margin-right: 4.5px;
}

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

  .btn__primary {
    font-size:calc(18px / 1.18);
    padding:calc(13.5px / 1) calc(36px / 2);
  }

  .btn__border {
    font-size:calc(18px / 1.18);
    padding:calc(13.5px / 1.5) calc(36px / 2);
    background-color:var(--color1);
    border: 1px solid var(--color5);
    color: var(--color5);
  }

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

  .icon__web,
  .icon__line {
    width: calc(24px / 1.25);
    margin-right: calc(4.5px / 1.5);
  }

}

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

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 table.has-fixed-layout ,
.wp-block-table table th
.wp-block-table table td,
.wp-block-table.c-responsive-table table td {
  border: 1px solid #ddd!important;
  border-collapse: collapse;
}
*/
.wp-block-table table th ,
.wp-block-table table td {
  border: 1px solid #ddd!important;
}



/*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%;
  }
}


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

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

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

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


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

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: var(--color5);
  font-weight: normal;
  font-size:16px;
  line-height:2;
  letter-spacing: 0.05em;
  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(16px / 1.1);
    line-height: 1.6789;
    -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 .container__middle,
  .container .container__narrow,
  .container .container__xnarrow,
  .container .container__xxnarrow,
  .container .container__xxxnarrow,
  .container .container__xxxxnarrow,
  .container .container__xxxxxnarrow {
    width:100%;
    max-width:100%;
    padding-left:0;
    padding-right:0;
    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;
  height: 60px;
}

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

@media only screen and (max-width:767px) {/*
  header {
    margin-bottom: 54px;
  }*/
}


/*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: space-between;
  align-items:center;
}

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

  .gnav__pc {
    text-align: center;
    margin: 0;
    flex-basis:81%;
  }

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

.topbar__web {
  width: 210px;
}

.topbar__web a span {
  display: inline-block;
  vertical-align: middle;
  font-weight: 600;
  font-size: 17.25px;
}

.topbar__web a img {
  margin-right: 2.25px;
  display: inline-block;
  vertical-align: middle;
  width: 22.5px;
  margin-top: 2.25px;
}

.topbar__web a {
  padding: 7.5px!important;
}

.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 {
  font-size: 16px;
  background-image: none;
}

@media only screen and (min-width:768px) and (max-width:1380px) {
  .topbar__logo {
    flex-basis:120px;
  }

  .topbar__menu {
    flex-basis: calc(100% - 120px);
  }

  .gnav__pc {
    flex-basis:75%;
  }

  .topbar__contact {
    flex-basis:25%;
  }

  .gnav__pc__list li {
    margin: 0 13.5px;
  }

  .gnav__pc__list li a {
    font-size: 15px;
  }

  .topbar__contact a {
    font-size: 15px;
  }

}

@media only screen and (max-width:767px) {
  .topbar {
    min-width: 1px;
    height: 54px;
    background-color:var(--color1);
  }

  .topbar__container {
    background-image: none;
    padding-top:2.5px;
    padding-bottom:2.5px;
  }

  .topbar__logo  {
    margin-top:11.5px;
    flex-basis: 100%;
  }

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

  .topbar__menu,
  .topbar__contact,
  .topbar__web,
  .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:-75%;
    bottom:0;
    width:75%;
    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.18);
    font-weight: 500;
    padding:11.5px 13.5px ;
    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:15px;
    right:18px;
    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:520px) {
  .drop__menu .dropmenu__list {
    background-color: transparent;
    position: relative;
    left: 0;
    top:0;
    visibility: visible;
    width: 100%;
    min-width: 100%;
  }

  .dropmenu__list {
    margin-top: 0!important;
    padding-top:0!important;
  } 
  
  .dropmenu__list li {
    display: block!important;
    text-align: left!important;
    margin:  0!important;
    border-bottom:1px solid rgba(255,255,255,0.25);
  }

    nav.gnav__sp .inner .dropmenu__list li a {
      border-bottom:none;
    }
}

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

.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 ;
  */
}

@media only screen and (max-width:767px) {
}

/*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;
}

.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__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.35);/*
    margin-top: 63px;*/
    z-index: -1!important;
    background-size: cover!important;
  }

  .page__header__container {
    width: 100%;
    padding-left: 1em;
    padding-right: 1em;
    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);
}

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

/*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);
}

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

/*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;
}

.section__leed.left {
  text-align: left;
}

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

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

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

}

/*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.15)
  }

}

/*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;
  }

}



/*cover*/
.cover__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.cover__head:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.50);
  mix-blend-mode: multiply;
  z-index: 1;
}

.cover__header {
  flex-basis: 100%;
  padding: calc(90px + 45px) 0;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 234;
}

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

.cover__head__title span.ja {
  display: block;
  text-align: center;
  margin: auto;
  font-size: 40.5px;
  font-weight: bold;
  color: #fff;
}

.cover__head p {
  display: block;
  text-align: center;
  margin: auto;
  font-size: 18px;
  color: #fff;
}

@media only screen and (max-width:767px) {
}




/*common__difference*/
.common__difference__leed {
  text-align: center;
}

.common__difference__contaier {
  background: var(--color1);
  padding: 54px 72px;
  margin-top: 36px;
}

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

.common__difference__btn {
  text-align: center;
  margin: 45px auto auto;
  max-width: 400px;
}

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

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

}


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

CTA Setting

---------------------------------------------------------- */
/*header__cta*/
.header__cta {
  padding: 63px 0 72px;
}

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

.header__cta__title span  {
  display: block;
  color: #fff;
  font-weight: bold;
  line-height: 1.5678909;
  font-size:36px
}

.header__cta__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 27px auto auto ;
}

.header__cta__list li {
  flex-basis: 48%;
}

.header__cta__btn {
  text-align: center;
  margin: 27px auto auto ;
  max-width: 540px;
}

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

  .header__cta__title span  {
    font-size:calc(36px / 1.5)
  }

  .header__cta__list {
    margin: calc(27px / 1.5) auto auto ;
  }

  .header__cta__list li {
    flex-basis: 100%;
  }

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

}


/*common__cta*/
.common__cta {
  background-image: url(../img/bg1.png);
  background-color: var(--color7);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100%;
  padding: 90px 0 45px;
}

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

.common__cta__main {
  margin-bottom: 25px;
}

.common__cta__title {
  background-color: var(--color5);
  padding: 18px 45px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

.common__cta__title .icon img {
  text-align: left;
}

  .common__cta__main .common__cta__title .icon img {
    width: 100px;
    margin-right: 18px;
  }

  .common__cta__sub .common__cta__title .icon img {
    width: calc(118px / 1.57);
    margin-right: 9px;
  }

.common__cta__title .title {
  text-align: left;
  color: #fff;
  display: block;
  font-weight: bold;
}

  .common__cta__main .common__cta__title .title {
    font-size: 36px;
  }

  .common__cta__sub .common__cta__title .title {
    font-size: 22.5px;
  }

.common__cta__list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  justify-content: flex-start;
  align-items: center;
  background-color: #fff;
}

.common__cta__main .common__cta__text {
  flex-basis: 67.5%;
  padding:36px 54px;
}

.common__cta__main .common__cta__img {
  position: absolute;
  right: 90px;
  top: -81px;
}

  .home__common__cta .common__cta__main .common__cta__img {
    top: -72px;
  }

.common__cta__main .common__cta__img img {
  width: 220px;
  transform: rotate(5deg);
}

  .home__common__cta .common__cta__main .common__cta__img img {
    width: 260px;
  }

.common__cta__main__btn {
  margin: 22.5px 0 0;
  text-align: left;
  max-width: 380px;
}

.common__cta__main__btn a {
  font-size: 17px;
  padding: 13.5px;
}

@media only screen and (max-width:767px) {
  .common__cta {
    background-image: url(../img/bg1.png);
    padding: calc(90px / 1.5) 0 calc(45px / 1.5);
  }

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

  .common__cta__main {
    margin-bottom: calc(25px / 1.5);
  }

  .common__cta__title {
    padding: calc(18px / 1.5) 18px;
  }

  .common__cta__main .common__cta__title .icon ,
  .common__cta__main .common__cta__title .icon img {
    width: calc(118px / 1.5);
    margin:auto;
    text-align: center;
  }

  .common__cta__sub .common__cta__title .icon img {
    width: calc(118px / 2);
    margin-right: calc(9px / 1.5);
  }

  .common__cta__main .common__cta__title .title {
    font-size: calc(36px / 1.65);
    line-height: 1.567890;
    text-align: center;
    margin: auto;
  }

  .common__cta__sub .common__cta__title .title {
    font-size: calc(22.5px / 1.3);
  }

  .common__cta__main .common__cta__text {
    flex-basis: 100%;
    order: 2;
    padding:calc(36px / 1.5) 9px calc(36px / 2.5);
    text-align: justify;
  }

  .common__cta__main .common__cta__img {
    right:auto;
    position: relative;
    margin: auto;
    flex-basis: 100%;
    order: 1;
    text-align: center;
    top: 0;
    padding-top: 36px;
  }

  .home__common__cta .common__cta__main .common__cta__img {
    top: 0;
  }

  .common__cta__main .common__cta__img img ,
  .home__common__cta .common__cta__main .common__cta__img img {
    width: 198px;
    text-align: center;
    margin: auto;
    transform: rotate(5deg);
  }

  .common__cta__main__btn {
    margin: calc(22.5px / 1.5) 0 0;
    max-width: 100%;
  }

  .common__cta__main__btn a {
    font-size: calc(17px / 1.17);
    padding: calc(13.5px / 1.5)
  }

}

/*common__cta__sub*/
.common__cta__sub {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}

.common__cta__sublist {
  flex-basis: 32%;
  margin: 0 1%;
  background-color: var(--color1);
}

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

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

.common__cta__sub .common__cta__img {
  margin-bottom: 18px;
}

.common__cta__sub .common__cta__text {
  padding: 18px 27px 36px;
}

@media only screen and (max-width:767px) {
  .common__cta__sublist {
    flex-basis: 100%;
    margin: 1% auto;
  }

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

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

  .common__cta__sub .common__cta__text {
    padding: calc(18px /1.5) 18px calc(36px /1.5);
  }

}


/*common__cta__btn*/
.common__cta__btn {
  text-align: center;
  margin: 36px auto 18px;
  max-width: 450px;
}

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

}



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

Home Setting

---------------------------------------------------------- */
/*home__about*/
.home__about {
  padding: 0;
}

.home__about__head {
  padding: 0 ;
  margin: 0;
}

.home__about__body {
  margin:calc(-180px - 45px) auto auto;
  text-align: center;
  padding: 72px;
  background-color: #fff;
}

.home__about__body p {
  text-align: justify;
}

@media only screen and (max-width:767px) {
  .home__about__body {
    margin:calc(calc(-180px - 45px)/ 5) auto auto;
    padding: calc(72px / 2) 18px;
  }
}


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

.home__news__container {
  padding:18px 0 0 ;
  background: #fff;
}

.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(18px / 1.5) 0 0 ;
  }

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



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

.home__feature__container {
  margin-top:36px;
}

.home__feature__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 2% 0;
}

.home__feature__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  z-index:1;
}

.home__feature__img {
  flex-basis: 50%;
}

.home__feature__text {
  flex-basis: 50%;
  padding: 0 54px;
}

  .home__feature__list:nth-child(odd) .home__feature__img {
    order: 1;
  }

  .home__feature__list:nth-child(odd) .home__feature__text {
    order: 2;
  }

  .home__feature__list:nth-child(even) .home__feature__img {
    order: 2;
  }

  .home__feature__list:nth-child(even) .home__feature__text {
    order:1
  }

.home__feature__title {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid #000;
  padding: 0 0 13.5px;
  margin-bottom: 27px;
}

.home__feature__title .num {
  flex-basis: 25%;
}

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

.home__feature__title .num .en {
  font-size: 81px;
  line-height: 1;
  font-weight: bold;
  color: var(--color2);
  font-style: italic;
}

.home__feature__title .title .ja {
  font-size: 30px;
  line-height: 1.123456789;
  font-weight: bold;
}

@media only screen and (max-width:767px) {
  .home__feature {
    padding-bottom: 36px;
  }

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

  .home__feature__list {
    margin: 13.5px 0;
  }

  .home__feature__img {
    flex-basis: 100%;
  }

  .home__feature__text {
    flex-basis: 100%;
    padding:27px 18px;
  }

    .home__feature__list:nth-child(odd) .home__feature__img ,
    .home__feature__list:nth-child(even) .home__feature__img {
      order: 2;
    }

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

  .home__feature__title {
    border-bottom: 1px solid #000;
    padding: 0 0 calc(13.5px / 1.5);
    margin-bottom: calc(27px / 1.5);;
  }

  .home__feature__title .num {
    flex-basis: 25%;
  }

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

  .home__feature__title .num .en {
    font-size: calc(81px / 1.81);
  }

  .home__feature__title .title .ja {
    font-size: calc(30px / 1.35);
    line-height: 1.34567890;
  }

}

/*home__okayama*/
.home__okayama {
  background-image: url(../img/home__okayama__pc.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  padding:90px 0;
  position: relative;
}

.home__okayama__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding:54px 90px;;
  background-color:rgba(255, 255, 255, 0.9);
}

.home__okayama__text {
  flex-basis: 45%;
}

.home__okayama__img {
  flex-basis: 45%;
}

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

.home__okayama__title span {
  display: block;
  font-weight: bold;
  font-size: 30px;
  text-align: left;
}

.home__okayama__btn {
  margin: 36px 0 0;
  text-align: left;
  max-width: 300px;
}

.home__okayama__btn a {
  padding: 9px!important;
}

@media only screen and (max-width:767px) {
  .home__okayama {
    background-image: url(../img/home__okayama__sp.jpg);
    background-size: cover;
    padding:calc(90px /1.5) 0;
  }

  .home__okayama__container {
    padding:calc(54px / 2) 18px;;
  }

  .home__okayama__text,
  .home__okayama__img {
    flex-basis: 100%;
  }

  .home__okayama__img {
    order: 1;
  }

  .home__okayama__text {
    order:2;
    margin-top: 24px;
  }

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

  .home__okayama__title span {
    font-size: calc(30px / 1.30);;
    margin: auto;
    line-height: 1.4567890;
    text-align: center;
  }

  .home__okayama__btn {
    margin: calc(36px / 2) 0 0;
    max-width: 100%;
  }

  .home__okayama__btn a {
    padding: calc(9px / 1.5)!important;
  }
}



/*home__media*/
.home__media__container {
  padding: 36px 0 0 ;
  margin: auto;
}

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

.home__media__list li {
  flex-basis: 24%;
}

.home__media__list li img {
  margin-bottom: 9px;
}

.home__media__list li span {
  display:block;
  font-size: 15px;
  text-align: left;
  line-height: 1.56789;
  margin: 0;
}

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

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

  .home__media__list li {
    flex-basis: 46%;
    margin:2% ;
  }

  .home__media__list li img {
    margin-bottom: calc(9px /1.5);
  }

  .home__media__list li span {
    font-size: calc(15px / 1.15);
  }

}

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

Plan Setting

---------------------------------------------------------- */
/*plan__detail*/
.plan__detail__about {
  padding-bottom: 72px;
}

  .platinum .plan__detail__about {
    background-color: rgba(232, 232,232,1);
    color: #000;
  }

.plan__detail__container {
  margin-top:36px;
}

.plan__detail__list {
  background-color: var(--color1);
  padding: 54px 72px 45px;
  margin: 27px 0 ;
}

.plan__detail__title {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

.plan__detail__num {
  flex-basis: 10%;
}

.plan__detail__title .title {
  flex-basis: 90%;
  border-bottom: 1px solid #000;
  padding-bottom: 4.5px;
}

.plan__detail__num span.en {
  display: block;
  line-height: 1;
  text-align: left;
  margin: 0;
  font-weight: 800;
  font-size: 72px;
  color: var(--color2);
  font-style: italic;
}

  .platinum .plan__detail__num span.en {
    color: var(--color3);
  }

.plan__detail__title .title span {
  line-height: 1;
  text-align: left;
  margin: 0;
  font-weight: bold;
  font-size: 27px;
  color: var(--color5);
}

  .platinum .plan__detail__title .title span {
    color: #000;
  }

.plan__detail__body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  padding: 13.5px 0;
}

.plan__detail__img {
  flex-basis: 40%;
}

.plan__detail__text {
  flex-basis:55%;
}

  .plan__detail__list:nth-child(odd) .plan__detail__img {
    order:2;
  }

  .plan__detail__list:nth-child(odd) .plan__detail__text {
    order: 1;
  }

  .plan__detail__list:nth-child(even) .plan__detail__img {
    order:1;
  }

  .plan__detail__list:nth-child(even) .plan__detail__text {
    order:2;
  }

.plan__detail__text p {
  text-align: justify;
  line-height:2
}

.plan__detail__check ,
.plan__detail__check2 {
  margin-top:27px;
  background-color: var(--color7);
  padding: 18px 27px;
}

  .platinum .plan__detail__check {
    background-color: rgba(232, 232,232, 0.750);
  }

  .plan__detail__check2 {
    margin-top:13.5px;
  }

.plan__detail__check li {
  font-size: 18px;
  font-weight: bold;
  background-image: url(../img/icon__check1.png);
  background-size: 19px;
  background-repeat: no-repeat;
  font-weight: bold;
  background-position: 0 11px;
  padding-left: 27px;
}

  .platinum .plan__detail__check li {
    background-image: url(../img/icon__check2.png);
    background-repeat: no-repeat;
  }

.plan__detail__check2 li {
  font-size: 18px;
  font-weight: bold;
  background-image: url(../img/icon__circle3.png);
  background-size: calc(35px / 3.5);
  background-repeat: no-repeat;
  font-weight: bold;
  background-position: 9px 13.5px;
  padding-left: 36px;
}

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

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

  .plan__detail__list {
    padding: calc(54px / 1.5) 18px calc(45px / 1.5);
    margin: calc(27px / 1.5) 0 ;
  }

  .plan__detail__num {
    flex-basis: 100%;
    text-align: center;
    margin: auto;
  }

  .plan__detail__title .title {
    flex-basis: 100%;
    text-align: center;
    margin: auto;
    padding-bottom:11.5px
  }

  .plan__detail__num span.en {
    font-size: calc(72px / 1.72);
    text-align: center;
    margin: auto;
  }

  .plan__detail__title .title span {
    display: block;
    font-size: calc(27px / 1.27);
    text-align: center;
    line-height:1.34567890
  }

  .plan__detail__body {
    padding: calc(13.5px /1.5) 0;
  }

  .plan__detail__img {
    flex-basis: 100%;
    margin: 9px auto 18px;
  }

  .plan__detail__text {
    flex-basis: 100%;
  }

  .plan__detail__list:nth-child(odd) .plan__detail__img,
  .plan__detail__list:nth-child(even) .plan__detail__img {
    order:1;
  }

  .plan__detail__list:nth-child(odd) .plan__detail__text ,
  .plan__detail__list:nth-child(even) .plan__detail__text {
    order: 2;
  }

  .plan__detail__check ,
  .plan__detail__check2 {
    margin-top:calc(27px / 1.5);
    padding: calc(18px / 1.5) 18px;
  }

  .plan__detail__check2 {
    margin-top:calc(13.5px / 1.5);
  }

  .plan__detail__check li {
    font-size: calc(18px / 1.18);
    background-size: calc(19px / 1.19);;
    background-position: 0 11px;
    padding-left:calc(27px / 1.125);
  }

  .plan__detail__check2 li {
    font-size:calc(18px / 1.18);
    background-image: url(../img/icon__circle3.png);
    background-size: calc(35px / 4);
    background-position: 9px 13.5px;
    padding-left: calc(36px / 1.25);
  }

}


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

.plan__flow__img {
  text-align: center;
  margin:auto;
  padding: 36px 0 0 ;
  text-align: center;
}

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


/*plan__price*/
.plan__price {
  background-image: url(../img/bg1.png);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 100%;
  padding-bottom: 90px;
}

.plan__price__container {
  background-color: var(--color1);
  padding:63px 72px 54px;
}

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

.plan__price__text {
  padding: 9px 0 ;
}

.plan__price__text p {
  font-size: 14px;
}

.plan__price__btn {
  text-align: center;
  margin: 27px auto auto;
  max-width: 400px;
}

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

  .plan__price__container {
    padding:calc(63px / 1.5) 18px calc(54px / 1.5);
  }

  .plan__price__img {
    margin:calc(45px / 1.5) auto calc(27px / 1.5);
  }

  .plan__price__text {
    padding: calc(9px / 1.5) 0 ;
  }

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

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


/*plan__price2*/
.plan__price2__container {
  padding:  72px 72px;
  background-color: var(--color1);
  margin-top: 45px;
}

.plan__price2__container table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  padding: 0;
  border: none;
}

.plan__price2__container table thead th {
  padding:9px;
  text-align: center;
  font-size:22px ;
  font-weight: bold;
  background-color: #e5e4e2;
}

.plan__price2__container table tbody tr {
  border-bottom: 1px solid #ccc;
}

  .plan__price2__container table tbody tr:nth-last-child(1),
  .plan__price2__container table tbody tr:last-of-type {
    border-bottom: none;
  }


.plan__price2__container table tbody th,
.plan__price2__container table tbody td {
  padding: 18px 90px;
  font-size:18px ;
}

  .plan__price2__container table tbody th {
    text-align: left;
  }

  .plan__price2__container table tbody td {
    font-size: 20.25px;
    font-weight: bold;
    background-color: #f7f7f6;
  }

  .plan__price2__container table tbody td strong {
    font-size: 27px;
  }

@media only screen and (max-width: 767px) {
  .plan__price2__container {
    padding: calc(72px / 2.25) 18px;
    margin-top: calc(45px / 1.5);
  }

  .plan__price2__container table thead th {
    padding:calc(9px / 1.5);
    font-size:calc(22px / 1.27); ;
  }

  .plan__price2__container table tbody th,
  .plan__price2__container table tbody td {
    padding: calc(18px / 1.5) 9px;
    font-size:calc(18px / 1.22) ;
    line-height:1.456789
  }

  .plan__price2__container table tbody td {
    font-size:calc(20.25px / 1.265); 
  }

  .plan__price2__container table tbody td strong {
    font-size: calc(27px / 1.4); 
  }

}


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

.plan__step__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  padding: 27px 0 45px;
}

.plan__step__list {
  background-color: var(--color1);
  flex-basis: 19.25%;
  margin: 0 auto;
  padding: 27px 36px 36px;
  border-top: 5px solid var(--color2);
}

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

.plan__step__num span.en {
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--color2);
  line-height: 1.0123456789;
  margin: auto;
  font-style: italic;
}

.plan__step__num span.en strong {
  font-size:63px;
  display: block;
  font-weight: 800;
}

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

.plan__step__img img {
  text-align: center;
  max-width: 100px;
  margin:auto;
}

.plan__step__title {
  text-align: center;
  margin:18px auto 9px;
  min-height:72px;
}

.plan__step__title span.ja {
  display: block;
  text-align: center;
  font-size:22.5px;
  font-weight: 600;
  color: var(--color2);
  line-height: 1.3456789;
  margin: auto;
}

.plan__step__list p {
  text-align: justify;
}

@media only screen and (max-width: 767px) {
  .plan__step__container {
    padding: calc(27px / 1.5) 0 calc(45px / 2);
  }

  .plan__step__list {
    flex-basis: 49%;
    margin: 1%;
    padding: calc(27px / 1.5) 18px calc(36px / 1.5);
    border-top: calc(5px / 1.5) solid var(--color2);
  }

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

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

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

  .plan__step__num span.en {
    font-size: calc(18px / 1.18);
  }

  .plan__step__num span.en strong {
    font-size:calc(63px / 1.63);
  }

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

  .plan__step__img img {
    width: 88px;
  }

  .plan__step__title {
    margin:calc(18px / 1.5) auto calc(9px / 1.5);
    min-height:calc(72px / 1.25)
  }

  .plan__step__title span.ja {
    font-size:calc(22.5px / 1.225);
  }

  .plan__step__list p {
    font-size: ;
    text-align: justify;
  }

}


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

/*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;
  padding: 18px 0;
  position: relative;
  border-bottom: 1px solid #ccc;
}

.faq__list dl:nth-last-child(1) {
  border-bottom: none;
}

.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 {
    padding:9px 0;
    line-height: 1.6789;
  }

  .faq__list dl dd {
    padding:9px 0;
  }

.faq__list dl dt span.en ,
.faq__list dl dd span.en {
  flex-basis: 36px;
  width: 36px;
  height: 36px;
  position: relative;
  text-align: center;
  line-height: 1.3456789;
  font-size:22.5px ;
  font-weight: 600;
}

  .faq__list dl dt span.en {
    display: block;
    color: var(--color1);
    border-radius: 100px;
    padding: 7.25px;
    margin-top: -9px;
    background-color:var(--color2);
    line-height:1 ;
  }

  .faq__list dl dd span.en {
    display: block;
    border-radius: 100px;
    padding: 9px;
    margin-top: -2.25px;
    background-color:transparent;
    line-height:1 ;
  }

.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: 20.25px;
    font-weight: 800;
    color: var(--color2);
    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__container {
    padding-bottom: calc(90px / 1.5) ;
  }

  .faq__list dl {
    margin: calc(18px / 18) 0;
  }

  .faq__list dl dt ,
  .faq__list dl dd {
    justify-content: flex-start;
    align-items: top;
  }

  .faq__list dl dt {
    padding:calc(24px / 4) 0 calc(24px / 4) calc(13.5px / 1.5);
  }

  .faq__list dl dd {
    padding:calc(24px / 4) 0 calc(24px / 4) calc(13.5px / 1.5);
  }

  .faq__list dl dt span.en ,
  .faq__list dl dd span.en {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
    padding: 5px 0;
    line-height: 1.0123456789;
    font-size: calc(22.5px / 1.225);
    font-weight: 600;
  }

    .faq__list dl dt span.en {
      top: 9px;
    }

    .faq__list dl dd span.en {
      top: -4.5px;
      margin-top: 4.5px;
    }

  .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);
  }

  .faq__list dl dd span.ja {
    text-align: justify;
  }

}

/*plan__proceed*/
.plan__proceed {
  padding-bottom: 72px;
}

.plan__proceed__container {
  margin: 45px auto auto;
}

.plan__proceed__list {
  padding: 18px 45px;
  background-color: var(--color7);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin: 0 0 45px;
  position: relative;
}

.plan__proceed__list:after {
  position: absolute;
  content: '';
  top: 100%;
  left: calc(50% - calc(40px / 2));
  margin:9px auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 40px solid transparent;
  border-left: 40px solid transparent;
  border-top: 20px solid var(--color5);
  border-bottom: 0;
}

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

.plan__proceed__title {
  flex-basis: 27.5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

.plan__proceed__text {
  flex-basis: 72.5%;
}

.plan__proceed__title span.num {
  flex-basis:10%;
  display: block;
  line-height: 1;
  margin-top: 2.25px;
  text-align: left;
  color: var(--color2);
  font-size: 27px;
  font-weight: bold;
}

.plan__proceed__title span.title {
  flex-basis: 90%;
  display: block;
  text-align: left;
  font-size: 22.5px;
  font-weight: bold;
}

@media only screen and (max-width:767px) {
  .plan__proceed {
    padding-bottom: calc(72px / 5);
  }

  .plan__proceed__container {
    margin: calc(45px / 2) auto auto;
  }

  .plan__proceed__list {
    padding: 18px;
    margin: 0 0 calc(45px / 1.5);
  }

  .plan__proceed__list:after {
    left: calc(50% - calc(30px / 2));
    margin:calc(9px / 1.5) auto;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-top: 15px solid var(--color5);
  }

  .plan__proceed__title {
    flex-basis: 100%;
    margin: 0 0 9px;
  }

  .plan__proceed__text {
    flex-basis: 100%;
  }

  .plan__proceed__title span.num {
    flex-basis:10%;
    margin-top: calc(2.25px /1.5);
    font-size:calc( 27px /1.27);
  }

  .plan__proceed__title span.title {
    flex-basis: 90%;
    font-size: calc(22.5px /1.225);
  }

}


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

Platinum Setting

---------------------------------------------------------- */
/*common__platinum*/
.common__platinum {
  background-image: url(../img/platinum__pc.jpg);
  background-color: var(--color7);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  padding: 0;
  position: relative;
}

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

.common__platinum__container {
  padding: 90px 0 ;
  position: relative;
  z-index: 34;
}

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

.common__platinum__title:after {
  position: absolute;
  content: '';
  top: 105%;
  left:calc(50% - calc(200px /2));
  margin: auto;
  width:200px;
  height: 2px;
  border-bottom:2px solid #fff;
}

.common__platinum__title span {
  display: block;
  font-size: 45px;
  text-align: center;
  margin: auto;
  font-weight: bold;
}

.common__platinum__text {
  text-align: center;
  margin: 36px auto 18px;
  font-weight: bold;
  font-size: 22.5px;
}

.common__platinum__microcopy {
  display: block;
  text-align: center;
  margin:4.5px auto ;
  font-size: 18px;
  color: var(--color1);
  font-weight: bold;
}

.common__platinum__btn {
  text-align: center;
  margin:auto auto 18px;
  max-width: 420px;
}

.common__platinum__btn a {
  background: #ffffff;
  background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(229, 228, 226, 1) 100%);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  text-align: center;
  font-size: 18px;
  padding:13.5px 36px;
  opacity: 1;
}

  .btn__primary:hover,
  .btn__primary:focus  {
    opacity: 1;
  }

@media only screen and (max-width: 767px) {
  .common__platinum {
    background-image: url(../img/platinum__sp.jpg);
  }

  .common__platinum__container {
    padding: calc(90px / 1.5) 0 ;
  }

  .common__platinum__title:after {
    top: 105%;
    left:calc(50% - calc(100px /2));
    width:100px;
    height: calc(2px / 1.5);
    border-bottom:calc(2px / 1.5) solid #fff;
  }

  .common__platinum__title span {
    font-size: calc(45px / 1.5);
  }

  .common__platinum__text {
    margin: calc(36px / 1.5) auto calc(18px / 1.5);
    font-size: calc(22.5px / 1.225);
  }

  .common__platinum__microcopy {
    margin:calc(4.5px / 1.5) auto ;
    font-size: calc(18px / 1.18);
  }

  .common__platinum__btn {
    margin:auto 1em calc(18px / 1.5);
    max-width: 100%;
  }

  .common__platinum__btn a {
    background: #ffffff;
    background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(229, 228, 226, 1) 100%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    font-size: 18px;
    padding:calc(13.5px / 1.5) 18px;
  }

}


/*platinum__target*/
.platinum__target {
  background-image: url(../img/bg1.png);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 100%;
  padding-bottom: 90px;
}

.platinum__target__container {
  background-color: var(--color1);
  padding:63px 72px 54px;
}

.platinum__target__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding:45px 0 0;
}

.platinum__target__text {
  flex-basis: 50%;
  padding-left: 0.65em;
}

.platinum__target__img {
  flex-basis: 45%;
}

.platinum__target__check {
  margin-bottom: 36px;
}

.platinum__target__check li {
  margin-left: 0.60em;
}

.platinum__target__check li.title {
  font-weight: bold;
  margin-left: -0.60em;
}

.platinum__target__check li.title:before {
  content: '●';
  color: var(--color2);
  font-size: 17px;
  margin-right:4.5px;
}

@media only screen and (max-width: 767px) {
  .platinum__target {
    background-image: url(../img/bg1.png);
    padding-bottom: calc(90px / 2.5);
  }

  .platinum__target__container {
    padding:calc(63px /1.5) 18px calc(54px /1.5);
  }

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

  .platinum__target__text {
    flex-basis: 100%;
    padding-left: calc(0.65em /1.5)
  }

  .platinum__target__img {
    flex-basis: 100%;
  }

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

  .platinum__target__check li {
    margin-left:calc(0.60em /1.5)
  }

  .platinum__target__check li.title {
    margin-left: calc(-0.60em /1.5)
  }

  .platinum__target__check li.title:before {
    font-size: calc(17px / 1.17);
    margin-right:calc(4.5px /1.5)
  }
}


/*platinum__about*/
.platinum__about {
  padding: 0;
}

.platinum__about__head {
  background-image: url(../img/platinum__about.jpg);
  background-color: var(--color7);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  padding: calc(90px + 36px) 0;
  position: relative;
}

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

.platinum__about__title {
  text-align: center;
  margin: auto;
  z-index: 34;
  position: relative;
}

.platinum__about__title span {
  display: block;
  font-size: 40.5px;
  text-align: center;
  line-height: 1.456789;
  margin: auto;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .platinum__about__head {
    background-image: url(../img/platinum__about.jpg);
    padding: calc(calc(90px + 36px) /1.5) 0;
  }

  .platinum__about__title span {
    font-size: calc(40.5px / 1.55);
  }

}

/*platinum__detail__inner*/
.platinum__detail__inner {
  position: relative;
  padding: 72px 0 90px;
}

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

.platinum__detail__list {
  flex-basis: 47.25%;
}

.platinum__detail__title {
  text-align: center;
  margin: auto;
  padding: 18px;
  flex-basis: 48%;
}

  .platinum__detail__list.fail .platinum__detail__title {
    background-color: #000
  }

  .platinum__detail__list.pass .platinum__detail__title {
    background-color: var(--color3);
  }

.platinum__detail__title span {
  display: block;
  text-align: center;
  margin: auto;
  font-size: 27px;
  color: #fff;
  font-weight: 800;
  line-height: 1.456789;
}

.platinum__detail__title span {
  display: block;
  text-align: center;
  margin: auto;
  font-size: 27px;
  color: #fff;
  font-weight: 800;
  line-height: 1.456789;
}

.platinum__detail__body {
  padding: 36px 36px 18px;
  position: relative;
}

  .platinum__detail__list.fail .platinum__detail__body {
    background-color: #efefef
  }

  .platinum__detail__list.pass .platinum__detail__body {
    background-color: #faedee
  }

.platinum__detail__flow {
  padding: 18px 9px;
}

.platinum__detail__text {
  padding-left:27px;
  padding-right: 27px;
}

.platinum__detail__flow li {
  list-style: none;
  position: relative;
  line-height: 1;
  color: #000;
}

  .platinum__detail__list.fail .platinum__detail__flow li {
    font-size: 20px;
    padding: 18px 0;
    font-weight: 400;
  }

  .platinum__detail__list.pass .platinum__detail__flow li {
    font-size: 22.5px;
    padding: 15.5px 0;
    font-weight: 600;
  }

.platinum__detail__list.fail .platinum__detail__flow li:before ,
.platinum__detail__list.pass .platinum__detail__flow li:before {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  content: '';
}

  .platinum__detail__list.fail .platinum__detail__flow li:before {
    background-image: url(../img/icon__fail.png);
    background-position: 0 4.5px;
    background-size: calc(38px/ 2);
    width: calc(38px/ 2);
    height: calc((38px/ 2) + 12px);
    margin: 0 9px 0 0;
  }

  .platinum__detail__list.pass .platinum__detail__flow li:before {
    background-image: url(../img/icon__pass.png);
    background-position: 0 4.5px;
    background-size: calc(65px/ 2);
    width: calc(65px/ 2);
    height: calc((48px/ 2) + 12px);
    margin: 0 9px 0 0;
  }

.platinum__detail__list.fail .platinum__detail__flow li:after ,
.platinum__detail__list.pass .platinum__detail__flow li:after {
  position: absolute;
  content: '';
  background-repeat: no-repeat;
  background-size: calc(215px / 5);
  background-repeat: no-repeat;
  top: calc(100% - calc(108px / 8.5));
  left: calc(50% - calc(215px / 6));
  width:calc(215px / 5);
  height: 100%;
  z-index: 234;
  margin: auto;
}

  .platinum__detail__list.fail .platinum__detail__flow li:after  {
    background-image:url(../img/icon__arrow4.png) ;
  }

  .platinum__detail__list.pass .platinum__detail__flow li:after  {
    background-image:url(../img/icon__arrow3.png) ;
  }

  .platinum__detail__list.fail .platinum__detail__flow li:last-of-type::after ,
  .platinum__detail__list.fail .platinum__detail__flow li:nth-last-child(1)::after,
  .platinum__detail__list.pass .platinum__detail__flow li:last-of-type::after ,
  .platinum__detail__list.pass .platinum__detail__flow li:nth-last-child(1)::after {
    background-image: none;
  }

.platinum__detail__list.fail:after  {
  position: absolute;
  content: '';
  left: calc(100% + calc(88px/ 6));
  top: 45%;
  margin: auto;
  width: calc(88px/ 2);
  height: 100%;
  background-image:url(../img/icon__arrow5.png) ;
  background-repeat: no-repeat;
  background-position: auto;
  background-size: calc(88px/ 2);
}

@media only screen and (max-width: 767px) {
  .platinum__detail__inner {
    overflow: hidden;
    padding: calc(72px / 1.5) 0 calc(90px / 2.5) ;
  }

  .platinum__detail__list {
    flex-basis: 100%;
    margin: 9px auto;
  }

  .platinum__detail__title {
    padding: calc(18px / 1.5) ;
    flex-basis: 100%;
  }

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

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

  .platinum__detail__flow {
    padding: calc(18px / 1.5) 0
  }

  .platinum__detail__text {
    padding-left:calc(27px / 27);
    padding-right:calc(27px / 27);
  }

  .platinum__detail__list.fail .platinum__detail__flow li {
    font-size: calc(20px / 1.2);
    padding: calc(18px / 1.5) 0;
  }

  .platinum__detail__list.pass .platinum__detail__flow li {
    font-size: calc(22.5px / 1.3);
    padding: calc(15.5px / 1.5) 0;
    margin: 0 -1em 0 -0.5em;
  }

  .platinum__detail__list.fail .platinum__detail__flow li:before {
    background-image: url(../img/icon__fail.png);
    background-position: 0 4.5px;
    background-size: calc(38px/ 3);
    width: calc(38px/ 3);
    height: calc((38px/ 3) + 12px);
    margin: 0 9px 0 0;
  }

  .platinum__detail__list.pass .platinum__detail__flow li:before {
    background-image: url(../img/icon__pass.png);
    background-position: 0 4.5px;
    background-size: calc(65px/ 3);
    width: calc(65px/ 3);
    height: calc((48px/ 3) + 12px);
    margin: 0 9px 0 0;
  }

  .platinum__detail__list.fail .platinum__detail__flow li:after ,
  .platinum__detail__list.pass .platinum__detail__flow li:after {
    position: absolute;
    content: '';
    background-repeat: no-repeat;
    background-size: calc(215px / 6);
    background-repeat: no-repeat;
    top: calc(100% - calc(108px / 8.5));
    left: calc(50% - calc(215px / 8));
    width:calc(215px / 6);
    height: 100%;
    z-index: 12;
    margin: auto;
  }

  .platinum__detail__list.fail:after  {
    position: absolute;
    content: '';
    left: calc(100% + calc(88px/ 6));
    top: 45%;
    margin: auto;
    width: calc(88px/ 2);
    height: 100%;
    background-image:url(../img/icon__arrow5.png) ;
    background-repeat: no-repeat;
    background-position: auto;
    background-size: calc(88px/ 2);
  }
}


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

Okayama Setting

---------------------------------------------------------- */
/*okayama__trouble*/
.okayama__trouble {
  background-color: #ededed;
}

.okayama__trouble__container {
  padding: 45px 72px;
  margin: 45px auto 72px;
  background-color: var(--color1);
  position: relative;
}

.okayama__trouble__container:after {
  position: absolute;
  content: '';
  top: 100%;
  left: calc(50% - calc(60px / 2));
  margin:18px auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 60px solid transparent;
  border-left: 60px solid transparent;
  border-top: 30px solid var(--color5);
  border-bottom: 0;
}

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

  .okayama__trouble__container:after {
    left: calc(50% - calc(40px / 2));
    margin:calc(18px/1.5) auto;
    border-style: solid;
    border-right: 40px solid transparent;
    border-left: 40px solid transparent;
    border-top: 20px solid var(--color5);
    border-bottom: 0;
  }
}

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

.okayama__about__message p {
  font-size: 27px;
  line-height: 1.56789;
  font-weight: 600;
  text-align: center;
  margin: auto;
}

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

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

  .okayama__about__message p {
    font-size:calc(27px/ 1.27);
  }

}

*/

/*okayama__trouble__table*/
.okayama__trouble__table {
  border: none;
  border-collapse: collapse;
  width: 100%;
}

.okayama__trouble__table thead tr {
  border-top: 1px solid #ccc;
  border-bottom: 2px solid #000;
}

.okayama__trouble__table thead tr th ,
.okayama__trouble__table tbody tr th ,
.okayama__trouble__table tbody tr td {
  padding: 9px 18px ;
}

.okayama__trouble__table tbody th ,
.okayama__trouble__table tbody td {
  font-size: 18px;
}

  .okayama__trouble__table thead th.cel1 ,
  .okayama__trouble__table tbody th.cel1 {
    background-color: #fff;
  }

  .okayama__trouble__table thead th.cel2 {
    background-color: #f0f6fa;
  }

  .okayama__trouble__table thead th.cel3 {
    background-color: #dbe7f7;
  }

  .okayama__trouble__table thead th.cel4 {
    background-color: #3978d1;
    color: #fff
  }

  .okayama__trouble__table thead th.cel5 {
    background-color: #474d78;
    color: #fff
  }

  .okayama__trouble__table tbody th.cel2 {
    background-color: #e9f1fa;
  }

  .okayama__trouble__table tbody th.cel3 {
    background-color: #ccdef4;
  }

  .okayama__trouble__table tbody th.cel4 {
    background-color: #094ac0;
    color: #fff
  }

  .okayama__trouble__table tbody th.cel5 {
    background-color: #15194d;
    color: #fff
  }

.okayama__trouble__table tbody span.en {
  font-size: 18px;
}

.okayama__trouble__table tbody span.en.large {
  font-size: 30.5px;
  line-height: 1.5678900;
}

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

.okayama__trouble__message p {
  font-size: 27px;
  line-height: 1.56789;
  font-weight: 600;
  text-align: center;
  margin: auto;
}

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

@media only screen and (max-width: 767px) {
  .okayama__trouble__table thead tr {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #000;
  }

  .okayama__trouble__table thead tr th ,
  .okayama__trouble__table tbody tr th ,
  .okayama__trouble__table tbody tr td {
    padding:9px 18px  ;
  }

  .okayama__trouble__table tbody th ,
  .okayama__trouble__table tbody td ,
  .okayama__trouble__table tbody span.en {
    font-size: calc(18px/ 1.1);
  }

  .okayama__trouble__table tbody span.en.large {
    font-size: calc(30.5px/ 1.305);
  }

  .okayama__trouble__message p {
    font-size:calc(27px/ 1.33);
    line-height: 1.789;
    text-align: left!important;
    margin: 0!important;
  }

}


/*okayama__point*/
.okayama__point__container {
  margin: 45px auto 72px;
  padding: 45px calc(90px + 90px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.okayama__point__container:after {
  position: absolute;
  content: '';
  top: 100%;
  left: calc(50% - calc(60px / 2));
  margin:18px auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 60px solid transparent;
  border-left: 60px solid transparent;
  border-top: 30px solid var(--color5);
  border-bottom: 0;
}

.okayama__point__img {
  order: 2;
  text-align: right;
  flex-basis: 35%;
}

.okayama__point__text {
  order: 1;
  flex-basis: 65%;
}

.okayama__point__img img {
  width: calc(400px / 2);
  text-align: right;
}

.okayama__point__check li {
  font-weight: bold;
  font-size:20.25px;
  margin: 4.5px 0;
  line-height: 2;
  background-image: url(../img/icon__circle2.png);
  background-size: 20px;
  background-position: 0 11.25px;
  background-repeat: no-repeat;
  padding-left:30.5px;
}

@media only screen and (max-width: 767px) {
  .okayama__point__container {
    margin: calc(45px / 1.5) auto calc(72px / 1.5);
    padding: calc(45px / 1.5) 18px 0;
  }

  .okayama__point__container:after {
    left: calc(50% - calc(40px / 2));
    margin:calc(18px / 1.5)px auto;
    border-right: 40px solid transparent;
    border-left: 40px solid transparent;
    border-top: 20px solid var(--color5);
  }

  .okayama__point__img {
    order: 2;
    text-align: center;
    flex-basis: 100%;
  }

  .okayama__point__text {
    order: 1;
    flex-basis: 100%;
  }

  .okayama__point__img img {
    width: calc(400px / 3);
    text-align: center;
    margin: auto;
  }

  .okayama__point__check li {
    font-size:calc(20.25px / 1.25);
    margin: calc(4.5px / 1.5);
    background-image: url(../img/icon__circle2.png);
    background-size: calc(20px / 1.5);;
    background-position: 0 11.25px;
    padding-left:calc(30.5px / 1.5);
  }

}


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

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

.okayama__detail__list {
  background-color: var(--color1);
  padding: 27px 36px;
  flex-basis: 49%;
  margin: 1%;
}

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

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

.okayama__detail__title {
  background-color: var(--color5);
  padding:7.25px 18px;
  text-align: center;
  margin: auto;
}

.okayama__detail__title span {
  display:inline-block;
  vertical-align: middle;
  text-align: center;
  margin: auto;
  font-size: 24px;
  font-weight: bold;
}

  .okayama__detail__title span.num {
    margin-right: 1.125px;
    color: var(--color6);
  }

  .okayama__detail__title span.title {
    font-size: 25.5px;
    color: var(--color1);
  }

.okayama__detail__text {
  padding: 18px 0 0;
}

.okayama__detail__text p {
  text-align: justify;
  line-height: 2.2345;
}

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

  .okayama__detail__list {
    padding: calc(27px / 1.5) 18px;
    flex-basis: 100%;
    margin:9px auto;
  }

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

  .okayama__detail__title {
    padding:calc(7.25px / 1.5) 18px;
  }

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

  .okayama__detail__title span.num {
    margin-right: calc(1.125px / 1.5);
  }

  .okayama__detail__title span.title {
    font-size: calc(25.5px / 1.255);
  }

  .okayama__detail__text {
    padding: calc(18px / 1.5) 0 0;
  }

  .okayama__detail__text p {
    line-height: 2;
  }
}


/*okayama__recommend*/
.okayama__recommend {
  background-image: url(../img/bg1.png);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 100%;
  padding-bottom: 90px;
}

.okayama__recommend__container {
  background-color: var(--color1);
  position: relative;
  padding:63px 72px 54px;
}

.okayama__recommend__list  {
  position: relative;
  margin-top: 27px;
}

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

.okayama__recommend__list li {
  background-image: url(../img/icon__check1.png);
  background-position: 27px ;
  position: relative;
  background-repeat: no-repeat;
  background-size:20px;
  padding: 27px ;
  padding-left:54px;
  flex-basis: 49%;
  margin:1%;
  border-radius: 9px;
  border: 1.5px solid var(--color2);
}

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

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

.okayama__recommend__list li span {
  display: block;
  line-height: 1;
  color: var(--color2);;
  font-weight: bold;
  font-size: 20px;
}

.okayama__recommend__img {
  position: absolute;
  right: -90px;
  bottom: -54px;
}

.okayama__recommend__img img {
  width: calc(553px/ 2);
}

@media only screen and (max-width: 767px) {
  .okayama__recommend {
    background-image: url(../img/bg1.png);
    padding-bottom: 0
  }

  .okayama__recommend__container {
    background-color: var(--color1);
    position: relative;
    padding:calc(63px / 1.5) 18px 0
  }

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

  .okayama__recommend__list li {
    background-image: url(../img/icon__check1.png);
    background-position: calc(27px / 1.5) 24px;
    background-size:calc(20px / 1.25);
    padding: calc(27px / 1.5) 18px;
    padding-left:calc(54px / 1.35);
    flex-basis: 100%;
    margin:4.5px auto;
  }

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

  .okayama__recommend__list li span {
    font-size:calc(20px / 1.2);
    line-height: 1.34567890;
  }

  .okayama__recommend__img {
    text-align: center;
    margin:18px auto auto;
    position: relative;
    right: auto;
    bottom:auto;
  }

  .okayama__recommend__img img {
    width: calc(553px/ 4);
    text-align: center;
    margin: auto;
  }

}


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

Teacher Setting

---------------------------------------------------------- */
/*common__teacher*/
.common__teacher {
  position: relative;
}

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

@media only screen and (max-width: 767px) {

}

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

.common__teacher__list {
  flex-basis: 24%;
  margin: 1% 0.50%;
  flex-basis: 24%;
  background-color: #fff;
  border-top: 5px solid var(--color2);
  padding:27px 18px 18px;
}

  .common__teacher__list:nth-child(4n-3) {
    margin-left: 0;
  }

  .common__teacher__list:nth-child(4n) {
    margin-right: 0;
  }

.common__teacher__img {
  text-align: center;
  margin: auto;
  padding: 9px 0;
}

.common__teacher__img img {
  width: 136px;
  height: 136px;
  border-radius:136px ;
  object-fit: cover; 
}

.common__teacher__text {
  padding: 0 13.5px;
}

.common__teacher__text p {
  font-size: 15px;
  text-align: justify;
}

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

.common__teacher__title span {
  display: block;
  text-align: center;
  margin: auto;
  font-size: 18px;
  font-weight: bold;
}

.common__teacher__detail dl {
  padding: 0;
  margin: 18px 0;
}

.common__teacher__detail dl dt {
  color: rgba(153, 153, 153, 0.70);
  transform: skewX(-5deg);
  font-size: 13px;
  font-weight: 600;
  padding: 0;
}

.common__teacher__detail dl dd {
  font-size: 15px;
  padding: 0;
}

.common__teacher__btn {
  text-align: center;
  margin: 36px auto auto;
  max-width: 350px;
}

@media only screen and (max-width: 767px) {

}


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

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;
}

.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;
  position: relative;
  z-index: 2345;
}

  .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;
}

  .recent .column__list__container {
    padding-bottom: 0;
  }

.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:bold;
}

.column__list .column__img {
  margin-bottom: 9px;
}

.column__list,
.column__list img {
  border-radius:9px;
}

.column__list img {
  object-fit: cover;
  width: 100%;
  height:230px;
}

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

  .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)
  }

}


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

Entry Setting

---------------------------------------------------------- */
/*entry__about*/
.entry__about {
  padding-bottom: 45px;
}

.entry__about__container {
  margin: 45px auto;
}

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

.entry__about__text {
  flex-basis: 55%;
}

.entry__about__img {
  flex-basis: 40%;
}

.entry__about__text p {
  text-align: justify;
}

.entry__about__btn {
  margin: 18px 0 ;
  max-width: 440px;
}

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

  .entry__about__container {
    margin: calc(45px / 1.5) auto;
  }

  .entry__about__text {
    flex-basis: 100%;
  }

  .entry__about__img {
    flex-basis: 100%;
    margin-top: 24px;
  }

  .entry__about__btn {
    margin:24px auto;
    text-align: center;
    max-width: 100%;
  }

}


/*entry__detail*/
.entry__detail {
  background-image: url(../img/bg1.png);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 100%;
}

.entry__detail__container {
  background-color: var(--color1);
  padding:63px 72px 27px;
}

.entry__detail__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin:36px auto;
}

.entry__detail__text {
  flex-basis: 50%;
  order: 2;
}

.entry__detail__img {
  order: 1;
  flex-basis: 45%;
}

.entry__detail__check li {
  background-image: url(../img/icon__circle.png);
  background-position: 27px 55%;
  background-repeat: no-repeat;
  background-size:20px;
  padding: 22.5px 0;
  padding-left: 54px;
  font-size: 20px;
  line-height: 1;
  font-weight: bold;
  border-bottom: 1px dotted #aaa;
}

  .entry__detail__check li:nth-last-child(1) {
    border-bottom: none
  }

.entry__detail__time span {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 18px auto auto;
  background-color: var(--color7);
  padding:9px 27px;
  font-size: 18px;
  text-align: center;
  color: var(--color2);
}
/*
.entry__detail__time strong {
  font-size: 30px;
}*/

@media only screen and (max-width:767px) {
  .entry__detail {
    background-image: url(../img/bg1.png);
  }

  .entry__detail__container {
    padding:calc(63px / 1.5) 18px calc(27px / 1.5);
  }

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

  .entry__detail__text {
    flex-basis: 100%;
    order: 2;
  }

  .entry__detail__img {
    order: 1;
    flex-basis:100%;
    margin-bottom: 9px;
  }

  .entry__detail__check li {
    background-image: url(../img/icon__circle.png);
    background-position: calc(27px /1.25) 55%;
    background-size:calc(20px /1.25);
    padding: calc(22.5px /1.25) 0;
    padding-left: calc(54px /1.25);
    font-size: calc(20px /1.25);
  }

  .entry__detail__time span {
    margin: calc(18px /1.5) auto auto;
    padding:calc(9px /1.5) calc(27px /1.5);
    font-size: calc(18px /1.18);
  }

}


/*entry__recommend*/
.entry__recommend__container {
  background-color: var(--color1);
  padding:63px 72px 45px;
  margin-top: 36px;
}

.entry__recommend__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  padding: 36px 0 18px;
}

.entry__recommend__list li {
  background-image: url(../img/icon__check1.png);
  background-position: 27px 30.5px;
  position: relative;
  background-repeat: no-repeat;
  background-size:20px;
  padding: 27px;
  padding-left:54px;
  flex-basis: 49%;
  margin:1%;
  border: 1.5px solid var(--color5);
}

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

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

.entry__recommend__list li span {
  display: block;
  line-height: 1;
  font-weight: bold;
  font-size: 18px;
}

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

@media only screen and (max-width:767px) {
  .entry__recommend__container {
    background-color: var(--color1);
    padding:calc(63px /1.5) 18px calc(45px /1.5);
    margin-top: calc(36px /1.5);
  }

  .entry__recommend__list {
    padding: calc(36px /2) 0 calc(18px /1.5);
  }

  .entry__recommend__list li {
    background-image: url(../img/icon__check1.png);
    background-position: calc(27px /1.25) 30.5px;
    background-size:calc(20px /1.5);
    padding: calc(27px /1.25);
    padding-left:calc(54px /1.25);
    flex-basis: 100%;
    margin:1%;
    border: 1.5px solid var(--color5);
  }

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

  .entry__recommend__list li span {
    font-size: calc(18px / 1.1);
    line-height: 1.456789;
  }

}


/*entry__target*/
.entry__target {
  background-image: url(../img/bg1.png);
  background-position: right top;
  background-repeat: no-repeat;
  background-color: var(--color1);
  background-size: 100%;
  padding-bottom: 45px;
}

.entry__target__container {
  background-color: var(--color1);
  padding:63px 72px 45px;
  margin-top: 36px;
}

.entry__target__detail {
  display: flex;
  flex-wrap: wrap;
  justify-content:center;
  align-items: top;
  padding: 36px 0;
}

.entry__target__list {
  flex-basis: 35%;
  margin: 0 ;
}

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

.entry__target__img img {
  width: calc(548px / 2);
  text-align: center;
  margin: auto;
}

.entry__target__text {
  margin: 18px auto;
}

.entry__target__title {
  text-align: center;
  margin: auto;
  min-height: 72px;
}

.entry__target__title span {
  display: block;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.56789;
  text-align: center;
  margin: auto;
}

.entry__target__text p {
  text-align: center;
  font-size: 16px;
  line-height: 1.56789;
  margin: auto;
}

@media only screen and (max-width:767px) {
  .entry__target {
    background-image: url(../img/bg1.png);
    padding-bottom: calc(45px /1.5);
  }

  .entry__target__container {
    background-color: var(--color1);
    padding:calc(63px /1.5) 18px calc(45px /1.5);
    margin-top: calc(36px /1.5);
  }

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

  .entry__target__list {
    flex-basis: 100%;
  }

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

  .entry__target__img img {
    width: calc(548px / 3);
  }

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

  .entry__target__title {
    min-height: 1px;
    margin-bottom: 9px;
  }

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

  .entry__target__text p {
    font-size: calc(16px /1.16);;
  }
}

/*entry__cta*/
.entry__cta  {
  background-image: url(../img/entry__cta.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  background-size:cover;
  position: relative;
}

.entry__cta:after  {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 12;
}

.entry__cta__container {
  padding: 45px 0;
  position: relative;
  z-index: 34;
}

.entry__cta__title {
  background-color: var(--color2);
  text-align: center;
  margin: auto;
  padding: 13.5px 0;
}

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

.entry__cta__body {
  padding: 36px 45px 45px;
  background-color: var(--color1);
}

.entry__cta__text p {
  text-align: center;
  margin: auto;
}

.entry__cta__text p strong {
  margin:18px auto auto;
  background:linear-gradient(transparent 60%, #fff250 60%);
}

.entry__cta__btn {
  text-align: center;
  margin:36px auto auto;
  max-width: 440px;
}

@media only screen and (max-width:767px) {
  .entry__cta  {
    background-image: url(../img/entry__cta.jpg);
  }

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

  .entry__cta__title {
    padding: calc(13.5px / 1.5) 0;
  }

  .entry__cta__title span {
    font-size: calc(30.5px / 1.305);
  }

  .entry__cta__body {
    padding: calc(36px / 1.5) 18px calc(45px / 1.5);
  }

  .entry__cta__text p strong {
    margin:calc(18px / 1.5) auto auto;
  }

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


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

.entry__flow__container {
  margin: 45px auto auto;
}

.entry__flow__container1 {
  padding: 54px 90px;
  margin-top: 45px;
  background-color: var(--color1);
}

.entry__flow__container2 {
  margin-top: 54px;
  background-color: transparent;
}

.entry__flow__list {
  padding: 36px 45px;
  display: flex;
  flex-wrap: wrap;
  margin:18px 0;
  justify-content: flex-start;
  align-items: center;
}

  .entry__flow__list.main__list {
    border:1.5px solid var(--color2);
    background-color: var(--color1);
  }

  .entry__flow__list.sub__list {
    border:1.5px solid var(--color1);
    background-color: var(--color1);
  }

.entry__flow__num {
  flex-basis: 10%;
}

.entry__flow__text {
  flex-basis: 65%;
}

.entry__flow__btn {
  flex-basis: 25%;
}

.entry__flow__num span {
  display: block;
  font-size: 27px;
  line-height:1.567899;
  padding: 9px;
  text-align: center;
  width: 60px;
  height: 60px;
  font-weight: 800;
  border-radius: 100px;
}

  .entry__flow__list.main__list .entry__flow__num span {
    background-color: var(--color2);
    color: var(--color1);
  }

  .entry__flow__list.sub__list .entry__flow__num span {
    background-color: var(--color2);
    color: var(--color1);
  }

.entry__flow__title {
  text-align: left;
  margin: 0;
}

.entry__flow__title span {
  display: block;
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  line-height: 1.789;
  margin: 0;
}

.entry__flow__text p {
  text-align: left;
  font-size: 17px;
  margin: 0;
  line-height: 1.789;
}

.entry__flow__calendar {
  width: 100%;
  padding: 36px 0;
  margin: 18px auto;
}

.entry__flow__caution {
  margin:1em auto auto;
  text-align: center;
}

.entry__flow .entry__btn {
  margin: 45px auto auto;
  text-align: center;
  max-width: 400px;
}

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

  .entry__flow__container {
    margin: calc(45px / 1.5) auto auto;
  }

  .entry__flow__container1 {
    padding: calc(54px / 2) 18px;
    margin-top: calc(45px / 1.5);
  }

  .entry__flow__container2 {
    margin-top: calc(54px / 1.5);
  }

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

  .entry__flow__num {
    flex-basis: 23.5%;
  }

  .entry__flow__text {
    flex-basis: 76.5%;
  }

  .entry__flow__btn {
    margin-top: 9px;
    flex-basis: 100%;
  }

  .entry__flow__num span {
    font-size: calc(30px / 1.625);
    padding: calc(9px / 1.125);;
    width: calc(54px / 1.125);
    line-height: 1.7890;
    height: calc(54px / 1.125);
  }

  .entry__flow__title span {
    font-size: calc(24px / 1.29);
  }

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

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

  .entry__flow__caution {
    text-align: left;
    margin:calc(1em / 1.5) 0 auto;
  }

  .entry__flow .entry__btn {
    margin: calc(45px / 2) auto auto;
    max-width: 100%;
  }

}



/*
.entry__flow__list {
  background-color: var(--color1);
  padding:13.5px 18px;
  text-align: center;
  margin: auto auto 45px;
  position: relative;
}

.entry__flow__list:after {
  position: absolute;
  content: '';
  top: 100%;
  left: calc(50% - calc(40px / 2));
  margin:9px auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 40px solid transparent;
  border-left: 40px solid transparent;
  border-top: 20px solid var(--color5);
  border-bottom: 0;
}

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

.entry__flow__title  {
  text-align: left;
  margin: 0;
  padding: 0 calc(180px + 90px + 24px);
}

.entry__flow__title span {
  display: inline-block;
  vertical-align: middle;
}

.entry__flow__title span.num {
  color: var(--color2);
  font-size: 29px;
  margin-top: 2.5px;
  font-weight: bold;
}

.entry__flow__title span.title {
  font-size: 23.5px;
  font-weight: bold;
}

@media only screen and (max-width:767px) {
}



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

Teacher Setting

---------------------------------------------------------- */
/*teacher__list*/
.teacher__container {
  margin-top: 45px;
}

.teacher__main__container {
  margin-top: 45px;
}

.teacher__main__body {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  background: var(--color1);
  border:1px solid var(--color5);
  color:var(--color5);
}

.teacher__main__img {
  flex-basis: 42.5%;
}

.teacher__main__text {
  flex-basis: 57.5%;
  padding:36px 72px;
}

.teacher__sub__container {
  margin-top: 27px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: top;
}

.teacher__sub__container .teacher__list {
  flex-basis: 32%;
  margin:0% 1% 2%;
}

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

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

.teacher__list {
  background: var(--color1);
  border:1px solid var(--color5);
  color:var(--color5);
}

.teacher__img {
  text-align: center;
  margin: auto;
} 
    
.teacher__text {
  padding: 18px 36px 36px;
} 
    
.teacher__title {
  text-align: left;
  margin: 9px 0 18px ;
} 
      
.teacher__title span {
  display: block;
  font-size: 22.5px;
  line-height: 1.234567;
  border-left:7px solid var(--color5);
  padding-left: 13.58px;
  font-weight: bold;
  text-align: left;
} 

.teacher__comment {
  text-align: left;
  font-weight: bold;
}

.teacher__icon {
  margin:9px 0;
}

.teacher__icon li {
  padding: 2.25px 9px;
  display: inline-block;
  font-size: 15px;
  vertical-align: middle;
  margin: 4.5px 9px 4.5px 0;
  background: var(--color7);
  color:var(--color5);
}

.teacher__text p {
  font-size: 16px;
} 

.teacher__btn {
  text-align: center;
}

  .teacher__main__container .teacher__btn {
    max-width:380px;
    margin: 22.5px 0 0;
  }

  .teacher__sub__container .teacher__btn {
    max-width: 85%;
    margin: 22.5px auto auto;
  }

.teacher__btn a {
  padding: 9px;
  font-size: 16px;
}

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

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

  .teacher__main__img {
    flex-basis: 100%;
  }

  .teacher__main__text {
    flex-basis: 100%;
    padding:calc(36px / 1.5) 18px;
  }

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

  .teacher__sub__container .teacher__list {
    flex-basis: 100%;
    margin:9px auto;
  }

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

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

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

  .teacher__title span {
    font-size: calc(22.5px / 1.225);
    border-left:calc(7px / 1.5) solid var(--color5);
    padding-left:calc(13.58px / 1.5)
  } 

  .teacher__comment {
    margin: 18px 0;
  }

  .teacher__icon {
    margin:calc(9px / 1.5) 0;
  }

  .teacher__icon li {
    padding: calc(2.25px / 1.5) calc(9px / 1.5);
    font-size:calc(15px / 1.15);
    margin: calc(4.5px / 1.5) calc(9px / 1.5) calc(4.5px / 1.5) 0;
  }

  .teacher__text p {
    font-size: calc(16px / 1.16);
  } 

  .teacher__main__container .teacher__btn {
    max-width:100%;
    margin: calc(22.5px /1.5) 0 0;
  }

  .teacher__sub__container .teacher__btn {
    max-width:100%;
    margin: calc(22.5px /1.5) auto auto;
  }

  .teacher__btn a {
    padding: calc(9px /1.5);
    font-size: calc(16px /1.16);
  }
}


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

Achievements Setting

---------------------------------------------------------- */
/*achievements__container*/
.achievements__container {
  margin-top:36px;
  padding: 0 0 45px;
}


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

}

/*

.achievements__list {
  flex-basis: 49%;
  margin:0% 1% 2%;
}

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

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

.achievements__list {
  background: var(--color1);
  border:1px solid var(--color5);
  color:var(--color5);
}

.achievements__img {
  text-align: center;
  margin: auto;
} 
    
.achievements__text {
  padding: 18px 36px 36px;
} 
    
.achievements__title {
  margin:0 0 9px;
} 
      
.achievements__title span {
  display: inline-block;
  vertical-align: middle;
} 

.achievements__title span.date {
  padding: 2.25px 18px;
  display: inline-block;
  font-weight: bold;
  font-size: 15px;
  vertical-align: middle;
  margin: 9px 9px 9px 0;
  background: var(--color7);
  color:var(--color5);
} 

.achievements__title span.name {
  font-size: 15px;
}

.achievements__text .comment {
  text-align: left;
  font-size: 18px;
  font-weight: bold;
} 

.achievements__btn {
  text-align: center;
  max-width: 300px;
  margin: 18px auto auto;
}

.achievements__btn a {
  padding: 9px;
  font-size: 16px;
}

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

  .achievements__list {
    flex-basis: 100%;
    margin:9px auto;
  }

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

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

  .achievements__title span.date {
    padding: calc(2.25px / 1.5) 18px;
    font-size: calc(15px / 1.15);
    margin: calc(9px / 1.5) calc(9px / 1.5) calc(9px / 1.5) 0;
  } 

  .achievements__title span.name {
    font-size: calc(15px / 1.15);
  }

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

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

  .achievements__btn a {
    padding: calc(9px / 1.5);
    font-size: calc(16px / 1.16);
  }

}

*/


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

Flow Setting

---------------------------------------------------------- */
/*flow__list*/
.flow__title {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex;
  align-items: center;
  padding: 8px 72px;
  background: var(--color2);
  border:1px solid var(--color2);
}

.flow__title span.en {
  display: inline-block;
  vertical-align: middle;
  font-size: 28px;
  color: #fff;
  margin-top: 4.5px;
  line-height: 1.234567;
  font-style: italic;
  font-weight: bold;
}

.flow__title span.en strong {
  display: inline-block;
  vertical-align: middle;
  font-size: 72px;
  color: #fff000;
  font-style: italic;
}

.flow__title span.title {
  font-size: 30px;
  margin-left: 24px;
  color: #fff;
  font-weight: bold;
}

.flow__body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding:45px 72px;
  background: var(--color1);
  border:1px solid var(--color2);
}

.flow__text {
  flex-basis: 55%;
}

.flow__img {
  flex-basis: 35%;
}

.flow__text p {
  text-align: justify;
}

.flow__btn {
  text-align: center;
  margin: 27px 0 0 ;
  max-width: 400px;
}

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

.flow__arrow img {
  width: calc(215px / 2);
}

@media only screen and (max-width:767px) {
  .flow__title {
    padding: calc(9px / 1) 18px;
  }

  .flow__title span.en {
    display: block;
    width: 100%;
    text-align: center;
    font-weight: 400;
    margin:calc(4.5px / 1.5) auto auto ;
    font-size: calc(28px / 1.4) ;
    line-height: 1
  }

  .flow__title span.en strong {
    text-align: center;
    margin: auto ;
    font-size: calc(72px / 1.72) ;
  }

  .flow__title span.title {
    display: block;
    width: 100%;
    font-size: calc(30px / 1.3) ;
    text-align: center;
    margin: auto ;
    line-height: 1.567890;
  }

  .flow__body {
    padding:calc(45px / 2) 18px;
  }

  .flow__text {
    flex-basis: 100%;
    order: 2;
  }

  .flow__img {
    flex-basis: 100%;
    order: 1;
    margin-bottom: 18px;
  }

  .flow__btn {
    text-align: center;
    margin: calc(27px / 1.5) 0 0 ;
    max-width: 100%;
  }

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

  .flow__arrow img {
    width: calc(215px / 3);
  }

}


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

News Setting

---------------------------------------------------------- */
/*news__list__container*/
.news__list__container {
  padding-bottom: 54px;
}

@media only screen and (max-width:767px) {
  .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: top;
  border-bottom: 1px dotted #aaa;
  padding: 20.25px 0;
  text-align: left;
}

  .news__list dl:nth-last-child(1) {
    border-bottom:none;
  }

.news__list dt {
  flex-basis: 30%;
  padding-left: 9px;
  padding-right: 9px;
  font-size: 15px;
}

.news__list dd {
  flex-basis: 65%;
  font-weight: 600;
}

  .home .news__list dt {
    flex-basis: 30%;
  }

  .home .news__list dd {
    flex-basis: 65%;
  }

.news__list dt span.time ,
.news__list dt span.vat {
  display: inline-block;
  vertical-align: middle;
}

.news__list dt span.cat {
  display: inline-block;
  font-weight: 500;
  background-color: var(--color7);
  line-height: 1.1;
  font-size: 13px;
  text-align: center;
  margin:auto;
  min-width: 120px;
  margin-left: 27px;
  text-align: center;
  padding: 4.5px 9px ;
}

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

  .news__list dt {
    flex-basis: 100%;
    padding-left:0;
    padding-right:0;
  }

  .news__list dd ,
  .home .news__list dt ,
  .home .news__list dd {
    flex-basis:100%;
  }

  .news__list dt span.date {
    font-size: calc(14px / 1.1);
  }

  .news__list dt span.cat {
    display: inline-block;
    line-height: 1.1;
    font-size: calc(13px / 1.1);
    margin-right:autol;
    padding: calc(4.5px / 1.5) calc(9px * 1.5);
  }

  .news__list dd span.text {
    display: block;
    width: 100%;
  }

}


/*wp-pagenavi*/
.pagination {
  position: relative;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  z-index: 12;
}

.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 15px;
  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(15px / 1.25);
    margin:0 calc(9px  /1.5);
  } 
} 


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

Single Setting

---------------------------------------------------------- */
/*single*/
.section.single__news #main_content {
  padding-bottom: 45px;
}

.c-postTitle__date.u-thin {
  width:100px;
  font-family: "LINE Seed JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
/*
.c-shareBtns,
.l-articleBottom__section.-author,
.l-articleBottom__section.-comment,
.p-articleFoot  {
  display: none!important
}
*/

.c-postTitle__ttl,
.l-articleBottom__title {
  font-weight: bold
}

.p-toc {
  width: 100% !important;
  max-width: 100% !important;
}

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

.single__column .c-taxList__link {
  background-color: var(--color2)!important;
  color: #fff!important;
}

.single__news .c-categoryList__link  {
  background-color: var(--color2)!important;
  color: #fff!important;
}

@media only screen and (max-width:767px) {
  .section.single__news #main_content {
    padding-bottom: calc(45px / 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  {
  text-align: center;
  margin: 9px auto auto;
  max-width: 400px;
}

@media only screen and (max-width:767px) {
.single__date {
    font-size: calc(16px / 1.16);
    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(9px / 1.5) auto auto;
    max-width: 100%;
  }

}

/*recent*/
.recent__news__container {
  padding: 45px;
  border-radius: 27px;
  margin: 45px auto auto;
  background-color: var(--color1);
}

.recent__news__btn {
  text-align: center;
  margin:36px auto 18px;
  max-width: 400px;
}

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

  .recent__news__btn {
    margin:calc(36px / 1.5) auto calc(18px / 1.5);
    max-width: 100%;
  }
}


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

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) {
  .contact__form  {
    padding: calc(45px / 2) 18px;
    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 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;
  }

}


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

Error404 Setting

---------------------------------------------------------- */
.error404 .entry__btn a {
  display: block;
  text-decoration: none;
  border-radius: 90px!important;
  padding-bottom: 18px;
  margin: 36px auto 18px;
  max-width: 256px;
}

@media only screen and (max-width:767px) {
  .error404 .entry__btn a {
    padding-bottom: calc(18px /1.5);
    margin: calc(36px /1.5) auto calc(18px /1.5);
    max-width: 100%;
  }

}

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

Footer Setting

---------------------------------------------------------- */
/*footer*/
.footer {
  position: relative;
  z-index: 45678;
  padding-bottom: 0;
}


/*footer__cta_*/
.footer__cta__container {
  padding: 45px 45px 36px;
  background-color: #fff;
  margin: auto auto 36px;
}

.footer__cta__microcopy {
  text-align: center;
  margin: auto;
  font-size: 20.5px;
  line-height: 1.3456789;
  font-weight: bold;
}

.footer__cta__title {
  text-align:center;
  margin: auto auto 18px;
  color: var(--color3);
}

.footer__cta__title span {
  display: block;
  font-size:40.5px;
  letter-spacing: 0;
  font-weight: 800;
  line-height: 1.4567890;
}

.footer__cta__title span.middle {
  font-size:36px;
  line-height: 1.4567890;
}

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

  .footer__cta__microcopy {
    font-size: calc(20.5px /1.205);
  }

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

  .footer__cta__title span {
    font-size:calc(40.5px / 1.75);
  }

  .footer__cta__title span.middle {
    font-size:calc(36px / 1.75);
  }

}

/*footer__entry__container*/
.footer__entry__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding:  0;
}

.footer__entry__text {
  flex-basis: calc(100% - 150px);
}

.footer__entry__img {
  flex-basis: 150px;
}

.footer__entry__text p {
  color: var(--color5);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.789;
}

.footer__entry__text p strong {
  background:linear-gradient(transparent 60%, #fff000 60%);
}

.footer__entry__img img {
  width: 145px;
  height: 145px;
  border: 18px solid var(--color7);
  object-fit: cover;
  border-radius: 145px;
}

.footer__entry__btn {
  text-align: left;
  margin: 18px 0 0;
  max-width: 400px;
}

@media only screen and (max-width:767px) {
  .footer__entry__text {
    flex-basis: 100%;
    order: 2;
  }

  .footer__entry__img {
    flex-basis: 100%;
    text-align: center;
    margin: 18px auto;
    order: 1;
  }

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

  .footer__entry__img img {
    width: 145px;
    height: 145px;
    border: calc(18px / 1.5) solid var(--color7);
    border-radius: 145px;
  }

  .footer__entry__btn {
    text-align: left;
    margin: calc(18px / 1.5) 0 0;
    max-width: 100%;
  }

}



/*footer__container*/
.footer__container {
  padding: 72px 0 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
}

.footer__text {
  flex-basis: 35%;
}

.footer__sitemap  {
  flex-basis: 60%;
}

.footer__logo {
  max-width:80px;
  text-align: left;
  margin:0 0 18px ;
}

.footer__text p {
  text-align: left;
  font-size: 15px;
}

.footer__copyright {
  text-align: left;
  margin:0 0 45px;
  padding-bottom: 90px;
}

.footer__copyright address {
  text-align: left;
  margin:0;
  font-style: normal;
  letter-spacing: 0.05em;
  font-weight: 300;
  font-size: 13.5px;
}

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

  .footer__text {
    flex-basis: 100%;
    order: 2;
    padding-top: 36px;
  }

  .footer__sitemap  {
    flex-basis: 100%;
    order: 1;
  }

  .footer__logo {
    max-width:100px;
    margin:0 auto calc(18px / 1.125) ;
  }

  .footer__text p {
    font-size: calc(15px / 1.15) ;
    text-align: center;
  }

  .footer__copyright {
    margin:0 auto calc(45px / 1);
    text-align: center;
    padding-bottom: calc(90px / 1.25);
  }

  .footer__copyright address {
    margin: auto;
    text-align: center;
    letter-spacing: calc(0.05em / 1.5);
    font-size: calc(13.5px / 1.1);
  }

}

/*footer__sns*/
.footer__sns  {
  margin: 24px 0 0;
}

.footer__sns li {
  display: inline-block;
  margin-right: 13.5px;
  vertical-align: middle;
}

.footer__sns li img {
  width: calc(60px/ 2);
}

@media only screen and (max-width:767px) {
  .footer__sns  {
    margin: calc(24px / 1.125) auto 0;
    text-align: center;
  }

  .footer__sns li {
    margin-right: calc(13.5px / 1);
  }

  .footer__sns li img {
    width: calc(60px/ 1.75);
  }

}

/*footer__sitemap*/
.footer__sitemap__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
}

.footer__sitemap__list:nth-child(1) {
  flex-basis: 35%;
}

.footer__sitemap__list:nth-child(2) {
  flex-basis: 50%;
}

.footer__sitemap__list li.title {
  font-weight: bold;
  padding-bottom: 2.25px;
}

.footer__sitemap__list li  {
  font-size: 15px;
}

.footer__sitemap__list li a {
  text-decoration: none;
}

@media only screen and (max-width:767px) {
  .footer__sitemap__list li.title {
    font-weight: bold;
    padding-bottom: calc(2.25px / 1.5);
  }

  .footer__sitemap__list li  {
    font-size: calc(15px / 1.15);
    line-height: 2;
  }
}


/*pagetpp*/
.pagetop {
  display: none;
  /*
  width: 68px;
  height: 68px;
  right: 1em;
  bottom: 1em;
  position: fixed;
  */
}

/*footer__nav*/
.footer__nav {
  width: 100%;
  display: block;
  box-sizing: border-box;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index:4567;
  overflow-y: hidden;
  background-color: rgba(255, 255, 255, 0.90);
}

.footer__nav__container {
  padding: 9px 18px 18px;
}

.footer__nav__microcopy {
  text-align: center;
  margin: auto;
  display: block;
  font-size: 16px;
  font-weight: bold;
}

.footer__nav a {
  text-align: center;
  margin: auto;
  padding: 9px;
  font-size: 18px;
  max-width: 440px;
}

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

  .footer__nav__microcopy {
    font-size: calc(16px / 1.16);
  }

  .footer__nav a {
    padding: calc(9px / 1);
    font-size: calc(18px / 1.18);
    max-width: 100%;
  }

}
