@charset "UTF-8";

/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
}

body {
  color: #333333;
  /* RGB */
  background-color: #e8f3f5;
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 3.3rem;
  text-align: center;
  letter-spacing: 0.2rem;
}

.minchou {
  font-family: "zen-old-mincho", sans-serif;
  font-weight: 400;
}

a:hover {
  opacity: 0.5;
}

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

img {

  display: block;
    max-width: 100%;
}

.wide_only {
  display: none;
}

.pc_none {
  display: block;
}

.sp_none {
  display: none;
}

.is-hide {
  opacity: 0;
  visibility: hidden;
}

/* header */
header {
  width: 100%;
  background-color: #00aab5;
  display: flex;
  position: fixed;
  z-index: 50;
  top: 0;
  align-items: center;
  padding: 20px 14px;
  height: 126px;
  border-bottom: 1px solid #ffffff;
    z-index: 999;
}

.header_inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

header h1 {
  width: 70%;
  max-width: 288px;
}

header h1 a {
  width: 100%;
}

.nav_wrap {
  position: fixed;
  z-index: 100;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background: #00aab5;
  transition: all 0.6s;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 9vh;
}

.nav_tel {
  padding-bottom: 16px;
  font-size: 3.0rem;
  margin: 32px 0;
}

.tel a p {
  position: relative;
  padding-left: 20px;
}

.tel a p::after {
  content: "";
  background-image: url(../img/tel_icon@2x.png);
  background-size: cover;
  height: 26px;
  width: 26px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -12px;
}

.nav_tel--text {
  display: block;
  text-align: left;
  font-size: 1.6rem;
}

.nav_wrap.show {
  right: 0;
}

.nav_wrap nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.header_nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 40px;
}

.header_nav li {
  list-style: none;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1;
  padding: 12px;
  border-bottom: 1px solid #ffff;
}

.header_nav li a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.8rem
}

.nav_sns .sns-wrap {
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 340px;
  margin: 0 auto;
}

.nav_sns .sns-wrap .sns_icon {
  width: calc(33.33% - 10px);
  height: 40px;
}

.nav_sns .sns-wrap .sns_icon:nth-of-type(4),
.nav_sns .sns-wrap .sns_icon:nth-of-type(5) {
  width: calc(50% - 70px);
  margin-top: 30px;
}

.nav_sns .sns-wrap .sns_icon a {
  height: 40px;
  display: block;
}

.nav_sns .sns-wrap .sns_icon a img {
  height: 100%;
}

.nav_btn.anchor_link {
  background-color: #ffffff;
  width: 80vw;
  max-width: 400px;
  height: 54px;
  padding: 0;
  margin-bottom: 20px;
  position: relative;
}

.nav_btn.anchor_link a::after {
  content: "";
  background-image: url(../img/arrow_black@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 16.31px;
  width: 11.25px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
}

.nav_btn.anchor_link a {
  background-color: #ffffff;
  color: #000000;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  padding-right: 20px;
}

/* ham_menu */
.ham_btn {
  position: relative;
  cursor: pointer;
  width: 90px;
  height: 90px;
  z-index: 999;
  margin-right: 16px;
}

.ham_btn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 0px;
  height: 2px;
  background: #fff;
  width: 90px;
}

.ham_btn span:nth-of-type(1) {
  top: 5px;
}

.ham_btn span:nth-of-type(2) {
  top: 33px;
}

.ham_btn span:nth-of-type(2)::after {
  content: "Menu";
  position: absolute;
  top: 20px;
  left: 6px;
  color: #fff;
  font-size: 2.4rem;
  text-transform: uppercase;
  font-weight: 400;
}

.ham_btn.active span:nth-of-type(1) {
  top: 14px;
  left: 15px;
  transform: translateY(6px) rotate(-45deg);
  width: 60px;
}

.ham_btn.active span:nth-of-type(2) {
  top: 26px;
  left: 15px;
  transform: translateY(-6px) rotate(45deg);
  width: 60px;
}

.ham_btn.active span:nth-of-type(2)::after {
  content: "Close";
  transform: translateY(0) rotate(-45deg);
  top: 20px;
  left: 20px;
  font-weight: 400;
}

/* 共通 */
section {
  margin-top: 80px;
  padding: 54px 0 60px;
}

.section_ttl h2 {
  font-size: 30px;
  font-weight: 300;
  padding-bottom: 56px;
}

.section_ttl h2 img {
  height: 9.35vw;
  max-height: 45px;
  width: auto;
  margin: 0 auto 30px;
}

