@charset "UTF-8";
/*!
【記述ルール】
p-header-****__****--****
 -****  セクション的要素
 __**** ブロック・インライン的要素の名称
 --**** 修飾的要素の名称
 例）p-top-content01__list--bold

 注意：1クラスに記述するブロック・インライン的要素は必要以上多くならないように注意する
*/
/* =========================================================
flex - flex関連の指定
========================================================= */
/* =========================================================
shadow - シャドウ
デフォルトでは色が濃い目なので使う際に調整してください。
========================================================= */
/* =========================================================
other - その他
========================================================= */
/* =========================================================
color - 色の設定
========================================================= */
/* =========================================================
font - font-familyの設定など
========================================================= */
@font-face {
  font-family: YuGothicM;
  src: local("Yu Gothic Medium");
}
/* =========================================================
typography - テキスト関連の設定
========================================================= */
html {
  font-size: 100%;
  line-height: 1.5em;
}

/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, 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, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* =========================================================
base - 基本設定
========================================================= */
body {
  overflow-x: hidden;
  font-size: 14px;
  font-size: 0.875rem;
  color: #333333;
  background: #000000;
  font-family: "Noto Sans JP", "Noto Sans Japanese", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  letter-spacing: 0.1em;
}
@media screen and (min-width: 980px) {
  body {
    overflow-x: hidden !important;
  }
}

a {
  cursor: pointer;
  text-decoration: none;
  transition: .4s;
  line-height: 1;
}
a:hover {
  color: inherit;
}

p {
  color: #555555;
}

img {
  height: auto;
  vertical-align: bottom;
  max-width: 100%;
  width: auto;
}

.pc-show {
  display: none;
}
@media screen and (min-width: 980px) {
  .pc-show {
    display: block;
  }
}

@media screen and (min-width: 980px) {
  .sp-show {
    display: none;
  }
}

.pc-show-inline {
  display: none;
}
@media screen and (min-width: 980px) {
  .pc-show-inline {
    display: inline-block;
  }
}

/* =========================================================
section - コンテンツの大枠
========================================================= */
.l-container {
  width: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .l-container {
    max-width: 1250px;
  }
}

/* =========================================================
header - ヘッダー
========================================================= */
/* =========================================================
main - メイン
========================================================= */
.l-main {
  position: relative;
  background: url(../images/main_bg.webp) repeat-y top center;
  background-size: 100% auto;
  margin: 0 auto;
  max-width: 768px;
  padding: 30px 0 50px;
  width: 100%;
}

/* =========================================================
footer - フッターのレイアウト
========================================================= */
/* =========================================================
title - 共通のタイトルやテキストなど
========================================================= */
.c-basic-h2 {
  text-align: center;
  padding-bottom: 8%;
}
.c-basic-h2 img {
  width: auto;
}

.c-basic-h2-text {
  text-align: center;
  padding-bottom: 8%;
}
.c-basic-h2-text .in {
  color: #D7AE47;
  display: inline-block;
  font-size: calc(62 * (100vw / 750));
  font-weight: bold;
  padding-bottom: 30px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-basic-h2-text .in {
    font-size: 45px;
    font-size: 2.8125rem;
  }
}
.c-basic-h2-text .in:before {
  background: #D7AE47;
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: calc(50% - 35px);
  height: 1px;
  width: 70px;
}

#title_img,
.app_method_img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  #title_img,
  .app_method_img {
    width: auto;
  }
}

/* =========================================================
text - 共通のテキストなど
========================================================= */
.c-basic-txt,
.c-error-message {
  color: #555555;
  word-wrap: break-word;
  margin-top: 0px;
  margin-top: 0rem;
  margin-bottom: 6px;
  margin-bottom: 0.375rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 24px;
  line-height: 1.5rem;
}
@media screen and (min-width: 980px) {
  .c-basic-txt,
  .c-error-message {
    margin-top: 0px;
    margin-top: 0rem;
    margin-bottom: 12px;
    margin-bottom: 0.75rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 24px;
    line-height: 1.5rem;
  }
}
.c-basic-txt:last-of-type,
.c-error-message:last-of-type {
  margin-bottom: 0;
}

