@charset "UTF-8";
/* ==========================================================================
   Foundation
** ========================================================================== */
/* Fonts
** ----------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:500&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Josefin+Sans&display=swap");
@font-face {
  font-family: "Original Yu Gothic";
  src: local("Yu Gothic");
  font-weight: 300;
}

@font-face {
  font-family: "Original Yu Gothic";
  src: local("Yu Gothic");
  font-weight: 500;
}

@font-face {
  font-family: "Original Yu Gothic";
  src: local("Yu Gothic");
  font-weight: bold;
}

@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 100;
}

@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 200;
}

/* Plugin
** ----------------------------------------------------------------- */
/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
  touch-action: none;
}

/* Anti FOUC */
.remodal, [data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

/* Fix iPad, iPhone glitches */
.remodal-overlay, .remodal-wrapper {
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
.remodal > * {
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo", "メイリオ", sans-serif;
}

/* Default theme styles for the background */
.remodal-bg.remodal-is-opening, .remodal-bg.remodal-is-opened {
  filter: blur(3px);
}

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(240, 239, 234, 0.96);
}

.remodal-overlay.remodal-is-opening, .remodal-overlay.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */
.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 20px;
  transform: translate3d(0, 0, 0);
  color: #282828;
  background: transparent;
  vertical-align: middle;
}

.remodal.remodal-is-opening, .remodal.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */
.remodal-close {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover, .remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "\00d7";
  text-align: center;
}

/* Dialog buttons */
.remodal-confirm, .remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover, .remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover, .remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner, .remodal-cancel::-moz-focus-inner, .remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* Keyframes
     ========================================================================== */
@keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.95);
    opacity: 0;
    filter: blur(0);
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Media queries
     ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 1020px;
  }
}

/* IE8
     ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}

#page {
  max-width: none;
  background-color: #fff;
}

#bottomlink {
  max-width:none;
}





/* tesuri
     ========================================================================== */

#tesuri{
  font-family: 'Noto Sans JP', sans-serif;
}

#tesuri .pc{
  display: none;
}

#tesuri .sp{
  display: block;
}

#tesuri .wrap{
  margin: 0 20px;
}

#tesuri img{
  max-width: 100%;
}

.tesuri__com{
  display: block;
  font-size: 12px;
  color: #707070;
  text-align: right;
  margin-top: 16px;
  line-height: 1.5;
}

@media screen and (min-width: 460px) {

  #tesuri .pc{
    display: block;
  }

  #tesuri .sp{
    display: none;
  }

  #tesuri .wrap{
    margin: 0 auto;
    width: 1000px;
    max-width: 1000px;
  }

  .tesuri__com{
    font-size: 14px;
    margin-top: 16px;
  }

  .tesuri__com br{
    display: none
  }

}


/* tesuri__mv */

.tesuri__mv{
  background-color: #D9F0B9;
  text-align: center;
  padding-top: 10px;
}

.tesuri__mv img{
  width: 92%;
  margin-left: 8%;
}

@media screen and (min-width: 460px) {

  .tesuri__mv{
    text-align: center;
    padding-top: 10px;
  }

  .tesuri__mv img{
    max-width: 1128px;
    width: 1128px;
    margin: 0 auto;
  }

}

/* tesuri__maintxt */

.tesuri__maintxt{
  background-color: #309B42;
  padding: 20px 0 25px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.56;
}

@media screen and (min-width: 460px) {

  .tesuri__maintxt{
    text-align: center;
    padding: 40px 0 ;
    font-size: 20px;
    line-height: 1.65;
  }

}

/* tesuri__graphs */

.tesuri__graphs{
  padding: 40px 0;
}

.tesuri__graphs h2{
  width: 80%;
  margin: 0 auto 24px;
  text-align: center;
}

.tesuri__graphs ul li{
  margin-bottom: 32px;
  text-align: center;
}

.tesuri__graphs ul li:first-child img{
  margin-left: -5%;
  width: 83%;
}

.tesuri__graphs ul li:last-child img{
  margin-left: -3%;
  width: 85%;
}

.tesuri__graphs__cause .tesuri__com{
  margin-right: 16px;
}

