@charset "utf-8";

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

Common Setting

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

:root {

  --color1:#fff;
  --color2:#222;
  --color3:#9a1300;
  --color4:#f5f5f5;
}

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-family: "Noto Serif JP", serif;
  font-style: normal;
  letter-spacing: 0.075em;
}

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

/*font
.en {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}*/
.en {
  font-family: "GFS Didot", serif!important;
  font-weight: 400;
  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; 
}

a.blank {
  background-image: url(../img/icon__blank.png);
  background-repeat: no-repeat;
  background-position: right 22.5%;
  background-size: 30.5px;
  padding-right: 36px;
}


@media (min-width: 767px) {
  a[href^="tel:"] {
      pointer-events: none;
      cursor: default;
  }
}

@media only screen and (max-width: 768px) {
  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:768px) {
  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:768px) {
  .alignnone,
  .alignleft,
  .alignright,
  .aligncenter  {
    display:block;
    float:none;t
    ext-align:center;
    margin:1em auto
  }
}

/*loading*/
.home .loader-bg {
  width: 100vw;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 12345167891234516789;
  background-color: var(--color1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.home .loader {
  width: 128px;
  margin: auto;
  background: var(--color1);
  position: relative;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    filter:blur(25px)
  }

  to {
    opacity: 1;
    filter:blur(0px)
  }
}

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

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

/*btn*/
.btn {
  padding:11.25px 45px;
  line-height: 1.6789;
  font-size:1.6rem;
  text-align: center;
  position: relative;
  letter-spacing: 0.075em;
}

@media only screen and (max-width:768px) {
  .btn {
    padding:9px 18px;
    font-size:calc(2rem / 1.35);
    letter-spacing: calc(0.075em / 2);
  }

}


/*btn__primary*/
.btn.btn__primary {
  background-color: var(--color3);
  background-image: url(../img/icon__arrow2.png);
  background-position: 95% 50%;
  background-size:calc(37px / 2);
  background-repeat: no-repeat;
  border: 1px solid var(--color3);
  color: var(--color1);
}

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

/*btn__secondary*/
.btn.btn__secondary {
  background-color: var(--color1);
  background-image: url(../img/icon__arrow3.png);
  background-position: 95% 50%;
  background-size:calc(37px / 2);
  background-repeat: no-repeat;
  border: 1px solid var(--color3);
  color:var(--color3);
}

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

/*btn__tertiarily*/
.btn.btn__tertiarily {
  background-color:transparent;
  background-image: url(../img/icon__arrow2.png);
  background-position: 95% 50%;
  background-size:calc(37px / 2);
  background-repeat: no-repeat;
  border: 1px solid var(--color1);
  color: var(--color1);
}

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

/*btn__white*/
.btn.btn__white {
  background-color:var(--color1);
  background-image: url(../img/icon__arrow1.png);
  background-position: 95% 50%;
  background-size:calc(37px / 2);
  background-repeat: no-repeat;
  border: 1px solid var(--color1);
  color: var(--color2);
}

  .btn.btn__white:hover,
  .btn.btn__white:focus  {
    color:var(--color2);
  }

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

}

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

Table Setting

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

table.w25 th {
  width: 25%;
}

table.w30 th {
  width: 30%;
}

table.w35 th {
  width: 35%;
}

table.w40 th {
  width: 40%;
}

table.w50 th {
  width: 50%;
}

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

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

table.table__bordered tr th ,
table.table__bordered tr td {
  text-align: left;
  padding: 27px 0;
  vertical-align: top;
  border-bottom: 1px dotted #aaa;
}

  table.table__bordered tr th {
    font-weight: 600;
  }

  table.table__bordered tr td {
    font-weight: 300;
  }

@media only screen and (max-width:768px) {
  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*/
.wp-block-table table ,
.wp-block-table tr th ,
.wp-block-table tr td {
  /*
  border: 1px solid #ccc;
  */
  border: none;
  border-collapse: collapse;
}


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

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

  .table__responsive tr th,
  .table__responsive tr td,
  .table__bordered.table__responsive tr th,
  .table__bordered.table__responsive tr td {
    width: 100%;
    box-sizing: border-box;
    position: relative;
    display: block;
    padding-left: 0;
    padding-right: 0;
    border: none;
  }

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

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

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

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

Layout Setting

---------------------------------------------------------- */
html {
  font-size: 62.5%;
  /* font-sizeは16pxの62.5%の10px */
}

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%;
  /*
  min-width: 1180px;
  */
  max-width: 1920px;
  color: #222;
  font-size: 1.6rem;/*
  min-width: 1400px;*/
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 2.2;
  padding:0;
  margin:auto;
}

main {
  position: relative;
  background: transparent;/*
  z-index: 12;*/
}

.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:1180px;
  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:768px) {
  body  {
    min-width:1px;
    font-size:calc(2rem / 1.35);
    line-height: 1.89;
    max-width:100%;
    -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
  }

}

/*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*/
header {
  z-index: 12345;
  position: fixed;
  width: 100%;
  margin: auto;
}

/*topbar*/
.topbar {
  box-sizing: border-box;
  margin: 0 -1em;
  padding: 9px 0;
  z-index: 3456;
  transition: color 0.4s ease-out;
}

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

.topbar__container .logo {
  flex-basis:96px;
}

.topbar__container .logo a {
  display: block;
  text-indent: -9999px;
  background-image: url(../img/logo.svg);
  background-position: 0 50%;
  background-size:96px;
  background-repeat: no-repeat;
  width:96px;
}

