/*
Theme Name: Onishi Kogyo Theme
Theme URI: https://example.com/
Author: Onishi Kogyo
Description: Static site converted to WordPress theme.
Version: 1.0.0
Text Domain: onishi-kogyo
*/

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

html{
  font-size: 62.5%;
}

body{
  margin: 0;
  padding: 0;
  max-width: 100%;
  margin: auto;
  background-color: #fff6eb;
  font-family: "M PLUS Rounded 1c", sans-serif;
}

h1,h2,h3,h4,h5,h6,a{
  margin-top: 0;
  margin-bottom: 0;
}

::selection {
  background: #39b54a;
  color: #fff;
}

img {
  margin: 0;
  padding: 0;
	height: auto;
  vertical-align:top;
}

.noto{
  font-family: "Noto Sans JP", sans-serif;
}

.green{
  color: #62b351;
}


@media (max-width: 849px) {

    .none__mb{
  display: none;
}

.header__gnav{
  margin: 0 0 0 auto;
}

  #g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 800;
    /*ナビのスタート位置と形状*/
	top:-120%;
    left:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#9be38c;
    opacity: 0.8;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav-list{
    display: flex;
}

.g-nav-l{
    width: 30%;
    margin: auto;
    text-align: center;
}

.g-nav-l img{
    display: none;
}

.g-nav-r{
    width: 70%;
    display: flex;
    margin: auto;
}

.g-nav-r a{
    color: #111;
    text-decoration: none;
    font-weight: 500;
}

.header__content__r{
    width: 70%;
}

.header__content__r__top{
    display: flex;
}

.header__content__r__gp{
    margin-right: 100px;
}

.header__content__r__gp ul {
    list-style: none;
}

.header__content__r__gp li{
    margin-bottom: 13px;
}

.header__content__r__gp a{
    font-size: 17px;
    letter-spacing: 2px;
    transition: 0.3s;
    font-weight: 500;
}

.header__content__r__gp a:hover{
    color: #666;
    transition: 0.3s;
}

  .openbtn{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	position: relative;
	background:#62b351;
	cursor: pointer;
  width: 50px;
  height:50px;
	border-radius: 50px;
  z-index: 999;
  margin: 0 0 0 auto;
}

/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 5px;
    background: #fff;
  	width: 45%;
  }


.openbtn span:nth-of-type(1) {
	top:13px;	
}

.openbtn span:nth-of-type(2) {
	top:19px;
}

.openbtn span:nth-of-type(3) {
	top:25px;
}

