@charset "utf-8";

/* ----------------------------------------------------------------------
 load
---------------------------------------------------------------------- */
#load{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #ffffff 0%, #ebf4fc 55%, #d7ecf8 100%);
  opacity: 1;
}
#load .load-inner{
  width: 90%;
  max-width: 420px;
  text-align: center;
}
#load .load-brand{
  margin: 0 0 18px;
  color: #5d6268;
  font-size: clamp(11px, calc(13 / 1500 * 100vw), 13px);
  font-weight: 500;
  letter-spacing: 0.18em;
  opacity: 0;
  -webkit-animation: loadFadeUp 0.7s ease 0.1s forwards;
  animation: loadFadeUp 0.7s ease 0.1s forwards;
}
#load .load-title{
  margin: 0 0 16px;
  opacity: 0;
  -webkit-animation: loadFadeUp 0.7s ease 0.25s forwards;
  animation: loadFadeUp 0.7s ease 0.25s forwards;
}
#load .load-title img{
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0 auto;
}
#load .load-sub{
  margin: 0 0 36px;
  color: #242a31;
  font-size: clamp(14px, calc(16 / 1500 * 100vw), 16px);
  font-weight: 600;
  letter-spacing: 0.12em;
  opacity: 0;
  -webkit-animation: loadFadeUp 0.7s ease 0.4s forwards;
  animation: loadFadeUp 0.7s ease 0.4s forwards;
}
#load .load-bar{
  position: relative;
  width: 180px;
  height: 2px;
  margin: 0 auto;
  overflow: hidden;
  background: rgba(12, 138, 195, 0.18);
  border-radius: 2px;
  opacity: 0;
  -webkit-animation: loadFadeUp 0.7s ease 0.55s forwards;
  animation: loadFadeUp 0.7s ease 0.55s forwards;
}
#load .load-bar-fill{
  display: block;
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #0c8ac3 40%, #45bdcf 100%);
  border-radius: 2px;
  -webkit-animation: loadBarSlide 1.2s ease-in-out infinite;
  animation: loadBarSlide 1.2s ease-in-out infinite;
}
@-webkit-keyframes loadFadeUp{
  from{
    opacity: 0;
    -webkit-transform: translateY(14px);
    transform: translateY(14px);
  }
  to{
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes loadFadeUp{
  from{
    opacity: 0;
    -webkit-transform: translateY(14px);
    transform: translateY(14px);
  }
  to{
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes loadBarSlide{
  0%{
    left: -40%;
  }
  100%{
    left: 100%;
  }
}
@keyframes loadBarSlide{
  0%{
    left: -40%;
  }
  100%{
    left: 100%;
  }
}
body:not(.loaded){
  overflow: hidden;
}

/* ----------------------------------------------------------------------
 cmn
---------------------------------------------------------------------- */
.w{
  width:100%;
  max-width:1500px;
  margin:0 auto;
  padding:0 50px;
}
.flex{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.cap{
  font-size: clamp(12px, calc(14 / 1500 * 100vw), 14px);
  line-height: 2.0;
}
@media screen and (max-width: 860px){
  .w{
  padding:0 30px;
 }
}
 @media screen and (max-width: 680px){
  .w{
    padding:0 15px;
   }
   .cap{
     font-size: 12px;
     line-height: 1.8;
   }
 }


/* ----------------------------------------------------------------------
 header
---------------------------------------------------------------------- */
header{
  position: absolute;
  top: 35px;
  left: 0;
  z-index: 5;
  width: 100%;
  padding: 0 50px;
}
header .inner{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 25px 35px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
header .logo{
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 210px;
}
header .logo a{
  display: block;
}
header .logo img{
  display: block;
  width: 100%;
  height: auto;
}
header .nav{
  position: relative;
  z-index: 10;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
header .nav ul{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 48px;
}
header .nav ul li a{
  display: block;
  color: #242a31;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}
header .nav ul li a:hover{
  opacity: 0.65;
}
header .nav-toggle{
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
header .nav-toggle-bar{
  display: block;
  position: absolute;
  left: 50%;
  width: 24px;
  height: 2px;
  margin-left: -12px;
  background: #242a31;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
  -webkit-transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
  -moz-transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
  -ms-transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
  -o-transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}
header .nav-toggle-bar:nth-child(1){
  top: 14px;
}
header .nav-toggle-bar:nth-child(2){
  top: 21px;
}
header .nav-toggle-bar:nth-child(3){
  top: 28px;
}
header.is-open .nav-toggle-bar:nth-child(1){
  top: 21px;
  transform: rotate(45deg);
}
header.is-open .nav-toggle-bar:nth-child(2){
  opacity: 0;
}
header.is-open .nav-toggle-bar:nth-child(3){
  top: 21px;
  transform: rotate(-45deg);
}

@media screen and (max-width: 1300px){
  header .nav ul{
    gap: 32px;
  }
  header .nav ul li a{
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1100px){
  header{
    padding: 0 30px;
  }
  header .inner{
    padding: 20px 28px;
  }
  header .logo{
    width: 180px;
  }
  header .nav ul{
    gap: 24px;
  }
}

@media screen and (max-width: 860px){
  header{
    top: 20px;
    padding: 0 30px;
  }
  header .inner{
    position: relative;
    padding: 16px 20px;
  }
  header .logo{
    width: 150px;
  }
  header .nav-toggle{
    display: block;
  }
  header .nav{
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 10;
  }
  header.is-open .nav{
    display: block;
  }
  header .nav ul{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }
  header .nav ul li a{
    padding: 14px 24px;
    font-size: 1.5rem;
    white-space: normal;
    border-top: 1px solid rgba(36, 42, 49, 0.08);
  }
  header .nav ul li:first-child a{
    border-top: 0;
  }
}
@media screen and (max-width: 760px){
  header{
    position: static;
    top: 0;
    width: 100%;
    padding: 0;
    z-index: auto;
  }
  header.is-open{
    position: relative;
    z-index: 10;
  }
  header .inner{
    border-radius: 0;
    padding: 16px 20px;
  }
}
@media screen and (max-width: 680px){

}
/* ----------------------------------------------------------------------
 kv
---------------------------------------------------------------------- */
#kv{
  position: relative;
  z-index: 1;
  width: 100%;
  background: #fff;
  overflow: hidden;
}
#kv .bgp{
  display: grid;
  gap: 10px;
  margin-left: 50%;
  transform: translateX(-50%);
  transform-origin: top center;
}
#kv .bgp li{
  overflow: hidden;
  position: relative;
  min-height: 0;
}
#kv .bgp .bgp-ph{
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
#kv .bgp .bgp-ph img{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 1;
  transition: opacity 1s ease;
  pointer-events: none;
}
#kv .bgp .bgp-ph img.is-hide{
  opacity: 0;
  z-index: 0;
}

#kv .cover{
  position: absolute;
  top:0;
  left:0;
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width:100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  padding: 0 50px;
  z-index:6;
}
#kv .cover .box{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width:100%;
  max-width:700px;
  min-height: 500px;
  margin:0 auto;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding:50px 60px;
}
#kv .cover .box .i1{
  font-size: 20px;
  letter-spacing: 0.1rem;
  margin-bottom: 30px;
}
#kv .cover .box .i2 img{
  display:block;
  width:100%;
  max-width:800px;
  margin:0 auto 40px;
}
#kv .cover .box h1{
  font-size: 28px;
  letter-spacing: 0.3rem;
}
@media screen and (max-height:800px){
  #kv .cover .box{
    max-width:580px;
    min-height: 300px;
  }
}
@media screen and (max-width: 1080px){
  #kv .cover .box{
    max-width:600px;
    min-height: 400px;
    padding:50px 60px;
  }
}
@media screen and (max-width: 980px){
  #kv .cover .box{
    max-width:500px;
    min-height: 300px;
    padding:50px 60px;
  }
  #kv .cover .box .i1{
    font-size: 18px;
    margin-bottom: 20px;
  }
  #kv .cover .box .i2 img{
    margin:0 auto 30px;
  }
  #kv .cover .box h1{
    font-size: 24px;
    letter-spacing: 0.3rem;
  }
}
@media screen and (max-width: 480px){
  #kv .cover .box{
    max-width:500px;
    min-height: 250px;
    padding:0px 30px;
  }
  #kv .cover .box .i1{
    font-size: 14px;
    margin-bottom: 15px;
    letter-spacing: 0rem;
  }
  #kv .cover .box .i2 img{
    margin:0 auto 20px;
  }
  #kv .cover .box h1{
    font-size: 18px;
    letter-spacing: 0.1rem;
  }
}
@media screen and (max-width: 320px){
  #kv .cover{
    padding: 0 20px;
  }
  #kv .cover .box{
    min-height: 180px;
    padding:0px 25px;
  }
}
/* ----------------------------------------------------------------------
 s1
---------------------------------------------------------------------- */
#s1{
  width:100%;
  padding: 120px 0;
}
#s1 dl{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width:100%;
	flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#s1 dl dt{
  width:420px;
  border-left: 1px solid #0c8ac3;
  font-size: clamp(20px, calc(22 / 1500 * 100vw), 22px);
  padding-left: 30px;
  line-height: 2.2;
  letter-spacing: 0.1rem;
}
#s1 dl dd{
  width:calc(100% - 420px);
  padding-left: 50px;
  line-height: 2.2;
  font-size: clamp(16px, calc(18 / 1500 * 100vw), 18px);
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 1080px){
  #s1 dl dt{
    width:100%;
    font-size: 20px;
    padding-left: 30px;
    line-height: 2.2;
    margin-bottom: 30px;
  }
  #s1 dl dd{
    width:100%;
    padding-left: 0px;
    line-height: 2.2;
    font-size: 16px;
  }
}
@media screen and (max-width: 860px){
  #s1{
    padding: 90px 0 100px;
  }
}
@media screen and (max-width: 680px){
  #s1{
    padding: 60px 0 80px;
  }
}
@media screen and (max-width: 480px){
  #s1 dl dt{
    font-size: 18px;
    padding-left: 30px;
    line-height: 2.0;
    margin-bottom: 30px;
  }
  #s1 dl dd{
    line-height: 2.0;
    font-size: 16px;
  }
}
@media screen and (max-width: 320px){
  #s1 dl dt{
    font-size: 16px;
    padding-left: 20px;
    line-height: 2.0;
    margin-bottom: 30px;
  }
  #s1 dl dd{
    line-height: 1.8;
    font-size: 14px;
  }
}
/* ----------------------------------------------------------------------
 nav
---------------------------------------------------------------------- */
#nav{
  width:100%;
  padding: 0;
  background: linear-gradient(to bottom, #fff 50%, #ebf4fc 50%);
  padding-bottom: 30px;
}
#nav ul{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
#nav ul li a{
  display: block;
  position: relative;
  padding: 52px 16px 48px;
  border: 1px solid #0c8ac3;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #242a31;
  font-size: clamp(16px, calc(18 / 1500 * 100vw), 18px);
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  overflow: hidden;
  letter-spacing: 0.02em;
  transition: color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
