@charset "UTF-8";
/* オリジナルのレイアウト
----------------------------------------*/
html {
  font-size: 1rem;
  font-size: 10px;
  overflow-y: scroll;
}
body {
  color: #000;
  font-family: 'BIZ UDPGothic', sans-serif;
  background: #fff;
  font-size: 1.4rem;
  line-height: 1.5;
  height: 100%;
  min-width: 1200px;
  -webkit-text-size-adjust: 100%;
}
.wrapper {
  width: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  body {
    min-width: 0;
  }
}
@media only screen and (max-width: 375px) {
  html {
    font-size: 2.6666vw;
  }
}
a {
  text-decoration: none;
  color: inherit;
}
/*表示
----------------------------------------*/
.visible_pc {
  display: block !important;
}
.visible_sp {
  display: none !important;
}
.visible_pc_inline {
  display: inline !important;
}
.visible_sp_inline {
  display: none !important;
}
@media only screen and (max-width: 768px) {
  .visible_pc {
    display: none !important;
  }
  .visible_sp {
    display: block !important;
  }
  .visible_pc_inline {
    display: none !important;
  }
  .visible_sp_inline {
    display: inline !important;
  }
}
/*font
----------------------------------------*/
.en {
  font-family: 'Montserrat', sans-serif;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*header
----------------------------------------*/
.header {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 1500;
  padding: 20px 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(255, 255, 255, .9);
  min-width: 1200px;
  opacity: 0;
  animation-fill-mode: forwards;
  animation-duration: .5s;
  animation-name: fadeIn;
}
.header img {
  display: block;
  margin: 0 auto;
}
.header_logo {
  margin-top: 7px;
}
.header_logo a {
  display: block;
  transition: opacity .3s;
}
.header_nav {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin: 0 0 0 auto;
}
.header_nav p {
  width: 205px;
  text-align: center;
}
.header_nav p + p {
  margin-left: 10px;
}
.header_nav p a {
  border-radius: 25px;
  border: 3px solid #0B318F;
  font-size: 1.4rem;
  font-weight: 500;
  background: #fff;
  padding: 5px 5px 5px 8px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  letter-spacing: .06em;
  transition: opacity .3s;
}
.header_nav .header_nav_new {
  width: 211px;
}
.header_nav .header_nav_new a {
  border-color: #ECECEC;
  background: #ECECEC;
}
.header_nav_new a::before {
  content: '';
  display: block;
  width: 15px;
  height: 18px;
  background: url(../img/icon_new.svg) no-repeat;
  margin-right: 5px;
}
.header_nav_download a::before {
  content: '';
  display: block;
  width: 19px;
  height: 19px;
  background: url(../img/icon_download.svg) no-repeat;
  margin-right: 5px;
}
.header_nav p.header_nav_contact a {
  background: #0B318F;
  color: #fff;
  letter-spacing: .05em;
}
.header_nav p.header_nav_contact a::before {
  content: '';
  display: block;
  width: 18px;
  height: 13px;
  background: url(../img/icon_contact_01.svg) no-repeat;
  margin-right: 5px;
}
.header_logo a:hover, .header_nav p a:hover {
  opacity: .6;
}
.header_language a {
  cursor: pointer;
  transition: opacity .2s
}
.header_language:hover a:not(:hover) {}
.header_language > li:nth-of-type(n + 2)::before {
  margin: 0 0.4em;
  content: "/";
  color: inherit;
}
ul.header_language {
  display: flex;
 padding: 0px 0px 0px 30px;
}
.header_language > li:nth-child(2) a {
  opacity: 0.3;
}
.header_language > li:nth-child(2) a:hover {
  text-decoration: underline;
  opacity: inherit;
}
@media only screen and (max-width: 768px) {
  .header {
    position: absolute;
    padding: 0;
    background: none;
    min-width: 0;
  }
  .header_logo {
    width: 282px;
    margin: 0 auto;
  }
	ul.header_language{
		padding: 10px;
	}
  .header_nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(100%);
    transition: transform .5s;
    flex-wrap: wrap;
  }
  .header_nav.show {
    transform: none;
  }
  .header_nav p {
    width: 50% !important;
    margin: 0 !important;
  }
  .header_nav p.header_nav_contact {
    width: 100% !important;
  }
  .header_nav p + p {
    margin-left: 0;
  }
  .header_nav p a, .header_nav p.header_nav_contact a {
    width: auto;
    height: auto;
    border-radius: 0;
    padding: 0;
    height: 5rem;
    letter-spacing: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    border-width: 2px;
  }
  .header_nav_new a::before {
    margin-right: 10px;
  }
  .header_nav p.header_nav_contact a::before {
    margin: 0 10px 0 0;
  }
  .header_logo a:hover, .header_nav p a:hover {
    opacity: 1;
  }
}
/*new_form
----------------------------------------*/
.new_form {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(0, 0, 0, .75);
  z-index: 2000;
  opacity: 0;
}
.new_bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.new_form iframe {
    width: 500px;
    height: 300px;
    background-color: #f8f8f8;
}
.new_txt, .form_txt {
  width: 420px;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}
