@charset "UTF-8";
/*---------------------------------------

responsive

---------------------------------------*/
.smless {
  display: block;
}
@media (min-width: 600px) {
  .smless {
    display: none;
  }
}

.mdless {
  display: block;
}
@media (min-width: 768px) {
  .mdless {
    display: none;
  }
}

.lgless {
  display: block;
}
@media (min-width: 1024px) {
  .lgless {
    display: none;
  }
}

.xlless {
  display: block;
}
@media (min-width: 1280px) {
  .xlless {
    display: none;
  }
}

.xxlless {
  display: block;
}
@media (min-width: 1500px) {
  .xxlless {
    display: none;
  }
}

.smmore {
  display: none;
}
@media (min-width: 600px) {
  .smmore {
    display: block;
  }
}

.mdmore {
  display: none;
}
@media (min-width: 768px) {
  .mdmore {
    display: block;
  }
}

.lgmore {
  display: none;
}
@media (min-width: 1024px) {
  .lgmore {
    display: block;
  }
}

.xlmore {
  display: none;
}
@media (min-width: 1280px) {
  .xlmore {
    display: block;
  }
}

.xxlmore {
  display: none;
}
@media (min-width: 1500px) {
  .xxlmore {
    display: block;
  }
}

.spnone {
  display: none;
}
@media (min-width: 768px) {
  .spnone {
    display: block;
  }
}

.pcnone {
  display: block;
}
@media (min-width: 768px) {
  .pcnone {
    display: none;
  }
}

.xl {
  font-size: 120%;
}

.font80 {
  font-size: 80%;
}

.font90 {
  font-size: 90%;
}

.font120 {
  font-size: 120%;
}

.font140 {
  font-size: 140%;
}

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

color

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

  color

  ---------------------------------------*/
/*---------- ページ全体の指定 ----------*/
.wrapper {
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.097);
}

body {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-family: "Helvetica Neue", Arial, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background: #fff;
}

a:link {
  color: #37859a;
  text-decoration: underline;
}

a:visited {
  color: #37859a;
  text-decoration: underline;
}

a:hover {
  color: #139eb1;
  text-decoration: none;
}

a {
  transition: 0.3s ease-in-out;
}

a img {
  border-style: none;
}

img {
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}