.c-small-txt {
  margin-top: 0px;
  margin-top: 0rem;
  margin-bottom: 3px;
  margin-bottom: 0.18rem;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 24px;
  line-height: 1.5rem;
}
@media screen and (min-width: 980px) {
  .c-small-txt {
    margin-top: 0px;
    margin-top: 0rem;
    margin-bottom: 6px;
    margin-bottom: 0.375rem;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 24px;
    line-height: 1.5rem;
  }
}
.c-small-txt:last-of-type {
  margin-bottom: 0;
}

.c-error-message {
  display: inline-block;
  color: #e74c3c;
  margin-top: .5rem;
}

/* =========================================================
button - ボタン関係のコンポーネント
========================================================= */
.c-basic-btn {
  text-align: center;
}
.c-basic-btn a, .c-basic-btn button {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzg0MDAyZCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzQyMDAxNyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #84002d), color-stop(100%, #420017));
  background-image: -moz-linear-gradient(left, #84002d 0%, #420017 100%);
  background-image: -webkit-linear-gradient(left, #84002d 0%, #420017 100%);
  background-image: linear-gradient(to right, #84002d 0%, #420017 100%);
  border: 1px solid #ffffff;
  display: block;
  padding: 15px 15px;
  position: relative;
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
  transform: skewX(-20deg);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-basic-btn a, .c-basic-btn button {
    max-width: 300px;
  }
}
.c-basic-btn a:hover, .c-basic-btn button:hover {
  opacity: .7;
}
.c-basic-btn a .in, .c-basic-btn button .in {
  background: url(../images/icon_right_w.svg) no-repeat right center;
  background-size: 12px 12px;
  color: #fff;
  display: inline-block;
  font-size: calc(30 * (100vw / 750));
  font-weight: bold;
  transform: skewX(20deg);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-basic-btn a .in, .c-basic-btn button .in {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.c-basic-btn.blue a {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwM2U4NCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAxMTAzYiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #003e84), color-stop(100%, #01103b));
  background-image: -moz-linear-gradient(left, #003e84 0%, #01103b 100%);
  background-image: -webkit-linear-gradient(left, #003e84 0%, #01103b 100%);
  background-image: linear-gradient(to right, #003e84 0%, #01103b 100%);
}

/* =========================================================
txtarea - テキストエリア
========================================================= */
.c-txtarea {
  resize: none;
  width: 100%;
  height: 10rem;
  padding: .5rem;
  border: 0;
  border: 1px solid #dddddd;
  border-radius: 4px;
  background-color: #fafafa;
  font-size: 16px;
  font-size: 1rem;
  color: #555555;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.c-txtarea::placeholder {
  color: #cccccc;
}
.c-txtarea.is-entered {
  background-color: #ffffff;
}

/* =========================================================
drawer - ドロワーのスタイルなど
========================================================= */
.c-drawer {
  display: block;
  position: relative;
  z-index: 101;
}
@media screen and (min-width: 980px) {
  .c-drawer {
    display: none;
  }
}
.c-drawer .drawer-toggle {
  background-color: #333cb5;
  display: block;
}
@media screen and (min-width: 980px) {
  .c-drawer .drawer-toggle {
    display: none;
  }
}
.c-drawer-nav {
  overflow: scroll;
}
.c-drawer-nav__list {
  padding: 10px 20px;
}
.c-drawer-nav__item {
  text-align: center;
}
.c-drawer-nav__item:first-of-type {
  border-top: 1px  dotted #ccc;
}
.c-drawer-nav__item a {
  border-bottom: 1px  dotted #ccc;
  color: #fff;
  display: block;
  padding: 20px;
}
.c-drawer-label {
  color: #fff;
  font-size: 10px;
  font-size: 0.625rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  margin: auto;
}
.c-drawer-label::before {
  content: 'menu';
}

.drawer-nav {
  width: 85vw;
  width: -webkit-calc(100vw - 56px);
  width: calc(100vw - 56px);
}

.drawer--right .drawer-nav {
  background-color: rgba(60, 60, 60, 0.9);
  right: -85vw;
  right: -webkit-calc(-100vw + 56px);
  right: calc(-100vw + 56px);
}

.drawer--right.drawer-open .drawer-hamburger {
  background-color: #fff;
  right: 85vw;
  right: -webkit-calc(100vw - 56px);
  right: calc(100vw - 56px);
}

.drawer-hamburger {
  padding: 17px 0.75rem 29px;
  top: -2px;
}

.drawer-hamburger-icon {
  margin: 10px 10%;
  height: 0;
  width: 80%;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
  background-color: #fff;
}

.drawer-hamburger-icon:after {
  top: 0;
}

.drawer-open .c-drawer-label {
  color: #333cb5;
  bottom: 6px;
}

.drawer-open .c-drawer-label::before {
  content: 'close';
}

.drawer-open .drawer-hamburger-icon,
.drawer-open .drawer-hamburger-icon:after,
.drawer-open .drawer-hamburger-icon:before {
  background-color: #333cb5;
}

.slick-next {
  right: -20px;
}

/* =========================================================
pagenation - ページ送り
========================================================= */
.c-pagenation {
  text-align: center;
  margin: auto;
}
.c-pagenation__group {
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-pagenation__item + .c-pagenation__item {
  margin-left: .5rem;
}
.c-pagenation__item.is-current .c-pagenation__link {
  border-color: #666;
  background-color: #666;
  color: #ffffff;
  pointer-events: none;
}
.c-pagenation__link a {
  text-decoration: none;
}
.c-pagenation__link .page-numbers {
  width: 2rem;
  height: 2rem;
  border: 1px solid #999;
  color: #999;
  font-weight: bold;
  text-decoration: none;
  transition: .3s;
  display: inline-block;
  line-height: 1.7;
  margin: 0 5px;
}
.c-pagenation__link .page-numbers:hover {
  background-color: #666;
  border-color: #666;
  color: #fff;
}
.c-pagenation__link .next,
.c-pagenation__link .prev {
  border: none;
  width: 4rem;
}
.c-pagenation__link .next:hover,
.c-pagenation__link .prev:hover {
  background-color: #fff;
  color: #999;
  text-decoration: underline;
}
.c-pagenation__link .current {
  background-color: #666;
  color: #fff;
}

/* =========================================================
breadcrumbs - パンくずリスト
========================================================= */
/* =========================================================
navigation - グローバルナビなど
========================================================= */
/* =========================================================
trigger - トリガー
========================================================= */
.invisible {
  opacity: 0.0;
  transition: opacity 0.5s ease;
}

.c-trigger_delay_2 {
  animation-delay: .2s;
}
.c-trigger_delay_4 {
  animation-delay: .4s;
}
.c-trigger_delay_6 {
  animation-delay: .6s;
}
.c-trigger_delay_8 {
  animation-delay: .8s;
}
.c-trigger_delay_10 {
  animation-delay: 1s;
}
.c-trigger_delay_12 {
  animation-delay: 1.2s;
}
.c-trigger_delay_14 {
  animation-delay: 1.4s;
}
.c-trigger_delay_16 {
  animation-delay: 1.6s;
}
.c-trigger_delay_24 {
  animation-delay: 2.4s;
}
.c-trigger_duration_1 {
  --animate-duration: 1.5s;
}
.c-trigger_duration_2 {
  --animate-duration: 2s;
}
.c-trigger_duration_3 {
  --animate-duration: 3s;
}
.c-trigger_duration_4 {
  --animate-duration: 4s;
}

/* =========================================================
reveal effect - テキストエフェクト
========================================================= */
@-webkit-keyframes passing-bar {
  0% {
    left: 0;
    right: auto;
    width: 0;
  }
  50% {
    left: 0;
    right: auto;
    width: 100%;
  }
  51% {
    left: auto;
    right: 0;
    width: 100%;
  }
  100% {
    left: auto;
    right: 0;
    width: 0;
  }
}
@keyframes passing-bar {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@-webkit-keyframes passing-txt {
  0% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes passing-txt {
  0% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.u-passing .u-passing-bar {
  display: inline-block;
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.u-passing .u-passing-bar:before {
  content: '';
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: #80C6C4;
}
.u-passing .u-passing-txt {
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.u-passing.isActive .u-passing-time:before {
  -webkit-animation: passing-bar 1s ease 0s 1 normal forwards;
  animation: passing-bar 1s ease 0s 1 normal forwards;
}
.u-passing.isActive .u-passing-time_delay02:before {
  -webkit-animation: passing-bar 1s ease .2s 1 normal forwards;
  animation: passing-bar 1s ease .2s 1 normal forwards;
}
.u-passing.isActive .u-passing-time_delay04:before {
  -webkit-animation: passing-bar 1s ease .4s 1 normal forwards;
  animation: passing-bar 1s ease .4s 1 normal forwards;
}
.u-passing.isActive .u-passing-time_delay06:before {
  -webkit-animation: passing-bar 1s ease .6s 1 normal forwards;
  animation: passing-bar 1s ease .6s 1 normal forwards;
}
.u-passing.isActive .u-passing-time_delay08:before {
  -webkit-animation: passing-bar 1s ease .8s 1 normal forwards;
  animation: passing-bar 1s ease .8s 1 normal forwards;
}
.u-passing.isActive .u-passing-time_delay10:before {
  -webkit-animation: passing-bar 1s ease 1s 1 normal forwards;
  animation: passing-bar 1s ease 1s 1 normal forwards;
}
.u-passing.isActive .u-passing-time_delay12:before {
  -webkit-animation: passing-bar 1s ease 1.2s 1 normal forwards;
  animation: passing-bar 1s ease 1.2s 1 normal forwards;
}
.u-passing.isActive .u-passing-txt {
  -webkit-animation: passing-txt 0s ease .6s 1 normal forwards;
  animation: passing-txt 0s ease .6s 1 normal forwards;
}
.u-passing.isActive .u-passing-txt_delay08 {
  -webkit-animation: passing-txt 0s ease .8s 1 normal forwards;
  animation: passing-txt 0s ease .8s 1 normal forwards;
}
.u-passing.isActive .u-passing-txt_delay10 {
  -webkit-animation: passing-txt 0s ease 1s 1 normal forwards;
  animation: passing-txt 0s ease 1s 1 normal forwards;
}
.u-passing.isActive .u-passing-txt_delay12 {
  -webkit-animation: passing-txt 0s ease 1.2s 1 normal forwards;
  animation: passing-txt 0s ease 1.2s 1 normal forwards;
}
.u-passing.isActive .u-passing-txt_delay14 {
  -webkit-animation: passing-txt 0s ease 1.4s 1 normal forwards;
  animation: passing-txt 0s ease 1.4s 1 normal forwards;
}
.u-passing.isActive .u-passing-txt_delay16 {
  -webkit-animation: passing-txt 0s ease 1.6s 1 normal forwards;
  animation: passing-txt 0s ease 1.6s 1 normal forwards;
}

/* =========================================================
textline - テキストラインエフェクト
========================================================= */
.c-textline-txt {
  display: inline-block;
  opacity: 0;
  position: relative;
  transition: all 0.4s;
  z-index: 1;
}
.c-textline-txt:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1rem;
  background: #e8f3ff;
  z-index: -1;
  transition: all 0.8s;
  animation-delay: .6s;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .c-textline-txt:after {
    height: 1rem;
  }
}
.c-textline-txt.isActive {
  opacity: 1;
}
.c-textline-txt.isActive:after {
  opacity: 1;
  width: 100%;
}
.c-textline-txt-brown {
  position: relative;
  z-index: 1;
}
.c-textline-txt-brown:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2rem;
  background: #F1EAE9;
  z-index: -1;
  transition: all 0.8s;
  opacity: 0;
}
.c-textline-txt-brown.isActive:after {
  opacity: 1;
  width: 100%;
}

/* =========================================================
loader - プリローダー
========================================================= */
#c-loader {
  background-color: #F1EAE9;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 999;
}
#c-loader--wrap {
  max-width: 300px;
  width: 50%;
}
#c-loader .st0 {
  fill: none;
  fill-opacity: 0;
  stroke: #AA8E76;
  stroke-width: 1;
  transition: fill-opacity 1s;
}
#c-loader .done .st0 {
  fill: #5F2A1D;
  fill-opacity: 1;
  stroke-width: 0;
  transition: fill-opacity 1s, stroke-width 1s;
}

/* =========================================================
header - ヘッダー内のクラス
========================================================= */
.p-header {
  background: #000000;
}
.p-header--wrap {
  margin: 0 auto;
  max-width: 768px;
  width: 100%;
}

/* =========================================================
footer - フッター内のクラス
========================================================= */
.p-footer {
  background: #000;
}
.p-footer-nav--list {
  margin: 0 auto;
  max-width: 860px;
  padding: calc(15 * (100vw / 750)) 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-footer-nav--list {
    padding: 15px 0;
  }
}
.p-footer-nav--link {
  color: #ffffff;
  display: block;
  font-size: calc(28 * (100vw / 750));
  font-weight: bold;
  margin: calc(20 * (100vw / 750)) auto 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer-nav--link {
    font-size: 28px;
    font-size: 1.75rem;
    margin: 20px auto 0;
  }
}
.p-footer-nav--link:hover {
  background: #590320;
  color: #ffffff;
}
.p-footer-copy {
  background: #000000;
  padding: 15px;
  text-align: center;
}
.p-footer-copy .in {
  display: inline-block;
  color: #ffffff;
  font-size: calc(20 * (100vw / 750));
}
@media screen and (min-width: 768px) {
  .p-footer-copy .in {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/* =========================================================
copy - 利用規約のクラス
========================================================= */
.p-copy-text {
  padding: 0 25px;
}
.p-copy-text--copy {
  color: #ffffff;
  font-size: calc(22 * (100vw / 750));
  line-height: 1.8;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .p-copy-text--copy {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.p-copy-box {
  padding: 25px 0;
  border-top: 1px solid #D7AE47;
}
.p-copy-box--ttl {
  color: #D7AE47;
  font-size: calc(25 * (100vw / 750));
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 10px;
  position: relative;
  text-indent: -1.3rem;
  padding-left: 1rem;
}
@media screen and (min-width: 768px) {
  .p-copy-box--ttl {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
.p-copy-box--ttl::before {
  content: "■";
}
.p-copy-box--text {
  color: #ffffff;
  font-size: calc(22 * (100vw / 750));
  line-height: 1.8;
  padding-bottom: 10px;
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .p-copy-box--text {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.p-copy-box--text .text {
  color: #ffffff;
}
.p-copy-box--list {
  display: inline-block;
  text-align: left;
}
.p-copy-box--item {
  color: #ffffff;
  display: block;
  text-indent: -1.3rem;
  padding-left: 1rem;
  margin-bottom: 10px;
}
.p-copy-box--item:before {
  content: "・";
  color: #ffffff;
}
.p-copy-foot {
  margin: 8% auto 0;
}
.p-copy-foot .item:not(:first-of-type) {
  margin: 3% auto 0;
}
.p-copy-foot .item .btn {
  background: #000;
  border-radius: 5px;
  display: block;
  padding: calc(17 * (100vw / 768));
  position: relative;
  margin: 0 auto;
  text-align: center;
  max-width: 400px;
  width: 50%;
}
@media screen and (min-width: 768px) {
  .p-copy-foot .item .btn {
    padding: 17px;
  }
}
.p-copy-foot .item .btn .in {
  color: #fff;
  display: inline-block;
  font-size: calc(28 * (100vw / 768));
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-copy-foot .item .btn .in {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

/* =========================================================
post - 投稿のクラスなど
========================================================= */
