@charset "UTF-8";

/* ======================================================

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-> scss -> base -> _normalize.scss

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

====================================================== */
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  list-style-type: none;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}


blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* Iphoneでタップすると拡大されないように */
input, textarea, select {
  font-size: 16px!important;
}

/* ==================================================
   Base Style
   ================================================== */
html {
  font-size: 62.5%;
  /*-
  @include min-width(md){
    font-size: 71.42857142%;
  }
  -*/
}

body {
  width: 100%;
  margin: 0 auto;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
  font-family: "Noto Sans JP","游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "ＭＳ ゴシック", sans-serif!important;
  font-weight: 400;
  font-weight: 400;
  letter-spacing: 0.09em;
  color: #231B0F;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

a {
  color: #59ABF3;
  text-decoration: none;
}

a, a:before, a:after {
  -webkit-transition: 0.16s cubic-bezier(0.17, 0.935, 0.305, 1);
  transition: 0.16s cubic-bezier(0.17, 0.935, 0.305, 1);
  color: #1D78C7;
}

a:hover {
  text-decoration: none;
  opacity: 0.6;
  color: #59ABF3;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

p {
  font-weight: 400;
}

img {
  max-width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.cf:after {
  content: "";
  display: block;
  clear: both;
}

.tel{
  pointer-events: none;
}

.pc-only{
  display: block;
}

.sp-only{
  display: none;
}

.tab-only{
  display: none;
}

.en{
  font-family: "Lato", sans-serif;
}

.mincho{
  font-family: "Noto Serif JP", serif;
}

.no-link{
  pointer-events: none;
}


#luxy{
  position: relative;
  will-change: transform;
}

@media screen and (max-width: 821px){
  .tab-only{
    display: block;
  }
}

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

  .sp-only{
    display: block;
  }

  .tel{
    pointer-events:auto;
  } 
}

/**
 * テキストの選択
 */
::-moz-selection {
  background: #dedede;
}
::selection {
  background: #dedede;
}

::-moz-selection {
  background: #dedede;
}

/**
 * Scroll Bar
 */
/*-
// 縦スクロールバー（幅）
::-webkit-scrollbar {
	width: 4px; }

// 横スクロールバー（幅）
::-webkit-scrollbar:horizontal {
	height: 12px; }

// スクロールバー軌道（色）
::-webkit-scrollbar-track {
  background: $color-scrollbar;
}

// 軌道のコーナー（色）
::-webkit-scrollbar-corner {
	background: $color-scrollbar;
}

// 移動タブ（色・角丸み）
::-webkit-scrollbar-thumb {
  background: $color-scrollbar;
	border-radius: 12px;
}
-*/
/**
 * iOS
 */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}




/* ==================================================
   Header
================================================== */



.l-header {
  width: 100%;
  max-width: 100vw;
  -webkit-transition: 0.16s cubic-bezier(0.17, 0.935, 0.305, 1);
  transition: 0.16s cubic-bezier(0.17, 0.935, 0.305, 1);
}

.l-header .inner {
  width: 100%;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 3%;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}



.l-header-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 3;
  -webkit-transition: 0.4s cubic-bezier(0.17, 0.935, 0.305, 1);
  transition: 0.4s cubic-bezier(0.17, 0.935, 0.305, 1);
}

.l-header-bar.fixed {
  -webkit-transition: none;
  transition: none;
}


.l-header-bar-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-left: 1.5em;
}


.l-header-left {
  display: block;
  width: 100%;
  max-width: 202px;
  position: relative;
}

.l-header-left .c-logo{
  display: block;
  width: 100%;
  max-width: 51px;
  height: 86px;
  position: relative;
  transition: 0.3s ease-in-out;
}

.l-header-bar.fixed .l-header-left .c-logo {
  max-width: 42px;
  transition: 0.3s ease-in-out;
}

.l-header-left .c-logo img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.l-header-left .c-logo .w-logo{
  display: block;
}

.l-header-left .c-logo .b-logo{
  display: none;
}

.open .l-header-left .c-logo .w-logo{
  display: none;
}

.open .l-header-left .c-logo .b-logo{
  display: block;
}


.l-header-right{
  width: 90%;
  transition: 0.3s ease-in-out;
}

.open .l-header-bar,
.open .l-header-bar.fixed{
  background-color: transparent;
}

.open .l-header-left .c-logo,
.open .l-header .l-header-right .nav-header{
  visibility: hidden;
}

.l-header .l-header-nav {
  position: relative;
}

.l-header .l-header-nav ul,
.l-header .l-header-btn ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  /*position: relative;*/
}

.l-header .l-header-nav ul{
  right: 160px;
}

.l-header .l-header-nav .l-menu,
.l-header .l-header-btn .l-menu {
  text-align: center;
  /*position: relative;*/
  font-size: 15px;
  font-size: 1.4rem;
  letter-spacing: 0;
  text-align: center;
  display: inline-block;
}

.l-header .l-header-nav .l-menu a,
.l-header .l-header-btn .l-menu a{
  display: block;
  position: relative;
  text-decoration: none;
  color: #000;
  padding: 2.12em 1em;
  font-size: 1.6rem;
  background: transparent;
}

.open .l-header .l-header-nav .l-menu a,
.open .l-header .l-header-btn .l-menu a{
  display: none;
}

.l-header .l-header-btn .l-menu > a:hover{
  color: #fff;
  background: rgba(49,62,97,1);
  opacity: 1;
  -webkit-transition: 0.16s cubic-bezier(0.17, 0.935, 0.305, 1);
  transition: 0.16s cubic-bezier(0.17, 0.935, 0.305, 1);
}

.l-header .l-header-btn .l-menu a:hover:before {
  opacity: 1;
  transition: 0.3s ease-in-out;
}

.l-header .l-header-btn .l-menu > a:before {
  content: '';
  position: absolute;
  bottom: 25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 81%;
  height: 1px;
  background-color: #fff;
  opacity: 0;
  -webkit-transition: 0.16s cubic-bezier(0.17, 0.935, 0.305, 1);
  transition: 0.16s cubic-bezier(0.17, 0.935, 0.305, 1);
  z-index: 1;
}

.l-header .l-header-btn{
  display: flex;
  justify-content: flex-end;
}


.l-header .l-menu:hover .menu {
  max-height: 9999px;
  opacity: 1;
}

.l-header .l-header-right{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.l-header .l-header-right .menu-txt{
  font-weight: bold;
  margin: 0 0 0 1em;
}

.l-header .l-header-right .login-btn{
  color: #000;
  border: 1px solid #5D4533;
  padding: 0.5em 1.2em;
  display: block;
  border-radius: 20px;
  font-size: 1.3rem;
  transition: 0.3s ease-in-out;
}

.l-header .l-header-right .login-btn:hover{
  background-color: #5D4533;
  color: #fff;
  transition: 0.3s ease-in-out;
}

.l-header .l-header-right .nav-header{
  width: 80%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.l-header .l-header-right .nav-header li a{
  color: #000;
  padding: 0 1.5em;
  display: block;
  border-right: 1px solid #000;
  line-height: 1;
}

.l-header .l-header-right .nav-header li:last-child a{
  border-right: none;
}



#drawer-menu{
  visibility: hidden;
    opacity: 0;
    display: none;
}

#drawer-menu .inner {
  padding: 15px;
}

#drawer-menu .p-drawer-nav {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  height: 100vh;
  flex-flow: row-reverse;
  flex-wrap: wrap;
}

#drawer-menu .p-drawer-nav .drawer-inner{
  width: 100%;
}

#drawer-menu .p-drawer-nav  ul {
  width: 100%;
}

#drawer-menu .p-drawer-nav ul li{
  text-align: center;
  padding: 1.4em 0;
}

#drawer-menu .p-drawer-nav  ul li a{
  color: #000;
  text-align: center;
  font-size: 2.2rem;
}

#drawer-menu .p-drawer-nav .login-btn{
  max-width: 310px;
  width: 100%;
  border-radius: 48px;
  border: 1px solid #000;
  color: #000;
  text-align: center;
  padding: 0.8em 1em;
  margin: 3em auto 0;
  display: block;
  font-size: 2.2rem;
  transition: 0.3s ease-in-out;
}

#drawer-menu .p-drawer-nav .login-btn:hover{
  border: 1px solid #5D4533;
  background-color: #5D4533;
  color: #fff;
  transition: 0.3s ease-in-out;
}
 
#drawer-menu {
  width: 100%;
  height: 100vh;
  padding-bottom: 120px;
  /*overflow-y: scroll;*/
  background-color: #fff;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 2;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition: 0.3s cubic-bezier(0.17, 0.935, 0.305, 1);
  transition: 0.3s cubic-bezier(0.17, 0.935, 0.305, 1);
  /* 初期：非表示 */
  /* ふわっと表示 */
  transition: 0.5s ease-in-out;
  visibility: hidden;
  opacity: 0;
  display: block;
}
  
.open #drawer-menu{
  visibility: visible;
  opacity: 1;
}
 
  
  /* ナビゲーションボタン（開く） */
#navbtn{
  /*top: 0;
  right: 0;*/
  outline: none;
  border: none;
  background: transparent;
  width: 92px;
  height: 86px;
  cursor: pointer;
  display: block;
  position: relative;
}

/*.open #navbtn{
  background: #fff;
}*/

#navbtn span.cross {
  position: absolute;
  right: 26%;
  width: 82%;
  height: 2px;
  background-color: #5D4533;
  border-radius: 2px;
  transform: translate(-0%,-50%);
}

.open #navbtn span.cross {
  background-color:#313E61;
}

#navbtn span {
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}

#navbtn span.cross:nth-of-type(1) {
  top: 38px;
  width: 49%;
}

#navbtn span.cross:nth-of-type(2) {
  top: 50px;
  width: 49%;
  right: 15px;
}

#navbtn:hover span.cross:nth-of-type(1) {
  right: 20px;
}

#navbtn:hover span.cross:nth-of-type(2) {
  right: 20px;
}



.open #navbtn span.cross {
  position: absolute;
  left: 23%;
}

.open #navbtn span.cross:nth-of-type(1) {
  -webkit-transform: translateY(2px) rotate(-25deg);
  transform: translateY(2px) rotate(-25deg);
  width: 55%;
  top: 42px;
}

.open #navbtn span.cross:nth-of-type(2) {
  -webkit-transform: translateY(-4px) rotate(25deg);
  transform: translateY(-4px) rotate(25deg);
  width: 55%;
  top: 47px;
}

.open #navbtn span.cross:nth-of-type(3) { 
  display: none;
}

.l-header .navbtn-contact{
    display: none;
}