a:hover img {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

a img {
  border-style: none;
  transition: all 0.3s;
}

p {
  font-size: 105%;
  line-height: 180%;
}
@media (min-width: 768px) {
  p {
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 1px;
  }
}

ul {
  list-style: none;
}

/*---------- 文字装飾 ----------*/
.bold {
  font-weight: bold;
}

.ul {
  text-decoration: underline;
}

.gold {
  font-weight: bold;
  color: #c0a379;
}

.red {
  color: #d6103d;
}

.through {
  text-decoration: line-through;
}

.ym {
  font-weight: bold;
  background: linear-gradient(transparent 60%, #fcff80 60%);
}

.caption {
  font-size: 75%;
  color: #666666;
  font-weight: normal;
  line-height: 180%;
}

.shadow {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/*---------- 文字位置 ----------*/
.center {
  text-align: center;
}

.right {
  text-align: right;
}

/*---------- 見出し ----------*/
h1 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

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

header

---------------------------------------*/
.header {
  background: #fff;
  width: 100%;
  position: relative;
  z-index: 2;
}
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .header__inner {
    padding: 20px 20px;
  }
}
.header__logo--books {
  max-width: 210px;
  min-width: 140px;
  margin-right: 5px;
  width: 32%;
}
.header__logo--ipma {
  max-width: 230px;
  min-width: 160px;
  margin-left: 5px;
  width: 40%;
}

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

mainview

---------------------------------------*/
.mainview {
  width: 100%;
}

@media (min-width: 768px) {
  .mainview-top {
    background-size: cover;
    background-position: center;
  }
}

.mainview-top img {
  width: 100%;
  height: auto;
}

.mainview_box {
  margin: 0;
  padding: 15px 20px;
  font-size: 80%;
  font-weight: bold;
  line-height: 180%;
  text-align: center;
  color: #fff;
  background: linear-gradient(to right, #04c2bf, #1b85d0);
}

.point_bg {
  margin: 0;
  padding: 45px 0;
  text-align: center;
  color: #fff;
  background-image: url(img/point.jpg);
  background-position: center center;
  background-size: cover;
}
@media (min-width: 768px) {
  .point_bg {
    padding: 100px 0 90px 0;
  }
}

.point_01 {
  margin: 0;
  padding: 0;
  font-size: 200%;
  font-weight: 900;
  line-height: 180%;
  font-family: "Sawarabi Mincho", serif;
  text-shadow: 0 0 10px rgb(24, 100, 88);
}
@media (min-width: 768px) {
  .point_01 {
    font-size: 48px;
  }
}

.point_02 {
  margin: 0;
  padding: 10px 0 0 0;
  font-size: 125%;
  font-weight: 900;
  line-height: 180%;
  font-family: "Sawarabi Mincho", serif;
  text-shadow: 0 0 10px rgb(24, 100, 88);
}
@media (min-width: 768px) {
  .point_02 {
    margin: 0 auto;
    padding: 10px 0 0 0;
    font-size: 28px;
  }
}

.icon_top {
  margin: 45px 0 20px 0;
  padding: 0;
  font-size: 140%;
  font-weight: 900;
  line-height: 150%;
  text-align: center;
  font-family: "Sawarabi Mincho", serif;
}
@media (min-width: 768px) {
  .icon_top {
    margin: 75px 0 30px 0;
    padding: 0;
    font-size: 32px;
    font-weight: 900;
    line-height: 150%;
    text-align: center;
    font-family: "Sawarabi Mincho", serif;
  }
}

.icon_box {
  margin: 0 20px;
  padding: 0;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .icon_box {
    width: 980px;
    margin: 0 auto;
  }
}

.icon {
  width: 48%;
  margin: 0 0 20px 0;
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  line-height: 150%;
  text-align: center;
}
@media (min-width: 768px) {
  .icon {
    width: 18%;
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: bold;
    line-height: 150%;
    text-align: center;
  }
}

.icon img {
  width: 60%;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .icon img {
    width: 60%;
    margin-bottom: 15px;
  }
}

.txt {
  margin: 0 20px 45px 20px;
  padding: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .txt {
    margin: 45px 0 90px 0;
    padding: 0;
    text-align: center;
  }
}

.txt img {
  width: 100%;
}
@media (min-width: 768px) {
  .txt img {
    width: 640px;
  }
}

.device_bg {
  margin: 0;
  padding: 30px 20px 45px 20px;
  text-align: center;
  background: #f3efe3;
}

.device_sub {
  margin: 0;
  padding: 0;
}

.device_sub img {
  width: 75%;
}
@media (min-width: 768px) {
  .device_sub img {
    width: 640px;
  }
}

.device_title {
  margin: 0;
  padding: 10px 0 15px 0;
}
@media (min-width: 768px) {
  .device_title {
    padding: 15px 0 25px 0;
  }
}

.device_title img {
  width: 100%;
}
@media (min-width: 768px) {
  .device_title img {
    width: 768px;
  }
}

.device {
  margin: 1em 0;
  padding: 0;
}
@media (min-width: 768px) {
  .device {
    margin: 2em 0;
  }
}

.device a:link {
  color: #fff;
  text-decoration: none;
}

.device a:visited {
  color: #fff;
  text-decoration: none;
}

.device a:hover {
  color: #fff;
  text-decoration: none;
}

.btn {
  width: 100%;
  margin: 0 auto;
  padding: 25px 0;
  font-size: 100%;
  font-weight: bold;
  line-height: 100%;
  display: inline-block;
  text-decoration: none;
  border-radius: 5px;
  background: #f6b403;
  color: #fff;
  border: none;
}
@media (min-width: 768px) {
  .btn {
    width: 540px;
    font-size: 24px;
  }
}

.btn:hover {
  opacity: 0.7;
  transition: 0.3s ease-in-out;
}

.device_mail {
  max-width: 670px;
  padding: 0px 0px 20px;
  box-sizing: border-box;
  margin: 0 auto;
}

.device_mail input[type=text] {
  width: 100%;
  border: 0;
  padding: 25px 15px;
  font-size: 20px;
  letter-spacing: 1px;
  color: #000;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
}

.subhead {
  margin: 0;
  padding: 0;
  font-size: 130%;
  font-weight: 600;
  line-height: 150%;
  text-align: center;
}
@media (min-width: 768px) {
  .subhead {
    margin: 0 auto;
    font-size: 24px;
  }
}

.topspace {
  margin-top: 60px;
}
@media (min-width: 768px) {
  .topspace {
    margin-top: 90px;
  }
}

hr {
  width: 45px;
  margin: 15px auto 30px auto;
  padding: 0;
  height: 0;
  border: 0;
  border-top: 3px solid #1b85d0;
}
@media (min-width: 768px) {
  hr {
    margin: 20px auto 45px auto;
  }
}

.contents {
  margin: 0;
  padding: 30px;
}
@media (min-width: 768px) {
  .contents {
    padding: 30px 60px;
  }
}

.contents img {
  width: 100%;
}

.pict {
  margin: 0;
  padding: 0 0 5px 0;
  text-align: center;
}

.pict img {
  width: 100%;
}

.subtitle {
  margin: 45px 0 0 0;
  padding: 2px 0 2px 12px;
  font-size: 125%;
  font-weight: 900;
  line-height: 150%;
  border-left: 6px solid #d6103d;
  font-family: "Noto Sans Japanese";
}
@media (min-width: 768px) {
  .subtitle {
    margin: 60px 0 30px 0;
    font-size: 30px;
    letter-spacing: 1px;
  }
}

.mt {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .mt {
    margin-top: 45px;
  }
}

table.check {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}
@media (min-width: 768px) {
  table.check {
    margin: 0 0 30px 0;
  }
}

table.check th {
  width: 25px;
  font-size: 100%;
  line-height: 150%;
  padding: 12px 0 5px 0;
  color: #c0a379;
  vertical-align: top;
  text-align: left;
}
@media (min-width: 768px) {
  table.check th {
    width: 26px;
    font-size: 18px;
    padding: 10px 0 5px 0;
  }
}

table.check td {
  font-size: 100%;
  line-height: 150%;
  font-weight: bold;
  padding: 12px 0 5px 0;
  border-bottom: dotted 1px #999;
  vertical-align: top;
}
@media (min-width: 768px) {
  table.check td {
    font-size: 18px;
    letter-spacing: 1px;
    padding: 10px 0 5px 0;
  }
}

@media (min-width: 768px) {
  table.frame th {
    width: 30%;
    padding: 15px 0;
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  table.frame td {
    padding: 15px 0 15px 15px;
    font-size: 18px;
  }
}

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

reco

---------------------------------------*/
@media (min-width: 1024px) {
  .reco {
    padding-bottom: 40px;
  }
}
@media (min-width: 1024px) {
  .reco__title {
    margin-top: 60px;
  }
}
.reco__box {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}
@media (min-width: 1024px) {
  .reco__box {
    padding: 0;
  }
}
.reco__item {
  line-height: 1.75;
  letter-spacing: 0.08em;
  font-size: 90%;
  margin: 1em 0;
  padding-left: 2.5em;
  position: relative;
}
@media (min-width: 1024px) {
  .reco__item {
    font-size: 15px;
  }
}
.reco__item::before {
  position: absolute;
  content: "";
  width: 1.5em;
  height: 1.5em;
  background: url(../img/reco_check.svg);
  background-repeat: no-repeat;
  top: 0.2em;
  left: 0;
}
.reco__inner {
  padding: 10px 20px;
  max-width: 768px;
  margin: 0 auto;
}
.reco__inner p {
  line-height: 1.6;
  margin: 1em 0;
  font-size: 16px;
}
@media (min-width: 1024px) {
  .reco__inner p {
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.8;
  }
}

/*---------- offer ----------*/
.offer_number {
  margin: 0;
  margin-top: 60px;
  font-size: 100%;
  line-height: 100%;
  text-align: center;
}

.offer_number span {
  padding: 5px 25px;
  color: #fff;
  background: #1b85d0;
}

/*----------  ----------*/
.prf_box {
  margin: 0 15px 30px 15px;
  padding: 30px 30px;
  border: double 3px #20ac39;
  background: #fcf9f5;
}

.prf_box p {
  font-size: 90%;
}
@media (min-width: 768px) {
  .prf_box p {
    font-size: 16px;
  }
}

.prf_title {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: 900;
  line-height: 150%;
  text-align: center;
  font-family: "Sawarabi Mincho", serif;
}
@media (min-width: 768px) {
  .prf_title {
    font-size: 24px;
  }
}

.prf_degree {
  margin: 0;
  padding: 15px 0 5px 0;
  font-size: 90%;
  font-weight: bold;
  line-height: 150%;
  text-align: center;
  color: #20ac39;
}
@media (min-width: 768px) {
  .prf_degree {
    font-size: 16px;
  }
}

.prf_name {
  margin: 0;
  padding: 0;
  font-size: 140%;
  font-weight: bold;
  line-height: 150%;
  text-align: center;
}
@media (min-width: 768px) {
  .prf_name {
    font-size: 30px;
  }
}

.prf_subhead {
  margin: 0 0 0;
  padding: 0 0 5px 0;
  font-size: 120%;
  font-weight: bold;
  line-height: 150%;
  color: #20ac39;
  border-bottom: solid 1px #20ac39;
}
@media (min-width: 768px) {
  .prf_subhead {
    margin: 0 0 0;
    font-size: 21px;
  }
}

.prf_box ul {
  margin: 0;
  padding: 12px 0 0 20px;
}
@media (min-width: 768px) {
  .prf_box ul {
    padding: 12px 0 0 25px;
  }
}

.prf_box ul li {
  margin: 0;
  padding: 5px 0 0 0;
  font-size: 90%;
  line-height: 150%;
}
@media (min-width: 768px) {
  .prf_box ul li {
    font-size: 16px;
    letter-spacing: 1px;
  }
}

.prf_photo {
  max-width: 200px;
  padding: 10px 20px 0px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .prf_photo {
    max-width: 280px;
    padding: 20px 20px 0px;
  }
}

.prf_photo img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.prf_books {
  margin-top: 30px;
}

.prf_books img {
  width: 100%;
  height: auto;
  margin: 20px 0;
}

.superiority_bg {
  margin: 0 0 45px 0;
  padding: 30px 20px 45px 20px;
  color: #fff;
  background: #546a57;
}
@media (min-width: 768px) {
  .superiority_bg {
    margin: 0 0 90px 0;
    padding: 75px 0 90px 0;
    color: #fff;
    background: #546a57;
  }
}

.superiority_sub {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  line-height: 150%;
  text-align: center;
}
@media (min-width: 768px) {
  .superiority_sub {
    margin: 0;
    padding: 0;
    font-size: 21px;
    font-weight: bold;
    line-height: 150%;
    text-align: center;
  }
}

.superiority_title {
  margin: 0;
  padding: 40px 0 30px 0;
  font-size: 150%;
  font-weight: 900;
  line-height: 100%;
  text-align: center;
  font-family: "Sawarabi Mincho", serif;
}
@media (min-width: 768px) {
  .superiority_title {
    padding: 40px 0 50px 0;
    font-size: 42px;
  }
}

.superiority_title span {
  padding: 10px 20px;
  border-top: solid 1px #fff;
  border-bottom: solid 1px #fff;
}

.superiority_bg ol {
  margin: 0 auto;
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  line-height: 180%;
}
@media (min-width: 768px) {
  .superiority_bg ol {
    width: 768px;
    margin: 0 auto;
    padding: 0;
    font-size: 18px;
    font-weight: bold;
    line-height: 180%;
    letter-spacing: 1px;
  }
}

.superiority_bg ol li {
  list-style: none;
  padding: 15px 0 5px 1.3em;
  text-indent: -1.3em;
  border-bottom: dashed 1px rgba(255, 255, 255, 0.2);
}
@media (min-width: 768px) {
  .superiority_bg ol li {
    list-style: none;
    padding: 15px 0 5px 1.3em;
    text-indent: -1.3em;
    border-bottom: dashed 1px rgba(255, 255, 255, 0.2);
  }
}

.voice_bg {
  margin: 0;
  padding: 60px 0 30px 0;
  background: #fcf9f5;
}
@media (min-width: 768px) {
  .voice_bg {
    margin: 0;
    padding: 75px 0 60px 0;
  }
}

.voice {
  margin: 0 20px 30px 20px;
  padding: 30px 30px 5px 30px;
  border-radius: 10px;
  background: #fff;
  box-sizing: border-box;
  background-image: url(img/voice.png);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
@media (min-width: 768px) {
  .voice {
    margin: 0 auto 30px auto;
    padding: 30px 90px 25px 90px;
  }
}

.voice_pict {
  margin: 0;
  padding: 0;
  text-align: center;
}

.voice_pict img {
  width: 50%;
  background: #fff;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .voice_pict img {
    width: 240px;
  }
}

.voice_name {
  margin: 0;
  padding: 15px 0 2px 0;
  font-size: 100%;
  font-weight: bold;
  line-height: 150%;
  color: #95ae93;
  text-align: center;
}

.voice_title {
  margin: 0;
  padding: 25px 0 5px 0;
  font-size: 105%;
  font-weight: bold;
  line-height: 150%;
  border-bottom: dotted 1px #c0a379;
  color: #c0a379;
}
@media (min-width: 768px) {
  .voice_title {
    padding: 30px 0 5px 0;
    font-size: 18px;
    letter-spacing: 1px;
  }
}

.voice_title span {
  color: #dd0000;
}

.qus {
  margin: 30px 0 10px 0;
  padding: 3px 0 5px 32px;
  font-size: 110%;
  font-weight: bold;
  line-height: 150%;
  position: relative;
  color: #d6103d;
  border-bottom: dotted 1px #d6103d;
}

.qus:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "Q";
  font-size: 24px;
  color: #d6103d;
  font-family: "Kaushan Script", cursive;
}

.ans {
  margin: 0;
  padding: 0 0 0 32px;
}

.detail_bg {
  margin: 0;
  padding: 45px 15px 1px 15px;
  background: #546a57;
}
@media (min-width: 768px) {
  .detail_bg {
    padding: 75px 0 45px 0;
  }
}

.detail_top {
  margin: 0 0 30px 0;
  padding: 0;
  font-size: 125%;
  line-height: 150%;
  text-align: center;
  color: #fff;
  font-family: "Sawarabi Mincho", serif;
}
@media (min-width: 768px) {
  .detail_top {
    margin: 0 auto 45px auto;
    font-size: 32px;
    letter-spacing: 1px;
  }
}

.detail {
  margin: 0 0 45px 0;
  padding: 1px 30px 45px 30px;
  background: #fff;
}
@media (min-width: 768px) {
  .detail {
    width: 740px;
    margin: 0 auto 45px auto;
    padding: 25px 120px 120px;
  }
}

.detail_number {
  margin: 0;
  padding: 40px 0 15px 0;
  font-size: 100%;
  font-weight: bold;
  line-height: 150%;
  text-align: center;
  color: #c0a379;
}
@media (min-width: 768px) {
  .detail_number {
    font-size: 18px;
    padding: 60px 0 15px 0;
  }
}

.detail_number span {
  padding: 5px 20px;
  border: solid 1px #c0a379;
}

.detail_title {
  margin: 0;
  padding: 0;
  font-size: 140%;
  font-weight: 900;
  line-height: 140%;
  text-align: center;
  font-family: "Sawarabi Mincho", serif;
}
@media (min-width: 768px) {
  .detail_title {
    font-size: 30px;
  }
}

.detail_title span {
  font-size: 75%;
  font-weight: bold;
}

.detail_text {
  color: #fff;
  font-size: 90%;
  padding: 10px;
}
@media (min-width: 768px) {
  .detail_text {
    font-size: 18px;
    padding: 1px 0 30px;
    text-align: center;
  }
}

#subpage {
  margin: 0;
  padding: 30px 20px;
}
@media (min-width: 768px) {
  #subpage {
    width: 768px;
    margin: 0 auto;
    padding: 75px 0 90px 0;
  }
}

#subpage p {
  font-size: 80%;
}
@media (min-width: 768px) {
  #subpage p {
    font-size: 14px;
  }
}

