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

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-style: normal;
}

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

/*font*/
.en {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}


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

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

ol  {
  margin-left: 1em;
}

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

.left {
  text-align:left
}

.right  {
  text-align:right
}

.block  {
  display: block;
}

.large {
  font-size: 120%;
}

.small {
  font-size: 90%;
}

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

img.radius {
  border-radius: 36px;
}

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

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

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

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

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

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

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

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

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

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

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

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

Btn Setting

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

.btn__primary {
  background-color: #145399;
  border: 1px solid #145399;
  text-align: center;
  color: #fff;
  line-height: normal;
  padding:18px 36px;
}

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

.btn__secondary {
  background-color: #fff;
  border: 1px solid #222;
  text-align: center;
  color: #222;
  line-height: normal;
  padding:18px 36px;
}

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

.btn__white {
  background-color: transparent;
  border: 1px solid #fff;
  color: #145399;
  line-height: normal;
  padding:18px 36px;
}

  .btn__white:hover,
  .btn__white:focus  {
    color: #145399;
  }


@media only screen and (max-width:767px) {
  .btn__primary,
  .btn__secondary,
  .btn__white {
    padding:calc(18px / 1.5) calc(36px / 1.5);
  }

}

/*btn__arrow*/
.btn__arrow  {
  display: block;
  background-position:95% 50% ;
  background-image: url(../img/icon__arrow1.png);
  background-size: 18px;
  background-repeat: no-repeat;
}

  .btn__primary.btn__arrow  {
    background-image: url(../img/icon__arrow1.png);
  }

  .btn__secondary.btn__arrow  {
    background-image: url(../img/icon__arrow2.png);
  }

@media only screen and (max-width:767px) {
  .btn__arrow  ,
  .btn__primary.btn__arrow,
  .btn__secondary.btn__arrow  {
    background-size: calc(18px 1.5);
  }
}

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

Form Setting

---------------------------------------------------------- */
/*form reset
input[type=submit],
button,
button[type=submit],
button[type=button] {
  appearance:none;
  cursor:pointer;
  outline:none;
  box-sizing:border-boxt;
  border:none;
  background: transparent;
  font-size: 18px;
}
*/
input[type=text],
input[type=number],
input[type=email],
input[type=password],
input[type=date],
input[type=url],
input[type=tel],
textarea {
  appearance:none;
  outline:none;
  border-radius: 9px;
  border:1px solid #999;
  padding:18px;
  box-sizing:border-box;
  max-width: 100%;
  font-size: 18px;
}

select{
  appearance:none;
  outline:none;
  border-radius: 9px;
  border:1px solid #999;
  padding:18px ;
  box-sizing:border-box;
  max-width: 100%;
  font-size: 18px;
}

input[type=text]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=date]:focus,
input[type=url]:focus,
input[type=tel]:focus,
textarea:focus {
  transition: 0.3s;
  box-shadow: 0 0 0 6px rgba(0,0,0,0.1)
}

/*radio checkbox*/
input[type=radio],
input[type=checkbox] {
  transform:scale(2.0)
}

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

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

.select {
  display: inline-block;
  position: relative;
  border-radius: 6px;
  border:1px solid #ccc;
  box-sizing:border-box;
  background: #fff;
}

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


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

Table Setting

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

table.w15 th {
  width: 15%;
}

table.w20 th {
  width: 20%;
}

table.w25 th {
  width: 25%;
}

table.w30 th {
  width: 30%;
}

table.w40 th {
  width: 40%;
}

table.w50 th {
  width: 50%;
}

table.w60 th {
  width: 60%;
}

table.w70 th {
  width: 70%;
}

table.w80 th {
  width: 80%;
}

table.w90 th {
  width: 90%;
}

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

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

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


table.table__bordered tbody tr td {
  font-weight: 400;
  background: #fff;
  border: 1px solid #ccc;
  padding: 18px;
}

@media only screen and (max-width:767px) {
  table.table__bordered tr th {
    padding: calc(18px / 1.5);
  }

  table.table__bordered tr td {
    padding: calc(18px / 1.5);
  }

  table.table__bordered tbody tr td {
    padding: calc(18px / 1.5);
  }


}


/*


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

*/


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

table.table__striped tr th ,
table.table__striped tr td {
  text-align: left;
  font-weight: 400;
  padding:27px 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: #f4f4f4;
  }

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

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

  .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-top: 18px;
    padding-bottom: 0;
    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: 0;
    padding-bottom: 18px;
    border: none;
  }

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

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