#nav ul li a::before{
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 30px;
  height: 30px;
  background: #0c8ac3;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  transform-origin: 100% 100%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
#nav ul li a:hover{
  color: #fff;
  border-color: #0c8ac3;
  box-shadow: 0 6px 14px rgba(12, 138, 195, 0.25);
}
#nav ul li a:hover::before{
  transform: scale(30);
}
#nav ul li a .txt{
  position: relative;
  z-index: 1;
  display: block;
}
#nav ul li a .en{
  font-size: clamp(32px, calc(40 / 1500 * 100vw), 40px);
  font-weight: 700;
  font-style: italic;
  color: #0c8ac3;
  line-height: 1;
  letter-spacing: 0.02em;
  transition: color 0.4s ease;
}
#nav ul li a:hover .en{
  color: #fff;
}

@media screen and (max-width: 860px){
  #nav ul{
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media screen and (max-width: 480px){
  #nav{
    background: linear-gradient(to bottom, #fff 40%, #ebf4fc 60%);
  }
  #nav ul li a{
    padding: 32px 6px 28px;
    font-size: clamp(14px, calc(16 / 480 * 100vw), 16px);
    letter-spacing: 0em;
  }
  #nav ul li a::before{
    width: 20px;
    height: 20px;
  }
  #nav ul li a .en{
    font-size: clamp(30px, calc(36 / 480 * 100vw), 36px);
  }
}
@media screen and (max-width: 320px){
  #nav ul li a{
    padding: 26px 6px 22px;
    font-size: 12px;
  }
  #nav ul li a .en{
    font-size: 26px;
  }
}

