@charset "utf-8";

/* reset CSS */
*,*::before,*::after{box-sizing:border-box}*{margin:0}html,body{height:100%}body{line-height:1.5;-webkit-font-smoothing:antialiased}img,picture,video,canvas,svg{display:block;max-width:100%}input,button,textarea,select{font:inherit}p,h1,h2,h3,h4,h5,h6{overflow-wrap:break-word}#root,#__next{isolation:isolate}
dl,ol,ul{margin-bottom:0;}

/**
  複数ページに共通する要素
**/

body{
  font-family: 'Noto Sans JP', sans-serif;
  color: #0B240A;
}
a{
  color: #0B240A;
}
.bg-gray{
  background-color: #F2F5F2;
}

/* ヘッダー（各ページ共通） */
header{
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 98px;
  background: #FFF;
}
header .header_title img{
  width: auto;
  height: 82px;
}
header .header_nav ul li{
  position: relative;
  display: inline-block;
  margin-right: 24px;
  font-size: 15px;
  font-weight: 1;
}
header .header_nav ul li::before{
  position: absolute;
  bottom: -24px;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  width: 12px;
  height: 6px;
  background-image: url("../img/nav_triangle.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}
header .header_nav ul li a{
  color: #000;
  text-decoration: none;
}
header .header_nav ul li a strong{
  font-size: 16px;
  color: #8AA4A4;
}
header .header_info{
  margin-right: 176px;
  font-size: 10px;
  line-height: 16px;
}
header .header_info strong{
  font-size: 18px;
  line-height: 27px;
}
header .header_contact-wrap{
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  color: #FFF;
  background-color: #227B49;
}
header .header_contact img{
  width: auto;
  height: 40px;
  margin-bottom: 12px;
}
header .header_contact span{
  font-size: 16px;
}
.spmenu{
  display: none;
}

@media screen and (max-width: 991px){
  header{
    height: 64px;
  }
  header .header_title img{
    height: 52px;
  }
  header .header_spmail{
    width: 64px;
    height: 64px;
    background-color: #227B49;
  }
  header .header_spmail img{
    width: 32px;
    height: 32px;
  }
  header .header_sptel{
    width: 64px;
    height: 64px;
    background-color: #227B49;
  }
  header .header_sptel img{
    width: 28px;
    height: 28px;
  }
  header .header_spmenu-wrap{
    width: 64px;
    height: 64px;
    background-color: #227B49;
  }
  header .header_spmenu-wrap:hover{
    cursor: pointer;
  }
  header .header_spmenu{
    position: relative;
  }
  header .header_spmenu span:nth-of-type(1), header .header_spmenu span:nth-of-type(2), header .header_spmenu span:nth-of-type(3){
    position: absolute;
    display: inline-block;
    transition: all .4s;
    left: 20px;
    width: 24px;
    height: 2px;
    background: #FFF;
  }
  header .header_spmenu span:nth-of-type(1){
    top: 22px;
  }
  header .header_spmenu span:nth-of-type(2){
    top: 30px;
  }
  header .header_spmenu span:nth-of-type(3){
    top: 38px;
  }

  .header_spmenu.active span:nth-of-type(1){
    top: 24px;
    left: 16px;
    width: 50%;
    transform: translateY(6px) rotate(-45deg);
  }
  .header_spmenu.active span:nth-of-type(2){
    display: none;
  }
  .header_spmenu.active span:nth-of-type(3){
    top: 24px;
    left: 16px;
    width: 50%;
    transform: translateY(6px) rotate(45deg);
  }

  .spmenu{
    display: block;
    position: fixed;
    z-index: 9!important;
    width: 100vw;
    height: calc(100vh - 54px);
    top: calc(54px - 100vh);
    left: 0;
    transition: all 0.8s 0s ease;
    background-color: #F6F6F6;
    padding: 20px 15px;
  }
  .spmenu.active{
    top: 54px;
  }
  .spmenu nav ul{
    padding-left: 0;
    list-style: none;
  }
  .spmenu nav ul li{
    padding: 5px 0;
  }
  .spmenu nav ul li a{
    display: block;
    padding: 10px 0;
    color: #393939;
    text-decoration: none;
  }

  .spMenu_sub{
    display: none;
  }
  .spMenu_sub.active{
    display: block;
  }
}

/* フッター（各ページ共通） */
footer .footer_logo{
  width: 200px;
  padding-top: 2rem;
  padding-right: 1.5rem;
  background-color: #FFF;
}
footer .footer_logo img{
  width: auto;
  height: 80px;
}
footer .footer_main{
  width: calc(100% - 200px);
  background-color: #154D2E;
}
footer .footer_nav{
  max-width: 720px;
}
footer .footer_nav ul li{
  display: inline-block;
  margin-right: 2rem;
  margin-bottom: 2rem;
  font-size: 16px;
  font-weight: bold;
}
footer .footer_nav ul li a{
  color: #FFF;
  text-decoration: none;
}

@media screen and (min-width: 992px) and (max-width: 1199px){
  footer .footer_nav ul li{
    font-size: 14px;
  }
  footer .footer_logo{
    width: 200px;
    height: 64px;
  }
}

@media screen and (max-width: 991px){
  footer .footer_logo{
    width: 100px;
    padding-top: 1.5rem;
    padding-right: 0;
    background-color: #FFF;
  }
  footer .footer_logo img{
    width: 80px;
    height: 54px;
  }
  footer .footer_main{
    width: calc(100% - 100px);
  }
  footer .footer_nav{
    max-width: none;
  }
  footer .footer_nav ul{
    display: flex;
    flex-flow: column wrap;
    height: 210px;
  }
  footer .footer_nav ul li{
    display: inline-block;
    max-width: 160px;
    margin-right: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 12px;
    font-weight: bold;
  }
}

/* mainタグ（全ページ共通） */
main{
  position: relative;
  margin-top: 92px;
}

@media screen and (max-width: 991px){
  main{
    margin-top: 60px;
  }
}

/* 下層ページ共通パーツ */
.content-title-wrap{
  position: relative;
  width: 100%;
  height: 320px;
  z-index: 2;
  background-color: #F2F5F2;
}
.content-title{
  margin-bottom: 0;
  padding-left: 4rem;
  font-size: 56px;
  line-height: 80px;
  color: #227B49;
  font-weight: bold;
}
.content-title span{
  display: block;
  margin-top: -8px;
  font-size: 24px;
  color: #0B240A;
  font-weight: bold;
}
.content-title::before{
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  content: "";
  width: calc(100% - 600px);
  height: 100%;
  background-image: url("../img/contentTitle_bg.png");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: top left;
}
.content-title-company::before{
  background-image: url("../img/contentTitle_company_bg.png");
}
.content-title-about::before{
  background-image: url("../img/contentTitle_about_bg.png");
}
.content-title-contact::before{
  background-image: url("../img/contentTitle_contact_bg.png");
}
.link-button{
  display: block;
  width: 240px;
  padding: 16px 0;
  font-size: 16px;
  line-height: 1;
  color: #FFF;
  background-color: #227B49;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
}
.link-button:hover{
  color: #FFF;
  cursor: pointer;
  opacity: 0.7;
}
.link-button-red{
  display: block;
  width: 260px;
  padding: 16px 0;
  font-size: 16px;
  line-height: 1;
  color: #FFF;
  background-color: #B8333C;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
}
.link-button-red:hover{
  color: #FFF;
  cursor: pointer;
  opacity: 0.7;
}
.content-list dt{
  display: flex;
  width: 150px;
  font-size: 16px;
  color: #FFF;
  font-weight: bold;
  background-color: #227B49;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.content-list dd{
  width: calc(100% - 150px);
  padding: 1.5rem;
  background-color: #FFF;
}
.content-list-text{
  width: calc(100% - 270px);
}
.content-list-img{
  width: 270px;
}
.content-list-img img{
  width: 100%;
  height: auto;
}

@media screen and (max-width: 991px){
  .content-title-wrap{
    height: 120px;
  }
  .content-title{
    padding-left: 1.5rem;
    font-size: 31px;
    line-height: 45px;
  }
  .content-title span{
    font-size: 14px;
  }
  .content-title::before{
    position: relative;
  }
  .content-list dt{
    width: 100%;
    padding: 8px 0;
    font-size: 14px;
  }
  .content-list dd{
    width: 100%;
    padding: 1rem;
  }
  .content-list-text{
    width: calc(100% - 140px);
    font-size: 10px;
    line-height: 16px;
  }
  .content-list-img{
    width: 140px;
  }
}

/**
  トップページ
**/

.topCatch{
  position: relative;
  width: 100%;
  height: 600px;
  background-image: url("../img/topCatch_bg.png");
  background-repeat: no-repeat;
  background-size: 140% auto;
  background-position: left bottom;
}
.topCatch_content{
  position: absolute;
  bottom: 60px;
  left: 10vw;
}
.topCatch_message{
  font-size: 40px;
  color: #FFF;
}
.topCatch_message_strong01{
  color: #EF5DA8;
  -webkit-text-stroke: 0.75px #FFF;
  text-stroke: 0.75px #FFF;
}
.topCatch_message_strong02{
  color: #227B49;
  -webkit-text-stroke: 0.75px #FFF;
  text-stroke: 0.75px #FFF;
}
.topCatch_text{
  font-size: 16px;
  line-height: 27px;
  color: #FFF;
}

@media screen and (max-width: 1199px){
  .topCatch_message{
    font-size: 32px;
  }
}

@media screen and (max-width: 991px){
  .topCatch{
    height: 750px;
    background-size: auto 100%;
    background-position: center bottom;
  }
  .topCatch_content{
    bottom: 16px;
    left: 16px;
    width: calc(100% - 32px);
  }
  .topCatch_message{
    font-size: 26px;
    line-height: 40px;
    color: #FFF;
  }
  .topCatch_text{
    font-size: 14px;
    line-height: 21px;
    font-weight: bold;
  }
}

.topCompany{
  position: relative;
  z-index: 2;
  width: 100%;
  height: 600px;
}
.topCompany::before{
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 450px;
  height: 100%;
  content: "";
  background-color: #F2F5F2;
}
.topCompany::after{
  position: absolute;
  z-index: -10;
  top: 0;
  right: 0;
  width: calc(100% - 350px);
  height: 100%;
  content: "";
  background-image: url("../img/topCompany_bg.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: right bottom;
}
.topCompany_content{
  position: absolute;
  z-index: 10;
  top: 150px;
  left: 10vw;
  width: 88vw;
}
.topCompany_title{
  position: relative;
  z-index: 10;
  font-size: 56px;
  color: #227B49;
}
.topCompany_title span{
  position: absolute;
  z-index: -1;
  left: -3vw;
  bottom: 0;
  font-size: 120px;
  color: #E4E9E3;
}
.topCompany_text{
  font-size: 16px;
  line-height: 27px;
}
.topCompany_img01{
  position: absolute;
  z-index: -3;
  top: 0;
  right: 0;
  width: 500px;
  height: 330px;
}
.topCompany_img02{
  position: absolute;
  z-index: -2;
  bottom: 0;
  right: 80px;
  width: 500px;
  height: 330px;
}


@media screen and (max-width: 1199px){
  .topCompany{
    height: 540px;
  }
  .topCompany_title{
    font-size: 40px;
  }
  .topCompany_title span{
    font-size: 96px;
  }
}

@media screen and (max-width: 991px){
  .topCompany{
    height: 640px;
  }
  .topCompany::before{
    position: relative;
  }
  .topCompany::after{
    position: relative;
  }
  .topCompany_content{
    position: absolute;
    z-index: 10;
    top: 60px;
    left: 0;
    width: 88vw;
  }
  .topCompany_title{
    position: relative;
    z-index: 10;
    font-size: 28px;
    color: #227B49;
  }
  .topCompany_title span{
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 24px;
    font-size: 30px;
    color: #E4E9E3;
  }
  .topCompany_text{
    font-size: 14px;
    line-height: 22px;
  }
  .topCompany_img01{
    position: absolute;
    z-index: -3;
    top: auto;
    bottom: 140px;
    left: 1.5rem;
    right: auto;
    width: 280px;
    height: 190px;
  }
  .topCompany_img02{
    position: absolute;
    z-index: -2;
    bottom: 0;
    right: 1.5rem;
    width: 280px;
    height: 190px;
  }
}

.topAbout{
  width: 100%;
  height: 500px;
  background-image: url("../img/topAbout_bg.png");
  background-repeat: no-repeat;
  background-size: auto 150%;
  background-position: center;
}
.topAbout_content{
  width: 960px;
  height: 250px;
  background-color: rgba(255, 255, 255, 0.8);
}
.topAbout_title{
  position: relative;
  z-index: 10;
  padding-top: 50px;
  font-size: 56px;
  color: #227B49;
}
.topAbout_title span{
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 24px;
  margin: auto;
  font-size: 120px;
  color: #E4E9E3;
}

@media screen and (max-width: 1199px){
  .topAbout_content{
    height: 210px;
  }
  .topAbout_title{
    font-size: 40px;
  }
  .topAbout_title span{
    font-size: 96px;
  }
}

@media screen and (max-width: 991px){
  .topAbout{
    height: 300px;
  }
  .topAbout_content{
    width: 80%;
    height: 180px;
    background-color: rgba(255, 255, 255, 0.8);
  }
  .topAbout_title{
    padding-top: 40px;
    font-size: 28px;
  }
  .topAbout_title span{
    bottom: 48px;
    font-size: 56px;
  }
}

/* トップページ下部 */
.topBottom{
  padding-bottom: 60px;
}

@media screen and (min-width: 992px){
  .topBottom{
    background-image: url("../img/topMain_bg01.png"), url("../img/topMain_bg02.png"), url("../img/topMain_bg03.png");
    background-repeat: no-repeat;
    background-size: 100% auto, 80% auto, 80% auto;
    background-position: left 0 bottom 75%, left top, right bottom;
  }
}

.topBusiness_content{
  padding-top: 100px;
}
.topBusiness_title{
  position: relative;
  z-index: 10;
  padding-top: 50px;
  font-size: 56px;
  color: #227B49;
}
.topBusiness_title span{
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 24px;
  margin: auto;
  font-size: 120px;
  color: #E4E9E3;
}
.topBusiness_text{
  font-size: 16px;
}
.topBusiness_img{
  width: 100%;
  max-width: 640px;
  height: auto;
}

@media screen and (max-width: 991px){
  .topBusiness_content{
    padding-top: 0;
  }
  .topBusiness_title{
    position: relative;
    z-index: 10;
    font-size: 28px;
    color: #227B49;
  }
  .topBusiness_title span{
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 24px;
    font-size: 30px;
    color: #E4E9E3;
  }
  .topBusiness_text{
    font-size: 14px;
  }
}

.topContact_content{
  padding-top: 100px;
}
.topContact_title{
  position: relative;
  z-index: 10;
  padding-top: 50px;
  font-size: 56px;
  color: #227B49;
}
.topContact_title span{
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 24px;
  margin: auto;
  font-size: 120px;
  color: #E4E9E3;
}
.topContact_tel{
  font-size: 24px;
  line-height: 40px;
  color: #227B49;
}
.topContact_tel strong{
  font-size: 32px;
}
.topContact_time{
  font-size: 16px;
}
.topContact_point{
  width: 192px;
  margin-right: 16px;
  padding: 16px 0;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  background-color: #FFF;
  box-sizing: border-box;
  border: 1px solid #0B240A;
  border-radius: 4px;
}

@media screen and (max-width: 991px){
  .topContact_content{
    padding-top: 0;
  }
  .topContact_title{
    position: relative;
    z-index: 10;
    font-size: 28px;
    color: #227B49;
  }
  .topContact_title span{
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 24px;
    font-size: 30px;
    color: #E4E9E3;
  }
  .topContact_text{
    font-size: 14px;
  }
  .topContact_tel{
    font-size: 16px;
    line-height: 32px;
  }
  .topContact_tel strong{
    font-size: 24px;
  }
  .topContact_time{
    font-size: 14px;
  }
  .topContact_point{
    width: 160px;
    padding: 14px 0;
    font-size: 14px;
  }
}

/**
  下層ページ共通部分
**/

.pageSection{
  padding: 60px 0;
}
.pageSection_ec{
  font-family: 'Noto Sans JP', sans-serif;
  background-image: none;
}
.pageSection_title{
  font-family: 'M PLUS 1p', sans-serif;
  position: relative;
  display: inline-block;
  margin-bottom: 100px;
  font-size: 96px;
  line-height: 1;
  font-weight: 100;
  color: #8AA4A4;
  text-align: center;
}
.pageSection_title span{
  position: absolute;
  bottom: -30px;
  left: 0;
  font-size: 21px;
  color: #000;
  font-weight: bold;
}
.pageSection_message{
  font-size: 20px;
  line-height: 36px;
}
.pageSection_logo{
  width: auto;
  height: 80px;
}
.pageSection_table{
  width: 100%;
  max-width: 880px;
  margin: auto;
}
.pageSection_table tr:not(:last-of-type){
  border-bottom: 2px solid #DDD;
}
.pageSection_table th{
  width: 180px;
  padding: 16px 0;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  color: #FFF;
  background-color: #227B49;
  border-right: 2px solid #DDD;
}
.pageSection_table td{
  padding: 16px;
  font-size: 16px;
  line-height: 27px;
  background-color: #FFF;
}

@media screen and (max-width: 991px){
  .pageSection{
    padding: 30px 0;
  }
  .pageSection_title{
    display: block;
    margin-bottom: 24px;
    font-size: 36px;
    line-height: 40px;
    color: #8AA4A4;
    text-align: left;
  }
  .pageSection_ec .pageSection_title{
    display: inline-block;
    margin-bottom: 60px;
    text-align: center;
  }
  .pageSection_title span{
    position: relative;
    display: block;
    bottom: auto;
    font-size: 20px;
    color: #555;
    font-weight: normal;
  }
  .pageSection_ec .pageSection_title span{
    position: absolute;
    bottom: -36px;
  }
  .pageSection_message{
    font-size: 14px;
  }
  .pageSection_table th{
    width: 120px;
    padding: 12px 0;
    font-size: 12px;
    line-height: 20px;
    vertical-align: top;
  }
  .pageSection_table td{
    padding: 12px;
    font-size: 12px;
    line-height: 20px;
  }
}

/* パンくずリスト */
.breadcrumb{
  border-bottom: 1px solid #F1F2F2;
}
.breadcrumb li{
  font-size: 12px;
}
.breadcrumb li:not(:last-child){
  position: relative;
  margin-right: 16px;
}
.breadcrumb li:not(:last-child)::before{
  position: absolute;
  content: "";
  top: 7px;
  right: -12px;
  width: 4px;
  height: 4px;
  border-right: 1px solid #8AA4A4;
  border-bottom: 1px solid #8AA4A4;
  transform: rotate(-45deg);
}


@media screen and (min-width: 992px){
  .breadcrumb{
    width: calc(100% - 120px);
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media screen and (max-width: 991px){
  .breadcrumb li{
    font-size: 10px;
  }
  .breadcrumb li:not(:last-child)::before{
    top: 6px;
  }
}

/**
  会社概要
**/

@media screen and (max-width: 991px){
  .pageSection_company{
    padding-top: 0;
  }
}
.pageSection_greeting{
  padding-top: 60px;
  padding-bottom: 60px;
}
.pageSection_greeting-title{
  font-size: 24px;
}
.pageSection_greeting-block{
  width: 100%;
  max-width: 750px;
}
.pageSection_greeting-block-img{
  width: 256px;
}
.pageSection_greeting-block-img img{
  width: 100%;
  height: auto;
}
.pageSection_greeting-block-content{
  width: 470px;
}
.pageSection_greeting-block-content-text{
  font-size: 16px;
  line-height: 27px;
}
.pageSection_greeting-block-content-sign{
  width: 192px;
  height: auto;
}

@media screen and (max-width: 991px){
  .pageSection_greeting{
    padding-top: 40px;
  }
  .pageSection_greeting-title{
    font-size: 20px;
  }
  .pageSection_greeting-block-img{
    width: 200px;
  }
  .pageSection_greeting-block-img img{
    width: 100%;
    height: auto;
  }
  .pageSection_greeting-block-content{
    width: 100%;
  }
  .pageSection_greeting-block-content-text{
    font-size: 12px;
    line-height: 20px;
  }
  .pageSection_greeting-block-content-sign{
    width: 144px;
    height: auto;
  }
}

/**
  わたしたちについて
**/

.pageAbout_message{
  padding: 80px 0;
}
.pageAbout_message-img{
  width: calc(100% - 576px);
  height: auto;
}
.pageAbout_message-content{
  width: 576px;
  padding: 0 3rem;
}
.pageAbout_message-content-important{
  font-size: 24px;
}
.pageAbout_message-content-important-strong01{
  color: #EF5DA8;
}
.pageAbout_message-content-important-strong02{
  color: #227B49;
}
.pageAbout_message-content-text{
  font-size: 16px;
  line-height: 27px;
}
.pageAbout_info{
  width: 100%;
  max-width: 880px;
  padding-bottom: 90px;
}
.pageAbout_info-title{
  font-size: 24px;
}
.pageAbout_info-block{
  width: 280px;
}
.pageAbout_info-block:not(:last-child){
  margin-right: 20px;
}
.pageAbout_info-text{
  font-size: 14px;
  line-height: 22px;
}
.pageAbout_info-policy-img{
  width: 400px;
  height: auto;
}
.pageAbout_info-policy-text{
  width: 460px;
  font-size: 14px;
  line-height: 24px;
}

@media screen and (min-width: 992px) and (max-width: 1199px){
  .pageAbout_message-content-important{
    font-size: 20px;
  }
  .pageAbout_message-content-text{
    font-size: 14px;
    line-height: 24px;
  }
}

@media screen and (max-width: 991px){
  .pageAbout_message{
    padding: 0 0 40px;
  }
  .pageAbout_message-img{
    width: 100%;
    margin-bottom: 30px;
  }
  .pageAbout_message-content{
    width: 100%;
    padding: 0;
  }
  .pageAbout_message-content-important{
    font-size: 18px;
  }
  .pageAbout_message-content-text{
    font-size: 12px;
    line-height: 20px;
  }
  .pageAbout_info{
    padding-bottom: 60px;
  }
  .pageAbout_info-title{
    font-size: 20px;
    line-height: 32px;
  }
  .pageAbout_info-block{
    width: 100%;
  }
  .pageAbout_info-block:not(:last-child){
    margin-right: 0;
    margin-bottom: 20px;
  }
  .pageAbout_info-policy-img{
    width: 100%;
    margin-bottom: 2rem;
  }
  .pageAbout_info-policy-text{
    width: 100%;
  }
}

@media screen and (max-width: 575px){
  .pageAbout_message-img{
    width: 100vw;
    max-width: none;
    margin-left: -2rem;
  }
  .pageAbout_info-policy-img{
    width: 100vw;
    max-width: none;
    margin-left: -2rem;
  }
}

/**
  取扱商材
**/

@media screen and (min-width: 992px){
  .pageSection_business-wrap{
    background-image: url("../img/pageBusiness_bg01.png"), url("../img/pageBusiness_bg02.png"), url("../img/pageBusiness_bg02.png");
    background-repeat: no-repeat;
    background-size: 80% auto, 100% auto, 100% auto;
    background-position: left top, left 0 bottom 70%, left 0 bottom;
  }
}
.pageSection_business{
  padding-top: 60px;
  padding-bottom: 90px;
}
.pageSection_business-content{
  margin-top: 90px;
}
.pageSection_business-title{
  font-size: 24px;
}
.pageSection_business-title-big{
  font-size: 40px;
  color: #227B49;
}
.pageSection_business-text{
  max-width: 480px;
  font-size: 14px;
  line-height: 22px;
}
.pageSection_business-img{
  width: 100%;
  max-width: 640px;
  height: auto;
}
.pageSection_business-point{
  width: calc(33.3333% - 20px);
  padding: 20px 0;
  font-size: 18px;
  line-height: 1;
  font-weight: bold;
  color: #FFF;
  background-color: #227B49;
  text-align: center;
  border-radius: 4px;
}
.pageSection_business-point:not(:last-child){
  margin-right: 30px;
}

@media screen and (max-width: 991px){
  .pageSection_business-inner{
    flex-flow: column;
    margin-top: -60px;
  }
  .pageSection_business-title{
    font-size: 20px;
  }
  .pageSection_business-title-big{
    font-size: 16px;
  }
  .pageSection_business-text{
    font-size: 12px;
    line-height: 20px;
  }
  .pageSection_business-point{
    width: calc(50% - 30px);
    margin-bottom: 15px;
    padding: 14px 0;
    font-size: 14px;
  }
  .pageSection_business-point:not(:last-child){
    margin-right: 0;
  }
  .pageSection_business-point:nth-child(2n){
    margin-left: 30px;
  }
}

@media screen and (max-width: 575px){
  .pageSection_business{
    padding-bottom: 60px;
  }
  .pageSection_business-img{
    width: 100vw;
    max-width: none;
    height: 50vw;
    margin-left: -2rem!important;
    overflow: hidden;
  }
  .pageSection_business-img img{
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

/**
  お問い合わせ
**/

.pageSection_contact{
  width: 560px;
}
.pageSection_contact-form-label{
  width: 160px;
}
.pageSection_contact-form-input, .pageSection_contact-form-textarea{
  width: 400px;
  height: 48px;
  padding: 0 12px;
  font-size: 16px;
  line-height: 24px;
  background-color: #F2F5F2;
  border: none;
  border-radius: 4px;
}
.pageSection_contact-form-textarea{
  height: 96px;
  padding: 12px;
  resize: none;
}
.pageSection_contact-form-submit{
  width: 216px;
  height: 54px;
  font-size: 20px;
  background-color: #227B49;
  border: none;
  border-radius: 4px;
}

@media screen and (max-width: 991px){
  .pageSection_contact{
    width: 300px;
  }
  .pageSection_contact-form-label{
    width: 100%;
  }
  .pageSection_contact-form-input{
    width: 100%;
  }
}

/**
   利用規約・特定商取引
**/

.pageSection_terms{
  max-width: 880px;
}
.pageSection_terms h2{
  font-size: 32px;
  line-height: 1.6;
  font-weight: bold;
}
.pageSection_terms ul, .pageSection_terms ol{
  padding-left: 1rem;
}
.pageSection_terms p, .pageSection_terms ul li, .pageSection_terms ol li{
  font-size: 16px;
  line-height: 1.6;
}

@media screen and (max-width: 991px){
  .pageSection_terms h2{
    font-size: 20px;
  }
  .pageSection_terms p, .pageSection_terms ul li, .pageSection_terms ol li{
    font-size: 12px;
  }
}

/**
  EC商品一覧
**/

.pageSection_list-wrap{
  width: 800px;
}
.pageSection_list{
  width: 250px;
  margin-bottom: 30px;
}
.pageSection_list:nth-child(3n+1), .pageSection_list:nth-child(3n+2){
  margin-right: 25px;
}
.pageSection ul.products{
	display: flex;
	width: 800px;
	margin: auto;
	padding-left: 0;
	padding-right: 0;
	align-items: center;
	flex-wrap: wrap;
	list-style: none;
}
.pageSection ul.products .woocommerce-LoopProduct-link{
	text-decoration: none;
}
.pageSection ul.products .woocommerce-LoopProduct-link img{
  width: 100%;
  height: auto;
	margin-bottom: 1rem;
}
.pageSection ul.products .woocommerce-LoopProduct-link h2{
	margin-bottom: 0.5rem;
  font-size: 14px;
	font-weight: bold;
}
.pageSection ul.products .woocommerce-LoopProduct-link span.price{
	display: block;
	margin-bottom: 1rem;
  font-size: 13px;
	font-weight: bold;
  color: #999;
}
.pageSection ul.products .button{
	position: relative;
	display: block;
  width: 150px;
  height: 36px;
	margin: 0 auto;
	padding: 11px 0;
  background-color: #227B49;
  font-size: 0;
	line-height: 14px;
	color: #FFF;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
  border: none;
  border-radius: 4px;
}
.pageSection ul.products .button::before{
	font-size: 14px;
	content: "カートに入れる";
}

@media screen and (max-width: 991px){
  .pageSection_list-wrap{
    width: 100%;
  }
  .pageSection_list{
    width: calc(50% - 15px);
  }
  .pageSection_list:nth-child(3n+1), .pageSection_list:nth-child(3n+2){
    margin-right: 0;
  }
  .pageSection_list:nth-child(2n+1){
    margin-right: 30px;
  }
  .pageSection ul.products{
		width: 100%;
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

/**
  EC商品詳細
**/

.pageSection_detail{
  width: 800px;
}
.pageSection_detail-img{
  width: 430px;
  margin-right: 30px;
}
.pageSection_detail-content{
  width: 340px;
}
.woocommerce-breadcrumb{
	display: none;
}
.woocommerce-message{
	margin-bottom: 2.5rem;
	font-size: 16px;
	line-height: 27px;
}
.woocommerce-message a{
  display: block;
  width: 180px;
  margin: 0 auto 12px;
  padding: 10px 0;
  background-color: #227B49;
  font-size: 14px;
  line-height: 1;
  color: #FFF;
  font-weight: bold;
  text-decoration: none;
  border: none;
  border-radius: 4px;
}
.pageSection_detail-content .product{
	margin-top: -32px;
}
.pageSection_detail-content p{
	font-size: 14px;
	line-height: 1.5;
}
.pageSection_detail-content .summary .product_title{
	margin-bottom: 0.5rem;
	font-size: 20px;
  font-weight: bold;
	text-align: left;
}
.pageSection_detail-content .summary .price{
	margin-bottom: 1rem;
	font-size: 16px;
	color: #999;
  font-weight: bold;
}
.pageSection_detail-content .summary form{
	display: flex;
	margin-bottom: 3rem;
}
.pageSection_detail-content .summary form .quantity label{
	display: none;
}
.pageSection_detail-content .summary form .quantity input{
	width: 80px;
	height: 56px;
	padding: 0 14px;
	font-size: 14px;
	border: 1px solid #999;
}
.pageSection_detail-content .summary form button[type='submit']{
	display: inline-block;
	width: calc(100% - 100px);
	height: 56px;
	margin-left: auto;
	background-color: #227B49;
	font-size: 14px;
	color: #FFF;
	font-weight: bold;
	border: none;
	border-radius: 4px;
}
.pageSection_detail-content .summary .product_meta{
	display: none;
}

@media screen and (max-width: 991px){
  .pageSection_detail{
    width: 100%;
  }
  .pageSection_detail-img{
    width: 100%;
    margin-right: 0;
  }
  .pageSection_detail-content{
    width: 100%;
  }
}

/**
  ECカート
**/

.pageSection_cart{
  width: 570px;
}
.pageSection .woocommerce-notices-wrapper{
	margin-bottom: 2rem;
	text-align: center;
}
.pageSection .cart-empty{
	margin-bottom: 1rem;
	text-align: center;
}
.pageSection .return-to-shop{
	margin-bottom: 1rem;
	text-align: center;
}
.pageSection_cart-table{
  display: block;
  font-size: 14px;
}
.pageSection_cart-table tr:not(:last-child){
  border-bottom: 1px solid #F1F2F2;
}
.pageSection_cart-table-delete{
  width: 40px;
  font-size: 20px;
}
.pageSection_cart-table-delete .remove{
	text-decoration: none;
}
.pageSection_cart-table-thumbnail{
  width: 150px;
}
.pageSection_cart-table-name{
  width: 70px;
}
.pageSection_cart-table-price{
  width: 100px;
}
.pageSection_cart-table-num{
  width: 100px;
}
.pageSection_cart-table-num .screen-reader-text{
  display: none;
}
.pageSection_cart-table-num input{
  width: 64px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #999;
  border-radius: 4px;
}
.pageSection_cart-table-sum{
  width: 110px;
}
.pageSection_cart-table-img{
  width: 110px;
  height: 110px;
  object-fit: cover;
  overflow: hidden;
}
.pageSection_cart-table-img img{
  width: auto;
  height: 100%;
}
.pageSection_cart form button[type='submit']{
  display: block;
  width: 180px;
  margin-left: auto;
  padding: 10px 0;
  background-color: #227B49;
  font-size: 14px;
  line-height: 1;
  color: #FFF;
  font-weight: bold;
  border: none;
  border-radius: 4px;
}

.pageSection_cart-sp{
  display: none;
}
.pageSection_cart-sp-block{
  border-top: 1px solid #F1F2F2;
}
.pageSection_cart-sp-block-delete{
  font-size: 20px;
}
.pageSection_cart-sp-block-delete .remove{
	text-decoration: none;
}
.pageSection_cart-sp-block-list{
  font-size: 14px;
}
.pageSection_cart-sp-block-list dt{
  width: 50%;
}
.pageSection_cart-sp-block-list dd{
  width: 50%;
}
.pageSection_cart-sp-block-list dd .screen-reader-text{
  display: none;
}
.pageSection_cart-sp-block-list dd input{
  width: 64px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #999;
  border-radius: 4px;
}

@media screen and (max-width: 991px){
  .pageSection_cart-table{
    display: none;
  }
  .pageSection_cart-sp{
    display: block;
  }
}

.pageSection_cart-sum{
  width: 350px;
}
.pageSection_cart-sum-title{
  font-size: 20px;
  border-bottom: 1px solid #F1F2F2;
}
.pageSection_cart-sum-list dt{
  width: 240px;
}
.pageSection_cart-sum-list dd{
  width: calc(100% - 240px);
}

.pageSection_cart .cart_totals{
  width: 350px;
  margin-left: auto;
}
.pageSection_cart .cart_totals h2{
  margin-bottom: 0;
  padding-bottom: 16px;
  font-size: 20px;
  font-weight: bold;
  border-bottom: 1px solid #F1F2F2;
}
.pageSection_cart .cart_totals .checkout-button{
  display: block;
  width: 250px;
  margin: 16px auto 0;
  padding: 20px 0;
  background-color: #227B49;
  font-size: 16px;
  line-height: 1;
  color: #FFF;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 4px;
}
.pageSection_cart .shop_table_responsive{
  width: 350px;
}
.pageSection_cart .shop_table_responsive .woocommerce-shipping-totals{
	display: none;
}
.pageSection_cart .shop_table_responsive th{
  width: 240px;
  padding: 8px 0;
  font-weight: bold;
}
.pageSection_cart .shop_table_responsive td{
  width: 110px;
  padding: 8px 0;
  text-align: right;
}
.pageSection_cart .shop_table_responsive td strong{
  font-weight: normal!important;
}

@media screen and (max-width: 991px){
  .pageSection_cart{
    width: 100%;
  }
}

@media screen and (max-width: 575px){
  .pageSection_cart-sum{
    width: 100%;
  }
}

/**
  EC支払い
**/

.pageSection_payment{
  width: 720px;
}
.pageSection_payment-block{
  width: 340px;
}
.pageSection_payment-block:first-child{
  margin-right: 40px;
}
.pageSection .woocommerce-form-coupon-toggle{
	display: none;
}
.pageSection .woocommerce-billing-fields h3{
	margin-bottom: 2rem;
  font-size: 20px;
	font-weight: bold;
}
.pageSection .woocommerce-billing-fields p#billing_last_name_field,
.pageSection .woocommerce-billing-fields p#billing_first_name_field,
.pageSection .woocommerce-billing-fields p#billing_postcode_field,
.pageSection .woocommerce-billing-fields p#billing_state_field{
	display: inline-block;
	width: 160px;
}
.pageSection .woocommerce-billing-fields p#billing_first_name_field,
.pageSection .woocommerce-billing-fields p#billing_state_field{
	margin-left: 20px;
}
.pageSection .woocommerce-billing-fields label{
	display: block;
	margin-bottom: 0.5rem;
  font-size: 14px;
}
.pageSection .woocommerce-billing-fields .woocommerce-input-wrapper{
	width: 100%;
}
.pageSection .woocommerce-billing-fields .woocommerce-input-wrapper input,
.pageSection .woocommerce-billing-fields .woocommerce-input-wrapper select,
.pageSection .woocommerce-billing-fields .woocommerce-input-wrapper textarea{
	width: 100%;
	height: 48px;
  padding: 0 12px;
  font-size: 14px;
  border: 1px solid #999;
}
.pageSection .woocommerce-billing-fields .woocommerce-input-wrapper textarea{
	height: 160px;
  padding: 12px;
  line-height: 21px;
  resize: none;
}
.pageSection .woocommerce-billing-fields .woocommerce-input-wrapper select{
	-webkit-appearance: none;
    appearance: none;
}
.pageSection .woocommerce-billing-fields .woocommerce-input-wrapper select::-ms-expand {
  display: none; /* デフォルトの矢印を非表示(IE用) */
}

.pageSection .woocommerce-shipping-fields h3#ship-to-different-address{
	margin-top: 2rem;
	margin-bottom: 2rem;
}
.pageSection .woocommerce-shipping-fields h3#ship-to-different-address label{
	display: flex;
	align-items: center;
}
.pageSection .woocommerce-shipping-fields h3#ship-to-different-address label input[type='checkbox']{
	width: 16px;
  height: 16px;
  margin-right: 8px;
  border: 1px solid #000;
  border-radius: 4px;
}
.pageSection .woocommerce-shipping-fields h3#ship-to-different-address label span{
	font-size: 16px;
	font-weight: bold;
}
.pageSection .woocommerce-shipping-fields p#shipping_last_name_field,
.pageSection .woocommerce-shipping-fields p#shipping_first_name_field,
.pageSection .woocommerce-shipping-fields p#shipping_postcode_field,
.pageSection .woocommerce-shipping-fields p#shipping_state_field{
	display: inline-block;
	width: 160px;
}
.pageSection .woocommerce-shipping-fields p#shipping_first_name_field,
.pageSection .woocommerce-shipping-fields p#shipping_state_field{
	margin-left: 20px;
}
.pageSection .woocommerce-shipping-fields label{
	display: block;
	margin-bottom: 0.5rem;
  font-size: 14px;
}
.pageSection .woocommerce-shipping-fields .woocommerce-input-wrapper{
	width: 100%;
}
.pageSection .woocommerce-shipping-fields .woocommerce-input-wrapper input,
.pageSection .woocommerce-shipping-fields .woocommerce-input-wrapper select,
.pageSection .woocommerce-shipping-fields .woocommerce-input-wrapper textarea{
	width: 100%;
	height: 48px;
  padding: 0 12px;
  font-size: 14px;
  border: 1px solid #999;
}
.pageSection .woocommerce-shipping-fields .woocommerce-input-wrapper textarea{
	height: 160px;
  padding: 12px;
  line-height: 21px;
  resize: none;
}

.pageSection .woocommerce-additional-fields label{
	display: block;
	margin-bottom: 0.5rem;
  font-size: 16px;
	font-weight: bold;
}
.pageSection .woocommerce-additional-fields .woocommerce-input-wrapper{
	width: 100%;
}
.pageSection .woocommerce-additional-fields .woocommerce-input-wrapper textarea{
	width: 100%;
	height: 160px;
  padding: 12px;
  font-size: 14px;
	line-height: 21px;
  resize: none;
  border: 1px solid #999;
}

.pageSection h3#order_review_heading{
	margin-bottom: 2rem;
  font-size: 20px;
	font-weight: bold;
}
.pageSection .woocommerce-checkout-review-order table{
	width: 100%;
  font-size: 14px;
}
.pageSection .woocommerce-checkout-review-order table thead{
	display: none;
}
.pageSection .woocommerce-checkout-review-order table tr{
	border-bottom: 1px solid #F1F2F2;
}
.pageSection .woocommerce-checkout-review-order table tr.order-total{
	border-bottom: none;
}
.pageSection .woocommerce-checkout-review-order table tfoot tr.woocommerce-shipping-totals{
	display: none;
}
.pageSection .woocommerce-checkout-review-order table th{
	width: 240px;
	font-weight: normal;
}
.pageSection .woocommerce-checkout-review-order table tbody th{
	padding-bottom: 1rem;
}
.pageSection .woocommerce-checkout-review-order table tfoot th{
	padding-top: 1rem;
	padding-bottom: 1rem;
}
.pageSection .woocommerce-checkout-review-order table td{
	width: calc(100% - 240px);
	text-align: right;
	font-weight: bold;
}
.pageSection .woocommerce-checkout-review-order table tbody td{
	padding-bottom: 1rem;
}
.pageSection .woocommerce-checkout-review-order table tbody td.product-name{
	text-align: left;
	font-weight: normal;
}
.pageSection .woocommerce-checkout-review-order table tbody td.product-name strong{
	font-weight: normal;
}
.pageSection .woocommerce-checkout-review-order table tfoot td{
	padding-top: 1rem;
	padding-bottom: 1rem;
}
.pageSection .woocommerce-checkout-review-order .woocommerce-checkout-payment{
	margin-top: 1rem;
}
.pageSection .woocommerce-checkout-review-order .woocommerce-checkout-payment ul{
	margin-bottom: 1rem;
	padding-left: 0;
	list-style: none;
}