.form_txt {
  color: inherit;
}
.new_form input[type="email"], .form_block input[type="email"] {
  -webkit-appearance: none;
  appearance: none;
  width: 420px;
  height: 70px;
  background: #F5F8FB;
  border: 0;
  font-family: inherit;
  font-weight: 500;
  padding: 10px 110px 10px 20px;
}
.new_form input[type="email"]::placeholder, .form_block input[type="email"]::placeholder {
  color: #999;
}
.new_form input[type="email"]:-ms-input-placeholder, .form_block input[type="email"]:-ms-input-placeholder {
  color: #999;
}
.new_form button[type="submit"], .form_block button[type="submit"] {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100px;
  background: #0B318F;
  color: #fff;
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 500;
  border: 0;
  transition: opacity .3s;
  cursor: pointer;
}
.new_form_close {
  width: 45px;
  height: 45px;
  -webkit-appearance: none;
  appearance: none;
  background: none;
  color: #fff;
  font-family: inherit;
  font-size: 3rem;
  position: absolute;
 top: -150px;
    right: 0px;
  border: 0;
  cursor: pointer;
  transition: opacity .3s;
}
.new_form_close_box{
    position: relative;
}
.new_form_close_box .new_form_close {
 top: -150px;
    right: 10px;color: #252525;
}
.new_form input[type="email"]:focus, .new_form button[type="submit"]:focus, .form_block input[type="email"]:focus, .form_block button[type="submit"]:focus, .new_form_close:focus {
  outline: none;
}
.new_form_close:hover, .new_form button[type="submit"]:hover, .form_block button[type="submit"]:hover {
  opacity: .6;
}
.new_message {
  color: #fff;
  font-weight: 500;
  font-size: 2.4rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.new_form label.error, .form_block label.error {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 10px;
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .new_txt, .form_txt {
    width: 90vw;
    text-align: left;
  }
  .new_form input[type="email"], .form_block input[type="email"] {
    width: 90vw;
    padding: 10px 90px 10px 20px;
    font-size: 1.6rem;
  }
  .new_form button[type="submit"], .form_block button[type="submit"] {
    width: 80px;
  }
  .new_form_close:hover, .new_form button[type="submit"]:hover, .form_block button[type="submit"]:hover {
    opacity: 1;
  }
  .new_form_close {
    top: -45px;
    right: -10px;
  }
  .new_message {
    font-size: 2rem;
  }
}
/*form_block
----------------------------------------*/
.form_block {
  text-align: center;
  padding: 0 20px 100px;
}
.form_block h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}
.form_input {
  width: 420px;
  margin: 0 auto;
}
.form_input > div {
  height: 70px;
}
.form_block .new_message {
  left: 0;
  right: 0;
}
.form_block .new_message, .form_block label.error {
  color: inherit;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .form_block {
    padding: 20px 5% 70px;
  }
  .form_input {
    width: 100%;
  }
}
/*contents
----------------------------------------*/
.contents {
  padding-top: 85px;
}
@media only screen and (max-width: 768px) {
  .contents {
    padding-top: 20px;
  }
}
/*mainv
----------------------------------------*/
.mainv_block {
  overflow: hidden;
  opacity: 0;
  animation-fill-mode: forwards;
  animation-duration: .5s;
  animation-delay: .5s;
  animation-name: fadeIn;
  z-index: 10;
}
.mainv_block img {
  display: block;
  margin: 0 auto;
}
.mainv_slide {
  width: 66.9838%;
  margin: 0 0 0 auto;
}
.mainv_slide .slick-list, .mainv_slide .slick-track {
  overflow: hidden;
}
.mainv_slide figure {
  float: left;
}
.mainv_block h1 {
  width: 31.7715%;
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  margin: -157px 0 0 -41.5812%;
  z-index: 1100;
}
@media only screen and (max-width: 768px) {
  .mainv_block {
    margin-bottom: 0;
  }
  .mainv_slide {
    width: auto;
  }
  .mainv_block h1 {
    width: 70%;
    position: relative;
    top: auto;
    left: auto;
    margin: 0 auto 20px;
  }
}
/*anchor_nav
----------------------------------------*/
.anchor_nav {
  background: #0B318F;
  padding: 29px 20px;
}
.anchor_nav ul {
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
}
.anchor_nav ul li + li {
  border-left: 1px solid rgba(255, 255, 255, .2);
}
.anchor_nav ul li a {
  display: block;
  padding: 0 30px;
  transition: opacity .3s;
}
.anchor_nav ul li a::after {
  content: '';
  display: inline-block;
  width: 19px;
  height: 19px;
  background: url(../img/icon_nav_arrow.svg) no-repeat left top / 100% auto;
  vertical-align: -2px;
  margin-left: 9px;
}
@media only screen and (min-width: 769px) {
  .anchor_nav ul li a:hover {
    opacity: .6;
  }
}
@media only screen and (max-width: 768px) {
  .anchor_nav {
    padding: 0;
  }
  .anchor_nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 1.6rem;
  }
  .anchor_nav ul li {
    width: 50%;
    text-align: center;
  }
  .anchor_nav ul li + li {
    border-left: 0;
  }
  .anchor_nav ul li:nth-child(2n)::before {
    content: '';
    display: block;
    width: 1px;
    background: rgba(255, 255, 255, .2);
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 0;
  }
  .anchor_nav ul li:nth-child(n+3) {
    border-top: 1px solid rgba(255, 255, 255, .2);
  }
  .anchor_nav ul li a {
    padding: 1rem 0;
  }
  .anchor_nav ul li a::after {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
    margin: 0 auto;
  }
}
/*news
----------------------------------------*/
.news_block {
  background: #F5F8FB;
  padding: 70px 20px 68px;
}
.news_inner {
  width: 1000px;
  margin: 0 auto;
  display: flex;
}
.news_inner h2 {
  width: 192px;
  font-size: 3.1rem;
}
.news_inner h2 span {
  color: #01368E;
  font-size: 1.6rem;
  display: block;
  margin: 11px 0 0 4px;
  letter-spacing: .1em;
}
.news_inner ul {
  border-top: 1px dotted #B6C3CF;
  flex: 1;
  font-size: 1.6rem;
}
.news_inner ul li {
  display: flex;
  border-bottom: 1px dotted #B6C3CF;
  padding: 15px 0;
}
.news_inner ul li a {
  display: flex;
  margin: -15px 0;
  padding: 15px 0;
  transition: opacity .3s;
}
.news_date {
  width: 146px;
  font-weight: bold;
  color: #01368E;
  letter-spacing: .06em;
}
.news_txt {
  flex: 1;
  letter-spacing: .06em;
}
@media only screen and (min-width: 769px) {
  .news_inner ul li a:hover {
    opacity: .6;
  }
}
@media only screen and (max-width: 768px) {
  .news_block {
    padding: 20px 5% 50px;
  }
  .news_inner {
    width: auto;
    display: block;
  }
  .news_inner h2 {
    width: auto;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 15px;
  }
  .news_inner h2 span {
    display: inline-block;
    font-size: 1.4rem;
    margin: 0 0 0 10px;
  }
  .news_inner ul li, .news_inner ul li a {
    display: block;
  }
  .news_date {
    width: auto;
  }
}
/*ttl
----------------------------------------*/
.ttl_h2 {
  font-size: 4rem;
  text-align: center;
  letter-spacing: .04em;
  margin-bottom: 38px;
}
.ttl_h2 span {
  display: block;
  color: #0B318F;
  font-size: 1.6rem;
  margin-top: 12px;
  letter-spacing: .1em;
}
@media only screen and (max-width: 768px) {
  .ttl_h2 {
    font-size: 3.2rem;
  }
  .ttl_h2 span {
    font-size: 1.4rem;
    margin-top: 6px;
  }
}
/*about
----------------------------------------*/
.about_block {
  padding: 124px 20px 161px;
}
.about_inner {
  width: 1000px;
  margin: 0 auto;
}
.about_txt .about_block_main {
  font-size: 3.5rem;
  color: #0B318F;
  line-height: 2;
  margin-bottom: 35px;
  text-align: center;
}
.about_txt > p {
  font-size: 1.8rem;
  letter-spacing: .06em;
  line-height: 2;
  margin-bottom: 44px;
  text-align: center;
}
.about_img {
  width: 220px;
  margin-top: 17px;
}
@media only screen and (max-width: 768px) {
  .about_block {
    padding: 30px 5% 60px;
  }
  .about_inner {
    width: auto;
    flex-direction: column;
  }
  .about_txt {
    width: auto;
  }
  .about_txt .about_block_main {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .about_txt > p {
    font-size: 1.6rem;
  }
  .about_img {
    order: -1;
    width: 176px;
    margin: 0 auto 20px;
  }
}
/*download
----------------------------------------*/
.download dl {
  background: #F1F1F1;
  border-radius: 8px;
  padding: 30px 40px 24px;
  display: flex;
}
.download dl dt {
  width: 350px;
  display: flex;
  font-size: 2rem;
  font-weight: bold;
  padding: 0 16px 4px 0;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.1rem;
}
.download dl dt::after {
  content: '';
  display: block;
  width: 1px;
  background: #C2C2C2;
  position: absolute;
  top: 5px;
  bottom: 10px;
  right: 0;
}
.download dl dd {
  flex: 1;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 0 0 0 52px;
}
.download_appstore {
  width: 210px;
  margin-top: -3px;
}
.download_qr {
  width: 111px;
}
.download_note {
  text-align: right;
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  .download dl {
    padding: 20px 5%;
    display: block;
  }
  .download dl dt {
    width: auto;
    display: block;
    text-align: center;
    padding: 0;
  }
  .download dl dt::after {
    display: none;
  }
  .download dl dd {
    padding: 0;
  }
  .download_appstore {
    width: 200px;
    margin: 20px auto 0;
  }
  .download_qr {
    display: none;
  }
  .download_note {
    font-size: 1.2rem;
  }
}
/*technology_block
----------------------------------------*/
.technology_block {
  padding: 58px 0 150px;
  background: #F5F5F5;
  z-index: 10;
}
.technology_block::before, .technology_block::after {
  content: '';
  display: block;
  height: 60px;
  position: absolute;
  top: -59px;
  left: 0;
  right: 0;
  background: url(../img/bg_top.png) no-repeat left top / 100% 100%;
}
.technology_block::after {
  top: auto;
  bottom: -59px;
  background-image: url(../img/bg_bottom.png);
}
.technology_block > p {
  text-align: center;
  font-size: 2.3rem;
  letter-spacing: .1em;
  margin-bottom: 98px;
}
.technology_item {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.technology_item:nth-of-type(3) {
  margin-bottom: 201px;
}
.technology_item:nth-of-type(3)::before, .technology_item:nth-of-type(4)::before {
  content: '';
  display: block;
  width: 3px;
  height: 69px;
  position: absolute;
  left: 50%;
  top: -39px;
  margin-left: -1px;
  background: url(../img/img_technology_line.svg) no-repeat left top / 100% auto;
}
.technology_item:nth-of-type(4)::before {
  top: -134px;
}
.technology_txt {
  width: 53.2%;
  padding-top: 35px;
}
.technology_item:nth-of-type(3) .technology_txt {
  flex: 1;
  padding: 112px 0 0 87px;
}
.technology_item:nth-of-type(4) .technology_txt {
  flex: 1;
  padding-top: 38px;
}
.technology_img {
  width: 41.6%;
  margin-right: .7%;
}
.technology_item:nth-of-type(3) .technology_img {
  width: 31%;
  margin-right: 0;
  order: -1;
}
.technology_item:nth-of-type(4) .technology_img {
  width: 50.4%;
  display: flex;
  align-items: flex-end;
}
.technology_item:nth-of-type(4) .technology_img figure {}
.technology_item:nth-of-type(4) .technology_img figure img {
  display: block;
}
.technology_list {
  flex: 1;
}
.technology_list_box {
  background: #fff;
  border-radius: 8px;
  border: 2px solid #0B318F;
  padding: 15px 10px 16px 18px;
  font-weight: bold;
  line-height: 1.65;
}
.technology_list_box:nth-child(1) {
  padding: 15px 10px 23px 18px;
}
.technology_list_box + .technology_list_box {
  margin-top: 10px;
}
.technology_list_box h4 {
  text-align: center;
  font-size: 1.6rem;
  color: #0B318F;
  margin-bottom: 16px;
}
.technology_list_box:nth-child(1) h4 {
  margin-bottom: 13px;
}
.technology_txt h3 {
  font-size: 3.2rem;
  font-weight: bold;
  color: #0B318F;
  margin-bottom: 33px;
}
.technology_item:nth-of-type(3) .technology_txt h3 {
  margin-bottom: 47px;
}
.technology_item:nth-of-type(4) .technology_txt h3 {
  margin-bottom: 46px;
}
.technology_txt h3::after {
  content: '';
  display: block;
  width: 67px;
  height: 2px;
  background: #0B318F;
  margin: 38px 0 0;
}
.technology_item:nth-of-type(3) .technology_txt h3::after {
  margin: 41px 0 0;
}
.technology_txt h3 span.en {
  position: absolute;
  left: 0;
  bottom: 39px;
  line-height: 1;
  font-size: 12.6rem;
  opacity: .2;
}
.technology_item:nth-of-type(3) .technology_txt h3 span.en {
  left: auto;
  right: 0;
  bottom: 35px;
}
.technology_txt h3 span:last-child {
  z-index: 2;
}
.technology_txt p {
  font-size: 1.9rem;
  line-height: 2.15;
}
.technology_interview {
  display: flex;
  margin: 31px 0 0 -1px;
}
.technology_interview > a {
  display: block;
  width: 226px;
  transition: opacity .3s;
}
.technology_interview_txt {
  flex: 1;
  padding-left: 26px;
}
.technology_interview_txt p {
  font-size: 1.4rem;
  letter-spacing: .1em;
  line-height: 1.65;
  margin-right: 10px;
}
.technology_interview_link {
  margin-top: 11px;
  background: #fff;
  padding: 2px 5px 3px 4px;
  display: inline-block;
  align-items: center;
}
.technology_interview_link a {
  display: block;
  transition: opacity .3s;
}
.technology_interview_logo {
  width: 113px;
}
.technology_interview_logo img {
  display: block;
}
.technology_interview_btn {
  flex: 1;
  padding-left: 6px;
}
.technology_interview_btn a {
  display: block;
  background: #EEE;
  font-size: 1.2rem;
  width: 147px;
  font-weight: 500;
  padding: 3px 9px;
  margin-top: 1px;
  transition: opacity .3s;
}
.technology_interview_btn a::after {
  content: '';
  display: block;
  width: 9px;
  height: 8px;
  background: url(../img/icon_external.svg) no-repeat left top / 100% auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 6px;
  margin: auto 0;
}
.technology_box {
  width: 1000px;
  margin: 52px auto 122px;
  background: #fff;
  border-radius: 31px;
  padding: 29px 31px 27px;
  display: flex;
}
.technology_box > figure {
  width: 333px;
  order: -1;
}
.technology_box_txt {
  flex: 1;
  padding-left: 30px;
}
.technology_box_txt h3 {
  font-size: 2.2rem;
  font-weight: bold;
  color: #0B318F;
  margin-bottom: 3px;
}
.technology_box_txt p {
  font-size: 1.6rem;
  line-height: 1.75;
}
.technology_box_txt .technology_box_note {
  font-size: 1.4rem;
  color: #0B318F;
  margin-top: 10px;
}
.technology_recorder {
  width: 1000px;
  background: #fff;
  border: 2px solid #01368E;
  border-radius: 10px;
  margin: 101px auto 31px;
  padding: 31px 28px 28px;
  display: flex;
  align-items: center;
}
.technology_recorder figure {
  width: 93px;
}
.technology_recorder_txt {
  flex: 1;
  padding-left: 20px;
}
.technology_recorder_txt p {
  font-size: 1.9rem;
}
.technology_recorder_txt h3 {
  font-size: 3.2rem;
  font-weight: bold;
  margin: -11px 0 22px;
  color: #0B318F;
}
.technology_function {
  width: 1000px;
  border-radius: 31px;
  margin: 0 auto;
  margin-top: 100px;
}
.technology_function h3 {
  font-size: 2.2rem;
  color: #04369B;
  margin-bottom: 14px;
}
.table_wrap {
  overflow-x: auto; /* 横スクロール */
}
.technology_table {
  width: 100%;
  min-width: 600px; /* 幅が600px以下になったらスクロール */
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 2px 0;
  white-space: nowrap; /* 折り返し禁止 */
}
.technology_table th, .technology_table td {
  font-size: 14px;
  border: none;
  padding: 8px;
  background: #f5f5f5;
  text-align: center;
  vertical-align: middle;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
  white-space: normal;
}
.technology_table td {
  font-size: 15px;
}
.technology_table tr:nth-child(2n+1) th, .technology_table tr:nth-child(2n+1) td {
  background: #dbe1f1;
}
.technology_table tr:nth-last-of-type(4) th, .technology_table tr:nth-last-of-type(4) td {
  background: #f5f5f5;
}
.technology_table tr:nth-last-of-type(3) th, .technology_table tr:nth-last-of-type(3) td {
  background: #dbe1f1;
}
.technology_table tr:nth-last-of-type(2) th, .technology_table tr:nth-last-of-type(2) td {
  background: #f5f5f5;
}
.technology_table tr:nth-last-of-type(1) th, .technology_table tr:nth-last-of-type(1) td {
  background: #dbe1f1;
}
.technology_table thead th {
  border-radius: 6px 6px 0 0;
  color: #fff;
}
.technology_table thead th:nth-child(1) {
  background: #eaf6fe;
  background-color: transparent;
  color: #000;
}
.technology_table thead th:nth-child(2) {
  background: #14116e;
}
.technology_table thead th:nth-child(3) {
  background: #f7e036;color: #000;
}
.technology_table thead th:nth-child(4) {
  background: #6f9b12;
}
.technology_table tbody tr:first-child th {
  border-radius: 6px 6px 0 0;
}
.technology_table tbody td.exception {
  background: #dbe1f1;
}
.technology_table tbody tr:last-child th, .technology_table tbody tr:last-child td {
  border-radius: 0 0 6px 6px;
}
.technology_table thead th:nth-child(3) {
  border-top: solid 4px #f7e036;
  border-left: solid 4px #f7e036;
  border-right: solid 4px #f7e036;
}
.technology_table tbody tr:nth-child(16) th {
  background: #dbe1f1;
}
.technology_table tbody tr:last-child td:nth-child(3) {}
.technology_table tbody td span {
  display: block;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  .table_wrap {
    position: relative;
  }
  /* 幅が480px以下になったら矢印を表示 */
  .table_wrap::before {
    content: 'スクロール';
    font-size: 12px;
    color: #ccc;
    position: absolute;
    top: 0;
    left: 5px;
  }
  .table_arrow {
    display: block;
    position: relative;
  }
  .table_arrow::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 5px;
    width: 100px;
    height: 1px;
    background: #ccc;
  }
  .table_arrow::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 90px;
    width: 15px;
    height: 1px;
    background: #ccc;
    transform: rotate(35deg);
  }
}
.technology_function dl {
  font-size: 1.4rem;
  line-height: 1.855;
  display: flex;
  flex-wrap: wrap;
  border: 2px solid #0B318F;
  border-bottom: 0;
}
.technology_function dt {
  width: 250px;
  padding: 5px 10px;
  background: #F5F5F5;
  font-weight: bold;
  border-bottom: 2px solid #0B318F;
  border-right: 2px solid #0B318F;
}
.technology_function dd {
  padding: 5px 10px;
  width: calc(100% - 250px);
  border-bottom: 2px solid #0B318F;
}
@media only screen and (min-width: 769px) {
  .technology_interview_btn a:hover, .technology_interview > a:hover, .technology_interview_link a:hover {
    opacity: .6;
  }
}
@media only screen and (max-width: 768px) {
  .technology_block {
    padding: 50px 5% 60px;
  }
  .technology_block::before, .technology_block::after {
    height: 20px;
    top: -19px;
    background-image: url(../img/bg_top_sp.png);
  }
  .technology_block::after {
    top: auto;
    bottom: -19px;
    background-image: url(../img/bg_bottom_sp.png);
  }
  .technology_block > p {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }
  .technology_item {
    width: auto;
    display: block;
  }
  .technology_item:nth-of-type(3) {
    margin-bottom: 90px;
  }
  .technology_item:nth-of-type(3)::before, .technology_item:nth-of-type(4)::before {
    width: 3px;
    height: 60px;
    top: -10px;
  }
  .technology_item:nth-of-type(4)::before {
    top: -60px;
  }
  .technology_txt {
    width: auto;
  }
  .technology_item:nth-of-type(3) .technology_txt {
    padding: 80px 0 0;
  }
  .technology_img {
    width: 33.7rem;
    margin: 30px auto 0;
  }
  .technology_item:nth-of-type(3) .technology_img {
    width: 17.6rem;
    margin: 30px auto 0;
  }
  .technology_item:nth-of-type(4) .technology_img {
    width: 33.7rem;
    margin: 30px auto 0;
  }
  .technology_item:nth-of-type(4) .technology_img figure {
    width: auto;
  }
  .technology_list_box, .technology_list_box:nth-child(1) {
    padding: 10px;
    font-size: 1.2rem;
  }
  .technology_list_box h4, .technology_list_box:nth-child(1) h4 {
    font-size: 1.3rem;
    margin-bottom: 6px;
  }
  .technology_list_box li {
    margin-left: 1em;
    text-indent: -1em;
  }
  .technology_txt h3, .technology_item:nth-of-type(3) .technology_txt h3, .technology_item:nth-of-type(4) .technology_txt h3 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
  .technology_txt h3::after {
    width: 50px;
    margin: 17px 0 0;
  }
  .technology_item:nth-of-type(3) .technology_txt h3::after {
    margin: 17px 0 0;
  }
  .technology_txt h3 span.en {
    bottom: 15px;
    font-size: 8rem;
  }
  .technology_item:nth-of-type(3) .technology_txt h3 span.en {
    bottom: 15px;
  }
  .technology_txt p {
    font-size: 1.5rem;
    line-height: 2;
  }
  .technology_interview {
    display: block;
    margin: 31px 0 0;
  }
  .technology_interview > a {
    width: 80%;
    margin: 0 auto;
  }
  .technology_interview_txt {
    padding-left: 0;
  }
  .technology_interview_link {
    margin: 15px auto 0;
  }
  .technology_box {
    width: auto;
    margin: 40px auto;
    border-radius: 15px;
    padding: 20px 5%;
    display: block;
  }
  .technology_box > figure {
    width: auto;
  }
  .technology_box_txt {
    padding-left: 0;
    margin-bottom: 20px;
  }
  .technology_box_txt h3 {
    font-size: 2rem;
    text-align: center;
  }
  .technology_box_txt p {
    font-size: 1.5rem;
  }
  .technology_box_txt .technology_box_note {
    font-size: 1.3rem;
  }
  .technology_recorder {
    width: auto;
    margin: 50px auto 31px;
    padding: 20px 5%;
    display: block;
  }
  .technology_recorder figure {
    width: 50px;
    margin: 0 auto;
  }
  .technology_recorder_txt {
    padding-left: 0;
  }
  .technology_recorder_txt p {
    font-size: 1.5rem;
  }
  .technology_recorder_txt h3 {
    font-size: 2rem;
    margin: 5px 0 10px;
    text-align: center;
  }
  .technology_function {
    width: auto;
    border-radius: 15px;
    padding: 20px 5%;margin-top: 10px;
    }
  }
  .technology_function h3 {
    font-size: 2rem;
    margin-bottom: 10px;
  
  }
  .technology_function dl {
    display: block;
  }
  .technology_function dt {
    width: auto;
    border-right: 0;
  }
  .technology_function dd {
    width: auto;
  }

