@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;500;600;700&display=swap");
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  /* background: transparent; */
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  text-align: left;
  vertical-align: top;
  font-weight: normal;
}

td {
  text-align: left;
  vertical-align: top;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select, textarea, img {
  vertical-align: middle;
}

ul, dl, ol {
  list-style: none;
}

em {
  font-style: normal;
}

* {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}



/* ========================================
    ■ 必須設定
======================================== */
/* 頻出の色 */
.font_blueblack {
  color: #002F5D;
}

.font_babyblue {
  color: #D5E9FF;
}

.font_coolblue {
  color: #2364A4;
}

.font_yelloworange {
  color: #FFA741;
}

.font_redorange {
  color: #FF6C22;
}

.font_ivory {
  color: #FCF7EA;
}

/* 関数
----------------------------- */
.kenten, .kenten_half {
  padding: 0.35em 0;
  background-repeat: repeat-x;
  background-size: 1em 0.5em;
  background-position: top left;
  background-image: radial-gradient(0.4em 0.4em at center center, #000 50%, transparent 50%);
  font-feature-settings: normal;
}

.kenten_half {
  background-size: 0.65em 0.5em;
}

.is_sp {
  display: block;
}

@media screen and (min-width: 751px) {
  .is_sp {
    display: none;
  }
}

.is_pc {
  display: none;
}

@media screen and (min-width: 751px) {
  .is_pc {
    display: block;
  }
}

img.is_sp,
br.is_sp {
  display: inline-block;
}

@media screen and (min-width: 751px) {
  img.is_sp,
  br.is_sp {
    display: none;
  }
}

img.is_pc,
br.is_pc {
  display: none;
}

@media screen and (min-width: 751px) {
  img.is_pc,
  br.is_pc {
    display: inline-block;
  }
}

/* ========================================
    ■ General
======================================== */
/* 1px = 0.01remに変換（100px = 1rem）*/
html {
  font-size: 13.33333vw;
}

@media screen and (min-width: 751px) {
  html {
    font-size: 6.51042vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  line-height: 1.6;
  /* background: #fff; */
  -webkit-text-size-adjust: 100%;
  font-size: 0.28rem;
}

@media screen and (min-width: 751px) {
  body {
    font-size: 0.24rem;
  }
}

a {
  color: #2364A4;
  text-decoration: underline;
  transition: 0.2s ease;
}

a::before, a::after {
  transition: 0.2s ease;
}

a:hover {
  text-decoration: none;
  transition: 0.2s ease;
}

a:hover::before, a:hover::after {
  transition: 0.2s ease;
}

img,
video,
object {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  border: none;
}

section {
  position: relative;
}

mark {
  background: none;
  color: inherit;
  font-weight: inherit;
  font-style: inherit;
}

picture {
  display: block;
}

/* utility class
----------------------------- */
.wrap {
  position: relative;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

@media screen and (min-width: 751px) {
  .wrap {
    max-width: 1536px;
  }
}

.clearfix {
  overflow: hidden;
  zoom: 1;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.hover:hover {
  transition: 0.2s ease;
}

.hover:hover:hover {
  transform: scale(0.98, 0.98);
  transition: 0.2s ease;
}

.scrollbar::-webkit-scrollbar {
  background: #ccc;
  width: 0.1rem;
}

.scrollbar::-webkit-scrollbar-thumb {
  background: #aaa;
}

table.tbl_block {
  display: block;
  text-align: left;
}

@media screen and (min-width: 751px) {
  table.tbl_block {
    display: table;
  }
}

table.tbl_block tbody {
  display: block;
  text-align: left;
}

@media screen and (min-width: 751px) {
  table.tbl_block tbody {
    display: table-row-group;
  }
}

table.tbl_block tr {
  display: block;
  text-align: left;
}

@media screen and (min-width: 751px) {
  table.tbl_block tr {
    display: table-row;
  }
}

table.tbl_block th, table.tbl_block td {
  display: block;
  text-align: left;
}

/* @media screen and (min-width: 751px) {
  table.tbl_block th, table.tbl_block td {
    display: table-cell;
  }
} */

.cmn_tit01::after, .sec02_point > li::before, .sec02_point_list > li::before, .sec03_merit_balloon::after, .form_tit01::after, .sec10_tit01::after {
  content: '';
  display: block;
}

/* マーカー */
mark {
  background: linear-gradient(0deg, #F3F3F3 50%, transparent 50%);
}

.marker_blueblack_full {
  background: #002F5D;
  padding: 0 0.1rem;
  color: #fff;
}

.marker_powderblue_full {
  background: #E0EFFF;
  padding: 0 0.1rem;
}

.underline_yelloworange {
  border-bottom: solid 2px #FFA741;
}

/* ・リスト */
.list_dot > li {
  position: relative;
  padding-left: 1em;
}

.list_dot > li::before {
  content: '・';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}

.slash {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  margin: 0 auto;
  text-align: center;
}

.slash::before, .slash::after {
  content: '';
  display: block;
  background: #000;
  width: 1px;
  height: 1.5em;
  margin: 0 1em;
}

.slash::before {
  transform: rotate(-30deg);
}

.slash::after {
  transform: rotate(30deg);
}

.slash_txt {
  white-space: nowrap;
}

/* fadeInアニメーション用 */
.set_fade {
  opacity: 0;
}

/* 吹き出し型の見出し */
.cmn_tit01 {
  position: relative;
  background: #002F5D;
  width: 6.7rem;
  margin: 0 auto;
  padding: 0.3rem 0;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 0.4rem;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 751px) {
  .cmn_tit01 {
    padding: 0.2rem 0;
    font-size: 0.36rem;
  }
}

.cmn_tit01::after {
  position: absolute;
  left: calc(50% - 0.12rem);
  bottom: -0.2rem;
  background: #002F5D;
  width: 0.24rem;
  height: 0.22rem;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

@media screen and (min-width: 751px) {
  .cmn_tit01::after {
    bottom: -0.15rem;
    height: 0.17rem;
  }
}

/* CVボタン周り */
.cmn_btn_wrap {
  margin: 0.2rem 0 0;
}

@media screen and (min-width: 751px) {
  .cmn_btn_wrap {
    margin: 0.35rem 0 0;
  }
}

.cmn_btn_tit01 {
  color: #002F5D;
  font-size: 0.22rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  margin: 0 auto;
  text-align: center;
}

.cmn_btn_tit01::before, .cmn_btn_tit01::after {
  content: '';
  display: block;
  background: #002F5D;
  width: 1px;
  height: 1.5em;
  margin: 0 1em;
}

.cmn_btn_tit01::before {
  transform: rotate(-30deg);
}

.cmn_btn_tit01::after {
  transform: rotate(30deg);
}

@media screen and (min-width: 751px) {
  .cmn_btn_tit01 {
    display: none;
  }
}

.cmn_btn_list {
  margin: 0.2rem 0 0;
}

@media screen and (min-width: 751px) {
  .cmn_btn_list {
    display: flex;
    justify-content: center;
    margin: 0;
  }
}

.cmn_btn_list > li {
  margin: 0 auto;
}

@media screen and (max-width: 750px) {
  .cmn_btn_list > li:nth-of-type(1) {
    width: 6.7rem;
  }
  .cmn_btn_list > li:nth-of-type(2) {
    width: 4.8rem;
    margin-top: 0.2rem;
  }
}

@media screen and (min-width: 751px) {
  .cmn_btn_list > li {
    width: 5.17rem;
    margin: 0 0.23rem;
  }
}

.cmn_btn_list a {
  display: block;
}

/* ========================================
    ■ keyv
======================================== */
#keyv {
  background: url(../images/keyv_bg01.png) no-repeat center top;
  background-size: cover;
  padding: 0 0 0.45rem;
}

@media screen and (min-width: 751px) {
  #keyv {
    background-image: url(../images/keyv_bg01_pc.png);
    padding: 0 0 0.55rem;
  }
}

.keyv_body {
  position: relative;
  padding: 0.45rem 0 0;
}

.keyv_body_tit01 {
  width: 6.74rem;
  margin: 0 auto;
}

@media screen and (min-width: 751px) {
  .keyv_body_tit01 {
    width: 6.12rem;
    margin: 0 0 0 1.5rem;
  }
}

.keyv_body_img01 {
  position: absolute;
  left: calc(50% - 3.42rem);
  top: 3.9rem;
  width: 6.84rem;
}

@media screen and (min-width: 751px) {
  .keyv_body_img01 {
    left: 7.9rem;
    top: 1.5rem;
  }
}

.keyv_body_point {
  display: flex;
  justify-content: center;
  margin: 2.8rem auto 0;
}

@media screen and (min-width: 751px) {
  .keyv_body_point {
    justify-content: flex-start;
    margin: 0 0 0 1.78rem;
  }
}

.keyv_body_point > li {
  width: 2rem;
  margin: 0 0.17rem;
}

@media screen and (min-width: 751px) {
  .keyv_body_point > li {
    width: 1.63rem;
    margin: 0 0.3rem 0 0;
  }
}

.keyv_iso {
  display: flex;
  align-items: center;
  background: #fff;
  border: solid 2px #D5E9FF;
  width: 6.7rem;
  margin: 0.4rem auto 0;
  padding: 0.15rem 0.2rem;
}

@media screen and (min-width: 751px) {
  .keyv_iso {
    width: 10.8rem;
    margin: 0.3rem auto 0;
  }
}

.keyv_iso_head {
  flex-shrink: 0;
  margin: 0 0.2rem 0 0;
}

@media screen and (min-width: 751px) {
  .keyv_iso_head {
    margin: 0 0.35rem 0 0;
  }
}

.keyv_iso_head_txt01 {
  color: #002F5D;
  font-size: 0.16rem;
}

@media screen and (min-width: 751px) {
  .keyv_iso_head_txt01 {
    font-size: 0.14rem;
  }
}

.keyv_iso_head_txt02 {
  background: #002F5D;
  color: #fff;
  font-size: 0.28rem;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 751px) {
  .keyv_iso_head_txt02 {
    font-size: 0.13rem;
  }
}

.keyv_iso_body {
  font-size: 0.18rem;
}

@media screen and (min-width: 751px) {
  .keyv_iso_body {
    font-size: 0.14rem;
  }
}

/* ========================================
    ■ sec01
======================================== */
#sec01 {
  padding: 0.8rem 0;
}

@media screen and (min-width: 751px) {
  #sec01 {
    padding: 0.6rem 0;
  }
}

.sec01_tit01 {
  background: url(../images/sec01_tit01_bg01.png) no-repeat center bottom;
  background-size: auto 0.2rem;
  width: 6.7rem;
  margin: 0 auto;
  padding: 0 0 0.5rem;
  color: #002F5D;
  font-size: 0.4rem;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}

@media screen and (min-width: 751px) {
  .sec01_tit01 {
    width: 10.8rem;
    font-size: 0.34rem;
  }
}

.sec01_tit01 mark {
  font-size: calc(39 / 40 * 100%);
}

.sec01_tit01 b {
  display: inline-block;
  margin: 0.15rem 0 0;
  font-size: calc(48 / 40 * 100%);
  font-weight: 600;
  line-height: 1.4;
}

.sec01_voice {
  margin: 0.95rem 0 0;
}

@media screen and (min-width: 751px) {
  .sec01_voice {
    display: flex;
    flex-wrap: wrap;
    margin: 0.8rem 0 0 1.78rem;
  }
}

.sec01_voice > li {
  opacity: 0;
  position: relative;
  background: #fff;
  box-shadow: 0 0 0.24rem #D5E9FF;
  width: 6.7rem;
  margin: 0 auto;
  padding: 2.23rem 0.4rem 0.5rem;
  line-height: 1.8;
}

@media screen and (max-width: 750px) {
  .sec01_voice > li:nth-of-type(n+2) {
    margin-top: 1.25rem;
  }
}

@media screen and (min-width: 751px) {
  .sec01_voice > li {
    width: 5.56rem;
    margin: 0 0.68rem 0 0;
    padding: 1.28rem 0.45rem 0.35rem;
  }
  .sec01_voice > li:nth-of-type(2) {
    order: 3;
    margin-top: 0.77rem;
  }
  .sec01_voice > li:nth-of-type(3) {
    order: 4;
    margin-top: 0.77rem;
  }
  .sec01_voice > li:nth-of-type(4) {
    order: 2;
  }
}

.sec01_voice_ico {
  position: absolute;
  left: calc(50% - 1.25rem);
  top: -0.55rem;
  width: 2.5rem;
}

@media screen and (min-width: 751px) {
  .sec01_voice_ico {
    left: calc(50% - 0.7rem);
    top: -0.35rem;
    width: 1.4rem;
  }
}

/* ========================================
    ■ sec02
======================================== */
#sec02 {
  padding: 0 0 0.8rem;
}

@media screen and (min-width: 751px) {
  #sec02 {
    padding: 0 0 0.65rem;
  }
}

.sec02_point {
  margin: 0.5rem 0 0;
}

@media screen and (min-width: 751px) {
  .sec02_point {
    margin: 0.65rem 0 0;
  }
}

.sec02_point > li {
  position: relative;
  background: #fff;
  box-shadow: 0 0 0.24rem #D5E9FF;
  width: 6.7rem;
  margin: 0 auto;
  padding: 0.45rem 0 0.3rem;
}

@media screen and (min-width: 751px) {
  .sec02_point > li {
    width: 11.8rem;
    padding: 0.6rem 0 0.65rem;
  }
}

.sec02_point > li::before {
  position: absolute;
  left: 0;
  top: 0;
  background: #2364A4;
  width: 0.67rem;
  height: 0.67rem;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

@media screen and (min-width: 751px) {
  .sec02_point > li::before {
    width: 0.55rem;
    height: 0.55rem;
  }
}

.sec02_point > li:nth-of-type(n+2) {
  margin-top: 0.6rem;
}

@media screen and (min-width: 751px) {
  .sec02_point > li:nth-of-type(n+2) {
    margin-top: 0.45rem;
  }
}

.sec02_point_tit01 {
  color: #002F5D;
  font-size: 0.32rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 751px) {
  .sec02_point_tit01 {
    font-size: 0.26rem;
  }
}

.sec02_point_tit01 b {
  font-size: calc(36 / 32 * 100%);
}

.sec02_point_body {
  margin: 0.45rem 0 0;
}

@media screen and (min-width: 751px) {
  .sec02_point_body {
    display: flex;
    margin: 0.55rem 0.5rem 0;
  }
}

.sec02_point_img {
  width: 6rem;
  margin: 0 auto;
}

@media screen and (min-width: 751px) {
  .sec02_point_img {
    flex-shrink: 0;
    width: 4.98rem;
    margin: 0 0.45rem 0 0;
  }
}

.sec02_point_txt {
  width: 6.14rem;
  margin: 0.3rem auto 0;
  font-size: 0.25rem;
}

@media screen and (min-width: 751px) {
  .sec02_point_txt {
    flex-grow: 1;
    width: auto;
    margin: 0;
    font-size: 0.22rem;
  }
}

.sec02_point_txt > p:nth-child(n+2) {
  margin-top: 0.3rem;
}

@media screen and (min-width: 751px) {
  .sec02_point_txt > p:nth-child(n+2) {
    margin-top: 0.15rem;
  }
}

.sec02_point_list {
  color: #002F5D;
  font-size: 0.28rem;
  font-weight: 700;
}

@media screen and (min-width: 751px) {
  .sec02_point_list {
    font-size: 0.25rem;
  }
}

.sec02_point_list > li {
  position: relative;
  border-bottom: solid 2px #BAE8CC;
  padding: 0.1rem 0 0 0.45rem;
}

@media screen and (min-width: 751px) {
  .sec02_point_list > li {
    padding: 0.1rem 0 0 0.3rem;
  }
}

.sec02_point_list > li::before {
  position: absolute;
  left: 0;
  top: 0.12rem;
  background: url(../images/sec02_point_list_ico01.png) no-repeat center center;
  background-size: 100% 100%;
  width: 0.34rem;
  height: 0.34rem;
}

@media screen and (min-width: 751px) {
  .sec02_point_list > li::before {
    top: 0.2rem;
    width: 0.2rem;
    height: 0.2rem;
  }
}

/* ========================================
    ■ sec03
======================================== */
#sec03 {
  background: url(../images/sec03_bg01.png) no-repeat center top;
  background-size: cover;
  padding: 0.8rem 0;
}

@media screen and (min-width: 751px) {
  #sec03 {
    background-image: url(../images/sec03_bg01_pc.png);
    padding: 0.6rem 0;
  }
}