.topbar__gnav {
  flex-basis: calc(100% - calc(573px/ 2));
  text-align: right;
}

  .home .topbar__container .logo a {
    display: none;
  }

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

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

  .topbar__gnav {
    flex-basis: calc(100% - calc(573px/ 4));
  }

  .home .topbar__container .logo a {
    display: none;
  }

  .topbar .logo {
    flex-basis:calc(96px / 1.5);
  }

  .topbar__container .logo a {
    display: block;
    text-indent: -9999px;
    background-image: url(../img/logo.svg);
    background-position: 0 50%;
    background-size:calc(96px / 1.5);
    background-repeat: no-repeat;
    width:calc(96px / 1.5);
  }

}

/*gnav__pc*/
.gnav__pc ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.gnav__pc ul li  {
  margin-left:36px ;
}

.gnav__pc ul li span {
  display: block;
  text-align: center;
  margin:auto;
  line-height: 1.456789;
}

.gnav__pc ul li a {
  display: block;
  text-decoration: none;
}

.gnav__pc ul li span.ja {
  font-size: 1.7rem;
}

.gnav__pc ul li a.line  {
  display: block;
  text-indent: -9999px;
  background-image: url(../img/icon__line__w.png);
  background-position: 0 50%;
  background-size:calc(36px / 1.25);
  background-repeat: no-repeat;
  width:calc(36px / 1.25);
  min-height: 40px;
}

@media only screen and (max-width:768px) {
  .gnav__pc {
    display: none
  }

}

/*is-show*/
.home__header.is-view ,
.header.is-view {
  background: var(--color1);
  top: 0;
  animation: fadeIn .5s ease .25s 1 normal backwards;
  z-index: 1234567890;
  transition: 0.3s;
  width: 100%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home__header.is-view .topbar__container .logo a ,
.header.is-view .topbar__container .logo a {
  display: block;
  text-indent: -9999px;
  background-image: url(../img/logo.svg);
  background-position: 0 50%;
  background-size:96px;
  background-repeat: no-repeat;
  width:96px;
}

.topbar .gnav__pc ul li a  {
  color:var(--color1)!important;
}

.home__header.is-view .topbar .gnav__pc ul li a,
.header.is-view .topbar .gnav__pc ul li a  {
  color:initial!important;
}

.home__header.is-view .topbar .gnav__pc ul li a.line,
.header.is-view .topbar .gnav__pc ul li a.line   {
  text-indent: -9999px;
  background-image: url(../img/icon__line.png);
  background-position: 0 50%;
  background-size:calc(36px / 1.25);
  background-repeat: no-repeat;
  width:calc(36px / 1.25);
  min-height: 40px;
}

@media only screen and (max-width:768px) {
  .home__header.is-view .topbar__container .logo a ,
  .header.is-view .topbar__container .logo a {
    display: block;
    text-indent: -9999px;
    background-image: url(../img/logo.svg);
    background-position: 0 50%;
    background-size:calc(96px / 1.5);
    background-repeat: no-repeat;
    width:calc(96px / 1.5);
  }
}


/*gnav_pc*/
nav.gnav__sp {
  display: none
}

@media only screen and (max-width:768px) {
  .gnav__pc {
    display: none;
  }

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

  .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:var(--color1);
    box-sizing:border-box;
    padding:27px 0;
    text-decoration:none;
    transition-duration:0.2s;
    border-bottom:1px solid rgba(255,255,255,0.5);
  }

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

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

    .header.is-view .toggle__btn span {
      background-color:var(--color3);;
    }

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

    .header.is-view .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)
  }

  /*gnav__sp ul*/
  .gnav__sp ul li span {
    line-height: 1.456789;
  }

  .gnav__sp ul li a {
    display: block;
    text-decoration: none;
  }

  .gnav__sp ul li span {
    padding-left: 1em;
    padding-right: 1em;
    font-size: calc(2rem / 1.25);
  }

}

