@charset "UTF-8";
/* ----------------------- */
:root {
  --color-text:#333333;
  --color-white:#ffffff;
  --color-white-rgb:255,255,255;
  --color-primary:#3b6847;
  --color-secondary:#88A25B;
  --color-gold:#caae43;
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 0;
  min-height: 0;
}

html {
  font-size: 62.5%;
  line-height: 1.6;
  height: 100%;
}



body {
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: 1.6rem;
  font-family: "Kaisei Tokumin" ,"Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  width: 100%;
  letter-spacing: 0.1em;
}

@media(min-width: 961px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--color-text);
}

p {
  font-size: 16px;
}

/* -------------------------- */

/* nav */
#top-head {
  width: 100%;
  height: 80px;
  background-color: var(--color-white);
  display: flex;
  position: fixed;
  z-index: 998;
  transition: .2s;
}

#top-head .inner {
  width: 95%;
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#g-nav ul {
  display: flex;
  list-style-type: none;
  align-items: center;
}

#g-nav li a {
  padding: 0 20px;
}

.g-nav-link {
  position: relative;
  display: inline-block;
}

.g-nav-link::after {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  content: '';
  width: 90%;
  height: 2px;
  background: var(--color-primary);
  opacity: 0;
  visibility: hidden;
  transition: .4s;
}

.g-nav-link:hover::after {
  bottom: -4px;
  opacity: 1;
  visibility: visible;
}

.g-nav-contact {
  background-color: var(--color-secondary);
  height: 80px;
  line-height: 80px;
}

.g-nav-contact a {
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.g-nav-contact a img {
  width: 20px;
  margin-bottom: -4px;
}

.g-nav-contact a:hover {
  background-color: var(--color-primary);
}

.header-logo {
width: 100%;
max-width: 300px;
  margin: auto 0;
}

.header-logo img {
  max-width: 100%;
  height: 100%;
}

.openbtn {
  display: none;
}

.g-nav-logo {
  display: none;
  height: 60px;
}

.g-nav-logo img {
  height: 100%;
}

@media screen and (max-width:768px) {
  #top-head {
    height: 60px;
  }

  #top-head .inner {
    width: 100%;
  }

  .header-logo {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: auto;
    max-width: none;
    height: 50%;

  }

  #g-nav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    background: var(--color-white);
    transition: all 0.6s;
  }

  #g-nav.panelactive {
    right: 0;
  }

  #g-nav.panelactive .g-nav-logo {
    display: block;
    position: absolute;
    top: 2px;
    left: 10px;

  }

  #g-nav.panelactive #g-nav-list {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  #g-nav ul {
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
  }

  #g-nav li {
    list-style: none;
    text-align: center;
  }

  #g-nav li a {
    text-decoration: none;
    padding: 20px;
    margin: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .g-nav-contact {
    background-color: var(--color-secondary);
    height: auto;
    line-height: 1.6;
  }

  .g-nav-contact a {
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }

  .g-nav-contact a img {
    margin-bottom: -1px;
  }

  /* hamburger */
  .openbtn {
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: inline-block;
    background-color: var(--color-secondary);
  }

  /*×*/
  .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    background-color: var(--color-white);
    width: 55%;
  }

  .openbtn span:nth-of-type(1) {
    top: 22px;
  }

  .openbtn span:nth-of-type(2) {
    top: 30px;
  }

  .openbtn span:nth-of-type(3) {
    top: 38px;
  }

  .openbtn.active span:nth-of-type(1) {
    top: 22px;
    left: 16px;
    transform: translateY(8px) rotate(-45deg);
    width: 50%;
  }

  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
    transform: translateX(10px);
  }

  .openbtn.active span:nth-of-type(3) {
    top: 38px;
    left: 16px;
    transform: translateY(-8px) rotate(45deg);
    width: 50%;
  }

}

/* ---/nav */

/* アニメーション */
 