/* ----------------------------------------------------------------------
 hadding
---------------------------------------------------------------------- */
.hadding{
  text-align: center;
  margin-bottom: 80px;
}
.hadding-deco{
  display: block;
  position: relative;
  width: 100%;
  height: 9px;
}
.hadding-deco::before{
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 32px;
  height: 9px;
  margin-left: -16px;
  background: #0c8ac3;
  transform: skewX(-18deg);
}
.hadding-deco::after{
  content: '';
  position: absolute;
  top: 50%;
  height: 1px;
  margin-top: -0.5px;
  background: #45bdcf;
}

.hadding-deco--top::after{
  left: 0;
  width: calc(50% - 24px);
}

.hadding-deco--bottom::after{
  right: 0;
  width: calc(50% - 24px);
}
.hadding-body{
  display: block;
  padding: 32px 0;
  color: #242a31;
  font-size: clamp(26px, calc(32 / 1500 * 100vw), 32px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1rem;
}
.hadding-body .en{
  font-size: clamp(48px, calc(54 / 1500 * 100vw), 54px);
  font-weight: 700;
  font-style: italic;
  color: #0c8ac3;
  letter-spacing: 0rem;
}
@media screen and (max-width: 760px){
  .hadding{
    margin-bottom: 60px;
  }
  .hadding-body{
    padding: 26px 0;
    font-size: clamp(22px, calc(26 / 760 * 100vw), 26px);
  }
  .hadding-body .en{
    font-size: clamp(42px, calc(48 / 760 * 100vw), 48px);
  }
}
@media screen and (max-width: 480px){
  .hadding-body{
    padding: 26px 0;
    font-size: clamp(20px, calc(22 / 480 * 100vw), 22px);
  }
  .hadding-body .en{
    font-size: clamp(40px, calc(42 / 480 * 100vw), 42px);
  }
}
/* ----------------------------------------------------------------------
 s2
---------------------------------------------------------------------- */
#s2{
  width:100%;
  padding: 120px 0;
  background: #ebf4fc;
  letter-spacing: 0.1rem;
}
#s2 .p1{
  text-align: center;
  font-size: 18px;
  line-height: 2.0;
  margin-bottom: 80px;
}
#s2 .i1{
  width:100%;
  max-width:1280px;
  margin:0 auto 80px;
}
#s2 .i1 img{
  display:block;
  width:100%;
  height:auto;
}

#s2 .tbl-wrap{
  width:100%;
  max-width:1280px;
  margin:0 auto 100px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
#s2 .tbl-wrap2{
  width:100%;
  margin:0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