.section_lead {
  text-align: center;
}

.fadeInDownTrigger {
  opacity: 0;
}

/* MV */
.MV {
  height: 68vw;
  margin-top: 126px;
}

.MV_slide {
  height: 68vw;
}

.MV_slide--sp {
  height: 68vw;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  line-height: 0;
}

.swiper-slide {
  width: 100% !important;
  height: auto;
  position: relative;
}

.swiper-slide img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.swiper-slide.left img {
  object-position: left;
}

.MV_text {
  position: absolute;
  margin: 0 auto;
  z-index: 10;
  font-size: 3.75vw;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  line-height: 1.8;
  text-align: left;
  padding: 6vw;
}

.MV_text span {
  font-size: 5vw;
}

.MV_text.right {
  right: 6vw;
}

.section_ttl h2 {
  font-size: 3.0rem;
  display: inline-block;
  font-weight: 600;
  padding: 8px;
  border-bottom: 2px solid #1f8f9b;
  color: #1f8f9b;
  margin-bottom: 48px;
}

.inner_bg {
  background-color: #ffffff;
  width: calc(100vw - 30px);
  padding: 50px 30px;
}

.translation_inner.inner_bg {
  margin-right: 30px;
}

.translation_content {
  text-align: left;
  margin-bottom: 75px;
}

.translation_content:nth-last-of-type(2) {
  text-align: left;
  margin-bottom: 40px;
}

h3 {
  font-size: 2.6rem;
  line-height: 1.6;
  position: relative;
  color: #d45f00;
  padding-left: 32px;
  margin-bottom: 16px;
}

h3::before {
  content: "";
  height: 80%;
  width: 13px;
  background-color: #d45f00;
  position: absolute;
  left: 0px;
  top: 13px;
}

.content_text p {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.translation_content--lead {
  font-size: 2.0rem;
  margin-bottom: 32px;
  line-height: 1.8;
  letter-spacing: 0.1rem;
  font-weight: 600;
}

.to_tel {
  display: block;
  text-align: left;
  margin: 0 auto 0 0;
}

.to_tel a {
  color: #00aab5;
  letter-spacing: 0.1rem;
  font-weight: 600;
}

.more {
  width: 247px;
  margin: 80px auto 0;
}

.class_inner.inner_bg {
  margin-left: 30px;
}

.class_content {
  text-align: left;
  margin-bottom: 75px;
}

.class_content:nth-last-of-type(2) {
  margin-bottom: 0px;
}

.news_bg {
  margin: 0 20px;
  background-color: #1f8f9b;
  padding: 40px 30px;
}

.news_inner {
  background-color: #ffffff;
  padding: 80px 30px;
}

#news h2 {
  color: #d45f00;
  padding-bottom: 80px;
  font-size: 4.0rem;
  width: 80%;
}

#news h2 span {
  display: block;
  font-size: 2.2rem;
  padding-top: 8px;
  font-family: "zen-maru-gothic", sans-serif;
}

.news_content {
  text-align: left;
}

.news_content li {
  padding-bottom: 40px;
  border-bottom: 1px dotted #333333;
  margin-bottom: 40px;
  font-weight: 600;
}

.news_content a {
  color: #333333;
}

#school {
  padding: 0 20px;
}

.school_item {
  background-color: #f5db00;
  padding: 40px;
  margin-bottom: 80px;
}

.school_item h3 {
  color: #333333;
  padding-left: 0;
  font-size: 4.0rem
}

.school_item h3 span {
  display: block;
  font-size: 2.2rem;
  margin-top: 18px;
}

.school_item h3::before {
  display: none;
}

.school_text {
  text-align: left;
}

.school_text p {
  margin-bottom: 20px;
}

.school_text ul {
  margin-bottom: 24px;
}

#school .more {
  margin: 0 auto 0 0;
  width: 185px;
  margin-bottom: 48px;
}

#sns {
  padding: 0 20px;
}

.sns_bg {
  background-image: url(../img/sns_bg-sp@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100px;
  padding: 2vw 20px;
  text-align: center;
  max-width: 430px;
  margin: 0 auto;
}

.sns-wrap {
  width: 100%;
  display: flex;
  padding: 8px 5% 8px;
  justify-content: space-between;
}

.sns-wrap li {
  width: 28px;
  height: 28px;
}

.sns-wrap li img {
  height: 28px;
  width: auto;
  margin: 0 auto;
}

.sns_more {
  display: inline-block;
  margin: 0 auto 8px;
}

.sns_more a {
  color: #ffffff;
  display: flex;
  align-items: baseline;
  font-size: 1.6rem;
}

.sns_more img {
  width: 46px;
}

#access {
  padding: 100px 0 0;
  text-align: center;
}

