@charset "utf-8";
/*
Theme Name: inflorescence theme
Description: Studio Impala
Auther: inflorescence
Version: 1.0
*/




/*==========================================
 General
===========================================*/
:root {
  --key-color: #215040;
  --key-color2: #215040;
  --bg-color: #F1EEEA;
  --bg-color2: #DFDED7;
  --font-sans-en: "Roboto", sans-serif;
  --font-sans-en-space: 0.03em;
  --font-sans-jp: "Noto Sans JP", sans-serif;
  --font-serif: "Gilda Display", serif;
  --font-serif-space: 0.01em;
  --text-color: #000000;
  --text-color-sp: #000000;
  --other-font-color: #1d1d1d;
  --btn-hover-color: #215040;
  --contents-width: 1460px
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
}

html {
  font-size: 62.5%;
  -webkit-overflow-scrolling: touch;
  min-height: 100vh;
}

html.is-fixed {
  overflow: hidden;
}

body {
  font-family: var(--font-sans-jp);
  background: var(--bg-color);
  margin: 0;
  padding: 0;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  font-size: 1.6rem;
  min-height: 100vh;
}

body {
  opacity: 0;
  transition: opacity 1s linear;
}

body.is-loaded {
  opacity: 1;
}

body.is-fadeout {
  opacity: 0;
}

body.en-US {
  font-family: var(--font-sans-en);
}

/*-
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--key-color);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;

}

.page-transition.is-active {
  opacity: 1;
  pointer-events: none;

}
*/
/*-------------------
/* 画面を覆うオーバーレイ */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 0s linear 500ms;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
}

.page-transition.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 500ms ease, visibility 0s;

}

.navi.fade-out {
  opacity: 0;
  transition: opacity 500ms ease;
}

body.is-leaving {
  transition: opacity 500ms ease;
  opacity: 1;
}


@media only screen and (max-width: 768px) {
  body {
    min-width: auto;
  }

  html.is-fixed,
  html.is-fixed body {

    height: 100%;
    overflow: hidden;

  }
}

/*==========================================
LOADING
===========================================*/
#loading {
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  transition: all 1s ease-out;
}

#loading span {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -25px;
  margin-top: -25px;
  width: 50px;
  height: 50px;
  border: 1px solid #555;
  border-right: 1px solid transparent;
  border-radius: 30px;
  animation: loading 1s linear infinite;

}

#wrapper {
  display: block;
  opacity: 1;
}

.main-wrap {
  opacity: 0;
}


@keyframes loading {
  to {}

  from {
    transform: rotate(360deg);
    transform-origin: 50% 50%;
  }

}




/*==========================================
 scroll animation
===========================================*/
.fade-in-up {
  opacity: 0;
  transition: all 0.5s 0.2s linear;
  transform: translateY(20px);
}

.fade-in-up-delay {
  opacity: 0;
  transition: all 0.5s 0.4s linear;
  transform: translateY(20px);
}

.fade-in-up.active,
.fade-in-up-delay.active {
  opacity: 1;
  transform: translateY(0px);
}

.fade-in-left {
  opacity: 0;
  transition: all 1s 1.5s ease-out;
  transform: translateX(-20px);
}

.fade-in-left.active,
.fade-in-left.active {
  opacity: 1;
  transform: translateX(0px);
}

.fade-in {
  opacity: 0;
  /*filter: blur(16px);*/
  transition: all 2s 1s linear
}

.fade-in.active {
  filter: blur(0);
  opacity: 1;
}







.zoom-out {

  width: 500px;
  overflow: hidden;

}

.zoom-out img {
  transform: scale(1.2);
}

.zoom-out.active {

  transition: all 1s;
}

.zoom-out.active img {
  transform: scale(1);
}


/*==========================================
text & link
===========================================*/

a {
  color: var(--text-color);
  text-decoration: underline;
  text-underline-offset: 6px;
}

a:link {
  color: var(--text-color);
}

a:visited {
  color: var(--text-color);
}

a:hover {
  color: var(--text-color);
}

a:active {
  color: var(--text-color);
}






h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
}

h1 {
  width: 100%;
  letter-spacing: 0.01em;
  font-size: 4.8rem;
  color: var(--key-color);
  font-weight: 400;
  display: inline-block;
  line-height: 1.25;
}

.page-template-index-case h1,
.page-template-index-brand h1 {
  margin-bottom: 50px;
}




h2 {
  width: 100%;
  letter-spacing: 0.01em;
  font-size: 3.8rem;
  color: var(--key-color);
  font-weight: 400;
  display: inline-block;
  line-height: 1.25;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

h2.page-scrol {
  padding-top: 80px;
  margin-top: -80px;
}

h3 {
  width: 100%;
  letter-spacing: 0.01em;
  font-size: 2.8rem;
  color: var(--key-color);
  font-weight: 400;
  display: inline-block;
  line-height: 1.25;
  letter-spacing: 0.01em;

}

h3.top {
  width: 100%;
  font-size: 2.4rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
  display: inline-block;
  line-height: 1.4;
  border-left: none;
  padding-left: 0;
  text-align: center;
}

h4 {
  width: 100%;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  display: inline-block;
  line-height: 1.4;
  text-align: left;
}



@media only screen and (max-width: 768px) {
  h1 {
    font-size: 3.6rem;
    margin-bottom: 60px;
  }

  .page-template-index_news h1 {
    margin-bottom: 10px;
  }

  h1 span {
    font-size: 1.3rem;
    margin-top: 15px;
  }

  h2 {
    font-size: 2.4rem;
    line-height: 1.4;
    margin-bottom: 30px;
  }

  h3 {
    font-size: 2.3rem;
    line-height: 1.6;
  }




}

br.pc-none {
  display: none;
}

br.sp-none {
  display: block;
}

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

  br.sp-none {
    display: none;
  }
}

/*==========================================
 header
===========================================*/
header {
  width: 100%;
  position: absolute;
  position: relative;
  text-align: center;

}


header .logo {
  top: 40px;
  left: 50px;
  width: 155px;
  position: absolute;
  z-index: 900;
}




header .logo a:hover {
  opacity: 1;
}


header .logo svg {
  width: 155px;
  height: auto;
  color: #1d1d1d;
}

header .logo-white svg {
  color: #fff;
}

header .logo-black svg {
  color: #1d1d1d;
}

.home header .logo svg {
  color: #fff;
}


@media only screen and (max-width: 768px) {
  #header {
    width: 100%;
    min-width: auto;
    min-width: initial;
    height: auto;
  }

  header .logo {
    top: 25px;
    left: 30px;
    width: 120px;
  }

  header .logo svg {
    width: 120px;
  }


}

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


/*==========================================
 Footer
===========================================*/
footer {
  width: 100%;
  background: var(--bg-color2);

}

footer .footInner {
  width: 100%;
  padding: 60px 50px;
  margin: 0 auto;

}

footer .footInner .foot-nav {
  display: flex;
  margin-bottom: 240px;
}

footer .footInner .logo-sp-only {
  display: none;
}


footer .footInner .foot-nav li {
  margin-right: 60px;
  font-family: var(--font-sans-en);
  letter-spacing: 0.06em;
  position: relative;
  font-size: 1.5rem;
}

footer .footInner .foot-nav li a,
footer .foot-bottom-right .policy a {
  color: #1d1d1d;
  text-decoration: none;
}

footer .footInner .foot-nav li a::after,
footer .foot-bottom-right .policy a::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 0;
  height: 1px;
  background-color: var(--text-color);
  transition: .3s;
  bottom: -5px;
}

footer .footInner .foot-nav li a:hover::after,
footer .foot-bottom-right .policy a:hover::after {
  width: 100%;
}