#s2 table,
#s2 .cmp,
#s2 .cmp2{
  width:100%;
  max-width:1280px;
  border-collapse: collapse;
  background: #fff;
  table-layout: fixed;
}
#s2 .tbl-wrap .cmp,
#s2 .tbl-wrap2 .cmp2{
  margin: 0;
  min-width: 640px;
}
#s2 .cmp thead th{
  padding: 25px 16px;
  background: #2f3640;
  color: #fff;
  font-size: clamp(20px, calc(22 / 1500 * 100vw), 22px);
  font-weight: 700;
  text-align: center;
  border: 1px solid #2f3640;
  letter-spacing: 0.08rem;
  border-right: 1px solid #fff;
}
#s2 .cmp thead th:last-of-type{
  border-right: 1px solid #2f3640;
}
#s2 .cmp thead th.cmp-label{
  width: 28%;
}
#s2 .cmp tbody th,
#s2 .cmp tbody td{
  padding: 28px 24px;
  background: #fff;
  border: 1px solid #2f3640;
  vertical-align: middle;
  font-size: clamp(18px, calc(20 / 1500 * 100vw), 20px);
  font-weight: 500;
  line-height: 1.6;
  color: #242a31;
}
#s2 .cmp tbody th{
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}
#s2 .cmp tbody td{
  text-align: left;
  font-size: clamp(16px, calc(18 / 1500 * 100vw), 18px);
}
#s2 .cmp tbody td .cmp-txt,
#s2 .cmp tbody td .cmp-ico{
  display: inline-block;
  vertical-align: middle;
}
#s2 .cmp tbody td .cmp-txt{
  width: calc(100% - 80px);
  padding-right: 16px;
}
#s2 .cmp tbody td .cmp-ico{
  width: 64px;
  text-align: center;
}
#s2 .cmp tbody td .cmp-ico img{
  display: inline-block;
  width: 56px;
  height: auto;
  vertical-align: middle;
}
#s2 .cbox{
  width:100%;
  background: #fff;
  border-radius: 12px;
  padding:100px;
  margin-bottom: 60px;
}
#s2 .df{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width:100%;
	flex-wrap: wrap;
  margin-bottom: 60px;
}
#s2 .df dt{
  width:calc(100% - 440px);
  padding-right: 50px;
}
#s2 .df dd{
  width:440px;
}
#s2 .df dt .df1{
  font-size: clamp(16px, calc(18 / 1500 * 100vw), 18px);
  line-height: 2.0;
  margin-bottom: 30px;
}
#s2 .df dt .cs{
  padding:30px;
  background: #089ed2;
  border-radius: 6px;
  color:#fff;
  line-height: 2.0;
  font-size: clamp(18px, calc(20 / 1500 * 100vw), 20px);
}
#s2 .df dt .cs span{
  font-size: clamp(24px, calc(28 / 1500 * 100vw), 28px);
  color:#ffe00c;
}
#s2 .cmp2 thead th{
  padding: 25px 16px;
  background: #f7f6f6;
  font-size: clamp(18px, calc(20 / 1500 * 100vw), 20px);
  font-weight: 700;
  text-align: center;
  border: 1px solid #2f3640;
  letter-spacing: 0.08rem;
}
#s2 .cmp2 thead th:not(.cmp-label){
  display: table-cell;
  vertical-align: middle;
}
#s2 .cmp2 thead th .cmp-ico,
#s2 .cmp2 thead th .cmp-txt{
  display: inline-block;
  vertical-align: middle;
}
#s2 .cmp2 thead th .cmp-ico{
  margin-right: 12px;
}
#s2 .cmp2 thead th .cmp-ico img{
  display: block;
  width: auto;
  height: 47px;
}
#s2 .cmp2 thead th .cmp-txt{
  width: auto;
  padding: 0;
}
#s2 .cmp2 tbody th,
#s2 .cmp2 tbody td{
  padding: 22px 16px;
  background: #fff;
  border: 1px solid #2f3640;
  vertical-align: middle;
  font-size: clamp(16px, calc(18 / 1500 * 100vw), 18px);
  font-weight: 500;
  line-height: 1.6;
  color: #242a31;
  text-align: center;
}
#s2 .cmp2 tbody th{
  font-weight: 600;
  white-space: nowrap;
}
#s2 .cmp2 tbody th span,
#s2 .cmp2 tbody td .c2{
  display:block;
  font-weight: 300;
  font-size:14px;
}
#s2 .cmp2 tbody td .c1{
  font-size: clamp(16px, calc(18 / 1500 * 100vw), 18px);
  font-weight: 600;
}
#s2 .cmp2 tbody td .c3{
  font-size: clamp(14px, calc(16 / 1500 * 100vw), 16px);
  font-weight: 400;
}
@media screen and (max-width: 1180px){
  #s2 .df dt{
    width:100%;
    padding-right: 0px;
    margin-bottom: 40px;
  }
  #s2 .df dd{
    width:100%;
  }
  #s2 .df dd img{
    display:block;
    width:100%;
    max-width:440px;
    margin:0 auto;
  }
}
@media screen and (max-width: 1080px){
  #s2 .cbox{
    padding:50px;
    margin-bottom: 60px;
  }
  #s2 .cmp2 thead th.cmp-label{
    width: 24%;
  }
}
@media screen and (max-width: 860px){
  #s2 .cmp2 thead th .cmp-ico{
    margin-right: 10px;
  }
  #s2 .cmp2 thead th{
    padding: 20px 8px;
    font-size: clamp(16px, calc(18 / 860 * 100vw), 18px);
  }
  #s2 .cmp2 thead th .cmp-ico img{
    height: 36px;
  }
  #s2 .cmp2 tbody th,
  #s2 .cmp2 tbody td{
    padding: 17px 8px;
    font-size: clamp(14px, calc(16 / 860 * 100vw), 16px);
  }
  #s2 .cmp2 tbody th span,
  #s2 .cmp2 tbody td .c2{
    font-size:12px;
  }
  #s2 .cmp2 tbody td .c1{
    font-size: clamp(14px, calc(16 / 860 * 100vw), 16px);
  }
  #s2 .cmp2 tbody td .c3{
    font-size: clamp(12px, calc(14 / 860 * 100vw), 14px);
  }
}
@media screen and (max-width: 760px){
  #s2{
    padding: 80px 0;
  }
  #s2 .p1{
    text-align: left;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 60px;
  }
  #s2 .p1 br{
    display:none;
  }
  #s2 .i1{
    width:100%;
    max-width:none;
    margin:0 auto 60px;
  }
  #s2 .i1 img{
    width:100%;
  }
  #s2 .tbl-wrap{
    margin-bottom: 60px;
  }
  #s2 .cmp thead th{
    padding: 14px 10px;
    font-size: clamp(18px, calc(20 / 760 * 100vw), 20px);
  }
  #s2 .cmp tbody th,
  #s2 .cmp tbody td{
    padding: 18px 12px;
    font-size: clamp(16px, calc(18 / 760 * 100vw), 18px);
  }
  #s2 .cmp tbody td{
    font-size: clamp(14px, calc(16 / 760 * 100vw), 16px);
  }
  #s2 .cmp tbody td .cmp-txt{
    width: calc(100% - 60px);
    padding-right: 10px;
  }
  #s2 .cmp tbody td .cmp-ico{
    width: 50px;
  }
  #s2 .cmp tbody td .cmp-ico img{
    width: 44px;
  }
}

