@charset "utf-8";

*, ::after, ::before {
	box-sizing: border-box;
}

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

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}
}


html {
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
}

body {
	opacity:0;
	transition: .6s;
	margin: 0;
	font-size: 1rem;
  font-family: yu-mincho-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
	background-color: #ffffff;
	color: var(--color-scheme-text);
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

body.display {
	opacity:1;
}

body.en {
  font-family: arno-pro, serif;
  font-weight: 400;
  font-style: normal;
}

li::marker {
  content: none;
}

h1, h2, h3, h4, h5 {
  margin-top: 0;
  overflow-wrap: break-word;
  color: #000000;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 3rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  word-wrap: break-word;
  font-style: normal;
  line-height: 1.45;
}

p,span {
  color: #000000;
}

em {
	font-weight: 600;
}

input[type="text"]:focus,
textarea:focus {
	outline: 0;
}


dl, ol, ul {
  margin-top: 0;
  margin-bottom: 1rem;
  padding: 0;
}

ul,li{
  text-decoration: none;
  list-style-type: none;
}

ol ol, ol ul, ul ol, ul ul {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

small {
  font-size: 80%;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

a:not([href]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):hover {
  color: inherit;
  text-decoration: none;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

label {
  display: inline-block;
}

button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button {
	background: none;
	border: none;
	outline: none;
	border-radius: 0;
}

button, input, optgroup, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit
}

button, input {
  overflow: visible;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
  cursor: pointer;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

.yumincho-pr6n {
  font-family: yu-mincho-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.arnopro {
  font-family: arno-pro, serif;
  font-weight: 400;
  font-style: normal;
}

.trajanpro-el {
  font-family: trajan-pro-3, serif;
  font-weight: 200;
  font-style: normal;
  font-weight: bold;
}

.trajanpro-l {
  font-family: trajan-pro-3, serif;
  font-weight: 300;
  font-style: normal;
}

.kumlien-pro {
  font-family: kumlien-pro, serif;
  font-weight: 500;
  font-style: normal;
}

span.arnopro {
  display: block;
  margin-bottom: 3rem;
}


header {
  position: relative;
  z-index: 99;
}


@media (max-width: 750px) {
  header {
    position: fixed;
    top: 0;
  }
}

.menu-btn {
  position: fixed;
  top: 10px;
  left: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #000000;
  position: absolute;
}
.menu-btn span:before {
  bottom: 8px;
}
.menu-btn span:after {
  top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

#menu-btn-check {
  display: none;
}

.menu-content {
  width: 30%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 100%;/*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #ae9b6d;
  transition: all 0.5s;/*アニメーション設定*/
}
.menu-content ul {
  padding: 70px 10px 0;
}

@media (max-width: 1200px) {
  .menu-content {
    width: 100%;
  }
}

.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 1.35rem;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 1rem;
  position: relative;
}
.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

@media (max-width: 750px) {
  .menu-content ul li a::before {
    top: 32px;
  }
}

#menu-btn-check:checked ~ .menu-content {
  right: 70%
}

@media (max-width: 1200px) {
  #menu-btn-check:checked ~ .menu-content {
    right: 0%
  }
}

.menu-sns {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}

.menu-sns img {
  display: block;
}

.menu-logo {
  text-align: center;
}

.menu-logo img {
  width: 80%;
}


.mainvisual-box {
  min-height: 100vh; /* Fallback */
  min-height: calc(var(--vh, 1vh) * 100);
  position: relative;
  width: 100%;
  z-index: 98;
}

.mainvisual-movie {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

.pc_mv {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.sp_mv {
  display: none;
}

@media (max-width: 750px) {
  .pc_mv {
    display: none;
  }
  .sp_mv {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

.mainvisual-movie + .logo {
  position: absolute;
  top: 80%;
  left: 50%;
  -webkit-transform: translate(-50%, -80%);
  -moz-transform: translate(-50%, -80%);
  transform: translate(-50%, -80%);
  text-align: center;
}

.mainvisual-movie + .logo img {
  width: 80%;
}

.pc {
  display: block;
}
.sp {
  display: none;
}

@media (max-width: 1200px) {
  .mainvisual-movie + .logo {
    position: fixed;
    top: 4%;
    height: auto;
    transform: translate(-50%, -50%);
    font-size: inherit;
  }
  .mainvisual-movie + .logo img {
    width: 100%;
  }
  .pc {
    display: none;
  }
  .sp {
    display: flex;
    align-items: center;
    height: 60px;
    position: fixed;
    top: 10px;
    width: 60%;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .sp a {
    line-height: 1;
  }
  .sp img {
    width: 100%;
  }
}


.main-contents {
  display: block;
}

.contents-thought {
  width: calc(100% / 2);
  margin: 0 auto;
  padding: 10rem 0;
  text-align: center;
}

@media (max-width: 1200px) {
  .contents-thought {
    width: 100%;
    padding: 1.5rem;
  }
  .contents-thought h2 {
    margin-bottom: auto;
    font-size: 1.25rem;
  }
}

.product-box {
  position: relative;
  background: #ddd3bb;
}


.product-list {
  width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}

@media (max-width: 1200px) {
  .product-list {
    width: 100%
  }
}

.product-list-item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
  margin-bottom: 5rem;
  background: #8b6e6e;
}

@media (max-width: 1200px) {
  .product-list-item {
    flex-direction: column;
    margin-top: 5rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

.product-list-item:nth-of-type(1) {
  background: #d6b7ab;
}

.product-list-item:nth-of-type(2) {
  background: #817a48;
}

.product-list-item:nth-of-type(3) {
  background: #a47a54;
}

.product-list-item:nth-of-type(4) {
  background: #997169;
}

.product-list-item:nth-of-type(5) {
  background: #c4b6a0;
}

.swiper {
  width: 60%;
  height: 450px;
}

@media (max-width: 1200px) {
  .swiper{
    width: 100%;
    height: 100%;
  }
}

.swiper-wrapper{
  transition-timing-function: linear;
}

.swiper-slide img {
  width: 100%;
  display: block;
}

.product-list-detail {
  width: 40%;
  padding: 0 1rem;
}

@media (max-width: 1200px) {
  .product-list-detail {
    width: 100%;
    padding: 0 .65rem;
  }
  .product-list-detail h3 {
    margin-bottom: auto;
  }
}

.product-list-detail h3 {
  font-size: 2.5rem;
}

.product-list-detail p {
  padding-top: 2.5rem;
}

@media (max-width: 750px) {
  .product-list-detail p {
    padding-top: 1rem;
  }
}

.member-box {
  overflow: hidden;
  background: #e4e4e4;
}

.member-box > h2.arnopro {
  text-align: center;
  font-size: 3.5rem;
  margin-top: 8rem;
  margin-bottom: 0;
}

@media (max-width: 750px) {
  .member-box > h2.arnopro {
    font-size: 2rem;
    margin-top: 2rem;
  }
}

.member-sec {
  position: relative;
}

@media (max-width: 1200px) {
  .member-sec {
    margin: 0 1rem;
  }
}

.member-list {
  width: 1200px;
  margin:  0 auto;
  overflow: hidden;
  z-index: 1;
}

@media (max-width: 1200px) {
  .member-list {
    width: 100%;
  }
}

.member-list-item {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 10rem;
}

@media (max-width: 1200px) {
  .member-list-item {
    flex-direction: column;
    margin-top: 5rem;
  }
}

@media (max-width: 750px) {
  .member-list-item {
    margin-top: 2rem;
  }
}

.bg-i-1::before {
  content: "";
  background: url(/img/member/NAOKO_2.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  display: block;
  width: 440px;
  height: 350px;
  position: absolute;
  right: 0;
  top: -15%;
  opacity: .4;
}

.bg-i-1::after {
  content: "";
  background: url(/img/member/NAOKO_3.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  display: block;
  width: 410px;
  height: 320px;
  position: absolute;
  right: 46%;
  bottom: -20%;
  opacity: .4;
}

.bg-i-2::before {
  content: "";
  background: url(/img/member/YUKI_2.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  display: block;
  width: 320px;
  height: 650px;
  position: absolute;
  left: 0;
  top: -10%;
  opacity: .4;
}

.bg-i-2::after {
  content: "";
  background: url(/img/member/YUKI_3.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  display: block;
  width: 187px;
  height: 410px;
  position: absolute;
  right: 40%;
  bottom: -20%;
  z-index: 0;
  opacity: .4;
}

.bg-i-3::before {
  content: "";
  background: url(/img/member/SAYA_2.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  display: block;
  width: 279px;
  height: 270px;
  position: absolute;
  right: 5%;
  top: -10%;
  opacity: .4;
}

.bg-i-3::after {
  content: "";
  background: url(/img/member/SAYA_3.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  display: block;
  width: 190px;
  height: 24%;
  position: absolute;
  width: 410px;
  height: 320px;
  position: absolute;
  right: 39%;
  bottom: -29%;
  opacity: .4;
}

@media (max-width: 1200px) {
  .bg-i-1::before,.bg-i-2::before,.bg-i-3::before,.bg-i-1::after,.bg-i-2::after,.bg-i-3::after {
    content: "";
    display: none;
  }
}

.member-sec:nth-child(odd) .member-list-item {
  flex-direction: row-reverse;
}

@media (max-width: 1200px) {
  .member-sec:nth-child(odd) .member-list-item {
    flex-direction: column;
  }
}

.member-list-item img {
  width: 40%;
  height: 400px;
}

@media (max-width: 1200px) {
  .member-list-item img {
    width: 100%;
    height: auto;
  }
}

.member-list-detail {
  padding: 0 2.5rem;
  box-sizing: border-box;
  width: calc(60% - 10%);
  background: #ffffffad;
}

@media (max-width: 1200px) {
  .member-list-detail {
    width: 100%;
  }
}

@media (max-width: 750px) {
  .member-list-detail h3 {
    margin-bottom: 1rem;
    font-size: 2.25rem;
  }
}

.member-sec:nth-child(even) .member-list-detail {
  margin-left: 2rem;
}

.member-sec:nth-child(odd) .member-list-detail {
  margin-right: 2rem;
}

@media (max-width: 1200px) {
  .member-sec:nth-child(even) .member-list-detail {
    margin-left: auto;
  }
  .member-sec:nth-child(odd) .member-list-detail {
    margin-right: auto;
  }
}

@media (max-width: 750px) {
  .member-sec:nth-child(even) .member-list-detail,
  .member-sec:nth-child(odd) .member-list-detail {
    padding: 0 1rem;
  }
}

.member-list-detail span {
  font-size: 1.45rem;
}

@media (max-width: 750px) {
  .member-list-detail span {
    margin-bottom: 1rem;
  }
}

.member-list-detail p {
  font-size: 1.65rem;
}

@media (max-width: 750px) {
  .member-list-detail p {
    font-size: 1.2rem;
  }
}

.member-list-others {
  margin: 15rem 0;
}

@media (max-width: 1200px) {
  .member-list-others {
    margin: 5rem 0;
  }
}

.member-list-others ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.member-list-others li {
  width: calc(100% / 3 - .68rem);
  margin-right: 1rem;
  margin-bottom: 8rem;
  position: relative;
}

@media (max-width: 1200px) {
  .member-list-others ul {
    margin: 0 1rem;
  }
  .member-list-others li {
    width: calc(100% / 2 - 0.5rem);
    margin-bottom: 5rem;
    margin-right: 1rem;
  }
}

.member-list-others li:nth-of-type(3),
.member-list-others li:nth-of-type(6),
.member-list-others li:nth-of-type(9) {
  margin-right: 0;
}

.member-list-others li:nth-of-type(10) {
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .member-list-others li:nth-of-type(3),
  .member-list-others li:nth-of-type(6),
  .member-list-others li:nth-of-type(9) {
    margin-right: auto;
  }
  .member-list-others li:nth-of-type(10) {
    margin-bottom: auto;
  }
}

@media (max-width: 1200px) {
  .member-list-others li:nth-child(even){
    margin-right: auto;
  }
}


.member-list-others li img {
  width: 100%;
}

.member-list-others .member-list-detail {
  position: absolute;
  bottom: -3.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #fffc;
  width: 100%;
  padding: 1rem;
}

.member-list-others .member-list-detail h4 {
  margin-bottom: .75rem;
  font-size: 1.75rem;
}

@media (max-width: 750px) {
  .member-list-others .member-list-detail h4 {
    font-size: 1.15rem;
    line-height: 1;
  }
}

.member-list-others .member-list-detail p {
  font-size: 1.25rem;
  margin-bottom: 0;
}

@media (max-width: 750px) {
  .member-list-others .member-list-detail p {
    font-size: .75rem;
  }
  .member-list-others .member-list-detail {
    padding: .5rem;
    bottom: -3.85rem;
  }
}

.member-list-detail a {
  text-decoration: none;
}

.member-list-detail a:hover .link+img {
  right: 2%;
  transition: .4s;
}

.member-list-detail .link+img {
  position: absolute;
  bottom: 15%;
  right: 5%;
  width: 20%;
}

footer {
  background: #ddd3bb;
}

.copyright {
  font-size: 1rem;
  text-align: center;
  margin-bottom: auto;
  padding-bottom: 1rem;
}

@media (max-width: 1200px) {
  .copyright {
    margin-bottom: auto;
    padding: 1rem 0;
    margin: 0 1rem;
    text-align: justify;
  }
}

.footer-list {
  display: flex;
  justify-content: center;
  padding-top: 1rem;
}

@media (max-width: 1200px) {
  .footer-list {
    flex-direction: column;
    margin: 0 1rem;
  }
}

.footer-list li {
  margin-bottom: 0;
  margin-right: 1rem;
}

@media (max-width: 1200px) {
  .footer-list li {
    margin-top: 1.25rem;
    margin-right: auto;
  }
}

.footer-list li:nth-of-type(3) {
  margin-right: 0;
}

.footer-list a {
  color: #000;
  text-decoration: none;
}

.c-form {
	max-width: 600px;
	margin: 0 auto;
}
.c-form__item {
  display: flex;
  align-items: start;
  justify-content: center;
	margin-bottom: 20px;
}
.c-form__label,
.c-form__input {
	padding: 10px;
}
.c-form__label {
	width: 20%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #000;
  text-align: left;
}
.c-form__input {
	width: 90%;
	font-size: 16px;
	border:none;
  background: none;
  box-sizing: border-box;
  border-bottom: 1px double #a9a9a9;
  border-radius: 0;
  color: #000;
}
.c-form__input:focus-visible {
	outline: green auto 1px;
}
.c-form__required {
	color: #fff;
	background-color: #ff0000;
	border-radius: 4px;
  padding: 0.15rem 0.5rem;
	margin: 0 0 0 18px;
}
textarea.c-form__input {
	height: 160px;
}
.c-form__submit {
	text-align: center;
}
.c-form__submit .wpcf7-submit {
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	background-color: #9d9d9d;
	border: solid 1px #9d9d9d;
	border-radius: 4px;
	padding: 5px 32px;
	transition: 0.4s;
	cursor: pointer;
}
.c-form__submit .wpcf7-submit:hover {
	color: #9d9d9d;
	background-color: transparent;
}

@media (max-width: 750px) {
	.c-form__item {
		flex-wrap: nowrap;
	}
	.c-form__label {
		width: 40%;
	}
	.c-form__input {
		width: 100%;
	}
	.c-form__submit .wpcf7-submit {
		display: block;
    margin: 0 auto;
	}
}


@media (max-width: 750px) { 
  .c-form__item {
    flex-direction: column;
  }
  
  .c-form__label {
    width: 100%;
    justify-content: flex-start;
  }
}


.company dl {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  color: #000;
  text-align: left;
  width: 650px;
  margin: 0 auto;
}

.company dt {
  width: 18%;
  height: 100%;
  padding: 1rem 0;
}

.company dd {
  width: 82%;
  height: 100%;
  margin-bottom: auto;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

@media (max-width: 750px) {
  .company dl {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
	      padding: 2rem 0;
  }
  .company dt,
  .company dd {
    width: 100%;
	  padding: 0.5rem  0;
  }
  .contents-thought.company {
    padding: 1rem;
  }
}

.privacy h3 {
  font-size: 1.65rem;
    margin: 2.5rem 0;
    text-align: left;
}

.privacy p {
  text-align: left;
}

.animate-me {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out; 
}

.animate-me.visible {
    opacity: 1;
    transform: translateY(0); 
}

.post_content h2 {
	    background: none;
    padding: initial;
    color: unset;
}

.post_content h4 {
	    padding: initial;
    border-left: none;
}

.top #content {
	padding-top:0;
}

.post_content h2::before {
	display:none;
}