footer .footInner .foot-nav li a.active:hover::after,
.foot-bottom-right .policy a.active:hover::after {
  width: 0;
  pointer-events: none;
}

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

  footer .footInner {
    padding: 40px 30px 30px;
  }

  footer .footInner .logo-sp-only {
    display: inline-block;
    margin-bottom: 60px !important;

  }

  footer .footInner .logo-sp-only a img {
    width: 120px;
    height: auto;
    filter: invert(100%);
  }

  footer .footInner .foot-nav {
    flex-direction: column;
    margin-bottom: 100px;
  }

  footer .footInner .foot-nav li {
    margin-bottom: 30px;
    font-size: 1.4rem;
  }

  footer .footInner .foot-nav li:last-child {
    margin-bottom: 0;
  }

  footer .footInner .foot-nav li a:hover::after,
  footer .foot-bottom-right .policy a:hover::after {
    width: 0;
  }
}



footer .foot-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

footer .foot-bottom-left,
footer .foot-bottom-right {
  display: flex;
}

footer .foot-bottom-left .logo {
  width: 140px;
  margin-right: 60px;
}

footer .foot-bottom-left .logo img {
  width: 100%;
  height: auto;
  filter: invert(100%);
  margin-top: -3px;
}

footer .foot-bottom-left .insta {
  width: 20px;
  margin-right: 0;
}

footer .foot-bottom-left .insta img {
  width: 100%;
  height: auto;
  filter: invert(100%);
}

footer .foot-bottom-right .policy {
  font-size: 1.3rem;
  font-family: var(--font-sans-en);
  letter-spacing: var(--font-sans-en-space);
  margin-right: 100px;
  color: #000;
  margin-top: 8px;
  position: relative;
}

footer .foot-bottom-right .policy a {
  color: #1d1d1d
}

footer .foot-bottom-right .copyright {
  font-size: 1.3rem;
  font-family: var(--font-sans-en);
  letter-spacing: var(--font-sans-en-space);
  color: #1d1d1d;
  margin-top: 8px;
}

@media only screen and (max-width: 768px) {
  footer .foot-bottom {
    flex-direction: column;
  }

  footer .foot-bottom-left {
    flex-direction: column;
    margin-bottom: 40px;
  }

  footer .foot-bottom-left .logo {
    display: none;
  }

  footer .foot-bottom-right {
    justify-content: space-between;
  }

  footer .foot-bottom-right .policy,
  footer .foot-bottom-right .copyright {
    margin-top: 0;
    font-size: 1.2rem;
  }

}

/*==========================================
 Navigation
===========================================*/

.menu {
  position: fixed;
  right: 50px;
  top: 50px;
  /*width: 26px;
	height: 24px;*/
  width: 60px;
  height: 16px;
  cursor: pointer;
  z-index: 999;
  padding: 0;
 
}

.menu .bar {
  display: inline-block;
  width: 60px;
  margin: 0 auto;
  height: 1px;
  min-height: 1px;
  max-height: 1px;
  background-color: #000;
  position: absolute;
  /*top: 20px;
	left: 20px;*/
  right: 0;
 transition: background-color 0.25s ease-in-out;
}

.home .menu .bar  {
  background-color: #fff;
}

#bar01 {
  width: 60px;
  top: 0px;
}

#bar02 {
  width: 60px;
  top: 14px;
}

.home .menu .bar-black,
.page-template-page-company .menu .bar-black,
.page-template-page-company-en .menu .bar-black {
  background-color: #000;
}


.home .menu .bar-white,
.page-template-page-company .menu .bar-white,
.page-template-page-company-en .menu .bar-white {
  background-color: #fff;
}



.menu.is-hidden {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}



.menuOpen #bar01 {
  transition: .4s;
  transform: translateY(2px) rotate(-45deg);
}

.menuOpen #bar02 {
  transition: .4s;
  transform: translateY(-10px) rotate(45deg);
}

.menu.menuOpen .bar.bar-black {
   background-color: #fff; 
  } 
.menu.menuOpen .bar {
  background-color: #fff;
}

@media only screen and (max-width: 768px) {
  .menu {
    right: 30px !important;
    top: 32px;
    width: 40px;
    height: 40px;
  }

  #bar01 {
    width: 40px;
    top: 0px;
  }

  #bar02 {
    width: 40px;
    top: 11px;
  }

  .menuOpen #bar01 {
    transition: .4s;
    transform: translateY(6px) rotate(-45deg);
  }

  .menuOpen #bar02 {
    transition: .4s;
    transform: translateY(-5px) rotate(45deg);
  }
}





nav.nav {
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  transition: opacity linear 0.6s 0.1s;
  width: 100%;
  height: 100%;
  text-align: right;
  /*transform: translateY(-100%);*/
  background: var(--key-color);
  opacity: 0;
  display: flex;
  justify-content: flex-end;
  box-sizing: border-box;
  z-index: 990;
}

nav.nav.active {
  visibility: visible;
  opacity: 1;
}


nav .nav-logo .logo {
  top: 40px;
  left: 50px;
  width: 155px;
  position: absolute;
  z-index: 900;
}

nav .nav-logo .logo a:hover {
  opacity: 1;
}

nav .nav-logo .logo svg {
  width: 155px;
  height: auto;
  transition: 0.2s ease-in-out;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  nav .nav-logo .logo {
    top: 25px;
    left: 30px;
    width: 120px;
  }

  nav .nav-logo .logo svg {
    width: 120px;
  }

}


nav.nav .nav-wrap {
  width: 290px;
  box-sizing: border-box;
  justify-content: unset;
  text-align: left;
  display: block;
  margin-top: 150px;
  position: relative;
}

ul.main-nav {
  margin-bottom: 40vh
}

ul.main-nav li {
  padding: 0;
  font-weight: 400;
  display: block;
  font-family: var(--font-sans-en);
  font-size: 2rem;
  line-height: 100%;
  letter-spacing: 0.075em;
  color: #fff;
  margin-bottom: 50px;
}



ul.main-nav li a {
  display: inline-block;
  position: relative;
  color: #fff !important;
}

ul.main-nav li a::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: .3s;
  bottom: -5px;
}

ul.main-nav li a:hover::after {
  width: 100%;
}

ul.main-nav li a.active:hover::after {
  width: 0;
  pointer-events: none;
}

ul.main-nav li {
  opacity: 1;
  transform: translate(0);
}

nav.nav ul li a {

  backface-visibility: hidden;
  text-decoration: none;
  color: #333;
  cursor: pointer;
}

nav .nav-column-sub {}

@media only screen and (max-width: 768px) {
  nav.nav .nav-wrap {
    width: 100%;
    margin-left: 50px;
  }

  ul.main-nav {
    margin-bottom: 260px;
  }

  ul.main-nav li {
    font-size: 1.8rem;
    margin-bottom: 50px;
  }

  nav .nav-column-sub {
    position: absolute;
    bottom: 20%;
  }

  ul.main-nav li a:hover::after {
    width: 0;
  }

}

.lang-switcher{
  display:none;
}



.lang-switcher ul {
  display: flex;
  margin-bottom: 44px;

}

.lang-switcher ul li {
  color: #fff !important;
  font-size: 1.5rem;
  font-family: var(--font-sans-en);
  letter-spacing: 0.06em;
}

.lang-switcher ul li.en-US {
  padding-right: 24px;

}



.lang-switcher ul li a {
  color: #fff !important;
  position: relative;

}



.lang-switcher ul li a::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: .3s;
  bottom: -3px;
}

.lang-switcher ul li a:hover::after {
  width: 100%;
}

.lang-switcher ul li a.active:hover::after {
  width: 0;
  pointer-events: none;
}