@media screen and (max-width: 680px){
  #s2 .df dt .df1{
    font-size: clamp(14px, calc(16 / 680 * 100vw), 16px);
    line-height: 1.8;
    margin-bottom: 20px;
  }
  #s2 .df dt .cs{
    padding:15px;
    line-height: 1.8;
    font-size: clamp(16px, calc(18 / 680 * 100vw), 18px);
  }
  #s2 .df dt .cs span{
    font-size: clamp(20px, calc(24 / 680 * 100vw), 24px);
  }
  #s2 .cbox{
    padding:25px;
    margin-bottom: 40px;
  }
  #s2 .cmp2 thead th.cmp-label{
    width: 20%;
  }
  #s2 .cmp2 thead th .cmp-ico img{
    height: 30px;
  }
  #s2 .cmp2 tbody th,
  #s2 .cmp2 tbody td{
    padding: 12px 8px;
  }
}
@media screen and (max-width: 480px){

}

/* ----------------------------------------------------------------------
 s3
---------------------------------------------------------------------- */
#s3{
  width:100%;
  padding: 120px 0;
  letter-spacing: 0.1rem;
}
#s3 .p1{
  text-align: center;
  font-size: 18px;
  line-height: 2.0;
  margin-bottom: 80px;
}

#tab{
  width:100%;
  margin-bottom: 50px;
}
#tab ul{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
#tab ul li{
  cursor: pointer;
  text-align: center;
  padding:0 10px 35px;
  font-size: clamp(16px, calc(18 / 1500 * 100vw), 18px);
  line-height: 1.4;
  border-bottom: 1px solid #c5cbd3;
  transition: 0.3s ease-in-out;
  color: #5d6268;
}
#tab ul li span{
  display:block;
  font-size: clamp(30px, calc(36 / 1500 * 100vw), 36px);
  font-weight: 700;
  font-style: italic;
  color: #7c7e80;
  letter-spacing: 0rem;
  margin-bottom: 5px;
  transition: 0.3s ease-in-out;
}
#tab ul li.active span{
  color: #0c8ac3;
}
#tab ul li.active{
  font-weight: 700;
  border-bottom: 1px solid #0b93c2;
  color: #242a31;
}
#tab ul li:hover{
  border-bottom: 1px solid #242a31;
}
#tab ul li.active:hover{
  border-bottom: 1px solid #0b93c2;
}
.tabwrap{
  position: relative;
  width: 100%;
}
.tabcontent{
  display: none;
  opacity: 0;
  transform: translateY(24px);
  padding: 50px 0 0px;
}
.tabcontent.active{
  display: block;
  animation: tabFadeUp 0.55s ease forwards;
}
@keyframes tabFadeUp{
  from{
    opacity: 0;
    transform: translateY(24px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

#s3 h3{
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 50px;
}
#s3 h3 span{
  display:block;
  font-weight: 800;
  font-style: italic;
  font-size: 46px;
  line-height: 1.4;
}
#s3 .desc{
  font-size: 18px;
  margin-bottom: 50px;
}
#s3 .carlink{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 80px;
}
#s3 .carlink li a{
  position: relative;
  display:block;
  border: 1px solid #d1d2d2;
  transition: 0.3s ease-in-out;
  margin: -1px 0 0 -1px;
}
#s3 .carlink li a:hover{
  border: 1px solid #0b93c2;
  z-index: 5;
}
#s3 .carlink li img{
  display:block;
  width:100%;
  max-width:680px;
  margin:0 auto;
}
#s3 .carlink li p{
  display:block;
  text-align: center;
  font-size: clamp(16px, calc(18 / 1500 * 100vw), 18px);
  font-weight: 600;
  padding:15px 5px 30px;
  color: #242a31;
}

#s3 .tbl-wrap{
  width:100%;
  margin:0 auto 60px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