Layout Setting

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

#wrapper {
  overflow-x: hidden;
}

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

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

  .container__wide__l {
    margin:auto;
    width:100%;
    padding-left: 0;
    padding-right: 2.5em;
  }

  .container__wide__r {
    margin:auto;
    width:100%;
    padding-left: 2.5em;
    padding-right:0;
  }

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

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

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

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

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

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

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

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

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

  .container__wide,
  .container__wide__l,
  .container__wide__r,
  .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__wide .container ,
  .container__wide .container__middle ,
  .container__wide .container__narrow ,
  .container__wide .container__xnarrow ,
  .container__wide .container__xxnarrow ,
  .container__wide .container__xxxnarrow ,
  .container__wide .container__xxxxnarrow ,
  .container__wide .container__xxxxxnarrow {
    padding-left: 0;
    padding-right: 0;
  }
}

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

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

.topbar__logo {
  flex-basis: calc(520px /2);
}

.topbar__gnav {
  flex-basis: calc(90% - calc(520px / 1));
  text-align: right;
}

.topbar__contact {
  flex-basis: 220px;
}

.topbar__gnav ul li {
  display: inline-block;
  vertical-align:middle;
  margin: 0 0 0 72px;
}

.topbar__gnav ul li a {
  display:block;
  text-decoration:none;
  font-size: 20px;
  font-weight: bold;
}

  .home .topbar__gnav ul li a {
    color: initial;
  }

.topbar__contact a {
  display: block;
  border-radius: 200px;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  padding:22.5px 54px  ;

  display: block;
  background-position:92.5% 50% ;
  background-image: url(../img/icon__arrow1.png);
  background-repeat: no-repeat;
  background-size: 18px
}


@media only screen and (max-width:767px) {
  .topbar {
    padding: 0 0 9px;
  }

  .topbar__gnav ,
  .topbar__logo {
    flex-basis: calc(298px / 1.5);
    margin-left: 18px;
  }

  .topbar__gnav ,
  .topbar__contact {
    display: none!important
  }

}


/*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:-65%;
    bottom:0;
    width:65%;
    overflow-x:hidden;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
    transition:all .5s;
    opacity:0;
    background:#145399;
    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: 18px;
    padding:9px 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:16px;
    font-weight: 500;
    padding:24px 0;
    text-decoration:none;
    transition-duration:0.2s;
    border-bottom:1px solid rgba(255,255,255,0.5);
    color: #fff;
  }

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

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

    .home .toggle__btn span {
      background-color:#111e4b;
    }

    .toggle__btn.invert span {
      background-color: #111e4b!important;
    }

  .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:#fff
  }

    .open .toggle__btn.invert span {
      background-color:#fff!important;
    }

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


/*mainvisual*/
.home__mainvisual {
  width: 100%;
  height:645.0px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-image: url(../img/home__mainvisual.jpg);
  background-size:cover;
  z-index: 1;
}

.home__mainvisual__container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.home__mainvisual__title  {
  text-align: right;
}

.home__mainvisual__title img {
  width: calc(1669px /2);
  pointer-events: none;
  text-align: right;
}


@media only screen and (max-width:767px) {
  .home__mainvisual {
    width: 100%;
    box-sizing: border-box;
    height:calc(750px / 2);
    padding-left: 0.5em;
  }

  .home__mainvisual__title img {
    width: 100%;
  }

}


/*mainvisual*/
.mainvisual {
  width: 100%;
  height:350px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size:cover;
  z-index: 1;
}

.mainvisual__container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.mainvisual__title {
  flex-basis: 100%;
  text-align: center;
  margin: auto;
  position: relative;
  z-index: 12;
}

.mainvisual__title span {
  display: block;
  font-size: 81px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  font-style: italic;
  letter-spacing: 0.15em;
  margin: auto;
}


@media only screen and (max-width:767px) {
  .mainvisual {
    width: 100%;
    height:calc(450px / 2);
    z-index: 1;
  }

  .mainvisual__title span {
    font-size:calc(72px /2);
    letter-spacing: calc(0.25em /2);
  }
}


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

Section Setting

---------------------------------------------------------- */
/*bg*/
.bg1 {
  background-color: #fff
}

.bg2 {
  background-color: #efefef;
}

.color1 {
  color: #fff;
}

.color2 {
  color: #111e4b;
}


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

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,
.section__title span  {
  text-align: center;
}

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

