@charset "utf-8";

/*==========================================
 font
===========================================*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');
html {
  font-family: "Noto Sans JP", serif;
  font-size: 62.5%;
  font-weight: 400;
  color: #003810;
}

/* font-family: "Montserrat", serif; */

/* link */
a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=80);
}
a { outline: none; text-decoration: none; }
a:link    { color: #003810; text-decoration: none; }
a:visited { color: #003810; text-decoration: underline; }
a:hover   { color: #003810; text-decoration: underline; }
a:active  { color: #003810; text-decoration: underline; }



/*==========================================
 body
===========================================*/

html {
  background: #E4E1E0;
  overflow: auto;
}
body {
  overflow: hidden;
	min-width: 1000px;
  -webkit-text-size-adjust: 100%;
}
@media only screen and (max-width: 767px) {
  body {
  	min-width: auto;
  }
}

/*==========================================
 画像切替
===========================================*/
/* PC、スマートフォン表示分岐 */
.pcView {
  display: block;
}
.spView {
  display: none;
}
@media only screen and (max-width: 767px) {
  .pcView {
    display: none;
  }
  .spView {
    display: block;
  }
}

/*==========================================
 ヘッダーのスタイル
===========================================*/
header {
  z-index: 1000;
  position: fixed;
  width: 100%;
  height: 100px;
  background-color: #E4E1E0;
}
header #header {
  position: relative;
  width: 1240px;
  margin: 0 auto;
}
header #headerLogoArea {
  position: absolute;
  z-index: 2000;
  left: 0;
  top: 36px;
}
header #headerLogoArea h1 img {
  width: 190px;
  height: auto;
  transition: all 0.3s ease;
}
header #headerLogoArea h1 img:hover {
  opacity: 0.6;
}

header #header_SpIcon {
  display: none;
}
@media only screen and (max-width: 1280px) {
  header #header {
    width: calc(100% - 40px);
  }
}
@media only screen and (max-width: 860px) {
  header {
    height: 65px;
  }
  header #header {
    width: 100%;
    margin: 0;
  }
  header #headerLogoArea {
    left: 25px;
    top: 25px;
  }
  header #headerLogoArea h1 img {
    width: 122px;
    height: auto;
  }
  header #header_SpIcon {
    display: block;
    z-index: 700;
    position: absolute;
    right: 25px;
    top: 25px;
    width: 25px;
    height: 17px;
    box-sizing: border-box;
  }
  header #header_SpIcon .menu-trigger,
  header #header_SpIcon .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }
  header #header_SpIcon .menu-trigger {
    position: relative;
    width: 25px;
    height: 17px;
  }
  header #header_SpIcon .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #003810;
  }
  header #header_SpIcon .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  header #header_SpIcon .menu-trigger span:nth-of-type(2) {
    top: 8px;
  }
  header #header_SpIcon .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }

  header #header_SpIcon .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
  }
  header #header_SpIcon .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  header #header_SpIcon .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
  }
}


/*グローバルナビゲーション ////////////////////////////////// */
header #headerGlobalArea {
  position: absolute;
  right: 0;
  top: 47px;
}
header #headerGlobalArea ul {
  width: 574px;
  display: flex;
  justify-content: space-between;
}
header #headerGlobalArea li a {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}
header #headerGlobalArea li a:hover {
  text-decoration: none;
  opacity: 0.6;
}
header #overay,
header #headerNavi_Sp {
  display: none;
}
@media only screen and (max-width: 860px) {
  header #headerGlobalArea {
    display: none;
  }

  header #overay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100vh;
    background-color: #003810;
  }
  header #headerNavi_Sp {
    position: absolute;
    right: -100vw;
    top: 0;
    display: block;
    width: 100%;
    height: 100vh;
    padding: 137px 0 0 50px;
    box-sizing: border-box;
    background-color: #E4E1E0;
  }
  header #headerNavi_Sp nav ul li {
    padding: 0 0 45px;
  }
  header #headerNavi_Sp nav ul li a {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
  }
  header #headerNavi_Sp nav ul li a:hover {
    text-decoration: none;
  }
}