#s3 .cmp{
  width:100%;
  border-collapse: collapse;
  background: #fff;
  table-layout: fixed;
}
#s3 .tbl-wrap .cmp{
  margin: 0;
  min-width: 640px;
}
#s3 .cmp thead th{
  padding: 20px 10px;
  background: #f0f0f0;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  border: 1px solid #2f3640;
  letter-spacing: 0.08rem;
}
#s3 .cmp thead th.bg{
  padding: 7px 10px;
  background: #2f3640;
  color: #fff;
  border-right: 1px solid #fff;
}
#s3 .cmp thead th.cmp-label{
  width: 22%;
}
#s3 .cmp tbody th,
#s3 .cmp tbody td{
  padding: 15px 10px;
  background: #fff;
  border: 1px solid #2f3640;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #242a31;
  text-align: center;
}
#s3 .cmp tbody th span.sp1{
  display:block;
  font-size: 12px;
  font-weight: 300;
}
#s3 .cmp tbody th span.sp2{
  display:block;
  font-size: 14px;
}
#s3 .cmp tbody td{
  font-weight: 400;
}
@media screen and (max-width: 760px){
  #s3{
    padding: 80px 0;
  }
  #s3 .p1{
    text-align: left;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 60px;
  }
  #s3 .carlink{
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 50px;
  }
  #s3 .carlink li p{
    font-size: 14px;
    padding:15px 5px 20px;
  }
  #s3 .tbl-wrap{
    margin:0 auto 40px;
  }
}
@media screen and (max-width: 680px){
  #tab{
    margin-bottom: 20px;
  }
  #tab ul li{
    padding:0 5px 25px;
    font-size: 12px;
  }
  #tab ul li span{
    font-size: 22px;
  }
  .tabcontent{
    padding: 20px 0 40px;
  }
  #s3 h3{
    font-size: 20px;
    margin-bottom: 30px;
  }
  #s3 h3 span{
    font-size: 36px;
  }
  #s3 .desc{
    font-size: 14px;
    margin-bottom: 30px;
  }
  #s3 .cmp thead th{
    font-size: 16px;
  }
  #s3 .cmp thead th.cmp-label{
    width: 22%;
  }
  #s3 .cmp tbody th,
  #s3 .cmp tbody td{
    font-size: 14px;
  }
  #s3 .cmp tbody th span.sp1{
    font-size: 10px;
  }
  #s3 .cmp tbody th span.sp2{
    font-size: 12px;
  }
}

/* ----------------------------------------------------------------------
 s4
---------------------------------------------------------------------- */
#s4{
  width:100%;
  padding: 120px 0;
  background: #ebf4fc;
  letter-spacing: 0.1rem;
}
#s4 .p1{
  text-align: center;
  font-size: 18px;
  line-height: 2.0;
  margin-bottom: 80px;
}
#s4 .cbox{
  width:100%;
  background: #fff;
  border-radius: 12px;
  padding:100px;
  margin-bottom: 80px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
#s4 .dl{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 80px;
}
#s4 .dl dt{
  width: 52%;
  text-align: center;
}
#s4 .dl dt > img{
  display: block;
  width: 100%;
  max-width: 235px;
  height: auto;
  margin: 0 auto 28px;
}
#s4 .dl dt h3{
  margin: 0 0 28px;
  color: #242a31;
  font-size: clamp(20px, calc(24 / 1500 * 100vw), 24px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08rem;
}
#s4 .dl dt p{
  margin: 0 auto;
  color: #242a31;
  font-size: clamp(14px, calc(16 / 1500 * 100vw), 16px);
  font-weight: 400;
  line-height: 2.0;
  text-align: left;
}
#s4 .dl dd{
  width: 38%;
}
#s4 .dl dd img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}
#s4 .dk{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
#s4 .dk li {
  position: relative;
  display:block;
  border: 1px solid #d1d2d2;
  padding:50px 15px;
  margin: -1px 0 0 -1px;
  text-align: center;
  font-weight: 600;
  line-height: 1.4;
}
#s4 .dk li img{
  display:block;
  width:100%;
  max-width:184px;
  margin:0 auto;
}
#s4 .dk li p.e1{
  font-size: 16px;
  margin-bottom: 10px;
}
#s4 .dk li p.e2{
  font-size: 16px;
}
#s4 .dk li p.e2 span{
  font-size: 28px;
}

#s4 .dbox{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width:100%;
  height:370px;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  margin-bottom: 80px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
#s4 .dbox dt{
  width:calc(100% - 481px);
  padding:0px 100px;
}
#s4 .dbox dd{
  width:481px;
  height:370px;
  overflow: hidden;
  border-radius: 0 18px 18px 0
}