.l-header-bar.fixed {
  padding: 0;
  background-color: rgba(255,255,255,0.7);
  transition: .5s ease-out;
}



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

  .l-header .inner {
    padding: 0;
  }

  .l-header-bar{
    height: 60px;
  }
  

  .l-header-bar-container {
    padding: 0 0 0 0.9em;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .l-header-left {
    max-width:55px;
  }

  .l-header-left .c-logo{
    max-width:24px;
    height: auto;
  }

  .l-header-left .c-logo img {
    width: 100%;
  }

  .l-header-bar.fixed .l-header-left .c-logo {
    max-width: 24px;
  }

  .l-header .l-header-right .nav-header{
    display: none;
  }

  #navbtn{
    width: 60px;
    height: 60px;
  }

  #navbtn span.cross:nth-of-type(1) {
    top: 27px;
    right: 20px;
  }

  #navbtn span.cross:nth-of-type(2) {
    top: 34px;
    right: 9px;
  }

  #navbtn:hover span.cross:nth-of-type(2) {
    right: 9px;
  }

  /*#navbtn span.cross:nth-of-type(3) {
    top: 40px;
    width: 55%;
  }*/


  .open #navbtn span.cross:nth-of-type(1) {
    top: 28px;
  }

  .open #navbtn span.cross:nth-of-type(2) {
    top: 34px;
  }

  .l-header .l-header-right .login-btn{
    background-color: #fff;
    font-size: 1.2rem;
  }

  .l-header-bar.fixed {
    background-color: rgba(255, 255, 255, 0.9);
  }

  #drawer-menu .p-drawer-nav {
    display: block;
    height: 80vh;
    overflow-y: scroll;
    padding-top: 0;
    top: 6em;
    position: relative;
  }

  #drawer-menu .p-drawer-nav::-webkit-scrollbar{
    width: 5px;
  }
  #drawer-menu .p-drawer-nav::-webkit-scrollbar-track{
    background-color: #ccc;
  }
  #drawer-menu .p-drawer-nav::-webkit-scrollbar-thumb{
    background-color: #252E47;
  }

  #drawer-menu .p-drawer-nav .drawer-left {
    width: 100%;
    height: auto;
    overflow: visible;
    max-height: none;
  }

  #drawer-menu .p-drawer-nav .drawer-right {
    display: none;
  } 

  #drawer-menu .p-drawer-nav .drawer-left .nav-wrapper-inner {
    padding: 0 0 1em;
  }

  #drawer-menu .p-drawer-nav .drawer-left .nav-wrapper {
    padding: 0em 2em 0;
    border-right: none;
  }

  #drawer-menu .p-drawer-nav .drawer-left{
    display: block;
    padding: 0;
  }

  #drawer-menu .p-drawer-nav .drawer-left li {
    margin-bottom: 0.3em;
    padding-left: 0;
    width: 100%;
  }

  #drawer-menu .p-drawer-nav .drawer-left .company-profile {
    width: 44%;
    margin: 2em auto 0;
  }

  #drawer-menu .p-drawer-nav .drawer-left ul {
    display: block;
    padding-top: 1em;
  }
 
}



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

  #drawer-menu .p-drawer-nav ul li a {
    font-size: 1.6rem;
  }

  #drawer-menu .p-drawer-nav ul li {
    padding: 1em 0;
  }

  #drawer-menu .p-drawer-nav .login-btn {
    padding: 0.8em 1em;
    margin: 3em auto 0;
    font-size: 1.4rem;
  }

}




/* ==================================================
   Footer
================================================== */

.f-upper{
  background: #555555;
  background: linear-gradient(180deg,rgba(85, 85, 85, 1) 33%, rgba(65, 65, 65, 1) 69%);
  color: #fff;
  padding: 5em 0;
  text-align: center;
}

.f-upper .ttl{
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1.5em;
}

.f-upper .btn{
  margin: 2.5em auto 0;
}

.l-footer{
  position: relative;
  padding: 4em 1em 1em;
  background-color: #fff;
}

.l-footer .inner{
  display: flex;
  justify-content: space-between;
}

.l-footer .footer-left{
  width: 40%;
}

.l-footer .footer-left .f-logo{
  max-width: 170px;
  width: 100%;
  display: block;
  margin: 0 0 2em;
}

.l-footer .f-overview dl{
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5em;
  text-align: left;
}

.l-footer .f-overview dl dt{
  width: 32%;
}

.l-footer .f-overview dl dd{
  width: 65%;
}

.l-footer .footer-right{
  width: 50%;
}

.l-footer .footer-right ul li a{
  color: #000;
  display: table;
  padding: 0.5em 0;
}

.l-footer .footer-right .nav-wrap{
  display: flex;
  gap: 4em;
  margin: 3em 0 0;
}

.l-footer .footer-right .f-catch{
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.8;
}

.l-footer .footer-right .f-catch a{
  color: #5D4533;
  text-decoration: underline;
}

.l-footer .footer-right .f-catch a:hover{
  text-decoration: none;
}

.l-footer .copyright{
  margin-top: 7em;
  text-align: center;
}


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

  .l-footer .footer-right {
    width: 54%;
  }

  .l-footer .footer-right .f-catch{
    font-size: 2rem;
  }

  .l-footer .footer-left .f-logo {
    max-width: 78px;
  }

}

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

  .l-footer .inner{
    display: block;
  }

  .l-footer .footer-right {
    width: 100%;
  }

  .l-footer .footer-left {
    width: 100%;
    margin-bottom: 2em;
  }

}

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

  .l-footer {
    padding: 3em 0 1em;
  }

  .l-footer .inner{
    display: block;
  }

  .l-footer .footer-left{
    width: 100%;
    text-align: center;
  }

  .l-footer .footer-right {
    margin-top: 2em;
    width: 100%;
  }

  .l-footer .footer-right .f-catch {
    font-size: 1.5rem;
    line-height: 1.7;
    text-align: center;
  }

  .l-footer .footer-left .f-logo {
    max-width: 46px;
    margin: 0 auto 1em;
  }

  .l-footer .footer-left .address{
    text-align: center;
  }

  .l-footer .footer-right .nav-wrap {
    justify-content: space-between;
    gap: 0;
  }

  .l-footer .copyright {
    margin-top: 3em;
  }
  
}


/* ==================================================
   Common
================================================== */



.inner{
  width: 100%;
  max-width: calc(1400px + 5% * 2);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 3%;
  padding-right: 3%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.inner2{
  width: 100%;
  max-width: calc(1604px + 5% * 2);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 3%;
  padding-right: 3%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.btn{
  --border: #707070;
  --text: #222;
  --bg: transparent;
  --hover-bg: #5D4533;
  --accent: #5D4533;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 1.2em 1em 1.2em 2.2em;
  max-width: 300px;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg);
  color: var(--text);
  text-decoration: none;
  font-size: 1.6rem;
  letter-spacing: .02em;
  overflow: hidden;
  transition: background-color .3s ease, border-color .3s ease;
}

.btn.white{
  --border: #fff;
  color: #fff;
}

/* 右側のドット */
.btn::before{
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
  transition: transform .3s ease, opacity .25s ease;
}

.btn.white::before{
  background: #fff;
}

/* hover */
.btn:hover{
  background: var(--hover-bg);
  border-color: #5D4533;
  color: #fff;
}

.btn:hover::before{
  transform: translate(12px, -50%);
  opacity: 0; /* フェードアウト */
}

/* focus */
.btn:focus-visible{
  outline: 3px solid rgba(10,111,60,.2);
  outline-offset: 4px;
}


.page-ttl{
  padding: 9em 0em 2em;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

.page-ttl .pt-inner{
  width: 100%;
  max-width: calc(1400px + 5% * 2);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 3%;
  padding-right: 3%;
  margin: 0 auto;
}

.page-ttl .pt-heading{
  font-size: 1.8rem;
}

.page-ttl .pt-heading span{
  display: block;
}

.page-ttl .pt-heading .en{
  font-size:8rem;
  margin-bottom: 0.2em;
  line-height: 1.2;
}

.c-ttl .en{
  font-size: 6rem;
  display: block;
  line-height: 1.2;
  font-weight: 600;
}

.c-ttl.center{
  text-align: center;
}


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

  .inner{
    padding-left: 5%;
    padding-right: 5%;
  }

  .btn{
    font-size: 1.4rem;
    max-width: 266px;
  }

  .page-ttl {
    padding: 7em 1em 2em;
  }

  .page-ttl .pt-heading .en {
    font-size: 5rem;
  }

  .page-ttl .pt-heading {
    font-size: 1.4rem;
  }

  .c-ttl .en{
    font-size: 3rem;
  }




}

/* ==================================================
   Pagination
================================================== */


.wp-pagenavi {
	margin: 0 auto;
	font-size: 0;
	text-align: center;
  font-family: 'Source Serif Pro', serif;
}
.wp-pagenavi .pages{
	display: none;
}
.wp-pagenavi .last{
	display: none;
}
.wp-pagenavi a, .wp-pagenavi span{
	margin: 0;
	padding: 0;
}

.wp-pagenavi .page, .wp-pagenavi .extend {
	display: inline-block;
	width: 45px;
	height: auto;
	line-height: 1;
	font-size: 1.8rem;
	color: #A5A5A5;
	text-decoration: none;
	text-align: center;
  border: none;
}

.wp-pagenavi .page:hover, .wp-pagenavi .extend:hover {
	opacity: 0.8;
}

.wp-pagenavi .current {
	display: inline-block;
	color: #000;
  font-size: 1.8rem;
	width: 45px;
	height: auto;
	line-height: 1;
	font-size: 16px;
	text-align: center;
  border: none;
  font-weight: 500!important;
}


.nextpostslink{
  width: 30px;
  position: relative;
  border: none!important;
  padding: 17px 6px 8px!important;
}


.previouspostslink{
  width: 30px;
  position: relative;
  border: none!important;
  padding: 17px 6px 8px!important;
}

.previouspostslink::before {
  
}


.aroundbox{
  display: flex;
  justify-content: space-around;
  padding-top: 24px;
  max-width: 800px;
  width: 100%;
  margin: 3em auto 0;
}

.aroundbox div{
  width: 33.33%;
}

.aroundbox .wp-pagenavi{
  width: auto;
}

.aroundbox div.prev{
  padding-left: 20px;
}

.aroundbox div.prev a::before{
  content: '';
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  border: 1px solid #000000;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: -60px;
}

.aroundbox div.prev a::after{
  content: '';
  box-sizing: border-box;
  width: 3px;
  height: 3px;
  border: 4px solid transparent;
  border-left: 6px solid #000;
  position: absolute;
  top: 17%;
  left: -44px;
  transform: rotate(-180deg) translate(0%, -50%);
}

.aroundbox div.all{
  text-align: center;
}

.aroundbox div.next{
  text-align: right;
  position: relative;
  padding-right: 20px;
}

.aroundbox div.next a::before{
  content: '';
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  border: 1px solid #000000;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: -60px;
}
.aroundbox div.next a::after{
  content: '';
  box-sizing: border-box;
  width: 3px;
  height: 3px;
  border: 4px solid transparent;
  border-left: 6px solid #000;
  position: absolute;
  top: 50%;
  right: -44px;
  transform: translate(0, -50%);
}

.aroundbox a{
  color: #000;
  position: relative;
}

.aroundbox.article-nav div.next a,
.aroundbox.article-nav div.prev a{
  font-size: 0;
}

.aroundbox.article-nav div.next {
  text-align: left;
}

.aroundbox.article-nav div.prev {
  text-align: right;
}

.aroundbox.article-nav div.next a::before {
  content: '';
  background: url(../images/top/img_slidearrow_next.svg) no-repeat;
  width: 20px;
  position: absolute;
  background-size: 100%;
  top: 50%;
  right: 8%;
  transform: translate(0, -50%);
  height: 9px;
  border: none;
}

.aroundbox.article-nav div.prev a::before {
  content: '';
  background: url(../images/top/img_slidearrow_prev.svg) no-repeat;
  width: 20px;
  position: absolute;
  background-size: 100%;
  top: 50%;
  left: 8%;
  transform: translate(0, -50%);
  height: 9px;
  border: none;
}


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

  .aroundbox div.prev a::before {
    width: 25px;
    height: 25px;
    left: -32px;
  }

  .aroundbox div.prev a::after {
    left: -27px;
  }

  .aroundbox div.prev {
    padding-left: 24px;
  }

  .aroundbox div.next a::before {
    width: 25px;
    height: 25px;
    right: -34px;
  }

  .aroundbox div.next a::after {
    right: -30px;
  }

}

