@charset "utf-8";

* {
  box-sizing: border-box;
  font-feature-settings: "palt";
}

html {
  scroll-behavior: smooth;
  font-size: calc(100vw / 118.5);
}

body, h1, h2, h3, h4, h5, p {
  margin: 0;
  line-height: 1;
}

body {
  font-family: 'Kiwi Maru', serif;
  color: #333333;
}

body.active {
  height: 100%;
  overflow: hidden;
}

p {
  text-align: justify;
  letter-spacing: 0;
}

img {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  vertical-align: bottom;
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

a:hover {
  opacity: 0.6;
}

a:visited {
}

span {
  display: inline-block;
}

dl, dt, dd {
  all: unset;
  display: block;
}

button {
  all: unset;
  display: block;
}

table {
  border-collapse: collapse;
}

.sp_obj {
  display: none;
}

.container {
  max-width: calc(1200px + 40px);
  margin: 0 auto;
  padding: min(15rem, 150px) 20px;
}

section::after {
  display: block;
  content: '';
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 0;
  margin-top: -1px;
  transform: translateY(50%);
}

h2.h2_ttl {
  font-size: min(4rem, 40px);
  font-weight: 500;
  text-align: center;
  letter-spacing: .2em;
}

h2.h2_ttl::after {
  display: block;
  content: '';
  width: min(4.8rem, 48px);
  height: min(.6rem, 6px);
  background-color: #1eaa39;
  margin: min(2.4rem, 24px) auto 0;
}

@media (max-width: 799px) {
  
  html {
    font-size: calc(100vw / 37.5);
  }

  a:hover {
    opacity: 1;
  }
  
  .container {
    padding: 10rem 2rem;
  }

  section::after {
    margin-top: -1px;
  }

  h2.h2_ttl {
    font-size: 3.6rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: .1em;
  }

  h2.h2_ttl::after {
    display: block;
    content: '';
    width: 3.2rem;
    height: .5rem;
    background-color: #1eaa39;
    margin: 2.0rem auto 0;
  }
  
  .sp_obj {
    display: block !important;
  }
  
  .pc_obj {
    display: none !important;
  }
}

/* header ---------- 
---------- ---------- ---------- ---------- ----------  */

header {
  width: 100%;
  position: fixed;
  z-index: 99999;
  padding: min(2.4rem, 24px) min(4rem, 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .8s;
}

header.changed {
  background-color: #fff;
}

header h1 {
  width: min(24rem, 240px);
}

header nav.gnav ul.gnav_ul {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 0;
}

header nav.gnav ul.gnav_ul a {
  font-size: min(1.6rem, 16px);
  padding: 0 min(2rem, 20px);
  color: #333333;
}

@media (max-width: 799px) {
  
  header {
    padding: 2.0rem;
  }
  
  header h1 {
    width: 16.0rem;
  }

  #open {
    width: 2.8rem;
    height: 2.8rem;
    cursor: pointer;
    opacity: 1;
    pointer-events: auto;
    transition: all .8s;
  }
  
  #open.hidden {
    opacity: 0;
    pointer-events: none;
  }
  
  div.overlay {
    position: fixed;
    top: 0; 
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    z-index: 999999;
    opacity: 0;
    pointer-events: none;
    transition: all .8s;
  }
  
  div.overlay.show {
    opacity: 1;
    pointer-events: auto;
  }
  
  div.overlay div.overlay_header {
    width: 100%;
    padding: 2.0rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  div.overlay div.overlay_header h1 {
    width: 16.0rem;
  }
  
  #close {
    width: 2.8rem;
    height: 2.8rem;
    cursor: pointer;
  }

  div.overlay ul.overlay_ul {
    margin: 6rem auto 0;
    width: 50%;
  }

  div.overlay ul.overlay_ul li.overlay_li + li.overlay_li {
    margin-top: 4rem;
  }

  div.overlay ul.overlay_ul li.overlay_li {
    transform: translateY(16px);
    opacity: 0;
    transition: all .8s;
  }

  div.overlay.show ul.overlay_ul li.overlay_li:nth-child(1) {
    transition-delay: .1s;
  }

  div.overlay.show ul.overlay_ul li.overlay_li:nth-child(2) {
    transition-delay: .2s;
  }

  div.overlay.show ul.overlay_ul li.overlay_li:nth-child(3) {
    transition-delay: .3s;
  }

  div.overlay.show ul.overlay_ul li.overlay_li:nth-child(4) {
    transition-delay: .4s;
  }

  div.overlay.show ul.overlay_ul li.overlay_li:nth-child(5) {
    transition-delay: .5s;
  }

  div.overlay.show ul.overlay_ul li.overlay_li {
    opacity: 1;
    transform: none;
  }

  div.overlay ul.overlay_ul a {
    display: block;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 400;
    color: #333333;
  }

  div.overlay ul.overlay_ul li.overlay_li:last-of-type a {
    color: #fff;
    background-color: #1eaa39;
    margin: 0 auto;
    width: fit-content;
    padding: .8rem 1.6rem;
    border-radius: .8rem;
  }
}