.openbtn span:nth-of-type(3)::after {
	content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
	position: absolute;
	top:5px;
	left:-2px;
	color: #fff;
	font-size: 1rem;
	text-transform: uppercase;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

.openbtn.active span:nth-of-type(1) {
    top: 14px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 26px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(3)::after {
	content:"Close";/*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
	top:5px;
	left:4px;
}

    /* header */

  .pc__header__main{
    width: 90%;
    margin: auto;
    margin-top: 10px;
    display: flex;
    align-items: center;
    z-index: 999;
    position: relative;
  }

  .header__logo img{
    width: 70%;
    z-index: 999;
    margin-top: 0px;
    max-width: 350px;
  }

  .pc__nav{
    display: none;
  }

  .header__btn{
    display: none;
  }

  .header__btn a{
    text-decoration: none;
  }

  .header__btn__mb{
    margin: 0 10px 0 auto;
    display: none;
  }

  .header__btn__mb a{
    text-decoration: none;
  }


  .button-02-mb {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 180px;
    height: 50px;
    margin:0 auto;
    padding: .9em 2em;
    overflow: hidden;
    border: 1px solid #39b54a;
    border-radius: 30px;
    background-color: #39b54a;
    color: #fff;
    font-size: 1rem;
    transition: 0.7s;
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-left: 20px;

  }

  .button-02-mb:hover {
    background-color: transparent;
    color: #39b54a;
    transition: 0.7s;
  }


    /* footer */

.footer__contact{
  width: 100%;
  background-color: #62b351;
  padding: 30px 0;
  clip-path: ellipse(150% 100% at 50% 100%);
  margin-top: -20vh;
}

.footer__contact hr{
  border-color: #fff;
  background-color: #fff;
  border-radius: 2px;
  width: 90%;
}

.footer__contact__l{
  width: 100%;
  margin: auto;
  padding-top: 0px;
}

.footer__contact__r{
  width: 100%;
  margin: auto;
  padding-top: 20px;
}

.footer__contact__box{
  width: 70%;
  margin: auto;
  padding: 50px 0px;
}

.footer__contact__box__title{
  width: 270px;
  margin: auto;
  font-size: 2.0rem;
  letter-spacing: 3px;
  color: #fff;
  font-weight: 500;

}

.footer__contact__box__content{
  padding: 10px 0;
}

.footer__contact__box__content a{
  text-decoration: none;
}

.button-02 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 280px;
    height: 50px;
    margin:0 auto 20px auto;
    padding: .9em 2em;
    overflow: hidden;
    border: 1px solid #fff;
    border-radius: 30px;
    background-color: #fff;
    color: #111;
    font-size: 1rem;
    transition: 0.7s;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .button-02:hover {
    background-color: #9be38c;
    color: #fff;
    transition: 0.7s;
  }

  .footer__main{
    width: 100%;
    margin: auto;
    padding: 30px 0;
    background-color: #fff;
  }

  .footer__main__l{
    width: 95%;
    margin: auto;
    padding-bottom: 10px;
  }

  .footer__main__l__logo img{
    width: 80%;  
  }

  .footer__main__l__content{
    margin: 20px auto;
  }

  .footer__main__l__content h6{
    font-size: 2.0rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }

  .footer__main__l__content p{
    margin: 0;
    font-size: 1.4rem;
    letter-spacing: 1px;
  }

  .footer__main__r{
    width: 95%;
    margin: auto;
  }

  .footer__main__r__content{
    width: 100%;
    margin: auto;
  }

  .footer__main__r__content iframe{
    border-radius: 30px;
    height: 300px;
  }

  .footer__copy{
    text-align: center;
    letter-spacing: 1px;
    font-size: 1.6rem;
    background-color: #62b351;
    color: #fff;
    padding: 5px 0;
  }


      /* index */

  .index__top{
  width: 100%;
  margin:40px auto;
  position: relative;
}

.index__top__img {
  width: 90%;
  text-align: center;
  margin: auto;
  display: none;
}

.index__top__img img{
  width: 100%;
}

.index__wave{
  position: relative;
  height:15vh;/*何も表示されない場合は各波の親要素に高さを持たせましょう。*/
}
canvas{
  position: absolute;
  bottom: 0;
  left:0;
  top: -43vh;
  width: 100%;
}

.index__top__content__1{
  position: absolute;
  top: 0%;
  left: 7%;
  z-index: 900;
}

.index__top__content__1 h1{
  font-size: 4.0rem;
  letter-spacing: 4px;
  color: #fff;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}

.index__top__content__2{
  position: absolute;
  z-index: 900;
  top: 90%;
  left: 50%;
  transform: translate(-50%, 0%);
}

.index__top__content__2 h2{
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 300;
  letter-spacing: 3px;
}

.index__service{
  width: 100%;
  margin:10px auto 0 auto;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.index__service::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    transform: skewY(6deg) translateY(110px);
    z-index: -1;
}

.index__service__title{
  text-align: center;
  margin-bottom: 80px;
}

.index__service__title h3{
  font-size: 2.5rem;
  letter-spacing: 3px;
}

.index__service__title h4{
  font-size: 1.5rem;
  letter-spacing: 4px;
  font-weight: 500;
}

.index__service__content{
  width: 95%;
  margin: auto;
  margin-bottom: 50px;
}

.index__service__content__l{
  width: 100%;
  margin: auto;
  text-align: center;
}

.index__service__content__l img{
  width: 80%;
  margin: auto;
}

.index__service__content__r{
  width: 100%;
  margin:20px auto;
  text-align: center;
}

.index__service__content__r h4{
  font-size: 2.5rem;
  letter-spacing: 3px;
}

.index__service__content__r p{
  font-size: 1.3rem;
  letter-spacing: 1px;
  line-height: 150%;
  font-weight: 500;
}

.index__about{
  width: 100%;
  margin:-300px auto 0 auto;
  padding: 200px 0 0 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.index__about::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #62b351;
    transform: skewY(-7deg) translateY(140px);
    z-index: -1;
  }

.index__about__title{
  text-align: center;
  margin-bottom: 84px;
}

.index__about__title h3{
  font-size: 2.0rem;
  letter-spacing: 1px;
}

.index__about__title h4{
  font-size: 1.5rem;
  letter-spacing: 2px;
  font-weight: 500;
}

.index__about__content{
  width: 85%;
  margin: auto;
  text-align: center;
}

.index__about__content__l{
  width: 90%;
  margin: auto;
}

.index__about__content__l h5{
  font-size: 4.0rem;
  letter-spacing: 5px;
  margin-bottom: 30px;
}

.index__about__content__l h6{
  font-size: 1.6rem;
  letter-spacing: 1px;
  line-height: 200%;
}

.index__about__content__r{
  width: 90%;
  margin:30px auto;
  text-align: center;
}

.index__about__content__r img{
  width: 80%;
  max-width: 400px;
}

.index__about__content__2{
  color: #111;
  width: 85%;
  margin:50px auto 0 auto;
  text-align: center;
  padding: 60px 0 50px 0;
  background-color: #fff;
  border-radius: 30px;
}

.index__about__content__2 h6{
  font-size: 1.6rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.index__about__sc{
  width: 100%;
  height: 200px;
  background-color: #62b351;
  clip-path: ellipse(60% 100% at 50% 0%);
}

.index__about__big{
  font-size: 2.0rem;
  line-height: 300%;
}

.index__works{
  padding: 100px 0;
}

.index__works__title{
  text-align: center;
  margin-bottom: 20px;
}

.index__works__title h3{
  font-size: 2.5rem;
  letter-spacing: 3px;
}

.index__works__title h4{
  font-size: 1.5rem;
  letter-spacing: 4px;
  font-weight: 500;
}

.index__works__content{
  width: 95%;
  max-width: 800px;
  margin: auto;
}

.index__works__content__gp{
  margin: auto;
}

.index__works__content__box{
  width: 100%;
  margin: auto;
  text-align: center;
  margin-bottom: 20px
}

.index__works__content__box img{
  width: 95%;border-radius: 20px;
}

.index__works__btn{
  margin-top: 50px;
}

.index__works__btn a{
  text-decoration: none;
}

.button-03 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 400px;
    height: 50px;
    margin:0 auto;
    padding: .9em 2em;
    overflow: hidden;
    border: 1px solid #62b351;
    border-radius: 30px;
    background-color: #62b351;
    color: #fff;
    font-size: 1em;
    transition: 0.7s;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .button-03:hover {
    background-color: transparent;
    color: #62b351;
    transition: 0.7s;
  }

  .index__flow{
    background-color: #fff;
    padding: 100px 0 250px 0;
  }

  .index__flow__title{
  text-align: center;
  margin-bottom: 40px;
}

.index__flow__title h3{
  font-size: 2.5rem;
  letter-spacing: 3px;
}

.index__flow__title h4{
  margin-top: 30px;
  font-size: 1.5rem;
  letter-spacing: 2px;
  font-weight: 500;
}

.index__flow__content{
  width: 95%;
  margin: auto;
  max-width: 800px;
}

.index__flow__content img{
  width: 100%;
}


/* about */


.second__top{
  width: 100%;
  margin:40px auto;
  position: relative;
}

.second__top__img{
  width: 90%;
  text-align: center;
  margin: auto;
  display: none;
  
}

.second__top__img img{
  width: 100%;
  border-radius: 40px;
}

.second__top__title{
  color: #111;
  text-align: center;
}

.second__top__title h1{
  font-size: 3.5rem;
  letter-spacing: 4px;

}

.second__top__title h2{
  font-size: 2.0rem;
  letter-spacing: 3px;
}


.about__main{
  width: 95%;
  margin: auto;
}

.about__main__title{
  text-align: center;
  margin: 0px auto 80px auto;
  font-size: 3.0rem;
  letter-spacing: 3px;
}

.about__company{
  width: 100%;
  margin: auto;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about__company::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    transform: skewY(6deg) translateY(110px);
    z-index: -1;
}

.about__company__title{
  text-align: center;
  margin-top: 100px;
  margin-bottom: 30px;
}

.about__company__title h3{
  font-size: 3.0rem;
  letter-spacing: 3px;
}

.about__company__title h4{
  font-size: 1.6rem;
  letter-spacing: 4px;
  font-weight: 500;
}

.about__company__content{
  width: 90%;
  margin: auto;
}


.about__content{
  width: 100%;
  margin: auto;
}

.about__table{
  margin: auto;
  width: 95%;
}

.about__table tr {
  width: 100%;
}

.about__table th{
  text-align: left;
  padding: 20px 0 10px 20px;
  border: none;
  font-size: 1.6rem;
  border-bottom:3px solid #62b351;
  color: #62b351;
}

.about__table td {
  padding: 20px 0 10px 20px;
  border: none;
  font-size: 1.5rem;
  border-bottom:2px solid #111;
  width: 70%;
}

.about__table th {
  width: 30%;
}

.about__greeting__title{
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}

.about__greeting__title h3{
  font-size: 3.0rem;
  letter-spacing: 3px;
}

.about__greeting__content{
  width: 95%;
  margin: auto;
  align-items: center;
}

.about__greeting__content__l{
  width: 100%;
}

.about__greeting__content__l h4{
  font-size: 1.6rem;
  letter-spacing: 1px;
  line-height: 180%;
  margin-bottom: 20px;
}

.about__greeting__content__l h5{
  font-size: 1.6rem;
  letter-spacing: 2px;
  text-align: right;
}

.about__greeting__content__l h6{
  font-size: 2.5rem;
  letter-spacing: 2px;
  text-align: right;
}

.about__greeting__content__r{
  width: 100%;
  text-align: center;
}

.about__greeting__content__r img{
  width: 60%;
}

.about__staff{
  padding-bottom: 30vh;
}

.about__staff__content{
  width: 90%;
  margin: auto;
  max-width: 1200px;
}

.about__staff__content__l{
  width: 100%;
  text-align: center;
}

.about__staff__content__l img{
  width: 80%;
  margin-bottom: 20px;
}

.about__staff__content__2{
  width: 80%;
  text-align: center;
  margin: auto;
  font-size: 1.6rem;
  letter-spacing: 2px;
  line-height: 180%;
  margin-top: 50px;
}


.qa__title{
  margin: 50px auto;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 1px;
  width: 95%;
}

.qa__title h3{
  margin-bottom: 50px;
}

.qa__title a{
  text-decoration: none;
}

.qa__content{
  width: 95%;
  max-width: 1000px;
  margin: auto;
  padding: 0px;
  margin-bottom: 30vh;
}

.qa__content__gp{
  width: 100%;
  margin-bottom: 40px;
}

.qa__content__gp__box__1{
  background-color: #fff;
  display: flex;
  align-items: center;
  border-radius: 20px;
  margin-bottom: 15px;
}

.qa__content__gp__box__l{
  font-size: 4.0rem;
  letter-spacing: 2px;
  padding: 20px;
}

.qa__content__gp__box__r{
  font-size: 2.0rem;
  letter-spacing: 2px;
  padding: 20px;
}

.qa__content__gp__box__2{
  background-color: #c8fac8;
  display: flex;
  align-items: center;
  border-radius: 20px;
}

}


@media (min-width: 850px) and (max-width: 1399px) {

.none__tb{
  display: none;
}

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 800;
    /*ナビのスタート位置と形状*/
	top:-120%;
    left:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#9be38c;
    opacity: 0.7;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav-list{
    display: flex;
}

.g-nav-l{
    width: 50%;
    margin: auto;
    text-align: center;
}

.g-nav-l img{
    width: 300px;
}

.g-nav-r{
    width: 70%;
    display: flex;
    margin: auto;
}

.g-nav-r a{
    color: #111;
    text-decoration: none;
    font-weight: 500;
}

.header__content__r{
    width: 50%;
}

.header__content__r__top{
    display: flex;
}

.header__content__r__gp{
    margin-right: 100px;
}

.header__content__r__gp ul {
    list-style: none;
}

.header__content__r__gp li{
    margin-bottom: 13px;
}

.header__content__r__gp a{
    font-size: 17px;
    letter-spacing: 2px;
    transition: 0.3s;
    font-weight: 500;
}

.header__content__r__gp a:hover{
    color: #666;
    transition: 0.3s;
}

  .openbtn{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	position: relative;
	background: #62b351;
	cursor: pointer;
  width: 50px;
  height:50px;
	border-radius: 50px;
  z-index: 999;
}

.header__gnav{
  margin: 0 0 0 20px;
}


/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 5px;
    background: #fff;
  	width: 45%;
  }


.openbtn span:nth-of-type(1) {
	top:13px;	
}

.openbtn span:nth-of-type(2) {
	top:19px;
}

.openbtn span:nth-of-type(3) {
	top:25px;
}

.openbtn span:nth-of-type(3)::after {
	content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
	position: absolute;
	top:5px;
	left:-2px;
	color: #fff;
	font-size: 1rem;
	text-transform: uppercase;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

.openbtn.active span:nth-of-type(1) {
    top: 14px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 26px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(3)::after {
	content:"Close";/*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
	top:5px;
	left:4px;
}

    /* header */


  .pc__header__main{
    width: 90%;
    margin: auto;
    margin-top: 30px;
    display: flex;
    align-items: center;
    z-index: 999;
    position: relative;
  }

  .header__logo img{
    width: 250px;
    z-index: 999;
  }

  .pc__nav{
    display: none;
  }

  .header__btn{
    display: none;
  }

  .header__btn a{
    text-decoration: none;
  }

  .header__btn__mb{
    margin: 0 0 0 auto;
  }

  .header__btn__mb a{
    text-decoration: none;
  }

  .button-01 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 230px;
    height: 50px;
    margin:0 auto;
    padding: .9em 2em;
    overflow: hidden;
    border: 1px solid #e95504;
    border-radius: 30px;
    background-color: #e95504;
    color: #fff;
    font-size: 1em;
    transition: 0.7s;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .button-01:hover {
    background-color: transparent;
    color: #e95504;
    transition: 0.7s;
  }

  .button-02-mb {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 230px;
    height: 50px;
    margin:0 auto;
    padding: .9em 2em;
    overflow: hidden;
    border: 1px solid #ff7f7f;;
    border-radius: 30px;
    background-color: #ff7f7f;;
    color: #fff;
    font-size: 1em;
    transition: 0.7s;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin: 0 0 0 auto;

  }

  .button-02-mb:hover {
    background-color: transparent;
    color: #ff7f7f;;
    transition: 0.7s;
  }

  /* footer */

.footer__contact{
  display: flex;
  width: 100%;
  background-color: #62b351;
  padding: 60px 0;
  clip-path: ellipse(90% 100% at 50% 100%);
  margin-top: -10%;
}

.footer__contact hr{
  border-color: #fff;
  background-color: #fff;
  border-radius: 2px;
}

.footer__contact__l{
  width: 50%;
  margin: auto;
  padding-top: 50px;
}

.footer__contact__r{
  width: 50%;
  margin: auto;
  padding-top: 50px;
}

.footer__contact__box{
  width: 70%;
  margin: auto;
  padding: 50px 0px;
}

.footer__contact__box__title{
  width: 270px;
  margin: auto;
  font-size: 2.0rem;
  letter-spacing: 3px;
  color: #fff;
  font-weight: 500;

}

.footer__contact__box__content{
  padding: 10px 0;
}

.footer__contact__box__content a{
  text-decoration: none;
}

.button-02 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 280px;
    height: 50px;
    margin:0 auto 20px auto;
    padding: .9em 2em;
    overflow: hidden;
    border: 1px solid #fff;
    border-radius: 30px;
    background-color: #fff;
    color: #111;
    font-size: 1rem;
    transition: 0.7s;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .button-02:hover {
    background-color: #9be38c;
    color: #fff;
    transition: 0.7s;
  }

  .footer__main{
    width: 100%;
    display: flex;
    margin: auto;
    padding: 80px 0;
    background-color: #fff;
  }

  .footer__main__l{
    width: 40%;
    margin:0 auto;
  }

  .footer__main__l__logo img{
    width: 400px;  
  }

  .footer__main__l__content{
    margin: 20px auto;
  }

  .footer__main__l__content h6{
    font-size: 2.4rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }

  .footer__main__l__content p{
    margin: 0;
    font-size: 1.4rem;
    letter-spacing: 1px;
  }

  .footer__main__r{
    width: 50%;
    margin: auto;
  }

  .footer__main__r__content{
    width: 90%;
    margin: auto;
  }

  .footer__main__r__content iframe{
    border-radius: 30px
  }

  .footer__copy{
    text-align: center;
    letter-spacing: 1px;
    font-size: 1.6rem;
    background-color: #62b351;
    color: #fff;
    padding: 5px 0;
  }



    /* index */

  .index__top{
  width: 100%;
  margin:40px auto;
  position: relative;
}

.index__top__img {
  width: 90%;
  text-align: center;
  margin: auto;
}

.index__top__img img{
  width: 100%;
}

.index__wave{
  position: relative;
  height:0vh;/*何も表示されない場合は各波の親要素に高さを持たせましょう。*/
}
canvas{
  position: absolute;
  bottom: 0;
  left:0;
  top: -43vh;
  width: 100%;
}

.index__top__content__1{
  position: absolute;
  top: 30%;
  left: 7%;
  z-index: 900;
}

.index__top__content__1 h1{
  font-size: 5.0rem;
  letter-spacing: 7px;
  color: #62b351;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}

.index__top__content__2{
  position: absolute;
  z-index: 900;
  top: 40vh;
  left: 50%;
  transform: translate(-50%, 0%);
}

.index__top__content__2 h2{
  font-size: 1.6rem;
  color: #fff;
  font-weight: 300;
  letter-spacing: 5px;
}

.index__service{
  width: 100%;
  margin:150px auto 0 auto;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.index__service::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    transform: skewY(6deg) translateY(110px);
    z-index: -1;
}

.index__service__title{
  text-align: center;
  margin-bottom: 80px;
}

.index__service__title h3{
  font-size: 3.0rem;
  letter-spacing: 3px;
}

.index__service__title h4{
  font-size: 1.6rem;
  letter-spacing: 4px;
  font-weight: 500;
}

.index__service__content{
  width: 90%;
  margin: auto;
  display: flex;
  margin-bottom: 100px;
}

.index__service__content__l{
  width: 50%;
  margin: auto;
  text-align: center;
}

.index__service__content__l img{
  width: 80%;
  margin: auto;
}

.index__service__content__r{
  width: 50%;
  margin: auto;
  text-align: center;
}

.index__service__content__r h4{
  font-size: 2.5rem;
  letter-spacing: 3px;
}

.index__service__content__r p{
  font-size: 1.6rem;
  letter-spacing: 1px;
  line-height: 180%;
  font-weight: 500;
}

.index__about{
  width: 100%;
  margin:-300px auto 0 auto;
  padding: 250px 0 0 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.index__about::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #62b351;
    transform: skewY(-7deg) translateY(140px);
    z-index: -1;
  }

.index__about__title{
  text-align: center;
  margin-bottom: 84px;
}

.index__about__title h3{
  font-size: 3.00rem;
  letter-spacing: 3px;
}

.index__about__title h4{
  font-size: 1.6rem;
  letter-spacing: 4px;
  font-weight: 500;
}

.index__about__content{
  width: 85%;
  margin: auto;
  text-align: center;
}

.index__about__content__l{
  width: 90%;
  margin: auto;
}

.index__about__content__l h5{
  font-size: 4.0rem;
  letter-spacing: 5px;
  margin-bottom: 30px;
}

.index__about__content__l h6{
  font-size: 1.6rem;
  letter-spacing: 1px;
  line-height: 200%;
}

.index__about__content__r{
  width: 90%;
  margin:30px auto;
  text-align: center;
}

.index__about__content__r img{
  width: 80%;
  max-width: 400px;
}

.index__about__content__2{
  color: #111;
  width: 85%;
  margin:50px auto 0 auto;
  text-align: center;
  padding: 60px 0 50px 0;
  background-color: #fff;
  border-radius: 30px;
}

.index__about__content__2 h6{
  font-size: 1.6rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.index__about__sc{
  width: 100%;
  height: 200px;
  background-color: #62b351;
  clip-path: ellipse(60% 100% at 50% 0%);
}

.index__about__big{
  font-size: 2.0rem;
  line-height: 300%;
}

.index__works{
  padding: 100px 0;
}

.index__works__title{
  text-align: center;
  margin-bottom: 80px;
}

.index__works__title h3{
  font-size: 3.0rem;
  letter-spacing: 3px;
}

.index__works__title h4{
  font-size: 1.6rem;
  letter-spacing: 4px;
  font-weight: 500;
}

.index__works__content{
  width: 80%;
  max-width: 800px;
  margin: auto;
}

.index__works__content__gp{
  display: flex;
  margin: auto;
  margin-bottom: 20px;
}

.index__works__content__box{
  width: 50%;
  margin: auto;
  text-align: center;
}

.index__works__content__box img{
  width: 95%;border-radius: 20px;
}

.index__works__btn{
  margin-top: 50px;
}

.index__works__btn a{
  text-decoration: none;
}

.button-03 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 400px;
    height: 50px;
    margin:0 auto;
    padding: .9em 2em;
    overflow: hidden;
    border: 1px solid #62b351;
    border-radius: 30px;
    background-color: #62b351;
    color: #fff;
    font-size: 1em;
    transition: 0.7s;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .button-03:hover {
    background-color: transparent;
    color: #62b351;
    transition: 0.7s;
  }

  .index__flow{
    background-color: #fff;
    padding: 100px 0 250px 0;
  }

  .index__flow__title{
  text-align: center;
  margin-bottom: 80px;
}

.index__flow__title h3{
  font-size: 3.0rem;
  letter-spacing: 3px;
}

.index__flow__title h4{
  margin-top: 30px;
  font-size: 1.6rem;
  letter-spacing: 2px;
  font-weight: 500;
}

.index__flow__content{
  width: 70%;
  margin: auto;
  max-width: 800px;
}

.index__flow__content img{
  width: 100%;
}


/* about */


.second__top{
  width: 100%;
  margin:40px auto;
  position: relative;
}

.second__top__img{
  width: 90%;
  text-align: center;
  margin: auto;
  
}

.second__top__img img{
  width: 100%;
  border-radius: 40px;
}

.second__top__title{
  color: #fff;
}

.second__top__title h1{
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 3.0rem;
  letter-spacing: 4px;
  transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.second__top__title h2{
  position: absolute;
  top: 67%;
  left: 50%;
  font-size: 1.6rem;
  letter-spacing: 3px;
  transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.about__staff{
  padding: 100px 0;
}

.about__main{
  width: 90%;
  margin: auto;
}

.about__main__title{
  text-align: center;
  margin: 100px auto 80px auto;
  font-size: 3.0rem;
  letter-spacing: 3px;
}

.about__company{
  width: 100%;
  margin: auto;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about__company::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    transform: skewY(6deg) translateY(110px);
    z-index: -1;
}

.about__company__title{
  text-align: center;
  margin-top: 100px;
  margin-bottom: 80px;
}

.about__company__title h3{
  font-size: 3.5rem;
  letter-spacing: 3px;
}

.about__company__title h4{
  font-size: 2.0rem;
  letter-spacing: 4px;
  font-weight: 500;
}

.about__company__content{
  width: 70%;
  margin: auto;
}


.about__content{
  width: 100%;
  margin: auto;
}

.about__table{
  margin: auto;
  width: 80%;
}

.about__table tr {
  width: 100%;
}

.about__table th{
  text-align: left;
  padding: 50px 0 50px 20px;
  border: none;
  font-size: 1.6rem;
  border-bottom:3px solid #62b351;
  color: #62b351;
}

.about__table td {
  padding: 50px 0 50px 20px;
  border: none;
  font-size: 1.5rem;
  border-bottom:2px solid #111;
  width: 70%;
}

.about__table th {
  width: 30%;
}

.about__greeting__title{
  text-align: center;
  margin-top: 100px;
  margin-bottom: 80px;
}

.about__greeting__title h3{
  font-size: 3.5rem;
  letter-spacing: 3px;
}

.about__greeting__content{
  width: 80%;
  margin: auto;
  display: flex;
  align-items: center;
}

.about__greeting__content__l{
  width: 60%;
}

.about__greeting__content__l h4{
  font-size: 1.6rem;
  letter-spacing: 1px;
  line-height: 180%;
  margin-bottom: 20px;
}

.about__greeting__content__l h5{
  font-size: 1.6rem;
  letter-spacing: 2px;
  text-align: right;
}

.about__greeting__content__l h6{
  font-size: 2.5rem;
  letter-spacing: 2px;
  text-align: right;
}

.about__greeting__content__r{
  width: 40%;
  text-align: center;
}

.about__greeting__content__r img{
  width: 90%;
}

.about__staff{
  padding-bottom: 30vh;
}

.about__staff__content{
  display: flex;
  width: 80%;
  margin: auto;
  max-width: 1200px;
}

.about__staff__content__l{
  width: 50%;
  text-align: center;
}

.about__staff__content__l img{
  width: 80%;
}

.about__staff__content__2{
  width: 80%;
  text-align: center;
  margin: auto;
  font-size: 1.6rem;
  letter-spacing: 2px;
  line-height: 180%;
  margin-top: 50px;
}

/* QA */

.qa__title{
  margin: 100px auto;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 1px;
}

.qa__title h3{
  margin-bottom: 50px;
}

.qa__title a{
  text-decoration: none;
}

.qa__content{
  width: 90%;
  max-width: 1000px;
  margin: auto;
  padding: 0px;
  margin-bottom: 30vh;
}

.qa__content__gp{
  width: 100%;
  margin-bottom: 40px;
}

.qa__content__gp__box__1{
  background-color: #fff;
  display: flex;
  align-items: center;
  border-radius: 20px;
  margin-bottom: 15px;
}

.qa__content__gp__box__l{
  font-size: 5.0rem;
  letter-spacing: 2px;
  padding: 20px;
}

.qa__content__gp__box__r{
  font-size: 2.5rem;
  letter-spacing: 2px;
  padding: 20px;
}

.qa__content__gp__box__2{
  background-color: #c8fac8;
  display: flex;
  align-items: center;
  border-radius: 20px;
}


}


@media screen and (min-width: 1400px) {
  
  .none__pc{
  display: none;
}


  /* header */

  header{
    margin-top: 40px;
  }

  .pc__header__main{
    width: 90%;
    margin: auto;
    margin-top: 20px;
    display: flex;
    align-items: center;
    z-index: 999;
    position: relative;
  }

  .header__logo img{
    width: 250px;
    z-index: 999;
    margin: auto;
  }

  .pc__nav{
    text-decoration: none;
    margin: auto 0 auto auto;
  }

  .pc__nav a{
    margin-left: 20px;
    margin-right: 20px;
    text-decoration: none;
    color: #111;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 2px;
  }

  .pc__nav a::after {
    content: '';
    display: block;
    height: 2px;
    width: 40%;
    background: #62b351;
    position: absolute;
    bottom: 0;
    left: 30%;
    transform: scale(0, 1);
    transition: .3s;
  }
      
  .pc__nav a:hover::after {
    transform: scale(1, 1);
  }

  .pc__nav a:hover{
    color: #62b351;
  }

  .pc__nav ul{
    list-style: none;
    display: flex;
    margin-right: 50px;
  }

  .pc__nav li{
    display: inline;
    position: relative;
    align-items: center;
  }

  .header__gnav{
    display: none;
  }

  .header__btn__mb{
    display: none;
  }

  .header__btn{
    display: flex;
  }

  .header__btn a{
    text-decoration: none;
  }

  .button-01 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 230px;
    height: 50px;
    margin:0 auto;
    padding: .9em 2em;
    overflow: hidden;
    border: 1px solid #ff7f7f;
    border-radius: 30px;
    background-color: #ff7f7f;
    color: #fff;
    font-size: 1em;
    transition: 0.7s;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .button-01:hover {
    background-color: transparent;
    color: #ff7f7f;
    transition: 0.7s;
  }

/* footer */

footer{
  margin-top: -150px;
}


.footer__contact{
  display: flex;
  width: 100%;
  background-color: #62b351;
  padding: 100px 0;
  clip-path: ellipse(80% 100% at 50% 100%);
}

.footer__contact hr{
  border-color: #fff;
  background-color: #fff;
  border-radius: 2px;
}

.footer__contact__l{
  width: 50%;
  margin: auto;
  padding-top: 50px;
}

.footer__contact__r{
  width: 50%;
  margin: auto;
  padding-top: 50px;
}

.footer__contact__box{
  width: 70%;
  margin: auto;
  padding: 50px 0px;
}

.footer__contact__box__title{
  width: 390px;
  margin: auto;
  font-size: 2.4rem;
  letter-spacing: 3px;
  color: #fff;
  font-weight: 500;

}

.footer__contact__box__content{
  padding: 10px 0;
}

.footer__contact__box__content a{
  text-decoration: none;
}

.button-02 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 400px;
    height: 50px;
    margin:0 auto 20px auto;
    padding: .9em 2em;
    overflow: hidden;
    border: 1px solid #fff;
    border-radius: 30px;
    background-color: #fff;
    color: #111;
    font-size: 1rem;
    transition: 0.7s;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .button-02:hover {
    background-color: #9be38c;
    color: #fff;
    transition: 0.7s;
  }

  .footer__main{
    width: 100%;
    display: flex;
    margin: auto;
    padding: 80px 0;
    align-items: center;
    background-color: #fff;
  }

  .footer__main__l{
    width: 40%;
    margin: auto;
  }

  .footer__main__l__logo img{
    width: 400px;  
  }

  .footer__main__l__content{
    margin: 20px auto;
  }

  .footer__main__l__content h6{
    font-size: 2.4rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }

  .footer__main__l__content p{
    margin: 0;
    font-size: 1.4rem;
    letter-spacing: 1px;
  }

  .footer__main__r{
    width: 40%;
    margin: auto;
  }

  .footer__main__r__content{
    width: 90%;
    margin: auto;
  }

  .footer__main__r__content iframe{
    border-radius: 30px
  }

  .footer__copy{
    text-align: center;
    letter-spacing: 1px;
    font-size: 1.6rem;
    background-color: #62b351;
    color: #fff;
    padding: 5px 0;
  }


  /* index */

  .index__top{
  width: 100%;
  margin:40px auto;
  position: relative;
}

.index__top__img {
  width: 90%;
  text-align: center;
  margin: auto;
}

.index__top__img img{
  width: 100%;
}

.index__wave{
  position: relative;
  height:0vh;/*何も表示されない場合は各波の親要素に高さを持たせましょう。*/
}
canvas{
  position: absolute;
  bottom: 0;
  left:0;
  top: -60vh;
  width: 100%;
}

.index__top__content__1{
  position: absolute;
  top: 35%;
  left: 7%;
  z-index: 999;
}

.index__top__content__1 h1{
  font-size: 7.0rem;
  letter-spacing: 7px;
  color: #62b351;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}

.index__top__content__2{
  position: absolute;
  z-index: 999;
  top: 70vh;
  left: 50%;
  transform: translate(-50%, 0%);
}

.index__top__content__2 h2{
  font-size: 1.6rem;
  color: #fff;
  font-weight: 300;
  letter-spacing: 8px;
}

.index__service{
  width: 100%;
  margin:100px auto 0 auto;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.index__service::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    transform: skewY(6deg) translateY(110px);
    z-index: -1;
}

.index__service__title{
  text-align: center;
  margin-bottom: 80px;
}

.index__service__title h3{
  font-size: 3.5rem;
  letter-spacing: 3px;
}

.index__service__title h4{
  font-size: 2.0rem;
  letter-spacing: 4px;
  font-weight: 500;
}

.index__service__content{
  width: 90%;
  margin: auto;
  display: flex;
  margin-bottom: 100px;
}

.index__service__content__l{
  width: 50%;
  margin: auto;
  text-align: center;
}

.index__service__content__l img{
  width: 50%;
  margin: auto;
}

.index__service__content__r{
  width: 50%;
  margin: auto;
  text-align: center;
}

.index__service__content__r h4{
  font-size: 3.0rem;
  letter-spacing: 3px;
}

.index__service__content__r p{
  font-size: 1.6rem;
  letter-spacing: 1px;
  line-height: 180%;
  font-weight: 500;
}

.index__about{
  width: 100%;
  margin:-300px auto 0 auto;
  padding: 250px 0 0 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.index__about::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #62b351;
    transform: skewY(-7deg) translateY(140px);
    z-index: -1;
  }

.index__about__title{
  text-align: center;
  margin-bottom: 80px;
}

.index__about__title h3{
  font-size: 3.5rem;
  letter-spacing: 3px;
}

.index__about__title h4{
  font-size: 2.0rem;
  letter-spacing: 4px;
  font-weight: 500;
}

.index__about__content{
  width: 85%;
  margin: auto;
  align-items: center;
  display: flex;
}

.index__about__content__l{
  width: 60%;
  margin: auto;
}

.index__about__content__l h5{
  font-size: 5.0rem;
  letter-spacing: 5px;
  margin-bottom: 30px;
}

.index__about__content__l h6{
  font-size: 2.0rem;
  letter-spacing: 1px;
  line-height: 250%;
}

.index__about__content__r{
  width: 40%;
  margin: auto;
  text-align: center;
}

.index__about__content__r img{
  width: 80%;
}

.index__about__content__2{
  color: #111;
  width: 85%;
  margin:50px auto 0 auto;
  text-align: center;
  padding: 60px 0 50px 0;
  background-color: #fff;
  border-radius: 30px;
}

.index__about__content__2 h6{
  font-size: 2rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.index__about__sc{
  width: 100%;
  height: 200px;
  background-color: #62b351;
  clip-path: ellipse(60% 100% at 50% 0%);
}

.index__about__big{
  font-size: 2.5rem;
  line-height: 300%;
}

.index__works{
  padding: 100px 0;
}

.index__works__title{
  text-align: center;
  margin-bottom: 80px;
}

.index__works__title h3{
  font-size: 3.5rem;
  letter-spacing: 3px;
}

.index__works__title h4{
  font-size: 2.0rem;
  letter-spacing: 4px;
  font-weight: 500;
}

.index__works__content{
  width: 60%;
  margin: auto;
}

.index__works__content__gp{
  display: flex;
  margin: auto;
  margin-bottom: 20px;
}

.index__works__content__box{
  width: 50%;
  margin: auto;
  text-align: center;
}

.index__works__content__box img{
  width: 95%;border-radius: 20px;
}

.index__works__btn{
  margin-top: 50px;
}

.index__works__btn a{
  text-decoration: none;
}

.button-03 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 400px;
    height: 50px;
    margin:0 auto;
    padding: .9em 2em;
    overflow: hidden;
    border: 1px solid #62b351;
    border-radius: 30px;
    background-color: #62b351;
    color: #fff;
    font-size: 1em;
    transition: 0.7s;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .button-03:hover {
    background-color: transparent;
    color: #62b351;
    transition: 0.7s;
  }

  .index__flow{
    background-color: #fff;
    padding: 100px 0 250px 0;
  }

  .index__flow__title{
  text-align: center;
  margin-bottom: 80px;
}

.index__flow__title h3{
  font-size: 3.5rem;
  letter-spacing: 3px;
}

.index__flow__title h4{
  margin-top: 30px;
  font-size: 2.0rem;
  letter-spacing: 4px;
  font-weight: 500;
}

.index__flow__content{
  width: 80%;
  margin: auto;
}

.index__flow__content img{
  width: 100%;
}


/* about */


.second__top{
  width: 100%;
  margin:40px auto;
  position: relative;
}

.second__top__img{
  width: 90%;
  text-align: center;
  margin: auto;
  
}

.second__top__img img{
  width: 100%;
  border-radius: 40px;
}

.second__top__title{
  color: #fff;
}

.second__top__title h1{
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 3.5rem;
  letter-spacing: 4px;
  transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.second__top__title h2{
  position: absolute;
  top: 60%;
  left: 50%;
  font-size: 2.0rem;
  letter-spacing: 3px;
  transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.about__staff{
  padding: 100px 0;
}

.about__main{
  width: 90%;
  margin: auto;
}

.about__main__title{
  text-align: center;
  margin: 100px auto 80px auto;
  font-size: 3.0rem;
  letter-spacing: 3px;
}

.about__company{
  width: 100%;
  margin: auto;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about__company::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    transform: skewY(6deg) translateY(110px);
    z-index: -1;
}

.about__company__title{
  text-align: center;
  margin-top: 100px;
  margin-bottom: 80px;
}

.about__company__title h3{
  font-size: 3.5rem;
  letter-spacing: 3px;
}

.about__company__title h4{
  font-size: 2.0rem;
  letter-spacing: 4px;
  font-weight: 500;
}

.about__company__content{
  width: 70%;
  margin: auto;
}


.about__content{
  width: 100%;
  margin: auto;
}

.about__table{
  margin: auto;
  width: 80%;
}

.about__table tr {
  width: 100%;
}

.about__table th{
  text-align: left;
  padding: 50px 0 50px 20px;
  border: none;
  font-size: 1.6rem;
  border-bottom:3px solid #62b351;
  color: #62b351;
}

.about__table td {
  padding: 50px 0 50px 20px;
  border: none;
  font-size: 1.5rem;
  border-bottom:2px solid #111;
  width: 70%;
}

.about__table th {
  width: 30%;
}

.about__greeting__title{
  text-align: center;
  margin-top: 100px;
  margin-bottom: 80px;
}

.about__greeting__title h3{
  font-size: 3.5rem;
  letter-spacing: 3px;
}

.about__greeting__content{
  width: 80%;
  margin: auto;
  display: flex;
  align-items: center;
}

.about__greeting__content__l{
  width: 60%;
}

.about__greeting__content__l h4{
  font-size: 1.6rem;
  letter-spacing: 1px;
  line-height: 180%;
  margin-bottom: 20px;
}

.about__greeting__content__l h5{
  font-size: 1.6rem;
  letter-spacing: 2px;
  text-align: right;
}

.about__greeting__content__l h6{
  font-size: 2.5rem;
  letter-spacing: 2px;
  text-align: right;
}

.about__greeting__content__r{
  width: 40%;
  text-align: center;
}

.about__greeting__content__r img{
  width: 60%;
}

.about__staff{
  padding-bottom: 30vh;
}

.about__staff__content{
  display: flex;
  width: 80%;
  margin: auto;
  max-width: 1200px;
}

.about__staff__content__l{
  width: 50%;
  text-align: center;
}

.about__staff__content__l img{
  width: 80%;
}

.about__staff__content__2{
  width: 80%;
  text-align: center;
  margin: auto;
  font-size: 2.0rem;
  letter-spacing: 2px;
  line-height: 180%;
  margin-top: 50px;
}


/* QA */

.qa__title{
  margin: 100px auto;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 1px;
}

.qa__title h3{
  margin-bottom: 50px;
}

.qa__title a{
  text-decoration: none;
}

.qa__content{
  width: 70%;
  margin: auto;
  padding: 0px;
  margin-bottom: 30vh;
}

.qa__content__gp{
  width: 100%;
  margin-bottom: 40px;
}

.qa__content__gp__box__1{
  background-color: #fff;
  display: flex;
  align-items: center;
  border-radius: 20px;
  margin-bottom: 15px;
}

.qa__content__gp__box__l{
  font-size: 5.0rem;
  letter-spacing: 2px;
  padding: 20px;
}

.qa__content__gp__box__r{
  font-size: 2.5rem;
  letter-spacing: 2px;
  padding: 20px;
}

.qa__content__gp__box__2{
  background-color: #c8fac8;
  display: flex;
  align-items: center;
  border-radius: 20px;
}

}