@media screen and (max-width: 767px) {
  .wp-pagenavi .page, .wp-pagenavi .extend, .wp-pagenavi .current {
    width: auto;
    font-size: 1.4rem;
  }

  .aroundbox{
    margin: 60px 0 0;
  }

  .aroundbox.archive div.prev{
    display: none;
  }

  .aroundbox.archive div.next{
    display: none;
  }

  .aroundbox div.next a::before {
    width: 23px;
    height: 23px;
    right: -32px;
  }

  .aroundbox div.next a::after {
    border: 3px solid transparent;
    border-left: 4px solid #000;
    top: 50%;
    right: -26px;
  }

  .aroundbox div.prev a::before{
    width: 23px;
    height: 23px;
    left: -32px;
  }

  .aroundbox div.prev a::after {
    border: 3px solid transparent;
    border-left: 4px solid #000;
    left: -28px;
  }
}


/* ==================================================
   Bread Crumb
   ================================================== */
.c-breadcrumb {
  padding: 14px 0 30px;
}

.c-breadcrumb ul {
  padding: 1em 0 1em 5em;
  background: transparent;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      
}

.c-breadcrumb ul li{
  position: relative;
  font-size: 1.2rem;
  font-weight: 500;
}

.c-breadcrumb ul li:first-child{
  font-family: 'Montserrat', sans-serif;
}

.c-breadcrumb ul li::after{
  content: '';
  border-top: 1px solid #707070;
  border-right: 1px solid #707070;
  width: 4px;
  height: 4px;
  transform: rotate(45deg) translate(-50%,-50%);
  position: absolute;
  top: 50%;
  right: -16px;
}

.c-breadcrumb ul li:last-child:after{
  content: none;
}


.c-breadcrumb ul li {
  margin-right: 2.2em;
 }

 .c-breadcrumb ul li:last-child{
  margin-right: 0;
 }
 
 .c-breadcrumb ul li a {
   color: #202625;
 }
 
 .c-breadcrumb ul li i {
   margin-left: 10px;
 }

@media screen and (max-width: 767px) {
  .c-breadcrumb {
    padding: 0 0 50px;
  }

  .c-breadcrumb ul {
    padding: 12px 5%;
  }
}


/* ==================================================
   アニメーション
================================================== */

.matrix .bg-wrap,
.matrix .bg-wrap .inn {
  display: block;
}
 
.matrix .bg-wrap {
  overflow: hidden;
  opacity: 0;
}
 
/*.matrix .bg-wrap + .bg-wrap {
  margin-top: 10px;
}*/

 
.matrix .bg-wrap .inn {
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 100);
  transition: 1.9s cubic-bezier(0.22, 1, 0.36, 1);
}
 
.matrix.is-animated .bg-wrap {
  opacity: 1;
}
 
.matrix.is-animated .bg-wrap .inn {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}

/* fadeUp */
.element {
  /* 最初は非表示 */
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  transition: transform 1s, opacity 1s, visibility 1s;
}

.first-fade {
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  transition: transform 1s, opacity 1s, visibility 1s;
}

/* フェードイン時に入るクラス */
.is-fadein {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.img-zwrap{
  overflow: hidden;
}

.img-zwrap img{
  display: block;
  width: 100%;
  transition-duration: 2s;
  transform: scale(1.1);
}

.is-fadein .img-zwrap img{
  transform: scale(1.0);
}



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

.white-bg{
  position: relative;
  /*background: rgba(255,255,255,0.96); 
  -webkit-mask-image:
    radial-gradient(
      ellipse at center,
      rgba(0,0,0,0.92) 0%,   
      rgba(0,0,0,0.88) 22%,
      rgba(0,0,0,0.78) 45%,
      rgba(0,0,0,0.45) 65%,
      rgba(0,0,0,0.20) 80%,
      rgba(0,0,0,0) 100%
    );
  mask-image:
    radial-gradient(
      ellipse at center,
      rgba(0,0,0,0.92) 0%,
      rgba(0,0,0,0.88) 22%,
      rgba(0,0,0,0.78) 45%,
      rgba(0,0,0,0.45) 65%,
      rgba(0,0,0,0.20) 80%,
      rgba(0,0,0,0) 100%
  ); */
}

.white-bg::before{
  content:"";
  /*position: fixed;*/
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  left: 0;
  top: 0;           
  inset: 0;
  z-index: -1;               
  pointer-events: none;
  background: rgba(255,255,255,0.96);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.90) 30%,  
    rgba(0,0,0,0.75) 55%,  
    rgba(0,0,0,0.45) 72%,
    rgba(0,0,0,0.25) 88%,  
    rgba(0,0,0,0) 100%
  );

  mask-image: radial-gradient(
    ellipse at center,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.90) 30%,
    rgba(0,0,0,0.75) 55%,
    rgba(0,0,0,0.45) 72%,
    rgba(0,0,0,0.25) 88%,
    rgba(0,0,0,0) 100%
  ); 

}

/* ==================================================
   TOP
================================================== */

.mv-area{
  width: 100%;
  position: relative;
  background: #FFF;
  background: linear-gradient(180deg,rgba(255, 255, 255, 1) 26%, rgba(246, 243, 243, 1) 51%);
  height: 100vh;
  display: flex;
  align-items: center;
  box-shadow: 0px 10px 8px -5px rgba(192, 192, 192, 0.3);
}

.mv-area .inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: calc(1500px + 5% * 2);
}

.mv-area .left-box{
  width: 61%;
}

.mv-area .left-box .catch{
  font-size: 8.9rem;
  line-height: 1.2;
  font-weight: 500;
}

.mv-area .left-box p{
  line-height: 1.6;
  font-size: 2.3rem;
  margin-top: 2.5em;
}

.mv-area .right-box{
  width: 38%;
}

.top-about-area{
  padding: 5em 0 12em;
  position: relative;
  margin: 13em 0 16em;
}

.top-about-area::before{
  content: '';
  width: 80%;
  height: 100%;
  background-color: #F8F8F8;
  border-radius: 0 10px 10px 0;
  position: absolute;
  bottom: 0;
  left: 0;
  box-shadow: 6px 6px 12px -1px rgba(236, 236, 236, 1);
}


.top-about-area .left-box .c-heading{
  font-size: 3.2rem;
  font-weight: 500;
}

.top-about-area .left-box .c-heading .small{
  font-size: 1.4rem;
  display: block;
}

.top-about-area .left-box .sub-ttl{
  font-size: 2.2rem;
  margin-top: 0.6em;
}

.top-about-area .left-box p{
  line-height: 1.8;
  margin: 3em 0 6em;
  width: 27%;
}

.top-about-area .right-box{
  align-items: baseline;
  position: absolute;
  display: flex;
  width: 40%;
  bottom: 8%;
  right: 11%;
  gap: 3%;
}

.top-about-area .right-box .luxy-wrap:first-child{
  bottom: -10em;
  position: relative;
}

.top-service-area{
  position: relative;
  padding: 4em 0 10em;
}

.top-service-area::before{
  content: '';
  width: 74%;
  height: 100%;
  background-color: #F8F8F8;
  border-radius: 10px 0 0 10px;
  position: absolute;
  bottom: 3%;
  right: 0;
  box-shadow: 6px 6px 12px -1px rgba(236, 236, 236, 1);
}

.top-service-area .inner{
  display: flex;
  justify-content: space-between;
  flex-flow: row-reverse;
}

.top-service-area .left-box{
  width: 44%;
  background-color: #fff;
  padding: 5em;
}

.top-service-area .right-box{
  width: 44%;
  padding-top: 5em;
}

.top-service-area .right-box p{
  line-height: 1.8;
  margin: 2em 0 6em;
}

.merchandise-area{
  padding: 12em 0 16em;
}

.merchandise-area .p-list{
  margin-top: 7em;
}

.top-interview-area{
  padding: 7em 0 15em;
  position: relative;
}

.mid-gray{
  position: relative;
}

.mid-gray::before{
  content: '';
  width: 80%;
  height: 100%;
  background-color: #F8F8F8;
  border-radius: 0 10px 10px 0;
  position: absolute;
  bottom: 0;
  left: 0;
  box-shadow: 6px 6px 12px -1px rgba(236, 236, 236, 1);
}

.top-interview-area .int-wrap{
  width: 100%;
  max-width: calc(1660px + 5% * 2);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 3%;
  margin: 0 0 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
}

.top-interview-area .int-wrap .left-box{
  width: 50%;
}

.top-interview-area .int-wrap .left-box .c-heading{
  font-size: 3.2rem;
  margin-top: 2em;
}

.top-interview-area .int-wrap .left-box p{
  line-height: 1.8;
  margin: 2em 0 4em;
  width: 76%;
}

.top-interview-area .int-wrap .right-box{
  width: 50%;
}

.top-interview-area .int-wrap .right-box .img-box{
  overflow: hidden;
}

.top-interview-area .int-wrap .right-box .luxy-wrap:first-child{
  max-width: 800px;
  width: 100%;
  margin: 0 0 0 auto;
}