.bogo-language-switcher .current a {
  opacity: 0.6;
  pointer-events: none
}

@media only screen and (max-width: 768px) {
  .lang-switcher ul li a:hover::after {
    width: 0;
  }
}

/*
.single-case .lang-switcher ul li {
  color: #fff;
}

.single-case .lang-switcher ul li.en-US:after {
  color: #fff;
}

.single-case .lang-switcher ul li a {
  color: #fff;
}

.page-template-page-whatwedo .lang-switcher ul li,
.page-template-page-whoweare .lang-switcher ul li {
  color: #fff;
}

.page-template-page-whatwedo .lang-switcher ul li.en-US:after,
.page-template-page-whoweare .lang-switcher ul li.en-US:after {
  color: #fff;
}

.page-template-page-whatwedo .lang-switcher ul li a,
.page-template-page-whoweare .lang-switcher ul li a {
  color: #fff;
}
  */






/*  top main image slider
================================================== */

#topVisual {
  position: relative;
  width: 100vw;
  height: 100svh;
  overflow: hidden;
  margin-bottom: 10vw;
}

.slider,
.slider .slick-list,
.slider .slick-track,
.slider .slick-slide {
  height: 100%;
}

.slider {
  opacity: 0.1;
  box-sizing: border-box;
  position: relative;
  z-index: 0;
  z-index: 100;
  transition: opacity .5s linear;
  width: 100vw;
  height: 100svh;
}

.slider.pc-only {
  display: block;
}

.slider.sp-only {
  display: none;
}

.slider.slick-initialized {
  opacity: 1;
}

.slick-slide {
  position: relative;
  text-align: center;
  overflow:hidden;

}

.slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.1);
  /*filter: blur(10px);*/
  transition:all 3s ease;

}

.slider.is-zoomout .slick-slide.slick-active img{
  transform: scale(1);
  filter: blur(0);
}
#topVisual .hero-copy {
  width: 420px;
  width: 25%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -12.5%;
  margin-top: -5%;
  z-index: 300
}

#topVisual .hero-copy img {
  width: 100%;
  height: auto;
}



@media only screen and (max-width: 768px) {
  #topVisual {
    margin-bottom: 90px;
  }



  .slider {
    width: 100% !important;
    height: 100dvh !important;
    max-height: initial;
    min-height: initial;
  }

  .slick-slide img {
    width: 100% !important;
    height: 100dvh !important;
    object-fit: cover;
    display: block;

  }

  #topVisual .hero-copy {
    width: 240px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -120px;
    margin-top: -18.5px;
    z-index: 300
  }


  .slider.pc-only {
    display: none;
  }

  .slider.pc-only.slick-initialized {
    display: none;
  }

  .slider.sp-only {
    display: block;
  }

  .slider.sp-only.slick-initialized {
    display: block;
  }

  .slider img {
    height: 100vh;
  }


}

/*  contents page header image
================================================== */

.page-Header {
  position: relative;
  width: 100vw;
  height: auto;
  overflow: hidden;
  margin-bottom: 180px;

}

.page-Header img {
  width: 100% !important;
  height: 100dvh !important;
  object-fit: cover;
  display: block;
 transform: scale(1.1) ;
  /*filter: blur(10px);*/
  transition:all 3s 0.1s ease;
  overflow: hidden;
}

.page-Header img.active {
  transform: scale(1);
  /*filter: blur(0);*/
}




.page-Header h1.page-Header {
  position: absolute;
  top: 50%;
  left: 120px;
  margin-top: -1em;
  margin-left: 0;
  font-size: 4.8rem;
  font-size: 3vw;
  color: #fff;

}





@media only screen and (max-width: 768px) {
  .page-Header {
    margin-bottom: 90px;
  }

  .page-Header img {
    width: 100% !important;
    height: 100dvh !important;
    object-fit: cover;
    display: block;

  }

  .page-Header h1.page-Header {
    font-size: 3.6rem;
    left: 30px;
  }


  .page-Header img {
    height: 100vh;
  }


}


/*Layout
================================================== */
.contentsArea {
  width: 100%;
  box-sizing: border-box;
  position: relative;
}



.contents-wrapper {
  width: 100%;
  max-width: var(--contents-width);
  padding: 0 50px;
  margin: 0 auto;
}

.contents-wrapper.page {
  margin-top: 340px;
}

.col-2 {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.col-2 .col-2-title {
  width: 37.5%;
}

.col-2 .col-2-contents {
  width: 62.5%;
}



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

  .contents-wrapper.page {
    margin-top: 200px;
  }

  .col-2 .col-2-title {
    width: calc(100% - 500px);
    /* 残りの幅 */
  }

  .col-2 .col-2-contents {
    width: 600px;
  }

  .col-2 .col-2-title h2 {
    padding-top:8px;
    font-size: 2.4rem;
  }

  .col-2 .col-2-title h1 {
   
    font-size: 2.4rem;
  }
}