/*background
----------------------------------------*/
.background_block {
  background: #FFEF8A url(../img/bg_background.jpg) no-repeat center center / cover;
  padding: 164px 20px 223px;
}
.background_block::before, .background_block::after {
  content: '';
  display: block;
  height: 60px;
  position: absolute;
  top: -59px;
  left: 0;
  right: 0;
  background: url(../img/bg_top_yellow.png) no-repeat left top / 100% 100%;
}
.background_block::after {
  top: auto;
  bottom: -59px;
  background-image: url(../img/bg_bottom_yellow.png);
}
.background_block img {
  display: block;
}
.background_block h2 {
  text-align: center;
  font-size: 4rem;
  letter-spacing: .04em;
  margin-bottom: 55px;
}
.background_block h2 .en {
  display: block;
  color: #0B318F;
  font-size: 1.6rem;
  letter-spacing: .1em;
  margin-top: 12px;
}
.background_inner {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.background_inner figure {
  width: 245px;
}
.background_txt {
  flex: 1;
  padding: 0 0 34px 48px;
  font-size: 1.5rem;
  line-height: 2.73;
}
@media only screen and (max-width: 768px) {
  .background_block {
    padding: 50px 8% 100px;
  }
  .background_block h2 {
    font-size: 3.2rem;
    margin-bottom: 30px;
  }
  .background_block h2 .en {
    font-size: 1.4rem;
    margin-top: 6px;
  }
  .background_inner {
    width: auto;
    display: block;
  }
  .background_inner figure {
    width: 245px;
    margin: 0 auto 20px;
  }
  .background_txt {
    padding: 0;
    line-height: 2;
  }
  .background_block::before, .background_block::after {
    height: 20px;
    top: -19px;
    background-image: url(../img/bg_top_yellow_sp.png);
  }
}
/*potential
----------------------------------------*/
.potential_block {
  background: #F5F5F5;
  padding: 1px 20px 110px;
}
.potential_block img {
  display: block;
}
.potential_block::before, .potential_block::after {
  content: '';
  display: block;
  height: 60px;
  position: absolute;
  top: -59px;
  left: 0;
  right: 0;
  background: url(../img/bg_top.png) no-repeat left top / 100% 100%;
}
.potential_block::after {
  top: auto;
  bottom: -59px;
  background-image: url(../img/bg_bottom.png);
}
.potential_inner {
  background: #fff;
  width: 1000px;
  margin: -117px auto 0;
  padding: 70px 60px 68px;
  border-radius: 16px;
}
.potential_block h2 {
  text-align: center;
  font-size: 4rem;
  letter-spacing: .04em;
  margin-bottom: 59px;
}
.potential_block h2 .en {
  color: #0B318F;
  display: block;
  font-size: 1.6rem;
  letter-spacing: .1em;
  margin-top: 12px;
}
.potential_graph {
  display: flex;
  justify-content: space-between;
}
.potential_graph_item {
  width: 420px;
}
.potential_graph_item figure {
  background: #F5F8FB;
  border-radius: 8px;
  padding: 19px 11px 18px;
}
.potential_graph_item figure img {
  display: block;
  width: 390px;
  margin: 0 auto;
}
.potential_graph_item p {
  font-size: 1.3rem;
  word-break: break-all;
  line-height: 1.8;
  margin-top: 15px;
}
.potential_graph_item p a {
  text-decoration: underline;
}
@media only screen and (max-width: 768px) {
  .potential_block {
    padding: 1px 5% 60px;
  }
  .potential_block::before, .potential_block::after {
    height: 20px;
    top: -19px;
    background-image: url(../img/bg_top_sp.png);
  }
  .potential_block::after {
    top: auto;
    bottom: -19px;
    background-image: url(../img/bg_bottom_sp.png);
  }
  .potential_inner {
    width: auto;
    margin: -70px auto 0;
    padding: 30px 5%;
    border-radius: 10px;
  }
  .potential_block h2 {
    font-size: 3rem;
    margin-bottom: 30px;
  }
  .potential_block h2 .en {
    font-size: 1.4rem;
    margin-top: 6px;
  }
  .potential_graph {
    display: block;
  }
  .potential_graph_item {
    width: auto;
  }
  .potential_graph_item + .potential_graph_item {
    margin-top: 30px;
  }
  .potential_graph_item figure img {
    width: 100%;
  }
  .potential_graph_item p {
    margin-top: 10px;
  }
}
/*download
----------------------------------------*/
.download_block {
  padding: 124px 20px 161px;
}
.download_inner {
  width: 1000px;
  margin: 0 auto;
  padding-top: 1px;
  display: flex;
}
.download_img {
  order: -1;
  width: 220px;
}
.download_txt {
  flex: 1;
  padding: 35px 0 0 68px;
}
.download_txt h3 {
  font-size: 3.2rem;
  font-weight: bold;
  color: #0B318F;
  margin-bottom: 33px;
  text-align: center;
}
.download_txt h3::after {
  content: '';
  display: block;
  width: 67px;
  height: 2px;
  background: #0B318F;
  margin: 40px 0 0;
}
.download_txt > p {
  font-size: 2.3rem;
  font-weight: bold;
  line-height: 2;
  margin-bottom: 58px;
}
@media only screen and (max-width: 768px) {
  .download_block {
    padding: 50px 5% 60px;
  }
  .download_inner {
    width: auto;
    flex-direction: column;
  }
  .download_img {
    width: 17.6rem;
    margin: 0 auto 20px;
  }
  .download_txt {
    padding: 0;
  }
  .download_txt h3 {
    font-size: 2.5rem;
    text-align: center;
  }
  .download_txt h3::after {
    width: 50px;
    margin: 20px auto 0;
  }
  .download_txt > p {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 30px;
  }
}
/*howto
----------------------------------------*/
.howto_block {
  background: #F5F5F5;
  padding: 50px 0 97px;
}
.howto_block img {
  display: block;
}
.howto_block::before, .howto_block::after {
  content: '';
  display: block;
  height: 60px;
  position: absolute;
  top: -59px;
  left: 0;
  right: 0;
  background: url(../img/bg_top.png) no-repeat left top / 100% 100%;
}
.howto_block::after {
  top: auto;
  bottom: -59px;
  background-image: url(../img/bg_bottom.png);
}
.howto_slide {
  width: 1000px;
  margin: 38px auto 0;
  overflow: hidden;
}
.howto_slide .slick-prev, .howto_slide .slick-next {
  width: 75px;
  height: 75px;
  border: 0;
  border-radius: 50%;
  overflow: hidden;
  text-indent: -999px;
  background: #fff url(../img/btn_slide_arrow.svg) no-repeat center center / 25px auto;
  position: absolute;
  top: 50%;
  margin-top: -93px;
  right: 0;
  cursor: pointer;
  transition: opacity .3s;
  z-index: 1100;
}
.howto_slide .slick-prev {
  transform: scale(-1, 1);
  left: 0;
  right: auto;
}
.slick-dots {
  position: absolute;
  bottom: 13px;
  right: 60px;
  display: flex;
  justify-content: flex-end;
}
.slick-dots li {
  width: 34px;
  margin-left: 10px;
}
.slick-dots li button {
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 50%;
  background: #fff;
  font-size: 2.2rem;
  border: 0;
  font-weight: bold;
  color: #0B318F;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: opacity .3s;
}
.slick-dots li.slick-active button {
  background: #0B318F;
  color: #fff;
}
.howto_item {
  width: 1000px;
  margin: 0;
  float: left;
  padding: 25px 60px 0;
  display: flex;
  align-items: flex-start;
}
.howto_item figure {
  width: 411px;
  padding-top: 47px;
  z-index: 2;
}
.howto_item.item02 figure {
  width: 480px;
  padding-top: 0;
  top: -25px;
  left: 5px;
}
.howto_item.item03 figure, .howto_item.item04 figure {
  width: 403px;
  padding: 19px 0 0 40px;
}
.howto_txt {
  background: #0B318F;
  color: #fff;
  text-align: center;
  margin-left: -33px;
  flex: 1;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.77;
  height: 339px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 3px;
}
.howto_item.item02 .howto_txt {
  margin-left: -102px;
}
.howto_item.item03 .howto_txt, .howto_item.item04 .howto_txt {
  margin-left: -25px;
}
.howto_number {
  position: absolute;
  top: 10px;
  left: 81px;
  font-size: 12.6rem;
  font-weight: bold;
  color: #002A7D;
  opacity: .2;
  line-height: 1;
}
.howto_poach {
  width: 1000px;
  margin: 55px auto 35px;
  padding: 53px 56px 50px 49px;
  background: #fff;
  border-radius: 31px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.howto_poach_txt {
  width: 451px;
}
.howto_poach h3 {
  width: 100%;
  text-align: center;
  font-size: 3.4rem;
  letter-spacing: .03em;
  color: #04369B;
  margin-bottom: 30px;
}
.howto_poach_txt p {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.86;
}
.howto_poach_photo {
  margin-top: 10px;
}
.howto_poach_photo ul {
  width: 416px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
}
.howto_poach_photo ul li {
  width: 106px;
}
.howto_poach_photo figcaption {
  margin: 3px -15px 0;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: #04369B;
  line-height: 1.2;
  min-height: 31px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.howto_poach_gallery {
  width: 433px;
  margin: 22px 0 0 0;
  background: #F5F5F5;
  border-radius: 10px;
  padding: 17px 10px 20px;
  text-align: center;
}
.howto_poach_gallery p {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
}
.howto_poach_gallery_btn {
  width: 186px;
  margin: 10px auto 0;
}
.howto_poach_gallery_btn a {
  display: block;
  font-size: 1.4rem;
  letter-spacing: -.02em;
  padding: 8px 5px;
  font-weight: bold;
  color: #002A7D;
  background: #fff;
  border-radius: 19px;
  transition: opacity .3s;
}
.howto_poach_gallery_btn a::before {
  content: '';
  display: inline-block;
  width: 17px;
  height: 14px;
  margin-right: 4px;
  vertical-align: -1px;
  background: url(../img/icon_gallery.svg) no-repeat left top / 100% auto;
}
.howto_poach > figure {
  width: 406px;
  padding-top: 6px;
}
.howto_poach_btn {
  width: 100%;
  margin: 39px 0 0;
  padding-left: 10px;
}
.howto_poach_btn a {
  width: 509px;
  margin: 0 auto;
  display: block;
  background: #F58B00;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  letter-spacing: .05em;
  font-size: 1.8rem;
  padding: 24px 0 23px 0;
  font-weight: bold;
  transition: opacity .3s;
}
.howto_poach_btn a::before {
  content: '';
  display: inline-block;
  width: 29px;
  height: 30px;
  background: url(../img/icon_cart.svg) no-repeat;
  vertical-align: -6px;
  margin-right: 7px;
}
.howto_poach_btn a::after {
  content: '';
  display: block;
  width: 16px;
  height: 6px;
  background: url(../img/icon_btn_arrow.svg) no-repeat left top / 100% auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  margin: auto 0;
  transition: transform .3s;
}
.howto_poach_note a {
  text-decoration: underline;
}
.howto_poach_note a:hover {
  opacity: .6;
}
.howto_poach_note {
  width: 100%;
  text-align: center;
  font-weight: 500;
  font-size: 1.4rem;
  margin-top: 3rem;
}
.howto_notes {
  width: 1000px;
  border: 6px solid #fff;
  border-radius: 31px;
  padding: 37px 43px 48px;
  margin: 0 auto 43px;
}
.howto_notes h3 {
  font-size: 2.2rem;
  color: #04369B;
  margin-bottom: 16px;
}
.howto_notes h4 {
  font-size: 1.7rem;
  line-height: 1.88;
  margin-bottom: 12px;
}
.howto_notes ul {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.86;
}
.howto_notes ul li {
  margin-left: 1em;
  text-indent: -1em;
}
.howto_notes_link {
  margin-top: 20px;
}
.howto_notes_link a {
  color: #04369B;
  text-decoration: underline;
  transition: opacity .3s;
}
.howto_patent {
  width: 1000px;
  margin: 0 auto;
  background: #FFEF8A;
  border-radius: 31px;
  text-align: center;
  padding: 26px 20px 30px;
}
.howto_patent h3 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.howto_patent p {
  font-size: 1.5rem;
  line-height: 2.13;
}
@media only screen and (min-width: 769px) {
  .howto_slide .slick-prev:hover, .howto_slide .slick-next:hover, .slick-dots li button:hover, .howto_poach_btn a:hover, .howto_notes_link a:hover, .howto_poach_gallery_btn a:hover {
    opacity: .6;
  }
  .howto_poach_btn a:hover::after {
    transform: translateX(5px);
  }
}
@media only screen and (max-width: 768px) {
  .howto_block {
    padding: 50px 5% 60px;
  }
  .howto_block::before, .howto_block::after {
    height: 20px;
    top: -19px;
    background-image: url(../img/bg_top_sp.png);
  }
  .howto_block::after {
    top: auto;
    bottom: -19px;
    background-image: url(../img/bg_bottom_sp.png);
  }
  .howto_slide {
    width: auto;
    margin: 40px auto 0;
    padding-bottom: 5rem;
  }
  .howto_slide .slick-prev, .howto_slide .slick-next {
    width: 5rem;
    height: 5rem;
    background: #fff url(../img/btn_slide_arrow.svg) no-repeat center center / 1.6rem auto;
    margin-top: -2.5rem;
  }
  .slick-dots {
    bottom: 0;
    right: 5vw;
  }
  .slick-dots li {
    width: 3.4rem;
    margin-left: 1rem;
  }
  .slick-dots li button {
    width: 3.4rem;
    height: 3.4rem;
  }
  .howto_item {
    width: auto;
    display: block;
    padding: 0 5vw;
  }
  .howto_item img {
    height: 24.1rem;
    width: auto;
    margin: 0 auto;
  }
  .howto_item figure, .howto_item.item02 figure {
    width: auto;
    padding: 40px 0 0 !important;
    top: auto !important;
    left: auto !important;
  }
  .howto_item.item03 figure {
    width: 70vw;
    margin: 0 auto;
  }
  .howto_item.item04 figure {
    width: 70vw;
    margin: 0 auto;
  }
  .howto_txt {
    margin: 10px 0 0 !important;
    font-size: 1.5rem;
    height: 21.6rem;
    padding: 15px 5%;
  }
  .howto_number {
    top: 0;
    left: 0;
    font-size: 9rem;
  }
  .howto_poach {
    width: auto;
    padding: 30px 0;
    border-radius: 15px;
    flex-direction: column;
  }
  .howto_poach_txt {
    width: 100%;
    padding: 20px 5%;
    order: 2;
  }
  .howto_poach_txt p {
    font-size: 1.6rem;
  }
  .howto_poach h3 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 10px;
    order: -1;
  }
  .howto_poach > figure {
    width: 100%;
    order: 1;
  }
  .howto_poach > figure img {
    width: 80%;
    margin: 0 auto;
    display: block;
  }
  .howto_poach_photo {
    display: block;
  }
  .howto_poach_photo ul {
    width: 29rem;
    margin: 0 auto 2rem;
  }
  .howto_poach_photo ul li {
    width: 8.4rem;
  }
  .howto_poach_photo figcaption {
    font-size: 1.3rem;
  }
  .howto_poach_btn {
    width: 100%;
    padding: 0 5%;
    margin-top: 10px;
    order: 3;
  }
  .howto_poach_gallery {
    width: auto;
    margin: 0;
  }
  .howto_poach_gallery_btn {
    width: 18.6rem;
    margin: 15px auto 0;
  }
  .howto_poach_gallery p {
    font-size: 1.5rem;
  }
  .howto_poach_btn a {
    width: 100%;
    font-size: 1.6rem;
    padding: 20px 15px 20px 0;
  }
  .howto_poach_btn a::before {
    width: 2.9rem;
    height: 3rem;
    background-size: 100% auto;
    vertical-align: -.6rem;
    margin-right: .2rem;
  }
  .howto_poach_btn a::after {
    right: 1rem;
    width: 1.1rem;
    height: .5rem;
  }
  .howto_poach_note {
    order: 4;
    font-size: 1.2rem;
    margin-top: 2rem;
    padding: 0 5%;
  }
  .howto_notes {
    width: auto;
    border-radius: 15px;
    padding: 30px 5%;
  }
  .howto_notes h3 {
    font-size: 2rem;
  }
  .howto_notes h4 {
    font-size: 1.6rem;
  }
  .howto_notes ul {
    font-size: 1.4rem;
  }
  .howto_patent {
    width: auto;
    border-radius: 15px;
    padding: 26px 5%;
  }
}
/*faq
----------------------------------------*/
.faq_block {
  padding: 109px 20px 88px;
}
.faq_inner {
  width: 1000px;
  margin: 0 auto;
}
.faq_block h3 {
  font-size: 3.5rem;
  letter-spacing: .04em;
  margin: 48px 0 26px;
}
.faq_block dl {
  margin-bottom: 60px;
}
.faq_block dl dt {
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: .04em;
  background: #F5F5F5;
  border-radius: 8px;
  margin-top: 10px;
  padding: 23px 20px 21px 57px;
  cursor: pointer;
}
.faq_block dl dt.open {
  border-radius: 8px 8px 0 0;
}
.faq_block dl dt::before {
  content: '';
  display: block;
  width: 26px;
  height: 26px;
  background: url(../img/icon_faq_plus.svg) no-repeat left top / 100% auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto 0;
  transition: transform .3s;
}
.faq_block dl dt.open::before {
  background-image: url(../img/icon_faq_minus.svg);
}
.faq_block dl dd {
  display: none;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: .04em;
  background: #F5F5F5;
  color: #0B318F;
  border-radius: 0 0 8px 8px;
  line-height: 2.23;
  padding: 0 20px 21px 57px;
}
.faq_block dl dd ol{
	list-style: decimal;
}
.faq_block dl dt span {
  letter-spacing: -.001em;
}
@media only screen and (max-width: 768px) {
  .faq_block {
    padding: 50px 5% 60px;
  }
  .faq_inner {
    width: auto;
  }
  .faq_block h3 {
    font-size: 2.5rem;
    margin: 38px 0 16px;
  }
  .faq_block dl {
    margin-bottom: 50px;
  }
  .faq_block dl dt {
    font-size: 1.6rem;
    padding: 1.5rem 1rem 1.5rem 3.8rem;
  }
  .faq_block dl dt::before {
    width: 1.7rem;
    height: 1.7rem;
    left: 1.3rem;
  }
  .faq_block dl dd {
    font-size: 1.5rem;
    line-height: 2;
    padding: 0 1rem 1.5rem 3.8rem;
  }
}
/*adviser
----------------------------------------*/
.adviser_block {
  background: #FFEF8A;
  padding: 78px 20px 34px;
}
.adviser_block::before, .adviser_block::after {
  content: '';
  display: block;
  height: 60px;
  position: absolute;
  top: -59px;
  left: 0;
  right: 0;
  background: url(../img/bg_top_yellow.png) no-repeat left top / 100% 100%;
}
.adviser_block::after {
  top: auto;
  bottom: -59px;
  background-image: url(../img/bg_bottom_yellow.png);
}
.adviser_block img {
  display: block;
}
.adviser_inner {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
}
.adviser_inner figure {
  width: 287px;
}
.adviser_txt {
  flex: 1;
  padding-left: 32px;
}
.adviser_txt h2 {
  font-size: 2.7rem;
  letter-spacing: .04em;
  margin: -1px 0 14px;
}
.adviser_txt p {
  font-size: 1.9rem;
  line-height: 2.1;
}
@media only screen and (max-width: 768px) {
  .adviser_block {
    padding: 50px 5% 60px;
  }
  .adviser_block::before, .adviser_block::after {
    height: 20px;
    top: -19px;
    background-image: url(../img/bg_top_yellow_sp.png);
  }
  .adviser_block::after {
    top: auto;
    bottom: -19px;
    background-image: url(../img/bg_bottom_yellow_sp.png);
  }
  .adviser_inner {
    width: auto;
    display: block;
  }
  .adviser_inner figure {
    width: 20rem;
    margin: 0 auto;
  }
  .adviser_txt {
    padding-left: 0;
  }
  .adviser_txt h2 {
    font-size: 2rem;
    text-align: center;
    margin: 20px 0 14px;
  }
  .adviser_txt p {
    font-size: 1.6rem;
    line-height: 2;
  }
}
/*sdgs
----------------------------------------*/
.sdgs_block {
  padding: 135px 20px 80px;
}
.sdgs_block img {
  display: block;
}
.sdgs_lead {
  text-align: center;
  font-size: 2.3rem;
  letter-spacing: .1em;
  line-height: 1.91;
  margin-top: -4px;
}
.sdgs_inner {
  width: 1000px;
  margin: 0 auto;
}
.sdgs_nav {
  width: 932px;
  margin: 65px auto 80px;
  display: flex;
  justify-content: space-between;
}
.sdgs_nav li {
  width: 218px;
}
.sdgs_nav li a {
  display: block;
  transition: opacity .3s;
}
.sdgs_block h3 {
  text-align: center;
  font-size: 3.3rem;
  letter-spacing: .1em;
  margin-bottom: 60px;
}
.sdgs_item {
  background: #DFEEE3;
  border-radius: 31px;
  padding: 40px 42px 60px 40px;
  margin-bottom: 40px;
}
.sdgs_ttl {
  display: flex;
  margin-bottom: 27px;
}
.sdgs_ttl figure {
  width: 231px;
}
.sdgs_ttl_txt {
  flex: 1;
  padding-left: 40px;
}
.sdgs_ttl h4 {
  font-size: 3.3rem;
  color: #1B973A;
  letter-spacing: .1em;
  margin-bottom: 40px;
}
.sdgs_ttl h4::after {
  content: '';
  display: block;
  width: 101px;
  height: 2px;
  background: #1B973A;
  margin: 37px 0 0;
}
.sdgs_ttl h5 {
  font-size: 3rem;
  letter-spacing: .05em;
  line-height: 1.46;
}
.sdgs_txt {
  font-size: 1.9rem;
  line-height: 2.1;
}
.sdgs_link {
  font-size: 1.4rem;
  letter-spacing: .05em;
  font-weight: 500;
  margin-top: 15px;
}
.sdgs_link a {
  text-decoration: underline;
  color: #1B973A;
  transition: opacity .3s;
}
#sdgs10.sdgs_item {
  background: #FFE6F4;
}
#sdgs10.sdgs_item .sdgs_ttl h4, #sdgs10.sdgs_item .sdgs_link a {
  color: #DC097B;
}
#sdgs10.sdgs_item .sdgs_ttl h4::after {
  background: #DC097B;
}
#sdgs11.sdgs_item {
  background: #FFF2DB;
}
#sdgs11.sdgs_item .sdgs_ttl h4, #sdgs11.sdgs_item .sdgs_link a {
  color: #F5A20B;
}
#sdgs11.sdgs_item .sdgs_ttl h4::after {
  background: #F5A20B;
}
#sdgs17.sdgs_item {
  background: #EDF2F8;
}
#sdgs17.sdgs_item .sdgs_ttl h4, #sdgs17.sdgs_item .sdgs_link a {
  color: #023067;
}
#sdgs17.sdgs_item .sdgs_ttl h4 {
  letter-spacing: 0;
}
#sdgs17.sdgs_item .sdgs_ttl h4::after {
  background: #023067;
}
@media only screen and (min-width: 769px) {
  .sdgs_nav li a:hover, .sdgs_link a:hover {
    opacity: .6;
  }
}
@media only screen and (max-width: 768px) {
  .sdgs_block {
    padding: 50px 5% 60px;
  }
  .sdgs_lead {
    text-align: left;
    font-size: 1.6rem;
    margin-top: 0;
  }
  .sdgs_inner {
    width: auto;
  }
  .sdgs_nav {
    width: auto;
    margin: 20px auto;
  }
  .sdgs_nav li {
    width: 25%;
  }
  .sdgs_block h3 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .sdgs_item {
    border-radius: 15px;
    padding: 30px 5%;
  }
  .sdgs_ttl {
    display: block;
  }
  .sdgs_ttl figure {
    width: 30%;
    margin: 0 auto 20px;
  }
  .sdgs_ttl_txt {
    padding-left: 0;
    text-align: center;
  }
  .sdgs_ttl h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .sdgs_ttl h4::after {
    width: 60px;
    margin: 20px auto 0;
  }
  .sdgs_ttl h5 {
    font-size: 1.5rem;
    text-align: left;
  }
  .sdgs_txt {
    font-size: 1.5rem;
    line-height: 2;
  }
  .sdgs_link {
    margin-top: 10px;
    font-size: 1.3rem;
    letter-spacing: 0;
  }
}
/*result_block
----------------------------------------*/
.result_block {
  background: #F5F5F5;
  padding: 76px 20px 81px;
}
.result_block::before, .result_block::after {
  content: '';
  display: block;
  height: 60px;
  position: absolute;
  top: -59px;
  left: 0;
  right: 0;
  background: url(../img/bg_top.png) no-repeat left top / 100% 100%;
}
.result_block::after {
  top: auto;
  bottom: -59px;
  background-image: url(../img/bg_bottom.png);
}
.result_block img {
  display: block;
}
.result_inner {
  width: 1000px;
  margin: 0 auto;
}
.result_block ul {
  padding: 0 5px 0 85px;
  margin-top: 63px;
}
.result_block ul::before {
  content: '';
  display: block;
  width: 3px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 11px;
  background-image: linear-gradient(to bottom, #0B318F 3px, transparent 3px);
  background-size: 3px 10px;
  background-repeat: repeat-y;
  background-position: left bottom;
}
.result_block ul li {
  background: #fff;
  border-radius: 8px;
  padding: 31px 25px 38px 48px;
}
.result_block ul li:nth-child(1), .result_block ul li:nth-child(4), .result_block ul li:nth-child(5) {
  
  align-items: center;
}
.result_block ul li::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 22px 13px 0;
  border-color: transparent #fff transparent transparent;
  position: absolute;
  top: 31px;
  left: -20px;
}
.result_block ul li::after {
  content: '';
  display: block;
  width: 26px;
  height: 26px;
  border: 8px solid #0B318F;
  background: #fff;
  box-sizing: border-box;
  border-radius: 50%;
  position: absolute;
  left: -86px;
  top: 31px;
}
.result_block ul li p span {
    display: block;
    color: #0b318f;
    font-weight: 700;
    font-size: 2rem;
    font-style: italic;
}
.result_block ul li:nth-child(1)::before, .result_block ul li:nth-child(4)::before, .result_block ul li:nth-child(5)::before {
  top: 51px;
}
.result_block ul li:nth-child(1)::after, .result_block ul li:nth-child(4)::after, .result_block ul li:nth-child(5)::after {
  top: 50px;
}
.result_block ul li + li {
  margin-top: 30px;
}
.result_block ul li p {
  font-size: 1.9rem;
  line-height: 2.1;
}
.result_block ul li p strong {
  font-size: 2.3rem;
  color: #0B318F;
  line-height: 1;
}
.result_bnr {
  display: flex;
  margin: 34px 0 8px;
}
.result_bnr p {
  margin-right: 18px;
}
.result_bnr a {
  display: block;
  transition: opacity .3s;
}
.result_bnr img {
  width: auto;
  height: 73px;
}
.result_block ul li:nth-child(1) .result_bnr, .result_block ul li:nth-child(4) .result_bnr, .result_block ul li:nth-child(5) .result_bnr {
  margin: 0 0 -6px auto;
}
.result_block ul li:nth-child(1) .result_bnr img, .result_block ul li:nth-child(4) .result_bnr img, .result_block ul li:nth-child(5) .result_bnr img {
  height: 66px;
}
@media only screen and (min-width: 769px) {
  .result_bnr a:hover {
    opacity: .6;
  }
}
@media only screen and (max-width: 768px) {
  .result_block {
    padding: 50px 5% 60px;
  }
  .result_block::before, .result_block::after {
    height: 20px;
    top: -19px;
    background-image: url(../img/bg_top_sp.png);
  }
  .result_block::after {
    top: auto;
    bottom: -19px;
    background-image: url(../img/bg_bottom_sp.png);
  }
  .result_inner {
    width: auto;
  }
  .result_block ul {
    padding: 0 5px 0 4.7rem;
    margin-top: 0;
  }
  .result_block ul::before {
    left: 1.1rem;
  }
  .result_block ul li {
    padding: 20px 8%;
  }
  .result_block ul li:nth-child(1), .result_block ul li:nth-child(4), .result_block ul li:nth-child(5) {
    display: block;
  }
  .result_block ul li::before {
    top: 28px;
  }
  .result_block ul li::after {
    width: 1.7rem;
    height: 1.7rem;
    border-width: .5rem;
    left: -4.3rem;
    top: 31px;
  }
  .result_block ul li:nth-child(1)::before, .result_block ul li:nth-child(4)::before, .result_block ul li:nth-child(5)::before {
    top: 46px;
  }
  .result_block ul li p {
    font-size: 1.5rem;
    line-height: 2;
  }
  .result_block ul li p strong {
    font-size: 2rem;
  }
  .result_bnr {
    flex-direction: column;
    margin: 15px 0 0;
  }
  .result_bnr p {
    margin-right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .result_bnr p + p {
    margin-top: 10px;
  }
  .result_bnr img {
    height: 7rem;
  }
  .result_block ul li:nth-child(1) .result_bnr, .result_block ul li:nth-child(4) .result_bnr, .result_block ul li:nth-child(5) .result_bnr {
    margin: 15px 0 0;
  }
  .result_block ul li:nth-child(1) .result_bnr img, .result_block ul li:nth-child(4) .result_bnr img, .result_block ul li:nth-child(5) .result_bnr img {
    height: 6.6rem;
  }
}
/*gallery
----------------------------------------*/
.gallery .slick-prev, .gallery .slick-next {
  width: 75px;
  height: 75px;
  border: 0;
  border-radius: 50%;
  overflow: hidden;
  text-indent: -999px;
  background: #fff url(../img/btn_slide_arrow.svg) no-repeat center center / 25px auto;
  position: absolute;
  top: 50%;
  margin-top: -37px;
  right: -85px;
  cursor: pointer;
  transition: opacity .3s;
  z-index: 1100;
}
.gallery .slick-prev {
  transform: scale(-1, 1);
  left: -85px;
  right: auto;
}
.gallery img {
  display: block;
}
.gallery .slick-list {
  overflow: hidden;
}
.gallery ul {
  width: 450px;
  margin: 0 auto;
}
.gallery ul li {
  width: 450px;
  float: left;
}
.gallery ul li:last-child, .gallery ul li:nth-last-child(2) {
  margin-bottom: 0;
}
.gallery ul li figcaption {
  background: #0B318F;
  color: #fff;
  font-weight: bold;
  font-size: 1.7rem;
  text-align: center;
  padding: 11px;
}
@media only screen and (max-width: 768px) {
  .gallery {
    height: 44.5rem;
  }
  .gallery ul {
    width: 31.9rem;
    display: block;
  }
  .gallery ul, .gallery ul li {
    width: 31.9rem;
  }
  .gallery .slick-prev, .gallery .slick-next {
    width: 5rem;
    height: 5rem;
    background: #fff url(../img/btn_slide_arrow.svg) no-repeat center center / 1.6rem auto;
    margin-top: -2.5rem;
    right: -2.5rem;
  }
  .gallery .slick-prev {
    left: -2.5rem;
    right: auto;
  }
}
/*sponsor_block
----------------------------------------*/
.sponsor_block {
  padding: 120px 20px 104px;
}
.sponsor_block img {
  display: block;
}
.partners_block {
  margin-top: 100px;
}
.sponsor_inner {
  width: 1000px;
  margin: 0 auto;
}
.sponsor_bnr {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 47px;
}
.sponsor_bnr + .sponsor_bnr {
  margin-top: 0;
}
.sponsor_bnr li {
  width: 240px;
  margin: 0 0 12px;
}
.sponsor_bnr li.col3 {
  width: 250px;
  padding: 15px;
}
.sponsor_bnr li a {
  display: block;
  transition: opacity .3s;
}
.sponsor_purpose {
  border: 6px solid #04369B;
  border-radius: 31px;
  margin-top: 30px;
  text-align: center;
  padding: 37px 38px;
}
.sponsor_purpose h3 {
  font-size: 2.2rem;
  color: #04369B;
  margin-bottom: 24px;
}
.sponsor_purpose ul {
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.47;
}
.sponsor_purpose ul li {
  border-bottom: 1px dotted #04369B;
  padding-bottom: 15px;
  margin-bottom: 12px;
}
.sponsor_purpose ul li:nth-child(2) {
  padding-bottom: 13px;
  margin-bottom: 20px;
}
.sponsor_purpose ul li:nth-child(3) {
  padding-bottom: 19px;
}
.sponsor_note {
  margin-top: 20px;
  font-size: 1.4rem;
}
.sponsor_note li {
  margin-left: 1em;
  text-indent: -1em;
}
.sponsor_bnr li.col3.bnr_small {
       width: 180px;
}
.partners {
    border-top: 1px solid #0b318f;
    padding-top: 100px;
    margin-top: 100px;
}
@media only screen and (min-width: 769px) {
  .sponsor_bnr li a:hover {
    opacity: .6;
  }
}
@media only screen and (max-width: 768px) {
   
  .sponsor_block {
    padding: 50px 5% 60px;
  }
  .sponsor_inner {
    width: auto;
  }
  .sponsor_bnr {
    margin-top: -10px;
  }
  .sponsor_bnr li {
    width: 48% !important;
    margin: 0 0 12px 4%;
  }
     .sponsor_bnr li.col3.bnr_small {
    width: 130px !important;
}
  .sponsor_bnr li.col3 {
    padding: 0px;
  }
   .partners {
    padding-top: 50px;
    margin-top: 50px;
}
  .sponsor_bnr li:nth-child(2n+1) {
    margin-left: 0;
  }
  .sponsor_purpose {
    border-radius: 15px;
    margin-top: 20px;
    padding: 20px 5%;
  }
  .sponsor_purpose h3 {
    font-size: 2rem;
  }
  .sponsor_purpose ul {
    font-size: 1.5rem;
  }
  .sponsor_note {
    font-size: 1.2rem;
  }
}
/*contact
----------------------------------------*/
.contact_block {
  background: #04369B;
  color: #fff;
  padding: 48px 20px 63px;
  text-align: center;
}
.contact_block h2 {
  font-size: 2.6rem;
  letter-spacing: .1em;
  margin-bottom: 7px;
}
.contact_block h3 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.contact_block > p {
  font-size: 1.8rem;
}
.contact_btn {
  width: 996px;
  margin: 25px auto 0;
  display: flex;
  justify-content: center;
}
.contact_btn p {
  width: 493px;
  display: flex;
}
.contact_btn p a {
  width: 100%;
  height: 100%;
  background: #6183C8;
  display: block;
  transition: opacity .3s;
}
.contact_btn p a[href^="mailto:"] {
  font-size: 1.7rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 8rem;
}
.contact_btn p a[href^="tel:"] {
  font-size: 1.4rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  line-height: 1.42;
  padding: 20px 0;
}
.contact_btn p a[href^="tel:"] span {
  text-align: left;
}
.contact_btn p a[href^="tel:"] span:first-child {
  font-size: 2.7rem;
  margin-right: 12px;
}
.contact_btn p a[href^="mailto:"]::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 23px;
  margin-right: 13px;
  background: url(../img/icon_contact_mail.svg) no-repeat left top / 100% auto;
}
.contact_btn p a[href^="tel:"]::before {
  content: '';
  display: inline-block;
  width: 27px;
  height: 27px;
  margin-right: 5px;
  background: url(../img/icon_contact_tel.svg) no-repeat left top / 100% auto;
}
@media only screen and (min-width: 769px) {
  .contact_btn p a:hover {
    opacity: .6;
  }
}
@media only screen and (max-width: 768px) {
  .contact_block {
    padding: 50px 5% 60px;
  }
  .contact_block h2 {
    font-size: 2.3rem;
  }
  .contact_block h3 {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  .contact_block > p {
    font-size: 1.6rem;
  }
  .contact_btn {
    width: auto;
    margin: 25px auto 0;
    display: block;
  }
  .contact_btn p {
    width: 100%;
  }
  .contact_btn p + p {
    margin-top: 10px;
  }
  .contact_btn p a[href^="mailto:"] {
    height: 5rem;
  }
  .contact_btn p a[href^="tel:"] {
    font-size: 1.1rem;
    height: 5rem;
    pointer-events: all;
    padding: 0;
  }
  .contact_btn p a[href^="tel:"] span:first-child {
    font-size: 1.7rem;
    margin-right: 1rem;
  }
  .contact_btn p a[href^="mailto:"]::before {
    width: 2rem;
    height: 1.6rem;
    margin-right: 1rem;
  }
  .contact_btn p a[href^="tel:"]::before {
    width: 2rem;
    height: 2rem;
    margin-right: .5rem;
  }
}
/*pagetop
----------------------------------------*/
.btn_pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
}
.btn_pagetop img {
  display: block;
}
.btn_pagetop a {
  display: block;
  transition: opacity .3s;
}
.btn_pagetop.show {
  opacity: 1;
  pointer-events: all;
}
@media only screen and (min-width: 769px) {
  .btn_pagetop a:hover {
    opacity: .6;
  }
}
@media only screen and (max-width: 768px) {
  .btn_pagetop {
    bottom: 11rem;
    right: 1rem;
  }
  .btn_pagetop a {
    width: 4rem;
  }
}
/*footer
----------------------------------------*/
.footer {
  padding: 45px 20px 0;
}
.footer img {
  display: block;
}
.footer_inner {
  width: 1000px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
}
.footer_service {
  width: 190px;
}
.footer_inner h2 {
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: .1em;
  margin-bottom: 13px;
}
.footer_service_logo {
  width: 122px;
  margin: 0 auto;
}
.footer_developer_logo {
  margin: 20px 0;
  display: flex;
  justify-content: center;
}
.footer_link {
  margin: 14px auto 0;
}
.footer_developer .footer_link {
  display: flex;
  justify-content: center;
}
.footer_link a.hp {
  display: flex;
    align-items: center;
    justify-content: center;
  background: #EEE;
  font-size: 1.3rem;
  font-weight: 500;
 padding: 10px 10px 10px 5px;
  transition: opacity .3s;
  width: 230px;letter-spacing: 0.04rem;
}
.link_box {
    display: flex;
}
.note img {
  width: 35px;
}
.footer_link a.hp::after {
  content: '';
  display: block;
  width: 12px;
  height: 11px;
  background: url(../img/icon_footer_external.svg) no-repeat left top / 100% auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  margin: auto 0;
}
.footer_developer {
  width: 475px;
}
.copyright {
  padding: 52px 10px 15px;
  text-align: center;
  font-size: 1.1rem;
  display: block;
}
@media only screen and (min-width: 769px) {
  .footer_link a:hover {
    opacity: .6;
  }
}
@media only screen and (max-width: 768px) {
  .footer {
    padding: 30px 5% 11rem;
  }
  .footer_inner {
    width: auto;
    display: block;
  }
  .footer_service {
    width: auto;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #DFDFDF;
  }
  .footer_developer {
    width: auto;
  }
  .footer_developer::before {
    display: none;
  }
    .link_box {
    flex-direction: column;
}
}
/*inview
----------------------------------------*/
.inview {
  backface-visibility: hidden;
}
.description_block.inview, .about_block.inview, .howto_block.inview, .howto_block .inview, .technology_block.inview, .technology_block .inview, .faq_block.inview, .background_block.inview, .potential_block.inview, .download_block.inview, .form_block.inview, .adviser_block.inview, .sdgs_block.inview, .sdgs_block .inview, .result_block.inview, .sponsor_block.inview, .note_block.inview, .premium_block.inview {
  opacity: 0;
  transform: translateY(100px);
}
.description_block.inview.show, .about_block.inview.show, .howto_block.inview.show, .howto_block .inview.show, .technology_block.inview.show, .technology_block .inview.show, .faq_block.inview.show, .background_block.inview.show, .potential_block.inview.show, .download_block.inview.show, .form_block.inview.show, .adviser_block.inview.show, .sdgs_block.inview.show, .sdgs_block .inview.show, .result_block.inview.show, .sponsor_block.inview.show, .note_block.inview.show, .premium_block.inview.show {
  animation-fill-mode: forwards;
  animation-duration: .8s;
  animation-name: movey;
}
@keyframes movey {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* colobox
----------------------------------------*/
#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 19999;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
#cboxWrapper {
  max-width: none;
}
#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}
#cboxMiddleLeft, #cboxBottomLeft {
  clear: left;
}
#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#cboxTitle {
  margin: 0;
}
#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  cursor: pointer;
}
.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}
.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}
#colorbox, #cboxContent, #cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}
#cboxLoadedContent {
  overflow: visible !important;
  text-align: center;
  display: inline-block;
  position: static;
}
#cboxOverlay {
  background: #fff;
  opacity: 0;
  transition: opacity 1000ms;
}
#colorbox {
  opacity: 0;
}
#colorbox, #cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {
  outline: 0;
}
#cboxContent {
  overflow: visible;
  margin: 0;
}
#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}
#cboxTitle {
  position: absolute;
  top: -22px;
  left: 0;
  color: #333;
}
#cboxCurrent {
  position: absolute;
  top: -22px;
  right: 205px;
  text-indent: -9999px;
}
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  text-indent: -9999px;
  width: 20px;
  height: 20px;
  position: absolute;
  top: -20px;
}
#cboxPrevious:focus, #cboxNext:focus, #cboxSlideshow:focus, #cboxClose:focus {
  outline: none;
}
#cboxClose {
  text-align: center;
  color: #333;
  -webkit-appearance: none;
  appearance: none;
  background: none;
  top: -40px;
  right: 0;
  border: 0;
  border-radius: 0;
  z-index: 1100;
  width: 30px;
  height: 30px;
  opacity: 0;
  margin-left: -22px;
  font-family: inherit;
  overflow: hidden;
  transition: opacity 300ms;
}
#cboxClose:focus {
  outline: none;
}
#cboxClose:hover {
  opacity: .6;
}
#cboxClose::before, #cboxClose::after {
  content: '';
  width: 1px;
  height: 40px;
  display: block;
  background: #000;
  position: absolute;
  top: -5px;
  left: 15px;
  transform: rotate(45deg);
}
#cboxClose::after {
  transform: rotate(-45deg);
}
#cboxPrevious, #cboxNext {
  top: 50%;
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: 0;
  height: 40px;
  margin-top: -20px;
}
#cboxNext {
  right: -30px;
}
#cboxPrevious {
  left: -30px;
}
#cboxPrevious::before, #cboxNext::before {
  content: '';
  display: block;
  position: absolute;
  left: -9px;
  top: 8px;
  width: 20px;
  height: 20px;
  border-top: 3px solid #FFF;
  border-right: 3px solid #FFF;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#cboxPrevious::before {
  left: 5px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