.top-interview-area .int-wrap .right-box .luxy-wrap:first-child .img-box{
  height: 480px;
  border-radius: 20px 0 0 20px;
}

.top-interview-area .int-wrap .right-box .luxy-wrap:last-child{
  max-width: 638px;
  width: 100%;
  margin: 1em 0 0 ;
}

.top-interview-area .int-wrap .right-box .luxy-wrap:last-child .img-box{
  height: 360px;
  border-radius: 20px;
}

.top-news-area{
  padding: 5em 0 5em;
}

.top-news-area .c-ttl{
  margin-bottom: 2em;
}

.top-news-area .btn{
  margin: 2em auto 0;
  display: table;
}

.gallery-area{
  padding: 10em 0 11em;
}

.gallery-area .gallery-wrap{
  display: flex;
  justify-content: space-between;
}

.gallery-area .gallery-wrap .img-box{
  overflow: hidden;
}

.gallery-area .gallery-wrap .g-left{
  width: 59%;
}

.gallery-area .gallery-wrap .g-left .img-box{
  height: 600px;
  border-radius: 0 20px 20px 0;
}

.gallery-area .gallery-wrap .g-right{
  width: 39.5%;
}

.gallery-area .gallery-wrap .g-right .luxy-wrap:first-child{
  max-width: 638px;
  width: 100%;
  margin: 0 0 1em;
}

.gallery-area .gallery-wrap .g-right .luxy-wrap:first-child .img-box{
  height: 350px;
  border-radius: 20px;
}

.gallery-area .gallery-wrap .g-right .luxy-wrap:last-child .img-box{
  height: 450px;
  border-radius: 20px 0 0 20px;
}


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

  .top-interview-area{
    padding: 7em 0 2em;
  }

}

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

  .merchandise-area {
    padding: 8em 0 10em;
  }

  .top-interview-area{
    padding: 7em 0 4em;
  }

  .top-about-area .left-box p {
    width: 42%;
  }

  .top-interview-area .int-wrap .right-box .luxy-wrap:first-child .img-box {
    height: 276px;
  }

  .gallery-area {
    padding: 5em 0 4em;
  }

  .gallery-area .gallery-wrap .g-right .luxy-wrap:last-child .img-box {
    height: 263px;
  }

  .gallery-area .gallery-wrap .g-right .luxy-wrap:first-child .img-box {
    height: 291px;
  }

  .top-interview-area .int-wrap .right-box .luxy-wrap:last-child .img-box {
    height: 281px;
  }

}

@media screen and (max-width: 820px) {
  .mv-area{
    height: 66vh;
  }

  .top-about-area .left-box p {
    width: 57%;
  }

  .top-about-area .right-box .luxy-wrap:first-child {
    bottom: 0;
  }

  .top-about-area .right-box {
    bottom: 8%;
    right: 5%;
  }

  .top-about-area {
    padding: 5em 0 12em;
    margin: 6em 0 7em;
  }

  .top-interview-area .int-wrap .left-box .c-heading{
    font-size: 2.8rem;
  }


  .gallery-area .gallery-wrap .g-right .luxy-wrap:first-child .img-box {
        height: 200px;
    }

  .gallery-area .gallery-wrap .g-right .luxy-wrap:last-child .img-box {
    height: 213px;
  }

  .gallery-area .gallery-wrap .g-left .img-box {
    height: 416px;
  }

  .top-interview-area .int-wrap .right-box .luxy-wrap:first-child .img-box {
    height: 251px;
  }
}

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

  .mv-area{
    padding-top: 3em;
    height: 100vh;
  }

  .mv-area .inner {
    display: block;
  }
  
  .top-about-area .left-box .c-heading {
      font-size: 2.8rem;
  }

  .top-about-area .left-box p {
    width: 100%;
    margin: 2em 0 3em;
  } 

  .mv-area .left-box .catch {
    font-size: 4.5rem;
  }

  .mv-area .left-box p {
    line-height: 1.6;
    font-size: 1.6rem;
    margin-top: 1.5em;
  }

  .mv-area .left-box {
    width: 100%;
  }

  .mv-area .right-box {
    width: 82%;
    margin: 2em auto 0em;
  }

  .top-about-area {
    padding: 5em 0 12em;
    margin: 2em 0 5em;
  }

  .top-about-area .right-box {
    position: relative;
    display: flex;
    width: 100%;
    bottom: auto;
    right: auto;
    margin-top: 2em;
  }

  .top-service-area {
    padding: 1em 0 5em;
  }

  .top-service-area .inner {
    display: block;
  }

  .top-service-area .right-box {
    width: 100%;
    padding-top: 0;
  }

  .top-service-area .left-box {
    width: 100%;
    padding: 3em;
    margin-top: 2em;
  }

  .top-service-area .right-box p {
    margin: 2em 0 3em;
  }

  .merchandise-area {
    padding: 4em 0 6em;
  }

  .merchandise-area .p-list {
    margin-top: 3em;
  }

  .top-interview-area {
    padding: 3em 0 3em;
  }

  .top-interview-area .int-wrap{
    display: block;
  }

  .top-interview-area .int-wrap .left-box {
    width: 100%;
  }
  
  .top-interview-area .int-wrap .right-box {
    width: 100%;
    margin-top: 2em;
  }

  .top-interview-area .int-wrap .left-box .c-heading {
    font-size: 2.8rem;
    letter-spacing: 0;
  }

  .top-interview-area .int-wrap .right-box .luxy-wrap:first-child .img-box {
    height: auto;
  }

  .top-interview-area .int-wrap .right-box .luxy-wrap:last-child .img-box {
    height: auto;
  }

  .top-interview-area .int-wrap .left-box p {
    line-height: 1.8;
    margin: 2em 0 3em;
    width: 100%;
  }

  .gallery-area {
    padding: 4em 0 3em;
  }

  .gallery-area .gallery-wrap .g-right .luxy-wrap:first-child .img-box {
    height: auto;
  }

  .gallery-area .gallery-wrap .g-right .luxy-wrap:last-child .img-box {
    height: auto;
  }
  
  .gallery-area .gallery-wrap .g-left .img-box {
    height: auto;
  }

  .top-about-area::before {
    width: 100%;
    height: 87%;
  }

  .top-service-area::before {
    width: 100%;
  }

  .mid-gray::before{
    content: '';
    width: 100%;
  }
}


/* ==================================================
   ニコーについて
================================================== */

.p-about .about-area{
  padding: 5em 0 6em;
}

.p-about .about-area .c-heading{
  font-size: 2rem;
  margin-bottom: 3.5em;
}

.p-about .about-area .c-heading .sub-ttl{
  font-size: 4rem;
  display: block;
  margin-bottom: 0.6em;
}

.p-about .about-area .about-wrap{
  text-align: center;
}

.p-about .about-area .about-wrap p{
  line-height: 1.8;
}

.p-about .mission-area{
  position: relative;
  padding: 5em 0 10em;
}

.p-about .mission-area::before{
  content: '';
  width: 80%;
  height: 62%;
  background-color: #F8F8F8;
  border-radius: 0 10px 10px 0;
  position: absolute;
  bottom: 0;
  left: 0;
  box-shadow: 6px 6px 12px -1px rgba(236, 236, 236, 1);
}

.p-about .mission-area .mission-wrap{
  display: flex;
  justify-content: space-between;
  margin-top: 8em;
}

.p-about .mission-area .mission-wrap .left-box{
  width: 40%;
}

.p-about .mission-area .mission-wrap .left-box .c-heading{
  font-size: 3.6rem;
  margin-top: 1.5em;
}

.p-about .mission-area .mission-wrap .right-box{
  width: 50%;
}

.p-about .value-area{
  padding: 9em 0 11em;
  text-align: center;
}

.p-about .value-area .c-heading{
  font-size: 3.8rem;
  margin: 1em 0 0;
}

.p-about .value-area .value-list{
  display: flex;
  justify-content: space-between;
  margin: 6em 0 0em;
}

.p-about .value-area .value-list .v-box{
  width: 23%;
}

.p-about .value-area .value-list .v-box figure{
  margin-bottom: 1.5em;
}

.p-about .message-area{
  padding: 10em 0 4em;
  position: relative;
}

.p-about .message-area::before{
  content: '';
  width: 70%;
  height: 450px;
  background-color: #FAFAFB;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 10px 0 0 10px;
  box-shadow: -6px 6px 12px -1px rgba(236, 236, 236, 1);
}

.p-about .message-area .big-ttl{
  /*font-size: 21rem;*/
  font-size: clamp(6rem, 20vw, 21rem);
  line-height: 1;
  /*color: #CBC7C7;*/
  color: rgb(203, 199, 199,0.2);
  font-style: italic;
  text-align: center;
  font-weight: 300;
}

.p-about .message-area .c-heading{
  text-align: center;
  font-size: 2.8rem;
  margin: 4em 0 3em;
}

.p-about .message-area p{
  line-height: 2;
  text-align: center;
}

.p-about .message-area .name-block{
  text-align: center;
  font-size: 2.6rem;
  margin-top: 3em;
}

.p-about .company-area{
  padding: 8em 0 13em;
}

.table-wrap dl{
  display: flex;
  justify-content: space-between;
}

.table-wrap dl dt{
  width: 30%;
  border-bottom: 2px solid #414041;
  padding: 3em 0 1.5em 2em;
}

.table-wrap dl dd{
  width: 70%;
  border-bottom: 1px solid #707070;
  padding: 3em 0 1.5em 3em;
}

.p-about .company-area .table-wrap{
  max-width: 1120px;
  width: 100%;
  margin-top: 3em;
}

.p-about .company-area .company-wrap{
  position: relative;
  padding: 9em 0 9em;
  margin-top: -4em;
}

.p-about .company-area .company-wrap::before{
  content: '';
  width: 79%;
  height: 100%;
  background-color: #FAFAFA;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0 10px 10px 0;
  box-shadow: 6px 6px 12px -1px rgba(236, 236, 236, 1);
}