@media only screen and (max-width: 768px) {
  .col-2 {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .col-2 .col-2-title {}

  .col-2 .col-2-title h2 {
    font-size: 3rem;
    margin-bottom: 60px;
  }

  .col-2 .col-2-contents {
    width: 100%
  }
}


.single-case .contentsArea {
  overflow: hidden;
}




.contentsArea section {
  box-sizing: border-box;
  padding: 0;
  padding-bottom: 180px;
  margin-bottom: 180px;
  border-bottom: 1px solid #D6D6D6
}

.contentsArea section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contentsArea section p {
  font-size: 1.5rem;
  line-height: 2.2;
  letter-spacing: 0.03em;
  font-weight: 300;
  margin-bottom: 40px;
  color: var(--text-color);
  text-align: left;
}

.en-US .contentsArea section p {
  font-size: 1.6rem;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.contentsArea section p.large {
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 2.6;
  margin-bottom: 40px;
}

.en-US .contentsArea section p.large {
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  line-height: 2.1;
}

.contentsArea section p.caption {
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  line-height: 1.7;
  margin-bottom: 20px;
  padding-left: 1.2em;
  position: relative;
}

.en-US .contentsArea section p.caption {
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  padding-left: 0;
}

.contentsArea section p.caption:before {
  content: "※";
  width: 1em;
  height: 1em;
  top: 0;
  left: 0;
  color: var(--text-color);
  display: block;
  position: absolute;
}

.en-US .contentsArea section p.caption:before {
  display: none;
}

.contentsArea section .policy-wrap p {
  margin-bottom: 80px !important;
}

.col-2-contents ul li:before,
.col-1-contents ul li:before {}


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

  .contents-wrapper {
    padding: 0 30px;
  }

  .contentsArea section {
    padding-bottom: 90px;
    margin-bottom: 90px;
  }

  .contentsArea section p {
    font-size: 1.5rem;
    line-height: 2.0;
    letter-spacing: 0.01em;
    font-weight: 300;
    color: var(--text-color-sp);
    letter-spacing: 0.01em;
    margin-bottom: 40px;
  }

  .en-US .contentsArea section p {
    font-size: 1.6rem;
    letter-spacing: 0.03em;
    line-height: 1.75;
    font-weight: 300;
  }

  .contentsArea section p.large {
    font-size: 1.6rem;
    line-height: 2.1;
    letter-spacing: 0.01em;
    margin-bottom: 40px;
  }

  .en-US .contentsArea section p.large {
    font-size: 1.7rem;
    letter-spacing: 0.03em;
    line-height: 1.9;
  }

  .contentsArea section p.caption {
    line-height: 1.5;
  }

  .contentsArea section .policy-wrap p {
    margin-bottom: 40px !important;
  }
}

.contentsArea section p:last-child {
  margin-bottom: 0;
}




p.center {
  text-align: center !important;
}


.align-left {
  text-align: left !important;
}

.align-right {
  text-align: right !important;
}

.en .contentsArea section p {
  font-size: 1.7rem;
}

.contentsArea section p.lead-copy {
  font-size: 2.6rem;
  line-height: 1.7;
  margin-bottom: 60px;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.en-US .contentsArea section p.lead-copy {
  line-height: 1.5;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 768px) {
  .contentsArea section p.lead-copy {
    font-size: 2rem;
    line-height: 1.7;

    letter-spacing: 0.05em;
  }

  .en-US .contentsArea section p.lead-copy {
    font-size: 2.2rem;
    line-height: 1.5;
    font-weight: 300;
    letter-spacing: 0.05em;
  }
}



.fullImg img {
  width: 100%;
  height: auto;
}



@media screen and (max-width: 480px) {
  .fullImg {
    margin-bottom: 80px;
  }

  .fullImg div {
    width: 100%;
    float: none;
    margin-bottom: 30px;
    text-align: center;
  }

  .fullImg div img {
    width: 96%;
    margin: 0 auto;
  }


}

.contentsArea ul li {}

.col-2-contents ul.normal li,
.col-1-contents ul.normal li {
  font-size: 1.5rem;
  font-family: var(--font-sans-jp);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.6;
  margin-bottom: 12px;
  position: relative;
  padding-left: 1.2em;
}

.en-US .col-2-contents ul.normal li,
.en-US .col-1-contents ul.normal li {
  font-size: 1.6rem;
  font-family: var(--font-sans-en);
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.col-2-contents ul.normal li,
.col-1-contents ul.normal li {
  padding-left: 1em;
}

.col-2-contents ul.normal li:last-child,
.col-1-contents ul.normal li:last-child {
  margin-bottom: 0;
}

.col-2-contents ul.normal li:before,
.col-1-contents ul.normal li:before {
  content: "・";
  width: 1em;
  height: 1em;
  top: 0;
  left: 0;
  display: block;
  position: absolute;
}

.en-US .col-2-contents ul.normal li:before,
.en-US .col-1-contents ul.normal li:before {
  content: "•";
}

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

  .col-2-contents ul.normal li,
  .col-1-contents ul.normal li {

    letter-spacing: 0.01em;
    margin-bottom: 10px;
  }

  .en-US .col-2-contents ul.normal li,
  .en-US .col-1-contents ul.normal li {
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0.03em;
  }
}

/* dl dt dd
================================================== */
.company-outline dl {
  width: 100%;
  display: block;
  padding: 0 0;
}

.company-outline dl dt,
.company-outline dl dd {
  font-size: 1.5rem;
  font-family: var(--font-sans-jp);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.6;
  margin-bottom: 12px;
  position: relative;
  padding: 0;
  margin-bottom: 30px;

}



.company-outline dl dt {
  float: left;
}

.company-outline dl dd {
  margin-left: 140px;
}


.en-US .company-outline dl dt,
.en-US .company-outline dl dd {
  font-size: 1.6rem;
  font-family: var(--font-sans-en);
}

.en-US .company-outline dl dd {
  margin-left: 220px;
}




.company-outline dl dd .map-link {
  font-family: var(--font-sans-en);
  font-size: 1.4rem;
  font-weight: 400;
  color: #1d1d1d;
  text-decoration: underline;
  text-underline-offset: 6px;
}




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

  .en-US .contentsArea section p.contact {
    margin-bottom: 60px !important;
  }

  .company-outline dl dt,
  .company-outline dl dd {
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    margin-bottom: 0
  }


  .company-outline dl dt {
    float: none;
    font-weight: 500;
    margin-bottom: 7px;
    color: #1d1d1d;
    
  }

  .company-outline dl dd {
    margin: 0 0 40px 0;
    margin-left: 0;
  }

  .company-outline dl dd:last-child {
    margin: 0;
  }

.en-US .company-outline dl dt,
 .en-US  .company-outline dl dd {
    
    font-weight: 300;
    letter-spacing: 0.03em;
  }
.en-US .company-outline dl dt {
   float: none;
    font-weight: 500;

  }

  .en-US .company-outline dl dd {
  margin-left: 0;
}


}






/*top-contents
================================================== */

.topic-wrap {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  margin-bottom: 100px;
}

.topic-wrap:last-child {
  margin-bottom: 0;
}

.topic-wrap .text {
  width: 60%;

}

.topic-wrap .text h3 {
  display: block;
  margin-bottom: 20px;
  border-left: 2px solid #215040;
  padding-left: 15px;
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: 0.01em;
}

.topic-wrap .text h3 span {
  display: block;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  margin-top: 14px;
  font-family: var(--font-sans-jp);
}

.en-US .topic-wrap .text h3 span {
  font-size: 1.6rem;
  line-height: 1.4;
  letter-spacing: 0.03em;
  font-family: var(--font-sans-en);
}

.topic-wrap .text p {
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.03em;
}

.en-US .topic-wrap .text p {
  font-size: 1.6rem;
  line-height: 1.7;
}

.topic-wrap .img {
  width: 40%;
}

.topic-wrap .img img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: -15px auto 0;
}

@media screen and (max-width: 768px) {
  .topic-wrap {
    flex-direction: column;
    margin-bottom: 55px;
  }

  .topic-wrap .text {
    width: 100%;
    margin-bottom: 10px;
  }

  .topic-wrap .text h3 {
    font-size: 2.4rem;
    letter-spacing: 0.01em;
    line-height: 1;
  }

  .topic-wrap .text h3 span {
    font-size: 1.5rem;
    letter-spacing: 0.03em;
    margin-top: 8px;
  }



  .topic-wrap .text p {
    font-size: 1.5rem;
    letter-spacing: 0.01em;
    line-height: 1.85;
  }

  .en-US .topic-wrap .text p {
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.03em;
  }

  .topic-wrap .img {
    width: 100%;
  }

  .topic-wrap .img img {
    margin: 0 auto 0;
  }

}





/*contents column2
================================================== */


.col-2-title {
  display: flex;
  flex-direction: column;
}

.col-2-title .bt-view-all {
  margin-top: auto;
  justify-content: flex-start;
  display: block;
}

.col-2-title .bt-view-all a {
  font-size: 1.4rem;
  font-family: var(--font-sans-en);
  letter-spacing: 0.06em;
  position: relative;
  color: #1d1d1d;
  text-decoration: none;
}

.col-2-title .bt-view-all a::after {
  content: "";
  background-image: url("images/arrow_large.svg");
  height: 10px;
  width: 60px;
  top: 3px;
  right: -75px;
  display: block;
  position: absolute;
  transition: 0.2s ease-in-out;
}

.col-2-title .bt-view-all a:hover::after {
  right: -80px;

}

.col-2-title .bt-view-all-sp-only {
  display: none;
}

.bt-view-all-sp-only a {
  display: none;
}

@media screen and (max-width: 768px) {
  .col-2-title .bt-view-all {
    display: none;
  }

  .bt-view-all-sp-only {
    display: block;
    opacity: 1;
    margin-top: 30px;
  }

  .bt-view-all-sp-only a {
    font-size: 1.4rem;
    font-family: var(--font-sans-en);
    letter-spacing: 0.06em;
    position: relative;
    color: #1d1d1d;
    display: inline-block;
    text-decoration: none;
  }

  .bt-view-all-sp-only a::after {
    content: "";
    background-image: url("images/arrow_large.svg");
    height: 10px;
    width: 60px;
    top: 0;
    right: -70px;
    display: block;
    position: absolute;
  }
}


/*page company
================================================== */

.contentsArea section.ceo-message {
  padding-bottom: 53px;
}

