@charset "UTF-8";

/*めも test クラス消す*/
body {
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  background-color: #EBFAFF;
}


/*==================================================
    パララックス
    ===================================*/
.marker {
  background: -webkit-linear-gradient(left, rgb(255, 255, 0, 0.4) 50%, transparent 50%);
  background: -moz-linear-gradient(left, rgb(255, 255, 0, 0.4) 50%, transparent 50%);
  background: linear-gradient(left, rgb(255, 255, 0, 0.4) 50%, transparent 50%);
  background-repeat: no-repeat;
  background-size: 200% .8em;
  background-position: 100% .5em;
  transition: 2s;
  line-height: 1.2;
  display: inline;
}

.marker2 {
  background: -webkit-linear-gradient(left, rgb(69, 215, 185, 0.4) 50%, transparent 50%);
  background: -moz-linear-gradient(left, rgb(69, 215, 185, 0.4) 50%, transparent 50%);
  background: linear-gradient(left, rgb(69, 215, 185, 0.4) 50%, transparent 50%);
  background-repeat: no-repeat;
  background-size: 200% .8em;
  background-position: 100% .5em;
  transition: 2s;
  line-height: 1.2;
  display: inline;
}

.marker.is-active {
  background-position: 0% .5em;
}

.marker2.is-active {
  background-position: 0% .5em;
}

/*==================================================
    TOP画像
    ===================================*/

.TOPheight {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  height: calc(100vh - 60px);
  background-size: cover;
  background-position: top center;
  margin: 60px 0 0 0;
}

.tool01.TOPheight {
  background-image: url(../img/tool/tool_top01.jpg);
}

.tool02.TOPheight {
  background-image: url(../img/tool/tool_top02.jpg);
}

.tool03.TOPheight {
  background-image: url(../img/tool/tool_top03.jpg);
}

.tool04.TOPheight {
  background-image: url(../img/tool/tool_top04.jpg);
}