/*==========================================
 フッターのスタイル
===========================================*/
footer {
  width: 100%;
  padding: 90px 0 50px;
  background-color: #717071;
}
footer #footerBody {
  width: 1000px;
  margin: 0 auto;
}
footer #footerBody h2 {
  font-size: 2.2rem;
  font-weight: 500;
  color: #FFF;
  line-height: 1.8;
  text-align: center;
}
footer #footerBody .footer_link {
  width: 100%;
  padding: 60px 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer #footerBody .footer_link .column {
  width: 437px;
  height: 247px;
  padding: 40px 0 0;
  box-sizing: border-box;
  background-color: #FFF;
  text-align: center;
}
footer #footerBody .footer_link .column h3 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #000000;
}
footer #footerBody .footer_link .column img {
  width: 230px;
  height: auto;
  padding: 25px 0 0;
}
footer #footerBody .footer_link .column .link01 {
  width: 230px;
  height: 56px;
  margin: 0 auto;
  padding: 25px 0 0;
}
footer #footerBody .footer_link .column .link01 a {
  display: block;
  width: 230px;
  height: 56px;
  padding: 18px 0 0;
  box-sizing: border-box;
  background-color: #2B2A30;
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFF;
  transition: all 0.3s ease;
}
footer #footerBody .footer_link .column .link01 a:hover {
  opacity: 0.7;
  text-decoration: none;
}

footer #footerBody .footer_sns {
  width: 255px;
  margin: 0 auto;
  padding: 100px 0 0;
}
footer #footerBody .footer_sns ul {
  display: flex;
  justify-content: space-between;
}
footer #footerBody .footer_sns ul li {
  display: flex;
  align-items: center;
}
footer #footerBody .footer_sns ul li:nth-child(1) {
  width: 46px;
}
footer #footerBody .footer_sns ul li:nth-child(2) {
  width: 44px;
}
footer #footerBody .footer_sns ul li:nth-child(3) {
  width: 40px;
}
footer #footerBody .footer_sns ul li img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

footer #footerBody small {
  display: block;
  padding: 100px 0 0;
  font-size: 1.2rem;
  color: #FFF;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  footer {
    padding: 40px 0 20px;
  }
  footer #footerBody {
    width: calc(100% - 50px)
  }
  footer #footerBody h2 {
    font-size: 1.4rem;
    text-align: left;
  }
  footer #footerBody .footer_link {
    padding: 40px 0 0;
  }
  footer #footerBody .footer_link .column {
    width: 100%;
    height: auto;
    margin: 0 0 35px;
    padding: 25px 0;
  }

  footer #footerBody .footer_sns {
    width: 144px;
    padding: 40px 0 0;
  }
  footer #footerBody .footer_sns ul li:nth-child(1) {
    width: 26px;
  }
  footer #footerBody .footer_sns ul li:nth-child(2) {
    width: 27px;
  }
  footer #footerBody .footer_sns ul li:nth-child(3) {
    width: 32px;
  }

  footer #footerBody small {
    padding: 25px 0 0;
    font-size: 1.1rem;
    line-height: 1.6;
  }
}


/*==========================================
 コンテンツのスタイル 共通
===========================================*/
#mainContents {
  min-height: 1000px;
  padding: 100px 0 0 0;
}
@media only screen and (max-width: 860px) {
  #mainContents {
    padding: 65px 0 0 0;
  }
}

#mainContents .top_pr_text {
  width: 100%;
  height: 50px;
  padding: 15px 0 0;
  box-sizing: border-box;
  background-color: #003810;
}
#mainContents .top_pr_text h2 {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  color: #FFF;
  letter-spacing: 0.2em;
}
@media only screen and (max-width: 767px) {
  #mainContents .top_pr_text {
    height: 40px;
    padding: 13px 0 0;
  }
  #mainContents .top_pr_text h2 {
    font-size: 1.3rem;
    letter-spacing: 0em;
  }
}


