@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&display=swap");
html {
  font-size: 62.5%;
}

html, body {
  width: 100%;
  position: relative;
  height: 100%;
}

body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  font-size: 100%;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  background: transparent;
  color: inherit;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}
body * {
  box-sizing: border-box;
}
body *::before, body *::after {
  content: none;
  box-sizing: border-box;
}

sup {
  font-size: 0.8em;
  vertical-align: super;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

table {
  border-spacing: 0;
}

a {
  text-decoration: none;
}

img {
  vertical-align: top;
}

body {
  position: relative;
}
body:before {
  content: "";
  width: 1px;
  height: 1px;
  position: absolute;
  top: -1px;
  left: -1px;
  padding: 1px 0 0 1px;
  background-repeat: no-repeat;
  background-position: 1px 1px;
}

body, body *, body *::before, body *::after {
  font-family: 'Noto Sans JP', sans-serif;
}

.l-wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
}
@media screen and (min-width: 769px) {
  .l-wrapper {
    min-width: 1000px;
  }
}
@media screen and (max-width: 768px) {
  .l-wrapper {
    width: 100%;
  }
}

.l-main {
  flex: 1;
}
.l-main article {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .l-main article {
    padding-bottom: 50px;
  }
}

.l-section {
  min-height: 100px;
}

.l-header {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .l-header {
    height: 74px;
    width: 960px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    height: 55px;
    margin: 0 4vw 0;
  }
}
.l-header .c-symbol {
  width: 110px;
}
@media screen and (max-width: 768px) {
  .l-header .c-symbol {
    width: 86px;
  }
}
.l-header .c-symbol img {
  width: 100%;
}

