@charset "UTF-8";
/**********************************************
  underLogo
***********************************************/
@media screen and (min-width: 850px) {/*TBがあるPCのデザイン*/
  .underLogo {
    width: calc((200/1600) * 100vw);/*ロゴの大きさによって適宜変更*/
    max-width: 120px;/*ロゴの大きさによって適宜変更*/
    height: auto;
    line-height: 1;
    position: fixed;
    top: 10px;
    left: 20px;
    margin: auto;
    z-index: 11;
  }
}
@media screen and (max-width: 849.999px) {/*TBとSPのデザイン*/
  .underLogo {
   display: none;
  }
}
@media screen and (min-width: 769px) {/*PCとTBのデザイン*/}
@media screen and (max-width: 768.999px) {/*SPのデザイン*/}

/**********************************************
  underTtl
***********************************************/
.underTtl {
  position: relative;
}
.underTtl__ttl {
  line-height: 1;
  font-weight: bold;
  position: relative;
}
.underTtl__ttl::after {
  content: "";
  display: block;
  width: 2em;
  height: 0.034em;
  background-color: #000;
  position: absolute;
  bottom: -0.4em;
  left: 0;
  right: 0;
  margin: auto;
}
.underTtl__ttlH2 {
  line-height: 1;
}
.underTtl__ttlH2._shadow {
  text-shadow: 0 0 10px #FFF, 0 0 15px #FFF, 0 0 20px #FFF;
}
.underTtl__ttlH3 {
  line-height: 1;
}
.underTtl__en {
  display: block;
  color: #A55E60;
  font-weight: bold;
  line-height: 1;
  position: relative;
}
.underTtl__en::after {
  content: "";
  display: block;
  width: 2em;
  height: 0.034em;
  background-color: #A55E60;
  position: absolute;
  left: 0;
  margin: auto;
}
.underTtl__year {
  font-weight: bold;
  line-height: 1;
}
@media screen and (min-width: 769px) {/*PCとTBのデザイン*/
  .underTtl__ttlH2 {
    font-size: 1.875em;
  }
  .underTtl__ttlH3 {
    font-size: 1.5em;
  }
  .underTtl__en {
    font-size: 16px;
    margin-bottom: 1em;
  }
  .underTtl__en::after {
    bottom: -0.4em;
  }
  .underTtl__year {
    font-size: 1.2em;
    margin-top: 1.5em;
  }
}
@media screen and (max-width: 768.999px) {/*SPのデザイン*/
  .underTtl__ttlH2 {
    font-size: 1.5em;
  }
  .underTtl__ttlH3 {
    font-size: 1.25em;
  }
  .underTtl__en {
    font-size: 14px;
    margin-bottom: 1em;
  }
  .underTtl__en::after {
    bottom: -0.4em;
  }
  .underTtl__year {
    font-size: 1em;
    margin-top: 1em;
  }
}
/**********************************************
  ancLink
***********************************************/
.ancLink {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.ancLink__link {
  display: block;
  min-width: 57px;
  line-height: 1;
  padding: 0.3em 1em;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background-color: #A55E60;
  cursor: pointer;
}
.ancLink__link._transparent {
  font-size: 1em;
  color: #000;
  background-color: transparent;
}
@media screen and (min-width: 850px) {/*TBがあるPCのデザイン*/
  .ancLink {
    gap: 20px;
  }
}
@media screen and (max-width: 849.999px) {/*TBとSPのデザイン*/
  .ancLink {
    gap: 15px;
  }
}
/**********************************************
  imgTtl
***********************************************/
.imgTtl {
  display: flex;
  justify-content: center;
  position: relative;
}
.imgTtl__ttlArea {
  /*display: flex;
  flex-direction: column-reverse;*/
  background-color: #dfa7a9;
  position: relative;
}
.imgTtl__ttlArea::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #dfa7a9;
  z-index: 9;
}
.imgTtl__ttl {
  position: absolute;
  z-index: 10;
  line-height: 1;
}
.imgTtl__ttl::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  bottom: -15px;
  left: 0;
  background-color: #000;
}
.imgTtl__catch {
  position: absolute;
  font-size: 1em;
  z-index: 10;
}
.imgTtl__imgArea {
  position: relative;
}
.imgTtl__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 850px) {/*TBがあるPCのデザイン*/
  .imgTtl {
    width: calc((1080/1600)*100vw);
    max-width: 1080px;
    min-width: calc(800px - 20px);
    height: 414px;
  }
  .imgTtl__ttlArea {
    display: flex;
    flex-direction: column-reverse;
    width: calc((190/1080)*100vw);
    max-width: 190px;
    padding: 40px 10px 40px 40px;
  }
  .imgTtl__ttlArea::after {
    border-width: 414px 0 0 146px;/*ピンクの三角形デザインサイズ*/
    top: 0px;
    right: -145px;
  }
  .imgTtl__ttl {
    font-size: 2.25em;
    margin-right: -550px;/*imgTtl__imgArea min-width*/
    bottom: 56px;
  }
  .imgTtl__catch {
    margin-right: -550px;/*imgTtl__imgArea min-width*/
    bottom: 146px;
  }
  .imgTtl__imgArea {
    width: calc((890/1080)*100vw);
    max-width: calc(1080px - 190px);
    min-width: 550px;
  }
}
@media screen and (max-width: 849.999px) {/*TBとSPのデザイン*/
  .imgTtl {
    width: 100%;
    height: 267px;
  }
  .imgTtl__ttlArea {
    width: calc((150/850)*100vw);
    max-width: 150px;
    padding: 20px 5px 20px 20px;
  }
  .imgTtl__ttlArea::after {
    border-width: 267px 0 0 146px;/*ピンクの三角形デザインサイズ*/
    top: 0px;
    right: -146px;
  }

  .imgTtl__ttl {
    font-size: 1.8em;
    margin-right: -550px;/*imgTtl__imgArea min-width*/
    bottom: 28px;
  }
  .imgTtl__ttl::after {
    bottom: -8px;
  }
  .imgTtl__catch {
    line-height: 1.5;
    margin-right: -550px;/*imgTtl__imgArea min-width*/
    bottom: 73px;
  }
  .imgTtl__imgArea {
    width: calc((890/1080)*100vw);
    max-width: calc(1080px - 190px);
    min-width: 550px;
  }
}
@media screen and (max-width: 768.999px) {/*SPのデザイン*/
  .imgTtl {
    width: 100%;
    height: auto;
    flex-direction: column-reverse;
  }
  .imgTtl__ttlArea {
    width: 100%;
    max-width: inherit;
    height: auto;
    padding: 20px;
    position: static;
  }
  .imgTtl__ttlArea::after {
    border-width: 150px 200px 0 0;/*ピンクの三角形デザインサイズ*/
    top: 0px;
    right: -146px;
  }

  .imgTtl__ttl {
    font-size: 1.8em;
    margin-right: 0;
    position: relative;
    bottom: inherit;
  }
  .imgTtl__ttl::after {
    bottom: -4px;
  }
  .imgTtl__catch {
    line-height: 1.5;
    margin-right: 0;
    margin-top: 20px;
    position: static;
    bottom: inherit;
  }
  .imgTtl__imgArea {
    width: 100%;
    height: auto;
    min-height: 230px;
    max-width: inherit;
    min-width: inherit;
  }
}
@media screen and (max-width: 768.999px) {/*SPのデザイン*/
  .imgTtl__ttl {
    line-height: 1.5;
  }
}
/**********************************************
  posted
***********************************************/
.posted {
  text-align: right;
}
.posted__time {
  display: block;
}