.ceo-message p.message-last {
  margin-bottom: 22px !important;
}

.ceo-message .sign img {
  margin: 0 0 0 auto;
}

.ceo-profile .photo {
  margin-bottom: 37px;
}

.ceo-profile .photo img {
  width: 100%;
  height: auto;
}

.ceo-profile .profile {
  font-size: 2.2rem;
  letter-spacing: 0.12em;
  font-weight: 300;
  padding-bottom: 16px;
  border-bottom: 1px solid #777777;
  margin-bottom: 30px;
}

.en-US .ceo-profile .profile {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  font-weight: 300;

}

.ceo-profile .profile span {
  font-size: 2rem;
  letter-spacing: 0.06em;
  font-weight: 300;
  margin-left: 40px;
  display: inline-block;
  font-family: var(--font-sans-en);
}

@media screen and (max-width: 768px) {
  .ceo-profile .profile {
    font-size: 1.8rem;
    letter-spacing: 0.12em;

    padding-bottom: 11px;
    color: var(--text-color-sp);
  }

  .en-US .ceo-profile .profile {
    font-size: 2rem;
    letter-spacing: 0.05em;
    font-weight: 300;

  }

  .ceo-profile .profile span {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    margin-left: 30px;
  }

  .ceo-message .sign img {
    width: 230px;
  }

  .ceo-profile .photo {
    overflow: hidden;
  }

  .ceo-profile .photo img {
    width: 100%;
    height: auto;

  }

}


/*news index
================================================== */
.top-news-list {}

.top-news-list a {
  border-top: 1px solid #777;
  letter-spacing: 0.05em;
  padding: 47px 0;
  position: relative;
  display: block;
  text-decoration: none;
}

.top-news-list a:last-child {
  border-bottom: 1px solid #777 !important;
}


.top-news-list li .info-text {
  width: 100%;
  display: flex;
  padding-right: 50px;

}

.top-news-list li .info-text .date {
  width: 114px!important;
  font-size: 1.4rem;
  line-height: 1.8;
  font-family: var(--font-sans-en);
  letter-spacing: 0.06em;
  color: var(--key-color);
  display:inline-block;
  
}

.en-US .top-news-list li .info-text .date {
  line-height: 1.8;
}

.top-news-list li .info-text .title-wrap {
  width:calc(100% - 114px);
}

.top-news-list li .info-text .title {
  
  font-size: 1.4rem;
  line-height: 1.7;
  letter-spacing: 0.03em;
  position: relative;
  padding-left: 20px;
  display:inline;
}

.en-US .top-news-list li .info-text .title {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: 300;
  padding-top: 2px;
}


.top-news-list li .info-text .title::before {
  content: "";
  width: 14px;
  height: 14px;
  top: 5px;
  left: 0;
  background: var(--key-color);
  border-radius: 14px;
  display: block;
  position: absolute;
  
}

.top-news-list li .info-text .title::after {
  display: inline-block;
  position: absolute;
  bottom: 0px;
  left: 20px;
  content: '';
  width: 0;
  height: 1px;
  background-color: var(--key-color);
  transition: .3s;
 
}

.top-news-list a li .info-text .title {
  color: var(--text-color);
  font-weight: 300;
  display: inline-block;
}

/*.top-news-list a:first-child li .info-text .title {
  color: var(--text-color);
  font-weight: 400;
}*/


.top-news-list a:hover li .info-text .title::after {
  width: calc(100% - 20px)
}

.top-news-list li .info-text .title.active:hover::after {
  width: 0;
  pointer-events: none;
}

.top-news-list a::after {
  content: "";
  background-image: url("images/arrow_right.svg");
  background-color: unset;
  height: 10px;
  width: 30px;
  top: 46%;
  right: 0;
  display: block;
  position: absolute;
  transition: 0.3;
  left: unset;
}





.news-list-wrapper {
  margin-bottom: 140px;
}

@media only screen and (max-width: 768px) {
  .top-news-list a {
    padding: 25px 0 30px;
  }

  .top-news-list li .info-text .date {
    width: 114px;
    font-size: 1.4rem;
    line-height: 1;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 0.03em;
  }

  .en-US .top-news-list li .info-text .date {
    line-height: 1;
  }


  .top-news-list li .info-text {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
.top-news-list li .info-text .title-wrap {
  width:100%;
}
  .top-news-list a li .info-text .title {
    font-size: 1.4rem;

    letter-spacing: 0.01em;
    line-height: 1.7;
    color: var(--text-color-sp);
  }

  .top-news-list li .info-text .title::before {
    top: 5px;
  }

  .top-news-list li .info-text .title::after {
    display: none;
  }

  .top-news-list a:hover li .info-text .title::after {
    width: 0;
  }
}




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

  .top-news-wrapper .top-news-list {
    width: 100%;
    margin-bottom: 40px;
  }

  .top-news-wrapper .info-btn.for-sp {
    display: block;
    margin: 0 auto;
  }

  .top-news-wrapper .top-news-list .info-text .date {
    display: block;
    margin-bottom: 16px;
  }

  .top-news-wrapper .top-news-list a {
    padding: 20px 0;
    display: block;
  }

  .top-news-list li span.title {
    font-size: 1.6rem;
  }

  .top-news-list li span.date {
    margin-bottom: 10px;
    display: block;
  }

  .top-news-list a::after {
    top: 46%;
    right: 0;
  }
}

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

/*single-news
================================================== */
.single-news .date {
  font-size: 1.5rem;
  color: var(--key-color);
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  display: block;
  font-family: var(--font-sans-en);
}

.single-news h2 {
  font-size: 2rem;
  line-height: 1.6;
  padding-bottom: 60px;
  border-bottom: 1px solid #777;
  margin-bottom: 60px;
  font-family: var(--font-sans-jp);
  font-weight: 300;
  color: var(--text-color);
  white-space: unset;
  letter-spacing:0.03em;
}

.single-news .post {
  margin-bottom: 100px;
}

.single-news .post p {
  line-height: 2.2 !important;
}

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

  .single-news .date {
    font-size: 1.4rem;
  }

  .single-news h2 {
    padding-bottom: 40px;
    margin-bottom: 40px;

  }

  .en-US .single-news h2 {
    letter-spacing:0.03em;
    font-weight: 300;
  }

  .single-news .post p {

    line-height: 2 !important;
    letter-spacing: 0.01em;
  }

  .en-US .single-news .post p {
    font-weight: 300 !important;
    line-height: 1.75 !important;
    letter-spacing: 0.03em;
  }

  .single-news .post {
    margin-bottom: 60px;
  }
}

/*pegination
================================================== */
ul.pegination {
  list-style-type: none;
  width: 100%;
  max-width: 460px !important;
  display: flex;
  margin: 0 auto;
}

ul.pegination li {
  width: 33.333%;
  position: relative;
  font-size: 1.4rem;
  font-family: var(--font-sans-en);
  letter-spacing: 0.06em;

}





ul.pegination li.pegination-left {
  text-align: left;
  position: relative;
  padding-left: 38px;
}

ul.pegination li.pegination-center {
  text-align: center;
  position: relative;

}

ul.pegination li.pegination-right {
  text-align: right !important;
  position: relative;
  padding-right: 38px;

}

ul.pegination li.pegination-left a,
ul.pegination li.pegination-center a,
ul.pegination li.pegination-right a {
  text-decoration: none;
  color: #1d1d1d;
}

ul.pegination li.pegination-left a::before {
  position: absolute;
  content: '';
  background: url(images/arrow_left.svg) no-repeat !important;
  top: 1px;
  left: 0;
  height: 10px;
  width: 30px;
  display: block;
}