.p-about .bg{
  max-width: 1660px;
  width: 100%;
  border-radius: 0 25px 25px 0;
  height: 480px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.p-about .bg .bg-img{
  height: 110%;
}

.p-about .bg.mission{
  margin: 0 auto;
  border-radius: 25px;
}

.p-about .bg.mission .bg-img{
  background: url(../images/about/bg_mission.jpg) no-repeat;
  background-size: 104%;
  border-radius: 25px;
  background-position: bottom center;
}

.p-about .bg.message{
  margin-bottom: 15em;
}

.p-about .bg.message .bg-img{
  background: url(../images/about/bg_message.jpg) no-repeat;
  background-size: 104%;
  background-position: bottom center;
  border-radius: 0 25px 25px 0;
}

.p-about .bg.company .bg-img{
  background: url(../images/about/bg_company.jpg) no-repeat;
  background-size: 104%;
  /*background-position: bottom center;*/
  border-radius: 0 25px 25px 0;
}

.message-area{
  position: relative;
}

.message-area .white-bg{
  position: relative; /* ここを基準にする */
  padding-top: 6em;
  /*padding-top: 100vh;*/
}

.message-area .inner{
  position: relative;
  z-index: 2;
}

/* 固定っぽくしたい見出し */
.message-area .big-ttl{
   position: sticky;
  top: clamp(120px, 28vh, 320px); /* ←ここが肝。緑枠に寄せる */
  z-index: 5;
  height: fit-content;

  /* ✅ 常に表示 */
  opacity: 1;
  transform: none;
  pointer-events: auto;

  /* アニメ消すなら */
  transition: none;
}



/* SPは固定をやめるなら */
@media (max-width: 768px){
  .message-area .big-ttl{
    position: relative;
    top: auto;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}

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

  .p-about .bg {
    height: 300px;
  }

  .p-about .bg.message {
    margin-bottom: 7em;
  }

  .p-about .company-area {
    padding: 3em 0 7em;
  }

  .p-about .company-area .company-wrap::before {
    width: 100%;
  }

  .p-about .mission-area .mission-wrap .left-box {
    width: 45%;
  }
}

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

  .p-about .bg{
    height: auto;
    border-radius: 0 25px 0 0;
  }

  .p-about .bg .bg-img {
    height: 160px;
    border-radius: 0 25px 0 0;
  }

  .p-about .bg.mission .bg-img,
  .p-about .bg.message .bg-img,
  .p-about .bg.company .bg-img {
    background-size: cover;
  }

  .p-about .bg.message .bg-img,
  .p-about .bg.company .bg-img{
    border-radius: 0 25px 0 0;
  }

  .p-about .about-area .c-heading .sub-ttl {
    font-size: 3rem;
    margin-bottom: 0.2em;
  }

  .p-about .about-area .c-heading {
    font-size: 1.8rem;
    margin-bottom: 2.5em;
  }

  .p-about .mission-area {
    padding: 2em 0 5em;
  }

  .p-about .bg.mission {
    max-width: 90%;
  }

  .p-about .mission-area .mission-wrap {
    display: block;
    margin-top: 3em;
  }

  .p-about .mission-area .mission-wrap .left-box .c-heading {
    font-size: 2.3rem;
    margin-top: 1em;
  }

  .p-about .mission-area .mission-wrap .left-box {
    width: 100%;
  }

  .p-about .mission-area .mission-wrap .right-box {
    width: 100%;
    margin-top: 2em;
  }

  .p-about .mission-area::before {
    content: '';
    width: 100%;
    height: 85%;
  }

  .p-about .value-area .c-heading {
    font-size: 2.3rem;
  }

  .p-about .value-area .value-list{
    display: block;
    margin: 3em 0 0em;
  }

  .p-about .value-area .value-list .v-box{
    width: 100%;
    margin-bottom: 4em;
  }

  .p-about .value-area .value-list .v-box figure{
    max-width: 39%;
    margin: 0 auto 1.3em;
  }

  .p-about .value-area .value-list .v-box:last-child{
    margin-bottom: 0;
  }

  .p-about .value-area {
    padding: 5em 0 6em;
  }

  .p-about .message-area {
    padding: 4em 0 4em;
  }

  .p-about .message-area::before {
    content: '';
    width: 90%;
    height: 260px;
  }

  .p-about .bg.message {
    margin-bottom: 8em;
  }

  .p-about .message-area .c-heading {
    font-size: 2.3rem;
    margin: 2em 0 2em;
  }

  .p-about .message-area .name-block {
    font-size: 1.8rem;
    margin-top: 2em;
  }

  .p-about .company-area {
    padding: 2em 0 4em;
  }

  .p-about .company-area .company-wrap::before{
    width: 100%;
  }



  .p-about .company-area .company-wrap {
    padding: 3em 0 6em;
    margin-top: 0;
  }

  .p-about .company-area .table-wrap {
    margin-top: 1em;
  }

  .table-wrap dl {
    display: block;
  }

  .table-wrap dl dd {
    width: 100%;
    padding: 2em 0 1.5em 1em;
  }

  .table-wrap dl dt {
    width: 100%;
    padding: 2em 0 0.9em 1em;
    font-weight: bold;
  }

  .message-area .white-bg {
    padding-top: 7em;
  }

}

/* ==================================================
   事業内容
================================================== */

.p-service{
  overflow: hidden;
}

.p-service .service-area{
  position: relative;
}

.p-service .service-area::before{
  content: '';
  width: 72%;
  height: 59%;
  background-color: #F8F8F8;
  border-radius: 0 10px 10px 0;
  position: absolute;
  top: 3%;
  left: 0;
  box-shadow: 6px 6px 12px -1px rgba(236, 236, 236, 1);
}

.p-service .service-wrap{
  display: flex;
  justify-content: space-between;
  flex-flow: row-reverse;
  padding-left: 1em;
  position: relative;
} 

.p-service .service-wrap .left-box{
  width: 45%;
  overflow: hidden;
  /*height: 22vw;*/
  height: 400px;
   border-radius: 20px 0 0 20px;
}

.p-service .service-wrap .left-box .bg-service{
  height: 450px;
  width: 100%;
  background: url(../images/service/img_about.jpg) no-repeat;
  background-size: cover;
   border-radius: 20px 0 0 20px;
}

.p-service .service-wrap .right-box{
  width: 48%;
  padding-top: 6em;
}

.p-service .service-wrap .text-box{
  max-width: 87%;
  margin: 0 0 0 auto;
  padding-right: 9em;
}

.p-service .service-wrap .text-box p{
  line-height: 1.8;
}

.p-service .service-wrap .text-box .c-heading{
  font-size: 3.2rem;
  margin-bottom: 1.5em;
}

.p-service .service-area .graph-box{
  max-width: 852px;
  width: 100%;
  margin: 7em 0 0;
  padding: 5em 6em;
  position: relative;
  background-color: #fff;
}

.p-service .service-area .graph-box img{
  max-width: 451px;
  width: 100%;
  margin: 0 auto;
  display: block;
}

.p-service .service-area .graph-box .c-heading{
  font-size: 2.6rem;
  margin-bottom: 1em;
}

.p-service .product-area{
  padding: 5em 0 21em;
  position: relative;
}

.p-service .product-area::before{
  content: '';
  width: 80%;
  height: 28%;
  background-color: #F8F8F8;
  border-radius: 0 10px 10px 0;
  position: absolute;
  top: 13%;
  left: 0;
  box-shadow: 6px 6px 12px -1px rgba(236, 236, 236, 1);
}

.p-service .product-area::after{
  content: '';
  width: 74%;
  height: 51%;
  background-color: #F8F8F8;
  border-radius: 10px 0 0 10px;
  position: absolute;
  bottom: 3%;
  right: 0;
  box-shadow: 6px 6px 12px -1px rgba(236, 236, 236, 1);
}

.p-service .product-area .p-upper{
  padding: 0em 0 5em;
}

.p-service .product-area .p-upper .c-heading{
  font-size: 3.2rem;
  text-align: center;
}

.p-list{
  display: flex;
  justify-content: space-between;
  margin-top: 4em;
}

.brown-hv{
  position: relative;
}

.brown-hv:hover{
  opacity: 1;
}

.brown-hv figure{
  position: relative;
}

.brown-hv figure::before{
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgb(93, 69, 51,0.6);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.3s ease-in-out;
  border-radius: 20px;
}

.brown-hv:hover figure::before{
  opacity: 1;
  transition: 0.3s ease-in-out;
}

.brown-hv figure::after{
  content: 'View more';
  font-size: 2rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  font-family: "Lato", sans-serif;
  color: #fff;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.brown-hv:hover figure::after{
  opacity: 1;
  transition: 0.3s ease-in-out;
}

.p-list a{
  width: 31.5%;
  display: block;
  color: #000;
  border-top: 1px solid #707070;
}

.p-list a img{
  display: block;
}

.p-list a .p-name{
  position: relative;
  padding: 2em 0 3em;
  transition: 0.3s ease-in-out;
}

.p-list a .p-name::before{
  content: '';
  background: url(../images/common/icon_arrow.svg) no-repeat;
  background-size: cover;
  height: 12px;
  width: 39px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0,-50%);
  transition: 0.3s ease-in-out;
}

.p-list a:hover .p-name::before{
  right: -5px;
  transition: 0.3s ease-in-out;
}

.p-service .product-area .p-lower{
  padding: 14em 0 3em;
  position: relative;
  z-index: 1;
}

.p-service .product-area .desc-wrap{
  position: relative;
  margin-bottom: 15em;
  z-index: 1;
}

.p-service .product-area .desc-wrap:last-child{
  margin-bottom: 0;
}

.p-service .product-area .desc-wrap:last-child{
  margin-bottom: 0em;
}

.p-service .product-area .desc-wrap.reverse{
  flex-flow: row-reverse;
}

.p-service .product-area .desc-wrap .img-box{
  width: 50%;
}

.p-service .product-area .desc-wrap.reverse .img-box{
  margin: 0 0 0 auto;
}



.p-service .product-area .desc-wrap.reverse .img-box .big-img{
  margin: 0 0 0 auto;
}

.p-service .product-area .desc-wrap .img-box .small-img{
  max-width: 761px;
  width: 100%;
  margin: 2.3em 0 0;
}

.p-service .product-area .desc-wrap .img-box .small-img .img-wrap{
  display: flex;
  gap: 2.5%;
  margin-bottom: 1em;
}

.p-service .product-area .desc-wrap .img-box .small-img .img-wrap img{
  border-radius: 15px;
  display: block;
}

.p-service .product-area .desc-wrap .img-box .big-img{
  height: 600px;
  max-width: 535px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.p-service .product-area .desc-wrap .img-box .big-img .bg{
  height: 120%;
  width: 100%;
}

.p-service .product-area .desc-wrap .img-box .big-img .product1{
  background: url(../images/service/img_product01-1.jpg) no-repeat;
  background-size: cover;
      background-position: center;
}

.p-service .product-area .desc-wrap .img-box .big-img .product2{
  background: url(../images/service/img_product02-1.jpg) no-repeat;
  background-size: cover;
      background-position: center;
}

.p-service .product-area .desc-wrap .img-box .big-img .product3{
  background: url(../images/service/img_product03-1.jpg) no-repeat;
  background-size: cover;
      background-position: center;
}

.p-service .product-area .desc-wrap .desc-box{
  width: 54%;
  position: absolute;
  right: 0;
  top: 0;
}

.p-service .product-area .desc-wrap.reverse .desc-box{
  right: auto;
  left: 0;
}

.p-service .product-area .desc-wrap .desc-box .c-heading{
  font-size: 3.2rem;
}

.p-service .product-area .desc-wrap .desc-box p{
  line-height: 2;
  margin: 4em 0 8em;
}


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

  .p-service .product-area .desc-wrap .img-box .big-img {
    height: 529px;
    max-width: 470px;
  }
}

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

  .p-service .service-wrap .text-box {
      max-width: 87%;
      margin: 0 0 0 auto;
      padding-right: 0;
  }
}

