@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Fahkwang:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
/*
	Filename: common
	Version: 1.0.1
*/

/*-----------------------------------------------------
	Root

------------------------------------------------------*/
:root {
  --font-primary: "Noto Sans JP", sans-serif;
  --font-secondary: "EB Garamond", serif;
  --font-ternary: "Fahkwang", sans-serif;
  --font-third: "Lexend", sans-serif;
  --font-fourth: "Shippori Mincho", serif;
  --text-color: var(--black);
  --brand-silk: #5B4D43;
  --brand-lien: #e8dfd5;
  --brand-rose: #f7f6f5;
  --brand-grey: #9e9e9e;
  --black: #000000;
  --bg-primary: #FFF8F1;
}

/*-----------------------------------------------------
	Typography
------------------------------------------------------*/
em {
  font-weight: 700;
}
address {
  font-style: normal;
}
/*-----------------------------------------------------
	Elements
------------------------------------------------------*/
body {
  word-wrap: break-word;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-primary);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  line-height: 1.5;
}
p {
  line-height: 1.7;
}
ul li {
  line-height: 1.6;
  list-style-type: none;
}
ol li {
  line-height: 1.6;
  list-style-type: decimal;
}
img {
  vertical-align: bottom;
}
iframe {
  width: 100%;
}
sup {
  font-size: 70%;
  vertical-align: super;
}
sub {
  font-size: 70%;
  vertical-align: sub;
}
/*-----------------------------------------------------
	Link
------------------------------------------------------*/
a {
  text-decoration: none;
  color: var(--brand-grey);
  -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
  -ms-transition: all 0.35s;
  -o-transition: all 0.35s;
  transition: all 0.35s;
}
a > img {
  -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
  -ms-transition: all 0.35s;
  -o-transition: all 0.35s;
  transition: all 0.35s;
}
a:hover {
  color: #1a1a1a;
}
a:hover > img {
  opacity: 0.65;
}
a[href^="tel:"] {
  pointer-events: none;
}
/*-----------------------------------------------------
	haeder
------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 20px;
  background: var(--bg-primary);
  z-index: 20;
}
header .wrap .logo {
  display: flex;
  align-items: center;
}
/* header .logo img {
  width: 171px;
  height: 26px;
} */

header .logo span {
  font-size: 36px;
  font-family: var(--font-ternary);
  color: var(--black)
}

header .wrap .nav ul.flex {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
header .wrap .nav ul.flex li {
  margin-left: 5px;
  text-align: center;
}
header .wrap .nav ul.flex li a {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 5px 5px 0 0;
  font-family: var(--font-ternary);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--black);
}
header .wrap .nav ul.flex li a span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 500;
}
header .wrap .nav ul.flex li a:hover {
  color: #6b6b6b;
}
header .wrap .nav ul.flex li a.current {
  color: #6b6b6b;
  /* font-weight: 700; */
}
@media screen and (max-width: 1040px) {
  header .wrap .nav ul.flex li a {
    padding: 10.5px 20px;
  }
}