ul.pegination li.pegination-center a::before {
  position: absolute;
  content: '';
  background: url(images/ico_toindex.svg) no-repeat !important;
  top: -4px;
  left: 56px;
  height: 22px;
  width: 31px;
  display: block;
}

ul.pegination li.pegination-right a::after {
  position: absolute;
  content: '';
  background: url(images/arrow_right.svg) no-repeat !important;
  right: 0;
  top: 1px;
  height: 10px;
  width: 30px;
  display: block;

}

@media only screen and (max-width: 480px) {
  ul.pegination li.pegination-center a::before {
    left: 40px;
  }
}

/*full-bg-page-layout
================================================== */
.full-bg-wrap {

  width: 100vw;
  overflow-x: hidden !important;

}

.full-bg {

  background: no-repeat center center;
  background-size: cover;
  height: 100vh;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;

}

.single-fullbg-content {
  position: relative;
  z-index: 2;
  margin-top: 100vh;
  background: #fff;
  padding-top: 60px;
}






/* Brand,News Index
================================================== */





ul.news-list-culumn {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

ul.news-list-culumn::after {
  display: block;
  content: "";
  width: 31%;
}

ul.news-list-culumn li {
  width: 30.5%;
  text-align: left;
  margin-bottom: 100px;
}

ul.news-list-culumn li img {
  width: 100%;
  height: auto;
}

ul.news-list-culumn li .infoWrapper {
  margin-top: 20px;
}

ul.news-list-culumn li .infoWrapper .title {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 10px;
  line-height: 1.2;
  color: #333;
}



.zoom-img-wrap {
  overflow: hidden;
}

.zoom-img img {
  transition: transform 0.6s linear;
}

.zoom-img:hover img {

  transform: scale(1.05);
  cursor: pointer;
}




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



  .zoom-img-wrap {
    overflow: hidden;

  }

  

  ul.news-list-culumn li {
    width: 48%;
    margin-bottom: 0;
    margin-bottom: 40px;
  }

  ul.news-list-culumn li .infoWrapper {
    margin-top: 10px;
  }

  ul.news-list-culumn li .infoWrapper .title {
    font-size: 1.6rem;
    margin-bottom: 10px;
    line-height: 1.2;
    color: #333;
  }
}




/* works
================================================== */


/* ul.works-list-culumn {
  display: flex;
  flex-wrap: wrap;
  align-items: top;
}



ul.works-list-culumn li {
  width: calc(100% / 5);
  text-align: left;
  margin-bottom: 40px;
  box-sizing: border-box;
  padding: 0 1.5%;
}*/

ul.works-list-culumn {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;

}

ul.works-list-culumn::after {
  display: block;
  content: "";
  width: 31%;
}

ul.works-list-culumn li {
  width: 30.5%;
  text-align: left;
  margin-bottom: 50px;
}




ul.works-list-culumn li img {
  width: 100%;
  height: auto;
}

.single-works h1 {
  font-size: 3.2rem;
}


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


  ul.works-list-culumn li {
    width: 48%;
    margin-bottom: 20px;
  }

  .single-works h1 {
    font-size: 2.8rem;
  }
}

ul.works-list-culumn li .infoWrapper .title {
  font-weight: 700;
  font-size: 2rem;

  color: #333;
}

.mainImg {
  margin-bottom: 40px;
}

.mainImg img {
  width: 100%;
  height: auto;
}

.work-text {
  width: 100%;
  line-height: 210%;
  text-align: left;
  color: #333;
  font-size: 1.7rem;
  font-weight: normal;
  margin-bottom: 80px;
}

.en .contentsArea .work-text {
  font-size: 1.8rem;
}


@media screen and (max-width: 480px) {
  .work-text {
    line-height: 180%;
    font-size: 1.6rem;
    margin-bottom: 50px;
  }

  .en .contentsArea .work-text {
    font-size: 1.6rem;
  }
}


/*==========================================
 What We Do / Who We Are (with image)
===========================================*/

.page-bg-title {
  z-index: 2;
  position: absolute;
  top: 40vh;
  left: 7vw;
}

_::-webkit-full-page-media,
_:future,
:root .page-bg-title {
  z-index: 2;
  position: fixed;
  top: 40vh;
  left: 7vw;
}

.page-bg-title h1 {
  color: #fff;
  margin-bottom: 3vh;
  font-size: 7vh;
  margin-top: 0;
  font-weight: bold;
  opacity: 0;
  transition: all ease-out 0.7s 1.5s;
  transform: translateX(-2vw);
}

.page-bg-title h1.active {
  transform: translateX(0);
  opacity: 1;
}


.page-bg-title h2 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  display: inline-block;
  color: #fff;
  margin-bottom: 25px;
  opacity: 0;
  transition: all ease-out 0.7s 1s;
  transform: translateX(-2vw);
}

.page-bg-title h2.active {
  transform: translateX(0);
  opacity: 1;
}

.contents-culumn-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: -140px;
  padding-bottom: 60px;
}

.contents-culumn-wrap h1 {
  margin-top: 100px;
}

.contents-culumn-wrap h2 {
  font-size: 5.8rem;
  color: #ccc;
  font-weight: bold;
  margin-bottom: 45px;
}

.contents-culumn-wrap h3 {
  font-weight: 600;
  margin-bottom: 40px;
}

.contents-culumn-wrap .culumn-contents {
  width: 80%;
  padding-right: 8%;

}

.contents-culumn-wrap .culumn-contents section {
  padding-top: 90px;
  padding-bottom: 0;
}



.contents-culumn-wrap .culumn-contents section img {
  width: 100%;
  height: auto;
  margin-top: 50px;
}

.contents-culumn-wrap .culumn-contents a.link-row {
  display: inline-block;
  margin-right: 70px;
}

.contents-culumn-wrap .culumn-contents section a {
  font-weight: 600;
}


.contents-culumn-wrap .culumn-nav {
  width: 22%;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 2;
  height: 20vh;
  padding: 186px 20px;
  margin-top: 150px;
}

.page-template-page-whoweare .contents-culumn-wrap .culumn-nav {
  padding: 206px 20px;
}

.contents-culumn-wrap .culumn-nav ul li {
  margin-bottom: 50px;
}

.contents-culumn-wrap .culumn-nav ul li a {
  font-size: 2.2rem;
  display: inline-block;
  position: relative;
  font-weight: 700;
}

.contents-culumn-wrap .culumn-nav ul li a :hover {
  opacity: 1;
}

.contents-culumn-wrap .culumn-nav ul li a::after {
  display: block;
  position: absolute;
  left: 0;
  content: '';
  width: 0;
  height: 2px;
  background-color: #333;
  transition: .3s;
  bottom: -5px;
}

.contents-culumn-wrap .culumn-nav ul li a:hover::after {
  width: 100%;
}

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

  .contents-culumn-wrap .culumn-contents {
    width: 100%;
    padding-right: 0;

  }

  .contents-culumn-wrap .culumn-contents section {
    padding-top: 0;
    padding-bottom: 0;
  }

  .contents-culumn-wrap h1 {
    margin-top: 100px;
  }

  .contents-culumn-wrap .culumn-nav {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .page-bg-title {
    top: 40vh;
    left: 5vw;

  }

  .page-bg-title h1 {
    color: #fff;
    margin-bottom: 3vh;
    font-size: 5vh;

  }

  .contents-culumn-wrap h2 {
    font-size: 4rem;
    margin-bottom: 20px;
  }
}

/*==========================================
NEWS
===========================================*/