@media only screen and (max-width: 768px) {
  #cboxNext {
    right: -25px;
  }
  #cboxPrevious {
    left: -25px;
  }
}
.modal_movie_inner {
  max-width: 100%;
  padding-top: 56.245%;
  overflow: hidden;
}
.img .modal_movie_inner {
  padding-top: 0;
}
.modal_movie_inner::before {
  content: '';
  display: block;
  background: #0B318F;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  transition: width 500ms;
  z-index: 1000;
}
.show .modal_movie_inner::before {
  background: #0B318F;
  width: 100%;
}
.show2 .modal_movie_inner::before {
  left: auto;
  right: 0;
  width: 0;
}
.modal_movie_embed {
  opacity: 0;
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
}
.img .modal_movie_embed {
  position: relative;
}
.p_btn,
a.p_btn,
button.p_btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.btn-wrap {
  display: block;
  max-width: 435px;
  margin: 0 auto 20px;height: 100px;
}

a.btn-p {
  font-size: 1.8rem;

  display: block;
  overflow: hidden;

 padding: 1.5rem 0 1.5rem 0rem;

  border-bottom: 5px solid #e6d900;
  background: #fff100;
}



a.btn-p:hover {
  transform: translateY(3px);

  border-bottom: 2px solid #e6d900;
  background: #fff21a;
}
/*====================
note
 ====================*/