/*mainvisual*/
.mainvisual {
  width: 100%;
  height: 100%;
  background-image: url(../img/mainvisual__pc.png);
  background-repeat: no-repeat;
  background-position:-90px -90px;
  background-size: 1920px;
  position: relative;
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.mainvisual__container {
  flex-basis: 100%;
  height:800px;
  padding: calc(90px + 90px + 90px + 36px) 0 ;
}

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

.mainvisual__title span {
  display: block;
  line-height: 1.34567789;
}

.mainvisual__title span.en {
  font-size: 8rem;
  margin-left: -0.05em;
  letter-spacing: 0.2345em;
  font-weight: 400;
}

.mainvisual__title span.ja {
  font-size: 2.4rem;
  margin-top: 1em;
  letter-spacing: 0.2345em;
}

p.mainvisual__text {
  font-size: 1.7rem;
  margin-top:5em;
}

@media only screen and (max-width:768px) {
  .mainvisual {
    width: 100%;
    height: 100%;
    background-image: url(../img/mainvisual__sp.png);
    background-repeat: no-repeat;
    background-position:right top;
    background-size: 100%;
  }

  .mainvisual__container {
    flex-basis: 100%;
    height:100%;
    padding:calc(90px + 90px) 1em 0 ;
  }

  .mainvisual__title span.en {
    font-size: calc(8rem / 1.9);
    letter-spacing: calc(0.2345em / 1.5);
  }

  .mainvisual__title span.ja {
    font-size: calc(2.4rem / 1.35);
    margin-top: calc(1em /1.5);
    letter-spacing: calc(0.2345em / 1.5);
  }

  p.mainvisual__text {
    font-size:calc(1.7rem / 1.17);
    margin-top: calc(5em /1.5);
  }

}



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

Section Setting

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

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

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

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

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

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

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

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

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

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

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


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

/*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:768px) {
  .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 {
  position: relative;
}

.section__title:before {
  position: absolute;
  content: '';
  width: 75%;
  height: 1px;
  margin-top: 0;
  left: -77%;
  top: 37.25%;
  border-bottom:2px solid #222 ;
}

  .cta .section__title:before {
    position: absolute;
    content: '';
    width: 75%;
    height: 1px;
    margin-top: 0;
    left: -80%;
    top: 37.25%;
    border-bottom:2px solid var(--color1) ;
  }

.section__title span {
  display: block;
  text-align: left;
  line-height: 1.789;
}

.section__title span.en {
  font-size: 6rem;
  letter-spacing: 0.152em;
}

  .section__title span.en.xlarge {
    font-size: 7rem;
    letter-spacing: 0.175em;
  }

  .section__title span.en.xxlarge {
    font-size: 8rem;
    letter-spacing: 0.2em;
  }

.section__title span.ja {
  font-size: 2.025rem;
}

  .section__title span.ja.xlarge {
    font-size: 2.25rem;
  }

  .section__title span.ja.xxlarge {
    font-size: 2.4rem;
  }

@media only screen and (max-width:768px) {
  .section__title:before {
    position: absolute;
    content: '';
    width: 75%;
    height: 1px;
    margin-top: 0;
    left: -77%;
    top: 37.25%;
    border-bottom:2px solid #222 ;
  }

  .cta .section__title:before {
    position: absolute;
    content: '';
    width: 75%;
    height: 1px;
    margin-top: 0;
    left: -80%;
    top: 37.25%;
    border-bottom:2px solid var(--color1) ;
  }

  .section__title span.en {
    font-size: calc(6rem / 1.702);
    letter-spacing:calc(0.152em / 1.5)
  }

  .section__title span.en.xlarge {
    font-size:calc(7rem / 1.801);
    letter-spacing: calc(0.175em / 1.5)
  }

  .section__title span.en.xxlarge {
    font-size: calc(8rem / 1.9);
    letter-spacing: calc(0.2em / 1.5)
  }

  .section__title span.ja {
    font-size: calc(2.025rem / 1.2025);
  }

  .section__title span.ja.xlarge {
    font-size: calc(2.25rem / 1.225);
  }

  .section__title span.ja.xxlarge {
    font-size: calc(2.4rem/ 1.24);
  }

}


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

.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:768px) {
  .breadnav {
    padding:calc(36px / 1.5) 0;
  }

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

}

/*error404*/
.section.error404 {
  padding-top: 0;
  margin-top: -4.5em;
  padding-bottom: calc(90px + 45px);
}

.error404 .section__btn {
  margin: 36px auto 0;
  text-align: center;
  width: 350px
}

@media only screen and (max-width:768px) {
  .section.error404 {
    margin-top:4.5em;
    padding-bottom: calc(calc(90px + 45px) /1.5);
  }

  .error404 .section__btn {
    margin: calc(36px / 1.5) auto 0;
    text-align: center;
    width: 75%
  }

}

/*cta*/
.cta {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 123;
  border-radius: 180px 0 180px 0 ;
  background-color: var(--color1);
  padding:calc(90px + 90px + 18px) 72px;
}

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

.cta__text {
  flex-basis:500px;
  color: var(--color1);
}

.cta__text p {
  font-size: 1.8rem;
  margin-top: 2.5em;
  text-align: left;
}

.cta__btn {
  width: 356px;
  margin-top: 2em;
}

.cta__btn a  {
  width: 356px;
  margin-top: 2em;
}

@media only screen and (max-width:768px) {
  .cta {
    background-image: url(../img/bg__cta.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 123;
    border-radius: calc(180px / 1.5) 0 calc(180px / 1.5) 0 ;
    padding:calc(calc(90px + 90px + 18px) / 2) 18px;
  }

  .cta__text {
    flex-basis:100%;
  }

  .cta__text p {
    font-size: calc(2rem / 1.35);
    margin-top: calc(2.5em / 1.5);
  }

  .cta__btn {
    width: 100%;
    margin-top: calc(2rem / 1.5);;
  }

  .cta__btn a  {
    width: 100%;
    margin-top:calc(2rem / 1.5);;
  }
}


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

Block Setting

---------------------------------------------------------- 
.wp-block-column ul,
.wp-block-column ol  {
  margin-left: 1em;
}

.wp-block-column .has-text-align-right  {
  text-align: right;
}

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

Home Setting

---------------------------------------------------------- */
body.home,
body.home #wrapper {
  overflow-x: hidden;
}

/*home__mainvisual*/
.home__mainvisual {
  width: 100%;
  position: relative;
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  z-index: 234;
  margin-bottom: -7.5em;
}

.home__mainvisual__container {
  flex-basis: 100%;
}

.home__mainvisual__title {
  text-align: center;
  margin: auto auto 1.25em;
}

.home__mainvisual__title img {
  pointer-events: none;
}

@media only screen and (max-width:768px) {
  .home__mainvisual {
    margin-bottom: auto;
  }

  .home__mainvisual__title {
    margin: auto auto -0.5em;
  }

}

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

.home__mainvisual__message p {
  display: block;
  text-align: center;
  margin: auto;
  font-size:1.85rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.12345em;
}

@media only screen and (max-width:768px) {
  .home__mainvisual__message {
    margin:5mm 0 0;
    text-align: left;
  }

  .home__mainvisual__message p {
    text-align: left;
    font-size:calc(2rem / 1.35);
    letter-spacing: calc(0.12345em / 1.5);
  }
}


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

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

.home__company__img {
  order: 1;
  flex-basis: 70%;
  margin-left: -20%;
}

.home__company__img img {
  border-radius: 180px;
}

.home__company__title span {
  display: block;
  text-align: left;
}

.home__company__title span.en {
  font-size: 8.9rem;
  letter-spacing: 0.125em;
  line-height: 1.56789;
}

.home__company__title span.ja {
  font-size: 2.4rem;
  letter-spacing: 0.125em;
  margin-left:10%;
}

.home__company__text p {
  font-size: 1.5rem;
  margin-top: 2.25em;
  margin-left: 10%;
  line-height: 2;
}

.home__company__btn {
  margin-top: 4.5em;
  max-width: 350px;
  margin-left: 10%;
}

@media only screen and (max-width:768px) {
  .home__company {
    padding-bottom:calc(90px / 2);
  }
  
  .home__company__text {
    order:2;
    flex-basis:100%;
    box-sizing: border-box;
    margin: 0;
    padding: 2.5em 1em;
  }

  .home__company__img {
    order:1;
    flex-basis:calc(100% + 2em);
    margin-left: -1em;
    margin-right: -1em;
  }

  .home__company__img img {
    border-radius:0;
    object-fit: cover;
    width: 100%;
    height: 350px;
    border-radius:calc(180px / 2) 0 calc(180px / 2) 0 ;
  }

  .home__company__title span.en {
    font-size: calc(8.9rem / 1.99);
    text-align: left;
    letter-spacing: calc(0.125em / 1.5);
  }

  .home__company__title span.ja {
    text-align: left;
    font-size: calc(2.4rem / 1.24);
    letter-spacing: calc(0.125em / 1.5);
    margin-left:0;
  }

  .home__company__text p {
    font-size: calc(2rem / 1.35);
    margin-top:calc(2.25em / 1.5);
    margin-left:0;
  }

  .home__company__btn {
    margin-top: calc(4.5em / 2);
    max-width: 100%;
    margin-left: 0
  }

}


/*home__service*/
.home__service {
  padding-top: 0;
  padding-bottom: 45px;
}

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

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

.home__service__img {
  order: 2;
  flex-basis: 70%;
  margin-right: -20%;
}

.home__service__img img {
  border-radius: 180px;
}

.home__service__title span {
  display: block;
  text-align: left;
}

.home__service__title span.en {
  font-size: 8.9rem;
  letter-spacing: 0.125em;
  line-height: 1.56789;
}

.home__service__title span.ja {
  font-size: 2.4rem;
  letter-spacing: 0.125em;
}

.home__service__text p {
  font-size: 1.5rem;
  margin-top: 2.25em;
  line-height: 2;
}

.home__service__btn {
  margin-top: 4.5em;
  max-width: 350px;
}

@media only screen and (max-width:768px) {
  .home__service {
    padding-top: 0;
    padding-bottom: calc(calc(90px + 45px)/2);
  }

  .home__service__text {
    order: 1;
    flex-basis:100%;
    box-sizing: border-box;
    margin: 0;
    padding: 2.5em 1em;
  }

  .home__service__img {
    order:1;
    flex-basis:calc(100% + 2em);
    margin-left: -1em;
    margin-right: -1em;
  }

  .home__service__img img {
    border-radius:0;
    object-fit: cover;
    width: 100%;
    height: 350px;
    border-radius:calc(180px / 2) 0 calc(180px / 2) 0 ;
  }

  .home__service__title span.en {
    font-size: calc(8.9rem / 1.99);
    letter-spacing: calc(0.125em / 1.5);
  }

  .home__service__title span.ja {
    font-size: calc(2.4rem / 1.24);
    letter-spacing: calc(0.125em / 1.5);
    margin-left:0;
  }

  .home__service__text p {
    font-size: calc(2rem / 1.35);
    margin-top:calc(2.25em / 1.5);
    margin-left:0;
  }

  .home__service__btn {
    margin-top: calc(4.5em / 2);
    max-width: 100%;
    margin-left: 0
  }
}



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

.home__works__container {
  padding-top: 45px;
}

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

.home__works__btn {
  margin:2em auto auto;
  text-align: center;
  max-width: 350px;
}

@media only screen and (max-width:768px) {
  .home__works__head {
    padding-left: 1em;
    padding-right: 1em;
    box-sizing: border-box;
  }

  .home__works__container {
    padding-top: calc(45px /1.5);
  }

  .home__works__btn {
    margin:calc(2em / 1.5)auto auto;
    max-width: 100%;
    padding-left: 1em;
    padding-right: 1em;
    box-sizing: border-box;
  }

}


/*slide*/
.slide {
  z-index: 1234!important;
  overflow-x: hidden;
}

.slide__container {
  padding: 45px 0;
  margin: 0;
}

.slide__container div  {
  border-radius: 27px;
}

.slide__container div img {
  border-radius: 27px;
}

.slick-img img {
  height: auto;
  opacity: 0.3; 
  transform: scale(.8);
  transition: opacity .5s, transform .5s;
  width: 100%;
}

  /* 中央のスライド */
  .slider .slick-center {
    width:100%;
    margin:0 auto;
    overflow:hidden;
  }

  .slider .slick-center img {
    border-radius: 27px;
    transition:0.5s all;
    opacity: 1;
    transform: scale(1);
  }

  .slider .slick-center img:hover {
    border-radius: 27px;
    transform:scale(1.25,1.25);
    transition:0.5s all;
  }


@media only screen and (max-width:768px) {
  .slide__container {
    padding: calc(45px / 1.5) 0;
  }

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

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

  .slider .slick-center img:hover {
    border-radius: calc(27px / 1.5) ;
  }

}

/*slide-arrow*/
.slide-arrow {
  bottom: 0;
  cursor: pointer;
  margin: auto;
  position: absolute;
  z-index: 200;
  top:0;
  width: calc(200px/ 3.25);
}

.prev-arrow {
  left: 2em;
}

.next-arrow {
  right: 2em;
}

@media only screen and (max-width:768px) {
  .slide-arrow {
    width: calc(200px / 4.5);
  }

  .prev-arrow {
    left: 0.25em;
  }

  .next-arrow {
    right: 0.25em
  }
}

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

Copmany Setting

---------------------------------------------------------- */
/*company__list*/
.company__list dl  {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: top;
  padding: 27px 0;
  border-bottom: 1px dotted #aaa;
}

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

.company__list dl dt ,
.company__list dl dd  {
  font-size: 1.8rem;
}

.company__list dl dt  {
  font-weight: 600;
  flex-basis: 25%;
}

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

@media only screen and (max-width:768px) {
  .company__list dl  {
    padding: calc(27px / 1.5) 0;
  }

  .company__list dl dt ,
  .company__list dl dd  {
    font-size: calc(2rem / 1.35);
  }

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

}

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

Works Setting

---------------------------------------------------------- */
/*works__nav*/
.works__nav {
  margin: -4.5em auto auto;
}

.works__nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: top;
}

