@charset "utf-8";
/* CSS Document */

/* noto-serif-jp-regular - japanese_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Serif JP';
  font-style: normal;
  font-weight: 400;
  src: url('../../fonts/noto-serif-jp-v30-japanese_latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  font-display: swap;
}
/* noto-serif-jp-500 - japanese_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Serif JP';
  font-style: normal;
  font-weight: 500;
  src: url('../../fonts/noto-serif-jp-v30-japanese_latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  font-display: swap;
}
/* noto-serif-jp-700 - japanese_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Serif JP';
  font-style: normal;
  font-weight: 700;
  src: url('../../fonts/noto-serif-jp-v30-japanese_latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  font-display: swap;
}
/* cormorant-garamond-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  src: url('../../fonts/cormorant-garamond-v16-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  font-display: swap;
}
/* cormorant-garamond-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  src: url('../../fonts/cormorant-garamond-v16-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  font-display: swap;
}
/* cormorant-garamond-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  src: url('../../fonts/cormorant-garamond-v16-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  font-display: swap;
}

/******* 全ページ共通 ********/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  font-family: 'Noto Serif JP', "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  width: 100%;
  line-height: 1.8;
  font-size: 16px;
  font-size: 1.6rem; /*1rem = 10px*/
  color: #2D2D2D;
  background-color: #fefefe;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.4px;
  text-size-adjust: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: url('../img/bg.svg') repeat;
}
p, a, h1, h2, h3, h4 {
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
a {
  transition: .2s;
}
/* SVGリンク化 */
object {
  pointer-events: none;
}
input, button, textarea, select {
  -webkit-appearance: none;
  appearance: none;
}
a p, a img {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
picture{
	display: block;
}
ol {
  list-style: decimal;
  margin-left: 1.8rem;
}
section {
  position: relative;
  margin: 14rem 0;
}
section p {
  padding-bottom: 0.8rem;
}
a:hover {
  cursor: pointer;
}
.en{
  font-family: 'Cormorant Garamond';
  font-weight: 700;
}
.number{
  font-family:"baskerville-urw";
}
/* パソコンで見たときは"pc"のclassがついたタグが表示される */
.pc {
  display: block !important;
}
.sp, .pc_hide {
  display: none !important;
}
/* スマートフォンで見たときは"sp"のclassがついたタグが表示される */
@media only screen and (max-width: 899px) {
  .pc, .sp_hide {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
@media only screen and (min-width: 900px) {
  .pc768_hide {
    display: none !important;
  }
}

/***** ヘッダー *****/
header {
  width: 100%;
  height: 100px;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 2vw;
  z-index: 20;
  background-color: #fefefe;
  transition: .5s;
}
.header_wrap {
  display: grid;
  align-items: center;
  height: 100px;
}
.logo_name {
  font-size: clamp(1.3rem, 1.5vw, 1.5rem);
  line-height: 1.2;
  width: max-content;
  z-index: 50;
}
.logo_name .en{
  font-size: 2.2rem;
  line-height: 1;
}
.header_nav_wrap{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header_nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 1.2vw;
}
.header_nav ul li {
  margin: 0 1vw;
}
.header_nav ul li a{
  position: relative;
  transition: .4s;
}
.header_nav ul li a:hover,.footer_nav ul li a:hover{
  color: #A4925C;
}
.header_nav ul li:last-child a{
  border-radius: 40px;
  color: #A4925C;
  padding: 1rem 2rem;
  border: #A4925C 1px solid;
}
.header_nav ul li:last-child a:hover{
  background-color: #A4925C;
  color: #fefefe;
}
@media screen and (min-width:769px) {
  .header_wrap {
    grid-template-columns: 36% 1fr;
  }
  .logo_name .en{
    font-size: 4rem;
  }
}
@media screen and (max-width:768px){
  header {
    height: 60px;
  }
  .header_wrap {
    grid-template-columns: 50% 1fr;
    height: 60px;
    width: calc(100% - 40px - 2rem);
  }
  .header_logo svg{
    width: 240px;
  }
	.header_nav{
		display: none;
	}
}
/*　上に上がる動き　*/
#header.UpMove {
  animation: UpAnime 0.2s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
/*　下に下がる動き　*/
#header.DownMove {
  animation: DownAnime 0.4s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/***** menu *****/
@media screen and (min-width:769px) {
  .menu_wrap{
    display: none;
  }
}
body.is-menuOpen{
  overflow: hidden;
}
body.is-menuOpen header{
  background-color: #111;
}
body.is-menuOpen .logo_name{
  color: #fefefe;
}
body.is-menuOpen .jpen_btn{
  color: #fefefe;
}
.menu {
  height: 100%;
  width: 100vw;
  background-color: rgb(17, 17, 17, 1);
  color: #fefefe;
  z-index: 10;
  position: fixed;
  top: 0;
  right: 0;
  padding-top: 6rem;
  display: none;
  overflow-x: hidden;
  overflow-y: scroll;
}
/* メニューオープン時 */
.hamburger_menu {
  width: 100%;
  height: 100%;
}
.btn_line.open {
  background-color: transparent; 
  z-index: 100;
}
.btn_line.open::before, .btn_line.open::after {
  content: "";
  transition: .2s;
}
.btn_line.open::before {
  transform: rotate(30deg);
}
.btn_line.open::after {
  transform: rotate(-30deg);
}
/***** hamburger-menu *****/
@media screen and (min-width:769px){
  .hamburger-menu{
    display: none;
  }
}
@media screen and (max-width:768px){
  .hamburger-menu {
    width: 60px;
    height: 60px;
    position: fixed;
    top: 0;
    right: 0;
    border: none;
    background: transparent;
    color: #918E79;
    font-size: 1.4rem;
    appearance: none;
    cursor: pointer;
    border-radius: 50%;
    z-index: 100;
  }
  .hamburger-menu__bar {
    display: inline-block;
    width: 36px;
    height: 2px;
    background: #B5B4AA;
    position: absolute;
    left: 30px;
    transform: translateX(-50%);
    transition: .5s;
  }
  .hamburger-menu__bar:first-child {
    top: 26px;
  }
  .hamburger-menu__bar:last-child {
    top: 34px;
  }
  .hamburger-menu--open .hamburger-menu__bar {
    top: 50%;
  }
  .hamburger-menu--open .hamburger-menu__bar:first-child {
    transform: translateX(-50%) translateY(-50%) rotate(20deg);
  }
  .hamburger-menu--open .hamburger-menu__bar:last-child {
    transform: translateX(-50%) translateY(-50%) rotate(-20deg);
  }
  .menu .inner{
    width: 68vw;
    margin: 6rem auto 0;
    overflow: auto;
  }
  .menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #fefefe;
  }
  .menu ul li{
    border-bottom: 1px solid #fefefe;  
  }
  .menu ul li a {
    text-decoration: none;
    display: block;
    padding: 2rem 0;
    transition: .5s;
  }
  .menu ul li a:hover{
    opacity: .6;
  }
}

/***** footer *****/
footer{
	position: relative;
}
@media screen and (max-width:899px) {
	.footer::before{
		font-size: 114px;
	}
}
@media screen and (max-width:599px) { 
	.footer::before{
		content: none;
	}
	.gnav .corporation,footer .corporation{
		font-size: 2rem;
	}
	.gnav .c_name,footer .c_name{
		font-size: 2.4rem;
		padding-left: 0.4rem;
	}
}

/*** footer_contact ***/
.footer_contact{
  background-color: #111;
  padding: 3.6vw 0;
}
.footer_contact .wrap{
  margin: 4vw auto;
  padding: 4vw 0;
  text-align: center;
  border-radius: 2rem;
}
.footer_contact .inner{
  padding: 4.8vw 0;
  border-top: 2px dotted #AFA99D;
  border-bottom: 2px dotted #AFA99D;
  position: relative;
  width: calc( 100% - 12vw);
  margin: 0 auto;
}
.footer_contact .inner::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  border-top: 4px dotted #AFA99D;
  top: 4px;
  left: 0;
}
.footer_contact .inner::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  border-bottom: 4px dotted #AFA99D;
  bottom: 4px;
  left: 0;
}
.footer_catch{
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
}
.footer_contact .tel_number{
  display: block;
  height: fit-content;
  margin: .4vw 0 2vw;
}
.footer_contact .tel{
  font-size: clamp(1.6rem, 4.2vw, 2.4rem);
  padding-right: 1rem;
}
.footer_contact .number{
  font-size: clamp(2.4rem, 4.2vw, 4.8rem);
  font-weight: 500;
}
@media screen and (max-width:699px) {
  .footer_contact .wrap{
    margin: 4rem auto;
    padding: 4rem 0;
  }
  .footer_contact .inner{
    padding: 3.2rem 0;
  }
}

/*** footer_bottom ***/
.footer_bottom{
  background-color: #fefefe;
  height: auto;
  padding: 6.8rem 0;
  position: relative;
  overflow-y: hidden;
}
.footer_link{
	width: 90%;
	margin: 0 auto;
}
.footer_logo{
	margin-bottom: 4rem;
  font-weight: 700;
}
.footer_logo svg{
  width: clamp(280px, 26vw, 360px);
}
.footer_nav ul li{
  position: relative;
	display: inline-block;
  margin-right: 2rem;
}
.footer_nav ul li a{
	position: relative;
	display: inline-block;
	transition: .4s;
  font-weight: 500;
}
footer .jpen_btn{
  margin-top: 2rem;
}
@media screen and (min-width:769px) { 
  .footer_link{
    display: flex;
    justify-content: space-between;
  }
  .footer_link .inner{
    padding-right: 4rem;
  }
  .footer_bottom .nav_wrap{
    width: clamp(300px, 56vw, 1000px);
  }
  .footer_nav ul{
    display: flex;
    justify-content: end;
    align-items: center;
  }
  .footer_nav ul li{
    margin-left: 2vw;
    margin-right: 0;
  }
  footer .jpen_btn{
    text-align: end;
  }
}
@media screen and (max-width:768px) { 
  .footer_link .inner{
    margin-bottom: 4rem;
  }
}
@media screen and (max-width:699px) {
  .footer_nav ul{
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
}
/*** copyright ***/
.copyright.wrap{
	margin: 4rem auto 0;
	font-size: 1.2rem;
}
.copyright.wrap p{
  margin-top: .4rem;
}
.copyright a:hover{
  opacity: 0.6;
}

/***** 全ページ共通 *****/
.wrap {
  position: relative;
  width: 90%;
  margin: 0 auto;
}
.w1536 {
	max-width: 1536px;
}
.w1200 {
	max-width: 1200px;
}
.w1000 {
	max-width: 1000px;
}
.img_outer {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.img_outer img{
  border-radius: 1.2rem;
}

/***** ボタン *****/
.btn {
  border-bottom: #A4925C 1px solid;
  color: #70644F;
  padding: 2rem 4.4rem .6rem 0rem;
  position: relative;
  display: inline-block;
  text-decoration: none;
  overflow: hidden;
}
.arrow {
  position: absolute;
  top: calc( 50% + 5px );
  right: 0;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.arrow::before {
  content: url(../img/arrow.svg);
}
.btn:hover{
  border-bottom: none;
}
.btn:hover .arrow {
  content: url(../img/arrow.svg);
  top: calc( 50% + 5px );
  animation: moveArrow 0.6s ease;
}
@keyframes moveArrow {
  0% {
    transform: translateY(-50%);
  }
  49% {
    transform: translateY(-50%) translateX(100%);
  }
  50% {
    transform: translateY(-50%) translateX(-100%);
    opacity: 0;
  }
  51% {
    opacity: 1;
  }
  100% {
    transform: translateY(-50%);
  }
}

a.contact_btn {
  background-color: #A4925C;
  border: #A4925C 1px solid;
  border-radius: 40px;
  color: #fefefe;
  padding: 1.2rem 2.8rem;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  display: block;
  width: fit-content;
  margin: 0 auto;
}
a.contact_btn:hover{
  background-color: #fefefe;
  color: #A4925C;
}
@media screen and (min-width:769px) {
  a.contact_btn{
    padding: 1.2vw 4vw;
  }
}

.jpen_btn span{
  padding: 0 .4vw;
}
.jpen_btn a:hover{
  color: #A4925C;
}
.no-hover{
  color: #aaa;
}

/***** 見出し *****/
h2{
  position: relative;
  margin-bottom: 4.8rem;
  font-size: clamp(2.8rem, 4.8vw, 4.8rem);
  font-weight: 500;
}
.page_hero h1 .jp {
  font-size: clamp(2.8rem, 6.6vw, 6rem);
  line-height: 1.2;
}
h2.ttl_center, .btn.btn_center{
	text-align: center;
}
h2.ttl_center{
	margin: 0 auto 6rem;
}
h3 {
  font-size: clamp(2rem, 3.8vw, 2.4rem);
  margin-bottom: 2.4rem;
  line-height: 1.4;
  font-weight: 500;
}
h4 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}
h5{
  font-weight: 700;
}

/*** ul ***/
.list_sub{
  margin-top: .8rem;
	grid-gap: .4rem;
}
ul.list_sub li a{
  margin-left: 1.6rem;
  color: #757365;
  font-weight: normal;
}
ul.list_sub li a::before{
  content: '';
  display: inline-block;
  position: relative;
  left: -0.8rem;
  top: -0.5rem;
  width: .8rem;
  height: 0.2rem;
  margin-left: -0.6rem;
  background: #B5B4AA;
  border-radius: 2rem;
}
ul.text_list{
  margin: 1rem 0 1.6rem;
}
ul.text_list li {
  margin-left: 2rem;
}
ul.text_list li::before{
  content: '';
  display: inline-block;
  position: relative;
  left: -0.8rem;
  top: -0.5rem;
  width: 1.2rem;
  height: 0.2rem;
  margin-left: -0.6rem;
  background: #918E79;
  border-radius: 2rem;
}
ul.dott_list{
  margin: 1rem 0 1.6rem;
}
ul.dott_list li {
  margin-left: 1.6rem;
}
ul.dott_list li::before{
  content: '';
  display: inline-block;
  position: relative;
  left: -0.8rem;
  top: -0.5rem;
  width: .6rem;
  height: .6rem;
  margin-left: -0.6rem;
  background: #918E79;
  border-radius: 2rem;
}
/*** ol ***/
ol.intro_number  {
  position: relative;
  margin: 0;
  padding: 0
}
ol.intro_number  li  {
  list-style: none;
  list-style-position: outside;
  margin: 0;
  padding-left: 1.25em
}
ol.intro_number  li span {
  position: absolute;
  left: 0;
  margin: 0
}

/***** hero *****/
.hero_wrap *{
  min-height: 0;
  min-width : 0;
}
.hero_wrap img {
  width: 100%;
  object-fit: cover;
}

/******* flex_box *******/
@media screen and (min-width:900px) {
  .flex_box{
    display: flex;
    justify-content: space-between;
  }
  .flex_item{
    width: 48%;
  }
  .reverse{
    flex-direction: row-reverse;
  }
}
/******* column_list *******/
.column_list{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.8rem;
  position: relative;
}
.column_list_item{
  padding: 2.8rem;
  background-color: #fefefe;
}
.column_list .bg_round_w{
  margin-top: 0;
}
.column_list_item h3 {
  font-size: clamp(2rem, 2.8vw, 2.4rem);
  margin-bottom: 1.6rem;
}
.column_list_item ul{
  margin-bottom: 0;
}

/******* background *******/
.bg_cream{
  background-color: #FFFEFB;
}
.bg_white{
  background-color: #fefefe;
}
.bg_black{
  background-color: #2D2D2D;
  color: #fefefe;
  padding: 10rem 0;
}
.bg_black .text_link{
  color: #D5BE79;
}

/*** color,font,bold ***/
.red{
  color: #F85656;
}
.bold{
  font-weight: 700;
}
/*** テキストリンク ***/
.text_link,.check a,.privacy-policy section p a,#privacy-policy p a,#error404 p a,.text_link{
	color: #A4925C;
	text-decoration: underline;
}
.text_link:hover,span.wpcf7-list-item a:hover,.privacy-policy section p a:hover,#error404 p a:hover,.text_link:hover{
	text-decoration: none;
}

/*** strength ***/

.strength .text_img_list_item{
  position: relative;
  padding-bottom: 6rem;
}
.strength .text_img_list_item img{
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 8rem;
}
.strength .text_area{
  padding: 0 2rem;
  margin-top: 3.2rem;
}
.strength h3{
  text-align: center;
  font-size: clamp(2.1rem, 2.1vw, 2.4rem);
}
@media screen and (min-width:769px) {
  .strength .text_img_list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.8rem;
  }
}