.card {
  background: white;
  padding: .4em;
  border-radius: 6px;
}
.card-image {
  background-color: rgb(236, 236, 236);
  width: 100%;
}
.card-image:hover {
  transform: scale(0.98);
}
.category {
  text-transform: uppercase;
  font-weight: 600;
  color: rgb(63, 121, 230);
  padding: 10px 7px 0;
}
.category:hover {
  cursor: pointer;
}
.heading {
  padding: 7px;
  letter-spacing: 0.2rem;
  font-size: 1.5rem;
}
.heading:hover {
  cursor: pointer;
}
.date {
  font-weight: 400;
  padding-top: 10px;
  font-size: 1.2rem;
}
.name {
  font-weight: 600;
}
.name:hover {
  cursor: pointer;
}
.note_block::after {
  top: auto;
  bottom: -59px;
  background-image: url(../img/bg_bottom.png);
}
.card_list {
  display: flex;
  justify-content: space-between;
  padding: 0;
  list-style: none;
  align-items: stretch;
  width: 100%;
  flex-wrap: wrap;
  margin-top: 30px;
}
.card_list li {
  width: calc((100% - 80px) / 3);
  text-align: left;
  background-color: #fff;
  /* position: relative; */
  /* height: 310px; */
  margin-bottom: 30px;
}
.card_list li img {
  width: 100%;
  border-radius: 6px 6px 0 0;
}
.note_block .text {
  font-size: 1rem;
  margin: 20px 50px;
  line-height: 2rem;
  text-align: left;
  letter-spacing: 0.1rem;
}
.card__text_01 img {
  width: 8%;
  position: absolute;
  right: 0;
  top: 0;
}
.card__text_01 a {}
.note_inner {
  width: 1000px;
  margin: 0 auto;
}
.note_block {
  padding: 58px 0 100px;
  background: #F5F5F5;
  z-index: 10;
}
@media only screen and (max-width: 768px) {
  .note_block {
    padding: 58px 0 0px;
  }
  .note_inner {
    width: auto;
  }
  .card_list { /* リスト全体のスタイル */
    display: flex;
    max-width: 800px;
    margin: auto;
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .card_list li { /* 各リストのスタイル */
    width: 90%;
    padding: 8px;
    margin: 3px;
    flex-shrink: 0;
    list-style: none;
  }
  .card_list img { /* 画像のスタイル */
    width: 100%;
    max-height: 200px;
    object-fit: cover;
  }
  .card_list::-webkit-scrollbar {
    height: 12px; /* スクロールバーの高さ */
  }
  .card_list::-webkit-scrollbar-thumb {
    background: #aaa; /* ツマミの色 */
    border-radius: 6px; /* ツマミ両端の丸み */
  }
  .card_list::-webkit-scrollbar-track {
    background: #ddd; /* トラックの色 */
    border-radius: 6px; /* トラック両端の丸み */
  }
}
/*==================================================
スライダーのためのcss
===================================*/
#note .slider { /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 94%;
  margin: 0 auto;
}
#note .slider img {
  width: 100%; /*スライダー内の画像を横幅100%に*/
  height: auto;
}
/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
#note .slider .slick-slide {
  margin: 0 10px;
}
/*矢印の設定*/
/*戻る、次へ矢印の位置*/
#note .slick-prev, #note .slick-next {
  position: absolute; /*絶対配置にする*/
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #666; /*矢印の色*/
  border-right: 2px solid #666; /*矢印の色*/
  height: 15px;
  width: 15px;
  width: 75px;
  height: 75px;
  border: 0;
  border-radius: 50%;
  overflow: hidden;
  text-indent: -999px;
  background: #fff url(../img/btn_slide_arrow.svg) no-repeat center center / 25px auto;
  position: absolute;
  top: 50%;
  margin-top: -50px;
  right: 0;
  cursor: pointer;
  transition: opacity .3s;
  z-index: 1100;
}
#note .slick-prev { /*戻る矢印の位置と形状*/
  left: -1.5%;
  transform: scale(-1, 1);
}
#note .slick-next { /*次へ矢印の位置と形状*/
  right: -1.5%;
}
#note .slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
#note .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
#note .slick-list:focus {
  outline: none;
}
#note .slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
#note .slick-slider .slick-track, #note .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);
}
#note .slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
#note .slick-track:before, #note .slick-track:after {
  display: table;
  content: '';
}
#note .slick-track:after {
  clear: both;
}
#note .slick-loading .slick-track {
  visibility: hidden;
}
#note .slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] #note .slick-slide {
  float: right;
}
#note .slick-slide img {
  display: block;
}
#note .slick-slide.slick-loading img {
  display: none;
}
#note .slick-slide.dragging img {
  pointer-events: none;
}
#note .slick-initialized .slick-slide {
  display: block;
}
#note .slick-loading .slick-slide {
  visibility: hidden;
}
#note .slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
#note .slick-arrow.slick-hidden {
  display: none;
}
@media only screen and (max-width: 768px) {
  #note .slick-prev, #note .slick-next {
    width: 5rem;
    height: 5rem;
    background: #fff url(../img/btn_slide_arrow.svg) no-repeat center center / 1.6rem auto;
    margin-top: -2.5rem;
  }
  #note .slick-prev {
    left: 0%;
  }
  #note .slick-next {
    right: 0%;
  }
  div#note {
    padding-bottom: 30px;
  }
}
/*====================
premium
 ====================*/