#access h2 {
  font-size: 4.0rem;
}

.section_adress p {
  display: inline-block;
  text-align: left;
  margin-bottom: 16px;
}

.section_adress ul {
  display: block;
  text-align: left;
  width: 255px;
  margin: 0 auto 60px;
}

.access_map {
  width: 100%;
  display: block;
}

.access_map iframe {
  width: 100%;
  height: 340px;
  display: block;
}

.cr {
  padding: 30px 0;
  background-color: #1e8f9b;
  color: #ffffff;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
}

#go_top {
  width: 60px;
  position: fixed;
  bottom: 10px;
  right: 8px
}

#go_top.stop {
  opacity: 1;
  position: static;
}

@media screen and (max-width:480px) {
  .ham_btn.active {
    margin-right: 35px;
  }

  .ham_btn {
    width: 60px;
  }

  .ham_btn span {
    width: 50px;
  }

  .ham_btn span:nth-of-type(2)::after {
    left: -10px;
  }

  .section_ttl h2 {
    font-size: 6.4vw;
    letter-spacing: 0.01rem;
  }

  h3 {
    font-size: 6.2vw;
    letter-spacing: 0.02rem;
  }

  .school_item h3 {
    font-size: 8vw;
  }

  .sns-wrap {
    padding: 2vw 5% 2vw;
  }

  .sns_more a {
    font-size: 1.1rem;
  }
}

/* タブレットスタイル */
@media screen and (min-width: 768px) {
  .sns_more a {
    font-size: 1.6rem;
  }

  #school {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }

  .school_item {
    width: calc((100% - 20px) / 2);
  }

  .school_item h3 {
    height: 100px;
  }

  .school_item.item02 h3 {
    letter-spacing: 0.01rem;
  }

  .school_item .school_text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 360px;
    margin-bottom: 20px;
  }

  #school .more {
    margin-bottom: 0;
  }
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  .sp_none {
    display: block;
  }

  .pc_none {
    display: none;
  }

  .MV {
    margin-top: 209px;
  }

  .MV,
  .MV_slide {
    height: 40vw;
  }

  header {
    height: 209px;
    padding: 10px 50px 20px;
  }

  .header_inner {
    flex-direction: column;
    max-width: 1880px;
    margin: 0 auto;
  }

  .header_inner>span {
    text-align: left;
    margin: 0 auto 0 0;
    color: #ffffff;
    font-size: 1.4rem;
    padding-bottom: 20px;
  }

  header h1 {
    width: 40%;
    max-width: 460px;
  }

  header h1 a {
    display: block;
    width: 100%;
  }

  .header_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .ham_btn {
    margin-right: 0px;
  }

  .MV_text {
    font-size: 4.0rem
  }

  .MV_text span {
    font-size: 5.2rem
  }

  .inner_bg {
    background-color: #ffffff;
    width: 95vw;
    padding: 50px 8vw;
  }

  .w-inner {
    max-width: 1280px;
    margin: 0 auto;
  }

  .translation_content--inner {
    position: relative;
  }

  .circles {
    position: absolute;
    width: 40px;
    left: -120px;
    top: 50%;
    transform: translateY(-50%);
  }

  h3::before {
    top: 6px;
  }

  .section_ttl {
    text-align: left;
  }

  .section_ttl h2 {
    font-size: 5.0rem;
    padding: 24px;
  }

  .translation_content.content01 {
    position: relative;
    padding-right: 400px;
  }

  .translation_img {
    position: absolute;
    top: -40px;
    right: -5vw;
    max-width: 440px;
  }

  .translation_content h3 {
    font-size: 3.0rem;
  }

  .translation_content--lead {
    font-size: 2.4rem;
  }

  #translation .more {
    margin: 40px 0 0 auto;
  }

  .class_inner.inner_bg {
    margin-left: 5vw;
    height: 946px;
    position: relative;
  }

  .class_content--inner {
    position: relative;
    padding-right: 300px;
    max-width: 1510px;
  }

  .class_content--wrap {
    width: 70%;
  }

  .class_img--wrap {
    position: absolute;
    top: 0;
    right: 0;
  }

  .class_img {
    width: 520px;
    margin-bottom: 32px;
  }

  #class .circles {
    position: absolute;
    width: 40px;
    right: -120px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
   
  }

  #class .more {
    margin: 110px auto 0 0;
  }

  #news {
    padding: 54px 0 150px;
  }

  .news_bg {
    padding: 60px 50px;
  }

  .news_inner {
    display: flex;
  }

  #news .section_ttl {
    border-right: 2px solid #1f8f9b;
    width: 25%;
    text-align: center;
    margin-bottom: 0;
  }

  #news .section_ttl h2 {
    border-bottom: none;
    padding-bottom: 0;
  }

  .news_content {
    width: 60%;
    margin: 20px auto;
  }

  .news_content li {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .news_content a {
    display: flex;
  }

  .news_content a .date {
    width: 160px;
  }

  .sns_bg {
    background-image: url(../img/sns_bg@2x.png);
    padding: 20px;
  }

  .sns-wrap {
    padding: 4px 5% 16px;
  }

  #access {
    padding: 220px 0 0;
  }

  #access .section_ttl {
    text-align: center;
  }

  #access h2 {
    margin: 0 auto 48px;
  }

  .section_adress {
    margin: 0 auto 100px;
    font-size: 1.6rem;
    width: 430px;
  }

  .access_map iframe {
    width: 100%;
    height: 460px;
    display: block;
  }
}