.page_title {
  margin: 0 0 30px 0;
  padding: 0;
  font-size: 120%;
  line-height: 150%;
  text-align: center;
}
@media (min-width: 768px) {
  .page_title {
    margin: 0 0 60px 0;
    font-size: 24px;
    letter-spacing: 1px;
  }
}

table.info {
  width: 100%;
  border-collapse: separate;
  margin: 0 0 20px 0;
}
@media (min-width: 768px) {
  table.info {
    margin: 20px 0;
  }
}

table.info th {
  padding: 20px 0 5px 0;
  font-size: 80%;
  line-height: 150%;
  text-align: left;
  border-bottom: solid 1px #666;
  display: block;
}
@media (min-width: 768px) {
  table.info th {
    width: 180px;
    padding: 10px 0;
    font-size: 14px;
    letter-spacing: 1px;
    display: table-cell;
  }
}

table.info td {
  padding: 10px 0 0 0;
  font-size: 80%;
  line-height: 150%;
  display: block;
}
@media (min-width: 768px) {
  table.info td {
    padding: 10px;
    font-size: 14px;
    letter-spacing: 1px;
    border-bottom: dotted 1px #ccc;
    display: table-cell;
  }
}

/*---------- フッター ----------*/
#footer {
  margin: 0 auto;
  padding: 30px 0 120px;
  font-size: 75%;
  line-height: 200%;
  text-align: center;
  color: #575757;
  background: #ffffff;
  font-family: "Roboto Condensed", sans-serif;
}
@media (min-width: 768px) {
  #footer {
    padding: 45px 0 150px;
    font-size: 12px;
  }
}