@media screen and (max-width: 1181px) {
  .p-service .service-wrap .text-box{
    max-width: 95%;
  }

  .p-service .product-area {
    padding: 5em 0 8em;
  }

  .brown-hv figure::before{
    content: none;
  }
}

@media screen and (max-width: 1170px) {
  .p-service .product-area .desc-wrap .desc-box {
      width: 47%;
  }

  .p-service .product-area .desc-wrap .desc-box .c-heading {
    font-size: 2.8rem;
  }

  .p-service .product-area .desc-wrap .desc-box p {
    margin: 3em 0 5em;
  }

  .p-service .service-wrap .left-box .bg-service {
    height: 296px;
  }

  .p-service .service-wrap .left-box {
    height: 296px;
  }
}

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

  .p-service .service-wrap .text-box {
    max-width: 97%;
    padding-right: 0;
  }

  .p-service .service-wrap .text-box .c-heading {
    font-size: 2.8rem;
  }

  .p-service .service-area .graph-box .c-heading {
    font-size: 2rem;
    text-align: center;
  }

  .p-service .service-area .graph-box img {
    max-width: 327px;
  }


  .p-service .product-area {
    padding: 5em 0 8em;
  }

  .p-service .product-area .p-lower {
    padding: 4em 0 3em;
  }

  .p-service .product-area .desc-wrap .desc-box {
    width: 100%;
    position: relative;
    right: auto;
    top: auto;
  }

  .p-service .product-area .desc-wrap .img-box {
    width: 100%;
    display: flex;
    gap: 5%;
    margin-top: 2em;
  }

  .p-service .product-area .desc-wrap.reverse .img-box{
    margin-top: 2em;
  }

  .p-service .product-area .desc-wrap {
    margin-bottom: 9em;
  }

  .p-service .product-area .desc-wrap .img-box .big-img {
    height: 440px;
  }
  
}

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


  .p-service .service-wrap .left-box {
    width: 100%;
    height: auto;
    border-radius: 20px;
    padding-top: 2em;
  }

  .p-service .service-wrap .left-box .bg-service {
    height: 305px;
    width: 100%;
    border-radius: 20px;
  }

  .p-service .service-area .graph-box {
    margin: 7em 0 0;
    padding: 3em 2em;
  }

  .p-service .service-wrap .text-box .c-heading {
    font-size: 2.5rem;
  }

  .p-service .product-area {
    padding: 8em 0 4em;
  }

  .p-service .product-area .p-upper .c-heading {
    font-size: 2.8rem;
  }

  .p-service .service-area::before{
    content: '';
    width: 84%;
  }

  .p-list{
    display: block;
    margin-top: 3em;
  }

  .p-list a{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5em 0.5em;
  }

  .p-list a figure {
    position: relative;
    width: 22%;
  }

  .p-list a .p-name {
    width: 44%;
  }

  .p-service .product-area .p-lower {
    padding: 2em 0 3em;
  }

  .p-service .service-wrap {
    display: block;
    padding: 0 1em;
  }

  .p-service .service-wrap .text-box {
    max-width: 100%;
    padding-right: 0;
  }

  .p-service .service-wrap .right-box {
    width: 100%;
    padding-top: 3em;
  }

  .p-service .product-area .desc-wrap {
    margin-bottom: 9em;
  }

  .p-service .product-area .desc-wrap .desc-box {
    width: 100%;
    position: relative;
    right: auto;
    top: auto;
    margin-bottom: 4em;
  }

  .p-service .product-area .desc-wrap .img-box {
    width: 100%;
    display: block;
  }

  .p-service .product-area .desc-wrap .img-box .big-img,
  .p-service .product-area .desc-wrap.reverse .img-box .big-img {
    margin: 0 auto;
    height: auto;
  } 

  .p-service .product-area .desc-wrap .desc-box p {
    margin: 2em 0 2em;
  }

  .p-service .product-area .desc-wrap .desc-box .c-heading {
    font-size: 2.4rem;
    letter-spacing: 0;
  }

  .p-service .product-area::before {
    content: '';
    width: 94%;
    height: 13%;
    top: 14%;
  }

  .p-service .product-area::after {
    content: '';
    width: 86%;
    height: 41%;
    bottom: 0;
  }


}

/* ==================================================
   ブログ
================================================== */


.p-blog .archive-wrap{
  padding: 3em 0 8em;
  position: relative;
  margin: 6em 0 10em;
}

.p-blog .archive-wrap::before{
  content: '';
  width: 95%;
  height: 100%;
  background-color: #FAFAFA;
  position: absolute;
  left: 0;
  top: 0;
}


.p-blog .blog-wrapper{
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
}


.s-blog-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}

.s-blog-list::after{
  content: '';
  width: 32%;
  display: block;
}

.s-blog-list li{
  width: 32%;
  margin-bottom: 5em;
}

.s-blog-list li a{
  color: #000;
  display: block;
}

.s-blog-list li a .img-box{
  margin: 0.8em 0 0.8em;
}

.s-blog-list li a .img-box figure {
  margin: 0 0 1em;
  width: 100%;
  padding-top: 64.14%;
  overflow: hidden;
  position: relative;
}

.s-blog-list li a .img-box figure img{
  max-width: initial;
  width: 112%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.blog-date{
  font-size: 1.4rem;
  margin: 0.5em 0 0.5em;
}

.s-blog-list li a figure{
  overflow: hidden;
}

.s-blog-list li a figure img{
  display: block;
  transition-duration: 0.5s;
  width: 100%;
}

.s-blog-list li a:hover figure img{
  width: 116%;
  transition-duration: 0.5s;
}

.s-blog-list li .upper-wrap{
  display: flex;
  gap: 2%;
  align-items: center;
  margin: 0 0 0.8em;
}

.cat-block{
  color: #000;
  font-size: 1.3rem;
  margin-right: 10px;
  border: 1px solid #000;
  border-radius: 30px;
  padding: 0.2em 0.9em;
}

.cat-wrap.condition {
  margin: 0 0 15px;
}

.cat-wrap.condition span{
  background-color:#B14E2F;
  color: #fff;
  font-size: 1.4rem;
  display: table;
  padding: 5px 10px;
}

.cat-block:last-child{
  margin-right: 0px;
}

.cat-block.resumai{
  color: #AB904F;
}

.cat-block.cocochi-ie{
  color: #909E9F;
}


/*サイド*/

.blog-wrapper .side-box{
  margin-bottom: 4em;
}

.blog-wrapper .side-box:last-child{
  margin-bottom: 0em;
}

.blog-wrapper .side-box .side-ttl{
  border-bottom: 1px solid #909E9F;
  padding: 0 0 0.8em;
  font-size: 0.8em;
  margin-bottom: 1.5em;
}

.blog-wrapper .side-box .side-ttl .en{
  font-size: 1.8rem;
  margin-right: 10px;
}

.blog-wrapper .side-t-box li{
  margin-bottom: 1em;
}

.blog-wrapper .side-t-box li:last-child{
  margin-bottom: 0;
}

.blog-wrapper .side-t-box li a{
  display: flex;
  justify-content: space-between;
  color: #000;
  border: 1px solid #909E9F;
  padding: 0.7em 0.7em;
  position: relative;
}

.blog-wrapper .side-t-box li a::before{
  content: '';
  background: url(../images/common/arrow_circle.svg) no-repeat;
  width: 30px;
  height: 30px;
  background-size: cover;
  position: absolute;
  right: 7px;
  bottom: 10px;
}

.blog-wrapper .side-t-box li a:hover::before{
  right: 2px;
}

.blog-wrapper .side-t-box li a .cat-block{
  font-size: 1.4rem;
}

.blog-wrapper .side-t-box li a figure{
  margin-bottom: 0;
  height: 121px;
  overflow: hidden;
  position: relative;
  width: 35%;
}

.blog-wrapper .side-t-box li a figure img{
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  max-width: initial;
  width: auto;
  height: 100%;
}

.blog-wrapper .side-t-box li a .detail-block{
  width: 60%;
}

.blog-wrapper .side-box .t-archive{
  width: 100%;
  position: relative;
  margin-top: 0.8em;
}

.blog-wrapper .side-box .t-archive select{
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.95556;
  width: 100%;
  display: block;
  border: none;
  padding: 6px 15px 6px 15px;
  position: relative;
  border: 1px solid #DCDCDC;
  border-radius: 3px;
}

.blog-wrapper .side-box .t-archive:after {
  content: '';
  position: absolute;
  top: 23px;
  right: 24px;
  background: url(../images/common/arrow_down.svg) no-repeat;
  width: 6px;
  height: 6px;
  background-size: cover;
  position: absolute;
  transform: translate(0,-50%);
}

.blog-wrapper .side-box .side-category li a{
  display: block;
  color: #000;
  font-size: 1.6rem;
  position: relative;
  padding: 0.4em 0 0.4em 2em;
}

.blog-wrapper .side-box .side-category li a::before{
  content: '';
  background: url(../images/common/deco_btn_lb.svg) no-repeat;
  width: 7px;
  height: 7px;
  background-size: cover;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translate(0,-50%);
}


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


  .p-blog .blog-tab-wrap .b-tab{
    font-size: 1.3rem;
  }
  
  .cat-block {
    font-size: 1.4rem;
  }

  .s-blog-list li a .img-box {
    margin: 0.3em 0 0.5em;
  }

  .p-blog .blog-wrapper {
    display: block;
    padding: 0;
  }

  .p-blog .blog-wrapper .b-right {
    width: 100%;
  }

  .p-blog .blog-wrapper .b-left {
    width: 100%;
    padding-top: 0em;
    margin-top: 3em;
  }

  .s-blog-list li {
    width: 100%;
    margin-bottom: 2em;
  }


}


/*個別*/

.p-single .blog-area{
  padding: 10em 0px 9em;
}


.kiji-wrap .blog-date-wrap{
  margin-top: 1em;
}

.kiji-wrap .blog-date-wrap .blog-date{
  margin-right: 20px;
}

.kiji-wrap{
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 4em;
  display: block;
}

