@charset "UTF-8";
/*====================
common
====================*/
html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", YuGothic, "游ゴシック体", "Yu Gothic", "游ゴシック", "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}

button {
  outline: none;
  border: none;
  cursor: pointer;
}

span {
  display: inline-block;
}

img {
  display: inline-block;
  vertical-align: top;
}

picture {
  display: block;
}

picture img {
  width: 100%;
  height: auto;
}

h1, h2, h3 {
  display: block;
  font-weight: normal;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: 0.7s;
}
a p, a span, a img {
  text-decoration: none;
  transition: 0.7s;
}
a:hover {
  opacity: 0.6;
}

ul {
  list-style: none;
}

.pcBr {
  display: block;
}
@media only screen and (max-width: 760px) {
  .pcBr {
    display: none;
  }
}

.spBr {
  display: none;
}
@media only screen and (max-width: 760px) {
  .spBr {
    display: block;
  }
}

/*====================
sass class
====================*/
/*@mixin fz-sp($font_size: 10) {
  font-size: $font_size * 1px; //vw非対応の場合の保険
  font-size: pxtovw($font_size); //フォントをvw指定
}*/
/*====================
サイト構築ベース
====================*/
.wrap {
  width: 100%;
  height: 100%;
}

.container {
  margin: 0;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.ly-center {
  text-align: center;
}

.ly-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.ly-wrap .ly-left {
  width: 50%;
}
.ly-wrap .ly-right {
  width: 50%;
}

.ly-textRight {
  text-align: right;
}
@media only screen and (max-width:767px) {
  .ly-textRight {
    text-align: left;
  }
}

.ly-textLeft-sp {
  text-align: left !important;
}

.pageTop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 10;
  width: 52px;
  height: 60px;
  cursor: pointer;
}
.pageTop a {
  transition: 0s;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  width: 52px;
  height: 60px;
}
.pageTop img {
  width: 52px;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media only screen and (min-width: 761px) {
  .pageTop img.hoverOff {
    display: block;
  }
  .pageTop img.hoverOn {
    display: none;
  }
}
@media only screen and (max-width:767px) {
  .pageTop img.hoverOff {
    display: none;
  }
  .pageTop img.hoverOn {
    display: block;
  }
}
@media only screen and (min-width: 761px) {
  .pageTop:hover img.hoverOff {
    display: none;
  }
  .pageTop:hover img.hoverOn {
    display: block;
  }
}

.header {
  position: absolute;
  top: 0px;
  z-index: 2;
}
.header .ly-wrap {
  display: block;
}
.header .ly-left img {
  margin: 22px 42px;
  width: 138px;
  height: auto;
}
@media only screen and (max-width:990px) {
  .header .ly-left img {
    margin: 2.2vw 4.2vw;
    width: 12vw;
  }
}
@media only screen and (max-width:767px) {
  .header .ly-left img {
    width: 19vw;
  }
}

/*---------------------
loading
---------------------*/
#loading {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 1000;
  background: #FFF;
  box-sizing: border-box;
}
#loading .loader {
  width: 48px;
  height: 48px;
  display: inline-block;
  position: relative;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}