.section__title span {
  display: block;
  letter-spacing: 0.25em;
  font-weight: 600;
}

  .section__title span.en {
    font-size:54px;
    font-style: italic;
    line-height: normal;
  }

  .section__title span.ja {
    font-size:20.5px;
    line-height: normal;
  }

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

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

  .section__title span.ja.xxlarge {
    font-size:45px;
    line-height: normal;
  }

.section__subtitle,
.section__subtitle span  {
  text-align: center;
  margin-top: 9px
}

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

.section__subtitle span {
  display: block;
  letter-spacing: 0.25em;
  font-weight: 500;
}

  .section__subtitle span.ja {
    font-size:18px;
    line-height: normal;
  }

@media only screen and (max-width:767px) {
  .section__title span {
    display: block;
    letter-spacing: calc(0.25em / 2);
  }

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


  .section__title span.ja {
    font-size:calc(20.5px / 1.205);
  }

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

  .section__title span.ja.xlarge {
    font-size:calc(36px / 1.36);
  }

  .section__title span.ja.xxlarge {
    font-size:calc(45px / 1.45);
  }

  .section__subtitle,
  .section__subtitle span  {
    margin-top: calc(9px / 1.5);
  }

  .section__subtitle span {
    letter-spacing:calc(0.25em / 2);
  }

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

}



/*breadnav*/
.breadnav {
  padding: 0 0 18px;
}

.breadnav p {
  font-size: 15.5px;
  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:0 0 calc(18px / 1) ;
  }

  .breadnav p {
    font-size: calc(15.5px / 1.12)
  }

}


/*cta*/
.cta {
  width: 100%;
  padding: 99px 0 72px;
  position: relative;
  background-repeat: no-repeat;
  background-position: 50% 50%;

  background-size: cover;
  z-index: 1;
}

.cta__container {
  background-color: #fff;
  padding-bottom: 72px;
}

.cta__detail {
  width: 100%;
  height: 100%;
  padding:45px 9px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: top;
  z-index: 123
}

.cta__img  {
  flex-basis: 65%;
  margin-left: -25%;
  margin-top: -72px;
}

.cta__text  {
  flex-basis: 60%;
  padding: 36px;
  padding-left: 54px;
}

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

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

.cta__logo img {
  width: calc(859px / 2);
}

.cta__text p {
  font-size: 16px;
  text-align: justify;
  font-weight: 400;
  margin:9px auto 45px
}

.cta__btn {
  width: 300px;
  text-align: center;
  margin:-36px auto auto;
  position: relative;
  z-index: 123;
}

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

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

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

  .cta__img  {
    flex-basis: 100%;
    margin-left: auto;
    margin-top: calc(-72px / 1);
  }

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

  .cta__title span {
    font-size: calc(36px/ 1.36)
  }

  .cta__logo img {
    width: 100%;
    margin: 18px auto;
  }

  .cta__text p {
    font-size: calc(16px / 1.16);
    margin:calc(9px / 1.5) auto calc(45px / 1.5)
  }

  .cta__btn {
    width: 95%;
    margin:calc(-36px / 2) auto auto;
  }
}

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

404 Setting

---------------------------------------------------------- */
.section.error404 .form__submit {
  margin:auto;
  width: 100%;
  text-align: center;
}

.section.error404 .form__submit a {
  margin:27px auto 18px;
  width: 400px;
  font-size: 18px;
  padding: 18px 90px;
  text-align: center;
}

@media only screen and (max-width:767px) {
  .section.error404 .form__submit a {
    width: 100%;
    margin:calc(27px / 1.5) auto calc(18px / 1.5);
    font-size: calc(18px / 1);
    padding: calc(18px / 1) 18px;
    box-sizing: border-box;
  }

}


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

Home Setting

---------------------------------------------------------- */
/*home__news*/
.home__news .news__container {
  padding-top: 45px;
}

.news__list {
  flex-basis: 31.5%;
  margin: 0 1%
}

.news__list__container dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: top;
  padding: 22.5px 0;
  border-bottom: 2px dotted #aaa;
}

.news__list__container dl dt {
  flex-basis: 15%;
  font-weight: 500;
}

.news__list__container dl dd {
  flex-basis: 85%;
  font-weight: 400;
}

.home__news__btn {
  width: 298px;
  text-align: center;
  margin:45px auto auto
}

.home__news__btn a {
  font-weight: 500;
}

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

  .news__list {
    flex-basis: 100%;
    margin: 0 auto;
  }

  .news__list__container dl {
    padding: calc(22.5px / 1.5) 0;
  }

  .news__list__container dl dt ,
  .news__list__container dl dd {
    flex-basis: 100%;
  }

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

}


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