.premium_block {
  padding: 124px 20px 80px;
}
.premium_block_txt, .trial_block h2 {
  text-align: center;
  font-size: 4rem;
  color: #0B318F;
  line-height: 2;
  font-weight: inherit;
}
.premium_btn a {
  border-radius: 25px;
  border: 3px solid #0B318F;
  font-size: 1.8rem;
  font-weight: 500;
  background: #fff;
  padding: 5px 5px 5px 8px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  letter-spacing: .06em;
  transition: opacity .3s;
  background: #0B318F;
  color: #fff;
  letter-spacing: .05em;
}
.premium_btn a:hover {
  opacity: .6;
}
.premium_btn {
  width: 270px;
  text-align: center;
  margin: 0 auto;
  padding: 30px 0px 10px 0px;
}
.premium_txt {
  text-align: center;
}
.trial_inner, .conjugation_inner {
  width: 1000px;
  margin: 0 auto;
}
.trial_block_box {
  border-radius: 31px;
  margin-top: 30px;
  padding: 37px 38px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(180deg, #52ACFF 25%, #FFE32C 100%);
}
.trial_block_box_l h3 {
  font-size: 3rem;
  text-align: center;
  font-weight: inherit;
}
.trial_block_box_l h3 span {
  display: block;
  text-align: center;
  font-size: 3.5rem;
}
.trial_block_box_l h3 span.small {
  text-decoration: line-through;
  font-size: 3rem;
}
.trial_block_box_r ul {
  line-height: 3.5rem;
  font-size: 1.6rem;
}
.trial_block_box_r ul li {
  position: relative;
}
.trial_block_box_r ul li::after {
  content: '';
  display: block;
  position: absolute;
  top: .7em;
  left: -1.5em;
  width: 15px;
  height: 5px;
  border-left: 2px solid #0b318f;
  border-bottom: 2px solid #0b318f;
  transform: rotate(-45deg);
}
.trial_block_box_l {
  width: 70%;
}
.trial_block_box_r {
  width: 30%;
}
.conjugation_block {
    background-color: #f5f5f5;
    padding: 100px 0px;
}
.conjugation_block h3 {
  text-align: center;
  font-size: 4rem;
  color: #0B318F;
  line-height: 2;
  font-weight: inherit;
  margin-bottom: 30px;
}
.trial_block {
  margin-bottom: 100px;
}
.tab-menu .swiper-wrapper .swiper-slide {
  padding: 20px 0;
  text-align: center;
  color: #555555;
  
  cursor: pointer;
  font-size: 1.5rem;
  border-bottom: 3px solid #aaa;
}
.tab-menu .swiper-wrapper .swiper-slide:nth-child(1) {
  flex-basis: 170px;
}
.tab-menu .swiper-wrapper .swiper-slide:nth-child(2) {
  flex-basis: 170px;
}
.tab-menu .swiper-wrapper .swiper-slide:nth-child(3) {
  flex-basis: 120px;
}
.tab-menu .swiper-wrapper .swiper-slide:nth-child(4) {
  flex-basis: 210px;
}
.tab-menu .swiper-wrapper .swiper-slide:nth-child(5) {
  flex-basis: 210px;
}
.tab-menu .swiper-wrapper .swiper-slide:nth-child(6) {
  flex-basis: 120px;
}
.tab-menu .swiper-wrapper .swiper-slide-thumb-active {
  /* background-color: #cccccc; */
  border-bottom: 3px solid #00a0f0;
}
.tab-content .swiper-wrapper .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.tab-content .swiper-wrapper .swiper-slide h1 {
  width: 100%;
  margin: 20px 0;
  color: white;
  font-size: 1.5rem;
}
.tab-content .swiper-wrapper .swiper-slide .post {
  width: calc(94% / 3);
  margin: 0 0 28px 0;
  background-color: #ffffff;
}
.tab-content .swiper-wrapper .swiper-slide .post a {
  display: block;
  text-decoration: none;
}
.tab-content .swiper-wrapper .swiper-slide .post a img {
  width: 100%;
}
.tab-content .swiper-wrapper .swiper-slide .post a h2 {
  padding: 10px;
  color: #555555;
  font-size: 1.14rem;
  font-weight: bold;
}
.tab-content .swiper-wrapper .swiper-slide .post a p {
  padding: 0 10px 10px 10px;
  color: #555555;
}
.slide_inner {
  display: flex;
}
.tab-content .swiper-wrapper .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  
  border-radius: 20px;
  margin-right: 30px;
  background-color: #fff;
}
.swiper-container.tab-menu.swiper-initialized.swiper-horizontal.swiper-watch-progress.swiper-backface-hidden.swiper-thumbs {
  margin-bottom: 30px;
}
.trial_block {
 
  padding: 100px 0px;
  position: relative;
  
}