.kiji-wrap h1{
  text-align: left;
  position: relative;
  font-size: 2.5rem;
  margin: 1em 0;
}

.kiji-wrap .eyecatch{
  z-index: 1;
  position: relative;
  margin: 3em 0;
}

.kiji-wrap .eyecatch img{
  display: block;
  margin:0 auto;
  height: auto;
}

.kiji-wrap .kiji-box {
  padding: 0px 0 0;
  overflow: hidden;
}

.kiji-wrap .kiji-box p{
  margin: 1.5em 0;
  padding: 0 3em;
  line-height: 1.8;
}

.kiji-wrap .kiji-box h2{
  padding: 0 0 0.8em 1.5em;
  border-bottom: 1px solid #B8B8B8;
  font-size: 2.2rem;
  line-height: 1.6;
  margin-bottom: 1em;
  margin-top: 2em;
  font-weight: 500;
  position: relative;
}

.kiji-wrap .kiji-box h2::before{
  content: '';
  width: 1px;
  height: 31px;
  position: absolute;
  left: 10px;
  bottom: -9px;
  background-color: #B8B8B8;
}

.kiji-wrap .kiji-box h3{
  padding: 0 0 0 1em;
  font-size: 2rem;
  line-height: 2.2;
  margin-bottom: 1em;
  margin-top: 2em;
  font-weight: 500;
}

.kiji-wrap .kiji-box h4{
  font-size: 1.8rem;
  padding: 0 0 0 1em;
  line-height: 1.4;
  margin-bottom: 1em;
  margin-top: 2em;
  position: relative;
  display: inline-block;
  font-weight: 500;
}

.kiji-wrap .kiji-box img.aligncenter{
  display: block;
  margin: 1em auto;
} 



.kiji-wrap .kiji-box a{
  color: #000;
  text-decoration: underline;
}

.kiji-wrap .kiji-box a:hover{
  text-decoration: none;
}

.kiji-wrap .kiji-box ol{
  padding-left: 1.8em;
  margin-bottom: 0.5em!important;
  margin-left: 3em;
}

.kiji-wrap .kiji-box ol li{
  list-style-type:decimal!important;
  
}

.kiji-wrap .kiji-box ul{
  padding-left: 1.8em;
  margin-bottom: 0.5em!important;
  margin-left: 3em;
}

.kiji-wrap .kiji-box ul li{
  list-style-type: disc!important;
}


.p-blog .related-series{
  background-color: #DBD5CD;
  padding: 4em 0 3em;
}

.p-blog .related-wrap{
  max-width: 95%;
  width: 100%;
  margin: 4em 0 0 auto;
}

.p-blog .related-wrap .s-blog-list{
  display: block;
}


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

  .kiji-wrap .blog-date-wrap {
    margin-top: 0.5em;
  }

  .kiji-wrap h1 {
    font-size: 2rem;
  }

  .kiji-wrap .kiji-box h2 {
    padding: 0px 1.3em 1em;
    font-size: 1.8rem;
  }

  .kiji-wrap .kiji-box h2::before {
    left: 8px;
  }

  .kiji-wrap .kiji-box h3 {
    font-size: 1.6rem;
    padding: 0 0 0 0em;
  }

  .kiji-wrap .kiji-box h4 {
    padding: 0 0 0 0em;
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 0.5em;
    margin-top: 1em;
    font-weight: 500;
  }

  .p-blog .archive-wrap {
    padding: 3em 0 8em;
    margin: 2em 0 6em;
  }


  .p-single .blog-area {
    padding: 8em 0px 5em;
  }

  .p-blog .related-wrap {
    max-width: 100%;
    margin: 3em 0 0 auto;
  } 

  .kiji-wrap .kiji-box p{
    padding: 0 0em;
  }

  .kiji-wrap .kiji-box ul {
    margin-left: 0em;
  }

  .kiji-wrap .kiji-box ol {
    margin-left: 0em;
  }

  
}

/* ==================================================
    インタビュー
================================================== */


.p-blog .archive-wrap.interview-area{
  padding: 5em 0 20em;
  margin: 0;
  overflow: hidden;
}

.p-blog .interview-area.archive-wrap::before {
  content: '';
  width: 89%;
  top: 3%;
  height: 79%;
}

.interview-area .interview-desc .c-heading{
  font-size: 3.2rem;
  margin-bottom: 1.5em;
  font-weight: 500;
}

.interview-area .tab-area{
  margin: 6em 0 8em;
}

.interview-list{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}

.interview-list li{
  width: 45%;
  margin-bottom: 4em;
}

.interview-list li:nth-child(even){
  margin-top: 3em;
}

.interview-list li a{
  display: flex;
  justify-content: space-between;  
  position: relative;
  color: #000; 
}

.interview-list li .prod-cat{
  writing-mode: vertical-rl;
  width: 6%;
  display: flex;
  font-size: 1.7rem;
  align-items: center;
  font-weight: bold;
  letter-spacing: 0.3em;
}

.interview-list li .int-wrap{
  width: 89%;
}

.interview-list li .blog-ttl{
  font-size: 2rem;
  padding: 1.5em 1em 1.5em 3em;
  position: relative;
}

.interview-list li .blog-ttl::before{
  content: '';
  background: url(../images/common/icon_arrow2.svg) no-repeat;
  width: 32px;
  height: 25px;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  transition: 0.3s ease-in-out;
}

.interview-list li a:hover .blog-ttl::before{
  left: 1%;
  top: 48%;
  transition: 0.3s ease-in-out;
}

.interview-list li .img-box{
  position: relative;
}

.interview-list li .img-box .cat-wrap{
  position: absolute;
  left: 0;
  bottom: 0;
}

.interview-list li .img-box .cat-wrap{
  background-color: rgba(255, 255, 255, 0.7);
  padding: 0.5em 4em;
  border-radius: 0 0 0 20px;
  font-weight: 500;
}

.interview-list li figure{
  width: 100%;
  padding-top: 125.14%;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}

.interview-list li figure img{
  max-width: initial;
  width: 105%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transition-duration: 0.9s;
}

.interview-list li a:hover img{
  opacity: 1;
  width: 108%;
  transition-duration: 0.5s;
}

/*-- 個別ページ --*/

.interview-area.single{
  padding: 12em 0 15em;
}

.interview-area .interview-upper{
  display: flex;
  justify-content: center;
  gap: 6%;
  margin-bottom: 6em;
}

.interview-area .interview-upper .eyecatch{
  width: 32%;
}

.interview-area .interview-upper .eyecatch img{
  display: block;
  margin: 0 auto;
  border-radius:20px;
  height: auto;
}

.interview-area .interview-upper .text-box{
  width: 52%;
  padding-top: 4em;
}

.interview-area .interview-upper .text-box .intro-box{
  margin: 4em 0 2em;
}

.interview-area .interview-upper .text-box .ttl{
  font-size: 3.2rem;
  font-weight: 500;
  margin: 0.7em 0 0.9em;
}

.interview-area .interview-upper .text-box .sub-ttl{
  font-size: 2.2rem;
}

.interview-area .interview-upper .text-box .cat-block {
  margin-right: 6px;
}

.interview-area .kiji-wrap {
  margin: 0 auto 9em;
}

.interview-area .kiji-wrap .kiji-box h2:first-of-type {
  margin-top: 2em;
}
.interview-area .kiji-wrap .kiji-box h2{
  padding: 0 1.5em;
  border-bottom: none;
  font-size: 3rem;
  margin-bottom: 1.6em;
  margin-top: 5em;
}

.interview-area .kiji-wrap .kiji-box h2::before {
  content: none;
}

.interview-area .searchandfilter h4{
  font-size: 2.5rem;
  font-family: "Lato", sans-serif;
} 

.interview-area .searchandfilter ul>li>ul:not(.children) {
  display: flex;
  flex-wrap: wrap;
  gap: 1%;
}

.interview-area .searchandfilter input[type=checkbox] {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.interview-area .searchandfilter ul>li>ul:not(.children)>li{
  max-width: 208px;
  width: 100%;
}

.interview-area .searchandfilter label {
  width: 100%;
  padding: 1.2em 1em 1.2em 2em !important;
  cursor: pointer;
  border: 1px solid #707070;
  border-radius: 30px;
  display: block;
  position: relative;
  transition: background-color .25s ease, border-color .25s ease;
}

.interview-area .searchandfilter label::before{
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5D4533;
  transform: translateY(-50%);
  transition: transform .3s ease, opacity .25s ease;
}

.interview-area .searchandfilter label:hover {
  background: #5D4533;
  border-color: #5D4533;
  color: #fff;
}

.interview-area .searchandfilter label:hover::before{
  transform: translate(12px, -50%);
  opacity: 0; /* フェードアウト */
}

.interview-area .searchandfilter input:checked + label {
  background-color: #5D4533;
  color: #fff;
}

@media screen and (max-width: 1181px) {
 .interview-area .searchandfilter label {
    transition: none;
  }

  .interview-area .searchandfilter label:hover {
    background: #ffffff;
    border: 1px solid #707070;
    color: #000;
  }

  .interview-area .searchandfilter label::before{
    transition: none;
    top: 44%;
    transform: translateY(0%);
  }
  .interview-area .searchandfilter label:hover::before{
    transform: none;
    opacity: 1; /* フェードアウト */
  }
}

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

  .interview-area.single {
    padding: 6em 0 8em;
  }

  .interview-area .kiji-wrap .kiji-box h2 {
    font-size: 2.5rem;
  }

  .interview-area .interview-upper .text-box .intro-box {
    margin: 2em 0 2em;
  }

  .interview-area .interview-upper .text-box {
    padding-top: 2em;
  }

 


}

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

  .interview-area .searchandfilter ul>li>ul:not(.children) {
    gap: 1.5%;
  }

  .interview-area .searchandfilter ul>li>ul:not(.children)>li {
    max-width: 149px;
    font-size: 1.3rem;
  }

  .p-blog .interview-area.archive-wrap::before {
    width: 100%;
    top: 2%;
    height: 100%;
  }

  .interview-area .searchandfilter label {
    padding: 1.2em 1em 1.2em 1.4em !important;
  }

  .p-blog .archive-wrap.interview-area {
    padding: 2em 0 6em;
  }

  .interview-area .interview-desc .c-heading {
    font-size: 2.6rem;
    margin-bottom: 1em;
  }

  .interview-list {
    display: block;
  }

  .interview-list li {
    width: 100%;
    margin-bottom: 4em;
  }

  .interview-list li:nth-child(even) {
    margin-top: 0;
  }
  .interview-list li:last-child {
    margin-bottom: 0em;
  }

  .interview-list li .blog-ttl {
      font-size: 1.6rem;
  }



  .interview-area.single {
    padding: 7em 0 6em;
  }

  .interview-area .interview-upper .eyecatch {
    width: 80%;
    margin: 0 auto;
  }

  .interview-area .interview-upper .text-box {
    width: 100%;
    padding-top: 3em;
  }

  .interview-area .interview-upper {
    display: block;
    margin-bottom: 3em;
  }

  .interview-area .interview-upper .text-box .ttl {
    font-size: 3rem;
  }

  .interview-area .interview-upper .text-box .sub-ttl {
    font-size: 1.8rem;
  }

  .interview-area .kiji-wrap .kiji-box h2 {
    padding: 0;
    font-size: 2.3rem;
    margin-bottom: 1em;
    margin-top: 3em;
  }
  
}