.tesuri__graphs__cause > img{
  width: 84%;
  display: block;
  margin: 0 auto 20px;
}

.tesuri__graphs__cause__graph{
  background-color: #EEEDEF;
  padding: 10px 0;
  overflow: scroll;
  position: relative;
}


.tesuri__graphs__cause__graph .swipe{
  width: 145px;
  height: 145px;
  background: url(../images/swipe.png) no-repeat 50% 50% / cover;
  display: block;
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.tesuri__graphs__cause__graph > span{
  width: 666px;
  display: block;
  padding: 0 16px;
}



@media screen and (min-width: 460px) {

    .tesuri__graphs{
      padding: 120px 0;
    }

    .tesuri__graphs h2{
      width: 453px;
      margin: 0 auto 30px;
    }

    .tesuri__graphs h2 > img{
      height: 54px;
    }

    .tesuri__graphs__pcimg{
      width: 903px;
      margin-bottom: 40px;
    }

    .tesuri__graphs__pcimg small{
      margin-top: 40px;
      display: block;
    }

    .tesuri__graphs__cause .tesuri__com{
      margin-right: 0px;
      width: 1000px;
      margin: 16px auto 0;
    }

    .tesuri__graphs__cause > img{
      width: 771px;
    }

    .tesuri__graphs__cause__graph{
      background-color: #fff;
      padding: 0;
      overflow: inherit;
    }

    .tesuri__graphs__cause__graph > span{
      width: 864px;
      margin: 0 auto;
      padding: 0;
    }

}

/* tesuri__point */

.tesuri__point{
  background-color: #D9F0B9;
  padding: 60px 0 40px;
  position: relative;
}

.tesuri__point::before{
  content: "";
  width: 82px;
  height: 30px;
  background:url(../images/arrow-w.svg) no-repeat 50% 50% / contain;
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  margin: auto;
}

.tesuri__point::after{
  content: "";
  width: 82px;
  height: 30px;
  background:url(../images/arrow-g.svg) no-repeat 50% 50% / contain;
  position: absolute;
  bottom: -27px;
  left: 0;
  right: 0;
  margin: auto;
}


.tesuri__point h2{
  margin-bottom: 24px;
}

.tesuri__point__txt{
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.53;
  margin-bottom: 24px;
}

.tesuri__point dl{
  background-color: #fff;
  border-radius: 24px;
  padding: 25px 20px 5px;
}

.tesuri__point dt {
  text-align: center;
  margin-bottom: 24px;
}

.tesuri__point dt span{
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 2px solid #309B42;

}

.tesuri__point dd ul{
  display: flex;
  flex-wrap: wrap;
}

.tesuri__point dd ul li{
  width: 50%;
  color: #309B42;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

@media screen and (max-width: 320px) {
  .tesuri__point dd ul li{
    font-size: 16px;
    margin-bottom: 18px;
}

}

@media screen and (min-width: 460px) {

    .tesuri__point{
      padding: 76px 0 80px;
    }

    .tesuri__point::before{
      width: 120px;
      height: 46px;
      top: -5px;
    }

    .tesuri__point::after{
      width: 120px;
      height: 46px;
      bottom: -41px;
    }

    .tesuri__point h2{
      width: 840px;
      margin: 0 auto 40px
    }

    .tesuri__point img.last{
      width: 1020px;
      display: block;
      margin: 0 auto;
    }

    .tesuri__point__txt{
      font-size: 27px;
      margin-bottom: 50px;
    }

    .tesuri__point__txt br{
      display: none;
    }

}

/* tesuri__support */

.tesuri__support{
  padding: 60px 0 40px;
}

.tesuri__support h2{
  width: 259px;
  margin: 0 auto 32px;
}

.tesuri__support iframe{
  width: 100%;
  height: 50vw;
  margin-bottom: 32px;
}

.tesuri__support__btn{
  content: "";
  background: url(../images/lineup-more.svg) no-repeat 50% 50% / cover;
  width: 270px;
  height: 57px;
  margin: 0 auto;
}


.tesuri__support__btn.act{
  background: url(../images/lineup-close.svg) no-repeat 50% 50% / cover;
}

.tesuri__support__lineup h2{
  width: 115px;
}

.tesuri__support__lineup__inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}



.tesuri__support__lineup__inner dl{
  width: 49%;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
}

.tesuri__support__lineup__inner dt{
  width: 140px;
  margin: 0 auto 12px;
}

.tesuri__support__lineup__inner dd{
  font-size: 14px;
  line-height: 1.5;
}

.tesuri__support__lineup__inner dd em{
  display: block;
  font-weight: 700;
  font-size: 18px;
  margin: -2px 0 0;
}

.tesuri__support__lineup__inner dd.new{
  background: url(../images/icon-new.svg?201015) no-repeat 50% 50% / contain;
  width: 41px;
  height: 41px;
  position: absolute;
  top: -10px;
  left: 10px;
}

@media screen and (min-width: 460px) {

    .tesuri__support{
      padding: 120px 0 80px;
    }

    .tesuri__support h2{
      width: 885px;
      margin: 0 auto 40px;
    }

    .tesuri__support h2 > img{
      height: 90px;
    }

    .tesuri__support iframe{
      max-width: 840px;
      height: 473px;
      margin: 0 auto 50px;
      display: block;
    }

    .tesuri__support__btn{
      display: none;
    }

    .tesuri__support__lineup h2{
      width: 181px;
    }

    .tesuri__support__lineup h2 > img{
      height: 44px;
    }

    .tesuri__support__lineup__inner{
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }

    .tesuri__support__lineup__inner dl{
      width: 170px;
      margin: 0 10px 32px;
    }

    .tesuri__support__lineup__inner dt{
      width: 154px;
      margin: 0 auto 12px;
    }

    .tesuri__support__lineup__inner dd{
      font-size: 18px;
    }

    .tesuri__support__lineup__inner dd em{
      font-size: 24px;
    }

    .tesuri__support__lineup__inner dd.new{
      background: url(../images/icon-new.svg?201015) no-repeat 50% 50% / contain;
      width: 46px;
      height: 46px;
      position: absolute;
      top: -8px;
      left: 0px;
    }

}

/* tesuri__introduction */

.tesuri__introduction{
  background-color: #D9F0B9;
  padding: 40px 0 10px;
}

.tesuri__introduction h2{
  max-width: 345px;
  margin: 0 auto 32px;
}

.tesuri__introduction__box{
  background-color: #fff;
  margin: 0 5px;
  border-radius: 30px;
  padding: 64px 30px 64px 30px;
  box-shadow: 10px 10px 0px 0px rgba(48,155,66,0.3);
  position: relative;
  margin-bottom: 40px;
}

.tesuri__introduction__box .ttl__subttl{
  font-size: 18px;
  line-height: 1.2;
  color: #309B42;
  margin-bottom: 16px;
}

@media screen and (max-width: 320px) {

  .tesuri__introduction__box .ttl__subttl{
    font-size: 16px;
  }

}

.tesuri__introduction__box h3{
  font-size: 21px;
  font-weight: 700;
  color: #309B42;
  margin-bottom: 16px;
}

.tesuri__introduction__box h3 em{
  font-size: 7.1vw;
  display: block;
  line-height: 1.2;
}

.tesuri__introduction__box .ttl__img{
  margin-bottom: 32px;
  position: relative;
}

.tesuri__introduction__box .ttl__img small{
  text-align: center;
  color: #309B42;
  font-size:3.6vw;
  font-weight: 700;
  width: 28vw;
  height: 28vw;
  border-radius: 50%;
  border: 2px solid #309B42;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.46;
  padding-top: 3px;
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: #fff;
}

.tesuri__introduction__box__recom{
  margin-bottom: 15px;
}

.tesuri__introduction__box__recom dt{
  border: 1px solid #309B42;
  text-align: center;
  font-size: 15px;
  color: #309B42;
  padding: 3px 0 4px;
  border-radius: 5px;
  font-weight: 700;
  margin-bottom: 10px;
}

.tesuri__introduction__box__recom dd ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.tesuri__introduction__box__recom dd li{
  background-color: #309B42;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 3px 0 4px;
  width: 49%;
  margin-bottom: 5px;
}

.tesuri__introduction__box h4{
  text-align: center;
  color: #309B42;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
}


.tesuri__introduction__box h4 span{
  font-size: 16px;
  display: block;
  font-weight: 400;
  margin-top: 5px;
}

.tesuri__introduction__box .images dl{
  margin-bottom: 20px;
}

.tesuri__introduction__box .images > div:last-child{
  margin-bottom: 32px;
}

.tesuri__introduction__box .images dt{
  color: #309B42;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3px;
  margin-top: 5px;
}

.tesuri__introduction__box .images dd{
  font-size: 16px;
  line-height: 1.5;
}

.tesuri__introduction__box .images img{
  margin-bottom: 3px;
}

.tesuri__introduction__box .info{
  border: 3px solid #FF5555;
  border-radius: 10px 10px 10px 10px;
  padding: 55px 12px 24px 12px;
  margin-bottom: 30px;
  position: relative;
}

.tesuri__introduction__box .info h3{
  background-color: #FF5555;
  color: #fff;
  font-size: 18px;
  width: 172px;
  height: 39px;
  border-radius: 10px 0 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -1px;
  left: -1px;
}

.tesuri__introduction__box .btn{
  background: url(../images/box-more.svg) no-repeat 50% 50% / cover;
  width: 100%;
  height: 58px;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -1px;
  border-radius: 0 0 30px 30px;
}

.tesuri__introduction__box .btn.act{
  background: url(../images/box-close.svg) no-repeat 50% 50% / cover;
}

.tesuri__introduction__box .news{
  background-color: #0142C4;
  border-radius: 25px 0 25px 0;
  position: absolute;
  left: -10px;
  top: -10px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  height: 49px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.tesuri__introduction__box .news::before,
.tesuri__introduction__box .news::after{
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
}

.tesuri__introduction__box .news::before{
  border-width: 0 10px 10px 0;
  border-color: transparent #0142C4 transparent transparent;
  bottom: -10px;
  left: 0;
}

.tesuri__introduction__box .news::after{
  border-width: 10px 0 0 10px;
  border-color: transparent transparent transparent #0142C4;
  top: 0;
  right: -10px;
}

@media screen and (min-width: 460px) {

      .tesuri__introduction{
        padding: 40px 0 100px;
      }

      .tesuri__introduction h2{
        max-width: 890px;
        margin: 0 auto 50px;
      }

      .tesuri__introduction__box{
        max-width: 960px;
        margin: 0 auto;
        border-radius: 60px;
        padding: 0 0 10px 0px;
        box-shadow: 16px 17px 0px 0px rgba(48,155,66,0.3);
        margin-bottom: 80px;
      }

      .tesuri__introduction__box .ttl{
        display: flex;
        justify-content: space-between;
      }

      .tesuri__introduction__box .ttl__subttl{
        font-size: 26px;
        margin-bottom: 16px;
        line-height: 1.46;
      }

      .tesuri__introduction__box h3{
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 32px;
      }

      .tesuri__introduction__box h3 em{
        font-size: 40px;
      }

      .tesuri__introduction__box h3 em br{
        display: none;
      }

      .tesuri__introduction__box .ttl__img{
        width: 400px;
        margin-bottom: 32px;
        margin-left: 40px;
        position: relative;
        flex: none;
        border-radius: 0 60px 0 60px;
        overflow: hidden;
      }

      .tesuri__introduction__box .ttl__img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .tesuri__introduction__box .ttl__img small{
        font-size: 18px;
        width: 157px;
        height: 157px;
        padding-top: 5px;
        top: 10px;
        right: 10px;
      }

      .tesuri__introduction__box .ttl__txt{
        padding: 140px 0px 0 70px;
        width: 100%;
      }

      .tesuri__introduction__box__recom{
        margin-bottom: 15px;
        width: 100%;
      }

      .tesuri__introduction__box__recom dt{
        border: 2px solid #309B42;
        width: 100%;
        font-size: 18px;
        margin-bottom: 10px;
        padding: 3px 0 5px;
        border-radius: 10px;
      }


      .tesuri__introduction__box__recom dd li{
        font-size: 22px;
        padding: 3px 0 5px;
        margin-bottom: 10px;
        border-radius: 10px;
      }

      .tesuri__introduction__box h4{
        font-size: 24px;
        margin-bottom: 20px;
        text-align: left;
        margin-left: 70px;
      }

      .tesuri__introduction__box h4 small{
        display: inline-block !important;
      }

      .tesuri__introduction__box h4 br{
        display: none;
      }

      .tesuri__introduction__box h4 span{
        font-size: 18px;
        display: inline-block;
        margin-top: 0px;
        margin-left: 10px;
      }

      .tesuri__introduction__box .images{
        display: flex;
        justify-content: space-between;
        margin: 0 70px;
      }

      .tesuri__introduction__box .images > div{
        width: 250px;
        margin-right: 30px;
        flex: none;
      }

      .tesuri__introduction__box .images > div.large{
        width: 270px;
        flex: none;
        margin-right: 15px;
      }

      .tesuri__introduction__box .images > div.large:last-child{

      }

      .tesuri__introduction__box .images > div > img{
        border-radius: 10px;
      }

      .tesuri__introduction__box .images dl{
        margin-bottom: 40px;
      }

      .tesuri__introduction__box .images > div:last-child{
        margin-right: 0;
        margin-bottom: 0px;
      }

      .tesuri__introduction__box .images dt{
        font-size: 18px;
      }

      .tesuri__introduction__box .images dd{
        font-size: 18px;
      }

      .tesuri__introduction__box .info{
        margin: 0 70px;
        border: 4px solid #FF5555;
        padding: 55px 20px 20px 20px;
        margin-bottom: 30px;
        position: relative;
      }

      .tesuri__introduction__box .info__txt{
        color:#FF5555 ;
        font-size: 18px;
        font-weight: 500;
        position: absolute;
        top: 16px;
        left: 235px;
      }

      .tesuri__introduction__box .info h3{
        font-size: 22px;
        width: 223px;
        height: 53px;
      }

      .tesuri__introduction__box .btn{
        display: none;
      }

      .tesuri__introduction__box .news{
        border-radius: 50px 0 50px 0;
        left: -20px;
        top: -20px;
        font-size: 24px;
        height: 77px;
        padding: 0 40px;
      }

      .tesuri__introduction__box .news::before{
        border-width: 0 20px 20px 0;
        border-color: transparent #0142C4 transparent transparent;
        bottom: -20px;
        left: 0;
      }

      .tesuri__introduction__box .news::after{
        border-width: 20px 0 0 20px;
        border-color: transparent transparent transparent #0142C4;
        top: 0;
        right: -20px;
      }

}



/* tesuri__cv */
.tesuri__cv{
  position: fixed;
  bottom: -60px;
  text-align: center;
  display: block;
  z-index: 999;
  opacity: 0;
  transition: .3s;
}

.tesuri__cv.act{
  opacity: 1;
  bottom: 10px;
}

.tesuri__cv__inner{
  display: flex;
  justify-content: space-between;
  margin: 0 10px;
}

.tesuri__cv a{
  width: 49%;
  display: block;
}

.tesuri__cv img{
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.3);
  border-radius: 40px;
}

@media screen and (min-width: 460px) {

 .tesuri__cv{
  width: 100%;
  padding: 20px 0;
  background-color: #fff;
}

.tesuri__cv::before{
  content: "";
  height:15px;
  width: 100%;
  background: linear-gradient(to top, #000, transparent);
  opacity:0.2;
  display: block;
  position: absolute;
  top: -15px;
}

.tesuri__cv__inner{
  max-width: 1000px;
  margin: 0 auto;
}

.tesuri__cv a{
  width: 490px;
  display: block;
  transition: .3s;
}

.tesuri__cv a:hover{
  opacity: .85;
}

.tesuri__cv img{
  width: 100%;
  height: 80px;
  margin: 0 auto;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0);
  border-radius: 40px;
}

.tesuri__cv.act{
  opacity: 1;
  bottom: 0px;
}

.tesuri__cv img{
  width: 602px;
  height: 80px;
  margin: 0 auto;
}

}