#mainContents .top_Mv {
  width: 100%;
}
#mainContents .top_Mv img {
  width: 100%;
  height: auto;
}

#mainContents .top_Text {
  width: 100%;
  padding: 85px 0 50px;
}
#mainContents .top_Text h3 {
  display: none;
}
#mainContents .top_Text p {
  padding: 0 0 40px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.2;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #mainContents .top_Text {
    padding: 40px 0 50px;
  }
  #mainContents .top_Text h3 {
    display: block;
    padding: 0 0 30px;
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    letter-spacing: 0.1em;
  }
  #mainContents .top_Text p {
    padding: 0 0 20px;
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

#mainContents .top_Img {
  width: 100%;
}
#mainContents .top_Img img {
  width: 100%;
  height: auto;
}

#mainContents .top_Link {
  display: none;
}
@media only screen and (max-width: 767px) {
  #mainContents .top_Link {
    display: block;
    width: calc(100% - 50px);
    margin: 0 auto;
    padding: 40px 0 0;
  }
  #mainContents .top_Link p {
    font-size: 1.4rem;
    line-height: 1.8;
    text-align: left;
  }
  #mainContents .top_Link .link01 {
    width: 230px;
    height: 56px;
    margin: 0 auto;
    padding: 25px 0 0;
  }
  #mainContents .top_Link .link01 a {
    display: block;
    width: 230px;
    height: 56px;
    padding: 18px 0 0;
    box-sizing: border-box;
    background-color: #005B29;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFF;
    text-align: center;
  }
  #mainContents .top_Link .link01 a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}


#mainContents .features_Area {
  width: 1000px;
  margin: 0 auto;
  padding: 160px 0 150px;
}
#mainContents .features_Area h3 {
  padding: 0 0 70px;
  font-family: "Montserrat", serif;
  font-size: 4.0rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
#mainContents .features_Area h3 span {
  padding: 0 0 0 30px;
  font-family: "Noto Sans JP", serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
#mainContents .features_Area .columnBox01 {
  width: 100%;
  padding: 0 0 100px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .features_Area .columnBox01 .column_L {
  position: relative;
  width: 500px;
  height: 479px;
}
#mainContents .features_Area .columnBox01 .column_L img {
  position: absolute;
  right: 0;
  top: 0;
  width: 683px;
  height: 479px;
}
#mainContents .features_Area .columnBox01 .column_R {
  width: 500px;
}
#mainContents .features_Area .columnBox01 .column_R .noBox {
  width: 100%;
  text-align: right;
  border-bottom: 1px solid #003810;
}
#mainContents .features_Area .columnBox01 .column_R .noBox p {
  padding: 10px 0 15px;
  font-family: "Montserrat", serif;
  font-size: 7.5rem;
  font-weight: 200;
}
#mainContents .features_Area .columnBox01 .column_R h4 {
  padding: 30px 0 30px 60px;
  font-size: 3.0rem;
  font-weight: 500;
  line-height: 1.4;
}
#mainContents .features_Area .columnBox01 .column_R p.text01 {
  padding: 0 0 0 60px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.0;
}

#mainContents .features_Area .columnBox02 {
  width: 100%;
  padding: 0 0 100px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .features_Area .columnBox02 .column_L {
  width: 500px;
}
#mainContents .features_Area .columnBox02 .column_L .noBox {
  width: 100%;
  text-align: left;
  border-bottom: 1px solid #003810;
}
#mainContents .features_Area .columnBox02 .column_L .noBox p {
  padding: 10px 0 15px;
  font-family: "Montserrat", serif;
  font-size: 7.5rem;
  font-weight: 200;
}
#mainContents .features_Area .columnBox02 .column_L h4 {
  padding: 30px 60px 30px 0;
  font-size: 3.0rem;
  font-weight: 500;
  line-height: 1.4;
}
#mainContents .features_Area .columnBox02 .column_L p.text01 {
  padding: 0 60px 0 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.0;
}
#mainContents .features_Area .columnBox02 .column_R {
  position: relative;
  width: 500px;
  height: 479px;
}
#mainContents .features_Area .columnBox02 .column_R img {
  position: absolute;
  left: 0;
  top: 0;
  width: 683px;
  height: 479px;
}