Service Setting

---------------------------------------------------------- */
/*service__logo*/
.service__logo {
  margin: 27px auto ;
  text-align: center;
}

.service__logo img {
  max-width: 468px;
}

@media only screen and (max-width:767px) {
  .service__logo {
    margin:calc(27px / 2) auto;
  }

  .service__logo img {
    max-width: 256px;
  }

}

/*service__list*/
.service__list {
  display: flex;
  flex-wrap:wrap;
  justify-content: space-between;
  align-items: stretch;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

  .service__list1 {
    background-image: url(../img/service1__pc.jpg);
  }

  .service__list2 {
    background-image: url(../img/service2__pc.jpg);
  }

  .service__list3{
    background-image: url(../img/service3__pc.jpg);
  }

.service__text {
  flex-basis: 50%;
  background: rgba(255,255, 255, 0.9);
  padding: 90px;
}

.service__img {
  flex-basis: 50%;
  background: transparent;
  padding: 90px;
}

  .service__list:nth-child(odd) .service__text {
    order: 2;
  }

  .service__list:nth-child(odd) .service__img {
    order:1;
  }

  .service__list:nth-child(even) .service__text {
    order:1;
  }

  .service__list:nth-child(even) .service__img {
    order:2;
  }

.service__title {
  text-align: center;
  position: relative;
  margin: auto auto 27px;
}

.service__title span {
  display: block;
  text-align: center;
  margin: auto;
  letter-spacing: 0.035em;
  font-size: 29.5px;
  font-weight: bold;
}

.service__text p {
  text-align: justify;
}

@media only screen and (max-width:767px) {
  .service__list {
    justify-content: space-between;
    align-items: stretch;
  }

  .service__list1 ,
  .service__list2,
  .service__list3 {
    background-image:none;
  }

  .service__text {
    flex-basis: 100%;
    padding: calc(90px / 2) 18px;
    background-color: rgba(255,255, 255, 1);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
  }

    .service__list1 .service__text,
    .service__list2 .service__text ,
    .service__list3 .service__text {
      background-image: none
    }

  .service__img {
    flex-basis: 100%;
    padding: 0;
  }

  .service__list:nth-child(odd) .service__text ,
  .service__list:nth-child(even) .service__text {
    order: 1!important
  }

  .service__list:nth-child(odd) .service__img ,
  .service__list:nth-child(even) .service__img {
    order:2!important
  }

  .service__title {
    position: relative;
    z-index: 123;
    margin: auto auto calc(45px / 1.5);
  }

  .service__title span {
    letter-spacing: calc(0.05em /1.5);
    font-size: calc(25px / 1.275);
  }

  .service__title:after {
    position: absolute;
    content: '';
    top: calc(63px /1.35);
    left: calc(50% - calc(110px /2));
    width: 110px;
  }

  .service__text p {
    text-align: justify;
    position: relative;
  }

}


/*service__feature*/
.service__feature {
  background-color: #b9cae0;
  padding:36px 0;
  margin-top: 36px;
}

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

.service__feature__img {
  position: absolute;
  left: calc(-90px - 54px);
  top: 0;
  z-index: 345;
}

.service__feature__img img {
  width: 620px;
}

.service__feature__list dl {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height:120px;
  padding: 0 54px;
  padding-left:520px;
  padding-right: 90px;
  z-index: 123;
  margin: 18px auto;
  background-color: #fff;
  clip-path: polygon(2.5% 0, 100% 0%, 97.5% 100%, 0% 100%);
}

  .service__feature__list:after  {
    position: absolute;
    content: '';
    z-index: 1;
    width: 100%;
    height:120px;
    padding: 0 0;
    margin: 0 0;
    left: 9px;
    top: 9px;
    background-color: rgba(22, 118, 191, 0.1);
    clip-path: polygon(2.5% 0, 100% 0%, 97.5% 100%, 0% 100%);
  }

.service__feature__list dd {
  margin-left: 4.5px;
}
  
.service__feature__list dt span{
  display: block;
  font-style: italic;
  font-size:63px ;
  color: #4d6fa5;
  line-height: 1.789;
  font-weight: 600;
}

.service__feature__list dd span{
  display: block;
  font-size:30.25px ;
  font-weight: 600;
}

@media only screen and (max-width:767px) {
  .service__feature {
    padding:calc(36px / 1) 0 calc(36px /2);
    margin-top: calc(36px / 1);
  }
  .service__feature__img {
    position: relative;
    left: 0;
    top: -54px;
    margin: auto;
    margin-bottom: -54px;
    text-align: center;
    z-index: 345;
  }

  .service__feature__img img {
    width: 100%;
  }

  .service__feature__list dl {
    width: 90vw;
    box-sizing: border-box;
    height:auto;
    padding:9px 18px 9px 27px;
    margin: calc(18px /1.5) auto;
    clip-path: polygon(2.5% 0, 100% 0%, 97.5% 100%, 0% 100%);
  }

  .service__feature__list:after  {
    width: 86vw;
    height:auto;
    padding:30px 9px;
    margin: 0 ;
    left: calc(9px / 1.5);;
    top: calc(9px / 1.5);;
    clip-path: polygon(2.5% 0, 100% 0%, 97.5% 100%, 0% 100%);
  }

  .service__feature__list dt {
    flex-basis: 13%;
  }

  .service__feature__list dd {
    flex-basis: 86%;
    margin-left: calc(4.5px / 2);
  }
    
  .service__feature__list dt span{
    font-size:calc(63px / 2.75);
  }

  .service__feature__list dd span{
    font-size:calc(30.25px / 1.85);
  }

}


/*service__btn*/
.service__btn {/*
  width: 410px;*/
  margin: 72px auto calc(90px + 45px);
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 123;
}

.service__btn__list {
  width: 100%;
}

.service__btn__list li {
  display: inline-block;
  vertical-align: middle;
  width: 45%;
  margin: 0 1.5%;
}

.service__btn__list li a {
  width: 100%;
  padding: 24px;
  font-size: 22px;
}

@media only screen and (max-width:767px) {
  .service__btn {
    width: 100%;/*
    padding: 0 18px;
    box-sizing: border-box;
    */
    margin: calc(72px / 2) auto calc(calc(90px + 45px)/2);
  }

  .service__btn__list li {
    display: block;
    width: 100%;
    margin:18px auto;
  }

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

}


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

Sample Setting

---------------------------------------------------------- */
/*sample__container*/
.sample__container {
  padding: 18px 0;
}

.sample__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 54px 0;
  border-bottom: 1px solid #dedede;
}

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