.sec03_merit > li {
  position: relative;
  background: #fff;
  width: 6.7rem;
  margin: 0 auto;
}

@media screen and (min-width: 751px) {
  .sec03_merit > li {
    width: 11.8rem;
  }
}

.sec03_merit > li:nth-of-type(n+2) {
  margin-top: 1rem;
}

@media screen and (min-width: 751px) {
  .sec03_merit > li:nth-of-type(n+2) {
    margin-top: 0.9rem;
  }
}

.sec03_merit_balloon {
  position: absolute;
  left: calc(50% - 1.3rem);
  top: -0.35rem;
  border-radius: 100px;
  background: #fff;
  width: 2.6rem;
  padding: 0.1rem 0;
  font-size: 0.28rem;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 751px) {
  .sec03_merit_balloon {
    top: -0.45rem;
  }
}

.sec03_merit_balloon::after {
  position: absolute;
  left: calc(50% + 0.5rem);
  bottom: -0.15rem;
  background: #fff;
  width: 0.26rem;
  height: 0.26rem;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.sec03_merit_balloon + .sec03_merit_tit01 {
  padding-top: 0.4rem;
}

@media screen and (min-width: 751px) {
  .sec03_merit_balloon + .sec03_merit_tit01 {
    padding-top: 0.27rem;
  }
}

.sec03_merit_tit01 {
  background: #FFA741;
  padding: 0.1rem 0;
  color: #fff;
  font-size: 0.36rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 751px) {
  .sec03_merit_tit01 {
    padding: 0.25rem 0;
    font-size: 0.34rem;
  }
}

.sec03_merit_box01 {
  padding: 0.15rem 0.3rem 0.35rem;
}

@media screen and (min-width: 751px) {
  .sec03_merit_box01 {
    display: flex;
    padding: 0.55rem 0.3rem 0.45rem;
  }
}

@media screen and (min-width: 751px) {
  .sec03_merit_box01_img01 {
    flex-shrink: 0;
    width: 4.97rem;
    margin: 0 0.42rem 0 0;
  }
}

.sec03_merit_box01_txt01 {
  margin: 0.3rem 0 0;
  font-size: 0.25rem;
  line-height: 1.8;
}

@media screen and (min-width: 751px) {
  .sec03_merit_box01_txt01 {
    margin: 0;
    font-size: 0.24rem;
  }
}

.sec03_merit_box02 {
  padding: 0.35rem 0.35rem 0.45rem;
}

@media screen and (min-width: 751px) {
  .sec03_merit_box02 {
    padding: 0.5rem 0.5rem 0.65rem;
  }
}

.sec03_merit_box02_tit01 {
  color: #002F5D;
  font-size: 0.36rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 751px) {
  .sec03_merit_box02_tit01 {
    font-size: 0.34rem;
  }
}

.sec03_merit_box02_list {
  margin: 0.3rem 0 0;
}

@media screen and (min-width: 751px) {
  .sec03_merit_box02_list {
    display: flex;
    justify-content: space-between;
    margin: 0.25rem 0 0;
  }
}

.sec03_merit_box02_list > li {
  background: #FCF7EA;
  padding: 0.25rem 0.2rem 0.2rem;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .sec03_merit_box02_list > li:nth-of-type(n+2) {
    margin-top: 0.4rem;
  }
}

@media screen and (min-width: 751px) {
  .sec03_merit_box02_list > li {
    width: 3.34rem;
    padding: 0.2rem 0.3rem 0.35rem;
  }
  .sec03_merit_box02_list > li .sec03_merit_box02_tit01 {
    font-size: 0.24rem;
  }
}

.sec03_merit_box02_img {
  width: 100%;
  height: 4.52rem;
  margin: 0.2rem 0 0;
}

@media screen and (min-width: 751px) {
  .sec03_merit_box02_img {
    height: 2.6rem;
  }
}

.sec03_merit_box02_img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

/* ========================================
    ■ sec04
======================================== */
#sec04 {
  padding: 0.6rem 0 0.8rem;
}