.works__nav__list li {
  margin: 0 9px;
}

.works__nav__list li a {
  display: block;
  padding:7.25px 90px ;
  font-size:1.6rem;
  letter-spacing: 0.075em;
  line-height: 1.6789;
  text-align: center;
  position: relative;
  text-decoration: none;
}

.works__nav__list li a {
  background-color: var(--color1);
  background-image: url(../img/icon__arrow3.png);
  background-position: 95% 50%;
  background-size:calc(37px / 2);
  background-repeat: no-repeat;
  border: 1.5px solid var(--color3);
  color:var(--color3);
}

  .works__nav__list li a:hover,
  .works__nav__list li a:focus  {
    opacity: 1;
    background-color: var(--color3);
    background-image: url(../img/icon__arrow2.png);
    background-position: 95% 50%;
    background-size:calc(37px / 2);
    background-repeat: no-repeat;
    border: 1.5px solid var(--color3);
    color: var(--color1);
  }

.works__nav__list li.active a {
  background-color: var(--color3);
  background-image: url(../img/icon__arrow2.png);
  background-position: 95% 50%;
  background-size:calc(37px / 2);
  background-repeat: no-repeat;
  border: 1.5px solid var(--color3);
  color: var(--color1);
}

  .works__nav__list li.active a:hover,
  .works__nav__list li.active a:focus  {
    color: var(--color1);
  }