.sample__list__text {
  flex-basis: 45%;
  order: 2;
}

.sample__list__img {
  flex-basis: 52.50%;
  order: 1;
}

.sample__list__title {
  text-align: left;
  margin-bottom: 9px;
}

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

.sample__list__text p {
  text-align: justify;
  font-size: 17px;
}

.sample .service__btn {
  max-width: 468px;
  margin: auto;
  text-align: center;
}

.sample .service__btn a {
  width: 100%;
  padding: 24px;
  font-size: 22px;
}


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

  .sample__list {
    padding: calc(54px / 1.5) 0;
  }

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

  .sample__list__img {
    flex-basis: 100%;
    order: 2;
    margin-top: 18px;
  }

  .sample__list__title {
    margin-bottom: calc(9px / 1.5);
  }

  .sample__list__title span {
    font-size: calc(20.5px / 1.2025);
  }

  .sample__list__text p {
    font-size: calc(17px / 1.175);
  }

  .sample .service__btn {
    max-width: 100%;
  }

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

}

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

Privacy Setting

---------------------------------------------------------- */
.privacy h3 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 1em;
}

@media only screen and (max-width:767px) {
  .privacy h3 {
    font-size: calc(18px / 1.18);
    margin-top: calc(1em / 1);
  }

}

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

News Setting

---------------------------------------------------------- 
.news__list {
  padding: 36px 0
}

.news__list dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: top;
  text-align: center;
  margin: auto;
  border-bottom: 1px dotted #222;
}

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

.news__list dl dt, 
.news__list dl dd {
  text-align: left;
  padding: 27px 0;
}

.news__list dl dt {
  flex-basis: 18%;
  font-weight: bold;
}

.news__list dl dd {
  flex-basis: 82%;
}

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

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

.news__list dl dd a {
  display: block;
}


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

  .home .news__list dl dt,
  .news__list dl dt {
    flex-basis: 100%;
    padding:calc(27px / 1.5) 0 0;
  }

  .home .news__list dl dd,
  .news__list dl dd {
    flex-basis: 100%;
    padding:0 0 calc(27px / 1.5) ;
  }

}

/*single__news*/
.single-news .section__title span.ja {
  font-size: 36px;
  letter-spacing: normal;
  text-align: left;
}