#mainContents .features_Area .link01 {
  width: 300px;
  height: 56px;
  margin: 0 auto;
  padding: 25px 0 0;
}
#mainContents .features_Area .link01 a {
  display: block;
  width: 300px;
  height: 56px;
  padding: 18px 0 0;
  box-sizing: border-box;
  background-color: #005B29;
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFF;
  text-align: center;
  transition: all 0.3s ease;
}
#mainContents .features_Area .link01 a:hover {
  opacity: 0.7;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  #mainContents .features_Area {
    width: 100%;
    padding: 80px 0 100px;
  }
  #mainContents .features_Area h3 {
    padding: 0 25px 20px;
    font-size: 3.5rem;
  }
  #mainContents .features_Area h3 span {
    display: block;
    padding: 10px 0 0;
    letter-spacing: 0.08em;
  }
  #mainContents .features_Area .columnBox01 {
    width: 100%;
    padding: 0 0 70px;
  }
  #mainContents .features_Area .columnBox01 .column_L {
    width: 100%;
    height: auto;
    padding: 0 0 20px;
  }
  #mainContents .features_Area .columnBox01 .column_L img {
    position: static;
    width: 100%;
    height: auto;
  }
  #mainContents .features_Area .columnBox01 .column_R {
    position: relative;
    width: 100%;
  }
  #mainContents .features_Area .columnBox01 .column_R .noBox {
    width: 100%;
    text-align: left;
  }
  #mainContents .features_Area .columnBox01 .column_R .noBox p {
    padding: 0 25px 15px;
    font-family: "Montserrat", serif;
    font-size: 6.0rem;
  }
  #mainContents .features_Area .columnBox01 .column_R h4 {
    position: absolute;
    left: 115px;
    top: 0;
    padding: 0;
    font-size: 2.0rem;
  }
  #mainContents .features_Area .columnBox01 .column_R p.text01 {
    padding: 20px 25px 0;
    font-size: 1.4rem;
  }

  #mainContents .features_Area .columnBox02 {
    width: 100%;
    padding: 0 0 70px;
  }
  #mainContents .features_Area .columnBox02 .column_L {
    position: relative;
    width: 100%;
    order: 2;
  }
  #mainContents .features_Area .columnBox02 .column_L .noBox {
    width: 100%;
    text-align: left;
  }
  #mainContents .features_Area .columnBox02 .column_L .noBox p {
    padding: 0 25px 15px;
    font-family: "Montserrat", serif;
    font-size: 6.0rem;
  }
  #mainContents .features_Area .columnBox02 .column_L .noBox.typ01 p {
    padding: 0 25px 40px;
  }
  #mainContents .features_Area .columnBox02 .column_L h4 {
    position: absolute;
    left: 115px;
    top: 0;
    padding: 0;
    font-size: 2.0rem;
  }
  #mainContents .features_Area .columnBox02 .column_L p.text01 {
    padding: 20px 25px 0;
    font-size: 1.4rem;
  }
  #mainContents .features_Area .columnBox02 .column_R {
    width: 100%;
    height: auto;
    padding: 0 0 20px;
    order: 1;
  }
  #mainContents .features_Area .columnBox02 .column_R img {
    position: static;
    width: 100%;
    height: auto;
  }

  #mainContents .features_Area .link01 {
    width: 300px;
    height: 56px;
    margin: 0 auto;
    padding: 25px 0 0;
  }
  #mainContents .features_Area .link01 a {
    display: block;
    width: 300px;
    height: 56px;
    padding: 18px 0 0;
    box-sizing: border-box;
    background-color: #005B29;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFF;
    text-align: center;
  }
  #mainContents .features_Area .link01 a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}