/* pcスタイル */
@media screen and (min-width: 1260px) {
  .wide_only {
    display: block;
  }

  .wide_none {
    display: none;
  }

  .ham_btn {
    display: none;
  }

  header h1 {
    width: 30%;
    max-width: 460px;
    margin-right: 20px;
  }

  header h1 a {
    display: block;
    width: 100%;
  }

  .header_right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 70%;
    max-width: 860px;
    gap: 10px;
  }

  .header_tel {
    font-size: 3.6rem;
    width: 300px;
    margin: 0 0 0 auto;
  }

  .tel a p {
    padding: 0 0 4px 20px;
    margin-bottom: 20px;
  }

  .header_right .header_nav {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    margin-bottom: 0px;
  }

  .header_right .header_nav li {
    border-bottom: none;
    padding: 0;
  }

  .header_nav li a {
    padding-bottom: 20px;
    position: relative;
  }

  .header_nav li a:hover {
    opacity: 1;
  }

  .header_nav li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background: #eb891d;
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: center top;
  }

  .header_nav li a:hover::after {
    transform: scale(1, 1);
  }

  #school {
    max-width: 1600px;
    margin: 0 auto;
  }

  .school_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc((100% - 50px) / 2);
  }

  .school_item h3 {
    height: auto;
  }

  .school_item>div {
    height: 450px;
  }

  .school_item .school_text {
    width: 340px;
    height: auto;
  }

  .school_item.item02 .school_text {
    height: 310px;
  }

  .school_item-img {
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
}
/*--------------------------------------------------------

下層ページ

---------------------------------------------------------*/