.single__date {
  display: block;;
  font-size: 16px;
  line-height: 1;
  color: #939292;
  margin-top: 36px;
  margin-bottom: 36px;
}

.entry__content p {
  font-size: inherit;
  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 figure img {
  max-width: 100%;
  height: auto;
}

.entry__content .wp-element-caption {
  margin: 9px 0 0 ;
  color: #666;
  font-size: smaller;
}

.single__news__btn a {
  display: block;
  text-decoration: none;
  margin: 54px auto auto;
  max-width: 298px;
}


@media only screen and (max-width:767px) {
  .single__news {
    padding-left: 1em;
    padding-right: 1em;
  }

  .single__date {
    font-size: 16px;
    margin-top: calc(36px / 1.5);
    margin-bottom:calc(36px / 1.5);
  }

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

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

  .entry__content .wp-element-caption {
    margin:calc(9px / 1.5) 0 0 ;
  }

  .single__news__btn a {
    display: block;
    text-decoration: none;
    padding-bottom: calc(18px / 1.5);
    margin: calc(36px / 1) auto calc(18px / 1.5);
    max-width: 100%;
  }

}

/*wp-pagenavi*/
.pagination {
  position: relative;
  text-align: center;
  margin:45px auto auto;
  z-index: 11111;
}

.wp-pagenavi  {
  clear:both;
  margin:27px auto 45px;
  text-align:center
}

.wp-pagenavi a, .wp-pagenavi span {
  border:1px solid #145399;
  color:#145399;
  background-color:#fff;
  padding:9px 18px;
  margin:0 9px;
  white-space:nowrap;
  border-radius:0;
  transition:0.2s ease-in-out;
  text-align:center;
  text-decoration:none;
}

.wp-pagenavi a:hover  {
  background-color:#145399;
  border-color:#145399;
  color:#fff
}

.wp-pagenavi span.current {
  background-color:#145399;
  border-color:#145399;
  color:#fff;
  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) {
  .pagination {
    margin:calc(45px / 1.5) auto auto;
  }

  .wp-pagenavi  {
    clear:both;
    margin:calc(27px / 1.5) auto calc(45px / 1.5)
  }

  .wp-pagenavi a, .wp-pagenavi span {
    font-size: calc(18px / 1.2);
    padding:calc(9px / 1.5) calc(18px / 1.25);
    margin:0 calc(9px  /1.5);
  } 
} 

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

Contact Setting

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

.contact__price__list {
  flex-basis: 48%;
  margin: 0 2%;
}

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

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

.contact__price__title {
  padding: 18px;
  text-align: center;
  background: #4675B1;
  background: linear-gradient(90deg,rgba(70, 117, 177, 1) 0%, rgba(20, 83, 153, 1) 100%);
  margin: auto;
}

.contact__price__title span {
  display: block;
  padding:13.5px 18px;
  font-weight: bold;
  color: #fff;
  font-size:32.5px;
  line-height: 1.6789;
}

  .contact__price__list:nth-child(2) .contact__price__title span {
    padding:40.5px 18px ;
  }

.contact__price__title small {
  display: block;
  padding:0 18px;
  font-weight: 500;
  color: #fff;
  font-size:24.5px;
  line-height: 1.34566789;
}

.contact__price__text {
  padding: 36px 54px;
  box-sizing: bold;
  background: #efefef;
}

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

.price__list dt {
  font-size: 22.5px;
  font-weight: bold;
  text-align: left;
  line-height: 1.23456789;
}

.price__list dd {
  font-size: 22.5px;
  font-weight: bold;
  text-align: right;
  vertical-align: middle;
  line-height: 1.23456789;
}

.price__list dd span.price {
  display: inline-block;
  vertical-align: middle;
  font-size: 41.5px;
}

.price__list dd span.price small {
  font-weight: normal;
  font-size: 22.5px;
  margin-left: 2.25px;
}
/*
.contact__price__text p {
  font-size: 18px;
  margin: 4.5px auto;
}
*/
@media only screen and (max-width:767px) {
  .contact__price__container {
    margin-top: calc(45px / 2);
  }

  .contact__price__list {
    flex-basis: 100%;
    margin:1% auto ;
  }

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

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

  .contact__price__title span ,
  .contact__price__list:nth-child(2) .contact__price__title span {
    padding:calc(13.5px / 2) calc(18px /1.5) ;
    font-size:calc(32.5px / 1.325);
  }

  .contact__price__title small {
    font-size:calc(24.5px / 1.345);
  }

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

  .price__list dt ,
  .price__list dd {
    font-size: calc(22.5px / 1.27);
  }

  .price__list dd span.price {
    font-size: calc(41.5px /1.415);
  }

  .price__list dd span.price small {
    font-size: calc(22.5px / 1.27);
  }
/*
  .contact__price__text p {
    font-size: calc(18px / 1.18);
    margin: calc(4.5px /1.5) auto;
  }
*/
}


/*wpcf7*/
.wpcf7   {
  padding-top: 36px;
}

.wpcf7 dl  {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 22.5px 18px;
}

  .wpcf7 dl:nth-child(odd)  {
    background: #fff;
  }

  .wpcf7 dl:nth-child(even)  {
    background: #f4f4f4;
  }

.wpcf7 dl dt {
  flex-basis: 30%;
  padding: 9px;
  font-weight: 700;
}

.wpcf7 dl dd {
  flex-basis: 70%;
  padding:9px 
}

.wpcf7 input[type="text"] ,
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100%;
}