@media screen and (min-width: 751px) {
  #sec04 {
    padding: 0.6rem 0 0.65rem;
  }
}

.sec04_effect {
  margin: 1rem 0 0;
}

@media screen and (min-width: 751px) {
  .sec04_effect {
    display: flex;
    flex-wrap: wrap;
    margin: 0.85rem 0 0 1.78rem;
  }
}

.sec04_effect > li {
  position: relative;
  background: #fff;
  box-shadow: 0 0 0.24rem #E0EFFF;
  width: 6.7rem;
  margin: 0 auto;
  padding: 3.25rem 0 0.4rem;
}

@media screen and (max-width: 750px) {
  .sec04_effect > li:nth-of-type(n+2) {
    margin-top: 0.85rem;
  }
}

@media screen and (min-width: 751px) {
  .sec04_effect > li {
    width: 5.56rem;
    margin: 0 0.68rem 0 0;
    padding: 2.38rem 0 0.4rem;
  }
  .sec04_effect > li:nth-of-type(n+3) {
    margin-top: 0.8rem;
  }
}

.sec04_effect_img {
  position: absolute;
  left: calc(50% - 1.6rem);
  top: -0.45rem;
  width: 3.2rem;
}

@media screen and (min-width: 751px) {
  .sec04_effect_img {
    left: calc(50% - 1.2rem);
    top: -0.4rem;
    width: 2.4rem;
  }
}