.h2_ttl
{
position: relative;
    font-size: 5rem;
    color: #FFFFFF;
    background: url("../img/h2_ttl.png")no-repeat top center/cover;
    height: 20vw;
    margin: 209px 0 0;
}
.h2_inner
{
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
}
.container
{
    max-width: calc(1300px + 6%);
    padding: 0 3%;
    margin: 0 auto;
}
.flex
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3%;
    align-items: center;
}
.txt
{
    width: 48%;
}
.img
{
    width: 48%;
}
.bgg{
    background: #CCCCCC;
}
.strong
{
    font-weight: bold;
}
.h4_ttl
{
    font-size: 24px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    padding-top: 30px;
    border-bottom: 1px solid #1e8f9b;
}
.table_design01 {
  border-collapse: collapse;
  width: 100%;
  max-width: 1000px;
    margin: 30px auto;
}
.table_design01 th, .table_design01 td {
  border: 2px solid #fff;
  background-color: #e6f1f6;
  padding: 1em;
    vertical-align: middle;
}
.table_design01 th {
  background-color: #4d9bc1;
  color: #fff;
  font-weight: bold;
  text-align: center;
  width: 30%;
  min-width: 4em;
}
.table_design01 td
{
    width: 35%;
    text-align: left;
}
@media screen and (max-width:480px)
{
    .table_design01 th {
  width: 100%;
}
.table_design01 td
{
    width: 100%;
}
    .table_design01 tr
    {
        display: flex;
        flex-direction: column;
    }
    .flow > li dl {
  flex-direction: column;
}
    .flow > li dl dt {
  width: 90%;
}
}
.flow > li {
  position: relative;
}
.flow > li:not(:last-child) {
  margin-bottom: 40px;
}
.flow > li:not(:first-child)::before {
  content: "";
  height: 60px;
  display: block;
  border-left: 4px dotted #e5e5e5;
  position: absolute;
  top: -40px;
  left: -webkit-calc(10% + 30px - 2px);
  left: calc(10% + 30px - 2px);
  z-index: 10;
}
.flow > li dl {
  width: 100%;
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid rgb(107,144,219);
  border-radius: 10px;
  position: relative;
}
.flow > li:not(:last-child) dl::before,
.flow > li:not(:last-child) dl::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.flow > li:not(:last-child) dl::before {
  border-width: 22px;
  border-top-color: rgb(107,144,219);
}
.flow > li:not(:last-child) dl::after {
  border-width: 20px;
  border-top-color: #fff;
}
.flow > li dl dt {
  font-size: 20px;
  font-weight: 600;
  color: rgb(107,144,219);
  -ms-flex-preferred-size: 20%;
  flex-basis: 25%;
  margin-right: 2vw;
  text-align: center;
}
.flow > li dl dt .icon {
  font-size: 12px;
  color: #fff;
  background: rgb(107,144,219);
  background: -moz-linear-gradient(left, rgba(107,144,219,1) 0%, rgba(102,213,233,1) 100%);
  background: -webkit-linear-gradient(left, rgba(107,144,219,1) 0%,rgba(102,213,233,1) 100%);
  background: linear-gradient(to right, rgba(107,144,219,1) 0%,rgba(102,213,233,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b90db', endColorstr='#66d5e9',GradientType=1 );
  padding: 5px 10px;
  margin-bottom: 10px;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 100;
}
.emphasis
{
    font-size: 120%;
    font-weight: bold;
    color: #cc0000;
}
.qa-list dl {
    position: relative;
    margin: 0;
    padding: 28px 80px 28px 30px;
    cursor: pointer;
    border-bottom: 1px solid #000;
}
.qa-list dl:first-child {
    border-top: 1px solid #000;
}
.qa-list dl::before {
    position: absolute;
    top: 35px;
    right: 35px;
    display: block;
    width: 7px;
    height: 7px;
    margin: auto;
    content: '';
    transform: rotate(135deg);
    border-top: 2px solid #000;
    border-right: 2px solid #000;
}
.qa-list .open::before {
    transform: rotate(-45deg);
}
.qa-list dl dt {
    position: relative;
    margin: 0;
    padding: 0 0 0 50px;
    font-weight: bold;
    font-size: 20px;
}
.qa-list dl dt::before {
    font-size: 22px;
    line-height: 1;
    position: absolute;
    top: 3px;
    left: 0;
    display: block;
    content: 'Q.';
    color: #3285bf;
}
.qa-list dl dd::before {
    font-size: 22px;
    line-height: 1;
    position: absolute;
    top: 3px;
    left: 2px;
    display: block;
    content: 'A.';
    font-weight: bold;
    color: #3285bf;
}
.qa-list dl dd {
    position: relative;
    display: none;
    height: auto;
    margin: 20px 0 0;
    padding: 0 0 0 50px;
}
.qa-list dl dd p {
    margin: 30px 0 0;
}
.qa-list dl dd p:first-child{
    margin-top: 0;
}

@media screen and (max-width: 767px) {
.qa-list dl {
    position: relative;
    padding: 15px 40px 15px 10px;
}
.qa-list dl::before {
    top: 20px;
    right: 20px;
    width: 7px;
    height: 7px;
}
.qa-list dl dt {
    padding: 0 0 0 30px;
    font-size: 14px;
}
.qa-list dl dt::before {
    font-size: 14px;
    top: 3px;
    left: 5px;
    content: 'Q.';
}
.qa-list dl dd::before {
    font-size: 14px;
    top: 5px;
    left: 5px;
    content: 'A.';
}
.qa-list dl dd {
    margin: 10px 0 0;
    padding: 0 0 0 30px;
    font-size: 14px;
}
.qa-list dl dd p {
    margin: 30px 0 0;
}
.qa-list dl dd p:first-child{
    margin-top: 0;
}
}
.list li
    {
        list-style:disc;
    }
.center
{
    text-align: center;
    margin-bottom: 30px;
}
.btn a
{
    padding: 20px 30px;
    background: #00aab5;
    white-space: nowrap;
}
.box_con {
    max-width: 900px;
    margin: 0 auto;
}

@media only screen and (max-width: 768px) {
    .box_con {
        width: 95%;
    }
}

.box_con form {
    width: 100%;
}

.box_con form table {
    width: 100%;
    font-size: 18px;
    padding: 1rem;
    margin-top: 5rem;
}

.box_con form table tr {
    position: relative;
}

.box_con form table tr:after {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 1px;
    border-bottom: dotted #cdcdcd 1px;
}

.box_con form table tr th {
    width: 30%;
    font-weight: normal;
    padding: 1em .5em;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@media only screen and (max-width: 768px) {
    .box_con form table tr th {
        text-align: center;
        width: 100%;
        display: block;
        background: #97ae88;
        padding: .8em .2em;
        color: #fff;
    }
}

.box_con form table tr th span {
    background: #cd6f55;
    padding: 0 .3em;
    color: #fff;
    margin-left: .5em;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.box_con form table tr td {
    padding: 1em .5em;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@media only screen and (max-width: 768px) {
    .box_con form table tr td {
        padding: 1.5em .5em;
        display: block;
        width: 100%;
    }
}

.box_con form table tr .box_br {
    display: block;
}

.box_con form table tr select {
    border: 1px solid #97ae88;
}

.box_con form table tr label input {
    cursor: pointer;
    display: none;
    vertical-align: middle;
}

.box_con form table tr .radio02-input + label {
    padding-left: 23px;
    margin-right: 20px;
    position: relative;
}

.box_con form table tr .radio02-input + label:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 16px;
    height: 16px;
    border: 1px solid #999;
    border-radius: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.box_con form table tr .radio02-input:checked + label:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 3px;
    width: 12px;
    height: 12px;
    background: #97ae88;
    border-radius: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.box_con form table tr select, .box_con form table tr input, .box_con form table tr textarea {
    width: 100%;
    height: 3em;
    padding: .5em;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #EEEEEE;
}

.box_con form table tr textarea {
    height: 10em;
}

/*プライバシーのデザインcss↓*/
.con_pri {
    max-width: 700px;
    margin: 0 auto;
}

@media only screen and (max-width: 768px) {
    .con_pri {
        width: 95%;
    }
}

.con_pri .box_pri {
    height: 300px;
    overflow-y: scroll;
    border: 1px solid #cdcdcd;
    background: #f7f7f7;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 20px;
    padding: 20px 55px;
}

@media only screen and (max-width: 768px) {
    .con_pri .box_pri {
        margin-top: 4%;
        padding: 3%;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .con_pri .box_pri {
        padding: 4%;
    }
}

.con_pri .box_pri .box_tori {
    text-align: left;
    margin-top: 40px;
}

@media only screen and (max-width: 768px) {
    .con_pri .box_pri .box_tori {
        margin-top: 4%;
    }
}

.con_pri .box_pri .box_tori h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 2rem;
}

@media only screen and (max-width: 768px) {
    .con_pri .box_pri .box_tori h4 {
        margin-bottom: 4%;
    }
}

.con_pri .box_pri .box_tori .txt {
    padding: 0 20px;
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .con_pri .box_pri .box_tori .txt {
        padding: 0;
    }
}

.con_pri .box_pri .box_num {
    margin-top: 30px;
}

@media only screen and (max-width: 768px) {
    .con_pri .box_pri .box_num {
        margin-top: 5%;
    }
}

.con_pri .box_pri .box_num h4 {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 20px;
}

.con_pri .box_pri .box_num .txt {
    padding: 10px 0 0 20px;
}

@media only screen and (max-width: 768px) {
    .con_pri .box_pri .box_num .txt {
        padding: 3% 0 0 3%;
    }
}

.box_num ul li {
    font-size: 1.8rem;
    line-height: 1.7;
    list-style: square outside none;
    margin: 0 0 0 4rem;
    padding: 0;
}

.box_check {
    text-align: center;
    margin: 1em auto;
}

.box_check label {
    display: inline-block;
}

.box_check label span {
    margin-left: .3em;
    font-size: 1.8rem;
}

.btn {
    text-align: center;
}

.btn input {
    display: inline-block;
    background: #eee;
    padding: .5em 4em;
    color: #000;
    text-decoration: none;
    cursor: pointer;
    border: none;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.btn input:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
    opacity: 0.7;
}