.wpcf7 input[type="radio"] ,
.wpcf7 input[type="checkbox"] {
  margin-right: 9px;
}

.wpcf7-list-item  {
  display: block;
  margin-right: 18px;
  margin-left: 2.25px;
}

.wpcf7 .req {
  margin: -3px 0 0 13.5px ;
  display: inline-block;
  vertical-align: middle;
  background: #0067c0;
  padding:4.5px 13.5px ;
  text-align: center;
  color: #fff;
  font-size: 12px;
  line-height: 1.2
}

.wpcf7-acceptance {
  display: block;
  text-align: center;
  font-weight: 600;
  margin:27px auto auto;
}

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

.form__submit input[type=submit] {
  margin:27px auto 18px;
  width: 400px;
  font-size: 18px;
  padding: 18px 90px;
  text-align: center;
}

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

  .wpcf7 dl  {
    padding: calc(22.5px / 1.5) calc(18px / 1.5) ;
  }

  .wpcf7 dl dt {
    flex-basis: 100%;
    padding: 4.5px 4.5px 1.25px;
  }

  .wpcf7 dl dd {
    flex-basis: 100%;
    padding:1.25px 4.5px 4.5px 
  }

  .wpcf7 input[type="radio"] ,
  .wpcf7 input[type="checkbox"] {
    margin-right: calc(9px * 1.12);
  }

  .wpcf7-list-item  {
    width: 100%;
    margin-top:9px;
    margin-bottom:9px;
    margin-right: auto;
    margin-left: auto;
  }

  .wpcf7 .req {
    margin: -3px 0 0 13.5px ;
    padding:calc(4.5px / 1.5) calc(13.5px / 1.5);
    font-size: calc(12px / 1.1);
    line-height: 1.2
  }

  .wpcf7-acceptance {
    margin:calc(27px / 1.5) auto auto;
  }

  .form__submit input[type=submit] {
    width: 100%;
    margin:calc(27px / 1.5) auto calc(18px / 1.5);
    font-size: calc(18px / 1);
    padding: calc(18px / 1) calc(90px / 3);
  }

}


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

Thanks Setting

---------------------------------------------------------- */
.section.thanks .form__submit {
  margin:auto;
  width: 100%;
  text-align: center;
}

.section.thanks .form__submit a {
  margin:27px auto 18px;
  width: 400px;
  font-size: 18px;
  padding: 18px 90px;
  text-align: center;
}

@media only screen and (max-width:767px) {
  .section.thanks .form__submit a {
    width: 100%;
    margin:calc(27px / 1.5) auto calc(18px / 1.5);
    font-size: calc(18px / 1);
    padding: calc(18px / 1) 18px;
    box-sizing: border-box;
  }

}

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

Movie Setting

---------------------------------------------------------- */
/*movie__list*/
.movie__list__container {
  padding-top: 45px;
}

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

.movie__list li {
  flex-basis: 32%;
  margin: 13.5px 1%;
}

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

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

.movie__list li a {
  display: block;
  text-decoration: none;
  padding: 20.25px 36px;
  border-radius: 18.0px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  background: #fff;
  border: 1px solid #fff;
  display: block;
  background-position:95% 50% ;
  background-image: url(../img/icon__arrow2.png);
  background-size: 18px;
  background-repeat: no-repeat;
}