.sec04_effect_tit01 {
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-size: 0.48rem;
  text-align: center;
}

@media screen and (min-width: 751px) {
  .sec04_effect_tit01 {
    font-size: 0.35rem;
  }
}

.sec04_effect_tit01::before, .sec04_effect_tit01::after {
  display: inline-block;
  position: absolute;
  top: -0.6rem;
  color: #FFA741;
  font-size: 1.2rem;
}

@media screen and (min-width: 751px) {
  .sec04_effect_tit01::before, .sec04_effect_tit01::after {
    top: -0.35rem;
    font-size: 0.7rem;
  }
}

.sec04_effect_tit01::before {
  content: '“';
  left: 0.2rem;
}

@media screen and (min-width: 751px) {
  .sec04_effect_tit01::before {
    left: 0.5rem;
  }
}

.sec04_effect_tit01::after {
  content: '”';
  right: 0.2rem;
}

@media screen and (min-width: 751px) {
  .sec04_effect_tit01::after {
    right: 0.5rem;
  }
}

.sec04_effect_txt01 {
  margin: 0.35rem 0.45rem 0;
  line-height: 1.8;
}

@media screen and (min-width: 751px) {
  .sec04_effect_txt01 {
    margin: 0.25rem 0.5rem 0;
  }
}

/* ========================================
    ■ cta
======================================== */
.cta {
  background: url(../images/cta_bg01.png) no-repeat center top;
  background-size: cover;
  padding: 0.25rem 0 0.65rem;
}

@media screen and (min-width: 751px) {
  .cta {
    background-image: url(../images/cta_bg01_pc.png);
    padding: 0.4rem 0 0.55rem;
  }
}

.cta .cmn_btn_wrap {
  margin-top: 0.3rem;
}

@media screen and (min-width: 751px) {
  .cta .cmn_btn_wrap {
    margin-top: 0.45rem;
  }
}

.cta .cmn_btn_tit01 {
  color: #fff;
}

.cta .cmn_btn_tit01::before, .cta .cmn_btn_tit01::after {
  background: #fff;
}

.cta_head {
  width: 5.7rem;
  margin: 0 auto;
}

@media screen and (min-width: 751px) {
  .cta_head {
    width: 5.4rem;
  }
}

.cta_tit01 {
  margin: 0.15rem 0 0;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 0.5rem;
  font-weight: 600;
  text-shadow: 0 0 0.12rem #39AEE0;
  text-align: center;
}

@media screen and (min-width: 751px) {
  .cta_tit01 {
    margin: 0.3rem 0 0;
    font-size: 0.48rem;
  }
}

.cta_txt01 {
  margin: 0.2rem 0 0;
  color: #fff;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 751px) {
  .cta_txt01 {
    margin: 0.05rem 0 0;
  }
}

/* ========================================
    ■ sec05
======================================== */
#sec05 {
  padding: 0.8rem 0;
}

@media screen and (min-width: 751px) {
  #sec05 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 2.28rem;
  }
}

.sec05_tit01 {
  color: #002F5D;
  font-size: 0.48rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  text-align: center;
}