/**********************************************
  txtArea
***********************************************/
.txtArea__txt {
  font-size: 1em;
  margin-top: 1em;
}

/**********************************************
  pastNews
***********************************************/
.pastNews__inner {
  background-color: #DFA7A9;
}
.pastNews__ttl {
  text-align: center;
  position: relative;
}
.pastNews__listArea {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.pastNews__list:last-child {
  margin-right: 0;
}
.pastNews__link {
  line-height: 1;
  padding: 0.3em 1em;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: #A55E60;
  cursor: pointer;
}
@media screen and (min-width: 850px) {/*TBがあるPCのデザイン*/
  .pastNews__inner {
    padding: 60px 0 150px;
  }
  .pastNews__ttl {
    margin-top: 40px;
  }
  .pastNews__listArea {
    max-width: 1080px;
    margin-top: 116px;
    gap: 20px;
  }
}
@media screen and (max-width: 849.999px) {/*TBとSPのデザイン*/
  .pastNews__inner {
    padding: 30px 0 75px;
  }
  .pastNews__ttl {
    margin-top: 20px;
  }
  .pastNews__listArea {
    max-width: 90%;
    margin-top: 58px;
    gap: 15px;
  }
}
/**********************************************
  form
***********************************************/
.form__bgcolor::after {
  transform: none;
  transform-origin: inherit;
}

/**********************************************
  news
***********************************************/
.news__section._color {
  background-color: #fde6e7;
}
.news__inner {
    width: 100%;
    margin: 0 auto;
}
.news__inner._color {
  width: 100%;
}
.news__ancLink {
  width: 90%;
  margin: 0 auto;
}
.news__ttlAlea {
  text-align: center;
}
.news__imgTtl {
  margin: 0 auto;
}
.news__posted {
  margin: 0 auto;
}
.news__txtArea {
  margin: 0 auto;
}
.news__gallery {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 850px) {/*TBがあるPCのデザイン*/
  .news__main {
    margin-top: 50px;
  }
  .news__section._color {
    padding: 0 0 100px;
    margin-top: 100px;
  }
  .news__inner {
      max-width: 1080px;
      margin: 0 auto;
      padding-top: 100px;
  }
  .news__inner._color {
    max-width: 1080px;
    margin: 0 auto;
  }
  .news__ancLink {
    max-width: 1080px;
    margin: 50px auto 0;
  }
  .news__ttlAlea {
    margin-top: 100px;
  }
  .news__posted {
    width: calc((1080/1600)*100vw);
    max-width: 1080px;
    min-width: calc(800px - 20px);
  }
  .news__txtArea {
    width: calc((1080/1600)*100vw);
    max-width: 1080px;
    min-width: calc(800px - 20px);
  }
  .news__gallery {
    width: calc((1080/1600)*100vw);
    max-width: 1080px;
    min-width: calc(800px - 20px);
    margin: 50px auto 0;
    gap: 20px;
  }
  .news__pastNewsArea {
    margin-top: 100px;
  }
}
@media screen and (max-width: 849.999px) {/*TBとSPのデザイン*/
  .news__main{
    margin-top: 80px;
  }
  .news__section._color {
    padding: 0 0 50px;
    margin-top: 50px;
  }
  .news__inner {
      max-width: 90%;
      margin: 0 auto;
      padding-top: 60px;
  }
  .news__inner._color {
    max-width: 90%;
    margin: 0 auto;
  }
  .news__ancLink {
    max-width: 90%;
    margin: 25px auto 0;
  }
  .news__ttlAlea {
    margin-top: 50px;
  }
  .news__posted {
    width: 100%;
  }
  .news__txtArea {
    width: 100%;
  }
  .news__gallery {
    width: 100%;
    margin: 25px auto 0;
    gap: 20px;
  }
  .news__pastNewsArea {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768.999px) {/*SPのデザイン*/
  .news__gallery {
    flex-wrap: wrap;
  }
  .news__item {
    width: 47%;
  }
  .news__gallery {
    gap: 10px;
  }
}
/**********************************************
  Modaal
***********************************************/
/*全て共通：hideエリアをはじめは非表示*/
.hide-area{
	display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before{
	background:#ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
	background:#666;
}
/**********************************************
  privacy
***********************************************/
.privacy__inner {
    width: 100%;
    margin: 0 auto;
}
.privacy__ttlAlea {
  text-align: center;
}
.privacy__txtArea {
  margin: 0 auto;
}
@media screen and (min-width: 850px) {/*TBがあるPCのデザイン*/
  .privacy__wrapper {
    margin-top: 100px;
    margin-bottom: 100px;
  }
  .privacy__inner {
    width: calc((1080/1600)*100vw);
    max-width: 1080px;
    margin-top: 100px;
  }
  .privacy__ttlAlea {
    margin-top: 100px;
  }
  .privacy__ttl {
    font-size: 2em;
  }
  .privacy__txtArea {
    width: calc((1080/1600)*100vw);
    max-width: 1080px;
  }
}
@media screen and (max-width: 849.999px) {/*TBとSPのデザイン*/
  .privacy__wrapper {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .privacy__main{
    margin-top: 80px;
  }
  .privacy__inner {
      max-width: 90%;
      margin: 50px auto 0;
  }
  .privacy__ttlAlea {
    margin-top: 50px;
  }
  .privacy__ttl {
    font-size: 1.8em;
  }
  .privacy__txtArea {
    width: 100%;
  }
}

/**********************************************
  company
***********************************************/
.company {
  background-image: url(../images/company/company_mainVisu01.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
}
.company__ttlAlea._center {
  text-align: center;
}
.company__section._color {
  background-color: #fde6e7;
}
.company__inner {
    width: 100%;
}
.company__inner._color {
  width: 100%;
  margin: 0 auto;
}
.company__ancLink {
  justify-content: center;
  text-shadow: 0 0 10px #FFF, 0 0 15px #FFF, 0 0 20px #FFF;
}
.company__txt._center{
  text-align: center;
}
.company__link {
  display: block;
  font-size: 1.125em;
  font-weight: bold;
  color: #A55E60;
  text-align: center;
  padding: 1em;
  margin: 0 auto;
  border: 5px solid #A55E60;
}
@media screen and (min-width: 850px) {/*TBがあるPCのデザイン*/
  .company__section._color {
    padding: 1px 0 100px;
  }
  .company__inner {
    width: calc((1080/1600)*100vw);
    max-width: 1080px;
    min-width: 745px;
    margin: 100px auto 0;
  }
  .company__inner._color {
    width: calc((1080/1600)*100vw);
    max-width: 1080px;
    min-width: 745px;
    margin: 40px auto 0;
  }
  .company__ttlAlea {
  margin-top: 100px;
  }
  .company__ancLink {
    margin-top: 120px;
  }
  .company__visionTxt {
    margin-top: calc((80/1600)*100);
    margin-bottom: calc((200/1600)*100);
    margin-left: calc((100/1600)*100vw);
    margin-right: calc((100/1600)*100vw);
  }
  .company__pointImg {
    margin: 80px auto 100px;
  }
  .company__table {
    margin-top: 80px;
    margin-bottom: 100px;
  }
  .company__txt {
    margin-top: 80px;
  }
  .company__banner {
    margin-top: 20px;
    margin-bottom: 96px;
  }
  .company__btn {
    margin-top: 25px;
    margin-bottom: 200px;
  }
  .company__link {
    width: calc((513/1600) * 100vw);
    max-width: 513px;
    min-width: 250px;
  }
}
@media screen and (max-width: 849.999px) {/*TBとSPのデザイン*/
  .company__section._color {
    padding: 1px 0 50px;
  }
  .company__inner {
    width: 90%;
    margin: 50px auto 0;
  }
  .company__inner._color {
    width: 90%;
    margin: 20px auto 0;
  }
  .company__ttlAlea {
  margin-top: 70px;
  }
  .company__ancLink {
    margin-top: 60px;
  }
  .company__visionTxt {
    margin-top: calc((40/750)*100);
    margin-bottom: calc((100/750)*100);
    margin-left: calc((50/750)*100vw);
    margin-right: calc((50/750)*100vw);
  }
  .company__pointImg {
    margin: 40px auto 50px;
  }
  .company__table {
    margin-top: 40px;
    margin-bottom: 50px;
  }
  .company__txt {
    margin-top: 40px;
  }
  .company__banner {
    margin-top: 10px;
    margin-bottom: 48px;
  }
  .company__btn {
    margin-top: 25px;
    margin-bottom: 100px;
  }
  .company__link {
    width: calc((256/750) * 100vw);
    min-width: 250px;
  }
}
@media screen and (max-width: 768.999px) {/*SPのみのデザイン*/
  .company__ancLink {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
    gap: 10px;
  }
}
/**********************************************
  vision
***********************************************/
.vision__inner {
  margin-top: 84px;
  background-color: rgba(255,255,255,0.4);
  box-shadow: 0px 0px 30px 0px rgba(255,255,255,0.8);
  border-radius: 5px;
  padding: 1em;
  margin-top: 100px;
}
.vision__ttlAlea {
  margin-top: 0;
}

/**********************************************
  visionTxt
***********************************************/
.visionTxt {
  font-weight: bold;
}
.visionTxt__txt {
  margin-top: 1em;
}
@media screen and (max-width: 849.999px) {/*TBとSPのデザイン*/
  .visionTxt {
    font-size: 1.5em;
  }
  .visionTxt__txt {
    line-height: 2;
  }
}
@media screen and (max-width: 768.999px) {/*SPのデザイン*/
  .visionTxt {
    font-size: 1.3em;
  }
  .visionTxt__txt {
    line-height: 1.8;
  }
}
/**********************************************
  pointImg
***********************************************/
.pointImg__txt {
  height: auto;
  margin-top: 1em;
}
.pointImg__txt._right {
  text-align: right;
}
.pointImg__imgArea {
  height: auto;
}
.pointImg__caption {
  font-size: 0;
}
@media screen and (min-width: 850px) {/*TBがあるPCのデザイン*/
  .pointImg {
    position: relative;
    width: 100%;
  }
  .pointImg__txt {
    width: calc((580/1600) * 100vw);
    max-width: 580px;
    min-width: 460px;
    margin-right: 80px;
  }
  .pointImg__imgArea {
    position: absolute;
    width: calc((400/1600) * 100vw);
    max-width: 400px;
    bottom: -100px;
    right: 0;
  }
}
@media screen and (max-width: 849.999px) {/*TBとSPのデザイン*/
  .pointImg {
    width: 100%;;
  }
  .pointImg__txt {
    width: 100%;
  }
  .pointImg__imgArea {
    width: calc((400/800) * 100vw);
    max-width: 400px;
    min-width: 200px;
    margin-top: 20px;
    margin-bottom: -50px;
  }
}

/**********************************************
  name
***********************************************/
.name {
  font-size: 1.5em;
  font-weight: bold;
  display: inline-block;
  margin-left: 1em;
}

/**********************************************
  enTxt
***********************************************/
.enTxt {
  display: block;
  font-size: 14px;
  line-height: 1;
  margin-top: 7px;
}

/**********************************************
  boxFlex
***********************************************/
.boxFlex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.boxFlex__txt {
  font-size: 1em;
}
@media screen and (min-width: 850px) {/*TBがあるPCのデザイン*/
  .boxFlex__ttl {
    margin-top: 80px;
  }
}
@media screen and (min-width: 768.999px) {/*PCとTBのデザイン*/
  .boxFlex__item {
    width: calc((100% - 47px) / 2);
    height: auto;
  }
  .boxFlex__txt {
    margin-top: 30px;
  }
}
@media screen and (max-width: 849.999px) {/*TBのデザイン*/
  .boxFlex__ttl {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768.999px) {/*SPのデザイン*/
  .boxFlex__item {
    width: 100%;
    height: auto;
  }
  .boxFlex__ttl {
    margin-top: 40px;
  }
  .boxFlex__txt {
    margin-top: 15px;
  }
}

/**********************************************
  lineTable
***********************************************/
.lineTable {
  width: 100%;
  border-collapse: separate;
}
.lineTable__th {
  font-size: 1.125em;
  font-weight: bold;
  color: #A55E60;
  padding: 1em 1.25em;
  position: relative;
}
.lineTable__th::before {
  content: "";
  position: absolute;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #A55E60;
}
.lineTable__td {
  font-size: 1.125em;
  font-weight: bold;
  color: #000;
  padding: 1em 1.25em;
  position: relative;
}
.lineTable__td::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 2px;
  background-color: #ccc;
}
@media screen and (min-width: 769px) {/*PCとTBのデザイン*/
  .lineTable__th {
    width: 23%;
  }
  .lineTable__th::before {
    width: calc(100% - 20px);
  }
  .lineTable__td {
    width: 77%;
  }
  .lineTable__td::before {
    width: 100%;
  }
}
@media screen and (max-width: 768.999px) {/*SPのデザイン*/
  .lineTable__th {
    display: block;
    width: 100%;
    line-height: 1;
    padding: 1em 1em 0.8em;
  }
  .lineTable__th::before {
    width: 100%;
  }
  .lineTable__td {
    display: block;
    width: 100%;
    line-height: 1;
    padding: 0.8em 1em 1em;
  }
}
/**********************************************
  historyTable
***********************************************/
.historyTable {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.125em;
}
.historyTable__body {
  position: relative;
  display: block;/*safari対策*/
}
.historyTable__body::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  background-color: #ccc;
}
.historyTable__th {
  position: relative;
}
.historyTable__th::before {
  position: absolute;
  content: "";
  background-color: #A55E60;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.historyTable__td {
  font-size: 1.125em;
}
@media screen and (min-width: 769px) {/*PCとTBのデザイン*/
  .historyTable__body::before {
    left: 2.5em;
  }
  .historyTable__th {
    width: 15.74%;
    min-width: 289px;
    padding: 1.5em 0 1.5em 6.25em;
  }
  .historyTable__th::before {
    left: 2.3em;
  }
  .historyTable__td {
    padding: 1.5em 1em 1.5em;
  }
}
@media screen and (max-width: 768.999px) {/*SPのデザイン*/
  .historyTable__body::before {
    left: 2em;
  }
  .historyTable__th {
    display: block;
    width: 100%;
    min-width: inherit;
    line-height: 1.5;
    padding: 1em 1em 0.5em 4em;
  }
  .historyTable__th::before {
    left: 1.8em;
  }
  .historyTable__td {
    display: block;
    width: 100%;
    min-width: inherit;
    line-height: 1.5;
    padding: 0.5em 1em 1.5em 4em;
  }
}
/**********************************************
  banner
***********************************************/
.banner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.banner__item {
  position: relative;
}
.banner__ttl {
  position: absolute;
  width: 100%;
  height: 1.125em;
  font-size: 1.125em;
  font-weight: bold;
  line-height: 1;
  top: 0;
  bottom: 0;
  margin: auto;
  padding-left: 1.125em;
}
@media screen and (min-width: 769px) {/*PCとTBのデザイン*/
  .banner {
    gap: 40px;
  }
  .banner__item {
    width: calc((100% - 40px)/ 2);
    max-width: 520px;
  }
}
@media screen and (max-width: 768.999px) {/*SPのデザイン*/
  .banner {
    justify-content: center;
    flex-direction: column;
  }
  .banner {
    gap: 20px;
  }
  .banner__item {
    width: 100%;
    max-width: 520px;
  }
}
/**********************************************
  landing 個別アンカーリンクの調整
***********************************************/
@media screen and (min-width: 850px) {/*TBがあるPCのデザイン*/
  .landing-whiteTop {
    scroll-margin-top: 50px;
  }
  .landing-colorTop {
    scroll-margin-top: 0;
  }
  .landing-thisYear {
    scroll-margin-top: 50px;
  }
}
@media screen and (max-width: 849.999px) {/*TBとSPのデザイン*/
  .landing-whiteTop {
    scroll-margin-top: 0;
  }
  .landing-colorTop {
    scroll-margin-top: -10px;
  }
  .landing-thisYear {
    scroll-margin-top: 0;
  }
}

/**********************************************
  goods
***********************************************/
.goods__mainView {
  display: flex;
  background-image: url(../images/goods/goods_bgimg01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.goods__section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.goods__section._product01 {
  background-image: url(../images/goods/goods_bgimg02.jpg);
}
.goods__section._product02 {
  background-image: url(../images/goods/goods_bgimg03.jpg);
}
.goods__section._product03 {
  background-image: url(../images/goods/goods_bgimg04.jpg);
}
.goods__inner {
  display: flex;
  align-items: center;
  /*margin-left: auto;
  margin-right: auto;*/
}
.goods__inner._left {
  justify-content: flex-start;
}
.goods__inner._right {
  justify-content: flex-end;
}
.goods__txtArea {
  background-color: #fff;
  position: relative;
}
.goods__txtArea::before {
  position: absolute;
  content: "";
}
.goods__txtArea._product01::before {
  background-image: url(../images/goods/goods_icon01.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.goods__txtArea._product02::before {
  background-image: url(../images/goods/goods_icon01.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.goods__txtArea._product03::before {
  background-image: url(../images/goods/goods_icon01.png);
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width: 850px) {/*TBがあるPCのデザイン*/
  .goods__inner {
    width: calc((1080/1600) * 100vw);
    max-width: 1080px;
    margin-top: 100px;
    margin-bottom: 100px;
  }
  .goods__ttlAlea {
    margin-top: 165px;
  }
  .goods__txtArea {
    width: calc((580/1600) * 100vw);
    height: auto;
    max-width: 580px;
    padding: 40px;
    margin-top: 20px;
  }
  .goods__txtArea._product01::before {
    width: calc((226/1600)*100vw);
    height: calc((240/1600)*100vw);
    bottom: calc((130/1600)*-100vw);
    right: calc((150/1600)*-100vw);
  }
  .goods__txtArea._product02::before {
    width: calc((226/1600)*100vw);
    height: calc((240/1600)*100vw);
    bottom: calc((130/1600)*-100vw);
    left: calc((190/1600)*-100vw);
  }
  .goods__txtArea._product03::before {
    width: calc((226/1600)*100vw);
    height: calc((240/1600)*100vw);
    bottom: calc((130/1600)*-100vw);
    right: calc((150/1600)*-100vw);
    }
}
@media screen and (max-width: 849.999px) {/*TBとSPのデザイン*/
  .goods__inner {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .goods__ttlAlea {
    margin-top: 165px;
  }
  .goods__txtBox {
    width: 100%;
    margin-left: calc((40/750) * 100vw);
    margin-right: calc((40/750) * 100vw);
  }
  .goods__txtArea {
    padding: 30px;
    margin-top: 30px;
  }
  .goods__txtArea._product01::before {
    width: calc((226/750)*100vw);
    height: calc((240/750)*100vw);
    bottom: calc((210/750)*-100vw);
    left: 0;
    right: 0;
    margin: auto;
  }
  .goods__txtArea._product02::before {
    width: calc((226/750)*100vw);
    height: calc((240/750)*100vw);
    bottom: calc((210/750)*-100vw);
    left: 0;
    right: 0;
    margin: auto;
  }
  .goods__txtArea._product03::before {
    width: calc((226/750)*100vw);
    height: calc((240/750)*100vw);
    bottom: calc((210/750)*-100vw);
    left: 0;
    right: 0;
    margin: auto;
    }
}