.post {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.post strong {
  font-weight: 500;
  color: #444!important;
}

.post strong a{
  font-weight: 500;
  color: #444!important;
}

.post img {
  max-width: 100%;
  /* 親要素の幅を超えない */
  max-height: 800px;
  /* ビューポート（画面）の高さの100%を超えない */
  height: auto;
  /* 高さは自動調整 */
  width: auto;
  margin: 0 auto;
  /* 幅は自動調整 */
}


.col-2-contents .post ul.last-sentense {
  margin-bottom: 50px;
}

.col-2-contents .post ul li {
  font-size: 1.5rem;
  font-family: var(--font-sans-jp);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.6;
  margin-bottom: 10px;
  position: relative;
  padding-left: 1em;
}

.col-2-contents .post ul li {
  font-size: 1.5rem;
  font-family: var(--font-sans-jp);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.6;
  margin-bottom: 10px;
  position: relative;
  padding-left: 1em;
}

.en-US .col-2-contents .post ul li {
  font-size: 1.6rem;
  font-family: var(--font-sans-en);
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}



.col-2-contents .post ul li:last-child {
  margin-bottom: 10px;
}

.col-2-contents .post ul li:before,
.col-2-contents .post ul li:before {
  content: "・";
  width: 1em;
  height: 1em;
  top: 0;
  left: 0;
  display: block;
  position: absolute;
}

.en-US .col-2-contents .post ul li li:before,
.en-US .col-2-contents .post ul li li:before {
  content: "•";
}

.post p:has(+ ul) {
  margin-bottom: 20px !important;
}

.post p:has(+ ul) {
  margin-bottom: 20px !important;
}

.contentsArea section .post .policy-wrap p:has(+ ul) {
  margin-bottom: 10px !important;
}





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

.col-2-contents .post ul.last-sentense {
  margin-bottom: 40px;
}
  .col-2-contents .post ul li {

    letter-spacing: 0.01em;
    margin-bottom: 10px;
  }

  .col-2-contents .post ul li {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.03em;
  }
}

.newsPost .infoWrapper {
  margin-bottom: 25px;
}

.newsPost .infoWrapper span.date {
  font-size: 1.4rem;
}

.newsPost .post-news {
  line-height: 2;
  font-size: 1.7rem
}





@media only screen and (max-width: 480px) {
  .newsPost {

    padding: 0;
  }

  .newsPost {
    width: 100%;
    margin-bottom: 80px;
    opacity: 0;
    transition: all ease-in-out 0.6s;
    padding: 0 20px;
  }

}







/* Go Page Top
================================================== */

#page-top {
  border-radius: 50%;
  height: 28px;
  width: 28px;
  background: #E11E1E;
  padding: 10px;
  position: fixed;
  bottom: 30px;
  right: 20px;
  text-align: center;
  cursor: pointer;
  z-index: 500;
  display: none;
}

#page-top::after {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  top: 20px;
  left: 18px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  cursor: pointer;
}




.post section {
  margin-bottom: 0;
}

.contents-culumn-wrap .culumn-contents .post section {
  margin-bottom: 0 !important;
}







/* 追加（）editor style css Images */
.post img[class*="wp-image-"] {
  max-width: 100%;
  max-height: 800px;
  height: auto;
  width: auto;
  margin: 0 auto;
}

.post img {
 
}

.post img.wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

.post .alignleft {
  float: left;
  margin: 0.375em 1.75em 1.75em 0;
}

.post .alignright {
  float: right;
  margin: 0.375em 0 1.75em 1.75em;
}

.post .aligncenter {
  clear: both;
  display: block;
  margin: 0 auto 1.75em;
}







@media only screen and (max-width: 480px) {
  .alignleft {
    float: none;
    margin: 0 auto;
    width: 100%;
  }

  .alignright {
    float: none;
    margin: 0 auto;
    width: 100%;
  }

  .aligncenter {
    clear: both;
    display: block;
    margin: 0 auto 1.75em;
  }

}



/*==========================================
 /*Contact & Form
===========================================*/
.contentsArea section p.contact {
  font-size: 1.5rem;
  line-height: 1.85;
  letter-spacing: 0.01em;
  margin-bottom: 140px !important;
}

.en-US .contentsArea section p.contact {
  font-size: 1.6rem;
  line-height: 1.85;
  letter-spacing: 0.03em;
  margin-bottom: 140px !important;
}


.select-box {
  cursor: pointer;
  position: relative;
  max-width: 20em;
  width: 100%;
}

.form-select,
.label {
  color: #414141;
  display: block;
  font: 400 17px/2em 'Source Sans Pro', sans-serif;
}

.form-select {
  width: 100%;
  position: absolute;
  top: 0;
  padding: 5px 0;
  height: 40px;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  background: none transparent;
  border: 0 none;
}

.select-box1 {
  background: #ececec;
}

.label {
  position: relative;
  padding: 5px 10px;
  cursor: pointer;
}

.open .label::after {
  content: "▲";
}

.label::after {
  content: "▼";
  font-size: 12px;
  position: absolute;
  right: 0;
  top: 0;
  padding: 5px 15px;
  border-left: 5px solid #fff;
}



.form-layout {
  display: flex; /* dtとddを横並びにする */
    flex-wrap: wrap; /* 画面幅が狭い場合に折り返す */
   
  margin-bottom: 50px;
}

.form-layout dt,
.form-layout dd {
  margin-bottom: 50px;
   font-size: 1.5rem;
  font-family: var(--font-sans-jp);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.6;
  margin-bottom: 12px;
  position: relative;
  padding: 0;
  margin-bottom: 50px;
}

.form-layout dt {
  width: 190px;
padding-top:5px;
}

.form-layout dd {
   width: calc(100% - 190px);
margin-left:0;


}

.form-layout dd:last-child {
  margin-bottom: 0;

}




.form-layout span.error {
  color: #FF0000;
}

.form-layout span.required {
  margin-left: 4px;
  color: #FF0000;
}

.form-layout select {
  font-size: 1.6rem;
  line-height: 20px;
  font-weight: normal;
}

.form-layout input {
  border: none;

}

.form-layout label {

  position: relative;
}

.form-layout [type="checkbox"],
[type="radio"] {
  width: auto;
}

.form-layout [type="radio"] {
  position: absolute;
  top: -1px;
  left: 0;
}

.form-layout .mwform-radio-field-text {
  display: inline-block;
  margin-right: 15px;
  margin-left: 25px;

}

.form-layout input[type="checkbox"] {
  width: 20px;
}

.form-layout input[type="text"],
.form-layout input[type="email"],
.form-layout textarea {
  border: none;
  padding: 10px;
  resize: none;
  font-size: 100%;
  width: 100%;
  height: 40px;
  border-radius: 0;
  box-sizing: border-box;
}

.form-layout input[type="text"]:focus {
  border: none;
  outline: 0;
  background: #fff
}

.form-layout textarea {
  height: 160px;
}

.form-layout textarea:focus {
  border: none;
  outline: 0;
  background: #fff;
}

.form-layout input.zip1,
.form-layout input.zip2 {
  width: 100px;

  border-radius: 3px;
}

.form-layout input.date-input {
  width: 200px;
  border-radius: 3px;

}

.form-layout input.width-m {
  width: 400px;
}

.form-layout input.width-ms {
  width: 200px;
}

.form-layout input.width-s {
  width: 160px;
}

.form-layout input.width-ss {
  width: 100px;
}

.form-layout input.width-sss {
  width: 2.5em;
}



.form-layout span.x-small {
  display: block;
  margin-top: 10px;
}

.form-layout select {
  display: inline-block;
  padding: 4px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  vertical-align: middle;
  height: 40px;
  line-height: 40px;
  width: 220px;
  border: 1px solid #fff;
  background-color: #fff;
  margin-top: 4px;
}

.form-layout select.width-s {
  width: 30%;
}