@media screen and (min-width: 751px) {
  .sec05_tit01 {
    font-size: 0.44rem;
    text-align: left;
  }
}

.sec05_img01 {
  width: 6.7rem;
  margin: 0.45rem auto 0;
}

@media screen and (min-width: 751px) {
  .sec05_img01 {
    width: 5.4rem;
    margin: 0;
  }
}

/* ========================================
    ■ sec06
======================================== */
#sec06 {
  background: #F8F6EF;
  padding: 0.85rem 0 0;
}

@media screen and (min-width: 751px) {
  #sec06 {
    background: url(../images/sec06_bg02_pc.png) no-repeat center bottom, url(../images/sec06_bg01_pc.png) no-repeat center top #F8F6EF;
    background-size: 100% auto, 100% auto, contain;
    padding: 0.6rem 0;
  }
}

.sec06_product {
  margin: 0.45rem 0 0;
}

@media screen and (min-width: 751px) {
  .sec06_product {
    margin: 0.5rem 0 0;
  }
}

.sec06_product > li {
  background: url(../images/sec06_bg01.png) no-repeat center bottom;
  background-size: 100% auto;
  padding: 0 0 1.1rem;
}

@media screen and (min-width: 751px) {
  .sec06_product > li {
    background: none;
    padding: 0;
  }
  .sec06_product > li:nth-of-type(n+2) {
    margin-top: 0.6rem;
  }
}

.sec06_product > li.foot .sec06_product_tit01 {
  letter-spacing: 0;
}

.sec06_product_tit01 {
  color: #002F5D;
  font-size: 0.36rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
}

.sec06_product_tit01 b {
  font-size: calc(73 / 36 * 100%);
}

@media screen and (min-width: 751px) {
  .sec06_product_tit01 b {
    font-size: calc(58 / 36 * 100%);
  }
}

.sec06_product_box {
  position: relative;
  background: #fff;
  box-shadow: 0 0 0.24rem #E0EFFF;
  width: 6.7rem;
  margin: 1.05rem auto 0;
  padding: 0 0 0.35rem;
}

@media screen and (min-width: 751px) {
  .sec06_product_box {
    display: flex;
    justify-content: space-between;
    width: 11.8rem;
    margin: 0.3rem auto 0;
    padding: 0.55rem 0.5rem 0.5rem;
  }
}

.sec06_product_detail {
  position: relative;
  padding: 2.65rem 0 0;
}

@media screen and (min-width: 751px) {
  .sec06_product_detail {
    width: 5.2rem;
    padding: 0;
  }
}

@media screen and (max-width: 750px) {
  .sec06_product_detail_img {
    position: absolute;
    left: calc(50% - 3rem);
    top: -0.8rem;
    width: 6rem;
  }
}

.sec06_product_detail_txt01 {
  margin: 0 0.5rem;
}

@media screen and (min-width: 751px) {
  .sec06_product_detail_txt01 {
    margin: 0.45rem 0 0;
    font-size: 0.25rem;
    letter-spacing: 0.03em;
  }
}

.sec06_product_example {
  margin: 0.5rem 0.35rem 0;
}

@media screen and (min-width: 751px) {
  .sec06_product_example {
    width: 5.2rem;
    margin: 0;
  }
}

.sec06_product_example_tit01 {
  background: linear-gradient(-10deg, #195793 50%, #2364A4 50%);
  padding: 0.2rem 0;
  color: #fff;
  font-size: 0.33rem;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 751px) {
  .sec06_product_example_tit01 {
    padding: 0.1rem 0;
    font-size: 0.25rem;
  }
}

.sec06_product_example_list {
  display: flex;
  justify-content: space-between;
  margin: 0.2rem 0 0;
  font-weight: 700;
  text-align: center;
}

.sec06_product_example_list > li {
  width: 1.85rem;
  cursor: pointer;
}

@media screen and (min-width: 751px) {
  .sec06_product_example_list > li {
    width: 1.6rem;
  }
}

.sec06_product_example_list > li:hover img {
  transform: scale(1.1);
}

.sec06_product_example_list figure {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.sec06_product_example_list figure > img {
  object-fit: cover;
  transition: 0.2s ease;
}

.sec06_product_example_list figcaption {
  margin: 0.2rem 0 0;
}

@media screen and (min-width: 751px) {
  .sec06_product_example_list figcaption {
    margin: 0.08rem 0 0;
  }
}

.sec06_product_foot {
  margin: 0.45rem 0 0;
}

@media screen and (min-width: 751px) {
  .sec06_product_foot {
    display: flex;
    justify-content: space-between;
    width: 11.8rem;
    margin: 0.25rem auto 0;
  }
}

.sec06_product_foot > li {
  width: 6.7rem;
  margin: 0 auto;
}

@media screen and (max-width: 750px) {
  .sec06_product_foot > li:nth-of-type(n+2) {
    margin-top: 0.65rem;
  }
}

@media screen and (min-width: 751px) {
  .sec06_product_foot > li {
    width: 5.64rem;
    margin: 0;
  }
}

/* ========================================
    ■ sec07
======================================== */
#sec07 {
  background: url(../images/sec07_bg01.png) no-repeat center top #FCF7EA;
  background-size: 100% auto;
  padding: 1.35rem 0 0.8rem;
}

@media screen and (min-width: 751px) {
  #sec07 {
    background: url(../images/sec07_bg01_pc.png) no-repeat center top #FCF7EA;
    background-size: 100% auto;
    padding: 0.6rem 0 0.9rem;
  }
}

.sec07_result {
  background: #fff;
  border: solid 0.06rem #E0EFFF;
  width: 6.7rem;
  margin: 0 auto;
  padding: 0.35rem 0;
}

@media screen and (min-width: 751px) {
  .sec07_result {
    width: 11.8rem;
    padding: 0.45rem 0 0.6rem;
  }
}