/* fadeIn */
.fadeIn{
  animation-name: fadeInAnime;
  animation-duration:1.3s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeInAnime{
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  
  /* fadeUp */
  
  .fadeUp{
  animation-name: fadeUpAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeUpAnime{
    from {
      opacity: 0;
    transform: translateY(100px);
    }
  
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }

  
/* fadeDown */

.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);
    }
  }
  
  /* fadeLeft */
  
  .fadeLeft{
  animation-name: fadeLeftAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeLeftAnime{
    from {
      opacity: 0;
    transform: translateX(-100px);
    }
  
    to {
      opacity: 1;
    transform: translateX(0);
    }
  }
  
  /* fadeRight */
  
  .fadeRight{
  animation-name: fadeRightAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeRightAnime{
    from {
      opacity: 0;
    transform: translateX(100px);
    }
  
    to {
      opacity: 1;
    transform: translateX(0);
    }
  }
  
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger{
    opacity: 0;
}

/* ---/アニメーション */

/* 共通 */

.container--wide {
  max-width: 1250px;
  margin: 0 auto;
  width: 90%;
}

.container--narrow {
  max-width: 900px;
  margin: 0 auto;
  width: 95%;
}

.mt-100 {
  margin-top: 100px;
}

.centering {
  margin: 20px ;
  text-align: center;
}

/*右側へ要素を広げる（1カラム）*/
.outside-right{
  margin-right: calc(50% - 50vw);
}

/*左側へ要素を広げる（1カラム）*/
.outside-left{
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width:768px) {
  .outside-right{
    margin-right:auto;
    margin-left: auto;
  }
  
  /*左側へ要素を広げる（1カラム）*/
  .outside-left{
    margin-right:auto;
    margin-left: auto;
  }
}

.flex-b {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-c {
  display: flex;
  justify-content: center;
  align-items: top;
  gap: 50px;
}

.gap-30 {
  gap: 30px;
}


.flex-txt-box {
  width: 50%;
}

.flex-img {
  width: 50%;
}

.flex-img img {
  width: 100%;
}

@media screen and (max-width:768px) {
  .flex-b {
    flex-direction: column;
    margin: 0 auto;
  }
  .flex-c {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }
  

  .flex-txt-box {
    width: 100%;
  }
  
.flex-img {
  width: 100%;
}

.fd-cr {
  flex-direction: column-reverse;
}

}

section {
  padding: 100px 0;
}



.section-ttl {
	position: relative;
	padding-top: 80px;
	padding-bottom: 50px;
	font-size: 2.6rem;
	text-align: center;
  margin-bottom: 20px;
}

.section-ttl-vertical {
  writing-mode: vertical-rl;
}

.section-ttl::before {
	content: attr(data-en);
	position: absolute;
	top: -47px;
	left: 50%;
	transform: translateX(-50%);
	color: var(--color-primary);
	font-size: 8rem;
	font-style: normal;
  font-weight: 600;
}

.section-ttl::after {
	content: '';
	position: absolute;
	bottom: 35px;
	left: 50%;
	transform: translateX(-50%) ;
	width:40px;
	height: 1px;
	background-color:var(--color-primary);
}

.section-ttl--left {
	position: relative;
	padding-top: 50px;
	padding-bottom: 50px;
	font-size: 2.6rem;
	text-align: left;
  margin-bottom: 20px;
}

.section-ttl--left::before {
	content: attr(data-en);
	position: absolute;
	top: -45px;
	left: 0%;
	color: var(--color-primary);
	font-size: 8rem;
	font-style: normal;
  font-weight: 500;
}

.section-ttl--left::after {
	content: '';
	position: absolute;
	bottom: 35px;
	left: 0%;
	width:40px;
	height: 1px;
	background-color:var(--color-primary);
}


.section-ttl--right {
	position: relative;
	padding-top: 50px;
	padding-bottom: 50px;
	font-size: 2.6rem;
	text-align: right;
  margin-bottom: 20px;
}

.section-ttl--right::before {
	content: attr(data-en);
	position: absolute;
	top: -45px;
	right: 0%;
	color: var(--color-primary);
	font-size: 8rem;
	font-style: normal;
  font-weight: 500;
}

.section-ttl--right::after {
	content: '';
	position: absolute;
	bottom: 35px;
	right: 0%;
	width:40px;
	height: 1px;
	background-color:var(--color-primary);
}

.white {
  color: var(--color-white);
}

.red {
  color: red;
}

.white.section-ttl--left::before {
  color: var(--color-white);
}

.white.section-ttl--left::after {
  background-color: var(--color-white);
}
.white.section-ttl--right::before {
  color: var(--color-white);
}

.white.section-ttl--right::after {
  background-color: var(--color-white);
}

.sub-ttl {
  font-size: 2rem;
  text-align: center;
  margin: 20px 0;
}

.sub-ttl--left {
  font-size: 2rem;
  text-align: left;
  margin: 20px 0;
}

.sub-ttl--right {
  font-size: 2rem;
  text-align: right;
  margin: 20px 0;
}

.l-txt {
  font-size: 1.2em;
  font-weight: 600;
  display: block;
}

@media screen and (max-width:768px) {
  .section-ttl,
  .section-ttl--left,
  .section-ttl--right {
    font-size: 2.4rem;
  }
  
  .section-ttl--left  {
    margin-left: 0;
    margin-right: auto;
  }
  
  .section-ttl--right  {
    margin-left: auto;
    margin-right: 0;
  }

  .section-ttl::before,
  .section-ttl--left::before,
  .section-ttl--right::before {
    top: -15px;
    font-size: 5rem;
  }

  .sub-ttl {
    font-size: 1.8;
    text-align: center;
    margin: 20px 0;
  }
  
  .sub-ttl--left {
    font-size: 1.8;
    text-align: left;
    margin: 20px 0;
  }
  
  .sub-ttl--right {
    font-size: 1.8;
    text-align: right;
    margin: 20px 0;
  }
}


/* button */
.btn-wrap {
  margin: 50px 0;
  text-align: center;
}
.btn-01 {
  display: inline-flex;
  align-items: center;
  color: var(--color-text);
  border: 1px solid var(--color-secondary);
  min-height: 50px;
  padding: 0 20px;
  font-size: 17px;
  text-transform: uppercase;
  z-index: 1;
  position: relative;
  background-color: transparent;
}

.btn-01::before {
  content: "";
  background-color: var(--color-text);
  display: block;
  width: 45px;
  height: 1px;
  margin-right: 20px;
}

.btn-01::after {
  content: "";
  background-color: var(--color-secondary);
  display: block;
  width: 0%;
  height: 100%;
  right: 0;
  top: 0;
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.btn-01:hover {
  color: var(--color-white);
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.btn-01:hover::after {
  width: 100%;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.btn-01:hover::before {
  background-color: var(--color-white);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
/* button end */

.button--left {
  margin: 50px auto 50px 0;
  text-align: left;
}

.button--right {
  margin: 50px 0 50px auto;
  text-align: right;
}

@media screen and (max-width:768px) { 
.button--left,
.button--right {
  margin: 50px auto;
}
}

/* .card */

.shadow {
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.35));
}
.grid-6 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-template-rows: repeat(2,1fr);
  gap: 50px;
}

.card {
  background-color: var(--color-white);
  border-radius: 20px;
}

.card dt {
  text-align: center;
}

.card__ttl {
  text-align: center;
  font-size: 1.8rem;
  padding: 10px 0;
}

.card__img {
  width: 100%;
}

.card__detail {
  padding: 20px;
}

.card__detail__list li {
  list-style-type: disc;
  margin-left: 20px;
}

.card-caution {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 5px;
  border-radius: 5px;
}

@media screen and (max-width:768px) {
  .grid-6 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: repeat(3,1fr);
    gap: 40px;
  }


}



@media screen and (max-width:599px) {
  .grid-6 {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    grid-template-rows: repeat(5,1fr);
    gap: 30px;
  } 
}

/* .card__txt {
} */


.g-footer {
  width: 100%;
  height: auto;
  padding: 50px 0 10px;
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.g-footer-logo {
  width: 240px;
}

.g-footer-logo img {
  width: 100%;
}

.g-footer p {
  margin: 20px 0;
}

.g-footer-nav {
  width: 50%;
}

.g-footer-nav a {
  color: var(--color-white);
}

.copyrigiht {
  display: block;
  font-size: 1.3rem;
  text-align: center;
}

@media screen and (max-width:768px) {
  .g-footer {
    height: auto;
    padding: 50px 0 10px;
  }

  /* .g-footer-nav  {
    flex-direction: row;
  } */

  .g-footer-nav {
    width: 100%;
  }

  .g-footer-nav li {
    margin:20px auto;
  }

.g-footer-logo {
    margin: 0 auto;
  }
}
/* ---/共通 */

/* top */
.mv {
  width: 100%;
  padding-top: 80px;
}


.mv__img {
  width: 100%;
  filter: brightness(95%);
  img {
    max-width: 100%;
  }
  background: url(../img/mv.jpg) no-repeat;
  background-size: cover;
  height: 87svh;
  @media screen and (max-width:768px) {
    background-position-x: 40%;
  }
}

.mv-catch {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  font-size: 5rem;
  color: var(--color-white);
  font-weight: 600;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, .5), -1px -2px 3px rgba(0, 0, 0, .5);
}

@media screen and (max-width:1100px) {
  .mv-catch {
    font-size: 4vw;
  }
}

@media screen and (max-width:768px) {
  .mv {
    padding-top: 60px;
  }

  .mv-catch {
    font-size: 6.5vw;
    top: 50%;
    left: 5%;
  }
}

/* 下層 */

.sub-v {
  width: 100%;
  padding-top: 80px;
}

.sub-v__img {
  width: 100%;
  position: relative;
  background: url(../img/sub_v.jpg)no-repeat;
  background-position: center;
  background-size: cover;
  height: 300px;
}

.sub-v__img img {
  width: 100%;
}

.sub-v-catch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 5rem;
  color: var(--color-white);
  font-weight: 600;  
  text-shadow: 2px 3px 3px rgba(0, 0, 0, .5), -1px -2px 3px rgba(0, 0, 0, .5);
}

@media screen and (max-width:1100px) {
  .sub-v-catch {
    font-size: 4vw;
  }
}

@media screen and (max-width:768px) {
  .sub-v {
    padding-top: 60px;
  }

  .sub-v-catch {
    font-size: 6.6vw;
  }

  .sub-v__img {
    height: 200px;
  }

  .sub-v__img img {
    filter: brightness(93%);
  }
}


/* section.about */

.about-txt {
  max-width:700px;
  margin: 20px auto;
}

.about-txt-vertical {
  max-height:400px;
  word-wrap: balance;
  word-break: auto-phrase;
  margin: 20px 0;
  writing-mode: vertical-rl;
}

.about__list li {
  margin: 20px 0;
}


@media screen and (max-width:768px) {
  .about__list {
    text-align: left;
  }
}


/* section.mission */
.mission {
  /* background:rgba(68, 114, 196, .1) ; */
  background: url(../img/top-mission-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: -2;
  &::after {
    position:absolute;
    inset: 0;
    background-color:rgba(var(--color-white-rgb) , .7) ;
content: "";
height: 100%;
width: 100%;
z-index: -1;
  }
}




.p-box-wrap {
  margin: 40px 0 0;
}

.p-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.p-box:first-of-type {
  margin-bottom: 80px;
}

.p-box:nth-of-type(2n) {
  flex-direction: row-reverse;
}

.p-box figure {
  width: 50%;
}

.p-box-text {
  width: 50%;
}


.p-box-text p {
  margin-bottom: 40px;
}

.p-box figure img {
  width: 100%;
  object-fit: cover;
  height: 550px;
}

.p-box-text {
  text-align: left;
  padding:  40px 20px;
  color: var(--color-white);
  min-height: 400px;
  background:var(--color-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 60px;
}


.p-box-text .u-marker {
  width: -moz-fit-content;
  width: fit-content;
  background-image: linear-gradient(rgba(0 0 0 / 0) 60%, var(--color-white)70 60%);
}

@media screen and (max-width: 768px) {

  .p-box,
  .p-box:nth-of-type(2n) {
    flex-direction: column;
  }

  .p-box figure,
  .p-box-text {
    width: 100%;
    margin: 0;
  }

  .p-box-text {
    height: auto;
    padding: 40px 20px;
    margin-top: -20px;
  }

  .p-box figure img {
    height: auto;
  }
}

.mission__center__img {
  width: 90%;
  margin: 0 auto;
}

.mission__center__img img {
  width: 100%;
}

@media screen and (max-width:768px) {
  .mission__center__img {
    width: 100%;
    margin: 0 auto;
  }
}

/* section.top-service */
.service__list li,
.vision__list li,
.about__list li {
  position: relative;
  margin:20px auto 20px 25px;
}

.service__list li::before,
.vision__list li::before,
.about__list li::before{
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  display: block;
  content: "";
  width:10px;
  height:10px;
  border-radius: 50%;
  background-color: var(--color-secondary);
}

/* section.movie */

.movie {
  .flex-b {
    gap: 20px ;
  }
  video {
    width: 100%;
  
  }
}


/* section.to-contact */
.to-contact {
  background: url(../img/to_contact_bg.jpg)no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 400px;
}

.to-contact .button-054 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 300px;
  margin: 50px auto;
  padding: 1.3em 0 1.3em 0;
  border: 1px solid var(--color-white);
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 1.1em;
}

.to-contact .button-054::after {
  position: absolute;
  right: 1.5em;
  transform: translateY(-50%);
  transform-origin: left;
  width: 3em;
  height: .6em;
  background-color: var(--color-white);
  clip-path: polygon(0 100%, 100% 100%, 70% 40%, 70% 90%, 0% 90%);
  content: '';
  transition: transform .3s;
}

.to-contact .button-054:hover::after {
  transform: translateY(-50%) scaleX(1.3);
}



.tel-button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 300px;
  margin: 50px auto;
  padding: 1.3em 0 1.3em 0;
  border: 1px solid var(--color-white);
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 1.1em;
}

@media screen and (max-width:768px) { 
  .to-contact {
    background: url(../img/to_contact_bg.jpg)no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: auto;
  }
}

/* service.html */
/* .service .service__list {
  display: flex;
  flex-wrap: wrap;
} */

.vision {
  background-color: #f3f3f3;
}

.service-image {
  margin: 0 auto;
  width: 100%;
}

.service-image img {
  width: 100%;
}

.service-product-sub {
  text-align: center;
  font-size: 2.2rem;
}

.feature__list {
  display: flex;
  justify-content: center;
  width: 90%;
  margin: 10px auto;
  max-width: 880px;
}

.feature__list-ttl {
background-color: var(--color-primary);
border:var(--color-primary) solid 2px ;
padding:3px 10px;
color: var(--color-white);
font-size: 2.2rem;
border-radius: 35px 0 0 35px;
width: 10%;
}

.feature__list-txt {
  width: 90%;
  font-size: 1.8rem;
border:var(--color-primary) solid 2px ;
padding: 4px;
border-radius:0 35px 35px 0;
}

@media screen and (max-width:768px) {
  .service-image {
    max-width: 700px;
    overflow-x: scroll;
  }

.service-image img {
  width: 700px;
}

.service-product-sub {
  text-align: left;
  font-size: 2rem;
}

.feature__list {
  display: block;
  justify-content: center;
  width: 90%;
  margin: 10px auto;
}

.feature__list-ttl {
background-color: var(--color-primary);
border:var(--color-primary) solid 2px ;
padding:3px 10px;
color: var(--color-white);
font-size: 2rem;
border-radius: 20px 20px 0  0;
text-align: center;
width: 100%;
}

.feature__list-txt {
  width: 100%;
  font-size: 1.6rem;
border:var(--color-primary) solid 2px ;
padding: 4px;
border-radius:0 0 20px 20px;
}

}

/* company.html */
.philosophy__txt {
  text-align: center;
}

.philosophy__img {
  margin: 30px auto;
  width: 90%;
  max-width: 370px;
}

.philosophy__img img {
  width: 100%;
}

@media screen and (max-width:768px) {
  .philosophy__txt {
    text-align: left;
  }
}

.vision {
  background-color: #F3F3F3;
}

.company-profile__table {
  width: 100%;
  
    border-collapse: collapse;
  }
  
  .company-profile__table th,
  .company-profile__table td {
  border: 1px solid #ccc;
  padding: 20px;
  }
  
  .company-profile__table th {
  font-weight: bold;
  background-color: #f3f3f3; 
  }

  .company-table--flex {
    display: flex;
    justify-content: space-between;
    width: 90%;
    max-width: 230px;
    margin: 0 auto 0 0;
  }

  .company-profile__table td ul li {
    position: relative;
    margin: 5px auto 5px 15px;
  }

  .company-profile__table td ul li::before {
   display: block;
   content: "・";
   position: absolute;
   top: 50%;
   left: -15px;
   transform: translateY(-50%);
  }
  
  @media screen and (max-width: 768px) {
  .company-profile__table,
  .company-profile__table tr,
  .company-profile__table td,
  .company-profile__table th {
  display:inline-block;
  width:100%;
  }
  }

  /* property */
  /* .full-img {
    background:url(../img/property-bg.jpg)no-repeat;
    background-size: cover;
    height: 500px;
    background-position: center;
  }
   */
   .p-appeal {
    font-size: 1.4em;
    text-align: center;
    margin-top: 30px;
    
   }

   .p-appeal-gold {
    color: var(--color-gold);
    font-size: 1.6em;
    text-align: center;
    font-weight: 600;
    margin: 30px 0;
   }
.propert-other__txt {
  font-size: 2.6rem;
  text-align: center;
  position: relative;
  font-weight: 600;
}


.product-img {
  width: 95%;
  max-width: 800px;
  margin: 0 auto;
  img {
    width: 100%;
  }
}
@media screen and (max-width:768px) {
  .propert-other__txt {
    font-size: 2.2rem;
  }
  
}


#formWrap {
  width: 100%;
  margin: 0 auto;
  line-height: 120%;
  font-size: 90%;
  text-align: left;
}

table.formTable {
  width: 100%;
  margin: 0 auto 20px;
  border-collapse: collapse;
}


table.formTable td, table.formTable th {
  /* border:1px solid #ccc; */
  padding: 7px;
  border: solid 1px #e0e0e0;
}

table.formTable td {
  background-color: rgba(255,255,255,.8);
}


table.formTable th {
  width: 40%;
  font-weight: 600;
  /* background:#4ba8de; */
  color: #120d0b;
  vertical-align: middle;
  text-align: left;
  background-color:#f4f4f4;
  padding-left: 15px;
}


.formTable .caution-text {
  color: red;
  font-size: 1.3rem;
}
table.formTable textarea {
  width: 100%;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  background-color: var(--color-white);
}


.contact-button {
  display: inline-block;
  border-radius: 5%;
  /* 角丸    */
  font-weight: 700;
  font-size: 16px;
  /* 文字サイズ */
  text-align: center;
  /* 文字位置   */
  cursor: pointer;
  /* カーソル   */
  padding: 12px 12px;
  /* 余白       */
background-color: var(--color-primary);/* 背景色     */
  color: var(--color-white);
  /* 文字色     */
  line-height: 1em;
  /* 1行の高さ  */
  transition: .3s;
  /* なめらか変化 */
  box-shadow: 2px 2px 0px #dcdddd;
  /* 影の設定 */
  /* 枠の指定 */
  width: 100%;
  max-width: 150px;
  border: var(--color-primary) solid 2px;
}

.contact-button:hover {
  box-shadow: none;
  /* カーソル時の影消去 */
  color: var(--color-primary) ;
  /* 背景色     */
  background: var(--color-white);
  border:var(--color-primary) solid 2px;
  /* 文字色     */
}

.reset-button {
  background: var(--color-white);
  /* 背景色     */
  color: var(--color-primary);
  /* 文字色     */
}

.reset-button:hover {
  box-shadow: none;
  /* カーソル時の影消去 */
  color: var(--color-white);
  /* 背景色     */
  background: var(--color-primary);
  /* 文字色     */
}


.button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.button-wrapper input {
  margin-bottom: 20px;
}


.m-form-text {
  height: 2.4em;
  width: 100%;
  padding: 0 16px;
  border: none;
  box-shadow: 0 0 0 1px #ccc;
  background-color: var(--color-white);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.m-form-text:hover,
.m-form-textarea:hover {
  background-color: rgba(33, 150, 243,.1) ;
}

.m-form-text:focus,
.m-form-textarea:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}



.button {
  display: inline-block;
  border-radius: 5%;
  /* 角丸       */
  font-size: 12pt;
  /* 文字サイズ */
  text-align: center;
  /* 文字位置   */
  cursor: pointer;
  /* カーソル   */
  padding: 10px 25px;
  /* 余白       */
  background: var(--color-text);
  /* 背景色     */
  color: var(--color-white);
  /* 文字色     */
  line-height: 1em;
  /* 1行の高さ  */
  transition: .3s;
  /* なめらか変化 */
  box-shadow: 1px 1px #666666;
  /* 影の設定 */
  border: 1px solid var(--color-text);
  /* 枠の指定 */
}

.button:hover {
  box-shadow: none;
  /* カーソル時の影消去 */
  color: var(--color-text);
  /* 背景色     */
  background: var(--color-white);
  /* 文字色     */
}

/* ラジオボタン */
input[type="radio"] {
  margin-left: 20px;
}
.radio-box-p {
  display: flex;
  justify-content: space-between;
  max-width: 400px;
}
@media screen and (max-width:768px) {
  .radio-box-p {
    display:block;
  }
}

/* セレクト */
select {
  padding: 5px 16px;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  color: #555;
}

/* カレンダー選択 */
input[type="date"] {
  width: 150px;
  position: relative;
  height: 2.4em;
  padding: 0 16px;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 5px 20px 5px 0;
}
input[type="date"]::-webkit-inner-spin-button {
  appearance: none;
}
input[type="date"]::-webkit-clear-button {
  appearance: none;
}

input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}