.form-layout .mwform-checkbox-field {
  display: inline-block;
  margin: 0 30px 15px 0;
}

.form-layout dd.checkbox-vertical-long .mwform-checkbox-field {
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
}


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

  .contentsArea section p.contact {
    margin-bottom: 60px !important;
  }

  .form-layout {
    margin: 0 auto 60px;
    font-size: 1.4rem;
    padding: 0;
    display: block; 
  }

  .form-layout dt,
  .form-layout dd {
    margin-left: 0 !important;
 width: 100%; 
  font-size: 1.5rem;
    letter-spacing: 0.02em;
    margin-bottom: 0
  }

  .form-layout dt {
   
    width: 100%;
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: 300 !important;
    letter-spacing: 0.01em;
    color: #000;
  }

  .en-US .form-layout dt {
    font-weight: 300 !important;
    letter-spacing: 0.03em;
  }

  .form-layout dd {
    margin-bottom: 45px;

  }




  .form-layout input {
    width: 100%;
    box-sizing: border-box;

  }

  .form-layout input[type="text"],
.form-layout input[type="email"],
.form-layout textarea {
  height: 55px;
}

.form-layout textarea {
  height: 300px;
}


  .form-layout input.width-m {
    width: 100%;
  }

  .form-layout input.width-ms {
    width: 100%;
  }

  .form-layout input.width-s {
    width: 100%;
  }

  .form-layout input.width-ss {
    width: 100%;
  }

  .form-layout input.width-sss {
    width: 100%;
  }

  .form-layout input.date-input {
    width: 35% !important;
  }
}


.input-bt {
  width: 100%;
  text-align: left;
  padding: 0 0 50px 190px;
}

.en-US .input-bt {
  padding: 0 0 50px 190px;
}

input:focus,
textarea:focus {}

input[type="submit"],
input[type="reset"],
input[type="button"] {
  -webkit-appearance: none;
  padding: 4px 0 6px;
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  border-style: none;
  cursor: pointer;
  margin: 0 auto;
  text-align: center;
  background: var(--key-color);
  display: inline-block;
  text-align: center !important;
  border-radius: 30px;
  width: 240px;
  height: 46px;
  line-height: 1;
  transition: all 0.2s linear;
}

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
  opacity: 0.8;
  border: 1px solid var(--key-color);
  background: none;
  color: var(--key-color);
}

.en-US input[type="submit"],
.en-US .en-US input[type="reset"],
.en-US input[type="button"] {
  padding: 6px 0 6px;
}

.form-caption {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1.3;
  padding-top: 7px;
}

dd.checkbox-vertical span.mwform-checkbox-field {
  display: block !important;
}

.wpcf7-list-item {
  margin: 0 30px 0 0 !important;
}

.submitArea {
  text-align: center;
  position: relative;
}

.page-template-default .wpcf7 form.invalid .wpcf7-response-output {
  border: none;
  margin-bottom: 100px;
  color: #dc3232;
  text-align: center;
  line-height: 1.4;
}

.page-template-default .wpcf7 form.failed .wpcf7-response-output {
  border: none !important;
  color: #dc3232;
  margin-bottom: 100px;
  text-align: center;
  line-height: 1.4;
}

.page-template-default .wpcf7 form.sent .wpcf7-response-output {
  border: none !important;
  margin-bottom: 100px;
  text-align: center;
  line-height: 1.4;
}

.page-template-default .wpcf7 .ajax-loader {
  visibility: hidden;
  display: block !important;
  background-color: #23282d;
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: 0 24px;
  position: absolute;
}

@media only screen and (max-width: 768px) {
  .input-bt {
    width: 100%;
    text-align: center;
    margin: 30px 0 60px 0;
    padding: 0 0 0 0;
  }

  .en-US .input-bt {
    padding: 0 0 0 0;
  }



  .form-layout input[type="text"],
  .form-layout input[type="email"],
  {
  height: 55px;
}
}

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

  input[type="submit"],
  input[type="reset"],
  input[type="button"] {
    width: 100%;
    font-weight: 400;
  }
}

.en-US input[type="submit"],
.en-US input[type="reset"],
.en-US input[type="button"] {
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  font-weight: 400;
}


/*==========================================
 /*Privacy
===========================================*/
.privacy-contents section {
  margin-bottom: 40px;
}

.privacy-contents-ja h3 {
  font-size: 2rem !important;
  margin-bottom: 20px !important;
}

.ja .contentsArea .privacy-contents-ja section p {
  font-size: 1.5rem;
}

@media only screen and (max-width: 768px) {
  #post dl.faq-wrap dt {
    font-size: 1.5rem;
    line-height: 1.4;

  }

}




/*WP-pagenavi
-------------------------------------------------------------- */
.pagenavi-wrap {
  width: 100%;
  text-align: center;
}

.wp-pagenavi {
  color: #fff;
  margin: 40px auto 0;
  text-align: center;
  overflow: hidden;
}

.wp-pagenavi a,
.wp-pagenavi span {
  text-decoration: none !important;
  padding: 12px 15px;
  margin-right: 8px;

  color: #1d1d1d !important;
  font-size: 1.4rem;
  display: inline-block;
  border: none;
}

.wp-pagenavi span.current {
  color: #1d1d1d !important;
  font-weight: 500;
  padding: 12px 15px;

}

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

.wp-pagenavi a {
  text-decoration: underline !important;
}


.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.previouspostslink {
  position: relative;
  display: inline-block;
  padding: 12px 16px;
  color: var(--bg-color) !important;
  vertical-align: middle;
  text-decoration: none;
  font-size: 1.8rem;
}

.wp-pagenavi a.nextpostslink::after {
  content: "";
  background-image: url("images/arrow_right.svg");
  background-color: unset;
  height: 10px;
  width: 30px;
  top: 15px;
  right: 0;
  display: block;
  position: absolute;
  transition: 0.3;
  left: unset;
}

.wp-pagenavi a:last-child {}





.wp-pagenavi a.previouspostslink::after {
  content: "";
  background-image: url("images/arrow_left.svg");
  background-color: unset;
  height: 10px;
  width: 30px;
  top: 15px;
  right: unset;
  display: block;
  position: absolute;
  transition: 0.3;
  left:0;
}

@media only screen and (max-width: 768px) {
  .wp-pagenavi {
    margin: 30px auto 0;
  }

  .wp-pagenavi a,
  .wp-pagenavi span {
    font-size: 1.4rem;
    margin-right: 8px;
    padding: 12px 10px;
  }

  .wp-pagenavi span.current {

    padding: 12px 10px;

  }

  .wp-pagenavi a:hover {
    margin-right: 8px;
  }
}

@media only screen and (max-width: 480px) {
  .wp-pagenavi .first {
    display: none;
  }

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

/* Go Page Top
================================================== */

#page-top {
  border-radius: 50%;
  height: 148px;
  width: 50px;
  padding: 10px;
  position: fixed;
  bottom: 0px;
  right: 30px;
  text-align: center;
  cursor: pointer;
  z-index: 500;
}



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

  #page-top {
    display: none !important;
  }

  #page-top img {
    height: 100px;
    width: 40px;
    bottom: 20px;
    right: 20px;
  }
}




/* ------------------------------------------------------------
	ReCapture
------------------------------------------------------------ */
.grecaptcha-badge {
  visibility: hidden;
}

div.recapture {
  margin-top: 80px;
  text-align: center;
}

.recapture p {
  font-size: 1.3rem;
  margin-top: 50px;
  text-align: center;
  color: #666;
}

.recapture p a {
  color: #666;
}

/* ------------------------------------------------------------
	Clearfix
------------------------------------------------------------ */

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}


/* Hides from IE Mac */
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* End Hack */