.top-text-title {
  display: inline-block;
  color: #21689D;
  font-size: 60px;
  letter-spacing: 3px;
  font-weight: 900;
  padding: 0 100px 0 10vw;
  background-image: linear-gradient(90deg, #ffffff, #ffffff 85%, #ffffffd6 90%, #ffffff52 95%, transparent);
}

.top-text-p {
  color: #fff;
  font-size: 50px;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 50px 0 100px 15vw;
  text-shadow: 6px 5px 0 #0E1F4E29;
}

@media screen and (max-width: 1000px) {
  .top-text-title {
    padding: 0 10vw;
  }

  .top-text-p {
    padding: 5vw 5vw 10vw 10vw;
  }
}

@media screen and (max-width: 768px) {
  .top-text-title {
    font-size: 12vw !important;
  }

  .top-text-p {
    font-size: 5vw !important;
  }
}


@media screen and (max-width: 500px) {
  .TOPheight {
    max-height: 500px;
  }

  br {
    display: none;
  }

}

.tool>.tool-section {
  max-width: 1000px;
  width: 85vw;
  margin: 100px auto;
}

.tool-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.tool-accenth2 {
  text-align: center;
  font-size: 36px !important;
}

.tool-accent-r,
.tool-accent-l {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  background-image: url(../img/tool/accent.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.tool-accent-r {
  transform: rotate(270deg);
  left: -30px;
}

.tool-ul {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
  padding: 10px 100px;
  background: #fff;
  box-shadow: 0 3px 6px #00000016;
  border-radius: 20px;
}

.tool-ul>ul {
  display: inline-block;
}

.tool-ul>ul>li {
  position: relative;
  padding-left: 70px;
  display: flex;
  align-items: center;
  font-size: 20px;
  margin: 30px 0;
}

.tool-ul>ul>li:nth-of-type(1)::before,
.tool-ul>ul>li:nth-of-type(2)::before,
.tool-ul>ul>li:nth-of-type(3)::before {
  content: "";
  width: 50px;
  height: 50px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  flex-shrink: 0;
}

.tool-ul>ul>li:nth-of-type(1)::before {
  background-image: url(../img/tool/tool-number01.png);
}

.tool-ul>ul>li:nth-of-type(2)::before {
  background-image: url(../img/tool/tool-number02.png);
}

.tool-ul>ul>li:nth-of-type(3)::before {
  background-image: url(../img/tool/tool-number03.png);
}

@media screen and (max-width: 1000px) {
  .tool-accenth2 {
    text-align: center;
    font-size: min(5vw, 24px) !important;
  }

  .tool-ul>ul>li {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .tool-ul {
    padding: 10px 50px;
  }

  .tool-ul>ul>li {
    align-items: flex-start;
  }
}

@media screen and (max-width: 500px) {
  .tool-accent {
    gap: 10px;
  }

  .tool-accent-r,
  .tool-accent-l {
    width: 30px;
    height: 30px;
  }

  .tool-ul {
    padding: 10px 30px;
  }

  .tool-ul>ul>li {
    font-size: 0.875rem !important;
    padding: 40px 0 0 0;
  }

  .tool-ul>ul>li:nth-of-type(1)::before,
  .tool-ul>ul>li:nth-of-type(2)::before,
  .tool-ul>ul>li:nth-of-type(3)::before {
    width: 40px;
    height: 40px;
    top: 0;
  }
}


.tool-itemh2 {
  color: #21689D;
  display: flex;
  gap: 20px;
  font-size: 24px;
  align-items: center;
}

.tool-itemh2::after,
.tool-itemh2::before {
  content: "";
  flex-grow: 1;
  border-top: 1px solid #21689D;
  display: block;
}

.tool-item-about {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  padding: 50px 0;
  text-align: center;
  font-weight: 900;
  font-size: 20px;
  border-bottom: solid 1px #21689D;
}

.tool-item>a,
.tool-slider>.sm_toollist>.sm_box_in>a {
  display: block;
  margin: 40px auto;
  width: min(90vw, 400px);
  background: #21689D;
  border-radius: 50px;
  color: #fff;
  text-align: center;
  padding: 5px;
  font-size: 20px;
  transition: .3s ease;
}

.tool-item>a:hover {
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.35);
  opacity: .9;
  transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
  .tool-itemh2 {
    font-size: 1rem !important;
  }

  .tool-item-about {
    font-size: 0.875rem !important;
  }
}

@media screen and (max-width: 500px) {
  .tool-item-about {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 30px 10px;
  }
}

/*----------------------------------------------
  .tool-feature
------------------------------------------------*/

.tool-featureh2 {
  width: 100%;
  background: #64CDFA;
  font-size: min(5vw, 36px) !important;
  text-align: center;
  padding: 10px 50px;
  border-radius: 20px 20px 0 0;
}

.tool-feature {
  background: #fff;
  border-radius: 0 0 20px 20px;
  padding: 50px 100px;
}

.tool-feature-p {
  text-align: center;
  line-height: 40px;
  margin-bottom: 30px;
}

/*----------------------------------------------
  tool01
------------------------------------------------*/

.tool-feature-graph {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  font-size: min(3vw, 20px);
  padding: 30px 0;
  border-bottom: solid 1px #000;
}

.tool-feature-graph>figure {
  max-width: 150px;
}

.tool-feature-graph span {
  display: block;
  font-size: min(2.5vw, 16px);
  line-height: 20px;
}

.tool-featureh3 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.tool-featureh3 span {
  display: block;
  border: solid 1px #000;
  border-radius: 5px;
  padding: 5px 50px;
  font-size: 20px;
}

.tool-featureh3::before,
.tool-featureh3::after {
  content: "";
  flex-grow: 1;
  border-top: 1px solid #000;
  display: block;
}

.tool-feature-graphp {
  padding: 5px;
  font-size: 14px;
  text-align: center;
}

.logo_markbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-content: center;
  gap: 50px;
  margin: 40px 0 0;
}

.logo_box {
  width: 100%;
  display: flex;
  place-items: center;
  gap: 20px;
  align-items: flex-start;
}

.logo_img img {
  max-width: 80px;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  padding: 10px;
}

.logo_img {
  display: contents;
}

.logo_detail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.logo_detail p:nth-child(1) {
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  /* line-height: 3.66; */
  border-bottom: solid 1px #000000;
  margin-bottom: 5px;
}

.logo_detail p:nth-child(2) {
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  /* font-size: 16px; */
  font-size: 0.833rem;
  font-weight: 500;
  line-height: 1.6;
}

.logo_detail p:nth-child(3) {
  text-align: right;
  margin: 5px 0;
}

@media screen and (max-width: 1000px) {
  .tool-feature {
    padding: 50px;
  }

  .logo_markbox {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .tool-feature-graph {
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    gap: 30px;
  }

  .tool-feature {
    padding: 50px;
  }

  .logo_markbox {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tool-featureh3 span {
    padding: 5px 20px;
    font-size: 20px;
  }

  .tool-featureh3::before,
  .tool-featureh3::after {
    display: none;
  }

  .tool-featureh3 span {
    font-size: 16px;
    word-break: keep-all;
    overflow-wrap: break-word;
    text-align: center;
  }
}

@media screen and (max-width: 500px) {
  .tool-featureh2 {
    padding: 10px 30px;
  }

  .tool-feature {
    padding: 30px;
  }

  .logo_box {
    flex-direction: column;
  }

  .tool-feature-graphp {
    font-size: 12px !important;
    text-align: left;
  }

  .tool-feature-graph span {
    line-height: 10px;
  }
}

/*----------------------------------------------
  tool03
------------------------------------------------*/
.tool03 .tool-feature-img {
  max-width: 500px;
  width: 100%;
  margin: 30px auto 20px;
}

.tool-feature>ul {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
}

.tool-feature>ul>li {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 32%;
  background: #EBFAFF;
  border-radius: 10px;
  padding: 10px;
  text-align: left;
}

.tool-feature-h3 {
  font-size: 16px !important;
  text-align: center;
}

.tool03 .tool-feature {
  background: #fff;
  border-radius: 0 0 20px 20px;
  padding: 50px;
  text-align: center;
}

.tool-feature>ul>li>div>p>span {
  font-size: 12px;
}

.tool-feature>ul>li>div {
  display: inline-block;
}

.tool-feature-source {
  display: block;
  margin-top: 50px;
  font-size: 12px;
  text-align: right;
}

.tool-feature-accent {
  font-weight: 900;
  font-size: 20px;
}


/*----------------------------------------------
  tool03
------------------------------------------------*/
.tool03 .tool-feature-img {
  max-width: 500px;
  width: 100%;
  margin: 30px auto 20px;
}

.tool-feature>ul {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
}

.tool-feature>ul>li {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 32%;
  background: #EBFAFF;
  border-radius: 10px;
  padding: 10px;
  text-align: left;
}

.tool-feature-h3 {
  font-size: 16px !important;
  text-align: center;
}

.tool03 .tool-feature {
  background: #fff;
  border-radius: 0 0 20px 20px;
  padding: 50px;
  text-align: center;
}

.tool-feature>ul>li>div>p>span {
  font-size: 12px;
}

.tool-feature>ul>li>div {
  display: inline-block;
}

.tool-feature-source {
  display: block;
  margin-top: 50px;
  font-size: 12px;
  text-align: right;
}

.tool-feature-accent {
  font-weight: 900;
  font-size: 20px;
}

@media screen and (max-width: 1000px) {
  .tool-feature>ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .tool-feature>ul>li {
    max-width: 600px;
    width: 100%;
  }
}

@media screen and (max-width: 500px) {
  .tool03 .tool-feature {
    padding: 30px;
    text-align: left;
  }

  .tool-feature-p {
    text-align: left;
  }

  .tool-feature-accent {
    font-size: 1rem !important;
  }

}


/*----------------------------------------------
  tool-slider
------------------------------------------------*/
.tool-sliderh2 {
  background: #64CDFA;
  width: min(90vw, 1000px);
  margin: 150px auto 0;
  padding: 10px 0;
  border-radius: 50px;
  font-size: 2rem !important;
  font-weight: 700;
  text-align: center;
  color: #1a1a1a;
}

.sm_toollist h4 {
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 2.074rem;
  font-weight: bold;
  text-align: center;
}

.slick-dots button {
  border: none;
}

iframe.event-youtube-16-9 {
  max-width: 800px;
  width: 100%;
  height: auto;
  text-align: center;
  aspect-ratio: 16 / 9;
}

.sb-title {
  color: #21689D;
}

.toollistbox-title {
  border-bottom: solid 1px #21689D;
}

.toollistbox-title>.h4 {
  color: #21689D;
}

.slick-dots .slick-active button {
  background: #64CDFA !important;
}

button.return2 {
  background-color: #21689D;
}

.toollistcontents {
  margin: 60px 0 40px !important;
}

.slick-dots {
  margin: 40px 30px 0 30px !important;
}

.tool-slider {
  margin-bottom: 200px;
}

.toollistbox .markbox .mark {
  background: #64CDFA25;
}

@media screen and (max-width: 768px) {
  .tool-sliderh2 {
    font-size: 4.5vw !important;
  }
}