#mainContents .resonating_Area {
  width: 100%;
  height: 712px;
  background-color: #010D05;
}
#mainContents .resonating_Area .resonating_Box {
  width: 1000px;
  height: 712px;
  margin: 0 auto;
  padding: 100px 0;
  box-sizing: border-box;
  background-image: url("../img/modellista_bk01.jpg");
  background-size: cover;
  background-position: center;
}
#mainContents .resonating_Area .resonating_Box h3 {
  padding: 0 0 20px;
  font-size: 3.0rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  color: #FFF;
}
#mainContents .resonating_Area .resonating_Box p.text01 {
  padding: 0 0 40px;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.8;
  color: #FFF;
}
#mainContents .resonating_Area .resonating_Box .columnBox {
  position: relative;
  width: 1000px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .resonating_Area .resonating_Box .columnBox::before {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 76px;
  height: 76px;
  margin: -38px 0 0 -38px;
  background-image: url("../img/icon01.svg");
  background-size: cover;
  content: "";
}
#mainContents .resonating_Area .resonating_Box .columnBox .column {
  width: 437px;
  height: 337px;
  padding: 40px 50px 0 50px;
  box-sizing: border-box;
  background-color: #FFF;
}
#mainContents .resonating_Area .resonating_Box .columnBox .column h4 {
  font-family: "Montserrat", serif;
  font-size: 3.5rem;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.05em;
}
#mainContents .resonating_Area .resonating_Box .columnBox .column p {
  padding: 25px 0 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.0;
}
@media only screen and (max-width: 767px) {
  #mainContents .resonating_Area {
    width: 100%;
    height: 970px;
  }
  #mainContents .resonating_Area .resonating_Box {
    width: 100%;
    height: 946px;
    margin: 0 auto;
    padding: 50px 0;
    background-image: url("../img/modellista_bk01_sp.jpg");
  }
  #mainContents .resonating_Area .resonating_Box h3 {
    padding: 0 0 20px;
    font-size: 2.2rem;
  }
  #mainContents .resonating_Area .resonating_Box p.text01 {
    padding: 0 0 40px;
    font-size: 1.4rem;
  }
  #mainContents .resonating_Area .resonating_Box .columnBox {
    width: calc(100% - 50px);
    margin: 0 auto;
  }
  #mainContents .resonating_Area .resonating_Box .columnBox::before {
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
  }
  #mainContents .resonating_Area .resonating_Box .columnBox .column {
    width: 100%;
    height: auto;
    padding: 25px 20px;
    margin: 0 0 90px;
  }
  #mainContents .resonating_Area .resonating_Box .columnBox .column:nth-child(2) {
    margin: 0;
  }
  #mainContents .resonating_Area .resonating_Box .columnBox .column h4 {
    font-size: 2.6rem;
  }
  #mainContents .resonating_Area .resonating_Box .columnBox .column p {
    padding: 15px 0 0;
    font-size: 1.4rem;
  }
}

#mainContents .picjup_Area {
  width: 1000px;
  margin: 0 auto;
  padding: 160px 0 0;
}
#mainContents .picjup_Area h3 {
  padding: 0 0 30px;
  font-family: "Montserrat", serif;
  font-size: 4.0rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
#mainContents .picjup_Area h3 span {
  padding: 0 0 0 30px;
  font-family: "Noto Sans JP", serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