@media only screen and (max-width:768px) {
  .works__nav {
    margin:4.5em auto auto;
  }

  .works__nav__list  {
    margin: 2.5em auto -2.5em;
  }

  .works__nav__list li {
    flex-basis: 100%;
    margin: 4.5px 0px;
  }

  .works__nav__list li a {
    padding:calc(7.25px / 1.5) 18px ;
    font-size:calc(2rem / 1.35);
    letter-spacing: calc(0.075em / 1.5);
  }

  .works__nav__list li a {
    background-size:calc(37px / 3);
  }

  .works__nav__list li a:hover,
  .works__nav__list li a:focus  {
    background-size:calc(37px / 3);
  }

  .works__nav__list li.active a {
    background-size:calc(37px / 3);
  }

}


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

.works__list {
  position: relative;
  flex-basis: 31.85%;
  margin: 0 1.1% 4em;
}

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

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

.works__list a {
  display: block;
  text-decoration: none;
}

.works__list__img,
.works__list__img img {
  text-align: center;
  margin: auto;
  border-radius: 18px;
}

  .works__list__img {
    width:100%;
    margin:0 auto;
    overflow:hidden;
    box-shadow: 0 0 20px rgba(100, 100, 100, 0.15);
  }

  .works__list__img img{
    transition:0.5s all;
  }

  .works__list__img img:hover{
    transform:scale(1.2,1.2);
    transition:0.5s all;
  }

.works__list__cat  {
  position: absolute;
  left: 1em;
  top: 0.5em;
  z-index: 345;
  width: 100%;
}

.works__list__cat span.cat {
  display: inline-block;
  vertical-align: middle;
  background: var(--color3);
  font-size: 1.2rem;
  padding: 4.25px 9px;
  margin-right:2%;
  color: var(--color1);
  line-height: 1.2345678;
  text-align: center;
}

.works__list__text {
  margin:0.75em auto auto;
  text-align: center;
}
/*
.works__list__text span.cat {
  display: inline-block;
  vertical-align: middle;
  width: 20%;
  text-align: center;
  background: var(--color3);
  font-size: 1.2rem;
  margin-right: 1%;
  padding: 4.25px ;
  color: var(--color1);
  line-height: 1.2345678;
  text-align: center;
}
*/
.works__list__text .title {
  display: inline-block;
  vertical-align: middle;
  width: 70%;
  font-size: 1.79rem;
  font-weight: 600;
}