.pageSection .woocommerce-checkout-payment .woocommerce-privacy-policy-text{
	font-size: 14px;
  line-height: 21px;
}
.pageSection .woocommerce-checkout-payment button[type='submit']{
	display: block;
	width: 250px;
  height: 56px;
	margin: auto;
  background-color: #227B49;
  font-size: 0;
	color: #FFF;
	font-weight: bold;
  border: none;
  border-radius: 4px;
}
.pageSection .woocommerce-checkout-payment button[type='submit']::before{
	font-size: 16px;
	content: "購入手続きに進む";
}

@media screen and (max-width: 991px){
  .pageSection_payment{
    width: 100%;
  }
  .pageSection_payment-block{
    width: 100%;
  }
  .pageSection_payment-block:first-child{
    margin-right: 0;
  }
  .pageSection_payment-block-half{
    width: calc(50% - 10px);
  }
	.pageSection .woocommerce-billing-fields p#billing_last_name_field,
	.pageSection .woocommerce-billing-fields p#billing_first_name_field,
	.pageSection .woocommerce-billing-fields p#billing_postcode_field,
	.pageSection .woocommerce-billing-fields p#billing_state_field{
		width: calc(50% - 10px);
	}
	.pageSection .woocommerce-shipping-fields p#shipping_last_name_field,
	.pageSection .woocommerce-shipping-fields p#shipping_first_name_field,
	.pageSection .woocommerce-shipping-fields p#shipping_postcode_field,
	.pageSection .woocommerce-shipping-fields p#shipping_state_field{
		width: calc(50% - 10px);
	}
}