#footer a:link {
  color: #575757;
  text-decoration: none;
}

#footer a:visited {
  color: #575757;
  text-decoration: none;
}

#footer a:hover {
  color: #b3b3b3;
  text-decoration: underline;
}

/*---------- cta-top ----------*/
.cta {
  margin: 1em 0;
  padding: 0;
}
@media (min-width: 768px) {
  .cta {
    margin: 2em 0;
  }
}

.cta a:link {
  color: #fff;
  text-decoration: none;
}

.cta a:visited {
  color: #fff;
  text-decoration: none;
}

.cta a:hover {
  color: #fff;
  text-decoration: none;
}

.cta_bg {
  margin: 0;
  padding: 30px 20px 45px 20px;
  text-align: center;
  background: #eef4fd;
}

.cta-top {
  background: #546a57;
}

.cta-top_inner {
  padding: 35px 20px 30px 20px;
}
@media (min-width: 768px) {
  .cta-top_inner {
    max-width: 720px;
    margin: 0 auto;
  }
}

.cta-top_text {
  text-align: center;
  color: #fff;
  font-size: 14px;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  padding: 10px 0 5px;
  position: relative;
}
@media (min-width: 768px) {
  .cta-top_text {
    font-size: 18px;
  }
}

.cta-top_text::before,
.cta-top_text::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 100%;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.cta-top_text::before {
  top: 0;
  left: 0;
}