#loading .loader::after,
#loading .loader::before {
  content: "";
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #CCC;
  position: absolute;
  left: 0;
  top: 0;
  animation: animloader 2s linear infinite;
}
#loading .loader::after {
  animation-delay: 1s;
}
@keyframes animloader {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.el-commonWrapBlock {
  background: #FFF;
  padding: 105px 80px 72px;
  margin: 100px auto 0;
  border-radius: 40px;
  max-width: 1100px;
  width: 95%;
}
@media only screen and (max-width:1100px) {
  .el-commonWrapBlock {
    padding: 8.5vw 6vw 7.2vw;
    margin: 10vw auto 0;
  }
}
@media only screen and (max-width:767px) {
  .el-commonWrapBlock {
    border-radius: 20px;
    padding: 5% 3%;
  }
}
@media only screen and (max-width: 430px) {
  .el-commonWrapBlock {
    padding: 7% 3% 3%;
  }
}
.el-commonWrapBlock .el-commonBgBlock-textBig {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
}
@media only screen and (max-width:767px) {
  .el-commonWrapBlock .el-commonBgBlock-textBig {
    font-size: 22px;
    font-size: 1.375rem;
    text-align: left;
  }
}
@media only screen and (max-width: 600px) {
  .el-commonWrapBlock .el-commonBgBlock-textBig {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 430px) {
  .el-commonWrapBlock .el-commonBgBlock-textBig {
    font-size: 18px;
    font-size: 1.125rem;
    text-align: left;
  }
}

.el-commonGreenLineBlock {
  border: solid 2px #00A33E;
  padding: 36px 40px 40px;
  border-radius: 20px;
  position: relative;
}
@media only screen and (max-width:1100px) {
  .el-commonGreenLineBlock {
    padding: 4vw 4vw 3vw;
  }
}
@media only screen and (max-width:990px) {
  .el-commonGreenLineBlock {
    padding-bottom: 32px;
  }
}
@media only screen and (max-width:767px) {
  .el-commonGreenLineBlock {
    border: solid 4px #00A33E;
    padding: 6% 4% 4%;
  }
}
@media only screen and (max-width: 430px) {
  .el-commonGreenLineBlock {
    border-radius: 12px;
  }
}
.el-commonGreenLineBlock-title {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0;
  top: -25px;
}
@media only screen and (max-width:767px) {
  .el-commonGreenLineBlock-title {
    top: -3vw;
  }
}

.el-sect-title {
  margin: 60px auto 0 auto;
}
@media only screen and (max-width:1100px) {
  .el-sect-title {
    margin: 6vw auto 0;
  }
}

.el-sect-copy {
  margin: 60px auto 0 auto;
}
@media only screen and (max-width:1100px) {
  .el-sect-copy {
    margin: 6vw auto 0;
  }
}

.el-sarani {
  width: 110px;
  height: auto;
  margin: 37px auto;
}
@media only screen and (max-width:1100px) {
  .el-sarani {
    margin: 3.7vw auto 3.7vw;
  }
}
@media only screen and (max-width:767px) {
  .el-sarani {
    width: 167px;
    margin: 30px auto;
  }
}
@media only screen and (max-width: 430px) {
  .el-sarani {
    width: 110px;
  }
}

.el-commonYellowBgBlock {
  border-radius: 20px;
  padding-top: 28px;
  background: #FFF6D7;
  max-width: 840px;
  width: 100%;
}
.el-commonYellowBgBlock .el-commonBgBlock-title {
  color: #5C370C;
  font-weight: bold;
  font-size: 21px;
  font-size: 1.3125rem;
  letter-spacing: 3px;
}
@media only screen and (max-width:990px) {
  .el-commonYellowBgBlock .el-commonBgBlock-title {
    line-height: 1.5;
  }
}
@media only screen and (max-width: 600px) {
  .el-commonYellowBgBlock .el-commonBgBlock-title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 430px) {
  .el-commonYellowBgBlock .el-commonBgBlock-title {
    font-size: 16px;
    font-size: 1rem;
  }
}
.el-commonYellowBgBlock .el-commonBgBlock-title span {
  color: #00A33E;
  font-weight: bold;
  font-size: 28px;
  font-size: 1.75rem;
  letter-spacing: 3px;
}
@media only screen and (max-width: 600px) {
  .el-commonYellowBgBlock .el-commonBgBlock-title span {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 430px) {
  .el-commonYellowBgBlock .el-commonBgBlock-title span {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.el-commonYellowBgBlock .ly-wrap {
  justify-content: center;
  align-items: flex-end;
}

.el-commonGreenBgBlock {
  border-radius: 20px;
  padding-top: 28px;
  background: #E5F1E2;
  max-width: 840px;
  width: 100%;
}
@media only screen and (max-width:767px) {
  .el-commonGreenBgBlock {
    padding-top: 3vw;
  }
}
.el-commonGreenBgBlock .el-commonBgBlock-title {
  color: #5C370C;
  font-weight: bold;
  font-size: 21px;
  font-size: 1.3125rem;
  letter-spacing: 3px;
}
@media only screen and (max-width:767px) {
  .el-commonGreenBgBlock .el-commonBgBlock-title {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 600px) {
  .el-commonGreenBgBlock .el-commonBgBlock-title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 430px) {
  .el-commonGreenBgBlock .el-commonBgBlock-title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.el-commonGreenBgBlock .el-commonBgBlock-title span {
  color: #00A33E;
  font-weight: bold;
  font-size: 28px;
  font-size: 1.75rem;
  letter-spacing: 3px;
}
@media only screen and (max-width:767px) {
  .el-commonGreenBgBlock .el-commonBgBlock-title span {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
@media only screen and (max-width: 600px) {
  .el-commonGreenBgBlock .el-commonBgBlock-title span {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 430px) {
  .el-commonGreenBgBlock .el-commonBgBlock-title span {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.el-commonGreenBgBlock .ly-wrap {
  justify-content: center;
  align-items: flex-end;
}

.el-commonBgBlock-text {
  color: #5C370C;
  text-align: left;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
}
@media only screen and (max-width: 430px) {
  .el-commonBgBlock-text {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

.el-noteText {
  color: #221815;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.6;
}
@media only screen and (max-width:767px) {
  .el-noteText {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 430px) {
  .el-noteText {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.el-noteTextBig {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.6;
}
@media only screen and (max-width:990px) {
  .el-noteTextBig {
    font-weight: bold;
  }
}
@media only screen and (max-width: 430px) {
  .el-noteTextBig {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.el-commonBeigeBgBlock {
  border-radius: 20px;
  padding-top: 28px;
  background: #F5F1DF;
  max-width: 940px;
  width: 100%;
}
.el-commonBeigeBgBlock .el-commonBgBlock-title {
  color: #5C370C;
  font-weight: bold;
  font-size: 28px;
  font-size: 1.75rem;
  letter-spacing: 3px;
}
@media only screen and (max-width:767px) {
  .el-commonBeigeBgBlock .el-commonBgBlock-title {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.el-commonWhiteBlock {
  border-radius: 20px;
  padding: 30px 40px;
  background: #FFF;
  width: 818px;
}
@media only screen and (max-width:767px) {
  .el-commonWhiteBlock {
    width: 100%;
    padding: 3vw 4vw;
  }
}

.el-commonLightgreenBgBlock {
  border-radius: 20px;
  padding-top: 40px;
  background: #EBF4C9;
  max-width: 1100px;
  width: 95%;
}
@media only screen and (max-width:767px) {
  .el-commonLightgreenBgBlock {
    padding-top: 4vw;
  }
}
.el-commonLightgreenBgBlock .el-commonBgBlock-title {
  color: #5C370C;
  font-weight: bold;
  font-size: 28px;
  font-size: 1.75rem;
  letter-spacing: 3px;
}
@media only screen and (max-width:767px) {
  .el-commonLightgreenBgBlock .el-commonBgBlock-title {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.el-commongrayborderBlock {
  border-radius: 20px;
  padding-top: 28px;
  border: solid 1px #CCC;
  width: 960px;
}
@media only screen and (max-width:767px) {
  .el-commongrayborderBlock {
    padding-top: 2.8vw;
  }
}

.el-commonGreenLineBlock-subtitle {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: solid 2px #00A33E;
  text-align: left;
}
@media only screen and (max-width:767px) {
  .el-commonGreenLineBlock-subtitle {
    padding-bottom: 5px;
  }
}

.el-sect-block-text {
  color: #00A33E;
  font-weight: bold;
  font-size: 28px;
  font-size: 1.75rem;
  letter-spacing: 3px;
}
@media only screen and (max-width: 600px) {
  .el-sect-block-text {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 430px) {
  .el-sect-block-text {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 380px) {
  .el-sect-block-text {
    font-size: 16px;
    font-size: 1rem;
  }
}

.el-greenText {
  color: #00A33E;
  font-weight: bold;
  font-size: 20px;
  font-size: 1.25rem;
}

.po-Icon {
  width: 86px;
  height: auto;
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  margin: auto;
}
@media only screen and (max-width:767px) {
  .po-Icon {
    width: 46px;
    top: -30px;
  }
}

/*----------------------------
動き
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1;
}

.timing02 {
  transition-delay: 0.2s;
}

.timing03 {
  transition-delay: 0.4s;
}

.move-jump.on {
  animation: jump 1.1s linear 0s 1;
}

@keyframes jump {
  0% {
    transform: scale(0.8, 1.4) translate(0%, -100%);
  }
  10% {
    transform: scale(0.8, 1.4) translate(0%, -15%);
  }
  20% {
    transform: scale(1.4, 0.6) translate(0%, 30%);
  }
  30% {
    transform: scale(0.9, 1.1) translate(0%, -10%);
  }
  40% {
    transform: scale(0.95, 1.2) translate(0%, -30%);
  }
  50% {
    transform: scale(0.95, 1.2) translate(0%, -10%);
  }
  60% {
    transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  70% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
.sect-keyVisual {
  background: #FFF;
  position: relative;
  margin-top: -100px;
  min-height: 1000px;
}
@media only screen and (max-width:767px) {
  .sect-keyVisual {
    padding-bottom: 0px;
    margin-top: -70px;
    min-height: 600px;
  }
}
@media only screen and (max-width: 580px) {
  .sect-keyVisual {
    margin-top: -50px;
  }
}
@media only screen and (max-width: 330px) {
  .sect-keyVisual {
    margin-top: -30px;
  }
}
.sect-keyVisual #lottie {
  position: relative;
  width: 1200px;
  height: auto;
  margin: 0 auto;
}
@media only screen and (max-width: 1200px) {
  .sect-keyVisual #lottie {
    width: 100%;
  }
}
@media only screen and (max-width:767px) {
  .sect-keyVisual #lottie {
    display: none;
  }
}
.sect-keyVisual #keyVisual-sp {
  display: none;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 40px;
}
@media only screen and (max-width:767px) {
  .sect-keyVisual #keyVisual-sp {
    display: block;
    padding-top: 30px;
  }
}
.sect-keyVisual .el-bg-greenNami {
  background: url(../images/greenNami.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  padding: 0;
  margin: auto;
  z-index: 1;
  bottom: 0px;
  width: 100%;
  height: 110px;
}
@media only screen and (min-width: 1300px) {
  .sect-keyVisual .el-bg-greenNami {
    height: 140px;
    background-size: cover;
  }
}
@media only screen and (max-width:990px) {
  .sect-keyVisual .el-bg-greenNami {
    background: url(../images/greenNami-sp.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 153px;
  }
}
@media only screen and (max-width: 600px) {
  .sect-keyVisual .el-bg-greenNami {
    height: 80px;
  }
}
@media only screen and (max-width: 400px) {
  .sect-keyVisual .el-bg-greenNami {
    height: 53px;
  }
}
.sect-2ways {
  position: relative;
  z-index: 1;
  background: #DCF0DF;
  height: 230px;
}
@media only screen and (max-width:990px) {
  .sect-2ways {
    height: 180px;
  }
}
@media only screen and (max-width:767px) {
  .sect-2ways {
    height: 43vw;
  }
}
.sect-2ways .el-bg-green {
  background: #DCF0DF;
  width: 100%;
}
.sect-2ways .ly-wrap {
  width: 960px;
  margin: 0 auto;
  justify-content: space-between;
  position: absolute;
  top: -150px;
  left: 0;
  right: 0;
  margin: auto;
}
@media only screen and (max-width:990px) {
  .sect-2ways .ly-wrap {
    width: 800px;
  }
}
@media only screen and (max-width:767px) {
  .sect-2ways .ly-wrap {
    top: -12vw;
    width: 136vw;
    position: absolute;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    margin: auto;
  }
}
@media only screen and (max-width: 600px) {
  .sect-2ways .ly-wrap {
    width: 140vw;
  }
}
@media only screen and (max-width: 470px) {
  .sect-2ways .ly-wrap {
    width: 145vw;
  }
}
@media only screen and (max-width: 348px) {
  .sect-2ways .ly-wrap {
    top: -40px;
    width: 150vw;
  }
}
.sect-2ways .ly-wrap .ly-left, .sect-2ways .ly-wrap .ly-right {
  width: 480px;
  height: 320px;
}
@media only screen and (max-width:990px) {
  .sect-2ways .ly-wrap .ly-left, .sect-2ways .ly-wrap .ly-right {
    width: 400px;
    height: 280px;
  }
}
@media only screen and (max-width:767px) {
  .sect-2ways .ly-wrap .ly-left, .sect-2ways .ly-wrap .ly-right {
    width: 50%;
    height: 380px;
  }
}
@media only screen and (max-width: 600px) {
  .sect-2ways .ly-wrap .ly-left, .sect-2ways .ly-wrap .ly-right {
    height: 310px;
  }
}
@media only screen and (max-width: 470px) {
  .sect-2ways .ly-wrap .ly-left, .sect-2ways .ly-wrap .ly-right {
    height: 330px;
  }
}
@media only screen and (max-width: 430px) {
  .sect-2ways .ly-wrap .ly-left, .sect-2ways .ly-wrap .ly-right {
    height: 230px;
  }
}
@media only screen and (max-width: 348px) {
  .sect-2ways .ly-wrap .ly-left, .sect-2ways .ly-wrap .ly-right {
    height: 180px;
  }
}
.sect-2ways .ly-wrap .img-icon-tameru, .sect-2ways .ly-wrap .img-icon-tukau {
  display: block;
  width: 480px;
  height: 320px;
}
@media only screen and (max-width:990px) {
  .sect-2ways .ly-wrap .img-icon-tameru, .sect-2ways .ly-wrap .img-icon-tukau {
    width: 400px;
    height: 280px;
  }
}
@media only screen and (max-width:767px) {
  .sect-2ways .ly-wrap .img-icon-tameru, .sect-2ways .ly-wrap .img-icon-tukau {
    width: auto;
    height: 380px;
  }
}
@media only screen and (max-width: 600px) {
  .sect-2ways .ly-wrap .img-icon-tameru, .sect-2ways .ly-wrap .img-icon-tukau {
    height: 310px;
  }
}
@media only screen and (max-width: 470px) {
  .sect-2ways .ly-wrap .img-icon-tameru, .sect-2ways .ly-wrap .img-icon-tukau {
    height: 330px;
  }
}
@media only screen and (max-width: 430px) {
  .sect-2ways .ly-wrap .img-icon-tameru, .sect-2ways .ly-wrap .img-icon-tukau {
    height: 230px;
  }
}
@media only screen and (max-width: 348px) {
  .sect-2ways .ly-wrap .img-icon-tameru, .sect-2ways .ly-wrap .img-icon-tukau {
    height: 180px;
  }
}
.sect-2ways #lottie2 {
  width: 480px;
  height: auto;
  position: absolute;
  left: 40px;
}
@media only screen and (max-width:990px) {
  .sect-2ways #lottie2 {
    width: 400px;
  }
}
@media only screen and (max-width:767px) {
  .sect-2ways #lottie2 {
    width: 73vw;
  }
}
.sect-2ways #lottie3 {
  width: 480px;
  height: auto;
  position: absolute;
  right: 40px;
}
@media only screen and (max-width:990px) {
  .sect-2ways #lottie3 {
    width: 400px;
  }
}
@media only screen and (max-width:767px) {
  .sect-2ways #lottie3 {
    width: 73vw;
  }
}
.sect-tameru {
  padding: 124px 0 146px 0;
  background: rgba(247, 239, 181, 0.7);
  position: relative;
}
@media only screen and (max-width:990px) {
  .sect-tameru {
    padding: 12.4vw 0 14.6vw 0;
  }
}
@media only screen and (max-width:767px) {
  .sect-tameru {
    padding: 6.4vw 0 14.6vw 0;
  }
}
.sect-tameru .el-sect-title img {
  width: 784px;
  height: auto;
}
@media only screen and (max-width:1100px) {
  .sect-tameru .el-sect-title img {
    width: 78.4vw;
  }
}
.sect-tameru .el-sect-copy img {
  width: 902px;
  height: auto;
}
@media only screen and (max-width:1100px) {
  .sect-tameru .el-sect-copy img {
    width: 90.2vw;
  }
}
.sect-tameru .el-sect-copy .el-noteText {
  margin-top: 10px;
  font-size: 12px;
  font-size: 0.75rem;
}
@media only screen and (max-width:767px) {
  .sect-tameru .el-sect-copy .el-noteText {
    font-size: 18px;
    font-size: 1.125rem;
    width: 90%;
    display: table;
    margin: 10px auto 0 auto;
  }
}
@media only screen and (max-width: 430px) {
  .sect-tameru .el-sect-copy .el-noteText {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.sect-tameru .el-commonGreenLineBlock .ly-wrap {
  justify-content: center;
  align-items: flex-end;
}
.sect-tameru-block01, .sect-tameru-block02, .sect-tameru-block03 {
  border: 6px solid #EAD645;
}
@media only screen and (max-width:767px) {
  .sect-tameru-block01, .sect-tameru-block02, .sect-tameru-block03 {
    border: 4px solid #EAD645;
  }
}
.sect-tameru-block01 {
  position: relative;
}
.sect-tameru-block01 .el-sect-block-title img {
  width: 445px;
  height: auto;
  margin-bottom: 10px;
}
@media only screen and (max-width:767px) {
  .sect-tameru-block01 .el-sect-block-title img {
    width: 44.5vw;
  }
}
.sect-tameru-block01 .el-sect-block-illust {
  margin-top: 36px;
}
.sect-tameru-block01 .el-sect-block-illust #lottie4 {
  width: 407px;
  height: auto;
  margin: 0 auto;
}
@media only screen and (max-width:990px) {
  .sect-tameru-block01 .el-sect-block-illust #lottie4 {
    width: 40.7vw;
  }
}
.sect-tameru-block01__pointserviceday {
  margin: 80px 0 10px;
}
@media only screen and (max-width:767px) {
  .sect-tameru-block01__pointserviceday {
    margin: 8vw 0 10px;
  }
}
@media only screen and (max-width: 440px) {
  .sect-tameru-block01__pointserviceday {
    padding: 8vw 5.2vw 3.2vw;
  }
}
.sect-tameru-block01__pointserviceday .el-commonGreenLineBlock-title {
  width: 385px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-tameru-block01__pointserviceday .el-commonGreenLineBlock-title {
    max-width: 560px;
    width: 88%;
  }
}
@media only screen and (max-width:767px) {
  .sect-tameru-block01__pointserviceday .ly-wrap {
    display: block;
    margin: 0 auto;
  }
}
.sect-tameru-block01__pointserviceday .ly-left {
  width: 284px;
  padding-bottom: 10px;
}
@media only screen and (max-width:767px) {
  .sect-tameru-block01__pointserviceday .ly-left {
    max-width: 459px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 20px;
  }
}
.sect-tameru-block01__pointserviceday .ly-left .el-pointserviceday-left {
  width: 100%;
  height: auto;
}
.sect-tameru-block01__pointserviceday .ly-right {
  width: 456px;
  margin-left: 30px;
}
@media only screen and (max-width:767px) {
  .sect-tameru-block01__pointserviceday .ly-right {
    max-width: 456px;
    width: 100%;
    margin: 0 auto;
  }
}
.sect-tameru-block01__pointserviceday .ly-right .el-pointserviceday-right {
  width: 100%;
  height: auto;
}
.sect-tameru-block01__cardchargeday {
  margin: 80px 0 10px;
  padding-top: 56px;
}
@media only screen and (max-width:767px) {
  .sect-tameru-block01__cardchargeday {
    padding-top: 4.6vw;
    margin-top: 9vw;
  }
}
@media only screen and (max-width: 440px) {
  .sect-tameru-block01__cardchargeday {
    padding: 8vw 5.2vw 3.2vw;
  }
}
.sect-tameru-block01__cardchargeday .el-commonGreenLineBlock-title {
  width: 512px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-tameru-block01__cardchargeday .el-commonGreenLineBlock-title {
    max-width: 560px;
    width: 88%;
  }
}
@media only screen and (max-width:767px) {
  .sect-tameru-block01__cardchargeday .ly-wrap {
    display: block;
    margin: 0 auto;
  }
}
.sect-tameru-block01__cardchargeday .ly-left {
  width: 361px;
}
@media only screen and (max-width:767px) {
  .sect-tameru-block01__cardchargeday .ly-left {
    max-width: 407px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 20px;
  }
}
.sect-tameru-block01__cardchargeday .ly-left .el-cardchargeday-left {
  width: 100%;
  height: auto;
}
.sect-tameru-block01__cardchargeday .ly-right {
  width: 379px;
  margin-left: 30px;
}
@media only screen and (max-width:767px) {
  .sect-tameru-block01__cardchargeday .ly-right {
    max-width: 379px;
    width: 100%;
    margin: 0 auto;
  }
}
.sect-tameru-block01__cardchargeday .ly-right .el-cardchargeday-right {
  width: 100%;
  height: auto;
}
.sect-tameru-block01__cashless {
  padding-bottom: 26px;
  margin: 0 auto 10px;
}
@media only screen and (max-width:767px) {
  .sect-tameru-block01__cashless {
    padding: 4.4vw 3.5vw 3vw;
  }
}
.sect-tameru-block01__cashless .ly-wrap {
  width: 720px;
  margin: 30px auto 0;
}
@media only screen and (max-width:1100px) {
  .sect-tameru-block01__cashless .ly-wrap {
    display: block;
    width: 100%;
  }
}
@media only screen and (max-width:767px) {
  .sect-tameru-block01__cashless .ly-wrap {
    margin: 15px auto 0;
  }
}
.sect-tameru-block01__cashless .ly-left {
  width: 431px;
}
@media only screen and (max-width:1100px) {
  .sect-tameru-block01__cashless .ly-left {
    margin: 0 auto;
  }
}
@media only screen and (max-width:767px) {
  .sect-tameru-block01__cashless .ly-left {
    max-width: 476px;
    width: 80%;
  }
}
.sect-tameru-block01__cashless .ly-left .el-cashless-left {
  width: 100%;
  height: auto;
}
.sect-tameru-block01__cashless .ly-right {
  width: 267px;
  margin: 0 0 10px 20px;
}
@media only screen and (max-width:1100px) {
  .sect-tameru-block01__cashless .ly-right {
    margin: 10px auto;
  }
}
@media only screen and (max-width:767px) {
  .sect-tameru-block01__cashless .ly-right {
    max-width: 296px;
    width: 56%;
  }
}
.sect-tameru-block01__cashless .ly-right .el-cashless-right {
  width: 100%;
  height: auto;
}
.sect-tameru-block01__cashless .el-noteText {
  width: 720px;
  margin: 30px auto 0;
}
@media only screen and (max-width:1100px) {
  .sect-tameru-block01__cashless .el-noteText {
    width: 80%;
  }
}
@media only screen and (max-width:767px) {
  .sect-tameru-block01__cashless .el-noteText {
    width: 100%;
    margin: 15px auto 0;
  }
}
.sect-tameru-block01__bonusPoints {
  padding-bottom: 38px;
  margin: 0 auto;
}
@media only screen and (max-width:990px) {
  .sect-tameru-block01__bonusPoints {
    padding: 3%;
  }
}
@media only screen and (max-width:767px) {
  .sect-tameru-block01__bonusPoints {
    padding: 4.4vw 3.5vw 4vw;
  }
}
.sect-tameru-block01__bonusPoints .el-commonBgBlock-title {
  text-align: center;
}
.sect-tameru-block01__bonusPoints .el-commonBgBlock-text {
  margin-top: 20px;
  text-align: center;
}
@media only screen and (max-width:767px) {
  .sect-tameru-block01__bonusPoints .el-commonBgBlock-text {
    text-align: left;
    width: 88%;
    margin: 20px auto 0 auto;
  }
}
.sect-tameru-block01__bonusPoints .el-bonusPoints {
  margin-top: 20px;
}
@media only screen and (max-width:767px) {
  .sect-tameru-block01__bonusPoints .el-bonusPoints {
    margin-top: 15px;
  }
}
.sect-tameru-block01__bonusPoints .el-bonusPoints-pc {
  width: 552px;
  height: auto;
}
@media only screen and (max-width:990px) {
  .sect-tameru-block01__bonusPoints .el-bonusPoints-pc {
    width: 352px;
    height: auto;
  }
}
@media only screen and (max-width:767px) {
  .sect-tameru-block01__bonusPoints .el-bonusPoints-pc {
    max-width: 540px;
    width: 100%;
  }
}
.sect-tameru-block02 {
  position: relative;
}
.sect-tameru-block02 .el-sect-block-title img {
  width: 516px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-tameru-block02 .el-sect-block-title img {
    width: 51.6vw;
  }
}
.sect-tameru-block02 .el-sect-block-illust {
  margin-top: 36px;
}
.sect-tameru-block02 .el-sect-block-illust #lottie5 {
  width: 407px;
  height: auto;
  margin: 0 auto;
}
@media only screen and (max-width:990px) {
  .sect-tameru-block02 .el-sect-block-illust #lottie5 {
    width: 40.7vw;
  }
}
.sect-tameru-block02 .el-noteText {
  margin-top: 10px;
}
.sect-tameru-block02__pointService {
  margin: 80px 0 10px;
  padding-top: 56px;
}
@media only screen and (max-width:767px) {
  .sect-tameru-block02__pointService {
    margin: 8vw 0 10px;
    padding-top: 5.6vw;
  }
}
@media only screen and (max-width: 440px) {
  .sect-tameru-block02__pointService {
    padding: 8vw 5.2vw 3.2vw;
  }
}
.sect-tameru-block02__pointService .el-commonGreenLineBlock-title {
  width: 512px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-tameru-block02__pointService .el-commonGreenLineBlock-title {
    max-width: 512px;
    width: 88%;
  }
}
.sect-tameru-block02__pointService .ly-wrap {
  align-items: center;
}
@media only screen and (max-width:767px) {
  .sect-tameru-block02__pointService .ly-wrap {
    display: block;
  }
}
.sect-tameru-block02__pointService .ly-left {
  width: 316px;
}
@media only screen and (max-width:990px) {
  .sect-tameru-block02__pointService .ly-left {
    width: 31.6vw;
  }
}
@media only screen and (max-width:767px) {
  .sect-tameru-block02__pointService .ly-left {
    margin: 0 auto;
    max-width: 293px;
    width: 100%;
  }
}
.sect-tameru-block02__pointService .ly-left .el-pointService-left {
  width: 100%;
  height: auto;
  margin-top: 20px;
}
@media only screen and (max-width:767px) {
  .sect-tameru-block02__pointService .ly-left .el-pointService-left {
    margin-top: 0px;
  }
}
.sect-tameru-block02__pointService .ly-right {
  width: 412px;
  margin-left: 30px;
}
@media only screen and (max-width:990px) {
  .sect-tameru-block02__pointService .ly-right {
    width: 41.2vw;
  }
}
@media only screen and (max-width:767px) {
  .sect-tameru-block02__pointService .ly-right {
    max-width: 383px;
    width: 100%;
    margin: 10px auto;
  }
}
.sect-tameru-block02__pointService .ly-right .el-pointService-right {
  width: 100%;
  height: auto;
}
.sect-tameru-block02__pointPlan {
  padding-bottom: 38px;
  margin: 0 auto;
}
@media only screen and (max-width:767px) {
  .sect-tameru-block02__pointPlan {
    padding: 4.4vw 3.5vw 3vw;
  }
}
.sect-tameru-block02__pointPlan .ly-wrap {
  margin-top: 30px;
  align-items: center;
}
@media only screen and (max-width:767px) {
  .sect-tameru-block02__pointPlan .ly-wrap {
    margin-top: 3vw;
  }
}
@media only screen and (max-width: 550px) {
  .sect-tameru-block02__pointPlan .ly-wrap {
    display: block;
  }
}
.sect-tameru-block02__pointPlan .ly-left {
  width: 281px;
}
@media only screen and (max-width:990px) {
  .sect-tameru-block02__pointPlan .ly-left {
    width: 28.1vw;
  }
}
@media only screen and (max-width:767px) {
  .sect-tameru-block02__pointPlan .ly-left {
    margin: 0 auto;
    max-width: 276px;
    width: 276px;
  }
}
@media only screen and (max-width: 720px) {
  .sect-tameru-block02__pointPlan .ly-left {
    width: 40%;
  }
}
@media only screen and (max-width: 550px) {
  .sect-tameru-block02__pointPlan .ly-left {
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
  }
}
.sect-tameru-block02__pointPlan .ly-left .el-pointPlan-left {
  width: 100%;
  height: auto;
}
.sect-tameru-block02__pointPlan .ly-right {
  width: 379px;
  margin-left: 30px;
}
@media only screen and (max-width:990px) {
  .sect-tameru-block02__pointPlan .ly-right {
    width: 37.9vw;
  }
}
@media only screen and (max-width:767px) {
  .sect-tameru-block02__pointPlan .ly-right {
    width: calc(100% - 276px);
    margin: 10px auto 0 auto;
    padding-left: 20px;
  }
}
@media only screen and (max-width: 720px) {
  .sect-tameru-block02__pointPlan .ly-right {
    width: 60%;
  }
}
@media only screen and (max-width: 550px) {
  .sect-tameru-block02__pointPlan .ly-right {
    width: 100%;
    padding-left: 0px;
  }
}
.sect-tameru-block02__pointPlan .ly-right .el-noteText {
  text-align: left;
}
.sect-tameru-block03 {
  position: relative;
}
.sect-tameru-block03 .el-sect-block-title {
  margin-bottom: 30px;
}
.sect-tameru-block03 .el-sect-block-title img {
  width: 602px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-tameru-block03 .el-sect-block-title img {
    width: 60.2vw;
  }
}
.sect-tameru-block03 .el-pointsTable {
  width: 900px;
  max-width: 900px;
}
@media only screen and (max-width:1100px) {
  .sect-tameru-block03 .el-pointsTable {
    width: 100%;
  }
}
@media only screen and (max-width:990px) {
  .sect-tameru-block03 .el-pointsTable {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }
}
.sect-tameru-block03 .el-pointsTable-pc {
  width: 900px;
  max-width: 900px;
}
@media only screen and (max-width:1100px) {
  .sect-tameru-block03 .el-pointsTable-pc {
    width: 100%;
  }
}
@media only screen and (max-width:990px) {
  .sect-tameru-block03 .el-pointsTable-pc {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }
}
.sect-tameru-block03 .el-commonBgBlock-textBig {
  margin-bottom: 40px;
}
.sect-tameru-block03 .el-noteTextBig-bottom {
  margin-top: 20px;
}
.sect-tameru-block03 .el-commonlink {
  margin-top: 40px;
}
.sect-tameru-block03 .btn-pointsyakkan {
  width: 314px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-tameru-block03 .btn-pointsyakkan {
    max-width: 467px;
    width: 100%;
  }
}
@media only screen and (max-width:767px) {
  .sect-tameru-block03 .el-noteText {
    margin-top: 10px;
  }
  .sect-tameru-block03 ul {
    margin-top: 10px;
  }
}
.sect-tameru-block03 ul {
  margin-top: 10px;
}
.sect-tukau {
  background: rgba(217, 240, 241, 0.7);
  padding: 124px 0 146px 0;
  position: relative;
}
@media only screen and (max-width:767px) {
  .sect-tukau {
    padding: 6.4vw 0 14.6vw 0;
  }
}
.sect-tukau .el-sect-title img {
  width: 784px;
  height: auto;
}
@media only screen and (max-width:1100px) {
  .sect-tukau .el-sect-title img {
    width: 78.4vw;
  }
}
.sect-tukau .el-sect-copy img {
  width: 902px;
  height: auto;
}
@media only screen and (max-width:1100px) {
  .sect-tukau .el-sect-copy img {
    width: 90.2vw;
  }
}
.sect-tukau .el-sect-copy .el-noteText {
  margin-top: 10px;
  font-size: 12px;
  font-size: 0.75rem;
}
@media only screen and (max-width:767px) {
  .sect-tukau .el-sect-copy .el-noteText {
    font-size: 18px;
    font-size: 1.125rem;
    width: 90%;
    display: table;
    margin: 10px auto 0 auto;
  }
}
@media only screen and (max-width: 430px) {
  .sect-tukau .el-sect-copy .el-noteText {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.sect-tukau .el-commonGreenLineBlock {
  max-width: 940px;
  margin: 80px 0 10px;
  padding: 50px 32px 12px;
}
@media only screen and (max-width:990px) {
  .sect-tukau .el-commonGreenLineBlock {
    padding-bottom: 32px;
  }
}
@media only screen and (max-width:767px) {
  .sect-tukau .el-commonGreenLineBlock {
    margin: 8vw 0 1vw;
    padding: 7vw 5.2vw 3.2vw;
  }
}
@media only screen and (max-width: 440px) {
  .sect-tukau .el-commonGreenLineBlock {
    padding: 8vw 5.2vw 3.2vw;
  }
}
.sect-tukau .el-commonGreenLineBlock .ly-wrap {
  justify-content: space-between;
  align-items: start;
}
.sect-tukau .el-commonGreenLineBlock .el-noteText {
  text-align: left;
  margin-top: 10px;
}
.sect-tukau .el-commonGreenLineBlock .el-commonGreenLineBlock-subtitle,
.sect-tukau .el-commonGreenLineBlock .el-commonBgBlock-text {
  width: 100%;
  display: inline-block;
}
.sect-tukau-block01, .sect-tukau-block02, .sect-tukau-block03, .sect-tukau-block04 {
  border: 6px solid #AAD6DC;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block01, .sect-tukau-block02, .sect-tukau-block03, .sect-tukau-block04 {
    border: 4px solid #AAD6DC;
  }
}
.sect-tukau-block01 {
  position: relative;
}
.sect-tukau-block01 .el-sect-block-title img {
  width: 375px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block01 .el-sect-block-title img {
    width: 37.5vw;
  }
}
.sect-tukau-block01 .el-sect-block-illust {
  margin-top: 36px;
  /*#lottie7{
    width: 407px;
    height: auto;
    margin: 0 auto;
    @media only screen and (max-width:990px){
      width: pxtovw(407);
    }
  }*/
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.sect-tukau-block01 .el-sect-block-illust img {
  width: 407px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block01 .el-sect-block-illust img {
    width: 40.7vw;
  }
}
.sect-tukau-block01 .el-sect-block-illust.moveIcon {
  animation-name: moveIcon;
  transform: rotate(5deg);
  animation-duration: 5s;
}
@keyframes moveIcon {
  50% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(5deg);
  }
}
.sect-tukau-block01__charge .el-commonGreenLineBlock-title {
  width: 561px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block01__charge .el-commonGreenLineBlock-title {
    max-width: 561px;
    width: 94%;
  }
}
@media only screen and (max-width:990px) {
  .sect-tukau-block01__charge .ly-wrap {
    display: block;
  }
}
.sect-tukau-block01__charge .ly-left {
  width: 406px;
  padding-bottom: 10px;
}
@media only screen and (max-width:990px) {
  .sect-tukau-block01__charge .ly-left {
    margin: 0 auto;
  }
}
@media only screen and (max-width:767px) {
  .sect-tukau-block01__charge .ly-left {
    width: 100%;
  }
}
.sect-tukau-block01__charge .ly-left .el-charge-left {
  width: 217px;
  height: auto;
}
@media only screen and (max-width: 440px) {
  .sect-tukau-block01__charge .ly-left .el-charge-left {
    width: 170px;
  }
}
.sect-tukau-block01__charge .ly-left .el-commonBgBlock-text {
  display: inline-block;
  width: calc(100% - 190px);
}
@media only screen and (max-width:767px) {
  .sect-tukau-block01__charge .ly-left .el-commonBgBlock-text {
    width: 100%;
    display: block;
  }
}
.sect-tukau-block01__charge .ly-left .el-charge-left-illust {
  width: 156px;
  height: auto;
  margin-left: 25px;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block01__charge .ly-left .el-charge-left-illust {
    display: table;
    margin: 20px auto 0 auto;
  }
}
.sect-tukau-block01__charge .ly-right {
  width: 406px;
  margin-left: 30px;
}
@media only screen and (max-width:990px) {
  .sect-tukau-block01__charge .ly-right {
    margin: 0 auto;
  }
}
@media only screen and (max-width:767px) {
  .sect-tukau-block01__charge .ly-right {
    width: 100%;
    margin-top: 5vw;
  }
}
.sect-tukau-block01__charge .ly-right .el-charge-right {
  width: 219px;
  height: auto;
}
@media only screen and (max-width: 440px) {
  .sect-tukau-block01__charge .ly-right .el-charge-right {
    width: 178px;
  }
}
.sect-tukau-block01__cash .el-commonGreenLineBlock-title {
  width: 349px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block01__cash .el-commonGreenLineBlock-title {
    max-width: 561px;
    width: 94%;
  }
}
@media only screen and (max-width:990px) {
  .sect-tukau-block01__cash .ly-wrap {
    display: block;
  }
}
.sect-tukau-block01__cash .ly-left {
  width: 430px;
  padding-bottom: 10px;
  display: flex;
}
@media only screen and (max-width:990px) {
  .sect-tukau-block01__cash .ly-left {
    width: 406px;
    margin: 0 auto;
  }
}
@media only screen and (max-width:767px) {
  .sect-tukau-block01__cash .ly-left {
    width: 100%;
    display: block;
  }
}
.sect-tukau-block01__cash .ly-left .el-commonGreenLineBlock-subtitle {
  width: 231px;
}
@media only screen and (max-width:990px) {
  .sect-tukau-block01__cash .ly-left .el-commonGreenLineBlock-subtitle {
    width: 100%;
  }
}
.sect-tukau-block01__cash .ly-left .el-commonBgBlock-text {
  width: 231px;
}
@media only screen and (max-width:990px) {
  .sect-tukau-block01__cash .ly-left .el-commonBgBlock-text {
    width: 100%;
  }
}
@media only screen and (max-width:1100px) {
  .sect-tukau-block01__cash .ly-left .el-cash-left-textWrap {
    width: calc(100% - 190px);
  }
}
@media only screen and (max-width:767px) {
  .sect-tukau-block01__cash .ly-left .el-cash-left-textWrap {
    width: 100%;
  }
}
.sect-tukau-block01__cash .ly-left .el-cash-left {
  width: 108px;
  height: auto;
}
@media only screen and (max-width: 440px) {
  .sect-tukau-block01__cash .ly-left .el-cash-left {
    width: 87px;
  }
}
.sect-tukau-block01__cash .ly-left .el-cash-left-illust {
  width: 190px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block01__cash .ly-left .el-cash-left-illust {
    display: table;
    margin: 0 auto;
  }
}
.sect-tukau-block01__cash .ly-right {
  width: 406px;
}
@media only screen and (max-width:990px) {
  .sect-tukau-block01__cash .ly-right {
    width: 406px;
    margin: 0 auto;
  }
}
@media only screen and (max-width:767px) {
  .sect-tukau-block01__cash .ly-right {
    width: 100%;
    margin-top: 5vw;
  }
}
.sect-tukau-block01__cash .ly-right .el-cash-right {
  width: 174px;
  height: auto;
}
@media only screen and (max-width: 440px) {
  .sect-tukau-block01__cash .ly-right .el-cash-right {
    width: 148px;
  }
}
.sect-tukau-block02 {
  position: relative;
}
.sect-tukau-block02 .el-sect-block-title img {
  width: 444px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block02 .el-sect-block-title img {
    width: 44.4vw;
  }
}
.sect-tukau-block02 .el-sect-block-illust {
  margin-top: 36px;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.sect-tukau-block02 .el-sect-block-illust img {
  width: 407px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block02 .el-sect-block-illust img {
    width: 40.7vw;
  }
}
.sect-tukau-block02 .el-sect-block-illust.moveIcon {
  animation-name: moveIcon;
  transform: rotate(5deg);
  animation-duration: 5s;
}
@keyframes moveIcon {
  50% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(5deg);
  }
}
.sect-tukau-block02__todokPayment {
  padding-bottom: 30px !important;
}
.sect-tukau-block02__todokPayment .el-commonGreenLineBlock-title {
  width: 448px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block02__todokPayment .el-commonGreenLineBlock-title {
    max-width: 561px;
    width: 94%;
  }
}
@media only screen and (max-width:990px) {
  .sect-tukau-block02__todokPayment .ly-wrap {
    display: block;
  }
}
.sect-tukau-block02__todokPayment .ly-left {
  width: 406px;
}
@media only screen and (max-width:990px) {
  .sect-tukau-block02__todokPayment .ly-left {
    margin: 0 auto 40px auto;
  }
}
@media only screen and (max-width:767px) {
  .sect-tukau-block02__todokPayment .ly-left {
    width: 100%;
    margin: 0 auto 4vw auto;
  }
}
.sect-tukau-block02__todokPayment .ly-left .el-todokPayment-left {
  width: 108px;
}
@media only screen and (max-width: 440px) {
  .sect-tukau-block02__todokPayment .ly-left .el-todokPayment-left {
    width: 94px;
  }
}
.sect-tukau-block02__todokPayment .ly-left .el-todokPayment-left-illust {
  width: 100%;
  height: auto;
  margin-top: 17px;
}
.sect-tukau-block02__todokPayment .ly-left .el-noteText {
  color: #E50012;
  margin-top: 10px;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block02__todokPayment .ly-left .el-noteText {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.sect-tukau-block02__todokPayment .ly-right {
  width: 406px;
  margin-left: 30px;
}
@media only screen and (max-width:990px) {
  .sect-tukau-block02__todokPayment .ly-right {
    margin: 0 auto;
  }
  .sect-tukau-block02__todokPayment .ly-right .ly-wrap {
    display: flex;
  }
}
@media only screen and (max-width:990px) and (max-width:990px) {
  .sect-tukau-block02__todokPayment .ly-right .ly-wrap {
    display: block;
  }
}
@media only screen and (max-width:767px) {
  .sect-tukau-block02__todokPayment .ly-right {
    width: 100%;
    margin-top: 5vw;
  }
}
.sect-tukau-block02__todokPayment .ly-right .el-todokPayment-right {
  width: 171px;
  height: auto;
}
@media only screen and (max-width: 440px) {
  .sect-tukau-block02__todokPayment .ly-right .el-todokPayment-right {
    width: 148px;
  }
}
.sect-tukau-block02__todokPayment .ly-right .el-cash-left-textWrap {
  width: 170px;
}
@media only screen and (max-width:990px) {
  .sect-tukau-block02__todokPayment .ly-right .el-cash-left-textWrap {
    width: 100%;
  }
}
.sect-tukau-block02__todokPayment .ly-right .el-cash-left-textWrap .el-noteText {
  color: #E50012;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block02__todokPayment .ly-right .el-cash-left-textWrap .el-noteText {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.sect-tukau-block02__todokPayment .ly-right .el-todokPayment-right-illust {
  width: 187px;
  height: auto;
  margin: 40px 10px 0 0;
}
@media only screen and (max-width: 1100px) {
  .sect-tukau-block02__todokPayment .ly-right .el-todokPayment-right-illust {
    width: 18.7vw;
    margin: 40px 10px 0 10px;
  }
}
@media only screen and (max-width:990px) {
  .sect-tukau-block02__todokPayment .ly-right .el-todokPayment-right-illust {
    margin: 40px auto 0 auto;
  }
}
@media only screen and (max-width:767px) {
  .sect-tukau-block02__todokPayment .ly-right .el-todokPayment-right-illust {
    max-width: 236px;
    height: auto;
    display: table;
    width: 80%;
  }
}
.sect-tukau-block02__commodityExchange {
  padding-bottom: 30px !important;
}
.sect-tukau-block02__commodityExchange .el-commonGreenLineBlock-title {
  width: 349px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block02__commodityExchange .el-commonGreenLineBlock-title {
    max-width: 561px;
    width: 94%;
  }
}
@media only screen and (max-width:990px) {
  .sect-tukau-block02__commodityExchange .ly-wrap {
    display: block;
  }
}
.sect-tukau-block02__commodityExchange .ly-left {
  width: 406px;
}
@media only screen and (max-width:990px) {
  .sect-tukau-block02__commodityExchange .ly-left {
    margin: 0 auto 40px auto;
  }
  .sect-tukau-block02__commodityExchange .ly-left .ly-wrap {
    display: flex;
  }
}
@media only screen and (max-width:990px) and (max-width:767px) {
  .sect-tukau-block02__commodityExchange .ly-left .ly-wrap {
    display: block;
  }
}
@media only screen and (max-width:767px) {
  .sect-tukau-block02__commodityExchange .ly-left {
    width: 100%;
    margin: 0 auto 4vw auto;
  }
}
.sect-tukau-block02__commodityExchange .ly-left .el-commodityExchange-left {
  width: 174px;
  height: auto;
}
@media only screen and (max-width: 440px) {
  .sect-tukau-block02__commodityExchange .ly-left .el-commodityExchange-left {
    width: 152px;
  }
}
.sect-tukau-block02__commodityExchange .ly-left .el-commonBgBlock-text {
  width: calc(100% - 164px);
}
@media only screen and (max-width:767px) {
  .sect-tukau-block02__commodityExchange .ly-left .el-commonBgBlock-text {
    width: 100%;
    padding-bottom: 20px;
  }
}
.sect-tukau-block02__commodityExchange .ly-left .el-commodityExchange-left-illust {
  width: 164px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block02__commodityExchange .ly-left .el-commodityExchange-left-illust {
    width: 100%;
    max-width: 306px;
    display: table;
    margin: 0 auto;
  }
}
.sect-tukau-block02__commodityExchange .ly-right {
  width: 406px;
  margin-left: 30px;
}
@media only screen and (max-width:990px) {
  .sect-tukau-block02__commodityExchange .ly-right {
    margin: 0 auto;
  }
  .sect-tukau-block02__commodityExchange .ly-right .ly-wrap {
    display: flex;
  }
}
@media only screen and (max-width:990px) and (max-width:767px) {
  .sect-tukau-block02__commodityExchange .ly-right .ly-wrap {
    display: block;
  }
}
@media only screen and (max-width:767px) {
  .sect-tukau-block02__commodityExchange .ly-right {
    width: 100%;
    margin-top: 5vw;
  }
}
.sect-tukau-block02__commodityExchange .ly-right .el-commodityExchange-right {
  width: 216px;
  height: auto;
}
@media only screen and (max-width: 440px) {
  .sect-tukau-block02__commodityExchange .ly-right .el-commodityExchange-right {
    width: 188px;
  }
}
.sect-tukau-block02__commodityExchange .ly-right .el-commonBgBlock-text {
  width: calc(100% - 181px);
}
@media only screen and (max-width:767px) {
  .sect-tukau-block02__commodityExchange .ly-right .el-commonBgBlock-text {
    width: 100%;
    padding-bottom: 20px;
  }
}
.sect-tukau-block02__commodityExchange .ly-right .el-commodityExchange-right-illust {
  width: 171px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block02__commodityExchange .ly-right .el-commodityExchange-right-illust {
    width: 100%;
    max-width: 204px;
    display: table;
    margin: 0 auto;
  }
}
.sect-tukau-block03 {
  position: relative;
}
.sect-tukau-block03 .el-sect-block-title img {
  width: 547px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block03 .el-sect-block-title img {
    width: 54.7vw;
  }
}
.sect-tukau-block03 .el-sect-block-textIllust {
  width: 754px;
  margin: 45px auto 40px auto;
}
@media only screen and (max-width:990px) {
  .sect-tukau-block03 .el-sect-block-textIllust {
    width: 100%;
  }
}
@media only screen and (max-width:767px) {
  .sect-tukau-block03 .el-sect-block-textIllust {
    margin: 4.5vw auto 4vw auto;
  }
}
@media only screen and (max-width:767px) {
  .sect-tukau-block03 .el-sect-block-textIllust.ly-wrap {
    display: block;
    text-align: center;
  }
}
.sect-tukau-block03 .el-sect-block-textIllust .ly-left {
  width: calc(100% - 312px);
}
@media only screen and (max-width:767px) {
  .sect-tukau-block03 .el-sect-block-textIllust .ly-left {
    width: 100%;
  }
}
.sect-tukau-block03 .el-sect-block-textIllust .ly-right {
  width: 312px;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block03 .el-sect-block-textIllust .ly-right {
    width: 100%;
    margin-top: 10px;
  }
}
.sect-tukau-block03 .el-sect-block-text {
  line-height: 1.6;
}
.sect-tukau-block03 .el-sect-block-illust {
  width: 312px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block03 .el-sect-block-illust {
    width: 31.2vw;
  }
}
.sect-tukau-block03 .el-app-illust {
  width: 368px;
  height: auto;
  margin-top: 30px;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block03 .el-app-illust {
    max-width: 453px;
    width: 75%;
  }
}
.sect-tukau-block03 .el-commonBeigeBgBlock {
  padding: 28px 0 50px;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block03 .el-commonBgBlock-title {
    font-weight: bold;
    font-size: 30px;
    font-size: 1.875rem;
  }
}
@media only screen and (max-width: 440px) {
  .sect-tukau-block03 .el-commonBgBlock-title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.sect-tukau-block03 .el-commonWhiteBlock {
  margin: 20px auto;
  padding: 20px 0 30px;
  width: 830px;
}
@media only screen and (max-width: 1150px) {
  .sect-tukau-block03 .el-commonWhiteBlock {
    width: 95%;
    padding: 2vw 1vw 3vw;
  }
}
@media only screen and (max-width:767px) {
  .sect-tukau-block03 .el-commonWhiteBlock {
    width: 90%;
    padding: 3vw;
  }
}
.sect-tukau-block03 .el-commonWhiteBlock .el-commonBgBlock-text {
  text-align: center;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block03 .el-commonWhiteBlock .el-commonBgBlock-text {
    font-size: 21px;
    font-size: 1.3125rem;
    text-align: left;
  }
}
@media only screen and (max-width: 440px) {
  .sect-tukau-block03 .el-commonWhiteBlock .el-commonBgBlock-text {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.sect-tukau-block03 .el-commonWhiteBlock .el-serviceKinds-illust-wrap {
  max-width: 650px;
  margin: 0 auto;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block03 .el-commonWhiteBlock .el-serviceKinds-illust-wrap {
    flex-wrap: wrap;
    width: 60vw;
  }
}
.sect-tukau-block03 .el-commonWhiteBlock .el-serviceKinds-illust {
  padding: 20px 0 0;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block03 .el-commonWhiteBlock .el-serviceKinds-illust {
    width: 50%;
    text-align: center;
  }
}
.sect-tukau-block03 .el-commonWhiteBlock .el-serviceKinds-illust img {
  width: 110px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block03 .el-commonWhiteBlock .el-serviceKinds-illust img {
    width: 90px;
  }
}
.sect-tukau-block03 .el-commonWhiteBlock .el-serviceKinds-illust:nth-child(2) img {
  width: 131px;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block03 .el-commonWhiteBlock .el-serviceKinds-illust:nth-child(2) img {
    width: 111px;
  }
}
.sect-tukau-block03 .el-commonWhiteBlock .el-serviceKinds-illust:nth-child(2), .sect-tukau-block03 .el-commonWhiteBlock .el-serviceKinds-illust:nth-child(3), .sect-tukau-block03 .el-commonWhiteBlock .el-serviceKinds-illust:nth-child(4) {
  margin-top: 5px;
}
.sect-tukau-block03 .el-commonWhiteBlock .el-serviceKinds-illust .el-greenText {
  width: 100%;
  text-align: center;
  line-height: 20px;
  margin-top: 12px;
  font-size: 18px;
  font-size: 1.125rem;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block03 .el-commonWhiteBlock .el-serviceKinds-illust .el-greenText {
    margin-top: 8px;
  }
}
@media only screen and (max-width: 600px) {
  .sect-tukau-block03 .el-commonWhiteBlock .el-serviceKinds-illust .el-greenText {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.sect-tukau-block03 .el-noteText {
  text-align: center;
  margin-bottom: 20px;
}
@media only screen and (max-width:990px) {
  .sect-tukau-block03 .el-noteText {
    width: 90%;
    margin: 0 auto 20px auto;
    text-align: left;
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 600px) {
  .sect-tukau-block03 .el-noteText {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width:767px) {
  .sect-tukau-block03 .el-commonlink {
    padding: 3vw;
  }
}
.sect-tukau-block03 .btn-pointPaymentHow {
  width: 550px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block03 .btn-pointPaymentHow {
    max-width: 524px;
    width: 100%;
  }
}
.sect-tukau-block04 {
  position: relative;
}
.sect-tukau-block04 .el-sect-block-title img {
  width: 548px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block04 .el-sect-block-title img {
    width: 54.8vw;
  }
}
.sect-tukau-block04__capital {
  margin-top: 60px;
  padding: 28px 0 50px;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block04__capital {
    padding: 2.8vw 0 5vw;
    margin-top: 6vw;
  }
}
@media only screen and (max-width:767px) {
  .sect-tukau-block04__capital .el-commonBgBlock-title {
    font-size: 30px;
    font-weight: bold;
  }
}
@media only screen and (max-width: 440px) {
  .sect-tukau-block04__capital .el-commonBgBlock-title {
    font-size: 20px;
    line-height: 1.5;
  }
}
.sect-tukau-block04__capital .el-commonWhiteBlock {
  margin: 24px auto 0;
}
@media only screen and (max-width:1100px) {
  .sect-tukau-block04__capital .el-commonWhiteBlock {
    width: 90%;
  }
  .sect-tukau-block04__capital .el-commonWhiteBlock .ly-wrap {
    display: block;
  }
}
@media only screen and (max-width:767px) {
  .sect-tukau-block04__capital .el-commonWhiteBlock {
    padding: 5%;
  }
}
.sect-tukau-block04__capital .ly-left {
  width: 341px;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block04__capital .ly-left {
    width: 100%;
  }
}
@media only screen and (max-width:1100px) {
  .sect-tukau-block04__capital .ly-left {
    margin: 0 auto 40px auto;
  }
}
.sect-tukau-block04__capital .ly-left .el-capital-left-title {
  width: 150px;
  height: auto;
}
@media only screen and (max-width: 440px) {
  .sect-tukau-block04__capital .ly-left .el-capital-left-title {
    width: 132px;
  }
}
.sect-tukau-block04__capital .ly-left .el-commonBgBlock-text {
  width: 160px;
  display: inline-block;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block04__capital .ly-left .el-commonBgBlock-text {
    width: 100%;
  }
}
.sect-tukau-block04__capital .ly-left .el-capital-left-illust {
  width: 137px;
  height: auto;
  margin-left: 20px;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block04__capital .ly-left .el-capital-left-illust {
    width: 100%;
    max-width: 160px;
    margin: 20px auto 0 auto;
    display: table;
  }
}
.sect-tukau-block04__capital .ly-right {
  width: 341px;
  text-align: left;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block04__capital .ly-right {
    width: 100%;
  }
}
@media only screen and (max-width:1100px) {
  .sect-tukau-block04__capital .ly-right {
    margin: 0 auto 40px auto;
  }
}
.sect-tukau-block04__capital .ly-right .el-capital-right-title {
  width: 216px;
  height: auto;
}
@media only screen and (max-width: 440px) {
  .sect-tukau-block04__capital .ly-right .el-capital-right-title {
    width: 188px;
  }
}
.sect-tukau-block04__capital .ly-right .el-capital-right-textWrap {
  width: 160px;
  display: inline-block;
  text-align: left;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block04__capital .ly-right .el-capital-right-textWrap {
    width: 100%;
  }
}
.sect-tukau-block04__capital .ly-right .el-capital-right-illust {
  width: 136px;
  height: auto;
  margin-left: 20px;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block04__capital .ly-right .el-capital-right-illust {
    width: 100%;
    max-width: 160px;
    margin: 20px auto 0 auto;
    display: table;
  }
}
.sect-tukau-block04__capital .ly-bottomCenter {
  margin-top: 40px;
}
@media only screen and (max-width:1100px) {
  .sect-tukau-block04__capital .ly-bottomCenter {
    width: 341px;
    margin: 0 auto;
  }
}
@media only screen and (max-width:767px) {
  .sect-tukau-block04__capital .ly-bottomCenter {
    width: 100%;
  }
}
.sect-tukau-block04__capital .ly-bottomCenter .ly-left, .sect-tukau-block04__capital .ly-bottomCenter .ly-right {
  width: 50%;
}
@media only screen and (max-width:1100px) {
  .sect-tukau-block04__capital .ly-bottomCenter .ly-left, .sect-tukau-block04__capital .ly-bottomCenter .ly-right {
    width: 100%;
    margin: 0 auto;
  }
}
.sect-tukau-block04__capital .ly-bottomCenter .el-commonBgBlock-text {
  width: 100%;
}
.sect-tukau-block04__capital .ly-bottomCenter .el-capital-bottom-title {
  width: 236px;
  height: auto;
}
.sect-tukau-block04__capital .ly-bottomCenter .el-capital-bottom-illust {
  width: 371px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-tukau-block04__capital .ly-bottomCenter .el-capital-bottom-illust {
    width: 100%;
  }
}
.sect-service {
  padding: 64px 0 146px 0;
  background: #FFF;
}
@media only screen and (max-width:767px) {
  .sect-service {
    padding: 6.4vw 0 14.6vw 0;
  }
}
.sect-service .el-sect-title {
  margin-bottom: 46px;
}
@media only screen and (max-width:767px) {
  .sect-service .el-sect-title {
    margin-bottom: 4.6vw;
  }
}
.sect-service .el-sect-title img {
  max-width: 844px;
  height: auto;
}
@media only screen and (max-width:1100px) {
  .sect-service .el-sect-title img {
    width: 84.4vw;
  }
}
.sect-service .el-commonLightgreenBgBlock {
  max-width: 1100px;
  width: 95%;
  padding-bottom: 70px;
}
@media only screen and (max-width:767px) {
  .sect-service .el-commonLightgreenBgBlock {
    padding-bottom: 30px;
  }
}
.sect-service .el-commonLightgreenBgBlock .el-sectSubTitle {
  text-align: center;
}
.sect-service .el-commonLightgreenBgBlock .el-commonWhiteBlock {
  width: 960px;
  margin: 30px auto 0;
  padding-bottom: 56px;
}
@media only screen and (max-width:1100px) {
  .sect-service .el-commonLightgreenBgBlock .el-commonWhiteBlock {
    width: 90%;
  }
}
@media only screen and (max-width:990px) {
  .sect-service .el-commonLightgreenBgBlock .el-commonWhiteBlock {
    width: 94%;
    padding: 3vw 4vw;
  }
}
@media only screen and (max-width:767px) {
  .sect-service .el-commonLightgreenBgBlock .el-commonWhiteBlock {
    padding: 1% 3% 5%;
    margin-top: 20px;
  }
}
.sect-service .el-commonLightgreenBgBlock .el-commonWhiteBlock .el-sect-copy {
  margin-top: 30px;
}
@media only screen and (max-width:767px) {
  .sect-service .el-commonLightgreenBgBlock .el-commonWhiteBlock .el-sect-copy {
    margin-top: 3vw;
  }
}
.sect-service .el-commonLightgreenBgBlock .el-creamBgBlock {
  background: #FFF6D7;
}
.sect-service-block01 {
  margin: 0 auto;
  position: relative;
}
.sect-service-block01 .sect-service-block01-title {
  max-width: 563px;
  height: auto;
}
@media only screen and (max-width:990px) {
  .sect-service-block01 .sect-service-block01-title {
    width: 56.3vw;
  }
}
@media only screen and (max-width: 600px) {
  .sect-service-block01 .sect-service-block01-title {
    max-width: 370px;
    width: 100%;
  }
}
@media only screen and (max-width: 500px) {
  .sect-service-block01 .sect-service-block01-title {
    max-width: 320px;
    width: 100%;
  }
}
@media only screen and (max-width: 400px) {
  .sect-service-block01 .sect-service-block01-title {
    max-width: 280px;
    width: 100%;
  }
}
@media only screen and (max-width: 350px) {
  .sect-service-block01 .sect-service-block01-title {
    max-width: 220px;
    width: 100%;
  }
}
.sect-service-block01 .el-commonWhiteBlock .el-sect-copy img {
  max-width: 731px;
  height: auto;
}
@media only screen and (max-width:990px) {
  .sect-service-block01 .el-commonWhiteBlock .el-sect-copy img {
    width: 73.1vw;
  }
}
.sect-service-block01 .el-commonWhiteBlock .el-pointStage {
  margin: 60px auto;
}
@media only screen and (max-width:767px) {
  .sect-service-block01 .el-commonWhiteBlock .el-pointStage {
    width: 100%;
    margin: 20px auto;
  }
}
.sect-service-block01 .el-commonWhiteBlock .el-pointStageUp-pc {
  width: 84.6vw;
  max-width: 846px;
}
@media only screen and (max-width:1100px) {
  .sect-service-block01 .el-commonWhiteBlock .el-pointStageUp-pc {
    width: 100%;
  }
}
@media only screen and (max-width:990px) {
  .sect-service-block01 .el-commonWhiteBlock .el-pointStageUp-pc {
    width: 551px;
  }
}
@media only screen and (max-width:767px) {
  .sect-service-block01 .el-commonWhiteBlock .el-pointStageUp-pc {
    width: 100%;
  }
}
.sect-service-block02 {
  margin: 80px auto 0 auto;
  position: relative;
}
@media only screen and (max-width:990px) {
  .sect-service-block02 {
    margin-top: 40px;
  }
}
.sect-service-block02 .sect-service-block02-title {
  width: 467px;
  height: auto;
}
@media only screen and (max-width:990px) {
  .sect-service-block02 .sect-service-block02-title {
    width: 46.7vw;
  }
}
@media only screen and (max-width: 600px) {
  .sect-service-block02 .sect-service-block02-title {
    max-width: 318px;
    width: 100%;
  }
}
@media only screen and (max-width: 500px) {
  .sect-service-block02 .sect-service-block02-title {
    max-width: 260px;
    width: 100%;
  }
}
@media only screen and (max-width: 400px) {
  .sect-service-block02 .sect-service-block02-title {
    max-width: 270px;
    width: 100%;
  }
}
@media only screen and (max-width: 390px) {
  .sect-service-block02 .sect-service-block02-title {
    max-width: 234px;
    width: 100%;
    padding-top: 10px;
  }
}
.sect-service-block02 .el-commonWhiteBlock .el-sect-copy img {
  width: 731px;
  height: auto;
}
@media only screen and (max-width:990px) {
  .sect-service-block02 .el-commonWhiteBlock .el-sect-copy img {
    width: 73.1vw;
  }
}
.sect-service-block02 .el-commonWhiteBlock .el-sect-block-textIllust {
  width: 690px;
  margin: 45px auto 40px auto;
}
@media only screen and (max-width:990px) {
  .sect-service-block02 .el-commonWhiteBlock .el-sect-block-textIllust {
    width: 100%;
    max-width: 690px;
  }
}
@media only screen and (max-width:767px) {
  .sect-service-block02 .el-commonWhiteBlock .el-sect-block-textIllust {
    display: block;
    margin: 40px auto 0 auto;
  }
}
@media only screen and (max-width: 440px) {
  .sect-service-block02 .el-commonWhiteBlock .el-sect-block-textIllust {
    margin: 20px auto 0 auto;
  }
}
.sect-service-block02 .el-commonWhiteBlock .el-sect-block-textIllust .ly-left {
  width: calc(100% - 303px);
}
@media only screen and (max-width:767px) {
  .sect-service-block02 .el-commonWhiteBlock .el-sect-block-textIllust .ly-left {
    width: 100%;
  }
}
.sect-service-block02 .el-commonWhiteBlock .el-sect-block-textIllust .ly-left .el-sect-block-text {
  line-height: 1.6;
}
@media only screen and (max-width:990px) {
  .sect-service-block02 .el-commonWhiteBlock .el-sect-block-textIllust .ly-left .el-sect-block-text {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
@media only screen and (max-width:767px) {
  .sect-service-block02 .el-commonWhiteBlock .el-sect-block-textIllust .ly-left .el-sect-block-text {
    text-align: center;
  }
}
@media only screen and (max-width: 600px) {
  .sect-service-block02 .el-commonWhiteBlock .el-sect-block-textIllust .ly-left .el-sect-block-text {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 440px) {
  .sect-service-block02 .el-commonWhiteBlock .el-sect-block-textIllust .ly-left .el-sect-block-text {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.sect-service-block02 .el-commonWhiteBlock .el-sect-block-textIllust .ly-right {
  width: 303px;
}
@media only screen and (max-width:767px) {
  .sect-service-block02 .el-commonWhiteBlock .el-sect-block-textIllust .ly-right {
    width: 100%;
  }
}
.sect-service-block02 .el-commonWhiteBlock .el-sect-block-textIllust .ly-right .el-sect-block-illust {
  width: 303px;
}
@media only screen and (max-width:767px) {
  .sect-service-block02 .el-commonWhiteBlock .el-sect-block-textIllust .ly-right .el-sect-block-illust {
    max-width: 376px;
    width: 100%;
    margin: 40px auto 0 auto;
    display: table;
  }
}
@media only screen and (max-width: 440px) {
  .sect-service-block02 .el-commonWhiteBlock .el-sect-block-textIllust .ly-right .el-sect-block-illust {
    margin-top: 20px;
  }
}
.sect-service-block02__storeService {
  margin-top: 70px;
}
@media only screen and (max-width:767px) {
  .sect-service-block02__storeService {
    margin-top: 30px;
  }
}
.sect-service-block02__storeService .el-commonGreenLineBlock-title {
  width: 197px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-service-block02__storeService .el-commonGreenLineBlock-title {
    max-width: 300px;
    width: 55%;
  }
}
.sect-service-block02__storeService .el-commonBgBlock-text {
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.4;
}
@media only screen and (max-width: 600px) {
  .sect-service-block02__storeService .el-commonBgBlock-text {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 440px) {
  .sect-service-block02__storeService .el-commonBgBlock-text {
    font-size: 18px;
    font-size: 1.125rem;
    margin-top: 10px;
  }
}
.sect-service-block02__storeService .el-greenText {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
}
@media only screen and (max-width:767px) {
  .sect-service-block02__storeService .el-greenText {
    font-size: 23px;
    font-size: 1.4375rem;
  }
}
@media only screen and (max-width: 600px) {
  .sect-service-block02__storeService .el-greenText {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 440px) {
  .sect-service-block02__storeService .el-greenText {
    font-size: 16px;
    font-size: 1rem;
  }
}
.sect-service-block02__storeService .ly-wrap {
  width: 780px;
  margin: 30px auto 0 auto;
}
@media only screen and (max-width:1100px) {
  .sect-service-block02__storeService .ly-wrap {
    width: 100%;
    display: block;
  }
}
@media only screen and (max-width: 440px) {
  .sect-service-block02__storeService .ly-wrap {
    margin-top: 10px;
  }
}
.sect-service-block02__storeService .ly-left {
  width: 375px;
}
@media only screen and (max-width:1100px) {
  .sect-service-block02__storeService .ly-left {
    margin: 0 auto;
    width: 390px;
  }
}
@media only screen and (max-width:767px) {
  .sect-service-block02__storeService .ly-left {
    width: 100%;
    text-align: center;
  }
}
.sect-service-block02__storeService .ly-left .el-greenText {
  display: inline-block;
  padding: 26px 14px 26px 26px;
}
@media only screen and (max-width:767px) {
  .sect-service-block02__storeService .ly-left .el-greenText {
    margin-top: 10px;
    padding: 2.6vw 1.4vw 2.6vw 2.6vw;
  }
}
@media only screen and (max-width: 440px) {
  .sect-service-block02__storeService .ly-left .el-greenText {
    margin-top: 32px;
  }
}
@media only screen and (max-width: 390px) {
  .sect-service-block02__storeService .ly-left .el-greenText {
    margin-top: 0px;
  }
}
.sect-service-block02__storeService .ly-left .el-storeService-illust {
  width: 115px;
  height: auto;
  margin-top: -10px;
}
@media only screen and (max-width:767px) {
  .sect-service-block02__storeService .ly-left .el-storeService-illust {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 390px) {
  .sect-service-block02__storeService .ly-left .el-storeService-illust {
    margin-top: 0px;
  }
}
.sect-service-block02__storeService .ly-right {
  width: 390px;
}
@media only screen and (max-width:1100px) {
  .sect-service-block02__storeService .ly-right {
    margin: 20px auto 0 auto;
  }
}
@media only screen and (max-width:767px) {
  .sect-service-block02__storeService .ly-right {
    width: 100%;
    text-align: center;
  }
}
.sect-service-block02__storeService .ly-right .el-greenText {
  padding: 26px 0 26px 32px;
}
@media only screen and (max-width:767px) {
  .sect-service-block02__storeService .ly-right .el-greenText {
    padding: 2.6vw;
  }
}
.sect-service-block02__deliveryService {
  margin-top: 66px;
}
@media only screen and (max-width:767px) {
  .sect-service-block02__deliveryService {
    margin-top: 30px;
  }
}
.sect-service-block02__deliveryService .el-commonGreenLineBlock-title {
  width: 197px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-service-block02__deliveryService .el-commonGreenLineBlock-title {
    max-width: 300px;
    width: 55%;
  }
}
.sect-service-block02__deliveryService .el-commonBgBlock-text {
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.4;
}
@media only screen and (max-width:767px) {
  .sect-service-block02__deliveryService .el-commonBgBlock-text {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 600px) {
  .sect-service-block02__deliveryService .el-commonBgBlock-text {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 440px) {
  .sect-service-block02__deliveryService .el-commonBgBlock-text {
    font-size: 18px;
    font-size: 1.125rem;
    margin-top: 10px;
  }
}
.sect-service-block02__deliveryService .el-noteText {
  text-align: center;
  margin-top: 10px;
}
@media only screen and (max-width:767px) {
  .sect-service-block02__deliveryService .el-noteText {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 440px) {
  .sect-service-block02__deliveryService .el-noteText {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.sect-service-block02__deliveryService .el-greenText {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
}
@media only screen and (max-width:767px) {
  .sect-service-block02__deliveryService .el-greenText {
    font-size: 23px;
    font-size: 1.4375rem;
  }
}
@media only screen and (max-width: 600px) {
  .sect-service-block02__deliveryService .el-greenText {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 440px) {
  .sect-service-block02__deliveryService .el-greenText {
    font-size: 16px;
    font-size: 1rem;
  }
}
.sect-service-block02__deliveryService .el-creamBgBlock {
  padding: 20px;
  width: 780px;
  margin: 20px auto 0 auto;
}
@media only screen and (max-width:1100px) {
  .sect-service-block02__deliveryService .el-creamBgBlock {
    width: 100%;
  }
}
.sect-service-block02__deliveryService .el-creamBgBlock .el-commonBgBlock-text {
  margin-top: 10px;
  font-size: 18px;
  font-size: 1.125rem;
}
@media only screen and (max-width: 600px) {
  .sect-service-block02__deliveryService .el-creamBgBlock .el-commonBgBlock-text {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 440px) {
  .sect-service-block02__deliveryService .el-creamBgBlock .el-commonBgBlock-text {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.sect-service-block02__deliveryService .el-creamBgBlock .ly-wrap {
  width: 726px;
  margin: 12px auto 0 auto;
}
@media only screen and (max-width:1100px) {
  .sect-service-block02__deliveryService .el-creamBgBlock .ly-wrap {
    width: 100%;
    display: block;
  }
}
.sect-service-block02__deliveryService .el-creamBgBlock .ly-right, .sect-service-block02__deliveryService .el-creamBgBlock .ly-left {
  width: 358px;
}
@media only screen and (max-width:1100px) {
  .sect-service-block02__deliveryService .el-creamBgBlock .ly-right, .sect-service-block02__deliveryService .el-creamBgBlock .ly-left {
    margin: 0 auto;
  }
}
@media only screen and (max-width:767px) {
  .sect-service-block02__deliveryService .el-creamBgBlock .ly-right, .sect-service-block02__deliveryService .el-creamBgBlock .ly-left {
    width: 100%;
  }
}
.sect-service-block02__deliveryService .el-creamBgBlock .el-orangeBlock-text {
  background: #D59533;
  color: #FFF;
  border-radius: 40px;
  padding: 14px;
  max-width: 358px;
  font-size: 20px;
  font-size: 1.25rem;
}
@media only screen and (max-width:1100px) {
  .sect-service-block02__deliveryService .el-creamBgBlock .el-orangeBlock-text {
    margin-top: 10px;
  }
}
@media only screen and (max-width:767px) {
  .sect-service-block02__deliveryService .el-creamBgBlock .el-orangeBlock-text {
    width: 100%;
    margin: 10px auto 0 auto;
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 600px) {
  .sect-service-block02__deliveryService .el-creamBgBlock .el-orangeBlock-text {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 400px) {
  .sect-service-block02__deliveryService .el-creamBgBlock .el-orangeBlock-text {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.sect-service-block02__howToUse {
  width: 780px;
  margin: 40px auto;
  padding-bottom: 12px;
}
@media only screen and (max-width:1100px) {
  .sect-service-block02__howToUse {
    width: 100%;
  }
}
@media only screen and (max-width:767px) {
  .sect-service-block02__howToUse {
    margin: 4vw auto;
  }
}
.sect-service-block02__howToUse .inner {
  width: 732px;
  margin: 20px auto;
  display: flex;
}
@media only screen and (max-width:990px) {
  .sect-service-block02__howToUse .inner {
    width: 100%;
    display: block;
  }
}
@media only screen and (max-width:767px) {
  .sect-service-block02__howToUse .inner {
    margin: 2vw auto;
  }
}
.sect-service-block02__howToUse .el-noIcon {
  width: 36px;
  height: auto;
  margin-left: 32px;
}
@media only screen and (max-width:990px) {
  .sect-service-block02__howToUse .el-noIcon {
    margin-left: 0px;
  }
}
.sect-service-block02__howToUse .el-commonBgBlock-text {
  margin-left: 12px;
}
.sect-service-block02__howToUse .ly-elements .ly-wrap {
  justify-content: left;
  align-items: flex-start;
}
.sect-service-block02__howToUse .ly-elements .ly-left {
  width: unset;
}
@media only screen and (max-width:767px) {
  .sect-service-block02__howToUse .ly-elements .ly-right {
    width: 100%;
  }
}
.sect-service-block02__howToUse .ly-elements:nth-child(1) {
  width: 184px;
}
@media only screen and (max-width:990px) {
  .sect-service-block02__howToUse .ly-elements:nth-child(1) {
    width: 330px;
    margin: 0 auto;
  }
}
@media only screen and (max-width:767px) {
  .sect-service-block02__howToUse .ly-elements:nth-child(1) {
    width: 90%;
  }
}
.sect-service-block02__howToUse .ly-elements:nth-child(1) .el-noIcon {
  margin-left: 0px;
}
.sect-service-block02__howToUse .ly-elements:nth-child(1) .el-commonBgBlock-text {
  width: 108px;
}
@media only screen and (max-width:767px) {
  .sect-service-block02__howToUse .ly-elements:nth-child(1) .el-commonBgBlock-text {
    width: 100%;
  }
}
.sect-service-block02__howToUse .ly-elements:nth-child(2) {
  width: 302px;
  border-left: 4px dotted #5C370C;
}
@media only screen and (max-width:990px) {
  .sect-service-block02__howToUse .ly-elements:nth-child(2) {
    width: 330px;
    margin: 20px auto;
    border-left: none;
    border-top: 4px dotted #5C370C;
    padding-top: 20px;
  }
}
@media only screen and (max-width:767px) {
  .sect-service-block02__howToUse .ly-elements:nth-child(2) {
    border-top: 2px dotted #5C370C;
    width: 90%;
    padding-top: 10px;
    margin: 10px auto;
  }
}
.sect-service-block02__howToUse .ly-elements:nth-child(2) .el-commonBgBlock-text {
  width: 182px;
}
@media only screen and (max-width:767px) {
  .sect-service-block02__howToUse .ly-elements:nth-child(2) .el-commonBgBlock-text {
    width: 90%;
  }
}
.sect-service-block02__howToUse .ly-elements:nth-child(2) .el-noteText {
  width: 250px;
  margin-left: 38px;
  margin-top: 10px;
}
@media only screen and (max-width:767px) {
  .sect-service-block02__howToUse .ly-elements:nth-child(2) .el-noteText {
    width: calc(100% - 42px);
    margin-left: 42px;
  }
}
@media only screen and (max-width: 600px) {
  .sect-service-block02__howToUse .ly-elements:nth-child(2) .el-noteText {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 440px) {
  .sect-service-block02__howToUse .ly-elements:nth-child(2) .el-noteText {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.sect-service-block02__howToUse .ly-elements:nth-child(3) {
  width: 250px;
  border-left: 4px dotted #5C370C;
}
@media only screen and (max-width:990px) {
  .sect-service-block02__howToUse .ly-elements:nth-child(3) {
    width: 330px;
    margin: 0 auto;
    border-left: none;
    border-top: 4px dotted #5C370C;
    padding-top: 20px;
  }
}
@media only screen and (max-width:767px) {
  .sect-service-block02__howToUse .ly-elements:nth-child(3) {
    border-top: 2px dotted #5C370C;
    width: 90%;
    padding-top: 10px;
  }
}
.sect-service-block02__howToUse .ly-elements:nth-child(3) .el-commonBgBlock-text {
  width: 164px;
}
@media only screen and (max-width:767px) {
  .sect-service-block02__howToUse .ly-elements:nth-child(3) .el-commonBgBlock-text {
    width: 90%;
  }
}
.sect-service-block02__joinBtn {
  width: 780px;
  margin: 20px auto 0 auto;
  padding-bottom: 30px;
  background: #F7EFB5;
  border: solid 2px #EAD645;
}
@media only screen and (max-width:990px) {
  .sect-service-block02__joinBtn {
    width: 100%;
  }
}
@media only screen and (max-width:767px) {
  .sect-service-block02__joinBtn {
    padding: 5%;
  }
}
.sect-service-block02__joinBtn .el-joinBtn-title {
  max-width: 654px;
  height: auto;
  width: 90%;
}
@media only screen and (max-width:767px) {
  .sect-service-block02__joinBtn .el-joinBtn-title {
    max-width: 432px;
    width: 100%;
  }
}
.sect-service-block02__joinBtn .ly-wrap {
  width: 685px;
  margin: 20px auto 0 auto;
  justify-content: space-between;
}
@media only screen and (max-width:990px) {
  .sect-service-block02__joinBtn .ly-wrap {
    width: 68.5vw;
  }
}
@media only screen and (max-width:767px) {
  .sect-service-block02__joinBtn .ly-wrap {
    display: block;
  }
}
.sect-service-block02__joinBtn .ly-wrap .ly-left {
  width: 175px;
}
@media only screen and (max-width:767px) {
  .sect-service-block02__joinBtn .ly-wrap .ly-left {
    margin: 0 auto;
    width: 100%;
  }
}
.sect-service-block02__joinBtn .ly-wrap .ly-left .el-joinBtn-illust {
  width: 175px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-service-block02__joinBtn .ly-wrap .ly-left .el-joinBtn-illust {
    max-width: 204px;
    width: 100%;
    margin: 0 auto;
    display: table;
  }
}
@media only screen and (max-width: 400px) {
  .sect-service-block02__joinBtn .ly-wrap .ly-left .el-joinBtn-illust {
    max-width: 160px;
  }
}
.sect-service-block02__joinBtn .ly-wrap .ly-right {
  width: 488px;
  text-align: center;
}
@media only screen and (max-width:990px) {
  .sect-service-block02__joinBtn .ly-wrap .ly-right {
    width: 48.8vw;
  }
}
@media only screen and (max-width:767px) {
  .sect-service-block02__joinBtn .ly-wrap .ly-right {
    width: 100%;
    margin: 20px auto 0 auto;
  }
}
.sect-service-block02__joinBtn .ly-wrap .ly-right .el-joinBtn-text {
  width: 428px;
  height: auto;
  margin-bottom: 20px;
}
@media only screen and (max-width:990px) {
  .sect-service-block02__joinBtn .ly-wrap .ly-right .el-joinBtn-text {
    width: 42.8vw;
  }
}
.sect-service-block02__joinBtn .ly-wrap .ly-right .btn-join {
  width: 488px;
  height: auto;
}
@media only screen and (max-width:990px) {
  .sect-service-block02__joinBtn .ly-wrap .ly-right .btn-join {
    max-width: 485px;
    width: 100%;
  }
}
.sect-service-block03 {
  margin: 80px auto 0 auto;
  position: relative;
}
@media only screen and (max-width:990px) {
  .sect-service-block03 {
    margin-top: 40px;
  }
}
.sect-service-block03 .sect-service-block03-title {
  width: 391px;
  height: auto;
}
@media only screen and (max-width:990px) {
  .sect-service-block03 .sect-service-block03-title {
    width: 39.1vw;
  }
}
@media only screen and (max-width: 600px) {
  .sect-service-block03 .sect-service-block03-title {
    max-width: 278px;
    width: 100%;
  }
}
@media only screen and (max-width: 500px) {
  .sect-service-block03 .sect-service-block03-title {
    max-width: 220px;
    width: 100%;
  }
}
@media only screen and (max-width: 400px) {
  .sect-service-block03 .sect-service-block03-title {
    max-width: 230px;
    width: 100%;
  }
}
@media only screen and (max-width: 390px) {
  .sect-service-block03 .sect-service-block03-title {
    max-width: 197px;
    width: 100%;
    padding-top: 10px;
  }
}
.sect-service-block03 .el-commonWhiteBlock .el-sect-copy img {
  width: 731px;
  height: auto;
}
@media only screen and (max-width:990px) {
  .sect-service-block03 .el-commonWhiteBlock .el-sect-copy img {
    width: 73.1vw;
  }
}
.sect-service-block03 .el-commonWhiteBlock .el-commonBgBlock-text {
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  margin: 20px auto 30px auto;
}
@media only screen and (max-width:767px) {
  .sect-service-block03 .el-commonWhiteBlock .el-commonBgBlock-text {
    text-align: left;
  }
}
@media only screen and (max-width: 400px) {
  .sect-service-block03 .el-commonWhiteBlock .el-commonBgBlock-text {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.sect-service-block03 .el-commonWhiteBlock .el-noteText {
  width: 800px;
  margin: 10px auto 0 auto;
}
@media only screen and (max-width:990px) {
  .sect-service-block03 .el-commonWhiteBlock .el-noteText {
    width: 100%;
  }
}
@media only screen and (max-width: 400px) {
  .sect-service-block03 .el-commonWhiteBlock .el-noteText {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.sect-service-block03 .el-commonWhiteBlock .el-pointStage {
  margin: 60px auto;
}
.sect-service-block03 .el-commonWhiteBlock .el-pointStage-pc {
  width: 800px;
}
@media only screen and (max-width:1100px) {
  .sect-service-block03 .el-commonWhiteBlock .el-pointStage-pc {
    width: 100%;
  }
}
.sect-service-block03__diamondStage {
  width: 780px;
  margin: 0 auto;
  padding-bottom: 45px;
}
@media only screen and (max-width:990px) {
  .sect-service-block03__diamondStage {
    width: 78vw;
  }
}
@media only screen and (max-width:767px) {
  .sect-service-block03__diamondStage {
    width: 100%;
    padding: 5%;
  }
}
.sect-service-block03__diamondStage .el-diamondStage-title {
  width: 698px;
  height: auto;
}
@media only screen and (max-width:990px) {
  .sect-service-block03__diamondStage .el-diamondStage-title {
    width: 69.8vw;
  }
}
@media only screen and (max-width:767px) {
  .sect-service-block03__diamondStage .el-diamondStage-title {
    max-width: 457px;
    width: 100%;
  }
}
.sect-service-block03__diamondStage .el-noteText {
  text-align: center;
}
@media only screen and (max-width: 400px) {
  .sect-service-block03__diamondStage .el-noteText {
    text-align: left;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.sect-service-block03__stageCheck {
  width: 780px;
  margin: 0 auto;
  margin-top: 20px;
}
@media only screen and (max-width:990px) {
  .sect-service-block03__stageCheck {
    width: 78vw;
  }
}
@media only screen and (max-width:767px) {
  .sect-service-block03__stageCheck {
    width: 100%;
  }
}
.sect-service-block03__stageCheck .el-commonBgBlock-title {
  letter-spacing: unset;
}
@media only screen and (max-width:767px) {
  .sect-service-block03__stageCheck .el-commonBgBlock-title {
    line-height: 1.5;
  }
}
.sect-service-block03__stageCheck .el-commonBgBlock-title span {
  letter-spacing: unset;
}
.sect-service-block03__stageCheck .ly-wrap {
  width: 684px;
  margin: 30px auto 0;
  padding-bottom: 40px;
}
@media only screen and (max-width:990px) {
  .sect-service-block03__stageCheck .ly-wrap {
    width: 68.4vw;
  }
}
@media only screen and (max-width:767px) {
  .sect-service-block03__stageCheck .ly-wrap {
    display: block;
  }
  .sect-service-block03__stageCheck .ly-wrap .ly-left, .sect-service-block03__stageCheck .ly-wrap .ly-right {
    margin: 0 auto;
    width: 100%;
  }
}
.sect-service-block03__stageCheck .ly-wrap .el-stageCheck-left {
  width: 297px;
  height: auto;
  margin-bottom: 20px;
}
@media only screen and (max-width:990px) {
  .sect-service-block03__stageCheck .ly-wrap .el-stageCheck-left {
    width: 29.7vw;
  }
}
@media only screen and (max-width:767px) {
  .sect-service-block03__stageCheck .ly-wrap .el-stageCheck-left {
    max-width: 358px;
    width: 100%;
  }
}
.sect-service-block03__stageCheck .ly-wrap .el-stageCheck-right {
  width: 342px;
  height: auto;
}
@media only screen and (max-width:990px) {
  .sect-service-block03__stageCheck .ly-wrap .el-stageCheck-right {
    width: 34.2vw;
  }
}
@media only screen and (max-width:767px) {
  .sect-service-block03__stageCheck .ly-wrap .el-stageCheck-right {
    max-width: 420px;
    width: 100%;
    display: table;
    margin: 0 auto;
  }
}
.sect-contact {
  position: relative;
  background: #FFF;
}
.sect-contact .el-bg-grayNami {
  background: url(../images/grayNami.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 116px;
  margin: auto;
}
@media only screen and (max-width:990px) {
  .sect-contact .el-bg-grayNami {
    background: url(../images/grayNami-sp.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 103px;
  }
}
@media only screen and (max-width:767px) {
  .sect-contact .el-bg-grayNami {
    height: 73px;
  }
}
.sect-contact .el-bg-gray {
  background: #EFEFEF;
  padding-top: 20px;
  padding-bottom: 85px;
}
@media only screen and (max-width:990px) {
  .sect-contact .el-bg-gray {
    padding-bottom: 8.5vw;
  }
}
.sect-contact-service {
  width: 1100px;
  margin: 0 auto;
}
@media only screen and (max-width:1100px) {
  .sect-contact-service {
    width: 95%;
  }
}
.sect-contact-service .sect-title-img {
  width: 80px;
  height: auto;
}
@media only screen and (max-width: 440px) {
  .sect-contact-service .sect-title-img {
    width: 60px;
  }
}
.sect-contact-service .el-sect-title {
  margin: 30px auto 37px auto;
}
.sect-contact-service .el-sect-title img {
  width: 371px;
  height: auto;
}
@media only screen and (max-width:1100px) {
  .sect-contact-service .el-sect-title img {
    width: 37.1vw;
  }
}
@media only screen and (max-width:990px) {
  .sect-contact-service .el-sect-title img {
    width: 280px;
  }
}
@media only screen and (max-width:767px) {
  .sect-contact-service .el-sect-title img {
    width: 260px;
  }
}
@media only screen and (max-width: 550px) {
  .sect-contact-service .el-sect-title img {
    width: 220px;
  }
}
@media only screen and (max-width: 440px) {
  .sect-contact-service .el-sect-title img {
    width: 200px;
  }
}
@media only screen and (min-width:1100px) {
  .sect-contact-service .sect-contact-list {
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (max-width:767px) {
  .sect-contact-service .sect-contact-list {
    display: block;
  }
}
.sect-contact-service .sect-contact-list-column {
  width: 530px;
  background-color: #FFF;
  border-radius: 20px;
  padding: 17px 15px;
  margin-top: 20px;
}
@media only screen and (max-width:1100px) {
  .sect-contact-service .sect-contact-list-column {
    margin: 20px auto 0 auto;
  }
}
@media only screen and (max-width:767px) {
  .sect-contact-service .sect-contact-list-column {
    width: 90%;
  }
  .sect-contact-service .sect-contact-list-column .ly-wrap {
    display: block;
  }
}
.sect-contact-service .sect-contact-list-title {
  color: #00A33E;
  border-bottom: solid 2px #E4EEE4;
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-size: 18px;
  font-size: 1.125rem;
}
.sect-contact-service .sect-contact-list .sect-contact-list-icon01 {
  width: 87px;
  height: auto;
}
.sect-contact-service .sect-contact-list .sect-contact-list-icon02 {
  width: 99px;
  height: auto;
}
.sect-contact-service .sect-contact-list .sect-contact-list-icon03 {
  width: 108px;
  height: auto;
}
.sect-contact-service .sect-contact-list .sect-contact-list-icon04 {
  width: 73px;
  height: auto;
}
.sect-contact-service .sect-contact-list .sect-contact-list-icon05 {
  width: 82px;
  height: auto;
}
.sect-contact-service .sect-contact-list .sect-contact-list-icon06 {
  width: 118px;
  height: auto;
}
.sect-contact-service .sect-contact-list .sect-contact-list-icon07 {
  width: 93px;
  height: auto;
}
.sect-contact-service .sect-contact-list .sect-contact-list-icon08 {
  width: 98px;
  height: auto;
}
.sect-contact-service .sect-contact-list .sect-contact-list-icon09 {
  width: 78px;
  height: auto;
}
.sect-contact-service .sect-contact-list .sect-contact-list-tel01 {
  width: 299px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-contact-service .sect-contact-list .sect-contact-list-tel01 {
    max-width: 299px;
    width: 100%;
  }
}
.sect-contact-service .sect-contact-list .sect-contact-list-tel02 {
  width: 269px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-contact-service .sect-contact-list .sect-contact-list-tel02 {
    max-width: 269px;
    width: 100%;
  }
}
.sect-contact-service .sect-contact-list .sect-contact-list-tel03 {
  width: 273px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-contact-service .sect-contact-list .sect-contact-list-tel03 {
    max-width: 273px;
    width: 100%;
  }
}
.sect-contact-service .sect-contact-list .sect-contact-list-tel04 {
  width: 271px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-contact-service .sect-contact-list .sect-contact-list-tel04 {
    max-width: 271px;
    width: 100%;
  }
}
.sect-contact-service .sect-contact-list .sect-contact-list-tel05 {
  width: 274px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-contact-service .sect-contact-list .sect-contact-list-tel05 {
    max-width: 274px;
    width: 100%;
  }
}
.sect-contact-service .sect-contact-list .sect-contact-list-tel06 {
  width: 299px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-contact-service .sect-contact-list .sect-contact-list-tel06 {
    max-width: 299px;
    width: 100%;
  }
}
.sect-contact-service .sect-contact-list .sect-contact-list-tel07 {
  width: 271px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-contact-service .sect-contact-list .sect-contact-list-tel07 {
    max-width: 271px;
    width: 100%;
  }
}
.sect-contact-service .sect-contact-list .sect-contact-list-tel08 {
  width: 267px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-contact-service .sect-contact-list .sect-contact-list-tel08 {
    max-width: 267px;
    width: 100%;
  }
}
.sect-contact-service .sect-contact-list .sect-contact-list-tel09 {
  width: 299px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-contact-service .sect-contact-list .sect-contact-list-tel09 {
    max-width: 299px;
    width: 100%;
  }
}
.sect-contact-service .sect-contact-list .ly-left {
  width: calc(100% - 355px);
  text-align: center;
}
@media only screen and (max-width:767px) {
  .sect-contact-service .sect-contact-list .ly-left {
    width: 100%;
  }
}
.sect-contact-service .sect-contact-list .ly-right {
  width: 355px;
}
@media only screen and (max-width:767px) {
  .sect-contact-service .sect-contact-list .ly-right {
    width: 100%;
    margin-top: 10px;
    display: table;
    margin: 10px auto 0 auto;
  }
}
.sect-contact-service .sect-contact-list .sect-contact-list-text {
  line-height: 1.5;
  font-size: 12px;
  font-size: 0.75rem;
}
.sect-contact-service .sect-contact-list .sect-contact-list-text span {
  font-size: 10px;
  font-size: 0.625rem;
}
.sect-contact-service .sect-contact-list .sect-contact-list-telno {
  margin-top: 6px;
  margin-bottom: 10px;
}
.sect-contact-service .sect-contact-list .sect-contact-list-link {
  margin-top: 10px;
}
@media only screen and (max-width:767px) {
  .sect-contact-service .sect-contact-list .sect-contact-list-link {
    display: table;
    margin: 10px auto 0 auto;
  }
}
.sect-contact-service .sect-contact-list .sect-contact-list-link .sect-contact-list-link03 {
  width: 275px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-contact-service .sect-contact-list .sect-contact-list-link .sect-contact-list-link03 {
    max-width: 275px;
    width: 100%;
  }
}
.sect-contact-service .sect-contact-list .sect-contact-list-link .sect-contact-list-link04 {
  width: 288px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-contact-service .sect-contact-list .sect-contact-list-link .sect-contact-list-link04 {
    max-width: 288px;
    width: 100%;
  }
}
.sect-contact-service .sect-contact-list .sect-contact-list-link .sect-contact-list-link05 {
  width: 308px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-contact-service .sect-contact-list .sect-contact-list-link .sect-contact-list-link05 {
    max-width: 308px;
    width: 100%;
  }
}
.sect-contact-service .sect-contact-list .sect-contact-list-link .sect-contact-list-link06 {
  width: 299px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-contact-service .sect-contact-list .sect-contact-list-link .sect-contact-list-link06 {
    max-width: 299px;
    width: 100%;
  }
}
.sect-contact-service .sect-contact-list .sect-contact-list-link .sect-contact-list-link07 {
  width: 298px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-contact-service .sect-contact-list .sect-contact-list-link .sect-contact-list-link07 {
    max-width: 299px;
    width: 100%;
  }
}
.sect-contact-service .sect-contact-list .sect-contact-list-link .sect-contact-list-link08 {
  width: 307px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-contact-service .sect-contact-list .sect-contact-list-link .sect-contact-list-link08 {
    max-width: 299px;
    width: 100%;
  }
}
.sect-contact-service .sect-contact-list .sect-contact-list-link .sect-contact-list-link09 {
  width: 264px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-contact-service .sect-contact-list .sect-contact-list-link .sect-contact-list-link09 {
    max-width: 299px;
    width: 100%;
  }
}
.sect-contact-service .sect-contact-list .sect-contact-list-link .sect-contact-list-link10 {
  width: 307px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-contact-service .sect-contact-list .sect-contact-list-link .sect-contact-list-link10 {
    max-width: 299px;
    width: 100%;
  }
}
.sect-contact-service .sect-contact-list .sect-contact-list-link .sect-contact-list-link11 {
  width: 314px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-contact-service .sect-contact-list .sect-contact-list-link .sect-contact-list-link11 {
    max-width: 299px;
    width: 100%;
  }
}
.sect-contact-faq {
  margin-top: 96px;
  padding-top: 66px;
  border-top: dotted 4px #5C370C;
  margin: 66px auto 0 auto;
  width: 1100px;
}
@media only screen and (max-width:1100px) {
  .sect-contact-faq {
    width: 95%;
  }
}
.sect-contact-faq .sect-title-img {
  width: 83px;
  height: auto;
}
@media only screen and (max-width: 440px) {
  .sect-contact-faq .sect-title-img {
    width: 63px;
  }
}
.sect-contact-faq .el-sect-title {
  margin: 30px auto 37px auto;
}
.sect-contact-faq .el-sect-title img {
  width: 252px;
  height: auto;
}
@media only screen and (max-width:1100px) {
  .sect-contact-faq .el-sect-title img {
    width: 25.2vw;
  }
}
.sect-contact-faq .faq-item {
  background-color: #FFF;
  border-radius: 20px;
  padding: 40px 0;
  margin-top: 20px;
}
@media only screen and (max-width:767px) {
  .sect-contact-faq .faq-item {
    border-radius: 15px;
    padding: 4vw 0;
  }
}
.sect-contact-faq .faq-itemHeading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.sect-contact-faq .faq-itemHeading h3 {
  display: block;
  float: left;
  position: relative;
  padding-left: 50px;
  width: 95%;
  font-weight: normal;
}
@media only screen and (max-width:1100px) {
  .sect-contact-faq .faq-itemHeading h3 {
    width: calc(100% - 80px);
  }
}
@media only screen and (max-width:767px) {
  .sect-contact-faq .faq-itemHeading h3 {
    width: calc(100% - 40px);
    padding-left: 20px;
  }
}
.sect-contact-faq .faq-itemHeading h3 img {
  width: 27px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-contact-faq .faq-itemHeading h3 img {
    width: 16px;
  }
}
.sect-contact-faq .faq-itemHeading h3 .faq-itemHeading-text {
  display: inline-block;
  width: 912px;
  padding-left: 32px;
  font-size: 24px;
  font-size: 1.5rem;
}
@media only screen and (max-width:1100px) {
  .sect-contact-faq .faq-itemHeading h3 .faq-itemHeading-text {
    width: calc(100% - 59px);
  }
}
@media only screen and (max-width:990px) {
  .sect-contact-faq .faq-itemHeading h3 .faq-itemHeading-text {
    display: inline-block;
    margin-left: 3vw;
    padding-left: 0px;
  }
}
@media only screen and (max-width:767px) {
  .sect-contact-faq .faq-itemHeading h3 .faq-itemHeading-text {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 400px) {
  .sect-contact-faq .faq-itemHeading h3 .faq-itemHeading-text {
    font-size: 16px;
    font-size: 1rem;
  }
}
.sect-contact-faq .faq-itemHeadingBtn {
  display: block;
  float: right;
  padding-right: 30px;
}
.sect-contact-faq .faq-itemHeadingBtn img {
  width: 20px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-contact-faq .faq-itemHeadingBtn img {
    width: 13px;
  }
}
.sect-contact-faq .faq-itemHeadingBtn--open {
  display: inline-block;
}
.sect-contact-faq .faq-itemHeadingBtn--close {
  display: none;
}
.sect-contact-faq .faq-itemContents {
  display: none;
  padding-top: 68px;
  padding-bottom: 20px;
}
@media only screen and (max-width:990px) {
  .sect-contact-faq .faq-itemContents {
    padding-top: 6.8vw;
    padding-bottom: 2vw;
  }
}
.sect-contact-faq .faq-itemContents p {
  padding-left: 70px;
  display: block;
}
@media only screen and (max-width:767px) {
  .sect-contact-faq .faq-itemContents p {
    padding-left: 10vw;
  }
}
.sect-contact-faq .faq-itemContents p img {
  width: 23px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .sect-contact-faq .faq-itemContents p img {
    width: 14px;
  }
}
.sect-contact-faq .faq-itemContents .faq-itemContents-text {
  display: inline-block;
  width: 907px;
  padding-left: 32px;
  font-size: 21px;
  font-size: 1.3125rem;
}
@media only screen and (max-width:1100px) {
  .sect-contact-faq .faq-itemContents .faq-itemContents-text {
    width: calc(100% - 93px);
    padding-left: 3.2vw;
  }
}
@media only screen and (max-width:767px) {
  .sect-contact-faq .faq-itemContents .faq-itemContents-text {
    width: 86%;
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 400px) {
  .sect-contact-faq .faq-itemContents .faq-itemContents-text {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.footer {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 30px;
  background: #FFF;
}
@media only screen and (max-width:767px) {
  .footer {
    padding: 8vw 0 3vw;
  }
}
.footer .el-footer-logo {
  width: 124px;
  height: auto;
}
@media only screen and (max-width:767px) {
  .footer .el-footer-logo {
    width: 80px;
  }
}
.footer p {
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: 30px;
}
@media only screen and (max-width:767px) {
  .footer p {
    margin-top: 3vw;
  }
}

.c-bg {
  background-color: #ffedf1;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  overflow: hidden;
}

.c-poIllust {
  width: 100%;
  height: 100vh;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
}
.c-poIllust .c-po {
  display: block;
  position: absolute;
  width: 86px;
  height: 86px;
}
.c-poIllust .c-po .inner {
  display: block;
}
.c-poIllust .c-po .inner img {
  display: block;
  top: 0;
}
.c-poIllust .c-po.num1 {
  left: 8%;
  top: 90vh;
}
.c-poIllust .c-po.num2 {
  right: 8%;
  top: 60vh;
}
.c-poIllust .c-po.num3 {
  left: 15%;
  top: 20vh;
}
.c-poIllust .c-po.num4 {
  right: 15%;
  top: 10vh;
}
.c-poIllust .c-po.num5 {
  left: 0;
  right: 0;
  margin: auto;
  top: 12vh;
}
.c-poIllust .c-po.num6 {
  right: 22%;
  top: 70vh;
}
.c-poIllust .c-po.num7 {
  left: 22%;
  top: 70vh;
}
.c-poIllust .c-po.num8 {
  right: 2%;
  top: 40vh;
}
.c-poIllust .c-po.num9 {
  left: 2%;
  top: 40vh;
}

/*.bg_ensyo-act .c-allrgen .c-al img{
  fill: yellow;
  opacity: 0.2;
}
.c-bg__ensyo{
  display: block;
}*//*# sourceMappingURL=main.css.map */