@media only screen and (max-width:768px) {
  .works__list {
    flex-basis: 100%;
    margin:2em auto auto;
  }

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

  .works__list:nth-child(odd) {
    margin-left:auto;
  }

  .works__list:nth-child(even) {
    margin-right:auto;
  }

  .works__list__img,
  .works__list__img img {
    border-radius: calc(18px / 1.5);
  }

  .works__list__text {
    margin:calc(0.75em /1.5) auto auto;
  }

  .works__list__cat span.cat {
    text-align: center;
    font-size: 1.2rem;
    margin:1em auto auto;
    margin-right:2%;
    padding: calc(4.25px / 1) calc(9px / 1);
  }

  .works__list__text .title {
    width: 100%;
    font-size: calc(2rem / 1.35);
  }

}


/*single__works*/
.section.single__works {
  padding-top: 0;
}

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

/*single__works__head*/
.single__works__head {
  padding: 99px 0;
}

.single__works__title {
  position: relative;
}

.single__works__title:before {
  position: absolute;
  content: '';
  width: 75%;
  height: 1px;
  margin-top: 0;
  left: -76%;
  top: 47.25%;
  border-bottom:1.5px solid #222 ;
}

.single__works__title span {
  display: block;
  font-size: 4.05rem;
  line-height: 1.789;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0.125em;
}

.single__works__head span.cat {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  background: var(--color3);
  font-size: 1.45rem;
  margin-right: 1%;
  padding: 6.25px 36px;
  color: var(--color1);
  line-height: 1.2345678;
  text-align: center;
}

@media only screen and (max-width:768px) {
  .single__works__head {
    padding: calc(99px / 1.5) 1em;
  }

  .single__works__title span {
    font-size: calc(4.05rem / 1.5);
    line-height: 1.56789;
    letter-spacing: calc(0.125em / 1.5);
  }

  .single__works__head span.cat {
    font-size: calc(1.75rem / 1.175);
    margin:0.75em 0 0;
    padding: calc(6.25px / 1.5) 18px;
  }

}


/*single__entry__body*/
.single__entry__body {
  padding: 90px 0 0;
  margin-bottom: -36px;
}

.single__entry__figure {
  padding:0 0 63px;
  margin:0 auto;
  text-align: center;
}

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

.single__entry  {
  padding-bottom: 90px;
}

.single__entry h2,
.single__entry h2.wp-block-heading {
  font-size: 3.6rem;
  font-weight: bold;
  display: inline-block;
  line-height: 1.789;
  margin-bottom: 0.5em;
  margin-top:2.5em;
  border-bottom: 3.5px solid var(--color3);
}

.single__entry h3,
.single__entry h3.wp-block-heading {
  font-size: 2.7rem;
  margin-top: 0.25em;
  font-weight: bold;
}

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

.single__entry p {
  font-size: 1.8rem;
  line-height: 2
}

@media only screen and (max-width:768px) {
  .single__entry__body {
    padding:calc(90px / 1.5) 0 0;
    margin-bottom: -18px;
  }

  .single__entry__figure {
    padding:0 0 calc(63px / 1.5);
    margin:0 auto;
  }

  .single__entry__figure img {
    border-radius: calc(36px / 1.5);;
  }

  .single__entry  {
    padding-bottom: calc(90px / 1.5);
  }

  .single__entry h2,
  .single__entry h2.wp-block-heading {
    font-size: calc(3.6rem / 1.5);
    margin-top:calc(2.5em / 1.5);
    line-height: 1.56789;
    margin-bottom: calc(0.5em / 1.5);
    border-bottom: calc(3.5px / 1.5) solid var(--color3);
  }

  .single__entry h3,
  .single__entry h3.wp-block-heading {
    font-size: calc(2.7rem / 1.35);
    line-height: 1.56789;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
  }

  .single__entry p {
    font-size:calc(2rem / 1.35);
  }

}

/*recent__works*/
.section.recent__works {
  position: relative;
  margin-bottom: calc(-90px - 45px);
  padding-bottom:calc(180px + 45px);
}

.recent__works__head {
  padding-left: 1em;
  padding-right: 1em;
  box-sizing: border-box;
}

.recent__works__list {
  margin-top: 5em;
}

.section.recent__works .works__list__container {
  margin-bottom: 0;
  padding-bottom: 0;
}

.recent__works__btn {
  margin: 1.25em auto auto ;
  text-align: center;
  max-width: 356px;
}

@media only screen and (max-width:768px) {
  .section.recent__works {
    position: relative;
    margin-bottom: calc(-45px - 27.5px);
    padding-bottom:calc(calc(180px + 45px) / 1.5);
    padding-left: 1em;
    padding-right: 1em;
  }

  .recent__works__list {
    margin-top: calc(5em / 1.5);
    margin-left: -1em;
    margin-right: -1em;
    width: calc(100% + 2em);
    box-sizing: border-box;
  }

  .recent__works__btn {
    margin: calc(1.25em * 1.5) auto -1.5em ;
    max-width: 100%;
  }

}


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

Service Setting

---------------------------------------------------------- */
/*service*/
.section.service {
  padding-bottom: calc(90px + 36px);
}

@media only screen and (max-width:768px) {
  .section.service {
    padding-bottom: calc(calc(90px + 36px) / 1.5);
  }

}