@media screen and (max-width: 750px) {
  header {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
/*-----------------------------------------------------
	header レスポンシブ
------------------------------------------------------*/
@media screen and (min-width: 751px) {
  .fat-nav,
  .fat-nav ul {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  header .wrap .nav {
    display: none;
  }
  /* SPメニュー */
  .hamburger {
    width: 34px;
    height: 34px;
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    padding: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: transparent;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
  }
  .hamburger__icon {
    position: relative;
    margin: 0 auto;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
  }
  .hamburger__icon::before,
  .hamburger__icon::after,
  .hamburger__icon span {
    width: 27px;
    height: 3px;
    /* position: absolute; */
    /* top: 10px;
    right: 20px; */
    display: block;
    background-color: var(--text-color);
    -moz-transition-property: background-color, -moz-transform;
    -o-transition-property: background-color, -o-transform;
    -webkit-transition-property: background-color, -webkit-transform;
    transition-property: background-color, transform;
    -moz-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
  }
  .hamburger__icon::before,
  .hamburger__icon::after,
  .hamburger__icon span {
    content: "";
  }
  .hamburger__icon::before {
    bottom: -7px;
    left: 0;
  }
  .hamburger__icon::after {
    bottom: 7px;
    left: 0;
  }
  .hamburger.active .hamburger__icon {
    background-color: transparent;
  }
  .hamburger.active .hamburger__icon:before,
  .hamburger.active .hamburger__icon:after {
    width: 27px;
  }
  .hamburger.active .hamburger__icon span {
    opacity: 0;
  }

  .hamburger.active .hamburger__icon:before {
    -moz-transform: translateY(9px) rotate(45deg);
    -ms-transform: translateY(9px) rotate(45deg);
    -webkit-transform: translateY(9px) rotate(45deg);
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger.active .hamburger__icon:after {
    -moz-transform: translateY(-9px) rotate(-45deg);
    -ms-transform: translateY(-9px) rotate(-45deg);
    -webkit-transform: translateY(-9px) rotate(-45deg);
    transform: translateY(-9px) rotate(-45deg);
  }
  .fat-nav {
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 19;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .fat-nav__wrapper {
    background: #1a1a1a;
    width: 100%;
    height: 100%;
    position: relative;
    top: 74px;
    padding: 20px;
    display: table;
    table-layout: fixed;
    z-index: 1;
    transform: initial !important;
  }
  .fat-nav_header_logo {
    width: 100%;
    height: 94px !important;
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px;
    z-index: 2;
  }
  .fat-nav_header_logo a {
    display: inline-flex;
    height: 100%;
    align-items: center;
  }
  .fat-nav_header_logo a img {
    width: 250px;
  }
  .fat-nav .fat-nav__wrapper ul li a {
    -webkit-box-align: center;
    align-items: center;
    padding: 17px 15px;
    background: #1a1a1a;
    border-radius: 2px;
    font-size: 20px;
    color: #fff;
  }
  .fat-nav .fat-nav__wrapper ul li.nav_current a {
    background: #fff;
    color: #1a1a1a;
  }
  .fat-nav .fat-nav__wrapper ul li a em {
    font-size: 20px;
    font-weight: 700;
    font-style: normal;
  }
  .fat-nav .fat-nav__wrapper ul li a span {
    font-size: 12px;
    font-weight: 700;
  }
}
/*-----------------------------------------------------
	footer
------------------------------------------------------*/
footer {
  margin-top: 188px;
}
.footer_top {
  border-bottom: 1px solid #1a1a1a;
}
.footer_top h2 {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.footer_top h2 span {
  padding: 12px 80px;
  background: #1a1a1a;
}
.comapny_list {
  padding: 50px 0;
}
.comapny_list_child {
  width: 20%;
}
.comapny_list_child img {
  width: 100%;
}
.comapny_list dt {
  font-size: 20px;
  font-weight: 700;
}
.comapny_list dl {
  font-size: 16px;
  font-weight: 400;
  padding-top: 14px;
}
.footer_bottom {
  padding: 40px 0 26px;
  text-align: center;
}
.footer_bottom .wrap .flex {
  margin-bottom: 20px;
}
ul.footer_menu {
  -webkit-box-pack: start;
  justify-content: flex-start;
}
ul.footer_menu li {
  position: relative;
  margin-right: 35px;
}
ul.footer_menu li a {
  color: var(--black);
  font-family: var(--font-ternary);
  font-size: 20px;
  font-weight: 700;
}
ul.footer_menu li a.current {
  color: #6b6b6b;
}
ul.footer_menu li.footer_current::after,
ul.footer_menu li:hover::after {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
}
.footer_logo img {
  width: 132px;
  height: 20.07px;
}

.footer_logo span {
  font-size: 36px;
  color: var(--text-color);
}
small.copyright {
  font-size: 12px;
  text-align: center;
  color: var(--black);
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  footer {
    margin-top: 98px;
  }
  .footer_top h2 {
    font-size: 16px;
  }
  .footer_top h2 span {
    padding: 12px 20px;
  }
  .comapny_list {
    padding: 50px 0;
  }
  .comapny_list_child {
    width: 20%;
  }
  .footer_bottom {
    padding: 36px 0 17px;
  }
  .footer_bottom .wrap .flex {
    margin-bottom: 20px;
  }
  ul.footer_menu li a {
    font-size: 14px;
  }
}
@media screen and (max-width: 640px) {
  .comapny_list {
    padding: 30px 0;
    -webkit-box-pack: center;
    justify-content: center;
  }
  .comapny_list_child {
    width: 32%;
  }
  .comapny_list dt {
    font-size: 14px;
    font-weight: 700;
  }
  .comapny_list dl {
    font-size: 12px;
    font-weight: 400;
    padding-top: 14px;
  }
  ul.footer_menu {
    display: block;
    text-align: left;
  }
  ul.footer_menu li {
    margin-right: 0;
    margin-bottom: 20px;
  }
  ul.footer_menu li:last-of-type {
    margin-bottom: 0;
  }
  ul.footer_menu li.footer_current::after,
  ul.footer_menu li:hover::after {
    display: none;
  }
}
/*-----------------------------------------------------
	layout
------------------------------------------------------*/
.wrap {
  width: 1008px;
  margin: 0 auto;
}
.bl {
  position: absolute;
  top: 0;
  left: 0;
  width: 78px;
  height: 100%;
  background: #1a1a1a;
  border-radius: 0 2px 2px 0;
}
.bl.style1 {
  background: var(--brand-silk);
}

.br {
  position: absolute;
  top: 0;
  right: 0;
  width: 78px;
  height: 100%;
  background: #1a1a1a;
  border-radius: 2px 0 0 2px;
}

.br.style2 {
  background-color: var(--brand-silk);
}
.wbr {
  position: absolute;
  top: 0;
  right: 0;
  width: 78px;
  height: 100%;
  background: #fff;
  border-radius: 2px 0 0 2px;
}
.h_keep::before {
  content: "";
  display: block;
}
@media screen and (max-width: 1300px) {
  .bl,
  .br,
  .wbr {
    width: 10px;
  }
}
@media screen and (max-width: 1040px) {
  .wrap {
    width: 100%;
    margin: 0 auto;
    padding-right: 20px;
    padding-left: 20px;
  }
}
/*-----------------------------------------------------
	midasi
------------------------------------------------------*/
.midasi_01 {
  margin-bottom: 30px;
  font-size: 52px;
  /* font-weight: 700; */
  font-family: var(--font-ternary);
  color: var(--text-color);
}
.midasi_01 span {
  display: block;
  font-family: var(--font-primary);
  font-size: 20px;
}
@media screen and (max-width: 1040px) {
  .midasi_01 {
    font-size: 40px;
  }
  .midasi_01 span {
    font-size: 19px;
  }
}
@media screen and (max-width: 750px) {
  .midasi_01 {
    margin-bottom: 20px;
    font-size: 30px;
  }
  .midasi_01 span {
    font-size: 14px;
  }
}
/*-----------------------------------------------------
	btn
------------------------------------------------------*/
.link_btn_01 {
  position: relative;
  display: block;
  width: 100%;
  max-width: 467px;
  margin: 0 auto;
  padding: 10px 30px;
  background: #fff;
  border: 1px solid var(--text-color);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-color);
  text-align: center;
}
.link_btn_01:hover {
  background: var(--brand-silk);
  color: #fff;
}
@media screen and (max-width: 750px) {
  .link_btn_01 {
    padding: 10px 20px;
  }
  .link_btn_01:hover {
    background: #fff;
    color: #1a1a1a;
  }
}

/*-----------------------------------------------------
	#profile
------------------------------------------------------*/
#profile {
  position: relative;
  height: auto;
  margin-top: 120px;
}
.prof .prof_l {
  width: 48%;
}
.prof .prof_l img {
  width: 100%;
  /* aspect-ratio: 1 / 1; */
  object-fit: cover;
  object-position: top center;
}
.prof .prof_r {
  width: 48%;
  color: var(--text-color);
}
.prof .prof_r h3 {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.prof .prof_r h3 span {
  padding: 10px 14px;
  /* background: var(--brand-lien); */
  color: var(--black);
  border: 1px solid var(--black);
  font-family: var(--font-primary);
}
.prof .prof_r h4 {
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid #1a1a1a;
  font-size: 52px;
  font-weight: 700;
  font-family: var(--font-fourth);
}
.prof .prof_r h4 span {
  display: block;
  font-family: var(--font-ternary);
  font-size: 16px;
  font-weight: 400;
}
.prof .prof_r p {
  margin-bottom: 26px;
  font-size: 16px;
  font-family: var(--font-primary);
}
.prof p.prof_last {
  font-size: 16px;
  margin-bottom: 0;
}

.prof_bottom {
  margin: 20px 0 50px;
}
.prof_bottom h3 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.prof_bottom h3 span {
  padding: 10px 80px;
  background: #1a1a1a;
}
.prof_bottom p {
  padding: 35px 80px;
  border: 1px solid #1a1a1a;
  font-size: 20px;
}
.member_list_child {
  width: 24%;
  margin-bottom: 36px;
}
.member_list_child img {
  width: 100%;
  margin-bottom: 30px;
}
.member_list_child h5 {
  margin-bottom: 20px;
}
.member_list_child h5 span {
  padding: 10px 20px;
  border: 1px solid #1a1a1a;
  font-family: "Lexend", sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.member_list_child h6 {
  font-size: 36px;
  font-weight: 700;
  padding-bottom: 12px;
}
.member_list_child h6 span {
  display: block;
  font-size: 12px;
}
@media screen and (max-width: 1040px) {
  .prof .prof_l {
    width: 40%;
  }
  .prof .prof_r {
    width: 56%;
  }
  .prof .prof_r h3 {
    margin-bottom: 50px;
    font-size: 16px;
  }
  .prof .prof_r h4 {
    font-size: 43px;
  }
  .prof .prof_r p {
    font-size: 16px;
  }
  .prof_bottom {
    margin: 20px 0 50px;
  }
  .prof_bottom p {
    padding: 25px 40px;
    font-size: 16px;
  }
  .member_list_child h5 span {
    font-size: 14px;
  }
  .member_list_child h6 {
    font-size: 30px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 750px) {
  #profile {
    margin-top: 80px;
  }
  .prof .prof_l {
    width: 100%;
    margin-bottom: 30px;
  }
  .prof .prof_r {
    width: 100%;
  }
  .prof .prof_r h3 {
    margin-bottom: 20px;
  }
  .prof .prof_r h4 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    font-size: 30px;
  }
  .prof .prof_r h4 span {
    font-size: 12px;
  }
  .prof .prof_r p {
    margin-bottom: 30px;
    font-size: 14px;
  }
  .prof_bottom {
    margin: 20px 0 30px;
  }
  .prof_bottom h3 {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .prof_bottom h3 span {
    padding: 10px 30px;
  }
  .prof_bottom p {
    padding: 20px 45px;
    font-size: 14px;
  }
  .member_list_child {
    width: 49%;
    margin-bottom: 20px;
  }
  .member_list_child h5 span {
    font-size: 14px;
  }
  .member_list_child p {
    font-size: 11px;
  }

  .prof p.prof_last {
    font-size: 12px;
    margin-bottom: 0;
  }
}

/*-----------------------------------------------------
	#company
------------------------------------------------------*/
#company {
  position: relative;
  height: auto;
  margin-top: 120px;
  color: var(--text-color);
  font-family: var(--font-primary);
}
#company dl {
  width: 49%;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #1a1a1a;
}
#company dl:last-child {
  /* margin-bottom: 0; */
}

#company dl:nth-of-type(3) {
  align-self: flex-start;
}
#company dl:nth-of-type(5),
#company dl:nth-of-type(6) {
  margin-bottom: 0;
}
#company dl dt {
  font-size: 16px;
}
#company dl dd {
  font-size: 20px;
  /* font-weight: 700; */
}