input[type="date"]:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}
.form-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 10px;
  width: 70%;
  max-width: 250px;
  margin: 0 0 auto 0;
}

.select-box{
  width: 150px;
  height: 2.4em;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 5px 20px 5px 0;
}
.select-box select {
  text-align: center;
}

@media screen and (max-width:599px) {

  .form-container {
    width: 100%;
    max-width: none;
    margin: 30px auto;
  }

  #formWrap {
    width: 95%;
    margin: 0 auto;
  }

  table.formTable th, table.formTable td {
    width: auto;
    display: block;
  }

  table.formTable th {
    border-bottom: 0;
    padding: 10px;
    
  }

  input[type="text"], textarea {
    width: 100%;
    padding: 5px;
    font-size: 110%;
    display: block;
  }

  input[type="submit"], input[type="reset"], input[type="button"] {
    /* display:block; */
    height: 40px;
  }

}

@media screen and (min-width:901px) {
  .form-sp {
    display: none;
  }
}

@media screen and (max-width:900px) {
  .form-sp {
    display: block;
  }
}


/* ----レスポンシブ切替---- */

@media screen and (min-width:769px) {
  .sp {
    display: none !important;
  }

  .pc {
    display: block !important;
  }
}

@media screen and (max-width:768px) {
  .sp {
    display: block !important;
  }

  .pc {
    display: none !important;
  }
}

.in {
  display: inline-block;
}

.small {
  font-size: .8em;
  display: block;
  text-align: center;
}

/* -------/レスポンシブ切替---- */

.text-shadow {
  text-shadow: 2px 3px 3px rgba(0, 0, 0, .5), -1px -2px 3px rgba(0, 0, 0, .5);
}