.txtbox h4 {
  font-size: 2.8rem;
  font-weight: inherit;
}
.txtbox {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0px 30px;
position: relative;
}
.mituilogo img{
width: 200px;	
}
.txtbox figure.mituilogo {
	position: absolute;
    bottom: 35px;
}
.txtbox p {
  font-size: 1.7rem;
  line-height: 3rem;
  margin-top: 20px;
}
.txtbox p span {
  display: inline-block;
  font-size: 12px;
}
.txtbox p span.txtbox_note {
    margin-top: 10px;
}
.imgbox {
  width: 50%;
}
.imgbox img {
    border-radius: 20px 0px 0px 20px;
    max-width: inherit;
    width: 500px;
    height: 500px;
}
.technology_function_box {
  padding: 10px 0px 100px 0px;
}
@media only screen and (max-width: 768px) {
  .premium_block {
    padding: 50px 5% 60px;
  }
	.trial_block {
    padding: 0px 0px;
}
  .premium_block_txt, .trial_block h2 {
    font-size: 2.5rem;
  }
  .trial_inner {
    width: auto;
  }
  .conjugation_inner {
    width: 90%;
  }
	.conjugation_block {
    padding: 50px 0px;
}
  .trial_block_box {
    flex-direction: column;
    margin: 30px;
  }
  .trial_block_box_l h3 span {
    font-size: 2rem;
  }
  .trial_block_box_l {
    width: 100%;
  }
  .trial_block_box_r {
    width: 100%;
    display: flex;
  }
  .trial_block_box_r ul {
    padding-top: 10px;
    font-size: 1.8rem;
    margin: 0 auto;
  }
  .conjugation_block h3 {
    font-size: 2.5rem;
  }
  .tab-menu .swiper-wrapper .swiper-slide:nth-child(1) {
    flex-basis: 48%;
    margin-right: 2%;
  }
  .tab-menu .swiper-wrapper .swiper-slide:nth-child(2) {
    flex-basis: 48%;
  }
  .tab-menu .swiper-wrapper .swiper-slide:nth-child(3) {
    flex-basis: 48%;
    margin-right: 2%;
  }
  .tab-menu .swiper-wrapper .swiper-slide:nth-child(4) {
    flex-basis: 48%;
  }
  .tab-menu .swiper-wrapper .swiper-slide:nth-child(5) {
    flex-basis: 48%;
    margin-right: 2%;
  }
  .tab-menu .swiper-wrapper .swiper-slide:nth-child(6) {
    flex-basis: 48%;
  }
  .tab-menu .swiper-wrapper {
    flex-wrap: wrap;
  }
  .slide_inner {
    flex-direction: column;
  }
  .imgbox {
    width: 100%;
  }
  .txtbox {
    width: 100%;
    padding: 10px;
  }
  .imgbox img {
    border-radius: 20px 20px 0px 0px;max-width: 100%;height: auto;
  }
  .tab-content .swiper-wrapper .swiper-slide {}
  .txtbox p {
    font-size: 1.2rem;
  }
  .txtbox h4 {
    font-size: 1.5rem;
  }
	.txtbox figure.mituilogo {
    bottom: 0px;
}
}