/*service__list*/
.service__list {
  width: 100%;
  height:100%;
  overflow:hidden;
}

  .service__list.service__list1 {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 1920px;
  }

  .service__list.service__list2 {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 100%;
  }

  .service__list.service__list3 {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 100%;
  }

  .service__list.service__list4 {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 100%;
  }

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

.service__list__text {
  flex-basis: 40%;
  padding: calc(54px + 54px) 0;
}

.service__list__img {
  flex-basis:80%;
}

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

  .service__list.service__list:nth-child(odd) .service__list__img {
    order: 2;
    margin-right: -20%;
  }

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

  .service__list.service__list:nth-child(even) .service__list__img {
    order: 1;
    margin-left: -30%;
    margin-right: 10%;
  }

.service__list__title span {
  display: block;
  text-align: left;
  font-size: 4.5rem;
  color: var(--color1);
  letter-spacing: 0.25em;
}

.service__list__text p {
  text-align: left;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  line-height: 2.345;
  margin-top: 2.5em;
  font-weight: 300;
  color:var(--color1) ;
}

.service__list__btn {
  max-width: 356px;
  text-align: center;
  margin: 2.5em 0 0 ;
}

.service__list__img img {
  pointer-events:none;
  filter: drop-shadow(0 0 20px rgba(100,100,100, 0.35));
}

@media only screen and (max-width:768px) {
  .service__list.service__list1 {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .service__list.service__list2 {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .service__list.service__list3 {
    background-position: 0 0!important;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .service__list.service__list4 {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
  }

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

  .service__list__text {
    flex-basis: 100%;
    padding: calc(calc(54px + 54px) / 2) 1em;
  }

  .service__list.service__list:nth-child(odd) .service__list__text,
  .service__list.service__list:nth-child(even) .service__list__text {
    order: 1;
  }

  .service__list.service__list:nth-child(odd) .service__list__img ,
  .service__list.service__list:nth-child(even) .service__list__img {
    order: 2;
    flex-basis:300%;
  }

    .service__list.service__list:nth-child(odd) .service__list__img {
      margin-left:-20%;
      margin-right:-30%;
    }

    .service__list.service__list:nth-child(even) .service__list__img {
      margin-left:-30%;
      margin-right:-20%;
    }

  .service__list__img {
    margin-bottom: -15em;
  }

  .service__list__title span {
    font-size:calc(4.5rem / 1.5);
    letter-spacing:calc(0.25em / 1.5);
  }

  .service__list__text p {
    font-size: calc(2rem / 1.35);
    line-height: 2;
    letter-spacing: calc(0.15em / 1.5);
    margin-top: calc(2.5em / 1.5);
  }

  .service__list__btn {
    max-width: 100%;
    margin: calc(2.5em / 1.5) 0 0 ;
  }

}


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

News Setting

---------------------------------------------------------- */
/*news*/
.section.news {
  padding-top: 0;
  margin-top: -4.5em;
  padding-bottom: calc(90px + 45px);
}

@media only screen and (max-width:768px) {
  .section.news {
    margin-top:4.5em;
    padding-bottom: calc(calc(90px + 45px) / 1.5);
  }

}

/*news__list*/
.news__list dl  {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: top;
  padding: 36px 0 ;
  border-bottom: 1px dotted #aaa;
}

.news__list dl dt ,
.news__list dl dd {
  font-size: 1.8rem;
}

.news__list dl dt {
  flex-basis: 20%;
  font-weight:boold;
}

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

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

  .news__list dl dt ,
  .news__list dl dd {
    font-size: calc(2rem / 1.35);
  }

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

/*single-news*/
.section.single__news {
  padding-top: 0;
}

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

/*single__works__head*/
.single__news__head {
  padding: 99px 0;
}

.single__news__title {
  position: relative;
}

.single__news__title:before {
  position: absolute;
  content: '';
  width: 75%;
  height: 1px;
  margin-top: 0;
  left: -76%;
  top: 47.25%;
  border-bottom:1.5px solid #222 ;
}

.single__news__title span {
  display: block;
  font-size: 4.05rem;
  line-height: 1.789;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0.125em;
}

.single__news__date span.date {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  margin-left: 0.25em;
  font-size: 1.75rem;
  color: var(--color3);
  line-height: 1.2345678;
}

@media only screen and (max-width:768px) {
  .single__news__head {
    padding: calc(99px / 1.5) 1em;
  }

  .single__news__title span {
    font-size: calc(4.05rem / 1.5);
    line-height: 1.56789;
    letter-spacing: calc(0.125em / 1.5);
  }

  .single__news__date span.date {
    margin: 0;
    font-size: calc(1.75rem / 1.175);
  }
}

/*recent__news*/
.section.recent__news {
  position: relative;
  margin-bottom: calc(-90px - 45px);
  padding-bottom:calc(180px + 45px);
}

.recent__news__head {
  padding-left: 1em;
  padding-right: 1em;
  box-sizing: border-box;
}

.section.recent__news .news__list__container {
  margin-top: 4.5em;
  background: var(--color1);
  padding: 90px;
  border-radius: 180px 0 180px 0;
}

.recent__news__btn {
  margin: 2.5em auto auto ;
  text-align: center;
  max-width: 356px;
}

@media only screen and (max-width:768px) {
  .section.recent__news {
    margin-bottom: calc(-45px - 22.5px);
    padding-bottom:calc(calc(180px + 45px) / 2);
    padding-left: 1em;
    padding-right: 1em;
  }

  .section.recent__news .news__list__container {
    margin-top: calc(4.5em / 1.5);
    margin-left: -1em;
    margin-right: -1em;
    width: calc(100% + 2em);
    box-sizing: border-box;
    padding: calc(90px / 10) 18px calc(90px / 3);
    border-radius:18px;
  }

  .recent__news__btn {
    margin: calc(2.5em / 1.5) auto auto;
    max-width: 100%;
  }

}


/*wp-pagenavi*/
.wp-pagenavi  {
  clear:both;
  text-align:center;
  position: relative;
  margin: 2.5em auto auto;
  z-index: 123;
}

.wp-pagenavi a, .wp-pagenavi span {
  border:1px solid var(--color2);
  background-color:#fff;
  padding:7.25px 13.5px;
  margin:0 4.5px;
  white-space:nowrap;
  border-radius:0;
  transition:0.2s ease-in-out;
  text-align:center;
  text-decoration:none;
}

.wp-pagenavi a {
  color:var(--color2);
}

.wp-pagenavi a:hover  {
  background-color:var(--color2);
  border-color:var(--color2);
  color:#fff!important
}

.wp-pagenavi span.current {
  background-color:var(--color2);
  border-color:var(--color2);
  color:#fff!important;
  font-weight:bold
}

.wp-pagenavi .pages {
  border:none;
}

.wp-pagenavi .extend {
  border:none;
  padding:7.25px 0;
  margin:0 2.25px;
}

.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  border:none!important;
}

@media only screen and (max-width:767px) {
  .wp-pagenavi  {
    clear:both;
    margin: calc(2.5em / 1.5) auto auto;
  }

  .wp-pagenavi .pages {
    display: none;
  }

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


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

Contact Setting

---------------------------------------------------------- */
/*entry__form*/
.section.contact  {
  margin-top: -7.25em;
  padding-bottom:45px;
}

.section.contact .wpcf7 {
  font-size: 1.8rem;
}

@media only screen and (max-width:768px) {
  .section.contact  {
    margin-top:4.5em;
    padding-bottom:calc(45px / 1.5);
  }

  .section.contact .wpcf7 {
    font-size:calc(2rem / 1.35)
  }

}

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

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

.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: var(--color1);
}

.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 .req {
  margin: -3px 0 0 9px ;
  display: inline-block;
  vertical-align: middle;
  background: #444;
  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;
}

.form__accept .wpcf7-list-item-label {
  margin-left: 0.75em;
}

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

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

@media only screen and (max-width:768px) {
  .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(2rem / 1.35)
  }

  .wpcf7 input[type=radio],
  .wpcf7 input[type=checkbox] {
    transform:scale(1.5)
  }

  .wpcf7 .req {
    padding:4.5px 9px;
    font-size:1rem
  }

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

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

}


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

Thanks Setting

---------------------------------------------------------- */
.section.thanks {
  padding-top: 0;
  margin-top: -4.5em;
  padding-bottom: calc(90px + 45px);
}

.thanks .section__btn {
  margin: 36px auto 0;
  text-align: center;
  width: 350px
}

@media only screen and (max-width:768px) {
  .section.thanks {
    margin-top:4.5em;
    padding-bottom: calc(calc(90px + 45px) /1.5);
  }

  .thanks .section__btn {
    margin: calc(36px / 1.5) auto 0;
    text-align: center;
    width: 75%
  }

}


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

Footer Setting

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

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

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

.footer__sitemap__list ul li {
  margin: 0 36px;
  text-align: center;
}

.footer__sitemap__list ul li a {
  text-decoration: none;
  display: block;
  font-weight: bold;
  font-size: 1.8rem;
}

.footer__sitemap__list ul li.line img {
  width: calc(36px / 1.25);
}

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

  .footer__sitemap__list ul li {
    margin:9px 0;
    flex-basis: 42%;
    text-align: left;
  }

  .footer__sitemap__list ul li a {
    font-size:calc(2rem / 1.35);
    font-weight: 500;
  }

  .footer__sitemap__list ul li.line  {
    display: none;
  }

}