.sec07_result_head {
  font-family: "Noto Serif JP", serif;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.sec07_result_head_txt01 {
  font-size: 0.33rem;
}

.sec07_result_head_txt01 b {
  font-size: calc(55 / 33 * 100%);
  font-weight: inherit;
}

.sec07_result_head_tit01 {
  font-size: 0.4rem;
}

.sec07_result_body {
  margin: 0.3rem 0 0;
}

@media screen and (min-width: 751px) {
  .sec07_result_body {
    display: flex;
    align-items: center;
    margin: 0.5rem 0.9rem 0 0.5rem;
  }
}

.sec07_result_body_logo {
  width: 6.08rem;
  margin: 0 auto;
}

@media screen and (min-width: 751px) {
  .sec07_result_body_logo {
    flex-shrink: 0;
    width: 4.82rem;
    margin: 0 1rem 0 0;
  }
}

.sec07_result_body_txt01 {
  width: 5.84rem;
  margin: 0.35rem auto 0;
  font-size: 0.26rem;
}

@media screen and (min-width: 751px) {
  .sec07_result_body_txt01 {
    flex-grow: 1;
    width: auto;
    margin: 0;
    font-size: 0.23rem;
  }
}

/* ========================================
    ■ sec08
======================================== */
.sec08_head {
  position: relative;
  background: #2364A4;
  padding: 0.55rem 0 0.35rem;
}

@media screen and (min-width: 751px) {
  .sec08_head {
    padding: 0.6rem 0 0.55rem;
  }
}

.sec08_head_balloon {
  position: absolute;
  left: calc(50% - 1.3rem);
  top: -0.3rem;
  width: 2.6rem;
}

.sec08_head_tit01 {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 0.4rem;
  text-align: center;
  letter-spacing: 0.05em;
}

.sec08_body {
  background: url(../images/sec08_body_bg01.png) no-repeat center top;
  background-size: cover;
  padding: 2.4rem 0 1.15rem;
}

@media screen and (min-width: 751px) {
  .sec08_body {
    background-image: url(../images/sec08_body_bg01_pc.png);
    padding: 0.65rem 0 0.6rem;
  }
}

.sec08_body_welfare {
  position: relative;
  background: #fff;
  box-shadow: 0 0 0.24rem #E0EFFF;
  width: 6.7rem;
  margin: 0 auto;
  padding: 1.6rem 0.5rem 0.45rem;
}

@media screen and (min-width: 751px) {
  .sec08_body_welfare {
    display: flex;
    align-items: center;
    width: 11.8rem;
    padding: 0.55rem 0.5rem;
  }
}

@media screen and (max-width: 750px) {
  .sec08_body_welfare_img01 {
    position: absolute;
    left: calc(50% - 3rem);
    top: -1.9rem;
    width: 6rem;
  }
}

@media screen and (min-width: 751px) {
  .sec08_body_welfare_img01 {
    flex-shrink: 0;
    width: 5.4rem;
    margin: 0 0.45rem 0 0;
  }
}

/* ========================================
    ■ sec09
======================================== */
#sec09 {
  background: url(../images/sec09_bg01.png) no-repeat center top;
  background-size: cover;
  padding: 0.8rem 0 0.9rem;
}

@media screen and (min-width: 751px) {
  #sec09 {
    background-image: url(../images/sec09_bg01_pc.png);
    padding: 1.15rem 0 0.6rem;
  }
}

.sec09_interview {
  position: relative;
  background: #fff;
  box-shadow: 0 0 0.12rem #D5E9FF;
  width: 6.7rem;
  margin: 0 auto;
  padding: 0 0 0.5rem;
}

@media screen and (min-width: 751px) {
  .sec09_interview {
    width: 11.8rem;
    padding: 0.9rem 0.5rem 0.65rem;
  }
}

@media screen and (min-width: 751px) {
  .sec09_interview .cmn_tit01 {
    position: absolute;
    left: calc(50% - 3.35rem);
    top: -0.55rem;
  }
}

.sec09_interview_tit01 {
  margin: 0.45rem 0 0;
  color: #002F5D;
  font-size: 0.36rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 751px) {
  .sec09_interview_tit01 {
    margin: 0;
    font-size: 0.32rem;
  }
}

.sec09_interview_box01 {
  width: 6rem;
  margin: 0.45rem auto 0;
}

@media screen and (min-width: 751px) {
  .sec09_interview_box01 {
    display: flex;
    width: 100%;
    margin: 0.35rem auto 0;
  }
}

@media screen and (min-width: 751px) {
  .sec09_interview_box01_img {
    flex-shrink: 0;
    width: 5.18rem;
    margin: 0 0.45rem 0 0;
  }
}

.sec09_interview_box01_txt01 {
  margin: 0.4rem 0 0;
}

@media screen and (min-width: 751px) {
  .sec09_interview_box01_txt01 {
    margin: 0;
  }
}

.sec09_interview_tit02 {
  border-top: solid 2px #D5E9FF;
  border-bottom: solid 2px #D5E9FF;
  width: 6rem;
  margin: 0.6rem auto 0;
  padding: 0.15rem 0;
  color: #002F5D;
  font-size: 0.36rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 751px) {
  .sec09_interview_tit02 {
    width: 100%;
    margin: 0.65rem auto 0;
    padding: 0.2rem 0;
    font-size: 0.32rem;
  }
}

.sec09_interview_box02 {
  width: 6rem;
  margin: 0.4rem auto 0;
}

@media screen and (min-width: 751px) {
  .sec09_interview_box02 {
    display: flex;
    width: 100%;
    margin: 0.35rem auto 0;
  }
}

@media screen and (min-width: 751px) {
  .sec09_interview_box02_img {
    flex-shrink: 0;
    width: 5.04rem;
    margin: 0 0.6rem 0 0;
  }
}

.sec09_interview_box02_txt01 {
  margin: 0.4rem 0 0;
}

@media screen and (min-width: 751px) {
  .sec09_interview_box02_txt01 {
    margin: 0;
  }
}

/* ========================================
    ■ form
======================================== */
#form {
  background: #151A26;
  padding: 36px 16px 140px;
  /* placeholder */
  /* Google Chrome, Safari, Opera 15+, Android, iOS */
  /* Firefox 18- */
  /* Firefox 19+ */
  /* IE 10+ */
  /* テキスト入力 */
}
/* 
@media screen and (min-width: 751px) {
  #form {
    padding: 0.6rem 3.7rem;
  }
} */

#form :placeholder-shown {
  color: #aaa;
}

#form ::-webkit-input-placeholder {
  color: #aaa;
}

#form :-moz-placeholder {
  color: #aaa;
  opacity: 1;
}

#form ::-moz-placeholder {
  color: #aaa;
  opacity: 1;
}