@media screen and (min-width: 769px) {
  .l-nav {
    width: 960px;
    margin: 40px auto 0;
    height: 82px;
  }
}
@media screen and (max-width: 768px) {
  .l-nav {
    height: 20vw;
    height: min(20vw, 75px);
  }
}
@media screen and (min-width: 769px) {
  .l-nav nav {
    height: 82px;
  }
}
@media screen and (max-width: 768px) {
  .l-nav nav {
    height: 20vw;
    height: min(20vw, 75px);
  }
}
.l-nav nav ul {
  display: flex;
  height: 100%;
}
.l-nav nav ul li {
  height: 100%;
  width: 100%;
  text-align: center;
  line-height: 1.3;
}
.l-nav nav ul li a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  border-bottom: 7px solid;
  font-weight: bold;
  background-repeat: no-repeat;
  background-position: calc(100% - 3px) calc(100% - 3px);
}
@media screen and (max-width: 768px) {
  .l-nav nav ul li a {
    background-size: 18px;
  }
}
@media screen and (min-width: 769px) {
  .l-nav nav ul li a {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .l-nav nav ul li a {
    font-size: 3.866666667vw;
    font-size: min(3.866666667vw, 1.45rem);
  }
}
.l-nav nav ul li a[href*="#POST"] {
  background-color: #fee36a;
  background-image: url(../img/home/icn_nav_post.png);
  border-bottom-color: #e1c750;
}
@media screen and (min-width: 769px) {
  .l-nav nav ul li a[href*="#POST"] {
    transition: all .2s;
  }
  .l-nav nav ul li a[href*="#POST"]:hover {
    background-color: #e1c750;
    border-bottom-color: #fee36a;
  }
}
.l-nav nav ul li a[href*="howto.html"] {
  background-color: #bce1df;
  background-image: url(../img/home/icn_nav_howto.png);
  border-bottom-color: #a2c8c6;
}
@media screen and (min-width: 769px) {
  .l-nav nav ul li a[href*="howto.html"] {
    transition: all .2s;
  }
  .l-nav nav ul li a[href*="howto.html"]:hover {
    background-color: #a2c8c6;
    border-bottom-color: #bce1df;
  }
}
.l-nav nav ul li a[href*="#GALLERY"], .l-nav nav ul li a[href*="#RESULTS"] {
  background-color: #f6c9dc;
  background-image: url(../img/home/icn_nav_gallery.png);
  border-bottom-color: #deb0c3;
}
@media screen and (min-width: 769px) {
  .l-nav nav ul li a[href*="#GALLERY"], .l-nav nav ul li a[href*="#RESULTS"] {
    transition: all .2s;
  }
  .l-nav nav ul li a[href*="#GALLERY"]:hover, .l-nav nav ul li a[href*="#RESULTS"]:hover {
    background-color: #deb0c3;
    border-bottom-color: #f6c9dc;
  }
}
.l-nav nav ul li a[href*="index.html#POST"] {
  background-color: #fee36a;
  background-image: url(../img/howto/icn_nav_post.png);
  border-bottom-color: #e1c750;
}
@media screen and (min-width: 769px) {
  .l-nav nav ul li a[href*="index.html#POST"] {
    transition: all .2s;
  }
  .l-nav nav ul li a[href*="index.html#POST"]:hover {
    background-color: #e1c750;
    border-bottom-color: #fee36a;
  }
}
.l-nav nav ul li a[href*="index.html#GALLERY"] {
  background-color: #f6c9dc;
  background-image: url(../img/howto/icn_nav_gallery.png);
  border-bottom-color: #deb0c3;
}
@media screen and (min-width: 769px) {
  .l-nav nav ul li a[href*="index.html#GALLERY"] {
    transition: all .2s;
  }
  .l-nav nav ul li a[href*="index.html#GALLERY"]:hover {
    background-color: #deb0c3;
    border-bottom-color: #f6c9dc;
  }
}
@media screen and (min-width: 769px) {
  .l-nav.-howto {
    width: 960px;
    margin-bottom: 80px;
  }
}
.l-nav.-howto nav li {
  width: 50% !important;
}

.l-footer .c-copyright {
  background: #d3d3d3;
  min-height: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .l-footer .c-copyright {
    height: 45px;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 769px) {
  .l-footer__nav {
    width: 710px;
    margin: 0 auto;
    height: 160px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__nav {
    width: 100%;
    height: 21.2vw;
  }
}
.l-footer__nav ul {
  display: flex;
  position: fixed;
  background: #eeeeee;
}
@media screen and (min-width: 769px) {
  .l-footer__nav ul {
    height: 160px;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding: 20px;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__nav ul {
    height: 21.2vw;
    margin-right: -1.333333333vw;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 2.6vw;
  }
}
@media screen and (min-width: 769px) {
  .l-footer__nav li + li {
    margin-left: 11px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__nav li {
    width: calc((100% - 0.03vw) / 2 - 1.3vw);
    margin-right: 1.3vw;
  }
}
@media screen and (min-width: 769px) {
  .l-footer__nav li {
    width: 325px;
  }
}
.l-footer__nav li a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  line-height: 1.5;
  color: white;
  background-repeat: no-repeat;
  background-position: calc(100% - 3px) calc(100% - 3px);
}
@media screen and (min-width: 769px) {
  .l-footer__nav li a {
    height: 120px;
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__nav li a {
    background-size: 18px;
    font-size: 3.866666667vw;
    font-size: min(3.866666667vw, 1.45rem);
    height: 16vw;
  }
}
.l-footer__nav li a.-recommend {
  background-color: #ee8452;
  background-image: url(../img/howto/icn_footer_nav_recommend.png);
}
@media screen and (min-width: 769px) {
  .l-footer__nav li a.-recommend {
    transition: all .2s;
  }
  .l-footer__nav li a.-recommend:hover {
    opacity: .8;
  }
}
.l-footer__nav li a.-find {
  background-color: #2153a0;
  background-image: url(../img/howto/icn_footer_nav_find.png);
}
@media screen and (min-width: 769px) {
  .l-footer__nav li a.-find {
    transition: all .2s;
  }
  .l-footer__nav li a.-find:hover {
    opacity: .8;
  }
}

.c-speak_nav {
  position: absolute;
  width: 1px;
  height: 1px;
  top: -1px;
  left: -1px;
  padding: 1px 0 0 1px;
  overflow: hidden;
}

.c-anchor {
  display: block;
  position: relative;
  width: 0;
  height: 0;
  overflow: hidden;
  background: red;
}

.c-heading.-howto {
  display: flex;
  align-items: center;
  background: #d7edec;
}
.c-heading.-howto + * {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .c-heading.-howto + * {
    margin-top: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .c-heading.-howto {
    padding-top: 5px;
    padding-left: 25px;
  }
}
@media screen and (max-width: 768px) {
  .c-heading.-howto {
    padding-top: 1.5vw;
    padding-left: 1.5vw;
  }
}
@media screen and (min-width: 769px) {
  .c-heading.-howto small {
    margin-right: 25px;
  }
}
@media screen and (max-width: 768px) {
  .c-heading.-howto small {
    margin-right: 2.5vw;
  }
}
@media screen and (max-width: 768px) {
  .c-heading.-howto small {
    width: 33vw;
  }
  .c-heading.-howto small img {
    width: 100%;
  }
}
.c-heading.-howto b {
  font-size: 4.4rem;
  line-height: 1.5;
  transform: translateY(-5px);
}
@media screen and (max-width: 768px) {
  .c-heading.-howto b {
    font-size: 5.8vw;
    font-size: min(5.8vw, 2.2rem);
  }
}
.c-heading.-select {
  display: flex;
  align-items: center;
  background: #ee8452;
}
@media screen and (min-width: 769px) {
  .c-heading.-select + * {
    margin-top: 40px;
  }
}
@media screen and (min-width: 769px) {
  .c-heading.-select {
    padding-top: 5px;
    padding-left: 25px;
  }
}
@media screen and (max-width: 768px) {
  .c-heading.-select {
    padding-top: 1.5vw;
    padding-left: 1.5vw;
  }
}
@media screen and (min-width: 769px) {
  .c-heading.-select small {
    margin-right: 25px;
  }
}
@media screen and (max-width: 768px) {
  .c-heading.-select small {
    margin-right: 2.5vw;
  }
}
@media screen and (max-width: 768px) {
  .c-heading.-select small {
    width: 33vw;
  }
  .c-heading.-select small img {
    width: 100%;
  }
}
.c-heading.-select b {
  font-size: 4.4rem;
  line-height: 1.5;
  transform: translateY(-5px);
}
@media screen and (max-width: 768px) {
  .c-heading.-select b {
    font-size: 5.8vw;
    font-size: min(5.8vw, 2.2rem);
  }
}

.p-kv {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../img/home/bg_kv.png);
}
@media screen and (min-width: 769px) {
  .p-kv {
    height: 700px;
  }
}
@media screen and (max-width: 768px) {
  .p-kv {
    padding: 10px;
    background-size: 60px;
  }
}
@media screen and (max-width: 768px) {
  .p-kv img {
    width: 100%;
  }
}
.p-kv.-howto {
  background-image: url(../img/howto/bg_kv.png);
}
@media screen and (min-width: 769px) {
  .p-kv.-howto {
    height: 290px;
  }
}
@media screen and (max-width: 768px) {
  .p-kv.-howto {
    padding: 6vw 0 1.5vw;
  }
}
@media screen and (min-width: 769px) {
  .p-kv.-results {
    height: 450px;
  }
}
@media screen and (max-width: 768px) {
  .p-kv.-results {
    padding: 3.2vw 0 2.666666667vw;
  }
}

@media screen and (min-width: 769px) {
  .p-post {
    width: 960px;
    margin: 50px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .p-post {
    margin: 4vw 4vw 0;
  }
}
.p-post .c-heading.-lv1 {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .p-post .c-heading.-lv1 + .c-read {
    margin-top: 35px;
  }
}
@media screen and (max-width: 768px) {
  .p-post .c-heading.-lv1 + .c-read {
    margin-top: 5px;
  }
}
.p-post .c-heading.-lv1::before {
  content: "";
  width: 134px;
  height: 95px;
  display: block;
  margin-right: 30px;
  flex-shrink: 0;
  background-image: url(../img/home/icn_tle_post.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .p-post .c-heading.-lv1::before {
    width: 17.866666667vw;
    width: min(17.866666667vw, 67px);
    height: 17.866666667vw;
    height: min(17.866666667vw, 67px);
  }
}
.p-post .c-heading.-lv1 h1 {
  color: #3b4a7a;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .p-post .c-heading.-lv1 h1 {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 768px) {
  .p-post .c-heading.-lv1 h1 {
    font-size: 4.8vw;
    font-size: min(4.8vw, 1.8rem);
  }
}
.p-post .c-heading.-lv1 h1 span {
  background-image: url(../img/cmn/bg_tle_post.png);
  background-repeat: repeat-x;
  background-position: 0 calc(100% - 3px);
}
@media screen and (max-width: 768px) {
  .p-post .c-heading.-lv1 h1 span {
    background-size: 0.5em;
    background-position: 0 bottom;
  }
}
.p-post .c-heading.-lv2 {
  display: flex;
  align-items: center;
}
.p-post .c-heading.-lv2 + * {
  margin-top: 25px;
}
.p-post .c-heading.-lv2 + .c-img {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-post .c-heading.-lv2 + .c-img {
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-post .c-heading.-lv2 + .p-post__select {
    margin-top: 10px;
  }
}
@media screen and (min-width: 769px) {
  .p-post .c-heading.-lv2 {
    width: 690px;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-post .c-heading.-lv2 .c-num {
  background: #eb6ba4;
  color: white;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  border-radius: 100px;
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .p-post .c-heading.-lv2 .c-num {
    font-size: 3.2rem;
    height: 56px;
    padding: 0 14px 0 20px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-post .c-heading.-lv2 .c-num {
    height: 7.466666667vw;
    height: min(7.466666667vw, 28px);
    font-size: 4.266666667vw;
    font-size: min(4.266666667vw, 1.6rem);
    padding: 0 7px 0 10px;
    margin-right: 10px;
  }
}
.p-post .c-heading.-lv2 b {
  line-height: 1.411764706;
  font-weight: bold;
  color: #333333;
}
@media screen and (min-width: 769px) {
  .p-post .c-heading.-lv2 b {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-post .c-heading.-lv2 b {
    font-size: 4.533333333vw;
    font-size: min(4.533333333vw, 1.7rem);
  }
}
.p-post .c-read {
  text-align: center;
  line-height: 1.5;
  color: #484848;
}
.p-post .c-read + .c-img {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-post .c-read + .c-img {
    margin-top: 10px;
  }
}
@media screen and (min-width: 769px) {
  .p-post .c-read {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-post .c-read {
    font-size: 3.733333333vw;
    font-size: min(3.733333333vw, 1.4rem);
  }
}
.p-post .c-img {
  text-align: center;
}
.p-post .c-img + .c-heading.-lv2 {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .p-post .c-img img[src*="pct_post_01"] {
    width: 84vw;
    width: min(84vw, 315px);
  }
  .p-post .c-img img[src*="pct_post_02"] {
    width: 61vw;
    width: min(61vw, 230px);
  }
}
.p-post__select {
  background: #f0ece1;
}
.p-post__select + * {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-post__select + * {
    margin-top: 20px;
  }
}
@media screen and (min-width: 769px) {
  .p-post__select {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-post__select {
    padding: 10px;
  }
}
.p-post__select .c-heading {
  text-align: center;
  color: #3b4a7a;
  line-height: 1.2;
}
.p-post__select .c-heading + * {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .p-post__select .c-heading + * {
    margin-top: 8px;
  }
}
@media screen and (min-width: 769px) {
  .p-post__select .c-heading {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .p-post__select .c-heading {
    font-size: 4vw;
    font-size: min(4vw, 1.5rem);
  }
}
@media screen and (min-width: 769px) {
  .p-post__select .c-grid {
    display: flex;
    justify-content: space-between;
    margin-right: -12px;
  }
}
.p-post__select__item {
  background: white;
}
@media screen and (max-width: 768px) {
  .p-post__select__item + * {
    margin-top: 10px;
  }
}
@media screen and (min-width: 769px) {
  .p-post__select__item {
    width: calc((100% - 1px) / 2 - 11px);
    margin-right: 11px;
    padding: 10px 20px 25px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-post__select__item {
    margin-right: 5px;
    border-radius: 5px;
    padding: 10px 15px 12px;
  }
}
.p-post__select__item .c-heading {
  line-height: 1.333333333;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #3a497c;
}
@media screen and (min-width: 769px) {
  .p-post__select__item .c-heading {
    font-size: 2.4rem;
    height: 60px;
  }
}
@media screen and (max-width: 768px) {
  .p-post__select__item .c-heading {
    font-size: 4.8vw;
    font-size: min(4.8vw, 1.8rem);
    height: calc(102 / 750 * 100 * 1vw);
  }
}
.p-post__select__item .c-heading::before {
  content: "";
  margin-right: 10px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .p-post__select__item .c-heading::before {
    margin-right: 12px;
  }
}
.p-post__select__item .c-heading.-dog::before {
  background-image: url(../img/home/icn_post_dog.png);
}
@media screen and (min-width: 769px) {
  .p-post__select__item .c-heading.-dog::before {
    width: 39px;
    height: 51px;
  }
}
@media screen and (max-width: 768px) {
  .p-post__select__item .c-heading.-dog::before {
    width: calc(59 / 750 * 100 * 1vw);
    height: calc(76 / 750 * 100 * 1vw);
  }
}
.p-post__select__item .c-heading.-cat::before {
  background-image: url(../img/home/icn_post_cat.png);
}
@media screen and (min-width: 769px) {
  .p-post__select__item .c-heading.-cat::before {
    width: 44px;
    height: 43px;
  }
}
@media screen and (max-width: 768px) {
  .p-post__select__item .c-heading.-cat::before {
    width: calc(63 / 750 * 100 * 1vw);
    height: calc(63 / 750 * 100 * 1vw);
  }
}
.p-post__select__item p {
  text-align: center;
  font-size: 1.6rem;
  color: #3a497c;
  line-height: 1.4;
}
.p-post__select__item p + * {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-post__select__item p + * {
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-post__select__item p {
    font-size: 3.2vw;
  }
}
.p-post__select__item p b {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .p-post__select__item p b {
    font-size: 3.733333333vw;
  }
}
.p-post__select__item .c-img img {
  width: 100%;
}
.p-post__cv + * {
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  .p-post__cv + * {
    margin-top: 20px;
  }
}
@media screen and (min-width: 769px) {
  .p-post__cv {
    width: 690px;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-post__cv p + .c-list.-annotation {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .p-post__cv p + .c-list.-annotation {
    margin-top: 8px;
  }
}
.p-post__cv p + .c-img {
  margin-top: 40px;
}
.p-post__cv p.u-ta_c {
  text-align: center;
}
.p-post__cv .c-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-post__cv .c-btn.-post {
  align-items: center;
  background-color: #fee36a;
  background-image: url(../img/home/icn_arrow_post.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 33px) 40px;
  color: #3b4a7a;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .p-post__cv .c-btn.-post {
    border-bottom: 10px solid #e1c750;
    height: 125px;
    padding: 10px 30px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .p-post__cv .c-btn.-post {
    border-bottom: 7px solid #e1c750;
    padding: 4px 0 0;
    height: 25.6vw;
    background-size: 6.133333333vw;
    background-position: calc(100% - 5vw) calc(50% + 3.5px);
  }
}
.p-post__cv .c-btn.-post b {
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .p-post__cv .c-btn.-post b + * {
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-post__cv .c-btn.-post b + * {
    margin-top: 5px;
  }
}
@media screen and (min-width: 769px) {
  .p-post__cv .c-btn.-post b {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .p-post__cv .c-btn.-post b {
    text-align: center;
    font-size: 4.8vw;
    font-size: min(4.8vw, 1.8rem);
    line-height: 1.333333333;
  }
}
.p-post__cv .c-btn.-post small {
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .p-post__cv .c-btn.-post small {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .p-post__cv .c-btn.-post small {
    font-size: 3.2vw;
    font-size: min(3.2vw, 1.2rem);
  }
}
@media screen and (min-width: 769px) {
  .p-post__cv .c-btn.-post {
    transition: all .2s;
  }
  .p-post__cv .c-btn.-post:hover {
    background-color: #e1c750;
    border-bottom-color: #fee36a;
  }
}
.p-post__cv .c-btn.-terms {
  border-bottom: 7px solid #d3d3d3;
  background-image: url(../img/home/icn_arrow_terms.svg);
  background-repeat: no-repeat;
  background-color: #e3e4e5;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 769px) {
  .p-post__cv .c-btn.-terms {
    transition: all .2s;
    width: 426px;
    height: 88px;
    font-size: 2.4rem;
    padding: 7px 45px 0 0;
    background-position: calc(100% - 24px) 28px;
    text-align: center;
  }
  .p-post__cv .c-btn.-terms:hover {
    background-color: #d3d3d3;
    border-bottom-color: #e3e4e5;
  }
}
@media screen and (max-width: 768px) {
  .p-post__cv .c-btn.-terms {
    width: 72vw;
    margin-right: auto;
    margin-left: auto;
    padding: 20px 15px;
    font-size: 4.266666667vw;
    font-size: min(4.266666667vw, 1.6rem);
    background-size: 18px;
    background-position: calc(100% - 10px) calc(50% + 2px);
  }
}
.p-post__cv .c-btn.-thanks {
  background: #dd4d8a;
  color: white;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  line-height: 1.428571429;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 769px) {
  .p-post__cv .c-btn.-thanks {
    width: 580px;
    height: 160px;
    border-radius: 10px;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 768px) {
  .p-post__cv .c-btn.-thanks {
    width: 77.333333333vw;
    height: 21.333333333vw;
    border-radius: 5px;
    font-size: 3.466666667vw;
  }
}
.p-post__cv .c-btn.-thanks b {
  font-weight: 500;
  font-size: 140%;
}
.p-post__cv .c-list.-annotation {
  font-size: 1.6rem;
}
.p-post__cv .c-list.-annotation + * {
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .p-post__cv .c-list.-annotation + * {
    margin-top: 20px;
  }
}
.p-post__cv .c-list.-annotation li {
  padding-left: 1.2em;
  position: relative;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-post__cv .c-list.-annotation li {
    font-size: 3.2vw;
    font-size: min(3.2vw, 1.2rem);
  }
}
.p-post__cv .c-list.-annotation li::before {
  content: "※";
  position: absolute;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-post__cv .c-img img {
    width: 90%;
  }
}
.p-post__howto {
  text-align: center;
}
.p-post__howto figcaption {
  color: #3b4a7a;
}
.p-post__howto figcaption + * {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-post__howto figcaption + * {
    margin-top: 10px;
  }
}
@media screen and (min-width: 769px) {
  .p-post__howto figcaption {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 768px) {
  .p-post__howto figcaption {
    font-size: 5.066666667vw;
    font-size: min(5.066666667vw, 1.9rem);
  }
}
@media screen and (min-width: 769px) {
  .p-post__howto .c-img a {
    transition: all .2s;
  }
  .p-post__howto .c-img a:hover {
    opacity: .8;
  }
}
.p-post__howto .c-img img {
  max-width: 100%;
}

.p-gallery {
  background: #f3e1e9;
}
@media screen and (min-width: 769px) {
  .p-gallery {
    margin: 50px auto 0;
    padding: 50px 0 60px;
  }
}
@media screen and (max-width: 768px) {
  .p-gallery {
    margin: 8vw 0 0;
    padding: 4vw;
  }
}
.p-gallery .c-heading.-lv1 {
  text-align: center;
  color: #cc6892;
}
.p-gallery .c-heading.-lv1 + * {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-gallery .c-heading.-lv1 + * {
    margin-top: 15px;
  }
}
.p-gallery .c-heading.-lv1 b {
  display: inline-block;
  border-bottom: solid #cc6892;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .p-gallery .c-heading.-lv1 b {
    font-size: 4.4rem;
    border-bottom-width: 4px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-gallery .c-heading.-lv1 b {
    font-size: 5.866666667vw;
    font-size: min(5.866666667vw, 2.2rem);
    border-bottom-width: 2px;
    padding-bottom: 5px;
  }
}
.p-gallery .c-read {
  line-height: 1.8;
  color: #333333;
}
.p-gallery .c-read + * {
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .p-gallery .c-read + * {
    margin-top: 15px;
  }
}
@media screen and (min-width: 769px) {
  .p-gallery .c-read {
    font-size: 2rem;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .p-gallery .c-read {
    font-size: 4vw;
    font-size: min(4vw, 1.5rem);
  }
}
.p-gallery__header + * {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-gallery__header + * {
    margin-top: 15px;
  }
}
@media screen and (min-width: 769px) {
  .p-gallery__header {
    width: 960px;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.p-gallery__selector {
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-gallery__selector {
    margin-right: -9px;
  }
}
@media screen and (min-width: 769px) {
  .p-gallery__selector li + li {
    margin-left: 11px;
  }
}
@media screen and (max-width: 768px) {
  .p-gallery__selector li {
    width: calc((100% - 1px) / 3 - 8px);
    margin-right: 8px;
  }
}
.p-gallery__selector .c-radio.-selector input {
  position: absolute;
  left: -100vw;
}
.p-gallery__selector .c-radio.-selector input:checked + .c-label {
  background-color: #cc6892;
  color: white;
}
.p-gallery__selector .c-radio.-selector .c-label {
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
}
@media screen and (min-width: 769px) {
  .p-gallery__selector .c-radio.-selector .c-label {
    width: 157px;
    height: 58px;
    font-size: 2.4rem;
    color: #333333;
  }
}
@media screen and (max-width: 768px) {
  .p-gallery__selector .c-radio.-selector .c-label {
    height: 10.666666667vw;
    height: min(10.666666667vw, 40px);
    font-size: 4.533333333vw;
    font-size: min(4.533333333vw, 1.7rem);
  }
}
@media screen and (max-width: 768px) {
  .p-gallery .c-select.-sort {
    display: block;
    margin-top: 10px;
  }
}
.p-gallery .c-select.-sort select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  border: none;
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #333333;
  outline: none;
  border-radius: 100px;
  background-color: white;
  background-image: url(../img/home/icn_arrow_select.png);
  background-repeat: no-repeat;
  background-position: calc(100% - 26px) center;
}
@media screen and (max-width: 768px) {
  .p-gallery .c-select.-sort select {
    background-size: 18px;
    background-position: calc(100% - 18px) center;
  }
}
.p-gallery .c-select.-sort select::-ms-expand {
  display: none;
}
@media screen and (min-width: 769px) {
  .p-gallery .c-select.-sort select {
    width: 396px;
    height: 58px;
    font-size: 2.4rem;
    padding: 0 36px;
  }
}
@media screen and (max-width: 768px) {
  .p-gallery .c-select.-sort select {
    width: 100%;
    height: 10.666666667vw;
    height: min(10.666666667vw, 40px);
    font-size: 4.533333333vw;
    font-size: min(4.533333333vw, 1.7rem);
    padding: 0 20px;
  }
}
@media screen and (min-width: 769px) {
  .p-gallery__stage {
    width: 960px;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-gallery__stage ul {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 769px) {
  .p-gallery__stage ul {
    margin-right: -13px;
  }
}
@media screen and (max-width: 768px) {
  .p-gallery__stage ul {
    margin-right: -6px;
  }
}
.p-gallery__stage li {
  background: white;
}
@media screen and (min-width: 769px) {
  .p-gallery__stage li {
    width: calc((100% - 1px) / 4 - 12px);
    margin-right: 12px;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 768px) {
  .p-gallery__stage li {
    width: calc((100% - 1px) / 3 - 5px);
    margin-right: 5px;
    margin-bottom: 5px;
  }
}
.p-gallery__stage figure {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 769px) {
  .p-gallery__stage figure {
    cursor: pointer;
    transition: all .2s;
  }
  .p-gallery__stage figure:hover {
    opacity: .8;
  }
}
.p-gallery__stage figure .c-img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (min-width: 769px) {
  .p-gallery__stage figure .c-img {
    height: 230px;
  }
}
@media screen and (max-width: 768px) {
  .p-gallery__stage figure .c-img {
    height: 29.733333333vw;
  }
}
.p-gallery__stage figure .c-img::after {
  content: "";
  background-image: url(../img/home/icn_zoom.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}
@media screen and (min-width: 769px) {
  .p-gallery__stage figure .c-img::after {
    width: 39px;
    height: 39px;
    right: 10px;
    bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-gallery__stage figure .c-img::after {
    width: 7.4vw;
    height: 7.4vw;
    right: 5px;
    bottom: 5px;
  }
}
.p-gallery__stage figure figcaption {
  padding: 10px;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .p-gallery__stage figure figcaption {
    padding: 5px;
    font-size: 2.8vw;
    font-size: min(2.8vw, 1.1rem);
    line-height: 1.363636364;
  }
}
.p-gallery__modal {
  display: none;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  overflow: auto;
}
@media screen and (min-width: 769px) {
  .p-gallery__modal__wrapper {
    width: 560px;
    padding: 55px 0 20px;
    margin: auto;
    position: relative;
  }
}
@media screen and (min-width: 769px) and (min-width: 769px) {
  .p-gallery__modal__wrapper::after {
    content: "";
    display: block;
    height: 30px;
  }
}

@media screen and (max-width: 768px) {
  .p-gallery__modal__wrapper {
    padding: 28vw 4vw;
  }
}
.p-gallery__modal__wrapper .c-close {
  position: absolute;
  background-image: url(../img/home/icn_close.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 769px) {
  .p-gallery__modal__wrapper .c-close {
    width: 26px;
    height: 26px;
    top: 20px;
    right: 0;
    cursor: pointer;
    transition: all .2s;
  }
  .p-gallery__modal__wrapper .c-close:hover {
    opacity: .8;
  }
}
@media screen and (max-width: 768px) {
  .p-gallery__modal__wrapper .c-close {
    width: 5.6vw;
    height: 5.6vw;
    top: 20vw;
    right: 4vw;
  }
}
.p-gallery__modal__body {
  background: white;
  position: relative;
}
@media screen and (min-width: 769px) {
  .p-gallery__modal__body {
    padding: 0 15px 15px;
  }
}
@media screen and (max-width: 768px) {
  .p-gallery__modal__body {
    padding: 0 2.666666667vw 2.666666667vw;
  }
}
.p-gallery__modal__body .c-img {
  background: black;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 769px) {
  .p-gallery__modal__body .c-img {
    height: 560px;
    margin: 0 -15px;
  }
}
@media screen and (max-width: 768px) {
  .p-gallery__modal__body .c-img {
    margin: 0 -2.666666667vw;
    height: 92vw;
  }
}
.p-gallery__modal__body .c-comment {
  margin: 5px 0;
  color: #3b4a7a;
}
@media screen and (min-width: 769px) {
  .p-gallery__modal__body .c-comment {
    font-size: 1.6rem;
    line-height: 1.8;
    border-bottom: 2px solid #b5b5b5;
  }
}
@media screen and (max-width: 768px) {
  .p-gallery__modal__body .c-comment {
    font-size: 4vw;
    font-size: min(4vw, 1.5rem);
    line-height: 1.5;
    border-bottom: 1px solid #b5b5b5;
    padding-bottom: 1.5vw;
  }
}
.p-gallery__modal__body .c-equipment {
  color: #3b4a7a;
  margin: 5px 0;
}
@media screen and (min-width: 769px) {
  .p-gallery__modal__body .c-equipment {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
@media screen and (max-width: 768px) {
  .p-gallery__modal__body .c-equipment {
    line-height: 1.5;
    font-size: 4vw;
    font-size: min(4vw, 1.5rem);
  }
}
.p-gallery__modal__body .c-name {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
}
.p-gallery__modal__body .c-name figcaption {
  margin-right: 5px;
  color: #333333;
}
@media screen and (min-width: 769px) {
  .p-gallery__modal__body .c-name figcaption {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-gallery__modal__body .c-name figcaption {
    font-size: 3.733333333vw;
    font-size: min(3.733333333vw, 1.4rem);
  }
}
.p-gallery__modal__body .c-name p {
  color: #3b4a7a;
}
@media screen and (min-width: 769px) {
  .p-gallery__modal__body .c-name p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .p-gallery__modal__body .c-name p {
    font-size: 4vw;
    font-size: min(4vw, 1.5rem);
  }
}
.p-gallery__modal__body .c-prev, .p-gallery__modal__body .c-next {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 769px) {
  .p-gallery__modal__body .c-prev, .p-gallery__modal__body .c-next {
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all .2s;
  }
  .p-gallery__modal__body .c-prev:hover, .p-gallery__modal__body .c-next:hover {
    opacity: .7;
  }
}
@media screen and (max-width: 768px) {
  .p-gallery__modal__body .c-prev, .p-gallery__modal__body .c-next {
    width: 8.666666667vw;
    height: 8.666666667vw;
  }
}
.p-gallery__modal__body .c-prev {
  background-image: url(../img/home/icn_prev.png);
}
@media screen and (min-width: 769px) {
  .p-gallery__modal__body .c-prev {
    left: -20px;
  }
}
@media screen and (max-width: 768px) {
  .p-gallery__modal__body .c-prev {
    left: -4vw;
  }
}
.p-gallery__modal__body .c-next {
  background-image: url(../img/home/icn_next.png);
}
@media screen and (min-width: 769px) {
  .p-gallery__modal__body .c-next {
    right: -20px;
  }
}
@media screen and (max-width: 768px) {
  .p-gallery__modal__body .c-next {
    right: -4vw;
  }
}

.p-slr {
  padding-top: 55px;
}
.p-slr + * {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-slr + * {
    margin-top: 8vw;
  }
}
@media screen and (max-width: 768px) {
  .p-slr {
    padding-top: 45px;
  }
}
.p-slr .c-heading.-slr {
  text-align: center;
}
.p-slr .c-heading.-slr + * {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .p-slr .c-heading.-slr + * {
    margin-top: 6vw;
  }
}
.p-slr .c-heading.-slr small {
  display: flex;
  margin-bottom: 20px;
  font-size: 3.2rem;
  color: #3b4a7a;
  position: relative;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-slr .c-heading.-slr small {
    margin-bottom: 6px;
    font-size: 4vw;
    font-size: min(4.2vw, 2.4rem);
  }
}
.p-slr .c-heading.-slr small::before, .p-slr .c-heading.-slr small::after {
  content: "";
  width: 29px;
  height: 46px;
  margin: 0 15px;
  background-image: url(../img/howto/bg_heading_small_before.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .p-slr .c-heading.-slr small::before, .p-slr .c-heading.-slr small::after {
    margin: 0 5px;
    width: 3.866666667vw;
    height: 6.133333333vw;
  }
}
.p-slr .c-heading.-slr small::after {
  background-image: url(../img/howto/bg_heading_small_after.png);
}
.p-slr .c-heading.-slr b {
  color: #3b4a7a;
  font-size: 4rem;
  font-weight: bold;
  background-image: url(../img/cmn/bg_tle_post.png);
  background-repeat: repeat-x;
  background-position: 0 calc(100% - 3px);
}
@media screen and (max-width: 768px) {
  .p-slr .c-heading.-slr b {
    font-size: 8vw;
    font-size: min(8vw, 4rem);
    line-height: 1.5;
    background-size: 0.5em;
    background-position: 0 bottom;
  }
}
.p-slr .c-img {
  text-align: center;
}
.p-slr .c-img + * {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-slr .c-img + * {
    margin-top: 4vw;
  }
}
.p-slr .c-img img {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .p-slr .c-img {
    padding: 0 4vw;
  }
}
.p-slr .c-read.-slr {
  text-align: center;
  font-size: 3.8rem;
  color: #228885;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-slr .c-read.-slr {
    font-size: 5.066666667vw;
    font-size: min(5.066666667vw, 1.9rem);
  }
}

@media screen and (min-width: 769px) {
  .p-tips + * {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .p-tips + * {
    margin-top: 8vw;
  }
}
@media screen and (min-width: 769px) {
  .p-tips {
    width: 960px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 769px) {
  .p-tips__grid {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .p-tips__grid {
    margin-right: 4vw;
    margin-left: 4vw;
  }
}
.p-tips__item {
  background: #f0ece1;
}
@media screen and (max-width: 768px) {
  .p-tips__item + * {
    margin-top: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .p-tips__item {
    padding: 20px;
    width: calc((100% - 37px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .p-tips__item {
    padding: 4vw;
  }
}
.p-tips__item figcaption {
  text-align: center;
  color: #228885;
}
.p-tips__item figcaption + * {
  margin-top: 15px;
}
@media screen and (min-width: 769px) {
  .p-tips__item figcaption {
    font-size: 2.8rem;
    line-height: 1.4;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  .p-tips__item figcaption {
    font-size: 4.8vw;
    font-size: min(4.8vw, 1.8rem);
    line-height: 1.388888889;
  }
}
.p-tips__item .c-img {
  text-align: center;
}
.p-tips__item .c-img img {
  max-width: 100%;
}
@media screen and (min-width: 769px) {
  .p-tips__item .c-img img[src*="pct_tips_01"] {
    height: 310px;
  }
}
@media screen and (max-width: 768px) {
  .p-tips__item .c-img img[src*="pct_tips_01"] {
    width: 56.666666667vw;
  }
}
.p-tips__item .c-serif {
  position: relative;
  background: white;
  text-align: center;
  color: #3b4a7a;
}
@media screen and (min-width: 769px) {
  .p-tips__item .c-serif {
    margin-top: 20px;
    border-radius: 20px;
    padding: 15px;
    font-size: 2rem;
    line-height: 1.5;
    font-feature-settings: "palt";
  }
}
@media screen and (max-width: 768px) {
  .p-tips__item .c-serif {
    margin-top: 4vw;
    padding: 2.666666667vw;
    font-size: 4vw;
    font-size: min(4vw, 1.5rem);
    line-height: 1.5;
    border-radius: 15px;
  }
}
.p-tips__item .c-serif::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12.5px 25px 12.5px;
  border-color: transparent transparent #ffffff transparent;
  position: absolute;
  top: -20px;
  right: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .p-tips__item .c-serif::before {
    border-width: 0 2vw 4vw 2vw;
    top: -3.5vw;
  }
}

@media screen and (min-width: 769px) {
  .p-features + *,
  .p-bokeh + * {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .p-features + *,
  .p-bokeh + * {
    margin-top: 8vw;
  }
}
@media screen and (min-width: 769px) {
  .p-features,
  .p-bokeh {
    width: 960px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-features,
  .p-bokeh {
    margin-right: 4vw;
    margin-left: 4vw;
  }
}
@media screen and (max-width: 768px) {
  .p-features .c-heading.-howto,
  .p-bokeh .c-heading.-howto {
    margin-right: -4vw;
    margin-left: -4vw;
  }
}
.p-features__body,
.p-bokeh__body {
  background: #f0ece1;
}
@media screen and (min-width: 769px) {
  .p-features__body,
  .p-bokeh__body {
    padding: 40px 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .p-features__body,
  .p-bokeh__body {
    padding: 4vw;
  }
}
.p-features .c-read.-features,
.p-features .c-read.-bokeh,
.p-bokeh .c-read.-features,
.p-bokeh .c-read.-bokeh {
  color: #228885;
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (min-width: 769px) {
  .p-features .c-read.-features,
  .p-features .c-read.-bokeh,
  .p-bokeh .c-read.-features,
  .p-bokeh .c-read.-bokeh {
    margin-bottom: 30px;
    font-size: 2.8rem;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-features .c-read.-features,
  .p-features .c-read.-bokeh,
  .p-bokeh .c-read.-features,
  .p-bokeh .c-read.-bokeh {
    font-size: 4.8vw;
    font-size: min(4.8vw, 1.8rem);
    margin-bottom: 4vw;
  }
}
@media screen and (max-width: 768px) {
  .p-features__item + *,
  .p-bokeh__item + * {
    margin-top: 6vw;
  }
}
@media screen and (min-width: 769px) {
  .p-features__item,
  .p-bokeh__item {
    width: calc((100% - 40px) / 2);
  }
}
.p-features__item .c-img,
.p-bokeh__item .c-img {
  text-align: center;
}
.p-features__item .c-img img,
.p-bokeh__item .c-img img {
  max-width: 100%;
}
.p-features__item .c-img img[src*="pct_features_03"], .p-features__item .c-img img[src*="pct_bokeh_03"],
.p-bokeh__item .c-img img[src*="pct_features_03"],
.p-bokeh__item .c-img img[src*="pct_bokeh_03"] {
  width: 285px;
}
@media screen and (max-width: 768px) {
  .p-features__item .c-img img[src*="pct_features_03"], .p-features__item .c-img img[src*="pct_bokeh_03"],
  .p-bokeh__item .c-img img[src*="pct_features_03"],
  .p-bokeh__item .c-img img[src*="pct_bokeh_03"] {
    width: 56vw;
  }
}
.p-features__item .c-serif,
.p-bokeh__item .c-serif {
  position: relative;
  background: white;
  text-align: center;
  color: #3b4a7a;
}
.p-features__item .c-serif + .c-img,
.p-bokeh__item .c-serif + .c-img {
  margin-top: 35px;
}
.p-features__item .c-serif + .p-feature__point,
.p-bokeh__item .c-serif + .p-feature__point {
  margin-top: 80px;
}
@media screen and (min-width: 769px) {
  .p-features__item .c-serif,
  .p-bokeh__item .c-serif {
    margin-top: 20px;
    border-radius: 20px;
    padding: 15px;
    font-size: 2rem;
    line-height: 1.5;
    font-feature-settings: "palt";
  }
}
@media screen and (max-width: 768px) {
  .p-features__item .c-serif,
  .p-bokeh__item .c-serif {
    margin-top: 4vw;
    padding: 2.666666667vw;
    font-size: 4vw;
    font-size: min(4vw, 1.5rem);
    line-height: 1.5;
    border-radius: 15px;
  }
}
.p-features__item .c-serif::before,
.p-bokeh__item .c-serif::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12.5px 25px 12.5px;
  border-color: transparent transparent #ffffff transparent;
  position: absolute;
  top: -20px;
  right: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .p-features__item .c-serif::before,
  .p-bokeh__item .c-serif::before {
    border-width: 0 2vw 4vw 2vw;
    top: -3.5vw;
  }
}
.p-features__point,
.p-bokeh__point {
  background: #d7edec;
  text-align: center;
  color: #3b4a7a;
}
@media screen and (min-width: 769px) {
  .p-features__point,
  .p-bokeh__point {
    margin-top: 80px;
    padding: 20px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-features__point,
  .p-bokeh__point {
    padding: 2.666666667vw;
    border-radius: 15px;
  }
}
.p-features__point figcaption + *,
.p-bokeh__point figcaption + * {
  margin-top: 10px;
}
@media screen and (min-width: 769px) {
  .p-features__point figcaption,
  .p-bokeh__point figcaption {
    font-size: 2.6rem;
    border-bottom: 3px solid white;
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  .p-features__point figcaption,
  .p-bokeh__point figcaption {
    font-size: 5.333333333vw;
    font-size: min(5.333333333vw, 2rem);
    border-bottom: 2px solid white;
    padding-bottom: 5px;
  }
}
.p-features__point p,
.p-bokeh__point p {
  font-size: 2.1rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-features__point p,
  .p-bokeh__point p {
    font-size: 4.266666667vw;
    font-size: min(4.266666667vw, 1.6rem);
  }
}

@media screen and (min-width: 769px) {
  .p-transfer + * {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .p-transfer + * {
    margin-top: 8vw;
  }
}
@media screen and (min-width: 769px) {
  .p-transfer {
    width: 960px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-transfer {
    margin-right: 4vw;
    margin-left: 4vw;
  }
}
@media screen and (max-width: 768px) {
  .p-transfer .c-heading.-howto {
    margin-right: -4vw;
    margin-left: -4vw;
  }
}
@media screen and (min-width: 769px) {
  .p-transfer__body {
    display: flex;
    justify-content: space-between;
  }
}
.p-transfer__item {
  background: #f0ece1;
}
@media screen and (max-width: 768px) {
  .p-transfer__item + * {
    margin-top: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .p-transfer__item {
    padding: 20px 20px 40px;
    width: calc((100% - 37px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .p-transfer__item {
    padding: 4vw;
  }
}
.p-transfer__item figcaption {
  text-align: center;
  font-size: 2.8rem;
  line-height: 1.4;
  color: #228885;
}
.p-transfer__item figcaption + * {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .p-transfer__item figcaption {
    font-size: 4.8vw;
    font-size: min(4.8vw, 1.8rem);
  }
}
.p-transfer__item .c-img img {
  max-width: 100%;
}

@media screen and (min-width: 769px) {
  .p-select + * {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .p-select + * {
    margin-top: 8vw;
  }
}
@media screen and (min-width: 769px) {
  .p-select {
    width: 960px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 769px) {
  .p-select__grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 769px) {
  .p-select__item {
    padding: 20px 20px 40px;
    width: calc((100% - 37px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .p-select__item {
    padding: 4vw;
  }
}
.p-select__item figcaption {
  background: #3b4a7a;
  color: white;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  padding: 10px;
}
.p-select__item figcaption + * {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .p-select__item figcaption {
    font-size: 5vw;
    font-size: min(5vw, 1.9rem);
  }
}
.p-select__item .c-img + * {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-select__item .c-img + * {
    margin-top: 15px;
  }
}
.p-select__item .c-img img {
  max-width: 100%;
}
.p-select__item p {
  font-size: 1.8rem;
  line-height: 1.5;
}
.p-select__item p + .c-point {
  margin-top: 15px;
}
.p-select__item p + footer {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-select__item p {
    font-size: 4.266666667vw;
    font-size: min(4.266666667vw, 1.6rem);
  }
}
.p-select__item .c-point {
  text-align: center;
}
.p-select__item .c-point + * {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .p-select__item .c-point + * {
    margin-top: 5px;
  }
}
.p-select__item .c-point small {
  background: #ccd5ee;
  color: #3b4a7a;
  text-align: center;
  line-height: 1.2;
  font-size: 2.2rem;
  font-weight: bold;
  width: 90px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-select__item .c-point small {
    width: 18.666666667vw;
    height: 13.066666667vw;
    font-size: 4.8vw;
    font-size: min(4.8vw, 1.8rem);
  }
}
.p-select__item .c-point b {
  color: #3b4a7a;
  font-size: 2.3rem;
  line-height: 1.5;
  font-weight: bold;
  transform: translateY(-0.25em);
}
@media screen and (max-width: 768px) {
  .p-select__item .c-point b {
    font-size: 4.8vw;
    font-size: min(4.8vw, 1.8rem);
  }
}
.p-select__item footer {
  text-align: center;
}
.p-select__item footer .c-btn.-detail {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 340px;
  height: 88px;
  background: #8495c9;
  border-bottom: 10px solid #6779af;
  color: white;
  font-size: 2rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-select__item footer .c-btn.-detail {
    width: 66.666666667vw;
    height: 17.333333333vw;
    font-size: 4.8vw;
    font-size: min(4.8vw, 1.8rem);
  }
}
.p-select__item footer .c-btn.-detail::after {
  content: "";
  width: 22px;
  height: 22px;
  background-image: url(../img/howto/icn_arrow_detail.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .p-select__item footer .c-btn.-detail::after {
    width: 5vw;
    height: 5vw;
    right: 10px;
  }
}
@media screen and (min-width: 769px) {
  .p-select__item footer .c-btn.-detail {
    transition: all .2s;
  }
  .p-select__item footer .c-btn.-detail:hover {
    opacity: .8;
  }
}

@media screen and (min-width: 769px) {
  .p-terms {
    width: 960px;
    margin: 50px auto 100px;
  }
}
@media screen and (max-width: 768px) {
  .p-terms {
    margin: 30px 4vw 60px;
  }
}
.p-terms h1 {
  line-height: 1.3;
}
.p-terms h1 + * {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-terms h1 + * {
    margin-top: 3vw;
  }
}
@media screen and (min-width: 769px) {
  .p-terms h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-terms h1 {
    font-size: 5.333333333vw;
  }
}
.p-terms h2 {
  background: #f0ece1;
  padding: 10px;
  font-size: 1.6rem;
  line-height: 1.3;
}
.p-terms h2 + * {
  margin-top: 15px;
}
.p-terms dl {
  font-size: 1.6rem;
  line-height: 1.6;
}
.p-terms dl + dl {
  margin-top: 15px;
}
.p-terms dl + h2 {
  margin-top: 50px;
}
@media screen and (min-width: 769px) {
  .p-terms dl {
    display: flex;
  }
}
.p-terms dl dt {
  min-width: 6em;
  flex-shrink: 0;
  font-weight: bold;
  margin-right: 1.5em;
}
@media screen and (max-width: 768px) {
  .p-terms dl dt + dd {
    margin-top: 5px;
  }
}
@media screen and (max-width: 768px) {
  .p-terms dl dd + dt {
    margin-top: 10px;
  }
}
@media screen and (min-width: 769px) {
  .p-terms dl dd {
    flex: 1;
  }
}
@media screen and (max-width: 768px) {
  .p-terms dl dd {
    margin-left: 1.5em;
  }
}
.p-terms dl dd ul {
  margin: 0.5em 1em 1em;
}
.p-terms dl dd b {
  font-weight: bold;
}
.p-terms ul {
  font-size: 1.6rem;
  line-height: 1.6;
}
.p-terms ul + h2 {
  margin-top: 50px;
}
.p-terms ul > li {
  padding-left: 1.2em;
  position: relative;
}
.p-terms ul > li + li {
  margin-top: 5px;
}
.p-terms ul > li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.p-terms ul > li ol {
  margin: 0.5em 1em 1em;
}
.p-terms ul ol {
  font-size: 1.6rem;
  line-height: 1.6;
}
.p-terms ul ol > li + li {
  margin-top: 5px;
}
.p-terms p {
  font-size: 1.6rem;
  line-height: 1.6;
}
.p-terms p + .c-close {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-terms p + .c-close {
    margin-top: 8vw;
  }
}
.p-terms .c-close {
  text-align: center;
}
.p-terms .c-close .c-btn.-close {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 7px solid #d3d3d3;
  background-color: #e3e4e5;
}
@media screen and (min-width: 769px) {
  .p-terms .c-close .c-btn.-close {
    transition: all .2s;
    width: 300px;
    height: 60px;
    font-size: 1.6rem;
    padding: 3px 0 0;
    background-position: calc(100% - 24px) 28px;
    text-align: center;
  }
  .p-terms .c-close .c-btn.-close:hover {
    background-color: #d3d3d3;
    border-bottom-color: #e3e4e5;
  }
}
@media screen and (max-width: 768px) {
  .p-terms .c-close .c-btn.-close {
    width: 60vw;
    margin-right: auto;
    margin-left: auto;
    padding: 18px 0 15px;
    font-size: 4.266666667vw;
    font-size: min(4.266666667vw, 1.6rem);
    background-size: 18px;
    background-position: calc(100% - 10px) calc(50% + 2px);
  }
}

@media screen and (min-width: 769px) {
  .p-thanks {
    width: 960px;
    margin: 50px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .p-thanks {
    margin: 4vw 4vw 0;
  }
}
.p-thanks .c-heading.-lv1 {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .p-thanks .c-heading.-lv1 + .c-read {
    margin-top: 35px;
  }
}
@media screen and (max-width: 768px) {
  .p-thanks .c-heading.-lv1 + .c-read {
    margin-top: 5px;
  }
}
.p-thanks .c-heading.-lv1 h1 {
  color: #3b4a7a;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .p-thanks .c-heading.-lv1 h1 {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 768px) {
  .p-thanks .c-heading.-lv1 h1 {
    font-size: 4.8vw;
    font-size: min(4.8vw, 1.8rem);
  }
}
.p-thanks .c-heading.-lv1 h1 span {
  background-image: url(../img/cmn/bg_tle_post.png);
  background-repeat: repeat-x;
  background-position: 0 calc(100% - 3px);
}
@media screen and (max-width: 768px) {
  .p-thanks .c-heading.-lv1 h1 span {
    background-size: 0.5em;
    background-position: 0 bottom;
  }
}
.p-thanks .c-heading.-lv2 {
  display: flex;
  align-items: center;
}
.p-thanks .c-heading.-lv2 + * {
  margin-top: 25px;
}
.p-thanks .c-heading.-lv2 + .c-img {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-thanks .c-heading.-lv2 + .c-img {
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-thanks .c-heading.-lv2 + .p-thanks__select {
    margin-top: 10px;
  }
}
@media screen and (min-width: 769px) {
  .p-thanks .c-heading.-lv2 {
    width: 690px;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-thanks .c-heading.-lv2 .c-num {
  background: #eb6ba4;
  color: white;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  border-radius: 100px;
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .p-thanks .c-heading.-lv2 .c-num {
    font-size: 3.2rem;
    height: 56px;
    padding: 0 14px 0 20px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-thanks .c-heading.-lv2 .c-num {
    height: 7.466666667vw;
    height: min(7.466666667vw, 28px);
    font-size: 4.266666667vw;
    font-size: min(4.266666667vw, 1.6rem);
    padding: 0 7px 0 10px;
    margin-right: 10px;
  }
}
.p-thanks .c-heading.-lv2 b {
  line-height: 1.411764706;
  font-weight: bold;
  color: #333333;
}
@media screen and (min-width: 769px) {
  .p-thanks .c-heading.-lv2 b {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-thanks .c-heading.-lv2 b {
    font-size: 4.533333333vw;
    font-size: min(4.533333333vw, 1.7rem);
  }
}
.p-thanks .c-read {
  text-align: center;
  line-height: 1.5;
  color: #484848;
}
.p-thanks .c-read + .c-img {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-thanks .c-read + .c-img {
    margin-top: 10px;
  }
}
@media screen and (min-width: 769px) {
  .p-thanks .c-read {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-thanks .c-read {
    font-size: 3.733333333vw;
    font-size: min(3.733333333vw, 1.4rem);
  }
}
.p-thanks .c-annotation {
  text-align: center;
  font-size: 1.6rem;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .p-thanks .c-annotation {
    margin-top: 10px;
    font-size: 3vw;
    font-size: min(3vw, 1.2rem);
  }
}
.p-thanks .c-annotation a {
  text-decoration: underline;
  color: #3b4a7a;
  cursor: pointer;
}
.p-thanks .c-annotation a:hover {
  text-decoration: none;
}
.p-thanks .c-img {
  text-align: center;
}
.p-thanks .c-img + .c-heading.-lv2 {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .p-thanks .c-img img[src*="pct_post_01"] {
    width: 84vw;
    width: min(84vw, 315px);
  }
  .p-thanks .c-img img[src*="pct_post_02"] {
    width: 61vw;
    width: min(61vw, 230px);
  }
}
.p-thanks__select {
  background: #f0ece1;
}
.p-thanks__select + * {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-thanks__select + * {
    margin-top: 20px;
  }
}
@media screen and (min-width: 769px) {
  .p-thanks__select {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-thanks__select {
    padding: 10px;
  }
}
.p-thanks__select .c-heading {
  text-align: center;
  color: #3b4a7a;
  line-height: 1.2;
}
.p-thanks__select .c-heading + * {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .p-thanks__select .c-heading + * {
    margin-top: 8px;
  }
}
@media screen and (min-width: 769px) {
  .p-thanks__select .c-heading {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .p-thanks__select .c-heading {
    font-size: 4vw;
    font-size: min(4vw, 1.5rem);
  }
}
@media screen and (min-width: 769px) {
  .p-thanks__select .c-grid {
    display: flex;
    justify-content: space-between;
    margin-right: -12px;
  }
}
.p-thanks__select__item {
  background: white;
}
@media screen and (max-width: 768px) {
  .p-thanks__select__item + * {
    margin-top: 10px;
  }
}
@media screen and (min-width: 769px) {
  .p-thanks__select__item {
    width: calc((100% - 1px) / 2 - 11px);
    margin-right: 11px;
    padding: 10px 20px 25px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-thanks__select__item {
    margin-right: 5px;
    border-radius: 5px;
    padding: 10px 15px 12px;
  }
}
.p-thanks__select__item .c-heading {
  line-height: 1.333333333;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #3a497c;
}
@media screen and (min-width: 769px) {
  .p-thanks__select__item .c-heading {
    font-size: 2.4rem;
    height: 60px;
  }
}
@media screen and (max-width: 768px) {
  .p-thanks__select__item .c-heading {
    font-size: 4.8vw;
    font-size: min(4.8vw, 1.8rem);
    height: calc(102 / 750 * 100 * 1vw);
  }
}
.p-thanks__select__item .c-heading::before {
  content: "";
  margin-right: 10px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .p-thanks__select__item .c-heading::before {
    margin-right: 12px;
  }
}
.p-thanks__select__item .c-heading.-dog::before {
  background-image: url(../img/home/icn_post_dog.png);
}
@media screen and (min-width: 769px) {
  .p-thanks__select__item .c-heading.-dog::before {
    width: 39px;
    height: 51px;
  }
}
@media screen and (max-width: 768px) {
  .p-thanks__select__item .c-heading.-dog::before {
    width: calc(59 / 750 * 100 * 1vw);
    height: calc(76 / 750 * 100 * 1vw);
  }
}
.p-thanks__select__item .c-heading.-cat::before {
  background-image: url(../img/home/icn_post_cat.png);
}
@media screen and (min-width: 769px) {
  .p-thanks__select__item .c-heading.-cat::before {
    width: 44px;
    height: 43px;
  }
}
@media screen and (max-width: 768px) {
  .p-thanks__select__item .c-heading.-cat::before {
    width: calc(63 / 750 * 100 * 1vw);
    height: calc(63 / 750 * 100 * 1vw);
  }
}
.p-thanks__select__item p {
  text-align: center;
  font-size: 1.6rem;
  color: #3a497c;
  line-height: 1.4;
}
.p-thanks__select__item p + * {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-thanks__select__item p + * {
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-thanks__select__item p {
    font-size: 3.2vw;
  }
}
.p-thanks__select__item p b {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .p-thanks__select__item p b {
    font-size: 3.733333333vw;
  }
}
.p-thanks__select__item .c-img img {
  width: 100%;
}
.p-thanks__cv + * {
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  .p-thanks__cv + * {
    margin-top: 20px;
  }
}
@media screen and (min-width: 769px) {
  .p-thanks__cv {
    width: 690px;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-thanks__cv p + .c-list.-annotation {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .p-thanks__cv p + .c-list.-annotation {
    margin-top: 8px;
  }
}
.p-thanks__cv p + .c-img {
  margin-top: 40px;
}
.p-thanks__cv p.u-ta_c {
  text-align: center;
}
.p-thanks__cv .c-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-thanks__cv .c-btn.-post {
  align-items: center;
  background-color: #fee36a;
  background-image: url(../img/home/icn_arrow_post.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 33px) 40px;
  color: #3b4a7a;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .p-thanks__cv .c-btn.-post {
    border-bottom: 10px solid #e1c750;
    height: 125px;
    padding: 10px 30px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .p-thanks__cv .c-btn.-post {
    border-bottom: 7px solid #e1c750;
    padding: 4px 0 0;
    height: 25.6vw;
    background-size: 6.133333333vw;
    background-position: calc(100% - 5vw) calc(50% + 3.5px);
  }
}
.p-thanks__cv .c-btn.-post b {
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .p-thanks__cv .c-btn.-post b + * {
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-thanks__cv .c-btn.-post b + * {
    margin-top: 5px;
  }
}
@media screen and (min-width: 769px) {
  .p-thanks__cv .c-btn.-post b {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .p-thanks__cv .c-btn.-post b {
    text-align: center;
    font-size: 4.8vw;
    font-size: min(4.8vw, 1.8rem);
    line-height: 1.333333333;
  }
}
.p-thanks__cv .c-btn.-post small {
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .p-thanks__cv .c-btn.-post small {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .p-thanks__cv .c-btn.-post small {
    font-size: 3.2vw;
    font-size: min(3.2vw, 1.2rem);
  }
}
@media screen and (min-width: 769px) {
  .p-thanks__cv .c-btn.-post {
    transition: all .2s;
  }
  .p-thanks__cv .c-btn.-post:hover {
    background-color: #e1c750;
    border-bottom-color: #fee36a;
  }
}
.p-thanks__cv .c-btn.-terms {
  border-bottom: 7px solid #d3d3d3;
  background-image: url(../img/home/icn_arrow_terms.svg);
  background-repeat: no-repeat;
  background-color: #e3e4e5;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 769px) {
  .p-thanks__cv .c-btn.-terms {
    transition: all .2s;
    width: 426px;
    height: 88px;
    font-size: 2.4rem;
    padding: 7px 45px 0 0;
    background-position: calc(100% - 24px) 28px;
    text-align: center;
  }
  .p-thanks__cv .c-btn.-terms:hover {
    background-color: #d3d3d3;
    border-bottom-color: #e3e4e5;
  }
}
@media screen and (max-width: 768px) {
  .p-thanks__cv .c-btn.-terms {
    width: 72vw;
    margin-right: auto;
    margin-left: auto;
    padding: 20px 15px;
    font-size: 4.266666667vw;
    font-size: min(4.266666667vw, 1.6rem);
    background-size: 18px;
    background-position: calc(100% - 10px) calc(50% + 2px);
  }
}
.p-thanks__cv .c-btn.-thanks {
  background: #dd4d8a;
  color: white;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  line-height: 1.428571429;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 769px) {
  .p-thanks__cv .c-btn.-thanks {
    width: 580px;
    height: 160px;
    border-radius: 10px;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 768px) {
  .p-thanks__cv .c-btn.-thanks {
    width: 77.333333333vw;
    height: 21.333333333vw;
    border-radius: 5px;
    font-size: 3.466666667vw;
  }
}
.p-thanks__cv .c-btn.-thanks b {
  font-weight: 500;
  font-size: 140%;
}
.p-thanks__cv .c-list.-annotation {
  font-size: 1.6rem;
}
.p-thanks__cv .c-list.-annotation + * {
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .p-thanks__cv .c-list.-annotation + * {
    margin-top: 20px;
  }
}
.p-thanks__cv .c-list.-annotation li {
  padding-left: 1.2em;
  position: relative;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-thanks__cv .c-list.-annotation li {
    font-size: 3.2vw;
    font-size: min(3.2vw, 1.2rem);
  }
}
.p-thanks__cv .c-list.-annotation li::before {
  content: "※";
  position: absolute;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-thanks__cv .c-img img {
    width: 90%;
  }
}
.p-thanks__howto {
  text-align: center;
}
.p-thanks__howto figcaption {
  color: #3b4a7a;
}
.p-thanks__howto figcaption + * {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-thanks__howto figcaption + * {
    margin-top: 10px;
  }
}
@media screen and (min-width: 769px) {
  .p-thanks__howto figcaption {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 768px) {
  .p-thanks__howto figcaption {
    font-size: 5.066666667vw;
    font-size: min(5.066666667vw, 1.9rem);
  }
}
@media screen and (min-width: 769px) {
  .p-thanks__howto .c-img a {
    transition: all .2s;
  }
  .p-thanks__howto .c-img a:hover {
    opacity: .8;
  }
}
.p-thanks__howto .c-img img {
  max-width: 100%;
}

.p-results {
  background: #f3e1e9;
}
@media screen and (min-width: 769px) {
  .p-results {
    margin: 50px auto 0;
    padding: 50px 0 60px;
  }
}
@media screen and (max-width: 768px) {
  .p-results {
    margin: 8vw 0 0;
    padding: 4vw;
  }
}
.p-results .c-heading.-lv1 {
  text-align: center;
  color: #cc6892;
}
.p-results .c-heading.-lv1 + * {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-results .c-heading.-lv1 + * {
    margin-top: 15px;
  }
}
.p-results .c-heading.-lv1 b {
  display: inline-block;
  border-bottom: solid #cc6892;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .p-results .c-heading.-lv1 b {
    font-size: 4.4rem;
    border-bottom-width: 4px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-results .c-heading.-lv1 b {
    font-size: 5.866666667vw;
    font-size: min(5.866666667vw, 2.2rem);
    border-bottom-width: 2px;
    padding-bottom: 5px;
  }
}
.p-results .c-read {
  line-height: 1.8;
  color: #333333;
}
.p-results .c-read + * {
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .p-results .c-read + * {
    margin-top: 15px;
  }
}
@media screen and (min-width: 769px) {
  .p-results .c-read {
    font-size: 2rem;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .p-results .c-read {
    font-size: 4vw;
    font-size: min(4vw, 1.5rem);
  }
}
@media screen and (min-width: 769px) {
  .p-results__header {
    width: 960px;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-results__header ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: -20px;
}
@media screen and (max-width: 768px) {
  .p-results__header ul {
    margin-right: -6px;
  }
}
.p-results__header__item {
  font-size: 2.4rem;
  height: 58px;
  text-align: center;
  background: white;
  margin-right: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-results__header__item {
    height: 40px;
    margin-right: 6px;
    font-size: 1.7rem;
  }
}
.p-results__header__item.is-select {
  background: #cc6892;
  color: white;
  cursor: default;
}
.p-results__body {
  display: none;
}
@media screen and (min-width: 769px) {
  .p-results__body {
    justify-content: space-between;
    flex-wrap: wrap;
    width: 960px;
    margin: 30px auto -21px;
  }
}
@media screen and (max-width: 768px) {
  .p-results__body {
    margin-bottom: -2.8vw;
    margin-top: 15px;
  }
}
@media screen and (min-width: 769px) {
  .p-results__body.is-select {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .p-results__body.is-select {
    display: block;
  }
}
.p-results__item {
  background: white;
}
@media screen and (min-width: 769px) {
  .p-results__item {
    width: calc(50% - 11px);
    padding: 25px;
    margin-bottom: 21px;
  }
}
@media screen and (max-width: 768px) {
  .p-results__item {
    padding: 4vw;
    margin-bottom: 2.8vw;
  }
}
.p-results__item .c-title {
  padding-bottom: 8px;
  border-bottom: 2px solid #cc6892;
}
@media screen and (min-width: 769px) {
  .p-results__item .c-title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-results__item .c-title {
    font-size: 1.7rem;
  }
}
.p-results__item .c-name {
  margin-top: 10px;
  display: flex;
  align-items: baseline;
  font-weight: normal;
}
.p-results__item .c-name dt {
  font-size: 1.6rem;
  color: #cc6892;
}
@media screen and (max-width: 768px) {
  .p-results__item .c-name dt {
    font-size: 1.1rem;
  }
}
.p-results__item .c-name dd {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .p-results__item .c-name dd {
    font-size: 1.6rem;
  }
}
.p-results__item .c-img {
  text-align: center;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-results__item .c-img {
    margin-top: 15px;
  }
}
@media screen and (min-width: 769px) {
  .p-results__item .c-img img {
    max-width: 420px;
    max-height: 420px;
  }
}
@media screen and (max-width: 768px) {
  .p-results__item .c-img img {
    max-width: calc(100vw - (4vw * 4));
    max-height: calc(100vw - (4vw * 4));
  }
}
.p-results__item .c-equipment {
  text-align: center;
}
@media screen and (min-width: 769px) {
  .p-results__item .c-equipment {
    font-size: 1.8rem;
    margin-top: 25px;
  }
}
@media screen and (max-width: 768px) {
  .p-results__item .c-equipment {
    margin-top: 10px;
    font-size: 1.1rem;
  }
}
.p-results__item .c-comment {
  background-image: url(../img/result/icn_staff.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  margin-top: 25px;
  min-height: 100px;
  padding-left: 100px;
}
@media screen and (max-width: 768px) {
  .p-results__item .c-comment {
    min-height: 20vw;
    background-size: 20.666666667vw;
    padding-left: 20vw;
  }
}
.p-results__item .c-comment dt {
  font-size: 1.3rem;
  color: #0e70b6;
  font-weight: 500;
}
.p-results__item .c-comment dd {
  margin-top: 5px;
  min-height: 85px;
  background: #d6effb;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .p-results__item .c-comment dd {
    min-height: 16.666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-results__stage {
    width: 960px;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-results__stage ul {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 769px) {
  .p-results__stage ul {
    margin-right: -13px;
  }
}
@media screen and (max-width: 768px) {
  .p-results__stage ul {
    margin-right: -6px;
  }
}
.p-results__stage li {
  background: white;
}
@media screen and (min-width: 769px) {
  .p-results__stage li {
    width: calc((100% - 1px) / 4 - 12px);
    margin-right: 12px;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 768px) {
  .p-results__stage li {
    width: calc((100% - 1px) / 3 - 5px);
    margin-right: 5px;
    margin-bottom: 5px;
  }
}
.p-results__stage figure {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 769px) {
  .p-results__stage figure {
    cursor: pointer;
    transition: all .2s;
  }
  .p-results__stage figure:hover {
    opacity: .8;
  }
}
.p-results__stage figure .c-img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (min-width: 769px) {
  .p-results__stage figure .c-img {
    height: 230px;
  }
}
@media screen and (max-width: 768px) {
  .p-results__stage figure .c-img {
    height: 29.733333333vw;
  }
}
.p-results__stage figure .c-img::after {
  content: "";
  background-image: url(../img/home/icn_zoom.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}
@media screen and (min-width: 769px) {
  .p-results__stage figure .c-img::after {
    width: 39px;
    height: 39px;
    right: 10px;
    bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-results__stage figure .c-img::after {
    width: 7.4vw;
    height: 7.4vw;
    right: 5px;
    bottom: 5px;
  }
}
.p-results__stage figure figcaption {
  padding: 10px;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .p-results__stage figure figcaption {
    padding: 5px;
    font-size: 2.8vw;
    font-size: min(2.8vw, 1.1rem);
    line-height: 1.363636364;
  }
}
.p-results__modal {
  display: none;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  overflow: auto;
}
@media screen and (min-width: 769px) {
  .p-results__modal__wrapper {
    width: 560px;
    padding: 55px 0 20px;
    margin: auto;
    position: relative;
  }
}
@media screen and (min-width: 769px) and (min-width: 769px) {
  .p-results__modal__wrapper::after {
    content: "";
    display: block;
    height: 30px;
  }
}

@media screen and (max-width: 768px) {
  .p-results__modal__wrapper {
    padding: 28vw 4vw;
  }
}
.p-results__modal__wrapper .c-close {
  position: absolute;
  background-image: url(../img/home/icn_close.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 769px) {
  .p-results__modal__wrapper .c-close {
    width: 26px;
    height: 26px;
    top: 20px;
    right: 0;
    cursor: pointer;
    transition: all .2s;
  }
  .p-results__modal__wrapper .c-close:hover {
    opacity: .8;
  }
}
@media screen and (max-width: 768px) {
  .p-results__modal__wrapper .c-close {
    width: 5.6vw;
    height: 5.6vw;
    top: 20vw;
    right: 4vw;
  }
}
.p-results__modal__body {
  background: white;
  position: relative;
}
@media screen and (min-width: 769px) {
  .p-results__modal__body {
    padding: 0 15px 15px;
  }
}
@media screen and (max-width: 768px) {
  .p-results__modal__body {
    padding: 0 2.666666667vw 2.666666667vw;
  }
}
.p-results__modal__body .c-img {
  background: black;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 769px) {
  .p-results__modal__body .c-img {
    height: 560px;
    margin: 0 -15px;
  }
}
@media screen and (max-width: 768px) {
  .p-results__modal__body .c-img {
    margin: 0 -2.666666667vw;
    height: 92vw;
  }
}
.p-results__modal__body .c-comment {
  margin: 5px 0;
  color: #3b4a7a;
}
@media screen and (min-width: 769px) {
  .p-results__modal__body .c-comment {
    font-size: 1.6rem;
    line-height: 1.8;
    border-bottom: 2px solid #b5b5b5;
  }
}
@media screen and (max-width: 768px) {
  .p-results__modal__body .c-comment {
    font-size: 4vw;
    font-size: min(4vw, 1.5rem);
    line-height: 1.5;
    border-bottom: 1px solid #b5b5b5;
    padding-bottom: 1.5vw;
  }
}
.p-results__modal__body .c-equipment {
  color: #3b4a7a;
  margin: 5px 0;
}
@media screen and (min-width: 769px) {
  .p-results__modal__body .c-equipment {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
@media screen and (max-width: 768px) {
  .p-results__modal__body .c-equipment {
    line-height: 1.5;
    font-size: 4vw;
    font-size: min(4vw, 1.5rem);
  }
}
.p-results__modal__body .c-name {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
}
.p-results__modal__body .c-name figcaption {
  margin-right: 5px;
  color: #333333;
}
@media screen and (min-width: 769px) {
  .p-results__modal__body .c-name figcaption {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-results__modal__body .c-name figcaption {
    font-size: 3.733333333vw;
    font-size: min(3.733333333vw, 1.4rem);
  }
}
.p-results__modal__body .c-name p {
  color: #3b4a7a;
}
@media screen and (min-width: 769px) {
  .p-results__modal__body .c-name p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .p-results__modal__body .c-name p {
    font-size: 4vw;
    font-size: min(4vw, 1.5rem);
  }
}
.p-results__modal__body .c-prev, .p-results__modal__body .c-next {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 769px) {
  .p-results__modal__body .c-prev, .p-results__modal__body .c-next {
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all .2s;
  }
  .p-results__modal__body .c-prev:hover, .p-results__modal__body .c-next:hover {
    opacity: .7;
  }
}
@media screen and (max-width: 768px) {
  .p-results__modal__body .c-prev, .p-results__modal__body .c-next {
    width: 8.666666667vw;
    height: 8.666666667vw;
  }
}
.p-results__modal__body .c-prev {
  background-image: url(../img/home/icn_prev.png);
}
@media screen and (min-width: 769px) {
  .p-results__modal__body .c-prev {
    left: -20px;
  }
}
@media screen and (max-width: 768px) {
  .p-results__modal__body .c-prev {
    left: -4vw;
  }
}
.p-results__modal__body .c-next {
  background-image: url(../img/home/icn_next.png);
}
@media screen and (min-width: 769px) {
  .p-results__modal__body .c-next {
    right: -20px;
  }
}
@media screen and (max-width: 768px) {
  .p-results__modal__body .c-next {
    right: -4vw;
  }
}

@media screen and (min-width: 769px) {
  ._sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  ._pc {
    display: none;
  }
}
@media all and (-ms-high-contrast: none) {
  body, html {
    height: auto !important;
  }

  .l-wrapper {
    display: block;
  }
}

/*# sourceMappingURL=style.css.map */