#mainContents .picjup_Area p.text01 {
  padding: 0 0 70px;
  font-size: 1.6rem;
  line-height: 1.8;
}
#mainContents .picjup_Area .columnBox {
  width: 100%;
  height: 550px;
  margin: 0 0 100px;
  background-color: #FFF;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .picjup_Area .columnBox .column_L {
  width: 528px;
}
#mainContents .picjup_Area .columnBox .column_L h4 {
  width: 100%;
  padding: 40px 50px 0 50px;
  box-sizing: border-box;
}
#mainContents .picjup_Area .columnBox .column_L h4 img {
  width: auto;
  height: 71px;
}
#mainContents .picjup_Area .columnBox .column_L .imgBox {
  opacity: 0;
  position: relative;
  width: 528px;
  height: 325px;
  margin: 15px 0 0
}
#mainContents .picjup_Area .columnBox .column_L .imgBox img {
  position: absolute;
  left: 0;
  top: 0;
  width: 528px;
  height: 325px;
}
#mainContents .picjup_Area .columnBox .column_L .link01 {
  width: 300px;
  height: 56px;
  margin: 0 auto;
  padding: 10px 0 0;
}
#mainContents .picjup_Area .columnBox .column_L .link01 a {
  display: block;
  width: 300px;
  height: 56px;
  padding: 18px 0 0;
  box-sizing: border-box;
  background-color: #FFF;
  border: 1px solid #003810;
  font-size: 1.8rem;
  font-weight: 700;
  color: #003810;
  text-align: center;
  transition: all 0.3s ease;
}
#mainContents .picjup_Area .columnBox .column_L .link01 a:hover {
  opacity: 0.7;
  text-decoration: none;
}

#mainContents .picjup_Area .columnBox .column_R {
  width: 472px;
  height: 550px;
  padding: 35px 40px;
  box-sizing: border-box;
  background-image: url("../img/pickup_bk01.jpg");
  background-size: cover;
}
#mainContents .picjup_Area .columnBox .column_R .text02 {
  font-size: 1.6rem;
  font-weight: 400;
  color: #FFF;
}
#mainContents .picjup_Area .columnBox .column_R .text03 {
  padding: 15px 0 0;
  font-family: "Montserrat", serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #FFF;
}
#mainContents .picjup_Area .columnBox .column_R h5 {
  padding: 30px 0 0;
  font-size: 2.3rem;
  font-weight: 600;
  color: #FFF;
  line-height: 1.4;
}
#mainContents .picjup_Area .columnBox .column_R .text04 {
  padding: 60px 0 0;
  font-family: "Montserrat", serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #FFF;
}
#mainContents .picjup_Area .columnBox .column_R .text05 {
  width: 100%;
  margin: 20px 0 0;
  padding: 15px 20px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  box-sizing: border-box;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  #mainContents .picjup_Area {
    width: calc(100% - 50px);
    padding: 80px 0 0;
  }
  #mainContents .picjup_Area h3 {
    padding: 0 0 20px;
    font-size: 3.5rem;
  }
  #mainContents .picjup_Area h3 span {
    display: block;
    padding: 10px 0 0;
    letter-spacing: 0.08em;
  }

  #mainContents .picjup_Area .picjup_Navi {
    padding: 20px 0;
  }
  #mainContents .picjup_Area .picjup_Navi ul {
    list-style-type: none;
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
  }
  #mainContents .picjup_Area .picjup_Navi ul li {
    width: 44%;
    padding: 0 0 20px;
  }
  #mainContents .picjup_Area .picjup_Navi ul li a {
    position: relative;
    font-size: 1.2rem;
  }
  #mainContents .picjup_Area .picjup_Navi ul li a::before,
  #mainContents .picjup_Area .picjup_Navi ul li a::after {
    content: "";
    position: absolute;
    top: 3px;
    right: -15px;
    width: 1px;
    height: 10px;
    border-radius: 9999px;
    background-color: #003810;
    transform-origin: 50% calc(100% - 0.5px);
  }
  #mainContents .picjup_Area .picjup_Navi ul li a::before {
    transform: rotate(45deg);
  }
  #mainContents .picjup_Area .picjup_Navi ul li a::after {
    transform: rotate(-45deg);
  }
  #mainContents .picjup_Area .picjup_Navi ul li a:hover {
    text-decoration: none;
  }

  #mainContents .picjup_Area p.text01 {
    padding: 0 0 70px;
    font-size: 1.4rem;
  }
  #mainContents .picjup_Area .columnBox {
    height: auto;
    margin: 0 0 50px;
  }
  #mainContents .picjup_Area .columnBox .column_L {
    width: 100%;
  }
  #mainContents .picjup_Area .columnBox .column_L h4 {
    width: 100%;
    padding: 20px 25px 0 25px;
  }
  #mainContents .picjup_Area .columnBox .column_L h4 img {
    width: 100%;
    height: auto;
  }
  #mainContents .picjup_Area .columnBox .column_L .imgBox {
    width: 325px;
    height: 200px;
    margin: 10px auto 0
  }
  #mainContents .picjup_Area .columnBox .column_L .imgBox img {
    width: 325px;
    height: 200px;
  }
  #mainContents .picjup_Area .columnBox .column_L .link01 {
    width: 203px;
    height: 36px;
    padding: 15px 0 30px;
  }
  #mainContents .picjup_Area .columnBox .column_L .link01 a {
    width: 203px;
    height: 36px;
    padding: 11px 0 0;
    font-size: 1.2rem;
  }
  #mainContents .picjup_Area .columnBox .column_R {
    width: 100%;
    height: auto;
    padding: 25px;
  }
  #mainContents .picjup_Area .columnBox .column_R .text02 {
    font-size: 1.6rem;
    font-weight: 400;
    color: #FFF;
  }
  #mainContents .picjup_Area .columnBox .column_R .text03 {
    padding: 10px 0 0;
    font-size: 1.2rem;
  }
  #mainContents .picjup_Area .columnBox .column_R h5 {
    padding: 20px 0 0;
    font-size: 1.6rem;
  }
  #mainContents .picjup_Area .columnBox .column_R .text04 {
    padding: 40px 0 0;
    font-size: 1.4rem;
  }
  #mainContents .picjup_Area .columnBox .column_R .text05 {
    margin: 15px 0 0;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1.2rem;
  }
}