#form :-ms-input-placeholder {
  color: #aaa;
}

#form input[type='text'], #form textarea,
#form input[type='tel'],
#form input[type='email'] {
  border: none;
  border-radius: 0.12rem;
  box-shadow: none;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0.2rem 0.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1em;
}

@media screen and (min-width: 751px) {
  #form input[type='text'], #form textarea,
  #form input[type='tel'],
  #form input[type='email'] {
    padding: 0.24rem 0.2rem;
    width: 390px;
  }
}

@media screen and (max-width: 750px) {
  #form input[type='text'].postnum, #form textarea.postnum,
  #form input[type='tel'].postnum,
  #form input[type='email'].postnum {
    width: 55%;
  }
}

#form textarea {
  width: 100% !important;
  max-width: none;
  min-height: 2.7rem;
}

@media screen and (min-width: 751px) {
  #form textarea {
    min-height: 2rem;
  }
}

#form .must {
  display: inline-block;
  background: #FF6C22;
  margin: 0;
  padding: 0 0.05rem;
  font-size: calc(24 / 32 * 100%);
}

@media screen and (min-width: 751px) {
  #form .must {
    margin-left: 1em;
  }
}

#form *[type='submit'] {
  display: block;
  background: none;
  margin: 0.4rem 0 0;
  padding: 0;
  text-shadow: none;
  border: none;
  cursor: pointer;
}

@media screen and (min-width: 751px) {
  #form *[type='submit'] {
    margin: 0.3rem auto 0;
  }
}

#form *[type='submit']:hover {
  box-shadow: none;
}

.form_tit01 {
  position: relative;
  padding: 0 0 0.3rem;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 25px;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 751px) {
  .form_tit01 {
    padding: 0 0 0.25rem;
    font-size: 0.36rem;
  }
}

.form_tit01::after {
  position: absolute;
  left: calc(50% - 0.47rem);
  bottom: 0;
  background: #fff;
  width: 0.94rem;
  height: 2px;
}

table.form_input_tbl {
  width: 100%;
  color: #fff;
  font-size: 0.32rem;
}

@media screen and (min-width: 751px) {
  table.form_input_tbl {
    font-size: 0.22rem;
  }
}

table.form_input_tbl th {
  padding: 0.4rem 0 0.15rem;
  font-weight: 700;
}

@media screen and (max-width: 750px) {
  table.form_input_tbl th {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media screen and (min-width: 751px) {
  table.form_input_tbl th {
    padding: 0.58rem 0 0rem;
  }
}

@media screen and (min-width: 751px) {
  table.form_input_tbl td {
    width: 5rem;
    padding: 0.2rem 0 0rem;
    font-size: 0.2rem;
  }
}

.form_privacy {
  margin: 0.45rem 0 0;
  color: #fff;
  font-size: 0.23rem;
  text-align: center;
}

@media screen and (min-width: 751px) {
  .form_privacy {
    margin: 0.6rem 0 0;
    font-size: 0.19rem;
  }
}

.form_privacy a {
  color: inherit;
}

/* ========================================
    ■ sec10
======================================== */
#sec10 {
  padding: 0.8rem 0.4rem;
}

@media screen and (min-width: 751px) {
  #sec10 {
    padding: 0.6rem 2.28rem;
  }
}

.sec10_tit01 {
  position: relative;
  padding: 0 0 0.35rem;
  font-family: "Noto Serif JP", serif;
  font-size: 0.4rem;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 751px) {
  .sec10_tit01 {
    padding: 0 0 0.25rem;
    font-size: 0.36rem;
  }
}

.sec10_tit01::after {
  position: absolute;
  left: calc(50% - 0.47rem);
  bottom: 0;
  background: #002F5D;
  width: 0.94rem;
  height: 2px;
}

table.sec10_comapny {
  border-bottom: solid 2px #CCC;
  width: 100%;
  margin: 0.45rem 0 0;
}

@media screen and (min-width: 751px) {
  table.sec10_comapny {
    margin: 0.6rem 0 0;
  }
}

table.sec10_comapny th {
  border-top: solid 2px #CCC;
  padding: 0.2rem 0 0;
  color: #002F5D;
  font-weight: 700;
}

@media screen and (min-width: 751px) {
  table.sec10_comapny th {
    width: 2.05rem;
    padding: 0.3rem 0;
    text-align: center;
  }
}

table.sec10_comapny td {
  padding: 0.1rem 0 0.2rem;
}

@media screen and (min-width: 751px) {
  table.sec10_comapny td {
    border-top: solid 2px #CCC;
    padding: 0.3rem 0.3rem 0.3rem 0;
  }
}

/* ========================================
    ■ footer
======================================== */
#footer {
  background: #2364A4;
  padding: 0.15rem 0 1.35rem;
  color: #fff;
  text-align: center;
}

@media screen and (min-width: 751px) {
  #footer {
    padding: 0.25rem 0 1.35rem;
    font-size: 0.2rem;
  }
}

#footer.normal {
  padding: 0.15rem 0;
}

@media screen and (min-width: 751px) {
  #footer.normal {
    padding: 0.25rem 0;
  }
}

/* ========================================
    ■ cta_fixed
======================================== */

.btn,
a.btn,
button.btn {
  font-size: 0.7rem;
  font-weight: 10;
  line-height: 1.0;
  position: relative;
  display: inline-block;
  padding: 0.01rem rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

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

a.btn-c {
  font-size: 0.2rem;

  display: block;
  overflow: hidden;

  padding: 1.0rem 0 1.5rem 3rem;

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

a.btn-c:before {
  font-size: 1.2rem;
  font-weight: bold;

  position: absolute;
  top: 1.0rem;
  left: -3.2rem;

  padding: 0 3rem;

  content: "無料!";
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: top;
  transform-origin: top;

  color: #fff;
  background: #eb6100;
  -webkit-box-shadow: 0 3px 3px #e6d900;
  box-shadow: 0 3px 3px #e6d900;
}

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

  border-bottom: 2px solid #e6d900;
  background: #fff21a;
}


/* ========================================
    ■ thanks
======================================== */
#thanks {
  padding: 1.15rem 0 0.4rem;
}

@media screen and (min-width: 751px) {
  #thanks {
    padding: 1.15rem 0 1.3rem;
  }
}