/*** case ***/
.case{
}
.case h3{
  color: #70644F;
}
.plan_box{
  position: relative;
  border-radius: 2rem;
  padding: 2.8rem;
  color: #2D2D2D;
  background-color: #FBFBFB;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  max-width: 460px;
}
#home_case .plan_box{
  max-width: 280px;
  padding: 2.8rem 4rem;
}
@media screen and (max-width: 1099px) {

}
@media screen and (min-width:800px) {

}
.plan_box dl{
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  margin: 1rem auto;
}
.case h4{
  border-bottom: 1px solid #A4925C;
  text-align: center;
  padding-bottom: .4rem;
}
.plan_box dt, .plan_box dd{
  padding: .6rem 0;
}
.plan_box dt{
  flex-basis: 30%;
  font-weight: 500;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.plan_box dd {
  flex-basis: 70%;
  margin: 0;
}

/**** 404 Not Found *****/
.notfound {
  margin-top: 160px;
}
.notfound p a {
  color: #A4925C;
}
.notfound p a:hover {
  text-decoration: underline;
}

/*****表示アニメーション*****/
/*** 下から上へふわっと ***/
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger,.fadeInTrigger,.fadeLeftTrigger,.fadeRightTrigger {
  opacity: 0;
}
.fadeIn_up {
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition: 1s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
.fadeIn_left {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 2s;
}
.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time02 {
  animation-delay: 0.2s;
}
.delay-time03 {
  animation-delay: 0.4s;
}
.delay-time04 {
  animation-delay: 0.6s;
}
.delay-time05 {
  animation-delay: 0.8s;
}
.delay-time06 {
  animation-delay: 1s;
}
/*** 遅延してふわっと ***/
/* その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 上から */
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