#s4 .dbox dt h4{
  font-size: 26px;
  margin-bottom: 30px;
}
#s4 .dbox dt .d1{
  margin-bottom: 30px;
}
#s4 .dbox dt .d2{
  font-size: 14px;
  border-radius: 5px;
  background: #ebf4fc;
  padding:10px;
}
@media screen and (max-width: 1100px){
  #s4 .cbox{
    padding: 60px 40px;
  }
  #s4 .dl{
    gap: 36px;
  }
  #s4 .dk li {
    padding:30px 15px;
  }
  #s4 .dbox{
    height:269px;
  }
  #s4 .dbox dt{
    width:calc(100% - 350px);
    padding:0px 50px;
  }
  #s4 .dbox dd{
    width:350px;
    height:269px;
    overflow: hidden;
    border-radius: 0 18px 18px 0
  }
  #s4 .dbox dt h4{
    font-size: 22px;
    margin-bottom: 15px;
  }
  #s4 .dbox dt .d1{
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 960px){
  #s4 .dbox{
    height:auto;
    flex-wrap: wrap;
  }
  #s4 .dbox dt{
    order: 2;
    width:100%;
    padding:0px 50px 50px;
  }
  #s4 .dbox dd{
    order: 1;
    width:100%;
    height:auto;
    overflow: hidden;
    border-radius: 18px 18px 0px 0;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 760px){
  #s4{
    padding: 80px 0;
  }
  #s4 .p1{
    text-align: left;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 60px;
  }
  #s4 .p1 br{
    display:none;
  }
  #s4 .cbox{
    padding: 40px 20px;
    margin-bottom: 40px;
  }
  #s4 .dl{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 28px;
  }
  #s4 .dl dt,
  #s4 .dl dd{
    width: 100%;
  }
  #s4 .dl dt > img{
    max-width: 220px;
    margin-bottom: 20px;
  }
  #s4 .dl dt h3{
    margin-bottom: 20px;
  }
  #s4 .dl dt p{
    max-width: none;
  }
  #s4 .dl dt p br{
    display: none;
  }
  #s4 .dk{
    grid-template-columns: repeat(2, 1fr);
  }
  #s4 .dbox{
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 480px){
  #s4 .dk li {
    padding:20px 15px;
  }
  #s4 .dk li img{
    max-width:84px;
  }
  #s4 .dk li p.e1{
    font-size: 14px;
    margin-bottom: 7px;
  }
  #s4 .dk li p.e2{
    font-size: 14px;
  }
  #s4 .dk li p.e2 span{
    font-size: 22px;
  }
  #s4 .dbox dt{
    padding:0px 15px 30px;
  }
  #s4 .dbox dt h4{
    font-size: 22px;
    margin-bottom: 15px;
  }
  #s4 .dbox dt .d2{
    font-size: 12px;
  }
}
/* ----------------------------------------------------------------------
 s5
---------------------------------------------------------------------- */
#s5{
  width:100%;
  padding: 120px 0;
  letter-spacing: 0.1rem;
}
#s5 .p1{
  text-align: center;
  font-size: 18px;
  line-height: 2.0;
  margin-bottom: 80px;
}

#s5 .cbox{
  background: #f5f5f5;
  padding:50px;
  margin-bottom: 80px;
}
#s5 .cbox ul{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 1px;
}
#s5 .cbox ul li{
  background: #fff;
  padding:60px 50px;
}
#s5 .cbox ul li img{
  display:block;
  width:100%;
  max-width:230px;
  margin:0 auto 20px;
}

#s5 .k{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width:100%;
	flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 80px;
}
#s5 .k dt{
  width:48%;
  padding-right: 15px;
}
#s5 .k dd{
  width:48%;
  padding-left: 15px;
}
#s5 .k dt h3{
  border-left: 1px solid #0c8ac3;
  font-size: clamp(24px, calc(28 / 1500 * 100vw), 28px);
  padding-left: 30px;
  line-height: 2.0;
  letter-spacing: 0.1rem;
  margin-bottom: 40px;
}
#s5 .k dt p{
  line-height: 2.2;
  font-size: clamp(14px, calc(16 / 1500 * 100vw), 16px);
  letter-spacing: 0.1rem;
}
#s5 .k dd .lo{
  background: #f5f5f5;
  padding:8px;
  margin-bottom: 15px;
}
#s5 .k dd .lo li{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width:100%;
  justify-content: space-between;
  background: #fff;
  align-items: center;
  padding: 15px 40px;
  margin-bottom: 3px;
  line-height: 1.4;
}
#s5 .k dd .lo li:last-of-type{
  margin-bottom: 0px;
}
#s5 .k dd .lo .c{
  font-size: clamp(28px, calc(32 / 1500 * 100vw), 32px);
  font-weight: 800;
  font-style: italic;
}
#s5 .k dd .lo .p{
  font-size: clamp(16px, calc(18 / 1500 * 100vw), 18px);
}
#s5 .k dd .lo .p span{
  color:#cf8800;
  margin: 0 5px;
  font-size: clamp(42px, calc(46 / 1500 * 100vw), 46px);
  font-weight: 700;
}
#s5 .k dd .cap{
  text-align: right;
}

#s5 .cbox .inner{
  background: #fff;
  padding:60px 50px;
}
#s5 .cbox .inner h4{
  font-size: clamp(26px, calc(30 / 1500 * 100vw), 30px);
  margin-bottom: 20px;
}
#s5 .cbox .inner article{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width:100%;
	flex-wrap: wrap;
  justify-content: space-between;
}
#s5 .inner article .i{
  width:42%;
}
#s5 .inner article .i p{
  font-size: clamp(18px, calc(20 / 1500 * 100vw), 20px);
  margin-bottom: 50px;
}
#s5 .inner article .t{
  width:53%;
}
#s5 .inner article .t dl{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width:100%;
  padding:15px 0;
  align-items: center;
  border-bottom: 1px solid #242a31;
}
#s5 .inner article .t dl dt{
  width:200px;
  font-weight: bold;
  font-size: clamp(16px, calc(18 / 1500 * 100vw), 18px);
}
#s5 .inner article .t dl dd{
  width:calc(100% - 200px);
  font-size: clamp(16px, calc(18 / 1500 * 100vw), 18px);
}
#s5 .inner article .t dl dt span{
  font-weight: normal;
  font-size: clamp(12px, calc(14 / 1500 * 100vw), 14px);
  display:block;
}
#s5 .inner article .t dl dd span.en{
  font-weight: bold;
  font-size: clamp(24px, calc(28 / 1500 * 100vw), 28px);
  padding:0 3px;
}
#s5 .inner article .t dl dd span.j{
  font-size: clamp(12px, calc(14 / 1500 * 100vw), 14px);
  display:block;
  color:#636568;
  line-height: 1.4;
}
#s5 .inner article .t dl.h dt{
  font-size: clamp(20px, calc(24 / 1500 * 100vw), 24px);
}
#s5 .inner article .t dl.h dd span.en{
  font-weight: bold;
  font-size: clamp(32px, calc(36 / 1500 * 100vw), 36px);
  padding:0 3px;
}