/*footer__text*/
.footer__text__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding: calc(90px + 45px) 0;
}

.footer__logo {
  text-align: center;
  margin: auto;
  flex-basis: 180px;
}

.footer__text {
  flex-basis:calc(100% - 300px);
  color: var(--color1);
}

.footer__text p {
  line-height: 1.789;
}

.footer__text p.name {
  font-size: 1.8rem;
  font-weight: bold;
}

.footer__text p.info {
  font-size: 1.6rem;
  opacity: 0.74;
  font-weight: 400;
}

.footer__text address.copy {
  font-size: 1.3rem;
  font-style: normal;
  margin-top: 1em;
  opacity: 0.65;
  font-weight: 400;
}

@media only screen and (max-width:768px) {
  .footer__text__container {
    padding: calc(calc(90px + 45px) / 2) 0;
  }

  .footer__logo ,
  .footer__text {
    flex-basis: 100%
  }

  .footer__text {
    margin-top: 2em;
    text-align: center;
  }

  .footer__logo img {
    width: 100px;
  }

  .footer__text p.name {
    font-size: calc(2rem / 1.35);
  }

  .footer__text p.info {
    font-size: calc(1.6rem / 1.2);
  }

  .footer__text address.copy {
    font-size: calc(1.3rem / 1.15);
  }

}


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

inview

---------------------------------------------------------- */
/*fadeIn_up*/
.fadeIn_up {
  transition: 2.0s;
  opacity: .1;
  transform: translate(0, 60px);
}

.fadeIn_up.is-show {
  transition: 2.0s;
  opacity: 1.0;
  transform: translate(0, 0px);
}