/* ==================================================
    お問い合わせ
================================================== */


.p-contact{
  position: relative;
}

.p-contact .contphone-area{
  padding: 5em 0 12em;
  position: relative;
}

.p-contact .contact-area{
  position: relative;
  z-index: 1;
}

.p-contact .top-text{
  display: table;
  margin: 0 auto;
}

.p-contact .faq-banner{
  max-width: 689px;
  width: 100%;
  display: block;
  margin: 4em auto;
}
  
.c-form {
  max-width: 800px;
  width: 100%;
  margin: 5em auto 0;
}
  
.c-form .mw_wp_form{
  padding-top: 80px;
  margin-top: -80px;
}
  
.c-form input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]),
.c-form select,
.c-form textarea {
  background-color:#E3EAEC;
  font-size: 1.4rem;
  padding: 11px 13px;
}
  
.c-form input[type="text"] {
  width: 60%;
}
  
.c-form .required {
  text-align: center;
  font-size: 1.2rem;
  display: block;
  background-color: #5D4533;
  color: #fff;
  font-weight: bold;
  padding: 2px 10px 4px;
  max-width: 51px;
  width: 100%;
  margin-bottom: 0.3em;
  float: right;
  border-radius: 12px;
}

.c-form .time-wrap .e-msg{
  width: 100%;
}

.c-form table {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  table-layout: fixed;
}
  
.c-form table td {
  font-size: 1.4rem;
  padding: 1.5em 1.5em;
  font-weight: normal;
  color:#000 ;
}
  
.c-form table th {
  width: 305px;
  text-align: left;
  font-size: 1.6rem;
  padding: 2em 1em;
  vertical-align: top;
}

.c-form table th p{
  font-weight: 500;
}
  
.c-form table th .ps{
  display: block;
  font-weight: normal;
  font-size: 1.2rem;
}

.c-form table tr.block th,
.c-form table tr.block td{
  display: block;
  width: 800px;
}

.c-form .full label { display:block; font-weight:600; margin: 0 0 8px; }
.c-form .full .note { display:block; font-weight:400; font-size:0.9em; color:#666; margin-top:4px; }
.c-form .full-textarea { width:100%; min-height:220px; box-sizing:border-box; }
  
.c-form .warning{
  text-align: center;
  margin-top: 60px;
  border: 1px solid #E40325;
  margin-bottom: 20px;
  padding: 20px;
  color: #E40325;
}
  
.c-form .select-wrap{
  width: 72%;
  position: relative;
}
  
.c-form .select-wrap:after {
  content: '';
  top: 50%;
  right: 20px;
  box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 7px solid #3D3D3D;
  position: absolute;
  transform: rotate(90deg) translate(0,-50%);
  transition: transform .3s ease-in-out, top .3s ease-in-out;
}

.c-form .select-wrap select{
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
  
.c-btn-box{
  margin: 60px auto 0;
  position: relative;
  max-width: 311px;
}

.c-btn-box .wpcf7-spinner{
  position: absolute;
}
  
.c-btn-box::before{
  content: '';
  background: url(../images/common/icon_arrow_w.svg) no-repeat;
  background-size: cover;
  width: 17px;
  height: 12px;
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translate(0,-50%);
  z-index: 1;
}
  
.c-btn-box .btn{ 
  max-width: 311px;
  background: transparent;
  width: 100%;
  text-align: center;
  font-weight: bold;
  padding: 1.1em 0;
  position: relative;
  margin: 0 auto;
  display: block;
  background-color: #fff;
  border: 1px solid #707070;
  color: #000;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  border-radius: 30px;
  font-family: "noto-sans-cjk-jp","游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "ＭＳ ゴシック", sans-serif!important;
}


  
.c-form input[type="submit"]:hover {
  opacity: 0.6;
}
  
.c-form .c-form.form-check .note{
  display: none;
}
  
.p-contact ::placeholder {
  color: #D2D2D2;
}
  /* 旧Edge対応 */
.p-contact ::-ms-input-placeholder {
  color: #D2D2D2;
}
  /* IE対応 */
.p-contact :-ms-input-placeholder {
    color: #D2D2D2;
}
  
.c-form input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]), .c-form select, .c-form textarea {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid transparent;
  padding: 1em 0.6em;
  background-color: #fff;
  border: 1px solid #B8B8B8;
  border-radius: 4px;
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 1.6rem;
}
  
input[type=text], input[type=number], input[type=email], input[type=tel], textarea, .input-text, .state_select {
  box-shadow: none!important;
}

.t-archive {
  width: 100%;
  position: relative;
  margin-top: .8em;
}

.t-archive select{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.t-archive:after {
  content: '';
  position: absolute;
  top: 23px;
  right: 24px;
  transform: translate(0, -50%);
  box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 5px solid transparent;
  border-left: 7px solid #B8B8B8;
   -webkit-transform: rotate(90deg);
   transform: rotate(90deg) translate(0, -50%);
}

.c-form .t-archive {
  width: 100%;
}

.c-form .t-archive select{
  width: 100%;
}

.c-form textarea{
  height: 141px;
  width: 100%;
}

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

  .p-contact{
    position: relative;
    padding: 0 0 10em;
  }

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

  .p-contact .contphone-area{
    padding: 2em 0 0;
  }

  .c-form table tr.block th, .c-form table tr.block td {
    display: block;
    width: 100%;
  }

  .d-entry .circle02{
    right: 8%;
    top: 7%;
  }

  .d-entry .circle03{
    right: 2%;
    top: 12%;
  }

  .d-contact .circle02 {
    right: 2%;
    top: 9%;
  }

  .d-contact .circle03 {
    right: 18%;
    top: 7%;
  }
  
  
  .p-contact .contact-wrap {
    padding: 0em 0 4em;
  }
  
  .p-contact .step-wrap {
    margin: 2em auto 1em;
  }

  .c-form input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]), .c-form select, .c-form textarea {
    width: 100%;
  }
  
  .c-form {
    margin-top: 1em;
  }
  
  .c-form table th {
    padding: 1em 0em 0.5em;
  }
  
  .c-form table td{
    padding: 0em 0em 1em;
  }
  
  .c-form table tbody,
  .c-form table tr,
  .c-form table th,
  .c-form table td {
      width: 100%;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      display: block;
  }

  .c-form .time-wrap .time-block {
    width: 27%;
  }
  
  .c-form .namae td span {
    width: 68%;
    font-size: 1.4rem;
  }
  
  .c-form .z-date{
    width: 100%;
    margin-bottom: 1em;
  }
  
  .c-form .name-wrap {
    width: 100%;
  }
  
  .c-btn-box{
    margin: 30px auto 0;
  }
  
  .c-btn-box .btn{
    font-size: 1.4rem;
  }
  
  .c-form .select-wrap {
    width: 100%;
  }
  
  .c-form textarea {
     width: 100%;
  }
  
  .c-form .phone-wrap input{
    width: 100%!important;
  }
    
  .c-form .file-wrap input{
    width: 100%!important;
  }
  
  .c-form .name-wrap .name-box {
    width: 49%;
  }
  
  .c-form .zip-wrap input {
    width: 39%!important;
  }

  .c-form .t-archive {
    width: 100%;
  }

  
}
  


/* ==================================================
   プライバシーポリシー
================================================== */

.p-privacy .privacy-area{
  padding: 5em 0 5em;
}

.p-privacy .privacy-wrap{
  padding: 0 0 10em;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.p-privacy .privacy-wrap .top-text{
  margin-bottom: 6em;
}

.p-privacy .privacy-wrap .priv-box{
  margin-bottom: 4em;
}

.p-privacy .privacy-wrap .priv-box:last-child{
  margin-bottom: 0;
}

.p-privacy .privacy-wrap .priv-box .priv-ttl{
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.p-privacy .privacy-wrap .priv-box .priv-ttl .num{
  color: #000;
  font-weight: 400;
  font-size: 2.8rem;
  margin-right: 0.5em;
}

.p-privacy .privacy-wrap .priv-box .priv-desc{
  margin-top: 1em;
  word-break: break-all;
  font-size: 1.4rem;
}

.p-privacy .privacy-wrap .priv-box .priv-desc a{
  color: #000;
  text-decoration: underline;
}

.p-privacy .privacy-wrap .priv-box .priv-desc a:hover{
  text-decoration: none;
}

.p-privacy .privacy-wrap .priv-box .priv-desc ul li{
  position: relative;
  padding-left: 2em;
  margin-bottom: 0.5em;
}

.p-privacy .privacy-wrap .priv-box .priv-desc ul{
  margin-bottom: 1em;
}

.p-privacy .privacy-wrap .priv-box .priv-desc ul li::before{
  content: '';
  width: 5px;
  height: 5px;
  background-color: #000;
  border-radius: 100%;
  position: absolute;
  top: 10px;
  left: 7px;
}

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

  .p-privacy .privacy-area {
    padding: 2em 0 2em;
  }

  .p-privacy .privacy-wrap{
    padding: 0 0 5em;
  }

  .p-privacy .privacy-wrap .priv-box .priv-ttl .num {
    font-size: 2.3rem;
    margin-right: 0.4em;
  }

  .p-privacy .privacy-wrap .priv-box .priv-ttl {
    font-size: 1.6rem;
  }
}


/* ==================================================
   サイトマップ
================================================== */

.p-sitemap .sitemap-area{
  padding: 8em 0 18em;
  position: relative;
}

.p-sitemap .sitemap-area ul{
  text-align: center;
}

.p-sitemap .sitemap-area ul li a{
  color: #000;
  font-size: 2.2rem;
  display: table;
  margin: 0 auto;
  padding: 1em 0;
}



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

  .p-sitemap .sitemap-area {
    padding: 2em 0 6em;
  }

  .p-sitemap .sitemap-area ul li a {
    font-size: 1.6rem;
    padding: 0.5em 0;
  }

 
}

/* ==================================================
   404エラー
================================================== */

.p-error .inner{
  padding-top: 4em;
  padding-bottom: 4em;
  text-align: center;
}

.p-error .inner .btn{
  margin: 2em auto 0;
}