.cta-top_text::after {
  top: 0;
  right: 0;
}

@media (min-width: 768px) {
  .cta_text {
    font-size: 24px;
  }
}

.cta_caption {
  font-size: 12px;
  border: 1px dotted #000;
  padding: 2px;
  max-width: 536px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .cta_caption {
    font-size: 16px;
    padding: 0 2px 2px;
  }
}

@media (min-width: 768px) {
  .cta_caption p {
    font-size: 12px;
    border: none;
    padding: 0;
    line-height: 160%;
  }
}

.cta_caption_caution {
  font-size: 12px;
  border: 1px solid #000;
  padding: 10px;
  max-width: 536px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .cta_caption_caution {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  .cta_caption_caution p {
    font-size: 12px;
    border: none;
    padding: 0;
    line-height: 160%;
  }
}

.cta_place {
  margin: 0;
  margin-top: 20px;
  font-size: 100%;
  line-height: 100%;
  text-align: center;
}

.cta_place span {
  padding: 5px 25px;
  color: #fff;
  background: #1b85d0;
}

/* 追加 */
.left {
  text-align: left;
}

p.add {
  color: #666;
  text-align: left;
  display: inline-block;
  font-size: 85%;
  /* font-size: 75%; */
  padding: 30px 0 0;
}

/*---------- present ----------*/
.present {
  background: #fcf9f5;
  padding: 30px 20px 45px 20px;
  position: relative;
}
@media (min-width: 768px) {
  .present {
    padding: 90px 20px 120px 20px;
  }
}

.present::before {
  position: absolute;
  content: "";
  background-image: url(img/leaf-l.svg);
  width: 60px;
  height: 60px;
  background-repeat: no-repeat;
  top: 20px;
  left: 2px;
}
@media (min-width: 768px) {
  .present::before {
    width: 100px;
    height: 100px;
    top: 80px;
    left: calc(50vw - 320px);
  }
}

.present::after {
  position: absolute;
  content: "";
  background-image: url(img/leaf-r.svg);
  width: 60px;
  height: 60px;
  background-repeat: no-repeat;
  top: 20px;
  right: 2px;
}
@media (min-width: 768px) {
  .present::after {
    width: 100px;
    height: 100px;
    top: 80px;
    right: calc(50vw - 320px);
  }
}

.present_subtitle {
  text-align: center;
  color: #fcf9f5;
}
@media (min-width: 768px) {
  .present_subtitle {
    font-size: 18px;
    letter-spacing: 0.1em;
    margin-bottom: 0.5em;
  }
}

.present_subtitle span {
  background: #c0a379;
  padding: 0.25em 1em;
}

.present_title {
  text-align: center;
  color: #20ac39;
  font-family: "Sawarabi Mincho", serif;
  font-size: 125%;
  font-weight: bold;
}
@media (min-width: 768px) {
  .present_title {
    font-size: 36px;
  }
}

.present ol {
  padding-left: 1.5em;
}
@media (min-width: 768px) {
  .present ol {
    max-width: 720px;
    margin: 0 auto;
  }
}

.present li {
  color: #20ac39;
  font-weight: bold;
  font-size: 120%;
  margin: 1em 0;
}
@media (min-width: 768px) {
  .present li {
    font-size: 24px;
  }
}

.present li span {
  display: block;
  font-size: 85%;
  font-weight: normal;
}
@media (min-width: 768px) {
  .present li span {
    font-size: 80%;
  }
}

.present_caption {
  font-size: 85%;
  color: #666666;
}
@media (min-width: 768px) {
  .present_caption {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .present_text {
    text-align: center;
  }
}

/*---------- step ----------*/
.step_bg {
  margin: 0;
  padding: 60px 15px 30px 15px;
  background: #fcf9f5;
}
@media (min-width: 768px) {
  .step_bg {
    margin: 0;
    padding: 75px 0 60px 0;
  }
}

.step {
  background: #fff;
  padding: 30px 20px 45px;
  box-shadow: 0 0 10px rgba(111, 111, 111, 0.1);
  margin-top: 40px;
}
@media (min-width: 768px) {
  .step {
    padding: 90px 120px 120px;
    margin: 40px auto 0;
    max-width: 1000px;
    box-sizing: border-box;
  }
}

.step_number {
  color: #c0a379;
}
@media (min-width: 768px) {
  .step_number {
    font-size: 18px;
  }
}

.step_title {
  font-size: 125%;
  font-family: "Sawarabi Mincho", serif;
  padding: 0.5em 0;
  border-bottom: 1px solid #c0a379;
}
@media (min-width: 768px) {
  .step_title {
    font-size: 24px;
  }
}

/*---------- item ----------*/
.item_bg {
  margin: 0;
  padding: 1px 10px 1px 10px;
  background: #fff;
}
@media (min-width: 768px) {
  .item_bg {
    padding: 75px 0 45px 0;
  }
}

.item_top {
  margin: 0 0 0 0;
  padding: 0;
  font-size: 125%;
  line-height: 150%;
  text-align: center;
  font-family: "Sawarabi Mincho", serif;
  color: #c0a379;
}
@media (min-width: 768px) {
  .item_top {
    margin: 0 auto 45px auto;
    font-size: 32px;
    letter-spacing: 1px;
  }
}

.item {
  margin: 0 0 45px 0;
  background: #fff;
}

.item_inner {
  margin-top: 20px;
  padding: 1px 10px 10px 10px;
  background: #e8efed;
}
@media (min-width: 768px) {
  .item_inner {
    margin: 0 auto 45px auto;
    width: 740px;
    padding: 25px 120px 90px;
    background: #e8efed;
  }
}

.item_number {
  margin: 0;
  padding: 40px 0 15px 0;
  font-size: 100%;
  font-weight: bold;
  line-height: 150%;
  text-align: center;
  color: #c0a379;
}
@media (min-width: 768px) {
  .item_number {
    font-size: 18px;
  }
}

.item_number span {
  padding: 5px 20px;
  border: solid 1px #c0a379;
}

.item_title {
  margin: 0;
  padding: 0;
  font-size: 140%;
  font-weight: 900;
  line-height: 140%;
  text-align: center;
  font-family: "Sawarabi Mincho", serif;
}
@media (min-width: 768px) {
  .item_title {
    font-size: 30px;
  }
}

.item_title span {
  font-size: 75%;
  font-weight: bold;
}

/*---------- faq ----------*/
.faq {
  padding: 1px 20px 35px;
}
@media (min-width: 768px) {
  .faq {
    max-width: 720px;
    margin: 0 auto;
  }
}

.faq_q {
  margin-top: 30px;
  padding-left: 2em;
  font-weight: bold;
  color: #1b85d0;
  position: relative;
  line-height: 1.5;
  font-size: 115%;
}
@media (min-width: 768px) {
  .faq_q {
    font-size: 120%;
  }
}

.faq_q::before {
  position: absolute;
  content: "Q.";
  top: 0;
  left: 0;
  font-size: 125%;
}
@media (min-width: 768px) {
  .faq_q::before {
    top: -0.4em;
    font-size: 150%;
  }
}

.faq_a {
  padding-left: 2em;
  position: relative;
  margin: 1em 0 2em;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .faq_a {
    font-size: 110%;
  }
}

.faq_a::before {
  position: absolute;
  content: "A.";
  top: 0;
  left: 0;
  font-size: 125%;
  font-weight: bold;
}
@media (min-width: 768px) {
  .faq_a::before {
    top: -0.4em;
    font-size: 150%;
  }
}

/*---------- lecturer ----------*/
.lecturer {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .lecturer {
    margin-top: 40px;
  }
}

.lecturer_number {
  margin-top: 10px;
  color: #c0a379;
}
@media (min-width: 768px) {
  .lecturer_number {
    margin-top: 20px;
    font-size: 110%;
  }
}

@media (min-width: 768px) {
  .lecturer_title {
    font-size: 110%;
  }
}

.mainview-top {
  position: relative;
}

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

intro

---------------------------------------*/
#intro {
  margin: 0;
  padding: 10px 0;
  font-size: 100%;
  font-weight: bold;
  font-family: "Sawarabi Mincho", serif;
  line-height: 150%;
  text-align: center;
  color: #fff;
  background: #20ac39;
  text-shadow: 0 1px 3px #523c1f;
}

.intro2 {
  margin: 0;
  padding: 10px 0;
  font-size: 110%;
  font-weight: bold;
  font-family: "Sawarabi Mincho", serif;
  line-height: 150%;
  text-align: center;
  color: #3c2003;
  background: #fcf9f5;
}

@media (min-width: 768px) {
  .intro2 {
    font-size: 150%;
    padding: 16px 0;
  }
}
/*---------- topspace ----------*/
.topspace {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .topspace {
    margin-top: 60px;
  }
}

/* floating③ */
.floating {
  display: block;
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9999;
  text-align: center;
  margin: 0;
  padding: 16px 0;
  background: rgba(0, 0, 0, 0.3);
}

.floating__btn {
  margin: 0;
  padding: 0;
  text-align: center;
}

.floating__btn a:link {
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.floating__btn a:hover {
  color: #fff;
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
  transition: 0.3s ease-in-out;
}

.floating__btn a:visited {
  color: #fff;
  text-decoration: none;
}

.btn1 {
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  text-align: center;
  /* ボタンの色変更 */
  background: #dc9738;
  margin: 20px 0;
  max-width: 680px;
}

.size {
  width: 95%;
  margin: 0 auto 0 auto;
  padding: 20px 0;
  font-size: 110%;
  border-radius: 40px;
  box-shadow: 0 0 10px rgba(246, 180, 3, 0.8);
}

@media screen and (min-width: 769px) {
  .floating {
    padding: 24px 0;
  }
  .btn1 {
    display: inline-block;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    text-align: center;
    /* ボタンの色変更 */
    margin: 40px 0;
  }
  .size {
    width: 90%;
    margin: 0 auto 0 auto;
    padding: 20px 0;
    font-size: 24px;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(246, 180, 3, 0.8);
  }
}
/*# sourceMappingURL=style.css.map */

/* フォーム全体のスタイル */
form {
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'ヒラギノ角ゴ ProN W3', Meiryo, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

/* 必須項目の説明文 */
form > *:first-child {
  color: #e74c3c;
  font-size: 12px;
  margin-bottom: 20px;
  font-weight: bold;
}

/* 段落（項目）のスタイル */
p {
  margin: 0 0 15px 0;
}

/* ラベル（項目名）のスタイル */
p:has(+ p input) {
  font-weight: bold;
  color: #333333;
  margin-bottom: 8px;
}

/* 必須マークのスタイル */
p:has(+ p input):before {
  content: '';
}

p:first-of-type:before,
p:nth-of-type(3):before,
p:nth-of-type(5):before {
  content: '※';
  color: #e74c3c;
  font-weight: bold;
  margin-right: 4px;
}

/* 入力フィールドの基本スタイル */
input[type="text"] {
  width: 100%;
  max-width: 300px;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  background-color: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

/* フォーカス時のスタイル */
input[type="text"]:focus {
  outline: none;
  border-color: #4285f4;
  box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.2);
}

/* 姓名フィールドの特別スタイル */
input[name="field_5266821_sei"],
input[name="field_5266821_mei"] {
  width: calc(50% - 10px);
  max-width: 140px;
  display: inline-block;
  margin-right: 20px;
}

input[name="field_5266821_mei"] {
  margin-right: 0;
}

/* 姓名のラベルスタイル */
p:has(input[name="field_5266821_sei"]) {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* メールアドレスと電話番号フィールド */
input[name="field_5266822"],
input[name="field_5266823"] {
  max-width: 350px;
}

/* 年齢フィールド */
input[name="field_5267375"] {
  max-width: 120px;
}

/* プレースホルダーのスタイル */
input::placeholder {
  color: #999999;
  font-style: italic;
}

/* 送信ボタンのスタイル */
input[type="submit"] {
  background-color: #4285f4;
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 20px;
}

input[type="submit"]:hover {
  background-color: #3367d6;
  transform: translateY(-1px);
}

input[type="submit"]:active {
  transform: translateY(0);
}

/* 送信ボタンの段落 */
p:has(input[type="submit"]) {
  text-align: center;
  margin-top: 30px;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  form {
    margin: 20px;
    padding: 20px;
  }
  
  input[name="field_5266821_sei"],
  input[name="field_5266821_mei"] {
    width: 100%;
    max-width: none;
    margin-bottom: 10px;
    margin-right: 0;
  }
  
  p:has(input[name="field_5266821_sei"]) {
    flex-direction: column;
    align-items: flex-start;
  }
  
  input[type="text"] {
    max-width: none;
    width: 100%;
  }
}

/* フォームの背景色（ページ全体） */
body {
  background-color: #f5f5f5;
  margin: 0;
  padding: 0 0;
}


/* 特選車 */
body main #car_swiper{
  padding: 30px 5px;
}
body main #car_swiper h1{
  color: #FFFFFF;
  background-color: rgba(233, 69, 45, 1);
  font-size: 30px;
  font-weight: bold;
  padding: 15px 0;
  margin-bottom: 15px;
}
body main #car_swiper .swiper-button-prev,
body main #car_swiper .swiper-button-next {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
body main #car_swiper .swiper-button-prev::after,
body main #car_swiper .swiper-button-next::after {
  bottom: 0;
  content: "";
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
}
/* 前への矢印カスタマイズ */
body main #car_swiper .swiper-button-prev {
  background-image: url(../images/icon_prev.webp);
}
/* 次への矢印カスタマイズ */
body main #car_swiper .swiper-button-next {
  background-image: url(../images/icon_next.webp);
}
/* 画像サイズ調整 */
body main #car_swiper .swiper-slide img {
  height: auto;
  width: 100%;
}
body main #car_swiper .car_swiper_01 a{
  display: block;
  transition: .5s;
}
body main #car_swiper .car_swiper_01 a:hover{
  opacity: 0.7;
}
body main #car_swiper .car_swiper_01 .more_btn{
  color: #FFFFFF;
  background-color: rgba(251, 0, 0, 1);
  border-radius: 10px;
  font-size: 30px;
  font-weight: bold;
  margin-top: 15px;
  padding: 20px 0;
}
@media print, screen and (max-width: 992px) {
  body main #car_swiper{
    padding: 30px 0px;
  }
  body main #car_swiper h1{
    background-color: rgba(251, 0, 0, 1);
  }
  body main #car_swiper .car_swiper_01 .more_btn{
    padding: 10px 0;
    font-size: 24px;
  }
}