#s5 .lbtn{
  display:block;
  width:100%;
  max-width:680px;
  margin: 0 auto;
}
#s5 .lbtn a{
  padding: 5px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  border-radius: 5px;
  display: block;
  background-image: linear-gradient(to right, #0f6bc5 0%, #23ceb0 51%, #0f6bc5 100%);
}
#s5 .lbtn a span{
  display:block;
  background: #fff;
  padding:30px 15px;
  border-radius: 3px;
  color:#000;
  font-weight: bold;
  font-size: clamp(18px, calc(20 / 1500 * 100vw), 20px);
}
#s5 .lbtn a:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 1080px){
  #s5 .inner article .i{
    width:100%;
  }
  #s5 .inner article .i p{
    font-size: clamp(18px, calc(20 / 1500 * 100vw), 20px);
    margin-bottom: 20px;
  }
  #s5 .inner article .i img{
    display:block;
    width:100%;
    max-width:480px;
    margin:0 auto 30px;
  }
  #s5 .inner article .t{
    width:100%;
  }
}
@media screen and (max-width: 860px){
  #s5 .cbox ul li{
    padding:40px 25px;
  }
  #s5 .k dt{
    width:100%;
    padding-right: 0px;
    margin-bottom: 40px;
  }
  #s5 .k dd{
    width:100%;
    padding-left: 0px;
  }
}
@media screen and (max-width: 760px){
  #s5{
    padding: 80px 0;
  }
  #s5 .p1{
    text-align: left;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 60px;
  }
  #s5 .cbox{
    padding:25px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 680px){
  #s5 .cbox{
    padding:15px;
  }
  #s5 .cbox ul{
    grid-template-columns: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 1px;
  }
  #s5 .k dt h3{
    font-size: clamp(20px, calc(24 / 680 * 100vw), 24px);
    line-height: 1.8;
    margin-bottom: 30px;
  }
  #s5 .k dd .lo li{
    padding: 8px 20px;
  }
  #s5 .cbox .inner{
    padding:30px 25px;
  }
  #s5 .cbox .inner h4{
    font-size: clamp(20px, calc(24 / 680 * 100vw), 24px);
  }
  #s5 .inner article .i p{
    font-size: clamp(16px, calc(18 / 680 * 100vw), 18px);
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 480px){
  #s5 .cbox ul li{
    padding:20px 15px;
  }
  #s5 .cbox ul li p{
    font-size: 14px;
  }
  #s5 .k dd .lo .c{
    font-size: 24px;
  }
  #s5 .k dd .lo .p{
    font-size: 14px;
  }
  #s5 .k dd .lo .p span{
    font-size: 36px;
  }
  #s5 .inner article .t dl{
    flex-wrap: wrap;
    padding:8px 0;
  }
  #s5 .inner article .t dl dt{
    width:100%;
    font-size: 16px;
  }
  #s5 .inner article .t dl dd{
    width:100%;
    font-size: 14px;
  }
  #s5 .inner article .t dl dt span{
    font-size: 12px;
    display:inline-block;
  }
  #s5 .inner article .t dl dd span.en{
    font-size: 22px;
  }
  #s5 .inner article .t dl dd span.j{
    font-size: 12px;
  }
  #s5 .inner article .t dl.h dt{
    font-size: 18px;
  }
  #s5 .inner article .t dl.h dd span.en{
    font-size: 28px;
  }
}

/* ----------------------------------------------------------------------
 s6
---------------------------------------------------------------------- */
#s6{
  padding:120px 0;
  background: #f5f5f5;
}
#s6 dl{
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width:100%;
	flex-wrap: wrap;
  justify-content: space-between;
  background: #fff;
  padding:70px 50px;
}
#s6 dl dt{
  width:60%;
}
#s6 dl dd{
  width:35%;
}
#s6 dl dt h2{
  font-size: 28px;
  margin-bottom: 30px;
}
#s6 dl dt p{
  font-size: 16px;
  line-height: 2.0;
}
#s6 dl dd .p1{
  margin-bottom: 10px;
}
#s6 dl dd .p2{
  text-align: right;
}
#s6 dl dd .p2 a{
  position: relative;
  color:#000;
  font-size: 16px;
  padding-right: 20px;
}
#s6 dl dd .p2 a::before{
  content:"";
  position: absolute;
  top:calc(50% - 4px);
  right:0px;
  width:8px;
  height:8px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
}
@media screen and (max-width: 860px){
  #s6 dl dt{
    width:100%;
    margin-bottom: 30px;
  }
  #s6 dl dd{
    width:100%;
  }
}
@media screen and (max-width: 760px){
  #s6{
    padding: 80px 0;
  }
}
@media screen and (max-width: 680px){
  #s6 dl{
    padding:40px 25px;
  }
  #s6 dl dt h2{
    font-size: 22px;
    margin-bottom: 20px;
  }
}
footer{
  background: #fff;
  padding:50px 15px;
  font-size: 12px;
  text-align: center;
}
/* ----------------------------------------------------------------------
 fnav
---------------------------------------------------------------------- */