#mainContents .item_Area {
  width: 1000px;
  margin: 0 auto;
  padding: 0 0 150px;
}
#mainContents .item_Area p.text01 {
  font-size: 1.6rem;
  line-height: 1.8;
}
#mainContents .item_Area .columnBox {
  width: 100%;
  padding: 60px 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .item_Area .columnBox .column {
  width: 200px;
  padding: 0 0 30px;
}
#mainContents .item_Area .columnBox .column a:hover {
  text-decoration: underline;
  opacity: 0.7;
}
#mainContents .item_Area .columnBox .column img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}
#mainContents .item_Area .columnBox .column p.text02 {
  padding: 5px 0 0;
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
  color: #2B2A30;
}
#mainContents .item_Area .link01 {
  width: 300px;
  height: 56px;
  margin: 0 auto;
  padding: 50px 0 0;
}
#mainContents .item_Area .link01 a {
  display: block;
  width: 300px;
  height: 56px;
  padding: 18px 0 0;
  box-sizing: border-box;
  background-color: #005B29;
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFF;
  text-align: center;
  transition: all 0.3s ease;
}
#mainContents .item_Area .link01 a:hover {
  opacity: 0.7;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  #mainContents .item_Area {
    width: calc(100% - 50px);
    padding: 0 0 70px;
  }
  #mainContents .item_Area p.text01 {
    font-size: 1.4rem;
  }
  #mainContents .item_Area .columnBox {
    padding: 30px 0 0;
  }
  #mainContents .item_Area .columnBox .column {
    width: 33.33%;
    padding: 0 0 20px;
  }
  #mainContents .item_Area .columnBox .column img {
    width: 100%;
    height: auto;
  }
  #mainContents .item_Area .columnBox .column p.text02 {
    padding: 2px 0 0;
    font-size: 1.0rem;
    line-height: 1.2;
  }
  #mainContents .item_Area .link01 {
    width: 300px;
    height: 56px;
    margin: 0 auto;
    padding: 50px 0 0;
  }
  #mainContents .item_Area .link01 a {
    display: block;
    width: 300px;
    height: 56px;
    padding: 18px 0 0;
    box-sizing: border-box;
    background-color: #005B29;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFF;
    text-align: center;
  }
}