.thanks_box {
  position: relative;
  background: #fff;
  box-shadow: 0 0 0.24rem #E0EFFF;
  width: 6.7rem;
  margin: 0 auto;
  padding: 2.25rem 0.3rem 0.3rem;
  font-size: 0.26rem;
  text-align: center;
}

@media screen and (min-width: 751px) {
  .thanks_box {
    width: 11.8rem;
    padding: 1.85rem 0.5rem 0.65rem;
    font-size: 0.25rem;
  }
}

.thanks_box_tit01 {
  position: absolute;
  left: calc(50% - 1.25rem);
  top: -0.55rem;
  width: 2.5rem;
}

@media screen and (min-width: 751px) {
  .thanks_box_tit01 {
    left: calc(50% - 0.95rem);
    width: 1.9rem;
  }
}

.thanks_box_txt02 {
  background: #E0EFFF;
  margin: 0.25rem 0 0;
  padding: 0.25rem 0;
  color: #002F5D;
}

.thanks_btn01 {
  display: block;
  width: 5rem;
  margin: 0.45rem auto 0;
}

@media screen and (min-width: 751px) {
  .thanks_btn01 {
    width: 3.94rem;
    margin: 0.7rem auto 0;
  }
}
/*# sourceMappingURL=style.css.map */

.btn-wrap-pc-sp {
  position: fixed;
  z-index: 9999;
  bottom: 0; 
  right: 0; 
  left : 0;
  font-size: 1.2rem;
}

img {
max-width: 100%;
height: auto;
overflow: hidden;
}
.sample img {
    position: center;
    margin:auto;
}
.keyframe6 {
  animation-name: poyopoyo;
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}
.one{
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.5s;
}


.qa-006 {
    max-width: 500px;
    margin-bottom: 5px;
    border-bottom: 2px solid #d6dde3;
}

.qa-006 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}

.qa-006 summary::before,
.qa-006 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}

.qa-006 summary::before {
    color: #75bbff;
    content: "Q";
}

.qa-006 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #777;
    border-right: 3px solid #777;
    content: '';
    transition: transform .5s;
}

.qa-006[open] summary::after {
    transform: rotate(225deg);
}

.qa-006 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
}

.qa-006[open] p {
    transform: none;
    opacity: 1;
}

.qa-006 p::before {
    color: #ff8d8d;
    line-height: 1.2;
    content: "A";
}

.backg {
  padding: 0.8rem 0.8rem;
  border-top: 6px double #000;
  border-bottom: 6px double #000;
  background: #e1dede;
  text-align: center;
  font-size: 30px;
}

.center{
	width: 100%;
	margin: 0 auto;
	max-width: 500px;
	text-align: center;
  }

.size{
  width:60%;
  margin: 0 auto;
  text-align: center;
}

* {
  box-sizing: border-box;
}



/* スライダーアニメーションの設定 */
/* 全体設定 */
.css-carousel-slider3 {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.css-carousel-slider3 img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

/* スライド設定 */
.css-carousel-slider3 .slide-wrap {
  width: 300%;
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  z-index: 0;
  animation: css-carousel-slider3 15s infinite;
  animation-delay: 2s;
}
.css-carousel-slider3 .slide-wrap-main {
  width: 100%;
  z-index: 1;
  animation: css-carousel-slider-main3 15s infinite;
  animation-delay: 2s;
}
.css-carousel-slider3 .slide {
  width: 100%;
}



.content1 {
  grid-column: 1;
}
.content2 {
  grid-column: 2;
}
.content3 {
  grid-column: 3;
}
.content4 {
  grid-column: 4;
}


.slideshow {
  /* animation: loop-slide 20s infinite linear 1s both; */
  display: grid;
  grid-column-gap: calc((4 / 390) * 100vw);
  height: 100%;
}

@media screen and (min-width: 661px) {
  .slideshow {
    grid-column-gap: 7px; 
  }
}

.row1 {
  animation: loop-slide-right 20s infinite linear 1s both;
  grid-template-columns: calc((181 / 390) * 100vw) calc((102 / 390) * 100vw);
}

@media screen and (min-width: 661px) {
  .row1 {
    grid-template-columns: 306px 173px;
  }
}

.row2 {
  animation: loop-slide-left 20s infinite linear 1s both;
  grid-template-columns: calc((102 / 390) * 100vw) calc((122 / 390) * 100vw) calc((102 / 390) * 100vw) calc((102 / 390) * 100vw);
}

@media screen and (min-width: 661px) {
  .row2 {
    grid-template-columns: 173px 206px 173px 173px;
  }
}

.row3 {
  animation: loop-slide-right 20s infinite linear 1s both;
  grid-template-columns: calc((102 / 390) * 100vw) calc((137 / 390) * 100vw) calc((181 / 390) * 100vw);
}

@media screen and (min-width: 661px) {
  .row3 {
    grid-template-columns: 173px 232px 306px;
  }
}

.row4 {
  animation: loop-slide-left 20s infinite linear 1s both;
  grid-template-columns: calc((182 / 390) * 100vw) calc((102 / 390) * 100vw) calc((102 / 390) * 100vw);
}

@media screen and (min-width: 661px) {
  .row4 {
    grid-template-columns: 308px 173px 173px;
  }
}

@keyframes loop-slide-right {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop-slide-left {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}


.slideshow + .slideshow
{
  margin-left: calc((4 / 390) * 100vw);
}
@media screen and (min-width: 661px) {
  .slideshow + .slideshow {
    margin-left: 7px; 
  }
}

.wrap {
  display: flex;
  align-items: center;
  height: calc(( 136 / 390) * 100vw);
  overflow: hidden;
}
@media screen and (min-width: 661px) {
  .wrap {
    height: 230px;
  }
}

.wrap + .wrap {
  margin-top: calc((4 / 390) * 100vw);
}
@media screen and (min-width: 661px) {
  .wrap + .wrap {
    margin-top: 7px; 
  }
}

.slide-paused:hover .slideshow {
  animation-play-state: paused;
}

.content-hover {
  transition: all 0.2s;
}
.content-hover:hover {
  transform: translateY(-20px);
  border-radius: 0 10%;
  box-shadow: 0 3px 10px 0 #333;
  opacity: 0.8;
  cursor: pointer;
}


/* CTAサイズ */
img .ctaa {
  width: 500px;
}