#company dl:nth-of-type(1) dd br {
  display: none;
}

@media screen and (max-width: 1040px) {
  #company dl dt {
    font-size: 15px;
  }
  #company dl dd {
    font-size: 18px;
  }
}
@media screen and (max-width: 750px) {
  #company {
    margin-top: 80px;
  }
  #company dl {
    width: 100%;
  }
  #company dl:last-of-type {
    margin-bottom: 0;
  }
  #company dl dt {
    font-size: 16px;
  }
  #company dl dd {
    font-size: 20px;
  }

  #company dl:nth-of-type(1) dd br {
    display: inline;
  }
}

/*---------------------------------------------------------------------------------------------------------------------------------------------------------------
	レスポンシブ
----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.sp {
  display: none;
}
.tb {
  display: none;
}
@media screen and (max-width: 960px) {
  .tb {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  /*-----------------------------------------------------
		Elements
	------------------------------------------------------*/
  img {
    max-width: 100%;
    height: auto;
  }
  /*-----------------------------------------------------
		Elements
	------------------------------------------------------*/
  body {
    word-wrap: break-word;
  }

  a[href^="tel:"] {
    pointer-events: auto;
  }
  /*-----------------------------------------------------
		others
	------------------------------------------------------*/
  .sp {
    display: block !important;
  }
  .tb {
    display: none !important;
  }
  .pc {
    display: none !important;
  }
}