/* Swiperスライダーの基本スタイル修正 */
#car_swiper {
  padding: 30px 5px;
  position: relative;
}

#car_swiper .swiper {
  width: 100%;
  padding-bottom: 50px; /* ページネーション用のスペース */
}

#car_swiper .swiper-slide {
  text-align: center;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#car_swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ナビゲーションボタンの調整 */
#car_swiper .swiper-button-next,
#car_swiper .swiper-button-prev {
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  margin-top: 0;
  color: #fff;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
}

#car_swiper .swiper-button-next:after,
#car_swiper .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

/* ページネーション */
#car_swiper .swiper-pagination {
  bottom: 10px;
  position: absolute;
}

#car_swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ccc;
  opacity: 0.7;
}

#car_swiper .swiper-pagination-bullet-active {
  background: #ff6b35;
  opacity: 1;
}

/* フローティングボタンのアニメーション */
.floating {
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
}

.floating.show {
  transform: translateY(0);
  opacity: 1;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  #car_swiper {
    padding: 20px 0;
  }
  
  #car_swiper .swiper-button-next,
  #car_swiper .swiper-button-prev {
    width: 36px;
    height: 36px;
  }
  
  #car_swiper .swiper-button-next:after,
  #car_swiper .swiper-button-prev:after {
    font-size: 14px;
  }
}

.btn-default {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #dc9738;
  --bs-btn-border-color: #1e88e5;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #1a74c3;
  --bs-btn-hover-border-color: #186db7;
  --bs-btn-focus-shadow-rgb: 64, 154, 233;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #186db7;
  --bs-btn-active-border-color: #1766ac;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #ffffff;
  --bs-btn-disabled-bg: #1e88e5;
  --bs-btn-disabled-border-color: #1e88e5;
}