.movie__list li a:hover,
.movie__list li a:focus {
  display: block;
  text-decoration: none;
  padding: 20.25px 36px;
  border-radius: 18.0px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  background: #145399;
  color: #fff;
  border: 1px solid #145399;
  display: block;
  background-position:95% 50% ;
  background-image: url(../img/icon__arrow1.png);
  background-size: 18px;
  background-repeat: no-repeat;
}

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

  .movie__list li {
    flex-basis: 100%;
    margin: calc(13.5px /1.5) auto;
  }

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

  .movie__list li a {
    padding: calc(20.25px / 1.5) 18px;
    border-radius: calc(18px /1.5);
    background-size: calc(18px /1.25);
  }

  .movie__list li a:hover,
  .movie__list li a:focus {
    padding: calc(20.25px / 1.5) 18px;
    border-radius: calc(18px /1.5);
    background-size: calc(18px /1.25);
  }

}

/*post-password-form*/
.post-password-form {
  padding: 45px 0 0;
  text-align: center;
  margin-top: auto;
}

.post-password-form input[type=password] {
  margin: 18px auto;
}

.post-password-form input[type=submit] {
  margin:  auto;
  display:block;
  text-decoration: none;
  text-align:center;
  text-decoration:none;
  box-sizing:border-box;
  position:relative;
  cursor:pointer;
  box-shadow:none;
  outline:none;
  appearance:none;
  font-weight: 600;
  border-radius:90px;

  background-color: #145399;
  border: 1px solid #145399;
  text-align: center;
  color: #fff;
  font-size: 18px;
  line-height: normal;
  padding:9px 36px;
}


/*fancyboox*/
.fancybox-navigation .fancybox-button--arrow_left {
    top: 50vh!important
}

.fancybox-navigation .fancybox-button--arrow_right {
    top: 50vh!important
}


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

Footer Setting

---------------------------------------------------------- */
/*footer*/
.footer {
  padding: 54px 0 ;
}

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

}


/*footer__sitemap*/
.footer__sitemap {
  padding: 0;
  margin: auto;
  text-align: center;
}

.footer__sitemap__list li {
  display: inline-block;
  vertical-align: middle;
}

.footer__sitemap__list li  {
  margin: 0 27px;
}

.footer__sitemap__list li a {
  display: block;
  font-size: 16px;
}

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

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

  .footer__sitemap__list li  {
    margin: 4.5px auto;
    text-align: left;
    width: 48.5%;
  }

  .footer__sitemap__list li a {
    text-align: left;
    font-size: calc(16px / 1.2);
  }

}


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

.footer__text {
  flex-basis: 50%;
  text-align:left;
}

.footer__map {
  flex-basis: 50%;
}

.footer__logo {
  width: 464px;
  margin-bottom: 2em
}

.footer__text p  {
  width: 80%;
  font-size: 16px;
  line-height: 1.89
}
*/

.footer__copyright {
  text-align: center;
  font-size: 14px;
  margin: 18px auto auto;
  font-style: normal;
  color: rgba(0, 0, 0, 0.50);
}
/*
.footer__map iframe {
  width: 100%;
  height: 380px
}

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

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

  .footer__logo {
    text-align: center;
    margin: auto auto calc(2em / 1.5);
    width: calc(464px / 2);
  }

  .footer__text p  {
    width: 100%;
    font-size: calc(16px / 1.1);
  }

  .footer__copyright {
    margin:auto auto;
    text-align: center;
    font-size: calc(14px / 1.2);
    padding-bottom: 54px;
  }

  .footer__map iframe {
    height: calc(380px / 1.5)
  }

}

/*footer__nav*/
.footer__nav__sp {
  display: none;
}

@media only screen and (max-width: 960px) {
  .footer__nav__sp {
    position: fixed;
    width: 100%;
    z-index: 1234;
    display: block;
  }

  .footer__nav__sp ul  {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .footer__nav__sp ul li   {
    flex-basis: 100%;
    background-color: #fff;
  }

  .footer__nav__sp ul li a {
    display: block;
    text-decoration: none;
    height: 100%;
    font-weight: bold;
    font-size: calc(18px / 1.18);
    padding:18px;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
  }
  /*
  .footer__nav__sp ul li.tel  {
    background:#fff;
    color: #3e5531;
  }
*/
  .footer__nav__sp ul li.mail  {
    background:#145399;
    color: #fff;
  }
  
  .footer__nav__sp ul li a img,
  .footer__nav__sp ul li a span {
    display: inline-block;
    text-align: center;
    margin: auto;
    margin-right: 2.25px;
    font-size: 19px;
  }

  .footer__nav__sp ul li img {
    max-width:22.5px;
    vertical-align: middle;
  }

}