main {
  width: 100%;
  padding-top: min(0rem, 0px);
}

@media (max-width: 799px) {
  main {
    padding-top: 0rem;
  }
}

/* mv ---------- 
---------- ---------- ---------- ---------- ----------  */

main.index section.mv {
  background-image: url(/wp-content/themes/being/assets/img/bdc/bg_mv_pc.jpg);
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  padding-top: 56%;
  position: relative;
}

main.index section.mv::after {
  background-image: url(/wp-content/themes/being/assets/img/bdc/bg_mv_down_pc.jpg);
  padding-top: 3.3%;
}

main.index section.mv div.mv_txt_area {
  position: absolute;
  width: min(56rem, 560px);
  height: min(32rem, 320px);
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

main.index section.mv div.mv_txt_area p.mv_txt01 {
  margin-top: min(4rem, 40px);
  font-size: min(3.2rem, 32px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .1em;
  color: #204d9f;
  text-align: center;
}

main.index section.mv div.mv_txt_area p.mv_txt02 {
  margin: min(10rem, 100px) auto 0;
  width: fit-content;
  font-size: min(1.6rem, 16px);
  font-weight: 500;
  background-color: #009ce1;
  color: #fff;
  padding: min(.8rem, 8px) min(1.2rem, 12px);
  letter-spacing: .1em;
  font-family: 'Noto Sans JP', sans-serif;
}

@media (max-width: 799px) {
  main.index section.mv {
    background-image: url(/wp-content/themes/being/assets/img/bdc/bg_mv_sp.jpg);
    padding-top: 190%;
  }

  main.index section.mv::after {
    background-image: url(/wp-content/themes/being/assets/img/bdc/bg_mv_down_sp.jpg);
    padding-top: 5.16%;
    margin-top: -.5rem;
  }
  
  main.index section.mv div.mv_txt_area {
    width: 90%;
    height: 24.0rem;
  }
  
  main.index section.mv div.mv_txt_area p.mv_txt01 {
    margin-top: 0;
    font-size: 2.4rem;
    line-height: 1.6;
    letter-spacing: .1em;
    color: #204d9f;
    text-align: center;
  }
  
  main.index section.mv div.mv_txt_area p.mv_txt02 {
    margin: 7.2rem auto 0;
    width: fit-content;
    font-size: 1.4rem;
    padding: .8rem;
  }
}

/* intro ---------- 
---------- ---------- ---------- ---------- ----------  */

main.index section.intro {
  width: 100%;
  background-color: #fff;
}

main.index section.intro::after {
  background-image: url(/wp-content/themes/being/assets/img/bdc/bg_intro_down_pc.jpg);
  padding-top: 3.3%;
}

main.index section.intro p.intro_txt {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  line-height: 2.4;
  letter-spacing: .1em;
}

@media (max-width: 799px) {

  main.index section.intro::after {
    background-image: url(/wp-content/themes/being/assets/img/bdc/bg_intro_down_sp.jpg);
    padding-top: 5.25%;
  }

  main.index section.intro p.intro_txt {
    font-size: 1.6rem;
    line-height: 2.4;
    letter-spacing: .1em;
  }
}

/* business ---------- 
---------- ---------- ---------- ---------- ----------  */

main.index section.business {
  width: 100%;
  background-color: #f9f4e1;
}

main.index section.business::after {
  background-image: url(/wp-content/themes/being/assets/img/bdc/bg_business_down_pc.jpg);
  padding-top: 3.3%;
  z-index: 1;
}

main.index section.business div.business_wrap {
  display: flex;
  flex-direction: row-reverse;
  align-items: start;
  gap: min(8rem, 80px);
}

main.index section.business div.business_wrap div.business_image {
  width: 48%;
}

main.index section.business div.business_wrap div.txt_area {
  flex: 1;
}

main.index section.business div.business_wrap div.txt_area h2.h2_ttl {
  text-align: left;
}

main.index section.business div.business_wrap div.txt_area h2.h2_ttl::after {
  background-color: #ffd900;
  margin: min(2.4rem, 24px) 0 0;
}

main.index section.business div.business_wrap div.txt_area p.business_txt {
  margin-top: min(2.4rem, 24px);
  font-size: min(1.8rem, 18px);
  font-weight: 500;
  line-height: 2.4;
  letter-spacing: .1em;
}

@media (max-width: 799px) {
  
  main.index section.business::after {
    background-image: url(/wp-content/themes/being/assets/img/bdc/bg_business_down_sp.jpg);
    padding-top: 5.25%;
  }
  main.index section.business div.business_wrap {
    flex-direction: column;
    gap: 4.0rem;
  }
  
  main.index section.business div.business_wrap div.business_image {
    width: 90%;
    margin: 0 auto;
  }
  
  main.index section.business div.business_wrap div.txt_area {
    width: 90%;
    margin: 0 auto;
  }
  
  main.index section.business div.business_wrap div.txt_area h2.h2_ttl {
    text-align: center;
  }
  
  main.index section.business div.business_wrap div.txt_area h2.h2_ttl::after {
    background-color: #ffd900;
    margin: 2.4rem auto 0;
  }
  
  main.index section.business div.business_wrap div.txt_area p.business_txt {
    margin-top: 2.4rem;
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: .1em;
  }
}

/* greeting ---------- 
---------- ---------- ---------- ---------- ----------  */

main.index section.greeting {
  width: 100%;
  background-image: url(/wp-content/themes/being/assets/img/bdc/bg_greeting_pc.jpg);
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 0;
  padding-top: 58.275%;
  position: relative;
  z-index: -1;
}

main.index section.greeting::after {
  background-image: url(/wp-content/themes/being/assets/img/bdc/bg_greeting_down_pc.jpg);
  padding-top: 3.3%;
  transform: none;
}

main.index section.greeting div.greeting_wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: min(52rem, 520px);
  height: fit-content;
}

main.index section.greeting div.greeting_wrap h2.h2_ttl {
  margin-top: min(1.8rem, 18px);
}

main.index section.greeting div.greeting_wrap p.greeting_txt {
  margin-top: min(3.2rem, 32px);
  font-size: min(1.6rem, 16px);
  font-weight: 500;
  line-height: 2;
}

main.index section.greeting div.greeting_wrap p.greeting_txt02 {
  margin-top: min(4rem, 40px);
  font-size: min(1.6rem, 16px);
  font-weight: 500;
  text-align: right;
  line-height: 1.8;
}

@media (max-width: 1360px) {
  main.index section.greeting div.greeting_wrap p.greeting_txt {
    margin-top: min(2.8rem, 28px);
    font-size: min(1.6rem, 16px);
    font-weight: 500;
    line-height: 1.6;
  }
  
  main.index section.greeting div.greeting_wrap p.greeting_txt02 {
    margin-top: min(3.6rem, 36px);
    font-size: min(1.6rem, 16px);
    font-weight: 500;
    text-align: right;
    line-height: 1.6;
  }
}

@media (max-width: 799px) {
  main.index section.greeting {
    background-image: url(/wp-content/themes/being/assets/img/bdc/bg_greeting_sp.jpg);
    padding-top: 229.368%;
  }

  main.index section.greeting::after {
    background-image: url(/wp-content/themes/being/assets/img/bdc/bg_greeting_down_sp.jpg);
    padding-top: 5.25%;
  }

  main.index section.greeting div.greeting_wrap {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 90%;
    padding: 10rem 20px;
    height: auto;
  }

  main.index section.greeting div.greeting_wrap h2.h2_ttl {
    margin-top: 0;
  }

  main.index section.greeting div.greeting_wrap p.greeting_txt {
    margin-top: 2.4rem;
    font-size: 1.3rem;
    line-height: 2;
  }

  main.index section.greeting div.greeting_wrap p.greeting_txt02 {
    margin-top: 4.0rem;
    font-size: 1.3rem;
    line-height: 1.8;
  }
}

/* about ---------- 
---------- ---------- ---------- ---------- ----------  */

main.index section.about {
  width: 100%;
}

main.index section.about::after {
  background-image: url(/wp-content/themes/being/assets/img/bdc/bg_about_down_pc.jpg);
  padding-top: 3.825%;
}

main.index section.about div.container {
  max-width: min(68rem, 680px);
}

main.index section.about dl.about_dl {
  margin-top: min(6rem, 60px);
  width: 100%;
}

main.index section.about dl.about_dl div.dl_wrap {
  display: flex;
  align-items: start;
  gap: 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

main.index section.about dl.about_dl div.dl_wrap:not(:first-of-type) {
  margin-top: -1px;
}

main.index section.about dl.about_dl div.dl_wrap dt.about_dt {
  width: 18%;
  background-color: rgba(0, 156, 225, 0.2);
  padding: min(1.4rem, 14px) 0 min(1.4rem, 14px) min(2rem, 20px);
  font-size: min(1.6rem, 16px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: .1em;
}

main.index section.about dl.about_dl div.dl_wrap:nth-of-type(6) dt.about_dt,
main.index section.about dl.about_dl div.dl_wrap:nth-of-type(8) dt.about_dt {
  padding: min(1.4rem, 14px) 0 min(5rem, 50px) min(2rem, 20px);
}

main.index section.about dl.about_dl div.dl_wrap dd.about_dd {
  flex: 1;
  padding: min(1.4rem, 14px) 0 min(1.4rem, 14px) min(4rem, 40px);
  font-size: min(1.6rem, 16px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: .1em;
}

main.index section.about dl.about_dl div.dl_wrap dd.about_dd a {
  color: #333333;
}

@media (max-width: 799px) {

  main.index section.about::after {
    background-image: url(/wp-content/themes/being/assets/img/bdc/bg_about_down_sp.jpg);
    padding-top: 5.25%;
  }
  
  main.index section.about div.container {
    max-width: 100%;
    padding-right: 4.0rem;
    padding-left: 4.0rem;
  }
  
  main.index section.about dl.about_dl {
    margin-top: 3.2rem;
  }
  
  main.index section.about dl.about_dl div.dl_wrap {
    flex-direction: column;
    gap: 0;
    border-top: none;
    border-bottom: none;
  }
  
  main.index section.about dl.about_dl div.dl_wrap:not(:first-of-type) {
    margin-top: 0;
  }
  
  main.index section.about dl.about_dl div.dl_wrap dt.about_dt {
    width: 100%;
    background-color: rgba(0, 156, 225, 0.2);
    padding: 1.2rem 0 1.2rem 3.0rem;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: .1em;
    box-sizing: border-box;
  }
  
  main.index section.about dl.about_dl div.dl_wrap:nth-of-type(6) dt.about_dt,
  main.index section.about dl.about_dl div.dl_wrap:nth-of-type(8) dt.about_dt {
    padding: 1.2rem 0 1.2rem 3.0rem;
  }
  
  main.index section.about dl.about_dl div.dl_wrap dd.about_dd {
    flex: 1;
    padding: 1.2rem 0 1.2rem 3.0rem;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: .1em;
  }
}

/* inquiry ---------- 
---------- ---------- ---------- ---------- ----------  */

main.index section.inquiry {
  width: 100%;
  background-color: #eaf2f4;
}

main.index section.inquiry div.container {
  max-width: min(68rem, 680px);
}

main.index section.inquiry form {
  margin-top: min(6rem, 60px);
  width: 100%;
}

main.index section.inquiry form label {
  /* font-size: 14px; */
  color: #333;
}


/* ----- 入力エラーの挙動 ----- ----- ----- ----- ----- ----- -----  */

.edit-submitted-from-nameformError {
  top: -50% !important;
  left: auto !important;
  right: 0 !important;
  margin-top: 0 !important;
}

.edit-submitted-e-mailformError {
  top: -50% !important;
  left: auto !important;
  right: 0 !important;
  margin-top: 0 !important;
}

.edit-submitted-commentformError {
  top: -20% !important;
  left: auto !important;
  right: 0 !important;
  margin-top: 0 !important;
}

@media (max-width: 799px) {

  main.index section.inquiry form {
    margin-top: 4.0rem;
  }

  /* ----- 入力エラーの挙動 ----- ----- ----- ----- ----- ----- -----  */

  .edit-submitted-from-nameformError {
    left: auto !important;
    right: 4% !important;
    font-size: 1.3rem;
  }

  .edit-submitted-e-mailformError {
    left: auto !important;
    right: 4% !important;
    font-size: 1.3rem;
  }

  .edit-submitted-commentformError {
    left: auto !important;
    right: 4% !important;
    font-size: 1.3rem;
  }
}

/* footer ---------- 
---------- ---------- ---------- ---------- ----------  */

footer {
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
}

footer div.container {
  padding: min(4rem, 40px) 20px;
  display: flex;
  align-items: center;
  gap: min(4rem, 40px);
}

footer div.container h1 {
  width: min(24rem, 240px);
}

footer div.container div.txt_area {
  flex: 1;
}

footer div.container div.txt_area ul.footer_ul {
  display: flex;
  gap: min(.8rem, 8px);
}

footer div.container div.txt_area ul.footer_ul a {
  font-size: min(1.4rem, 14px);
  color: #009ce1;
  display: flex;
  align-items: center;
  gap: min(.8rem, 8px);
}

footer div.container div.txt_area ul.footer_ul li.footer_li:not(:first-of-type) a::before {
  display: block;
  content: '';
  width: 1px;
  height: min(1.6rem, 16px);
  background: #009ce1;
}

footer div.container div.txt_area p.copy {
  margin-top: min(.8rem, 8px);
  font-size: min(1.4rem, 14px);
}

footer a.to_top {
  display: block;
  position: fixed;
  width: min(4.4rem, 44px);
  height: min(4.4rem, 44px);
  right: 4%;
  bottom: 4%;
  opacity: 0;
  background-image: url(/wp-content/themes/being/assets/img/bdc/icon_toTop.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transform: translateY(min(-8rem, -80px));
  pointer-events: none;
  cursor: pointer;
  transition: all .8s;
}

footer a.to_top.appear {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

footer a.to_top.appear:hover {
  background-image: url(/wp-content/themes/being/assets/img/bdc/icon_toTop02.png);
}

@media (hover: none) {
  footer a.to_top.appear:hover {
    background-image: url(/wp-content/themes/being/assets/img/bdc/icon_toTop.png);
  }
}

@media (max-width: 799px) {
  
  footer div.container {
    padding: 5.0rem 2.0rem;
    flex-direction: column;
    gap: 3.2rem;
  }
  
  footer div.container h1 {
    margin: 0 auto;
    width: 50%;
  }
  
  footer div.container div.txt_area {
    width: 100%;
  }
  
  footer div.container div.txt_area ul.footer_ul {
    display: flex;
    flex-wrap: wrap;
    line-height: 1.4;
    gap: .4rem;
  }
  
  footer div.container div.txt_area ul.footer_ul a {
    font-size: 1.2rem;
    color: #009ce1;
    display: flex;
    align-items: center;
    gap: .4rem;
  }
  
  footer div.container div.txt_area ul.footer_ul li.footer_li:not(:first-of-type) a::before {
    display: block;
    content: '';
    width: .1rem;
    height: 1.2rem;
    background: #009ce1;
  }
  
  footer div.container div.txt_area p.copy {
    margin-top: 1.2rem;
    font-size: 1.2rem;
  }

  footer a.to_top {
    width: 4rem;
    height: 4rem;
    right: 3%;
    bottom: 3%;
    transform: translateY(-6rem);
  }
}

/* タイトル部分の余白
-------------------------------------------------------------- */
.has-spaced {
  margin-bottom: 1.75rem;
}

.content > .title.has-spaced {
  font-size: min(4rem, 40px);
  margin-bottom: 5rem;
		font-family: 'Kiwi Maru', serif;
}

.has-border-top {
  border-top: 1px solid #d8d8d8;
}

@media (max-width: 799px) {
  .content > .title.has-spaced {
    font-size: 3rem;
  }
}


/* ページトップへ
-------------------------------------------------------------- */
#pageTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
}
#pageTop i.fa {
	margin: 0;
}
#pageTop a {
  display: block;
  z-index: 999;
  padding: 20px;
  border-radius: 60px;
  width: 60px;
  height: 60px;
  background-color: #9acd32;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  line-height: 1;
}
#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}