@charset "UTF-8";
/*********************
IMPORTING PARTIALS
*********************/
/*********************
COLORS
*********************/
/*********************
LAYOUT
*********************/
/*********************
FONT
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*********************
IMPORTING PARTIALS
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong,
.strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn,
em,
.em {
  font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
p {
  -webkit-hyphens: auto;
  -epub-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

/*
 * Addresses margins set differently in IE6/7.
 */
pre {
  margin: 0;
}

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
q:before,
q:after {
  content: '';
  content: none;
}

small, .small {
  font-size: 75%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1em 0;
}

dd {
  margin: 0;
}

/*
 * Addresses paddings set differently in IE6/7.
 */
menu {
  padding: 0 0 0 40px;
}

ol,
ul {
  padding: 0;
  list-style-type: none;
}

/*
 * Corrects list images handled incorrectly in IE7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* ==========================================================================
  Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.clearfix, .cf {
  zoom: 1;
}

.clearfix:before, .clearfix:after, .cf:before, .cf:after {
  content: "";
  display: table;
}

.clearfix:after, .cf:after {
  clear: both;
}

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic;
}

/*********************
COLORS
*********************/
/*********************
LAYOUT
*********************/
/*********************
FONT
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*********************
SCROLL VISIBLE STYLES
*********************/
.tp_sv_fade {
  opacity: 0;
  -webkit-transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tp_sv_fade.tp_sv_cur {
  opacity: 1;
}

/*
.tp_sv_b {
  -webkit-transform: translateY(40px);
      -ms-transform: translateY(40px);
          transform: translateY(40px);
  opacity: 0;
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
          transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
*/
.tp_sv_b.tp_sv_cur {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}

.tp_sv_l {
  -webkit-transform: translateX(-5%);
  transform: translateX(-5%);
  opacity: 0;
  -webkit-transition: -webkit-transform 2s cubic-bezier(0, 1, 0.15, 1), opacity 2s cubic-bezier(0, 1, 0.15, 1);
  -webkit-transition: opacity 2s cubic-bezier(0, 1, 0.15, 1), -webkit-transform 2s cubic-bezier(0, 1, 0.15, 1);
  transition: opacity 2s cubic-bezier(0, 1, 0.15, 1), -webkit-transform 2s cubic-bezier(0, 1, 0.15, 1);
  transition: transform 2s cubic-bezier(0, 1, 0.15, 1), opacity 2s cubic-bezier(0, 1, 0.15, 1);
  transition: transform 2s cubic-bezier(0, 1, 0.15, 1), opacity 2s cubic-bezier(0, 1, 0.15, 1), -webkit-transform 2s cubic-bezier(0, 1, 0.15, 1);
}

.tp_sv_l.tp_sv_cur {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  opacity: 1;
}

.tp_sv_balloon_l {
  -webkit-transform: translateX(-5%);
  transform: translateX(-5%);
  opacity: 0;
  -webkit-transition: -webkit-transform 2s cubic-bezier(0, 1, 0.15, 1), opacity 2s cubic-bezier(0, 1, 0.15, 1);
  -webkit-transition: opacity 2s cubic-bezier(0, 1, 0.15, 1), -webkit-transform 2s cubic-bezier(0, 1, 0.15, 1);
  transition: opacity 2s cubic-bezier(0, 1, 0.15, 1), -webkit-transform 2s cubic-bezier(0, 1, 0.15, 1);
  transition: transform 2s cubic-bezier(0, 1, 0.15, 1), opacity 2s cubic-bezier(0, 1, 0.15, 1);
  transition: transform 2s cubic-bezier(0, 1, 0.15, 1), opacity 2s cubic-bezier(0, 1, 0.15, 1), -webkit-transform 2s cubic-bezier(0, 1, 0.15, 1);
}

.tp_sv_balloon_l.tp_sv_cur {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
}

.tp_sv_balloon_r {
  -webkit-transform: translateX(5%);
  transform: translateX(5%);
  opacity: 0;
  -webkit-transition: -webkit-transform 2s cubic-bezier(0, 1, 0.15, 1), opacity 2s cubic-bezier(0, 1, 0.15, 1);
  -webkit-transition: opacity 2s cubic-bezier(0, 1, 0.15, 1), -webkit-transform 2s cubic-bezier(0, 1, 0.15, 1);
  transition: opacity 2s cubic-bezier(0, 1, 0.15, 1), -webkit-transform 2s cubic-bezier(0, 1, 0.15, 1);
  transition: transform 2s cubic-bezier(0, 1, 0.15, 1), opacity 2s cubic-bezier(0, 1, 0.15, 1);
  transition: transform 2s cubic-bezier(0, 1, 0.15, 1), opacity 2s cubic-bezier(0, 1, 0.15, 1), -webkit-transform 2s cubic-bezier(0, 1, 0.15, 1);
}

.tp_sv_balloon_r.tp_sv_cur {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
}

.tp_sv_glaph_r {
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: -webkit-transform 2s cubic-bezier(0, 1, 0.15, 1), opacity 2s cubic-bezier(0, 1, 0.15, 1);
  -webkit-transition: opacity 2s cubic-bezier(0, 1, 0.15, 1), -webkit-transform 2s cubic-bezier(0, 1, 0.15, 1);
  transition: opacity 2s cubic-bezier(0, 1, 0.15, 1), -webkit-transform 2s cubic-bezier(0, 1, 0.15, 1);
  transition: transform 2s cubic-bezier(0, 1, 0.15, 1), opacity 2s cubic-bezier(0, 1, 0.15, 1);
  transition: transform 2s cubic-bezier(0, 1, 0.15, 1), opacity 2s cubic-bezier(0, 1, 0.15, 1), -webkit-transform 2s cubic-bezier(0, 1, 0.15, 1);
}

.tp_sv_glaph_r.tp_sv_cur {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.tp_sv_ll {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
  -webkit-transition: -webkit-transform 0.9s cubic-bezier(0, 1, 0.15, 1), opacity 0.9s cubic-bezier(0, 1, 0.15, 1);
  -webkit-transition: opacity 0.9s cubic-bezier(0, 1, 0.15, 1), -webkit-transform 0.9s cubic-bezier(0, 1, 0.15, 1);
  transition: opacity 0.9s cubic-bezier(0, 1, 0.15, 1), -webkit-transform 0.9s cubic-bezier(0, 1, 0.15, 1);
  transition: transform 0.9s cubic-bezier(0, 1, 0.15, 1), opacity 0.9s cubic-bezier(0, 1, 0.15, 1);
  transition: transform 0.9s cubic-bezier(0, 1, 0.15, 1), opacity 0.9s cubic-bezier(0, 1, 0.15, 1), -webkit-transform 0.9s cubic-bezier(0, 1, 0.15, 1);
}

.tp_sv_ll.tp_sv_cur {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
}

.tp_sv_parallax_y {
  -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: block;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*********************
GENERAL STYLES
*********************/
html {
  position: relative;
  height: 100%;
  overflow: auto;
}

body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 100%;
  line-height: 1.5;
  color: #333333;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #0372a4;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

p {
  font-size: 100%;
  line-height: 170%;
}

/*********************
RESET STYLES
*********************/
div, p, h1, h2, h3, h4, h5, h6, ul, ol, li, a, form, input, object, dt, dd, dl, iframe, label {
  margin: 0;
  padding: 0;
}

ol, ul, li, dl, dt, dd {
  list-style-image: none;
  list-style-position: outside;
  list-style-type: none;
}

figure {
  margin: 0;
  float: left;
}

figcaption {
  margin: 2px 0 5px 0;
}

/*********************
INDEX
*********************/
body {
  width: 100%;
  overflow: hidden;
}

.tp {
  /*********************
  mainvisual
  *********************/
  /*********************
  header
  *********************/
  /*********************
  footer
  *********************/
  /*********************
  content
  *********************/
  /*********************
  other
  *********************/
}

.tp_back_top_btn {
  color: #31bcfb;
  font-size: 20px;
  text-align: center;
  width: 380px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0.6em;
  padding-bottom: 0.6em;
  border: 1px solid #31bcfb;
  border-radius: 4px;
  display: block;
  opacity: 1;
  -webkit-transition: opacity 0.150s ease;
  transition: opacity 0.150s ease;
}

@media screen and (max-width: 667px) {
  .tp_back_top_btn {
    font-size: 15px;
    font-weight: bold;
    width: 240px;
  }
}
.tp_back_top_btn:hover {
  text-decoration: none;
  opacity: 0.8;
}

.tp_zoom_btn {
  position: absolute;
  width: 43px;
  top: 5px;
  right: 5px;
  z-index: 5;
  display: none;
}

@media screen and (max-width: 667px) {
  .tp_zoom_btn {
    display: block;
  }
}
.tp_mainvisual {
  width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.tp_footer {
  margin-top: 65px;
  margin-bottom: 25px;
}

@media screen and (max-width: 999px) {
  .tp_footer {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 667px) {
  .tp_footer {
    margin-top: 0;
    margin-bottom: 10px;
  }
}
.tp_footer.tp_close {
  margin-bottom: 0px;
}

.tp_footer_inquiry {
  width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 90px;
  padding-right: 90px;
  padding-top: 22px;
  padding-bottom: 20px;
  border: 2px solid #0372a4;
}

@media screen and (max-width: 999px) {
  .tp_footer_inquiry {
    max-width: 960px;
    width: 96%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .tp_footer_inquiry {
    padding-left: 14px;
    padding-right: 14px;
  }
}
@media screen and (max-width: 667px) {
  .tp_footer_inquiry {
    border: 1px solid #0372a4;
  }
}
.tp_footer_inquiry_box {
  width: 29%;
  display: inline-block;
  margin-left: 5px;
}

.tp_footer_inquiry_box:first-child {
  margin-left: 0;
  width: 69%;
}

@media screen and (max-width: 768px) {
  .tp_footer_inquiry_box {
    width: 34%;
  }

  .tp_footer_inquiry_box:first-child {
    margin-left: 0;
    width: 64%;
  }
}
@media screen and (max-width: 667px) {
  .tp_footer_inquiry_box {
    display: none;
  }
}
.tp_footer_inquiry_box_sp {
  display: none;
}

@media screen and (max-width: 667px) {
  .tp_footer_inquiry_box_sp {
    text-align: center;
    display: block;
  }
}
.tp_footer_inquiry_box_sp_guid, .tp_footer_inquiry_box_sp_tel, .tp_footer_inquiry_box_sp_text {
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 70%;
}

.tp_footer_inquiry_box_sp_guid {
  width: 215px;
}

.tp_footer_inquiry_box_sp_tel {
  width: 200px;
  margin-top: 1em;
}

.tp_footer_inquiry_box_sp_text {
  width: 228px;
  margin-top: 0.75em;
}

.tp_footer_inquiry_num {
  margin-top: 6px;
}

.tp_footer_copyright {
  font-size: 8px;
  text-align: center;
  width: 96%;
  max-width: 960px;
  margin-top: 5px;
  margin-left: auto;
  margin-right: auto;
}

.tp_footer_copyright_text {
  font-size: 12px;
  text-align: center;
  width: 96%;
  max-width: 960px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.tp_content_area {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1000px) {
  .tp_content_area {
    width: 100%;
  }
}
.tp_content_main_text {
  font-size: 32px;
  color: #333333;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1em;
  font-weight: bold;
  position: relative;
  height: 35px;
  margin-top: 55px;
  padding-left: 15px;
  padding-top: 1.5px;
  border-left: 8px solid #0372a4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
}

@media screen and (max-width: 999px) {
  .tp_content_main_text {
    width: 96%;
    margin-right: auto;
    margin-left: auto;
  }
}
.tp_content_main_text:before {
  content: '';
  position: absolute;
  width: 2px;
  height: 100%;
  top: 0px;
  left: 2px;
  background: #0372a4;
}

@media screen and (max-width: 667px) {
  .tp_content_main_text {
    font-size: 26px;
    line-height: 1.15em;
    height: 28px;
    margin-top: 30px;
    padding-top: 0px;
  }
}
@media all and (-ms-high-contrast: none) {
  .tp_content_main_text_title {
    margin-top: 4px;
    display: block;
  }
}
.tp_content_heading_title {
  margin-top: 60px;
}

@media screen and (max-width: 667px) {
  .tp_content_heading_title {
    margin-top: 40px;
  }
}
.tp_content_heading_title_main {
  font-size: 22px;
  color: #ffffff;
  line-height: 1.2em;
  width: 100%;
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
  background-color: #0372a4;
}

@media all and (-ms-high-contrast: none) {
  .tp_content_heading_title_main {
    padding-top: 14px;
    padding-bottom: 6px;
    display: block;
  }
}
@media screen and (max-width: 999px) {
  .tp_content_heading_title_main {
    text-align: center;
    line-height: 1.4em;
  }
}
@media screen and (max-width: 667px) {
  .tp_content_heading_title_main {
    font-size: 18px;
  }
}
.tp_content_heading_title_text {
  font-size: 16px;
  max-width: 960px;
  width: 100%;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 999px) {
  .tp_content_heading_title_text {
    width: 96%;
  }
}
@media screen and (max-width: 667px) {
  .tp_content_heading_title_text {
    font-size: 14px;
    margin-top: 15px;
  }
}
.tp_content_table {
  width: 960px;
  margin-top: 50px;
}

.tp_content_table_wrap {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow-x: auto;
}

@media screen and (max-width: 999px) {
  .tp_content_table_wrap {
    width: 96%;
  }
}
.tp_content_table_wrap::-webkit-scrollbar {
  width: 5px;
  background: #f5f5f5;
  border-radius: 3px;
  overflow: hidden;
}

.tp_content_table_wrap::-webkit-scrollbar:horizontal {
  height: 5px;
  border-radius: 3px;
}

.tp_content_table_wrap::-webkit-scrollbar-corner, .tp_content_table_wrap::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 3px;
  overflow: hidden;
}

.tp_content_table_info {
  color: #737474;
  font-size: 12px;
  text-align: right;
  margin-top: 10px;
}

@media screen and (max-width: 999px) {
  .tp_content_table_info {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 667px) {
  .tp_content_table_info {
    text-align: left;
  }
}
.tp_content_table_info.tp_indent {
  text-indent: -1em;
  padding-left: 1em;
}

.tp_content_table_tr {
  width: 100%;
}

.tp_content_table_tr_color_01 {
  font-weight: bold;
  background-color: #e5f8e1;
}

.tp_content_table_tr_color_02 {
  font-weight: bold;
  background-color: #f9f2ff;
}

.tp_content_table_tr_color_03 {
  font-weight: bold;
  background-color: #ffffe2;
}

.tp_content_table_tr_color_04 {
  font-weight: bold;
  background-color: #f9f2ff;
}

.tp_content_table_tr_color_05 {
  font-weight: bold;
  background-color: #fff2f7;
}

.tp_content_table_tr_color_06 {
  font-weight: bold;
  background-color: #ffeee0;
}

.tp_content_table_tr_color_07 {
  font-weight: bold;
  background-color: #e4f7ff;
}

.tp_content_table_tr_color_08 {
  font-weight: bold;
  background-color: #fff8e1;
}

.tp_content_table_tr_color_09 {
  font-weight: bold;
  background-color: #ffe5eb;
}

.tp_content_table_td {
  font-size: 16px;
  text-align: center;
  border-top: 1px solid #e1e1e1;
  border-left: 1px solid #e1e1e1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 8px;
}

.tp_content_table_td:last-child {
  border-right: 1px solid #e1e1e1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.tp_content_table_td_border {
  border-bottom: 1px solid #e1e1e1;
}

.tp_content_table_td_product {
  text-align: left;
  padding-left: 25px;
}

.tp_content_table_td_line_hide {
  border-top: none;
}

.tp_content_table.tp_column4 .tp_cell1 {
  width: 195px;
}

.tp_content_table.tp_column4 .tp_cell2 {
  width: 145px;
}

.tp_content_table.tp_column4 .tp_cell3 {
  width: 355px;
}

.tp_content_table.tp_column5_1 .tp_cell1 {
  width: 115px;
}

.tp_content_table.tp_column5_1 .tp_cell2 {
  width: 120px;
}

.tp_content_table.tp_column5_1 .tp_cell3 {
  width: 325px;
}

.tp_content_table.tp_column5_1 .tp_cell4 {
  width: 235px;
}

.tp_content_table.tp_column5_2 .tp_cell1 {
  width: 195px;
}

.tp_content_table.tp_column5_2 .tp_cell2 {
  width: 145px;
}

.tp_content_table.tp_column5_2 .tp_cell3 {
  width: 115px;
}

.tp_content_table.tp_column5_2 .tp_cell4 {
  width: 240px;
}

.tp_content_graph_title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 35px;
  max-width: 960px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 999px) {
  .tp_content_graph_title {
    width: 96%;
  }
}
@media screen and (max-width: 667px) {
  .tp_content_graph_title {
    font-size: 16px;
    margin-top: 20px;
  }
}
.tp_content_image_pc {
  display: block;
}

@media screen and (max-width: 667px) {
  .tp_content_image_pc {
    display: none;
  }
}
.tp_content_image_sp {
  display: none;
}

@media screen and (max-width: 667px) {
  .tp_content_image_sp {
    display: block;
  }
}
.tp_content_image_btn {
  position: absolute;
  width: 43px;
  top: 5px;
  right: 5px;
  z-index: 5;
  display: none;
}

@media screen and (max-width: 667px) {
  .tp_content_image_btn {
    display: block;
  }
}
.tp_content_banner_area {
  width: 100%;
  max-width: 770px;
  margin: 40px auto 0px auto;
}

.tp_content_banner_area_img {
  text-decoration: none;
  opacity: 1;
  -webkit-transition: opacity 0.150s ease;
  transition: opacity 0.150s ease;
  -webkit-tap-highlight-color: transparent;
}

.tp_content_banner_area_img:hover {
  text-decoration: none;
  opacity: 0.7;
  -webkit-tap-highlight-color: transparent;
}

.tp_content_banner_area_img_pc {
  display: block;
}

@media screen and (max-width: 667px) {
  .tp_content_banner_area_img_pc {
    display: none;
  }
}
.tp_content_banner_area_img_sp {
  display: none;
}

@media screen and (max-width: 667px) {
  .tp_content_banner_area_img_sp {
    display: block;
  }
}
@media screen and (max-width: 999px) {
  .ua_ios7 .tp_index_header {
    height: 500px;
  }
}
@media screen and (max-width: 999px) {
  .ua_ios7 .tp_index_header .tp_header_greet_layered {
    height: 500px;
  }
}
.tp_indent_one {
  text-indent: -1em;
  margin-left: 1em;
}

.tp_indent_two {
  text-indent: -2em;
  margin-left: 2em;
}

.tp_notes_icon {
  font-size: 9px;
  vertical-align: text-top;
}

.tp_bracket_l, .tp_bracket_r {
  display: inline-block;
}

@media screen and (max-width: 667px) {
  .tp_bracket_l, .tp_bracket_r {
    display: inline-block;
  }
}
.tp_bracket_l {
  margin-left: -0.5em;
}

@media screen and (max-width: 667px) {
  .tp_bracket_l_sp {
    margin-left: -0.5em;
  }
}
.tp_bracket_r {
  margin-right: -0.5em;
}

@media screen and (max-width: 667px) {
  .tp_bracket_r_sp {
    margin-right: -0.5em;
  }
}
.tp_hide_desktop {
  display: none !important;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .tp_hide_desktop {
    display: inherit !important;
  }

  .tp_hide_tablet {
    display: none !important;
  }
}
@media screen and (min-width: 668px) and (max-width: 767px) {
  .tp_hide_desktop {
    display: inherit !important;
  }

  .tp_hide_tablet {
    display: none !important;
  }
}
@media screen and (max-width: 667px) {
  .tp_hide_desktop {
    display: inherit !important;
  }

  .tp_hide_phone {
    display: none !important;
  }
}
/*********************
MAINVISUAL
*********************/
.content_mainvisual.tp_mainvisual {
  position: relative;
  max-width: 960px;
  width: 100%;
  padding-top: 25px;
  border-top: 1px solid #cccccc;
}

@media screen and (min-width: 668px) and (max-width: 999px) {
  .content_mainvisual.tp_mainvisual {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.content_mainvisual .tp_mainvisual_img_pc {
  display: block;
}

@media screen and (max-width: 999px) {
  .content_mainvisual .tp_mainvisual_img_pc {
    width: 100%;
  }
}
@media screen and (max-width: 667px) {
  .content_mainvisual .tp_mainvisual_img_pc {
    display: none;
  }
}
.content_mainvisual .tp_mainvisual_img_sp {
  display: none;
}

@media screen and (max-width: 667px) {
  .content_mainvisual .tp_mainvisual_img_sp {
    width: 100%;
    display: block;
  }
}
.content_mainvisual .tp_mainvisual_btn_img {
  display: block;
}

.content_mainvisual .tp_mainvisual_btn_pc {
  position: absolute;
  width: 570px;
  bottom: 5%;
  left: 0px;
  right: 0px;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  opacity: 1;
  -webkit-transition: opacity 0.150s ease;
  transition: opacity 0.150s ease;
  -webkit-tap-highlight-color: transparent;
}

.content_mainvisual .tp_mainvisual_btn_pc:hover {
  text-decoration: none;
  opacity: 0.7;
  -webkit-tap-highlight-color: transparent;
}

@media screen and (max-width: 999px) {
  .content_mainvisual .tp_mainvisual_btn_pc {
    width: 500px;
    bottom: 4%;
  }
}
@media screen and (max-width: 667px) {
  .content_mainvisual .tp_mainvisual_btn_pc {
    display: none;
  }
}
.content_mainvisual .tp_mainvisual_btn_sp {
  display: none;
}

@media screen and (max-width: 667px) {
  .content_mainvisual .tp_mainvisual_btn_sp {
    width: 240px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}
.content_mainvisual .tp_mainvisual_btn_sp_wrap {
  display: none;
}

@media screen and (max-width: 667px) {
  .content_mainvisual .tp_mainvisual_btn_sp_wrap {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 2px solid #0372a4;
    border-bottom: 2px solid #0372a4;
    display: block;
  }
}
.content_mainvisual .tp_mainvisual_slide_part {
  position: relative;
  display: none;
}

.content_mainvisual .tp_mainvisual_slide_part.slick-slide {
  display: block;
}

.content_mainvisual .tp_mainvisual_slide_part_btn {
  position: absolute;
  width: 440px;
  margin-left: auto;
  margin-right: auto;
  left: 0%;
  right: 0%;
  bottom: 10%;
  display: block;
  cursor: pointer;
}

@media screen and (max-width: 667px) {
  .content_mainvisual .tp_mainvisual_slide_part_btn {
    width: 180px;
  }
}
.content_mainvisual .tp_mainvisual_slide_part_btn_img {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: -webkit-transform 0.150s ease;
  transition: -webkit-transform 0.150s ease;
  transition: transform 0.150s ease;
  transition: transform 0.150s ease, -webkit-transform 0.150s ease;
}

.content_mainvisual .tp_mainvisual_slide_part_btn:hover .tp_mainvisual_slide_part_btn_img {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
}

.content_mainvisual .tp_mainvisual_slide_dots {
  text-align: center;
}

.content_mainvisual .tp_mainvisual_slide_dots li {
  margin-left: 10px;
  display: inline-block;
  cursor: pointer;
}

.content_mainvisual .tp_mainvisual_slide_dots li:first-child {
  margin-left: 0px;
}

.content_mainvisual .tp_mainvisual_slide_dots li:before {
  content: '';
  width: 10px;
  height: 10px;
  background: #c7c7c7;
  border-radius: 50%;
  display: block;
}

.content_mainvisual .tp_mainvisual_slide_dots li button {
  display: none;
}

.content_mainvisual .tp_mainvisual_slide_dots .slick-active:before {
  background: #31bcfb;
}

@media screen and (max-width: 667px) {
  .content_mainvisual .tp_mainvisual_slide_pc {
    display: none;
  }
}
.content_mainvisual .tp_mainvisual_slide_sp {
  display: none;
}

@media screen and (max-width: 667px) {
  .content_mainvisual .tp_mainvisual_slide_sp {
    display: block;
  }
}
.content_mainvisual .tp_mainvisual_slide_sp .tp_mainvisual_slide_dots {
  display: none !important;
}

/*********************
CAMPAIGN
*********************/
.pcOnly {
  display: block;
}

.spOnly {
  display: none;
}

@media screen and (max-width: 667px) {
  .pcOnly {
    display: none;
  }

  .spOnly {
    display: block;
  }
}
.tp_entry_area {
  max-width: 695px;
  margin: 0 auto;
}

.tp_entry_area a:hover {
  opacity: 0.7;
}

.tp_entry_area .btn_upper_txt {
  text-align: center;
  min-height: 25px;
  padding-top: 20px;
  margin-bottom: 5px;
}

.tp_entry_area .btn_upper_txt span {
  padding: 0 25px;
  font-size: 19px;
  background: url(../images/btn_line_01.png) left top no-repeat, url(../images/btn_line_02.png) right top no-repeat;
  background-size: 18px 23px;
}

.tp_entry_area .btn_present_txt {
  min-height: 53px;
  padding-left: 80px;
  background: url(../images/icon_now.png) left center no-repeat;
  background-size: 75px 53px;
}

.tp_entry_area .btn_present_txt {
  font-size: 25px;
  color: #ff6d3d;
  font-weight: bold;
}

.tp_entry_area .btn_present_txt p {
  border-bottom: solid 1px #666666;
}

.tp_entry_area .btn_present_txt span {
  font-size: 20px;
  color: #333333;
  padding: 0 25px 0 5px;
  background: url(../images/icon_now_arrow.png) right center no-repeat;
}

.tp_entry_area .btn_present_txt a {
  color: #ff6d3d;
}

.tp_entry_area .btn_present_txt a:hover {
  text-decoration: none;
}

.tp_entry_area .btn_present_txt a:hover p {
  opacity: 0.7;
}

.tp_beginner_area {
  max-width: 820px;
  margin: 100px auto;
}

.tp_beginner_area h2 {
  padding-bottom: 25px;
  font-size: 45px;
  line-height: 1.2;
  color: #0372a4;
  background: url(../images/line_beginner_pc.png) left bottom no-repeat;
}

.tp_beginner_area h2 span {
  padding-left: 150px;
  background: url(../images/icon_beginner.png) 27px top no-repeat;
  background-size: 90px auto;
  min-height: 117px;
  display: block;
}

.tp_beginner_area .tp_topic_merit_movie_youtube {
  position: relative;
  width: 100%;
  margin-top: 30px;
  padding-top: 56.25%;
}

.tp_beginner_area .tp_topic_merit_movie_youtube > iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.tp_content_total {
  width: 960px;
  margin: 0 auto;
  padding: 60px 30px 40px;
  background: #fffedf;
}

.tp_content_total.under {
  margin-top: 50px;
  padding: 10px 30px 35px;
}

.tp_content_total .total_arrow {
  margin: -90px 0 50px;
  text-align: center;
}

.tp_content_total h2 {
  color: #333333;
  font-size: 40px;
  text-align: center;
  margin-bottom: 40px;
}

.tp_content_total h2 span,
.tp_content_total h2 strong {
  font-size: 62px;
  font-weight: bold;
  line-height: 1.2;
}

.tp_content_total h2 strong {
  color: #e6005f;
}

.tp_content_total .read_txt {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 45px;
}

.tp_content_total .img_box .img {
  text-align: center;
}

.tp_content_total .img_box .box {
  border: solid 5px #30bcfb;
  padding: 50px 50px;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.6;
  margin: -30px 0 30px;
  background: url(../images/bg_box_arrow.png) right top no-repeat #fff;
}

.tp_content_gray {
  width: 960px;
  margin: 0 auto;
  padding: 50px 30px 100px;
  background: #efefef;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 30px;
}

.tp_content_gray .ideco_area {
  border: solid 1px #333333;
  border-radius: 10px;
  padding: 44px 39px;
  background: #fff;
}

.tp_content_gray .ideco_area h2 {
  background: url(../images/chart_arrow_02.png) center bottom no-repeat;
  background-size: 90px auto;
  padding-bottom: 36px;
  margin-bottom: 30px;
}

.tp_content_gray .ideco_area h2 span {
  border: solid 5px #0372a4;
  border-radius: 10px;
  text-align: center;
  padding: 25px 0 35px;
  display: block;
}

.tp_content_gray .ideco_area .read_txt {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 70px;
}

.tp_content_gray .ideco_area strong {
  color: #e6005f;
}

.tp_content_gray .ideco_area .attention {
  margin-bottom: 80px;
}

.tp_content_gray .ideco_area .attention dt {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.tp_content_gray .ideco_area .attention dd {
  border-top: solid 4px #e6005f;
  border-bottom: solid 4px #e6005f;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  padding: 30px 0;
  line-height: 1.4;
}

.tp_content_gray .ideco_area .attention dd strong {
  font-size: 32px;
}

.tp_content_gray .merit h3 {
  font-size: 50px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 45px;
}

.tp_content_gray .ideco_area .miryoku span {
  width: 250px;
  background: #30bcfb;
  color: #fff;
  display: block;
  margin: 0 auto;
  font-size: 34px;
  font-weight: bold;
  border-radius: 26px;
  text-align: center;
  padding: 13px 0;
}

.tp_content_gray .ideco_area .miryoku {
  padding-bottom: 18px;
  background: url(../images/miryoku_arrow.png) center bottom no-repeat;
  background-size: 24px auto;
}

.tp_content_gray .tp_unyou_preparation_image_graph {
  position: relative;
}

.tp_content_gray .merit_box {
  width: 32%;
  float: left;
  border: solid 1px #0372a4;
  margin-right: 2%;
}

.tp_content_gray .merit_box:last-child {
  margin-right: 0;
}

.tp_content_gray .merit_box h4 {
  background: #0372a4;
  text-align: center;
  padding-bottom: 10px;
}

.tp_content_gray .merit_box h4 img {
  width: 50px;
  margin-top: -25px;
}

.tp_content_gray .merit_box h4 span {
  font-size: 21px;
  color: #fff;
  font-weight: bold;
  display: block;
}

.tp_content_gray .merit_box .icon {
  background: #e2f6fe;
  text-align: center;
  padding: 15px 0;
  font-size: 24px;
  font-weight: bold;
  color: #0372A4;
}

.tp_content_gray .merit_box .txt {
  font-size: 20px;
  padding: 20px;
  line-height: 1.4;
  min-height: 200px;
}

.tp_content_gray .merit_box .txt span {
  font-size: 15px;
  display: block;
  margin-top: 10px;
}

.tp_content_gray .merit_box .txt strong {
  color: #333333;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #ff0));
  background: linear-gradient(transparent 60%, #ff0 0%);
}

.tp_content_gray .ttl_blue {
  text-align: center;
  margin-top: 100px;
}

.tp_content_gray .ttl_blue p {
  display: inline;
  padding: 0 30px;
  font-size: 36px;
  font-weight: bold;
  background: url(../images/btn_line_03.png) left center no-repeat, url(../images/btn_line_04.png) right center no-repeat;
  background-size: 24px auto;
}

.tp_content_gray .ttl_blue h3 {
  padding-bottom: 30px;
  background: url(../images/chart_arrow_mini.png) center bottom no-repeat;
  background-size: 60px auto;
}

.tp_content_gray .ttl_blue h3 span {
  background: #0372a4;
  display: block;
  border-radius: 10px;
  color: #fff;
  padding: 50px 0;
  font-size: 32px;
}

.tp_content_gray .merit_txt01 {
  text-align: center;
  font-size: 26px;
  color: #0372a4;
  font-weight: bold;
  margin: 20px 0 50px;
}

.tp_content_gray .anxiety_area {
  border: solid 1px #333333;
  border-radius: 10px;
  padding: 44px 39px;
  background: #fff;
  margin-top: 40px;
}

.tp_content_gray .anxiety_area .read_txt {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}

.tp_content_gray .anxiety_area h3 {
  text-align: center;
  margin-bottom: 25px;
}

.tp_content_gray .anxiety_area .comment01 {
  width: 720px;
  border: solid 1px #333;
  min-height: 140px;
  border-radius: 10px;
  position: relative;
  margin: 0 auto 80px;
}

.tp_content_gray .anxiety_area .comment_box01 p {
  padding: 40px 70px 0;
}

.tp_content_gray .anxiety_area .comment01 img {
  position: absolute;
  bottom: -29px;
  right: 35px;
  width: 90px;
}

.tp_content_gray .anxiety_area .comment01 .comment_box {
  position: absolute;
  padding: 40px 160px 70px 70px;
  bottom: -36px;
  font-size: 20px;
  background: url(../images/comment_bg01.png) 525px bottom no-repeat;
}

.tp_content_gray .anxiety_area .comment02 {
  width: 720px;
  border: solid 1px #333;
  min-height: 140px;
  border-radius: 10px;
  position: relative;
  margin: 0 auto 80px;
}

.tp_content_gray .anxiety_area .comment_box02 p {
  padding: 40px 70px 0;
}

.tp_content_gray .anxiety_area .comment02 img {
  position: absolute;
  bottom: -29px;
  left: 35px;
  width: 104px;
}

.tp_content_gray .anxiety_area .comment02 .comment_box {
  position: absolute;
  padding: 40px 70px 70px 160px;
  bottom: -36px;
  font-size: 20px;
  background: url(../images/comment_bg02.png) 160px bottom no-repeat;
}

.tp_content_gray .note_txt01 {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
}

.tp_content_gray .note_ttl {
  width: 720px;
  font-size: 34px;
  font-weight: bold;
  line-height: 1.4;
  color: #e6005f;
  margin: 0 auto 30px;
  padding: 40px 40px 40px 195px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: solid 5px #e6005f;
  background: url(../images/note_icon.png) 80px center no-repeat;
}

.tp_content_gray .note_txt02 {
  text-align: center;
}

.point_area {
  margin-top: 35px;
}

.point_area h3 {
  color: #fff;
  font-size: 45px;
  text-align: center;
  padding: 55px 0 50px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background: url(../images/point_ttl_img.png) 90px center no-repeat #e6005f;
}

.point_area h3 span {
  font-size: 30px;
}

.point_area .point_box {
  background: #fff;
  border: solid 1px #333;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top: none;
  padding: 40px;
}

.point_area .read_text {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 40px;
}

.point_area .read_text strong {
  font-size: 36px;
  color: #e6005f;
}

.point_area .box_q {
  border: solid 2px #595959;
  border-radius: 10px;
  position: relative;
  padding: 45px 80px;
  font-size: 22px;
  margin-bottom: 20px;
}

.point_area .box_q .icon {
  position: absolute;
  top: -30px;
  left: 45px;
}

.point_area .box_a {
  padding-top: 32px;
  margin-bottom: 120px;
  background: url(../images/qa_arrow01.png) top center no-repeat;
}

.point_area .box_a:last-child {
  margin-bottom: 0;
}

.point_area .box_a_inner {
  border: solid 2px #e6005f;
  border-radius: 10px;
  position: relative;
  padding: 45px 80px 20px;
  font-size: 22px;
}

.point_area .box_a .icon {
  position: absolute;
  top: -30px;
  left: 45px;
}

.point_area .box_a_inner.bg01 {
  background: url(../images/point_img01.png) 610px bottom no-repeat;
}

.point_area .box_a_inner.bg02 {
  background: url(../images/point_img02.png) 640px bottom no-repeat;
}

.point_area .box_a_inner.bg03 {
  padding-bottom: 230px;
  background: url(../images/point_img03.png) center bottom no-repeat;
}

.point_area .box_a .a_ttl {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.point_area .box_a .a_txt01 {
  font-size: 18px;
  width: 530px;
}

.point_area .box_a .a_txt02 {
  font-size: 18px;
  margin-bottom: 30px;
}

.point_area .box_a .document .ttl {
  background: #bfbfbf;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  position: relative;
  padding: 10px 0;
}

.point_area .box_a .document .ttl span {
  display: block;
  font-size: 16px;
  font-weight: normal;
}

.point_area .box_a .document .ttl img {
  position: absolute;
  top: -10px;
  left: 20%;
}

.point_area .box_a .document ul {
  background: #efefef;
  padding: 10px 90px;
}

.point_area .box_a .document li {
  font-size: 18px;
}

.point_area .box_a .graph_area .ttl {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.point_area .box_a .graph_area .arrow {
  text-align: center;
  margin: 15px 0 10px;
}

.point_area .box_a .graph_area .graph {
  width: 390px;
  float: left;
  margin-right: 10px;
}

.point_area .box_a .graph_area .comment {
  width: 227px;
  float: left;
  color: #fff;
  font-size: 18px;
  margin-top: 22px;
  padding-left: 33px;
}

.point_area .box_a .graph_area .comment span {
  display: block;
  padding: 20px;
  width: 220px;
  border-radius: 10px;
  font-weight: bold;
}

.point_area .box_a .graph_area .comment01 {
  background: url(../images/qa_arrow02.png) left 75px no-repeat;
}

.point_area .box_a .graph_area .comment02 {
  background: url(../images/qa_arrow03.png) left 75px no-repeat;
}

.point_area .box_a .graph_area .comment01 span {
  background: #7b7b7b;
}

.point_area .box_a .graph_area .comment02 span {
  background: #e6005f;
}

.point_area .voice {
  border: solid 1px #646464;
  border-radius: 10px;
  padding: 20px 30px 20px 50px;
  margin-bottom: 40px;
  overflow: hidden;
}

.point_area .voice:last-child {
  margin-bottom: 0;
}

.point_area .voice .img {
  width: 170px;
  float: left;
  margin-right: 40px;
}

.point_area .voice .ttl {
  font-size: 20px;
  padding-top: 20px;
  margin-bottom: 10px;
}

.point_area .voice .detail {
  font-size: 20px;
}

.tp_entry_more {
  padding-top: 40px;
}

.tp_entry_more .ttl {
  text-align: center;
  font-size: 26px;
  margin-bottom: 15px;
}

.tp_entry_more .ttl span {
  font-size: 42px;
  padding: 0 50px;
  background: url(../images/btn_line_05.png) left center no-repeat, url(../images/btn_line_06.png) right center no-repeat;
  background-size: 40px auto,40px auto;
}

.tp_entry_more {
  position: relative;
  width: 820px;
  margin: 30px auto;
}

.tp_entry_more .box {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.4;
  border: solid 5px #e6005f;
  background: #fff;
  padding: 40px 65px;
}

.tp_entry_more .box span {
  font-size: 26px;
}

.tp_entry_more .box strong {
  color: #e6005f;
}

.tp_entry_more .img {
  width: 210px;
  position: absolute;
  right: 70px;
  bottom: -40px;
}

.page_link {
  width: 820px;
  margin: 50px auto 0;
}

.page_link li {
  float: left;
}

.page_link li:last-child {
  float: right;
}

.page_link li a {
  color: #0b3265;
  border: solid 1px #0b3265;
  border-radius: 5px;
  width: 395px;
  display: block;
  padding: 15px 0;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  background: url(../images/link_arrow.png) 360px center no-repeat #fff;
}

.page_link li a:hover {
  opacity: 0.6;
}

.tel_area {
  width: 820px;
  border: solid 1px #0b3265;
  border-radius: 5px;
  margin: 35px auto 60px;
  padding: 20px 0 15px;
}

.tel_area .ttl,
.tel_area .num {
  color: #0b3265;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}

.tel_area .num {
  font-size: 20px;
  margin-bottom: 0;
}

.tel_area .num img {
  margin-left: 25px;
  vertical-align: middle;
}

.tel_area .txt {
  color: #666666;
  font-size: 18px;
  text-align: center;
}

.tel_area .txt span {
  font-size: 14px;
}

.copyright {
  display: block;
  font-size: 14px;
  text-align: center;
}

/*sp-top*/
@media screen and (max-width: 667px) {
  .tp_entry_area {
    margin: 0 20px;
  }

  .tp_entry_area .btn_upper_txt {
    text-align: center;
    min-height: 25px;
    padding-top: 20px;
    margin-bottom: 5px;
  }

  .tp_entry_area .btn_upper_txt span {
    padding: 0 25px;
    font-size: 14px;
    background: url(../images/btn_line_01.png) left top no-repeat, url(../images/btn_line_02.png) right top no-repeat;
    background-size: 20px auto;
  }

  .tp_entry_area .btn_present_txt {
    padding-left: 60px;
    background: url(../images/icon_now.png) left center no-repeat;
    background-size: 50px auto;
  }

  .tp_entry_area .btn_present_txt {
    font-size: 18px;
    font-weight: bold;
  }

  .tp_entry_area .btn_present_txt a {
    color: #ff6d3d;
  }

  .tp_entry_area .btn_present_txt a:hover {
    text-decoration: none;
  }

  .tp_entry_area .btn_present_txt p {
    border-bottom: solid 1px #666666;
  }

  .tp_entry_area .btn_present_txt span {
    font-size: 14px;
    color: #333333;
    padding: 0 25px 0 5px;
    background: url(../images/icon_now_arrow.png) right center no-repeat;
    background-size: 14px auto;
  }

  .tp_beginner_area {
    margin: 50px 20px;
  }

  .tp_beginner_area h2 {
    padding-bottom: 25px;
    font-size: 18px;
    line-height: 1.2;
    color: #0372a4;
    background: url(../images/line_beginner_pc.png) center bottom no-repeat;
  }

  .tp_beginner_area h2 span {
    padding-left: 55px;
    background: url(../images/icon_beginner.png) left top no-repeat;
    background-size: 45px auto;
    min-height: 60px;
    display: block;
  }

  .tp_beginner_area .tp_topic_merit_movie_youtube {
    position: relative;
    width: 100%;
    margin-top: 30px;
    padding-top: 56.25%;
  }

  .tp_beginner_area .tp_topic_merit_movie_youtube > iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
  }

  .tp_content_total {
    margin: 0 auto;
    width: auto;
    padding: 30px 15px 20px;
    background: #fffedf;
  }

  .tp_content_total .total_arrow {
    margin: -45px auto 25px;
    text-align: center;
    width: 30%;
  }

  .tp_content_total h2 {
    color: #333333;
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
  }

  .tp_content_total h2 span,
  .tp_content_total h2 strong {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.2;
  }

  .tp_content_total h2 strong {
    color: #e6005f;
  }

  .tp_content_total .read_txt {
    text-align: center;
    font-size: 17px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .tp_content_total .img_box .img {
    width: 100px;
    margin: 0 auto;
  }

  .tp_content_total .img_box .box {
    border: solid 5px #30bcfb;
    padding: 25px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
    margin: -30px 0 15px;
    background: url(../images/bg_box_arrow.png) right top no-repeat #fff;
  }

  .tp_content_gray {
    width: auto;
    margin: 0 auto;
    padding: 25px 15px 50px;
    background: #efefef;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .tp_content_gray .ideco_area {
    border: solid 1px #333333;
    border-radius: 10px;
    padding: 20px 15px;
    background: #fff;
  }

  .tp_content_gray .ideco_area h2 {
    background: url(../images/chart_arrow_02.png) center bottom no-repeat;
    background-size: 30px auto;
    padding-bottom: 8px;
    margin-bottom: 20px;
  }

  .tp_content_gray .ideco_area h2 span {
    border: solid 5px #0372a4;
    border-radius: 10px;
    text-align: center;
    padding: 25px 10px 20px;
    display: block;
  }

  .tp_content_gray .ideco_area .read_txt {
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
  }

  .tp_content_gray .ideco_area strong {
    color: #e6005f;
  }

  .tp_content_gray .ideco_area .attention {
    margin-bottom: 40px;
  }

  .tp_content_gray .ideco_area .attention dt {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
  }

  .tp_content_gray .ideco_area .attention dd {
    border-top: solid 4px #e6005f;
    border-bottom: solid 4px #e6005f;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    padding: 30px 0;
    line-height: 1.4;
  }

  .tp_content_gray .ideco_area .attention dd strong {
    font-size: 20px;
  }

  .tp_content_gray .merit h3 {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
  }

  .tp_content_gray .ideco_area .miryoku span {
    width: 200px;
    background: #30bcfb;
    color: #fff;
    display: block;
    margin: 0 auto;
    font-size: 20px;
    font-weight: bold;
    border-radius: 26px;
    text-align: center;
    padding: 13px 0;
  }

  .tp_content_gray .ideco_area .miryoku {
    padding-bottom: 18px;
    background: url(../images/miryoku_arrow.png) center bottom no-repeat;
    background-size: 24px auto;
  }

  .tp_content_gray .merit_box {
    width: auto;
    float: none;
    border: solid 1px #0372a4;
    margin-right: 0;
    margin-bottom: 40px;
  }

  .tp_content_gray .merit_box h4 {
    background: #0372a4;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .tp_content_gray .merit_box h4 img {
    width: 40px;
  }

  .tp_content_gray .merit_box h4 span {
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    display: inline;
    margin-left: 5px;
    vertical-align: 5px;
  }

  .tp_content_gray .merit_box .icon {
    background: #e2f6fe;
    text-align: center;
    padding: 15px 0;
    font-size: 16px;
    font-weight: bold;
    color: #0372A4;
  }

  .tp_content_gray .merit_box .txt {
    font-size: 16px;
    padding: 20px;
    line-height: 1.4;
    min-height: auto;
  }

  .tp_content_gray .merit_box .txt span {
    font-size: 15px;
    display: block;
    margin-top: 10px;
  }

  .tp_content_gray .merit_box .txt strong {
    color: #333333;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #ff0));
    background: linear-gradient(transparent 60%, #ff0 0%);
  }

  .tp_content_gray .ttl_blue {
    text-align: center;
    margin-top: 0;
  }

  .tp_content_gray .ttl_blue p {
    display: inline;
    padding: 0 30px;
    font-size: 18px;
    font-weight: bold;
    background: url(../images/btn_line_03.png) left center no-repeat, url(../images/btn_line_04.png) right center no-repeat;
    background-size: 20px auto;
  }

  .tp_content_gray .ttl_blue h3 {
    padding-bottom: 18px;
    background: url(../images/chart_arrow_mini.png) center bottom no-repeat;
    background-size: 40px auto;
  }

  .tp_content_gray .ttl_blue h3 span {
    background: #0372a4;
    display: block;
    border-radius: 10px;
    color: #fff;
    padding: 25px 0;
    font-size: 18px;
  }

  .tp_content_gray .merit_txt01 {
    text-align: center;
    font-size: 16px;
    color: #0372a4;
    font-weight: bold;
    margin: 20px 0 50px;
  }

  .tp_merit_point_sub_note {
    margin-bottom: 20px;
  }

  .tp_content_gray .anxiety_area {
    border: solid 1px #333333;
    border-radius: 10px;
    padding: 20px 15px;
    background: #fff;
    margin-top: 20px;
  }

  .tp_content_gray .anxiety_area .read_txt {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
  }

  .tp_content_gray .anxiety_area h3 {
    text-align: center;
    margin-bottom: 25px;
  }

  .tp_content_gray .anxiety_area .comment01 {
    width: auto;
    border: solid 1px #333;
    border-radius: 10px;
    position: relative;
    margin: 0 auto 40px;
  }

  .tp_content_gray .anxiety_area .comment01 .img {
    position: relative;
    width: 100%;
    bottom: -39px;
    height: 50px;
    background: url(../images/comment_bg01.png) left bottom no-repeat;
    background-size: 20px auto;
  }

  .tp_content_gray .anxiety_area .comment01 img {
    position: relative;
    width: 40px;
    left: 40px;
    top: -15px;
  }

  .tp_content_gray .anxiety_area .comment01 .comment_box {
    position: static;
    padding: 10px 20px 20px;
    top: 0;
    min-height: 80px;
    font-size: 16px;
    background: none;
  }

  .tp_content_gray .anxiety_area .comment02 {
    width: auto;
    border: solid 1px #333;
    min-height: auto;
    border-radius: 10px;
    position: relative;
    margin: 0 auto 40px;
  }

  .tp_content_gray .anxiety_area .comment02 .img {
    position: relative;
    width: 100%;
    bottom: -25px;
    height: 50px;
    background: url(../images/comment_bg02.png) 70% bottom no-repeat;
    background-size: 20px auto;
  }

  .tp_content_gray .anxiety_area .comment02 img {
    position: relative;
    width: 40px;
    left: 75%;
    top: -12px;
  }

  .tp_content_gray .anxiety_area .comment02 .comment_box {
    position: static;
    padding: 10px 20px;
    bottom: -36px;
    font-size: 16px;
    background: none;
  }

  .tp_content_gray .note_txt01 {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
  }

  .tp_content_gray .note_ttl {
    width: auto;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.4;
    color: #e6005f;
    margin: 0 auto 30px;
    padding: 20px 20px 20px 100px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: solid 5px #e6005f;
    background: url(../images/note_icon.png) 10px center no-repeat;
    background-size: 70px;
  }

  .tp_content_gray .note_txt02 {
    text-align: center;
  }

  .point_area {
    margin-top: 35px;
  }

  .point_area h3 {
    color: #fff;
    font-size: 23px;
    text-align: center;
    padding: 25px 10px 25px 50px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background: url(../images/point_ttl_img.png) 10px center no-repeat #e6005f;
    background-size: 40px auto;
  }

  .point_area h3 span {
    font-size: 30px;
  }

  .point_area .point_box {
    background: #fff;
    border: solid 1px #333;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top: none;
    padding: 20px;
  }

  .point_area .read_text {
    font-size: 23px;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 40px;
  }

  .point_area .read_text strong {
    font-size: 23px;
    color: #e6005f;
  }

  .point_area .box_q {
    border: solid 2px #595959;
    border-radius: 10px;
    position: relative;
    padding: 20px;
    font-size: 14px;
    margin-bottom: 20px;
  }

  .point_area .box_q .icon {
    position: absolute;
    top: -17px;
    left: 20px;
    width: 35px;
  }

  .point_area .box_a {
    padding-top: 15px;
    margin-bottom: 60px;
    background: url(../images/qa_arrow01.png) top center no-repeat;
    background-size: 25px auto;
  }

  .point_area .box_a:last-child {
    margin-bottom: 0;
  }

  .point_area .box_a_inner {
    border: solid 2px #e6005f;
    border-radius: 10px;
    position: relative;
    padding: 20px;
    font-size: 22px;
  }

  .point_area .box_a .icon {
    position: absolute;
    top: -17px;
    left: 20px;
    width: 35px;
  }

  .point_area .box_a_inner.bg01 {
    padding-bottom: 90px;
    background: url(../images/point_img01.png) 90% bottom no-repeat;
    background-size: 110px auto;
  }

  .point_area .box_a_inner.bg02 {
    padding-bottom: 90px;
    background: url(../images/point_img02.png) 90% bottom no-repeat;
    background-size: 90px auto;
  }

  .point_area .box_a_inner.bg03 {
    padding-bottom: 100px;
    background: url(../images/point_img03.png) center bottom no-repeat;
    background-size: 240px auto;
  }

  .point_area .box_a .a_ttl {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: -2px;
  }

  .point_area .box_a .a_txt01 {
    font-size: 14px;
    width: auto;
  }

  .point_area .box_a .a_txt02 {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .point_area .box_a .document .ttl {
    background: #bfbfbf;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    position: relative;
    padding: 10px 0;
  }

  .point_area .box_a .document .ttl span {
    display: block;
    font-size: 14px;
    font-weight: normal;
  }

  .point_area .box_a .document .ttl img {
    position: absolute;
    width: 24px;
    top: -10px;
    left: 10px;
  }

  .point_area .box_a .document ul {
    background: #efefef;
    padding: 10px;
  }

  .point_area .box_a .document li {
    font-size: 14px;
  }

  .point_area .box_a .graph_area .ttl {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .point_area .box_a .graph_area .arrow {
    text-align: center;
    margin: 15px 0 10px;
  }

  .point_area .box_a .graph_area .graph {
    width: 100%;
    float: none;
    margin: 0 0 10px;
  }

  .point_area .box_a .graph_area .comment {
    width: 100%;
    float: none;
    color: #fff;
    font-size: 14px;
    margin-top: 0;
    padding: 25px 0 0;
  }

  .point_area .box_a .graph_area .comment span {
    display: block;
    padding: 20px;
    width: 100%;
    border-radius: 10px;
    font-weight: bold;
  }

  .point_area .box_a .graph_area .comment01 {
    background: url(../images/qa_arrow05.png) 50% top no-repeat;
  }

  .point_area .box_a .graph_area .comment02 {
    background: url(../images/qa_arrow06.png) 50% top no-repeat;
  }

  .point_area .box_a .graph_area .comment01 span {
    background: #7b7b7b;
  }

  .point_area .box_a .graph_area .comment02 span {
    background: #e6005f;
  }

  .point_area .voice {
    border: solid 1px #646464;
    border-radius: 10px;
    padding: 10px 15px 10px 25px;
    margin-bottom: 40px;
    overflow: hidden;
  }

  .point_area .voice:last-child {
    margin-bottom: 0;
  }

  .point_area .voice .img {
    width: 45%;
    float: left;
    margin-right: 15px;
  }

  .point_area .voice .ttl {
    font-size: 14px;
    padding-top: 15%;
    margin-bottom: 10px;
  }

  .point_area .voice .detail {
    font-size: 14px;
    clear: both;
  }

  .tp_entry_more {
    padding-top: 20px;
  }

  .tp_entry_more .ttl {
    text-align: center;
    font-size: 26px;
    margin-bottom: 15px;
  }

  .tp_entry_more .ttl span {
    font-size: 29px;
    padding: 0 30px;
    background: url(../images/btn_line_05.png) left center no-repeat, url(../images/btn_line_06.png) right center no-repeat;
    background-size: 25px auto,25px auto;
  }

  .tp_entry_more {
    position: relative;
    width: auto;
    margin: 30px auto 0;
  }

  .tp_entry_more .box {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
    border: solid 5px #e6005f;
    background: #fff;
    padding: 20px 30px;
    text-align: center;
  }

  .tp_entry_more .box span {
    font-size: 17px;
  }

  .tp_entry_more .box strong {
    color: #e6005f;
  }

  .tp_entry_more .img {
    width: 145px;
    position: static;
    margin: -25px auto 0;
  }

  .page_link {
    width: auto;
    margin: 50px 0 0;
  }

  .page_link li {
    float: none;
    margin: 0 0 20px;
  }

  .page_link li:last-child {
    float: none;
  }

  .page_link li a {
    color: #0b3265;
    border: solid 1px #0b3265;
    border-radius: 5px;
    width: auto;
    display: block;
    padding: 15px 0;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background: url(../images/link_arrow.png) 94% center no-repeat #fff;
  }

  .page_link li a:hover {
    opacity: 1;
  }

  .tel_area {
    width: auto;
    border: solid 1px #0b3265;
    border-radius: 5px;
    margin: 0 20px 0;
    padding: 20px 0 15px;
  }

  .tel_area .ttl,
  .tel_area .num {
    color: #0b3265;
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0;
  }

  .tel_area .num {
    font-size: 14px;
    margin-bottom: 0;
  }

  .tel_area .num img {
    width: 80%;
    margin: 5px 0 5px 15px;
    vertical-align: middle;
  }

  .tel_area .txt {
    color: #666666;
    font-size: 14px;
    text-align: center;
  }

  .tel_area .txt span {
    font-size: 14px;
    display: block;
  }

  .copyright {
    display: block;
    font-size: 14px;
    text-align: center;
  }
}
.tp_content_area.tp_campaign {
  max-width: 960px;
  width: 100%;
  margin-top: 40px;
}

@media screen and (max-width: 999px) {
  .tp_content_area.tp_campaign {
    max-width: 960px;
    width: 96%;
  }
}
@media screen and (max-width: 667px) {
  .tp_content_area.tp_campaign {
    margin-top: 20px;
  }
}
.tp_content_area.tp_fixed {
  position: fixed;
  width: 100%;
  max-width: none;
  left: 0px;
  bottom: 0px;
  z-index: 999;
  -webkit-transform: translateY(130%);
  transform: translateY(130%);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.02, 0.63, 0.25, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.02, 0.63, 0.25, 1);
  transition: transform 0.3s cubic-bezier(0.02, 0.63, 0.25, 1);
  transition: transform 0.3s cubic-bezier(0.02, 0.63, 0.25, 1), -webkit-transform 0.3s cubic-bezier(0.02, 0.63, 0.25, 1);
}

@media screen and (max-width: 999px) {
  .tp_content_area.tp_fixed {
    width: 100%;
  }
}
.tp_content_area.tp_fixed.tp_cur {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.tp_content_area.tp_fixed .tp_fixed_btn_img {
  display: block;
}

.tp_content_area.tp_fixed .tp_fixed_btn_pc {
  width: 570px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  opacity: 1;
  -webkit-transition: 0.150s ease;
  transition: 0.150s ease;
}

.tp_content_area.tp_fixed .tp_fixed_btn_pc:hover {
  opacity: 0.8;
}

@media screen and (max-width: 667px) {
  .tp_content_area.tp_fixed .tp_fixed_btn_pc {
    display: none;
  }
}
.tp_content_area.tp_fixed .tp_fixed_btn_sp {
  width: 220px;
  margin-left: auto;
  margin-right: auto;
  display: none;
}

@media screen and (max-width: 667px) {
  .tp_content_area.tp_fixed .tp_fixed_btn_sp {
    display: block;
  }
}
.tp_content_area .tp_campaign_bottom {
  width: 100%;
  margin-top: 40px;
}

@media screen and (max-width: 999px) {
  .tp_content_area .tp_campaign_bottom {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
  }
}
.tp_content_area .tp_campaign_bottom_inner {
  margin-left: -15px;
  margin-right: -15px;
}

@media screen and (min-width: 668px) and (max-width: 768px) {
  .tp_content_area .tp_campaign_bottom_inner {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.tp_content_area .tp_campaign_bottom_box {
  float: left;
  width: 33.333%;
  padding-left: 15px;
  padding-right: 15px;
}

@media screen and (max-width: 767px) {
  .tp_content_area .tp_campaign_bottom_box {
    text-align: center;
    float: none;
    width: 100%;
    margin-top: 50px;
  }

  .tp_content_area .tp_campaign_bottom_box:first-child {
    margin-top: 0px;
  }
}
.tp_content_area .tp_campaign_bottom_box_a .tp_campaign_bottom_img_wrap {
  padding-top: 30px;
}

.tp_content_area .tp_campaign_bottom_box_a .tp_campaign_bottom_img {
  max-width: 183px;
}

.tp_content_area .tp_campaign_bottom_box_b .tp_campaign_bottom_img_wrap {
  padding-top: 0px;
}

.tp_content_area .tp_campaign_bottom_box_b .tp_campaign_bottom_img {
  max-width: 43px;
}

.tp_content_area .tp_campaign_bottom_box_c .tp_campaign_bottom_img_wrap {
  padding-top: 0px;
}

.tp_content_area .tp_campaign_bottom_box_c .tp_campaign_bottom_img {
  max-width: 60px;
}

.tp_content_area .tp_campaign_bottom_border {
  position: relative;
  margin-top: 20px;
  border: 1px solid #0372a4;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .tp_content_area .tp_campaign_bottom_border {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.tp_content_area .tp_campaign_bottom_dec_pc {
  width: 234px;
  margin-top: -23px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 767px) {
  .tp_content_area .tp_campaign_bottom_dec_pc {
    display: none;
  }
}
.tp_content_area .tp_campaign_bottom_dec_sp {
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  position: absolute;
  width: 100px;
  height: 100px;
  top: -20px;
  right: -20px;
  padding-top: 32px;
  background: #0372a4;
  border-radius: 50%;
  display: none;
}

@media screen and (max-width: 767px) {
  .tp_content_area .tp_campaign_bottom_dec_sp {
    display: block;
  }
}
.tp_content_area .tp_campaign_bottom_img {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.tp_content_area .tp_campaign_bottom_img_wrap {
  width: 100%;
  height: 176px;
  margin-top: 20px;
  padding: 0px 10px;
}

.tp_content_area .tp_campaign_bottom_name {
  color: #e6005f;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  height: 4em;
}

.tp_content_area .tp_campaign_bottom_name_info {
  color: #333333;
  font-size: 8px;
  font-weight: normal;
  display: block;
}

.tp_content_area .tp_campaign_wrap {
  margin-top: 40px;
  overflow: hidden;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_campaign_wrap {
    margin-top: 20px;
    overflow: inherit;
  }
}
.tp_content_area .tp_campaign_wrap_in {
  margin-left: -15px;
  margin-right: -15px;
  padding-top: 40px;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_campaign_wrap_in {
    margin-left: 0px;
    margin-right: 0px;
  }
}
.tp_content_area .tp_campaign_box {
  text-align: center;
  float: left;
  width: 33.333%;
  padding-left: 15px;
  padding-right: 15px;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_campaign_box {
    float: none;
    width: 100%;
    margin-top: 70px;
    padding-left: 0px;
    padding-right: 0px;
  }

  .tp_content_area .tp_campaign_box:first-child {
    margin-top: 0px;
  }
}
.tp_content_area .tp_campaign_box_border {
  position: relative;
  padding-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
  border: 1px solid #0372a4;
  border-radius: 10px;
}

@media screen and (min-width: 668px) and (max-width: 768px) {
  .tp_content_area .tp_campaign_box_border {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.tp_content_area .tp_campaign_box_border_info {
  font-size: 8px;
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 15px;
  right: 0px;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_campaign_box_border_info {
    bottom: 5px;
  }
}
.tp_content_area .tp_campaign_box_heading {
  width: 234px;
  margin-top: -63px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
  display: block;
}

@media screen and (min-width: 668px) and (max-width: 768px) {
  .tp_content_area .tp_campaign_box_heading {
    margin-top: -59px;
  }
}
.tp_content_area .tp_campaign_box_btn {
  text-align: center;
  width: 100%;
  margin-top: 15px;
  padding: 10px 20px;
  border-bottom: 3px solid #df6986;
  border-radius: 10px;
  background: #fe7a99;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  text-decoration: none;
  opacity: 1;
  -webkit-transition: opacity 0.150s ease;
  transition: opacity 0.150s ease;
  -webkit-tap-highlight-color: transparent;
}

.tp_content_area .tp_campaign_box_btn:hover {
  text-decoration: none;
  opacity: 0.7;
  -webkit-tap-highlight-color: transparent;
}

@media screen and (min-width: 668px) and (max-width: 768px) {
  .tp_content_area .tp_campaign_box_btn {
    width: auto;
    padding: 10px 10px;
  }
}
@media screen and (max-width: 667px) {
  .tp_content_area .tp_campaign_box_btn {
    width: auto;
    padding: 10px 10px;
  }
}
.tp_content_area .tp_campaign_box_btn_heading {
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  padding-right: 15px;
  background: url("../images/arrow_r.png") no-repeat 100% 50%/10px;
  display: inline-block;
}

@media screen and (min-width: 668px) and (max-width: 768px) {
  .tp_content_area .tp_campaign_box_btn_heading {
    font-size: 20px;
  }
}
.tp_content_area .tp_campaign_box_btn_leading {
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
}

@media screen and (min-width: 668px) and (max-width: 768px) {
  .tp_content_area .tp_campaign_box_btn_leading {
    font-size: 16px;
  }
}
@media screen and (max-width: 667px) {
  .tp_content_area .tp_campaign_box_btn_leading {
    display: block;
  }
}
.tp_content_area .tp_campaign_item {
  text-align: left;
  position: relative;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_campaign_item {
    width: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .tp_content_area .tp_campaign_item.tp_campaign_item_a {
    float: left;
    padding-right: 5px;
  }

  .tp_content_area .tp_campaign_item.tp_campaign_item_b {
    float: right;
    padding-left: 5px;
  }
}
.tp_content_area .tp_campaign_item_num {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 2;
}

@media screen and (min-width: 668px) and (max-width: 768px) {
  .tp_content_area .tp_campaign_item_num {
    width: 76px;
  }
}
@media screen and (max-width: 667px) {
  .tp_content_area .tp_campaign_item_num {
    width: 47px;
  }
}
.tp_content_area .tp_campaign_item_img {
  position: absolute;
}

.tp_content_area .tp_campaign_item_img_wrap {
  position: relative;
  height: 180px;
  z-index: 1;
  overflow: hidden;
}

@media screen and (min-width: 415px) and (max-width: 667px) {
  .tp_content_area .tp_campaign_item_img_wrap {
    height: 170px;
  }
}
@media screen and (max-width: 414px) {
  .tp_content_area .tp_campaign_item_img_wrap {
    height: 150px;
  }
}
.tp_content_area .tp_campaign_item_name {
  color: #e6005f;
  font-size: 15px;
  line-height: 1.3em;
  font-weight: bold;
  text-align: center;
  height: 5em;
  margin-top: 1em;
}

@media screen and (min-width: 668px) and (max-width: 768px) {
  .tp_content_area .tp_campaign_item_name {
    font-size: 15px;
    height: 6em;
  }
}
@media screen and (min-width: 415px) and (max-width: 667px) {
  .tp_content_area .tp_campaign_item_name {
    height: 6em;
  }
}
@media screen and (max-width: 414px) {
  .tp_content_area .tp_campaign_item_name {
    font-size: 14px;
    height: 6em;
  }
}
.tp_content_area .tp_campaign_item_name_br_pc {
  display: inline;
}

@media screen and (max-width: 768px) {
  .tp_content_area .tp_campaign_item_name_br_pc {
    display: none;
  }
}
.tp_content_area .tp_campaign_item_name_br_tablet {
  display: none;
}

@media screen and (min-width: 668px) and (max-width: 768px) {
  .tp_content_area .tp_campaign_item_name_br_tablet {
    display: inline;
  }
}
.tp_content_area .tp_campaign_item_name_br_sp {
  display: none;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_campaign_item_name_br_sp {
    display: inline;
  }
}
.tp_content_area .tp_campaign_prize_a .tp_campaign_item_a .tp_campaign_item_img_wrap {
  width: 100%;
  padding-top: 48px;
  padding-left: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (min-width: 668px) and (max-width: 768px) {
  .tp_content_area .tp_campaign_prize_a .tp_campaign_item_a .tp_campaign_item_img_wrap {
    padding-top: 60px;
  }
}
@media screen and (min-width: 415px) and (max-width: 667px) {
  .tp_content_area .tp_campaign_prize_a .tp_campaign_item_a .tp_campaign_item_img_wrap {
    padding-top: 0px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 414px) {
  .tp_content_area .tp_campaign_prize_a .tp_campaign_item_a .tp_campaign_item_img_wrap {
    padding-top: 50px;
    padding-left: 0px;
  }
}
.tp_content_area .tp_campaign_prize_a .tp_campaign_item_a .tp_campaign_item_img {
  width: 100%;
  max-width: 225px;
}

.tp_content_area .tp_campaign_prize_a .tp_campaign_item_b .tp_campaign_item_img_wrap {
  width: 100%;
  padding-top: 50px;
  padding-left: 35px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (min-width: 668px) and (max-width: 768px) {
  .tp_content_area .tp_campaign_prize_a .tp_campaign_item_b .tp_campaign_item_img_wrap {
    padding-top: 60px;
    padding-left: 20px;
  }
}
@media screen and (min-width: 415px) and (max-width: 667px) {
  .tp_content_area .tp_campaign_prize_a .tp_campaign_item_b .tp_campaign_item_img_wrap {
    padding-top: 20px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 414px) {
  .tp_content_area .tp_campaign_prize_a .tp_campaign_item_b .tp_campaign_item_img_wrap {
    padding-top: 40px;
    padding-left: 15%;
  }
}
.tp_content_area .tp_campaign_prize_a .tp_campaign_item_b .tp_campaign_item_img {
  width: 100%;
  max-width: 139px;
}

@media screen and (max-width: 414px) {
  .tp_content_area .tp_campaign_prize_a .tp_campaign_item_b .tp_campaign_item_img {
    max-width: 110px;
  }
}
@media screen and (max-width: 414px) {
  .tp_content_area .tp_campaign_prize_a .tp_campaign_item_b .tp_campaign_item_name {
    line-height: 1.25em;
  }
}
.tp_content_area .tp_campaign_prize_b .tp_campaign_item_a .tp_campaign_item_img_wrap {
  width: 100%;
  padding-top: 0px;
  padding-left: 90px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (min-width: 668px) and (max-width: 768px) {
  .tp_content_area .tp_campaign_prize_b .tp_campaign_item_a .tp_campaign_item_img_wrap {
    padding-left: 50px;
  }
}
@media screen and (min-width: 415px) and (max-width: 667px) {
  .tp_content_area .tp_campaign_prize_b .tp_campaign_item_a .tp_campaign_item_img_wrap {
    padding-top: 0px;
    padding-left: 90px;
  }
}
@media screen and (max-width: 414px) {
  .tp_content_area .tp_campaign_prize_b .tp_campaign_item_a .tp_campaign_item_img_wrap {
    padding-top: 0px;
    padding-left: 30%;
  }
}
.tp_content_area .tp_campaign_prize_b .tp_campaign_item_a .tp_campaign_item_img {
  width: 100%;
  max-width: 43px;
}

@media screen and (max-width: 414px) {
  .tp_content_area .tp_campaign_prize_b .tp_campaign_item_a .tp_campaign_item_img {
    max-width: 38px;
  }
}
.tp_content_area .tp_campaign_prize_b .tp_campaign_item_b .tp_campaign_item_img_wrap {
  width: 100%;
  padding-top: 10px;
  padding-left: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (min-width: 668px) and (max-width: 768px) {
  .tp_content_area .tp_campaign_prize_b .tp_campaign_item_b .tp_campaign_item_img_wrap {
    padding-top: 15px;
    padding-left: 0px;
  }
}
@media screen and (min-width: 415px) and (max-width: 667px) {
  .tp_content_area .tp_campaign_prize_b .tp_campaign_item_b .tp_campaign_item_img_wrap {
    padding-top: 0px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 414px) {
  .tp_content_area .tp_campaign_prize_b .tp_campaign_item_b .tp_campaign_item_img_wrap {
    padding-top: 0px;
    padding-left: 0px;
  }
}
.tp_content_area .tp_campaign_prize_b .tp_campaign_item_b .tp_campaign_item_img {
  width: 100%;
  max-width: 124px;
}

@media screen and (max-width: 414px) {
  .tp_content_area .tp_campaign_prize_b .tp_campaign_item_b .tp_campaign_item_img {
    max-width: 114px;
  }
}
.tp_content_area .tp_campaign_prize_c .tp_campaign_item_a .tp_campaign_item_img_wrap {
  width: 100%;
  padding-top: 0px;
  padding-left: 70px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (min-width: 668px) and (max-width: 768px) {
  .tp_content_area .tp_campaign_prize_c .tp_campaign_item_a .tp_campaign_item_img_wrap {
    padding-left: 30px;
  }
}
@media screen and (min-width: 415px) and (max-width: 667px) {
  .tp_content_area .tp_campaign_prize_c .tp_campaign_item_a .tp_campaign_item_img_wrap {
    padding-left: 80px;
  }
}
@media screen and (max-width: 414px) {
  .tp_content_area .tp_campaign_prize_c .tp_campaign_item_a .tp_campaign_item_img_wrap {
    padding-left: 20%;
  }
}
.tp_content_area .tp_campaign_prize_c .tp_campaign_item_a .tp_campaign_item_img {
  width: 100%;
  max-width: 62px;
}

@media screen and (max-width: 414px) {
  .tp_content_area .tp_campaign_prize_c .tp_campaign_item_a .tp_campaign_item_img {
    max-width: 52px;
  }
}
.tp_content_area .tp_campaign_prize_c .tp_campaign_item_b .tp_campaign_item_img_wrap {
  width: 100%;
  padding-top: 55px;
  padding-left: 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (min-width: 668px) and (max-width: 768px) {
  .tp_content_area .tp_campaign_prize_c .tp_campaign_item_b .tp_campaign_item_img_wrap {
    padding-top: 65px;
    padding-left: 0px;
  }
}
@media screen and (min-width: 415px) and (max-width: 667px) {
  .tp_content_area .tp_campaign_prize_c .tp_campaign_item_b .tp_campaign_item_img_wrap {
    padding-top: 30px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 414px) {
  .tp_content_area .tp_campaign_prize_c .tp_campaign_item_b .tp_campaign_item_img_wrap {
    padding-top: 45px;
    padding-left: 0px;
  }
}
.tp_content_area .tp_campaign_prize_c .tp_campaign_item_b .tp_campaign_item_img {
  width: 100%;
  max-width: 200px;
}

@media screen and (max-width: 414px) {
  .tp_content_area .tp_campaign_prize_c .tp_campaign_item_name {
    height: 4em;
  }
}
.tp_content_area .tp_campaign_other {
  text-align: center;
  width: 100%;
  max-width: 540px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  border: 1px solid #0372a4;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.tp_content_area .tp_campaign_other_wrap {
  margin-top: 30px;
}

.tp_content_area .tp_campaign_other_intro {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_campaign_other_intro {
    font-size: 16px;
  }
}
.tp_content_area .tp_campaign_other_intro_br_tablet {
  display: none;
}

@media screen and (min-width: 668px) and (max-width: 768px) {
  .tp_content_area .tp_campaign_other_intro_br_tablet {
    display: inline;
  }
}
.tp_content_area .tp_campaign_other_heading {
  width: 234px;
  margin-top: -43px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.tp_content_area .tp_campaign_other_inner {
  margin-top: 10px;
  display: inline-block;
}

.tp_content_area .tp_campaign_other_img {
  vertical-align: middle;
  margin: 15px 5px;
  width: 222px;
}

@media screen and (max-width: 414px) {
  .tp_content_area .tp_campaign_other_img {
    width: 170px;
  }
}
.tp_content_area .tp_campaign_other_num {
  vertical-align: middle;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_campaign_other_num {
    width: 47px;
  }
}
.tp_content_area .tp_campaign_other_name {
  color: #e6005f;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.tp_content_area .tp_campaign_announce_img_pc {
  margin-bottom: 20px;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_campaign_announce_img_pc {
    display: none;
  }
}
.tp_content_area .tp_campaign_announce_img_sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .tp_content_area .tp_campaign_announce_img_sp {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    display: block;
  }
}
@media screen and (max-width: 414px) {
  .tp_content_area .tp_campaign_announce_img_sp {
    width: 167px;
  }
}
.tp_content_area .tp_campaign_peroid {
  color: #072e62;
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .tp_content_area .tp_campaign_peroid_img_pc {
    display: none;
  }
}
.tp_content_area .tp_campaign_peroid_img_sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .tp_content_area .tp_campaign_peroid_img_sp {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    display: block;
  }
}
@media screen and (max-width: 414px) {
  .tp_content_area .tp_campaign_peroid_img_sp {
    width: 167px;
    margin-bottom: 5px;
  }
}
.tp_content_area .tp_campaign_peroid_box {
  text-align: left;
  margin-top: 15px;
  display: inline-block;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_campaign_peroid_box {
    line-height: 1.75;
    width: 90%;
  }
}
.tp_content_area .tp_campaign_peroid_text {
  color: #000000;
  font-size: 18px;
}

@media screen and (max-width: 414px) {
  .tp_content_area .tp_campaign_peroid_text {
    font-size: 14px;
  }
}
.tp_content_area .tp_campaign_attention {
  font-size: 12px;
  font-weight: normal;
  margin-top: 35px;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_campaign_attention {
    font-size: 10px;
  }
}
.tp_content_area .tp_campaign_attention_inner {
  margin-top: 1em;
}

.tp_content_area .tp_campaign_attention_inner:first-child {
  margin-top: 0;
}

.tp_content_area .tp_campaign_attention_bold {
  font-weight: bold;
}

.tp_content_area .tp_campaign_fixed {
  position: relative;
  width: 960px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 14px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 14px;
  padding-bottom: 12px;
  border: 2px solid #0372a4;
  background-color: #ffffff;
  z-index: 1000;
}

.tp_content_area .tp_campaign_fixed_close {
  display: none;
}

@media screen and (max-width: 999px) {
  .tp_content_area .tp_campaign_fixed {
    max-width: 960px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 6px;
    padding-bottom: 16px;
    border-left: none;
    border-right: none;
  }
}
@media screen and (max-width: 667px) {
  .tp_content_area .tp_campaign_fixed {
    margin-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
  }
}
.tp_content_area .tp_campaign_fixed_wrap {
  font-size: 16px;
  font-weight: bold;
  color: #0372a4;
  text-align: center;
  margin-right: 22px;
  display: inline-block;
  float: right;
}

.tp_content_area .tp_campaign_fixed_wrap:first-child {
  text-align: left;
  margin-top: 5px;
  margin-right: 0px;
  float: left;
}

@media screen and (max-width: 768px) {
  .tp_content_area .tp_campaign_fixed_wrap:first-child {
    margin-top: 0px;
    text-align: center;
  }
}
@media screen and (max-width: 999px) {
  .tp_content_area .tp_campaign_fixed_wrap {
    margin-top: 10px;
    margin-right: 0px;
    display: block;
    float: none;
  }

  .tp_content_area .tp_campaign_fixed_wrap:first-child {
    text-align: center;
    margin-top: 8px;
    float: none;
  }
}
@media screen and (max-width: 768px) {
  .tp_content_area .tp_campaign_fixed_wrap {
    font-size: 18px;
  }
}
@media screen and (max-width: 667px) {
  .tp_content_area .tp_campaign_fixed_wrap {
    font-size: 16px;
    padding-right: 0px;
  }
}
.tp_content_area .tp_campaign_fixed_wrap_closed {
  position: absolute;
  width: 17px;
  top: 6px;
  right: 6px;
  cursor: pointer;
  display: block;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_campaign_fixed_wrap_closed {
    width: 19px;
    top: 8px;
    right: 8px;
  }
}
.tp_content_area .tp_campaign_fixed_wrap_br_pc {
  display: inline;
}

@media screen and (max-width: 767px) {
  .tp_content_area .tp_campaign_fixed_wrap_br_pc {
    display: none;
  }
}
@media screen and (min-width: 668px) and (max-width: 999px) {
  .tp_content_area .tp_campaign_fixed_wrap_br_tablet {
    display: none;
  }
}
.tp_content_area .tp_campaign_fixed_box {
  margin-left: 0.5em;
  display: inline-block;
}

.tp_content_area .tp_campaign_fixed_box:first-child {
  margin-left: 0;
}

@media screen and (max-width: 414px) {
  .tp_content_area .tp_campaign_fixed_box {
    margin-left: 0.5em;
  }
}
.tp_content_area .tp_campaign_fixed_btn {
  position: relative;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: #fe7a99;
  border-bottom: 4px solid #df6986;
  border-radius: 8px;
  display: block;
  text-decoration: none;
  opacity: 1;
  -webkit-transition: opacity 0.150s ease;
  transition: opacity 0.150s ease;
  -webkit-tap-highlight-color: transparent;
}

.tp_content_area .tp_campaign_fixed_btn:hover {
  text-decoration: none;
  opacity: 0.7;
  -webkit-tap-highlight-color: transparent;
}

.tp_content_area .tp_campaign_fixed_btn_heading {
  font-size: 18px;
  display: block;
}

@media screen and (max-width: 768px) {
  .tp_content_area .tp_campaign_fixed_btn_heading {
    font-size: 13px;
  }
}
@media screen and (max-width: 414px) {
  .tp_content_area .tp_campaign_fixed_btn_heading {
    font-size: 10px;
  }
}
.tp_content_area .tp_campaign_fixed_btn_heading:after {
  content: '';
  width: 10px;
  height: 17px;
  margin-left: 10px;
  display: inline-block;
  background: url("../images/arrow_r.png") no-repeat 0% 0%;
  background-size: 10px 17px;
}

@media screen and (max-width: 768px) {
  .tp_content_area .tp_campaign_fixed_btn_heading:after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .tp_content_area .tp_campaign_fixed_btn {
    font-size: 13px;
    padding-left: 13px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .tp_content_area .tp_campaign_fixed_btn:after {
    position: absolute;
    content: '';
    top: 50%;
    right: 6px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px;
    height: 15px;
    display: inline-block;
    background: url("../images/arrow_r.png") no-repeat 0% 0%;
    background-size: 8px 15px;
  }
}
@media screen and (max-width: 414px) {
  .tp_content_area .tp_campaign_fixed_btn {
    font-size: 10px;
    padding-left: 7px;
    padding-right: 15px;
    padding-top: 6px;
    padding-bottom: 6px;
    border-radius: 4px;
  }

  .tp_content_area .tp_campaign_fixed_btn:after {
    right: 4px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 6px;
    height: 13px;
    background-size: 6px 13px;
  }
}
.tp_content_area .tp_campaign_fixed_btn_info {
  font-size: 15px;
}

@media screen and (max-width: 668px) {
  .tp_content_area .tp_campaign_fixed_btn_info {
    font-size: 10px;
  }
}
@media screen and (max-width: 668px) {
  .tp_content_area .tp_campaign_fixed_btn_info_hide {
    display: inline;
  }
}
.tp_content_area .tp_campaign_fixed_btn_info_hide_br_sp {
  display: none;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_campaign_fixed_btn_info_hide_br_sp {
    display: inline;
  }
}
/*********************
CAMPAIGN
*********************/
.tp_content_area.tp_topic {
  margin-top: 95px;
}

@media screen and (max-width: 667px) {
  .tp_content_area.tp_topic {
    margin-top: 40px;
  }
}
.tp_content_area .tp_topic_lead {
  text-align: center;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_lead_icon {
    display: none;
  }
}
.tp_content_area .tp_topic_lead_copy {
  position: relative;
  font-weight: normal;
  margin-top: 50px;
  font-size: 30px;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_lead_copy {
    font-size: 16px;
    font-weight: bold;
    margin-top: 0px;
  }
}
.tp_content_area .tp_topic_lead_copy_bold {
  color: #e6005f;
  font-size: 45px;
  font-weight: bold;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_lead_copy_bold {
    font-size: 16px;
  }
}
@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_lead_copy_br_pc {
    display: none;
  }
}
.tp_content_area .tp_topic_lead_copy_br_sp {
  display: none;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_lead_copy_br_sp {
    display: inline;
  }
}
@media screen and (max-width: 1000px) {
  .tp_content_area .tp_topic_lead_copy_br_tablet {
    display: inline;
  }
}
.tp_content_area .tp_topic_border {
  width: 100%;
  height: 18px;
  margin-top: 30px;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_border {
    height: 14px;
    margin-top: 10px;
  }
}
.tp_content_area .tp_topic_border_left {
  width: 50.5%;
  height: 18px;
  float: left;
  background-color: #31bcfb;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_border_left {
    height: 14px;
  }
}
.tp_content_area .tp_topic_border_right {
  position: relative;
  width: 49.5%;
  height: 18px;
  float: right;
  background-color: #c1ecff;
  overflow: hidden;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_border_right {
    height: 14px;
  }
}
.tp_content_area .tp_topic_border_right_img {
  position: absolute;
  left: 0;
  background-color: #c1ecff;
}

.tp_content_area .tp_topic_wrap {
  margin-top: 55px;
  border: 1px solid #0372a4;
  border-radius: 20px;
}

@media screen and (max-width: 999px) {
  .tp_content_area .tp_topic_wrap {
    width: 96%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_wrap {
    margin-top: 25px;
  }
}
.tp_content_area .tp_topic_wrap_title {
  color: #ffffff;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  padding-top: 16px;
  padding-bottom: 18px;
  background-color: #0372a4;
  border-radius: 18px 18px 0px 0px;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_wrap_title {
    font-size: 15px;
  }
}
.tp_content_area .tp_topic_wrap_title_small {
  font-size: 24px;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_wrap_title_small {
    font-size: 15px;
  }
}
.tp_content_area .tp_topic_inner {
  padding-left: 70px;
  padding-right: 70px;
  padding-top: 50px;
  padding-bottom: 70px;
}

@media screen and (max-width: 999px) {
  .tp_content_area .tp_topic_inner {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .tp_content_area .tp_topic_inner {
    padding: 20px;
  }
}
@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_inner {
    padding: 18px;
  }
}
.tp_content_area .tp_topic_merit_movie {
  position: relative;
  width: 100%;
  z-index: 200;
}

@media screen and (min-width: 415px) and (max-width: 667px) {
  .tp_content_area .tp_topic_merit_movie {
    width: 100%;
    float: none;
  }
}
@media screen and (max-width: 414px) {
  .tp_content_area .tp_topic_merit_movie {
    width: 100%;
    float: none;
  }
}
@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_merit_movie {
    max-width: 375px;
    margin-left: auto;
    margin-right: auto;
  }
}
.tp_content_area .tp_topic_merit_movie_link {
  display: block;
  opacity: 1;
  -webkit-transition: opacity 0.300s ease;
  transition: opacity 0.300s ease;
}

.tp_content_area .tp_topic_merit_movie_link:hover {
  opacity: 0.8;
}

.tp_content_area .tp_topic_merit_movie_link_img {
  display: block;
}

.tp_content_area .tp_topic_merit_movie_youtube {
  position: relative;
  width: 100%;
  margin-top: 30px;
  padding-top: 56.25%;
}

.tp_content_area .tp_topic_merit_movie_youtube > iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.tp_content_area .tp_topic_merit_movie_balloon {
  font-weight: bold;
  font-size: 20px;
  color: #ffffff;
  text-align: left;
  position: relative;
  width: 100%;
  margin-top: 20px;
  padding-top: 18px;
  padding-bottom: 20px;
  padding-left: 16px;
  display: inline-block;
  background-color: #0372a4;
  border-radius: 6px;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .tp_content_area .tp_topic_merit_movie_balloon {
    font-size: 14px;
  }
}
@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_merit_movie_balloon {
    font-size: 14px;
    text-align: center;
    padding: 10px 20px;
  }
}
.tp_content_area .tp_topic_merit_movie_balloon:after {
  content: "";
  position: absolute;
  top: -19px;
  left: 50%;
  margin-left: -13px;
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0px 13px 20px 13px;
  border-color: transparent transparent #0372a4 transparent;
}

.tp_content_area .tp_topic_merit_movie_balloon_small {
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .tp_content_area .tp_topic_merit_movie_balloon_small {
    font-size: 14px;
  }
}
@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_merit_movie_balloon_br_pc {
    display: none;
  }
}
.tp_content_area .tp_topic_merit_movie_balloon_br_sp {
  display: none;
}

@media screen and (max-width: 413px) {
  .tp_content_area .tp_topic_merit_movie_balloon_br_sp {
    display: inline;
  }
}
.tp_content_area .tp_topic_merit_movie_lifeplanner {
  position: absolute;
  right: 10px;
  bottom: 0;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_merit_movie_lifeplanner {
    display: none;
  }
}
.tp_content_area .tp_topic_merit_movie_intro {
  text-align: center;
  position: relative;
  padding-left: 60px;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_merit_movie_intro {
    padding-left: 30px;
  }
}
.tp_content_area .tp_topic_merit_movie_intro_inner {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  border: 3px solid #31bcfb;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_merit_movie_intro_inner {
    padding-left: 20px;
  }
}
.tp_content_area .tp_topic_merit_movie_intro_img {
  position: absolute;
  top: -35px;
  left: 0px;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_merit_movie_intro_img {
    width: 63px;
    top: -10px;
    left: -5px;
  }
}
.tp_content_area .tp_topic_merit_movie_intro_text {
  font-size: 26px;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_merit_movie_intro_text {
    font-size: 13px;
  }
}
.tp_content_area .tp_topic_merit_movie_intro_text_bold {
  color: #e6005f;
  font-size: 36px;
  font-weight: bold;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_merit_movie_intro_text_bold {
    font-size: 16px;
  }
}
.tp_content_area .tp_topic_merit_movie_intro_arrow {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_merit_movie_intro_arrow {
    width: 64px;
  }
}
.tp_content_area .tp_topic_merit_text {
  text-align: center;
  position: relative;
  width: 100%;
  margin-top: 50px;
  z-index: 100;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_merit_text {
    margin-left: 0;
    margin-top: 18px;
    float: none;
  }
}
.tp_content_area .tp_topic_merit_text_ul {
  display: inline-block;
}

.tp_content_area .tp_topic_merit_text_ul > li {
  font-size: 48px;
  font-weight: bold;
  padding-left: 90px;
  margin-top: 35px;
  background: url("../images/check.png") no-repeat 0% 50%;
  background-size: 71px 69px;
  text-align: left;
}

@media screen and (max-width: 999px) {
  .tp_content_area .tp_topic_merit_text_ul > li {
    font-size: 34px;
    padding-left: 56px;
    background-size: 48px;
  }
}
@media screen and (min-width: 668px) and (max-width: 768px) {
  .tp_content_area .tp_topic_merit_text_ul > li {
    font-size: 26px;
    padding-left: 50px;
    background-size: 40px;
  }
}
@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_merit_text_ul > li {
    font-size: 20px;
    margin-top: 20px;
    padding-left: 40px;
    background: url("../images/check.png") no-repeat 0% 0%/30px;
  }
}
.tp_content_area .tp_topic_merit_text_ul > li:first-child {
  margin-top: 0;
}

.tp_content_area .tp_topic_merit_text_ul > li > span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(40%, #ffff00));
  background: linear-gradient(transparent 70%, #ffff00 40%);
}

.tp_content_area .tp_topic_merit_text_ul + .tp_topic_attention_title {
  display: block;
  border-bottom: none;
}

.tp_content_area .tp_topic_merit_text_note {
  font-size: 20px;
  font-weight: bold;
  margin-top: 40px;
}

@media screen and (max-width: 999px) {
  .tp_content_area .tp_topic_merit_text_note {
    margin-top: 20px;
  }
}
@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_merit_text_note {
    font-size: 14px;
    font-weight: normal;
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.tp_content_area .tp_topic_merit_text_note_bold {
  font-size: 32px;
}

@media screen and (min-width: 668px) and (max-width: 768px) {
  .tp_content_area .tp_topic_merit_text_note_bold {
    font-size: 30px;
  }
}
@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_merit_text_note_bold {
    font-size: 14px;
    font-weight: bold;
  }
}
.tp_content_area .tp_topic_merit_text_note_br_tablet {
  display: none;
}

@media screen and (max-width: 890px) {
  .tp_content_area .tp_topic_merit_text_note_br_tablet {
    display: inline;
  }
}
@media screen and (max-width: 768px) {
  .tp_content_area .tp_topic_merit_text_note_br_tablet {
    display: none;
  }
}
.tp_content_area .tp_topic_ideco {
  position: relative;
  margin-top: 70px;
  padding: 15px 20px;
  border: 1px solid #cccccc;
  border-radius: 5px;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_ideco {
    margin-top: 30px;
  }
}
.tp_content_area .tp_topic_ideco_logo {
  position: absolute;
  top: 32%;
  width: 118px;
  float: left;
  margin-left: 20px;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_ideco_logo {
    position: static;
    float: none;
    margin: 0 auto 10px auto;
    display: block;
  }
}
.tp_content_area .tp_topic_ideco_text {
  float: right;
  width: 100%;
  margin-left: -150px;
  padding-left: 180px;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_ideco_text {
    float: none;
    width: 100%;
    margin: 0 auto;
    padding-left: 0px;
  }
}
.tp_content_area .tp_topic_ideco_title {
  font-size: 14px;
  font-weight: bold;
  margin-left: -0.5em;
}

.tp_content_area .tp_topic_ideco_sub {
  font-size: 14px;
  line-height: 1.4em;
  padding-top: 3px;
}

.tp_content_area .tp_topic_attention {
  text-align: center;
}

.tp_content_area .tp_topic_attention_title {
  font-size: 30px;
  font-weight: normal;
  position: relative;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  border-bottom: 11px solid #e6005f;
}

@media screen and (min-width: 668px) and (max-width: 768px) {
  .tp_content_area .tp_topic_attention_title {
    margin-top: 40px;
  }
}
@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_attention_title {
    font-size: 15px;
    margin-top: 20px;
    border-bottom: 5px solid #e6005f;
  }
}
.tp_content_area .tp_topic_attention_title br {
  display: none;
}

@media screen and (max-width: 999px) {
  .tp_content_area .tp_topic_attention_title br {
    display: inline;
  }
}
.tp_content_area .tp_topic_attention_title_bold {
  font-size: 35px;
  font-weight: bold;
  color: #e6005f;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_attention_title_bold {
    font-size: 20px;
  }
}
.tp_content_area .tp_topic_attention_rule {
  position: relative;
  text-align: left;
  font-size: 32px;
  font-weight: bold;
  margin-top: 80px;
  padding-left: 46px;
  padding-top: 10px;
  padding-bottom: 10px;
  border: 5px solid #e6005f;
}

@media screen and (max-width: 999px) {
  .tp_content_area .tp_topic_attention_rule {
    font-size: 22px;
  }
}
@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_attention_rule {
    font-size: 16px;
    margin-top: 30px;
    padding-left: 20px;
    border: 3px solid #e6005f;
  }
}
@media screen and (max-width: 414px) {
  .tp_content_area .tp_topic_attention_rule {
    padding-left: 10px;
  }
}
.tp_content_area .tp_topic_attention_rule_bold {
  color: #e6005f;
  font-size: 50px;
}

@media screen and (min-width: 668px) and (max-width: 768px) {
  .tp_content_area .tp_topic_attention_rule_bold {
    font-size: 40px;
  }
}
@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_attention_rule_bold {
    font-size: 25px;
  }
}
.tp_content_area .tp_topic_attention_rule_triangle {
  position: absolute;
  top: 0;
  left: 0;
  border-style: solid;
  border-width: 20px;
  border-color: #e6005f transparent transparent #e6005f;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_attention_rule_triangle {
    border-width: 10px;
  }
}
.tp_content_area .tp_topic_attention_rule_img {
  position: absolute;
  right: 10px;
  bottom: -5px;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_attention_rule_img {
    width: 52px;
    right: 5px;
    bottom: -3px;
  }
}
@media screen and (max-width: 414px) {
  .tp_content_area .tp_topic_attention_rule_img {
    width: 35px;
  }
}
.tp_content_area .tp_topic_attention_rule_br_sp {
  display: none;
}

@media screen and (max-width: 668px) {
  .tp_content_area .tp_topic_attention_rule_br_sp {
    display: inline;
  }
}
.tp_content_area .tp_topic_attention_text {
  text-align: left;
  font-size: 20px;
  margin-top: 60px;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_attention_text {
    font-size: 14px;
    margin-top: 20px;
  }
}
.tp_content_area .tp_topic_attention_lifeplanner {
  position: relative;
  text-align: left;
  font-size: 22px;
  font-weight: bold;
  width: 95%;
  margin-top: 65px;
  margin-left: auto;
  padding-left: 120px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-right: 18px;
  border: 5px solid #31bcfb;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_attention_lifeplanner {
    border: 3px solid #31bcfb;
  }
}
@media screen and (min-width: 668px) and (max-width: 768px) {
  .tp_content_area .tp_topic_attention_lifeplanner {
    font-size: 26px;
    width: 100%;
    padding-right: 22px;
  }
}
@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_attention_lifeplanner {
    font-size: 16px;
    width: 100%;
    margin-top: 95px;
    margin-left: 0px;
    padding: 15px;
  }
}
.tp_content_area .tp_topic_attention_lifeplanner_triangle {
  position: absolute;
  top: 0;
  right: 0;
  border-style: solid;
  border-width: 20px;
  border-color: #31bcfb #31bcfb transparent transparent;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_attention_lifeplanner_triangle {
    border-width: 10px;
  }
}
.tp_content_area .tp_topic_attention_lifeplanner_img {
  position: absolute;
  left: -84px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
}

@media screen and (min-width: 668px) and (max-width: 768px) {
  .tp_content_area .tp_topic_attention_lifeplanner_img {
    width: 120px;
    left: -20px;
  }
}
@media screen and (max-width: 667px) {
  .tp_content_area .tp_topic_attention_lifeplanner_img {
    width: 91px;
    top: -40px;
    left: 50%;
    margin-left: -45px;
  }
}
@media screen and (max-width: 999px) {
  .tp_content_area .tp_topic_attention_lifeplanner_br_pc {
    display: none;
  }
}
/*********************
merit
*********************/
.tp_merit.tp_content_area {
  margin-top: 95px;
  width: 100%;
  max-width: 1000px;
}

@media screen and (max-width: 999px) {
  .tp_merit.tp_content_area {
    margin-top: 75px;
  }
}
@media screen and (max-width: 767px) {
  .tp_merit.tp_content_area {
    margin-top: 35px;
  }
}
.tp_merit_blank_l {
  margin-left: -6px;
}

.tp_merit_blank_r {
  margin-right: -6px;
}

.tp_merit_title {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.tp_merit_lead {
  text-align: center;
}

.tp_merit_lead_copy {
  margin-top: 50px;
  font-size: 30px;
}

@media screen and (max-width: 767px) {
  .tp_merit_lead_copy {
    margin-top: 0px;
    font-size: 30px;
    font-weight: bold;
  }
}
@media screen and (max-width: 667px) {
  .tp_merit_lead_copy {
    margin-top: 35px;
    font-size: 17px;
  }
}
.tp_merit_lead_copy_strong {
  color: #e6005f;
  font-size: 45px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .tp_merit_lead_copy_strong {
    font-size: 30px;
  }
}
@media screen and (max-width: 667px) {
  .tp_merit_lead_copy_strong {
    font-size: 17px;
  }
}
.tp_merit_lead_img {
  display: inline;
}

@media screen and (max-width: 767px) {
  .tp_merit_lead_img {
    display: none;
  }
}
@media screen and (max-width: 667px) {
  .tp_merit_lead_img {
    display: none;
  }
}
.tp_merit_border {
  width: 100%;
  height: 18px;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .tp_merit_border {
    margin-top: 15px;
  }
}
@media screen and (max-width: 667px) {
  .tp_merit_border {
    height: 14px;
  }
}
.tp_merit_border_left {
  width: 50.5%;
  height: 18px;
  float: left;
  background-color: #31bcfb;
}

@media screen and (max-width: 667px) {
  .tp_merit_border_left {
    height: 14px;
  }
}
.tp_merit_border_right {
  position: relative;
  width: 49.5%;
  height: 18px;
  float: right;
  background-color: #c1ecff;
  overflow: hidden;
}

@media screen and (max-width: 667px) {
  .tp_merit_border_right {
    height: 14px;
  }
}
.tp_merit_border_right_img {
  position: absolute;
  left: 0;
  background-color: #c1ecff;
}

.tp_merit_main {
  width: 96%;
  margin-top: 70px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .tp_merit_main {
    margin-top: 35px;
  }
}
.tp_merit_main_wrap {
  max-width: 960px;
  border: 1px solid #0372a4;
  border-radius: 20px;
}

.tp_merit_main_area {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}

.tp_merit_main_title {
  text-align: center;
}

.tp_merit_main_title_copy {
  margin-top: 50px;
  font-size: 20px;
  font-weight: bold;
}

@media screen and (max-width: 999px) {
  .tp_merit_main_title_copy {
    padding: 0px 40px;
  }
}
@media screen and (max-width: 767px) {
  .tp_merit_main_title_copy {
    font-size: 20px;
    margin-top: 40px;
    padding: 0px 30px;
  }
}
@media screen and (max-width: 667px) {
  .tp_merit_main_title_copy {
    text-align: left;
    font-size: 16px;
    margin-top: 25px;
    padding: 0px 20px;
  }
}
.tp_merit_main_title_copy_bold {
  color: #e6005f;
  font-size: 26px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .tp_merit_main_title_copy_bold {
    font-size: 18px;
  }
}
@media screen and (max-width: 667px) {
  .tp_merit_main_title_copy_bold {
    font-size: 16px;
  }
}
.tp_merit_main_title_copy_hide {
  display: none;
}

@media screen and (max-width: 999px) {
  .tp_merit_main_title_copy_hide {
    display: inline;
  }
}
@media screen and (max-width: 667px) {
  .tp_merit_main_title_copy_hide {
    display: none;
  }
}
.tp_merit_main_content {
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 999px) {
  .tp_merit_main_content {
    margin-top: 20px;
    width: 100%;
    float: none;
  }
}
.tp_merit_main_content_l {
  width: 33%;
  float: left;
}

@media screen and (max-width: 999px) {
  .tp_merit_main_content_l {
    width: 96%;
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
}
.tp_merit_main_content_center {
  width: 34%;
  height: 560px;
  float: left;
  border-left: 1px solid #e1e1e1;
  border-right: 1px solid #e1e1e1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 999px) {
  .tp_merit_main_content_center {
    width: 96%;
    height: auto;
    float: none;
    margin-left: auto;
    margin-right: auto;
    border-left: none;
    border-right: none;
    border-top: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
    padding-top: 20px;
  }
}
.tp_merit_main_content_r {
  width: 33%;
  float: right;
}

@media screen and (max-width: 999px) {
  .tp_merit_main_content_r {
    height: auto;
    width: 96%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    float: none;
  }
}
.tp_merit_main_content_title {
  font-size: 24px;
  color: 0a378c;
  text-align: center;
  width: 150px;
  height: 56px;
  margin-left: auto;
  margin-right: auto;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(20%, #ffff00));
  background: linear-gradient(transparent 80%, #ffff00 20%);
}

@media screen and (max-width: 767px) {
  .tp_merit_main_content_title {
    width: 130px;
  }
}
@media screen and (max-width: 667px) {
  .tp_merit_main_content_title {
    font-size: 20px;
    width: 100px;
    height: auto;
  }
}
.tp_merit_main_content_title > span {
  color: #0a378c;
  line-height: 1em;
  vertical-align: bottom;
}

.tp_merit_main_content_title > img {
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .tp_merit_main_content_title > img {
    width: 30px;
  }
}
@media screen and (max-width: 667px) {
  .tp_merit_main_content_title > img {
    width: 15px;
  }
}
.tp_merit_main_content_icon {
  margin-top: 40px;
  text-align: center;
}

@media screen and (max-width: 999px) {
  .tp_merit_main_content_icon {
    margin-top: 20px;
  }
}
@media screen and (max-width: 667px) {
  .tp_merit_main_content_icon > img {
    width: 89px;
  }
}
.tp_merit_main_content_logo_01 {
  width: 30px;
}

.tp_merit_main_content_logo_02 {
  width: 40px;
}

.tp_merit_main_content_logo_03 {
  width: 40px;
}

.tp_merit_main_content_text {
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  margin-bottom: 50px;
}

@media screen and (max-width: 999px) {
  .tp_merit_main_content_text {
    width: 96%;
    margin-top: 15px;
    margin-bottom: 25px;
  }
}
.tp_merit_main_content_text_note {
  font-size: 16px;
  vertical-align: top;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .tp_merit_main_content_text_note {
    font-size: 10px;
  }
}
.tp_merit_main_content_text_top {
  font-size: 22px;
  color: #31bcfb;
  font-weight: bold;
  text-align: center;
  line-height: 1.5em;
}

@media screen and (max-width: 667px) {
  .tp_merit_main_content_text_top {
    font-size: 18px;
  }
}
.tp_merit_main_content_text_inner {
  font-size: 18px;
  text-align: left;
  margin-top: 50px;
  padding: 0px 50px;
}

@media screen and (max-width: 999px) {
  .tp_merit_main_content_text_inner {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .tp_merit_main_content_text_inner {
    padding: 0px 20px;
    font-size: 18px;
  }
}
@media screen and (max-width: 667px) {
  .tp_merit_main_content_text_inner {
    font-size: 14px;
  }
}
.tp_merit_main_content_text_inner_note {
  font-size: 12px;
  margin-top: 0.5em;
  padding: 0px 50px;
}

@media screen and (max-width: 767px) {
  .tp_merit_main_content_text_inner_note {
    padding: 0px 20px;
    font-size: 11px;
  }
}
.tp_merit_point_wrap {
  max-width: 960px;
  margin-top: 90px;
  border: 1px solid #0372a4;
  border-radius: 20px;
}

@media screen and (max-width: 767px) {
  .tp_merit_point_wrap {
    margin-top: 35px;
  }
}
.tp_merit_point_area {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}

.tp_merit_point_title {
  color: #ffffff;
  font-size: 26px;
  font-weight: bold;
  text-align: left;
  height: 110px;
  padding-top: 16px;
  padding-left: 200px;
  padding-bottom: 18px;
  background-color: #0372a4;
  border-radius: 18px 18px 0px 0px;
}

@media screen and (max-width: 999px) {
  .tp_merit_point_title {
    font-size: 22px;
    height: auto;
    padding-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .tp_merit_point_title {
    font-size: 22px;
    height: auto;
    padding-left: 100px;
  }
}
@media screen and (max-width: 667px) {
  .tp_merit_point_title {
    font-size: 16px;
  }
}
.tp_merit_point_title_br_pc {
  display: none;
}

@media screen and (max-width: 768px) {
  .tp_merit_point_title_br_pc {
    display: inline;
  }
}
@media screen and (max-width: 767px) {
  .tp_merit_point_title_br_pc {
    display: none;
  }
}
.tp_merit_point_title_br_tablet {
  display: inline;
}

@media screen and (max-width: 768px) {
  .tp_merit_point_title_br_tablet {
    display: none;
  }
}
.tp_merit_point_title_02 {
  color: #ffffff;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  height: 110px;
  padding-top: 35px;
  padding-bottom: 18px;
  background-color: #0372a4;
}

@media screen and (max-width: 999px) {
  .tp_merit_point_title_02 {
    text-align: left;
    font-size: 22px;
    height: auto;
    padding-bottom: 35px;
    padding-bottom: 37px;
    padding-right: 20px;
    padding-left: 210px;
  }
}
@media screen and (max-width: 767px) {
  .tp_merit_point_title_02 {
    font-size: 22px;
    height: auto;
    padding-top: 18px;
    padding-left: 100px;
    padding-bottom: 18px;
  }
}
@media screen and (max-width: 667px) {
  .tp_merit_point_title_02 {
    font-size: 16px;
  }
}
.tp_merit_point_logo {
  position: absolute;
  top: -38px;
  left: 32px;
}

@media screen and (max-width: 767px) {
  .tp_merit_point_logo {
    top: 50%;
    left: 15px;
    margin-top: -35px;
  }
}
@media screen and (max-width: 767px) {
  .tp_merit_point_logo > img {
    width: 70px;
  }
}
.tp_merit_point_logo_move {
  position: relative;
}

.tp_merit_point_logo_move_position {
  margin-top: 70px;
}

@media screen and (max-width: 767px) {
  .tp_merit_point_logo_move_position {
    margin-top: 40px;
  }
}
@media screen and (max-width: 667px) {
  .tp_merit_point_logo_move_position {
    margin-top: 30px;
  }
}
.tp_merit_point_sub_note {
  font-size: 12px;
  text-align: left;
  width: 760px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 999px) {
  .tp_merit_point_sub_note {
    width: 96%;
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .tp_merit_point_sub_note {
    font-size: 11px;
    margin-top: 20px;
  }
}
.tp_merit_point_sub_note_content {
  text-indent: -3em;
  display: inline-block;
  margin-top: 10px;
  padding-left: 3em;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .tp_merit_point_sub_note_content {
    margin-top: 0px;
  }
}
.tp_merit_point_sub_title {
  font-size: 26px;
  color: #0372a4;
  text-align: center;
  position: relative;
  margin-top: 60px;
  font-weight: bold;
}

@media screen and (max-width: 999px) {
  .tp_merit_point_sub_title {
    font-size: 22px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 667px) {
  .tp_merit_point_sub_title {
    font-size: 16px;
    margin-top: 30px;
  }
}
.tp_merit_point_sub_title:after {
  content: '';
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 30px;
  z-index: 30;
  background: #0372a4;
  height: 1px;
  width: 15%;
  margin: auto;
  display: block;
}

@media screen and (max-width: 999px) {
  .tp_merit_point_sub_title:after {
    display: none;
  }
}
.tp_merit_point_sub_title:before {
  content: '';
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 30px;
  z-index: 30;
  background: #0372a4;
  height: 1px;
  width: 15%;
  margin: auto;
  display: block;
}

@media screen and (max-width: 999px) {
  .tp_merit_point_sub_title:before {
    display: none;
  }
}
.tp_merit_point_sub_title_line {
  position: relative;
  z-index: 30;
  padding: 0px 1em;
  display: inline-block;
}

@media screen and (max-width: 667px) {
  .tp_merit_point_sub_title_line {
    padding: 0px;
  }
}
.tp_merit_point_sub_title_note {
  font-size: 16px;
  vertical-align: top;
}

@media screen and (max-width: 999px) {
  .tp_merit_point_sub_title_note {
    font-size: 11px;
  }
}
.tp_merit_point_sub_title_span:before {
  width: 32%;
}

.tp_merit_point_sub_title_span:after {
  width: 32%;
}

.tp_merit_point_sub_img {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin-top: 70px;
  margin-left: auto;
  margin-right: auto;
  padding: 0px 17px;
}

@media screen and (max-width: 999px) {
  .tp_merit_point_sub_img {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .tp_merit_point_sub_img {
    margin-top: 30px;
  }
}
.tp_merit_point_sub_img_pc {
  display: inline;
}

@media screen and (max-width: 667px) {
  .tp_merit_point_sub_img_pc {
    display: none;
  }
}
.tp_merit_point_sub_img_sp {
  display: none;
}

@media screen and (max-width: 667px) {
  .tp_merit_point_sub_img_sp {
    display: inline;
  }
}
.tp_merit_point_sub_text {
  font-size: 20px;
  text-align: left;
  max-width: 880px;
  width: 100%;
  max-width: 760px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  line-height: 170%;
}

@media screen and (max-width: 999px) {
  .tp_merit_point_sub_text {
    font-size: 18px;
    width: 96%;
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .tp_merit_point_sub_text {
    font-size: 18px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 667px) {
  .tp_merit_point_sub_text {
    font-size: 14px;
  }
}
.tp_merit_point_sub_serif {
  border: 2px solid #0372a4;
  border-radius: 5px;
  width: 100%;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 70px;
  position: relative;
}

@media screen and (max-width: 999px) {
  .tp_merit_point_sub_serif {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .tp_merit_point_sub_serif {
    margin-top: 30px;
  }
}
.tp_merit_point_sub_serif_text {
  font-size: 18px;
  display: inline-block;
  width: 100%;
  padding: 20px 20px 20px 170px;
}

@media screen and (max-width: 999px) {
  .tp_merit_point_sub_serif_text {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .tp_merit_point_sub_serif_text {
    font-size: 18px;
    padding: 10px 20px 10px 100px;
  }
}
@media screen and (max-width: 667px) {
  .tp_merit_point_sub_serif_text {
    font-size: 13px;
    padding: 20px 20px 20px 65px;
  }
}
.tp_merit_point_sub_serif_text_stand {
  font-size: 26px;
  color: #e6005f;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .tp_merit_point_sub_serif_text_stand {
    font-size: 26px;
  }
}
@media screen and (max-width: 667px) {
  .tp_merit_point_sub_serif_text_stand {
    font-size: 16px;
  }
}
.tp_merit_point_sub_serif_text_point {
  text-indent: -1em;
  margin-left: 1em;
  line-height: 1.5em;
}

.tp_merit_point_sub_serif_text_spase {
  display: inline-block;
  margin-top: 5px;
  line-height: 1em;
  padding-left: 1em;
}

.tp_merit_point_sub_serif_img {
  position: absolute;
  bottom: -7px;
  left: 50px;
}

@media screen and (max-width: 767px) {
  .tp_merit_point_sub_serif_img {
    left: 20px;
    bottom: 0px;
  }
}
@media screen and (max-width: 667px) {
  .tp_merit_point_sub_serif_img {
    left: 7px;
    bottom: 0px;
  }
}
.tp_merit_point_sub_serif_img_pc {
  display: inline;
  width: 100px;
}

@media screen and (max-width: 767px) {
  .tp_merit_point_sub_serif_img_pc {
    display: none;
  }
}
.tp_merit_point_sub_serif_img_sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .tp_merit_point_sub_serif_img_sp {
    width: 55px;
    display: block;
  }
}
.tp_merit_point_sub_serif_box {
  width: 100%;
  padding: 0px 20px;
}

@media screen and (max-width: 767px) {
  .tp_merit_point_sub_serif_box {
    font-size: 14px;
  }
}
.tp_merit_point_caution_wrap {
  max-width: 960px;
  margin-top: 70px;
  border: 1px solid #0372a4;
  position: relative;
}

@media screen and (max-width: 767px) {
  .tp_merit_point_caution_wrap {
    margin-top: 35px;
  }
}
.tp_merit_point_caution_wrap_shape {
  position: absolute;
  top: 0px;
  left: 0px;
}

.tp_merit_point_caution_move {
  width: 100%;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 999px) {
  .tp_merit_point_caution_move {
    padding: 0px 20px;
  }
}
.tp_merit_point_caution_img {
  position: absolute;
  top: -2px;
  left: -2px;
}

@media screen and (max-width: 767px) {
  .tp_merit_point_caution_img {
    width: 28px;
  }
}
.tp_merit_point_caution_title {
  color: #ffffff;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  height: 110px;
  padding-top: 20px;
  padding-bottom: 18px;
  background-color: #0372a4;
}

@media screen and (max-width: 999px) {
  .tp_merit_point_caution_title {
    font-size: 28px;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .tp_merit_point_caution_title {
    font-size: 24px;
  }
}
@media screen and (max-width: 667px) {
  .tp_merit_point_caution_title {
    font-size: 16px;
  }
}
.tp_merit_point_caution_title_text {
  vertical-align: middle;
}

.tp_merit_point_caution_title_icon > img {
  width: 70px;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .tp_merit_point_caution_title_icon > img {
    width: 35px;
  }
}
.tp_merit_point_caution_title_span:before {
  left: 0px;
  width: 12%;
}

.tp_merit_point_caution_title_span:after {
  right: 0px;
  width: 12%;
}

.tp_merit_point_caution_text {
  font-size: 18px;
  text-align: left;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  line-height: 170%;
}

@media screen and (max-width: 999px) {
  .tp_merit_point_caution_text {
    margin-top: 40px;
  }
}
@media screen and (max-width: 667px) {
  .tp_merit_point_caution_text {
    font-size: 14px;
    margin-top: 30px;
  }
}
.tp_merit_point_caution_lifeplanner {
  position: relative;
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  width: 95%;
  margin-top: 65px;
  margin-left: auto;
  margin-bottom: 70px;
  padding-left: 120px;
  padding-top: 16px;
  padding-bottom: 16px;
  border: 5px solid #31bcfb;
}

@media screen and (max-width: 999px) {
  .tp_merit_point_caution_lifeplanner {
    width: 90%;
    padding-right: 20px;
  }
}
@media screen and (min-width: 668px) and (max-width: 768px) {
  .tp_merit_point_caution_lifeplanner {
    width: 100%;
    padding-left: 125px;
    padding-right: 50px;
    margin-top: 40px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 667px) {
  .tp_merit_point_caution_lifeplanner {
    margin-top: 100px;
    font-size: 14px;
    margin-bottom: 50px;
    padding-left: 0px;
    margin-right: auto;
    padding: 30px 20px 20px 20px;
    margin-bottom: 30px;
    border: 3px solid #31bcfb;
  }
}
.tp_merit_point_caution_lifeplanner_triangle {
  position: absolute;
  top: 0;
  right: 0;
  border-style: solid;
  border-width: 20px;
  border-color: #31bcfb #31bcfb transparent transparent;
}

.tp_merit_point_caution_lifeplanner_img {
  position: absolute;
  left: -84px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 668px) and (max-width: 768px) {
  .tp_merit_point_caution_lifeplanner_img {
    width: 120px;
    left: -20px;
  }
}
@media screen and (max-width: 667px) {
  .tp_merit_point_caution_lifeplanner_img {
    left: 50%;
    top: -20%;
    width: 90.5px;
    margin-left: -45px;
  }
}
.tp_merit_point_caution_lifeplanner_bold {
  font-size: 30px;
  color: #e6005f;
}

@media screen and (max-width: 999px) {
  .tp_merit_point_caution_lifeplanner_bold {
    font-size: 24px;
  }
}
@media screen and (max-width: 667px) {
  .tp_merit_point_caution_lifeplanner_bold {
    font-size: 16px;
  }
}
/*********************
message
*********************/
.tp_message {
  margin-top: 95px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .tp_message {
    margin-top: 50px;
  }
}
@media screen and (max-width: 667px) {
  .tp_message {
    margin-top: 40px;
  }
}
.tp_message_lead {
  text-align: center;
  width: 96%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.tp_message_lead_pc {
  display: inline;
}

@media screen and (max-width: 767px) {
  .tp_message_lead_pc {
    display: none;
  }
}
.tp_message_lead_sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .tp_message_lead_sp {
    display: inline;
  }
}
@media screen and (max-width: 667px) {
  .tp_message_lead_sp {
    width: 250px;
  }
}
.tp_message_lead_text {
  width: 100%;
  margin-top: 70px;
  margin-left: auto;
  margin-right: auto;
  padding: 0px 35px;
  font-size: 24px;
  line-height: 2em;
}

@media screen and (max-width: 999px) {
  .tp_message_lead_text {
    line-height: 1.8;
    text-align: left;
    font-size: 22px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .tp_message_lead_text {
    font-size: 22px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 667px) {
  .tp_message_lead_text {
    line-height: 1.6;
    font-size: 14px;
    margin-top: 30px;
  }
}
.tp_message_lead_text > span {
  background: #ffe633 100%;
}

/*********************
planning
*********************/
.tp_planning.tp_content_area {
  width: 100%;
  max-width: 960px;
  margin-top: 95px;
}

@media screen and (max-width: 999px) {
  .tp_planning.tp_content_area {
    margin-top: 75px;
  }
}
@media screen and (max-width: 767px) {
  .tp_planning.tp_content_area {
    margin-top: 35px;
  }
}
.tp_planning_lead {
  text-align: center;
}

.tp_planning_lead_copy {
  margin-top: 50px;
  font-size: 30px;
}

@media screen and (max-width: 767px) {
  .tp_planning_lead_copy {
    margin-top: 0px;
    font-size: 30px;
    font-weight: bold;
  }
}
@media screen and (max-width: 667px) {
  .tp_planning_lead_copy {
    margin-top: 35px;
    font-size: 17px;
  }
}
.tp_planning_lead_copy > span {
  color: #072e62;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .tp_planning_lead_copy > span {
    font-size: 30px;
  }
}
@media screen and (max-width: 667px) {
  .tp_planning_lead_copy > span {
    font-size: 17px;
  }
}
.tp_planning_lead_copy_br_pc {
  display: none;
}

@media screen and (max-width: 999px) {
  .tp_planning_lead_copy_br_pc {
    display: inline;
  }
}
.tp_planning_lead_copy_br_sp {
  display: none;
}

@media screen and (max-width: 667px) {
  .tp_planning_lead_copy_br_sp {
    display: inline;
  }
}
@media screen and (max-width: 768px) {
  .tp_planning_lead_copy_br_tablet {
    display: none;
  }
}
@media screen and (max-width: 668px) {
  .tp_planning_lead_copy_br_tablet {
    display: inline;
  }
}
.tp_planning_border {
  width: 100%;
  height: 18px;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .tp_planning_border {
    margin-top: 15px;
  }
}
@media screen and (max-width: 667px) {
  .tp_planning_border {
    height: 14px;
  }
}
.tp_planning_border_left {
  width: 50.5%;
  height: 18px;
  float: left;
  background-color: #31bcfb;
}

@media screen and (max-width: 667px) {
  .tp_planning_border_left {
    height: 14px;
  }
}
.tp_planning_border_right {
  position: relative;
  width: 49.5%;
  height: 18px;
  float: right;
  background-color: #c1ecff;
  overflow: hidden;
}

@media screen and (max-width: 667px) {
  .tp_planning_border_right {
    height: 14px;
  }
}
.tp_planning_border_right_img {
  position: absolute;
  left: 0;
  background-color: #c1ecff;
}

.tp_planning_chart_wrap {
  max-width: 960px;
  margin-top: 70px;
  border: 1px solid #0372a4;
  border-radius: 20px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 999px) {
  .tp_planning_chart_wrap {
    border: none;
  }
}
@media screen and (max-width: 767px) {
  .tp_planning_chart_wrap {
    margin-top: 40px;
  }
}
@media screen and (max-width: 667px) {
  .tp_planning_chart_wrap {
    margin-top: 30px;
  }
}
.tp_planning_chart_first {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 999px) {
  .tp_planning_chart_first {
    width: 96%;
  }
}
.tp_planning_chart_comment {
  float: left;
}

@media screen and (max-width: 999px) {
  .tp_planning_chart_comment {
    float: none;
  }
}
.tp_planning_chart_comment_box {
  border-radius: 8px;
  background: #0372a4;
  position: relative;
  width: 270px;
  margin-top: 60px;
}

@media screen and (max-width: 999px) {
  .tp_planning_chart_comment_box {
    width: 100%;
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .tp_planning_chart_comment_box {
    margin-top: 0px;
  }
}
.tp_planning_chart_comment_box_02 {
  height: 260px;
}

@media screen and (max-width: 999px) {
  .tp_planning_chart_comment_box_02 {
    height: auto;
    margin-top: 10px;
  }
}
.tp_planning_chart_comment_box_arrow {
  position: absolute;
  left: 50%;
  bottom: -10px;
  margin-left: -11px;
  width: 33px;
  display: inline;
}

@media screen and (max-width: 999px) {
  .tp_planning_chart_comment_box_arrow {
    display: none;
  }
}
.tp_planning_chart_comment_box_img {
  position: absolute;
  left: 50%;
  bottom: -120px;
  margin-left: -105px;
  width: 211px;
}

@media screen and (max-width: 999px) {
  .tp_planning_chart_comment_box_img {
    top: 10px;
    left: 10px;
    bottom: 0px;
    margin-left: 0px;
  }
}
.tp_planning_chart_comment_box_img_pc {
  display: inline;
}

@media screen and (max-width: 999px) {
  .tp_planning_chart_comment_box_img_pc {
    display: none;
  }
}
.tp_planning_chart_comment_box_img_sp {
  display: none;
}

@media screen and (max-width: 999px) {
  .tp_planning_chart_comment_box_img_sp {
    width: 106px;
    display: inline;
  }
}
.tp_planning_chart_comment_box_img_sp_02 {
  display: none;
}

@media screen and (max-width: 999px) {
  .tp_planning_chart_comment_box_img_sp_02 {
    width: 41px !important;
    display: inline;
  }
}
.tp_planning_chart_comment_box_img_02 {
  position: absolute;
  left: 50%;
  bottom: -80px;
  margin-left: 30px;
  width: 63px;
}

@media screen and (max-width: 999px) {
  .tp_planning_chart_comment_box_img_02 {
    top: -3%;
    left: 30px;
    margin-left: 0px;
  }
}
.tp_planning_chart_comment_box_inner {
  font-weight: bold;
  color: #ffffff;
  width: 215px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
}

@media screen and (max-width: 999px) {
  .tp_planning_chart_comment_box_inner {
    width: 96%;
  }
}
.tp_planning_chart_comment_box_inner_title {
  font-size: 22px;
  line-height: 1.3em;
  text-align: left;
}

@media screen and (max-width: 999px) {
  .tp_planning_chart_comment_box_inner_title {
    margin-left: 120px;
  }
}
@media screen and (max-width: 767px) {
  .tp_planning_chart_comment_box_inner_title {
    font-size: 16px;
  }
}
@media screen and (max-width: 999px) {
  .tp_planning_chart_comment_box_inner_title_02 {
    margin-left: 90px;
  }
}
.tp_planning_chart_comment_box_inner_text {
  font-size: 16px;
  line-height: 1.4em;
  text-align: left;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #ffffff;
}

@media screen and (max-width: 999px) {
  .tp_planning_chart_comment_box_inner_text {
    border-top: none;
    margin-top: 20px;
  }
}
@media screen and (max-width: 667px) {
  .tp_planning_chart_comment_box_inner_text {
    font-size: 14px;
    margin-top: 0px;
  }
}
.tp_planning_chart_comment_box_inner_text_hide {
  display: inline;
}

@media screen and (max-width: 999px) {
  .tp_planning_chart_comment_box_inner_text_hide {
    display: none;
  }
}
@media screen and (max-width: 667px) {
  .tp_planning_chart_comment_box_inner_text_hide {
    display: inline;
  }
}
.tp_planning_chart_img {
  position: relative;
  float: right;
  margin-top: 90px;
  margin-bottom: 90px;
}

@media screen and (max-width: 999px) {
  .tp_planning_chart_img {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
    float: none;
    margin-left: auto;
    margin-right: auto;
    max-width: 560px;
    display: block;
  }
}
@media screen and (max-width: 667px) {
  .tp_planning_chart_img {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.tp_planning_chart_second {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding: 0px 40px;
  border-top: 1px solid #0372a4;
}

@media screen and (max-width: 999px) {
  .tp_planning_chart_second {
    max-width: 880px;
    width: 96%;
    padding: 0px;
    border-top: none;
  }
}
.tp_planning_chart_second_comment {
  float: right;
}

@media screen and (max-width: 999px) {
  .tp_planning_chart_second_comment {
    float: none;
  }
}
.tp_planning_chart_second_img {
  float: left;
}

@media screen and (max-width: 999px) {
  .tp_planning_chart_second_img {
    float: none;
  }
}
.tp_planning_chart_third {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
  border-bottom: 1px solid #0372a4;
}

@media screen and (max-width: 999px) {
  .tp_planning_chart_third {
    width: 96%;
    margin-top: 5px;
    margin-bottom: 0px;
    border-bottom: none;
  }
}
.tp_planning_chart_third_img_pc {
  display: inline;
}

@media screen and (max-width: 667px) {
  .tp_planning_chart_third_img_pc {
    display: none;
  }
}
.tp_planning_chart_third_img_sp {
  display: none;
}

@media screen and (max-width: 667px) {
  .tp_planning_chart_third_img_sp {
    display: inline;
  }
}
.tp_planning_chart_third_img_sp_02 {
  display: none;
}

@media screen and (max-width: 667px) {
  .tp_planning_chart_third_img_sp_02 {
    display: inline;
  }
}
.tp_planning_chart_third_img_sp_03 {
  display: none;
}

@media screen and (max-width: 667px) {
  .tp_planning_chart_third_img_sp_03 {
    display: inline;
  }
}
.tp_planning_chart_third_img_sp_04 {
  display: none;
}

@media screen and (max-width: 667px) {
  .tp_planning_chart_third_img_sp_04 {
    display: inline;
  }
}
.tp_planning_chart_third_img_01 {
  position: relative;
  width: 45%;
  float: left;
  margin-top: 0px;
  margin-bottom: 30px;
}

@media screen and (max-width: 999px) {
  .tp_planning_chart_third_img_01 {
    width: 100%;
    text-align: center;
    float: none;
    margin-bottom: 0px;
  }
}
.tp_planning_chart_third_img_01 > span {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 28px;
  font-weight: bold;
  color: #0372a4;
  text-align: center;
  display: block;
}

@media screen and (max-width: 767px) {
  .tp_planning_chart_third_img_01 > span {
    text-align: left;
    font-size: 16px;
    width: 394px;
    display: inline-block;
  }
}
@media screen and (max-width: 667px) {
  .tp_planning_chart_third_img_01 > span {
    width: 294px;
  }
}
.tp_planning_chart_third_img_02 {
  position: relative;
  width: 10%;
  float: left;
  margin-top: 0px;
  padding-left: 25px;
  padding-top: 66px;
}

@media screen and (max-width: 999px) {
  .tp_planning_chart_third_img_02 {
    text-align: center;
    float: none;
    width: 100%;
    padding-top: 20px;
    margin-bottom: 20px;
    padding-left: 0px;
  }
}
.tp_planning_chart_third_img_02_pc {
  display: inline;
  width: 100px;
}

@media screen and (max-width: 999px) {
  .tp_planning_chart_third_img_02_pc {
    display: none;
  }
}
.tp_planning_chart_third_img_02_sp {
  display: none;
}

@media screen and (max-width: 999px) {
  .tp_planning_chart_third_img_02_sp {
    width: 48px;
    display: inline;
  }
}
.tp_planning_chart_third_img_02 > img {
  width: 32px;
  text-align: center;
}

@media screen and (max-width: 999px) {
  .tp_planning_chart_third_img_02 > img {
    width: 34px;
  }
}
.tp_planning_chart_third_img_03 {
  position: relative;
  width: 45%;
  float: right;
  margin-top: 0px;
  margin-bottom: 30px;
}

@media screen and (max-width: 999px) {
  .tp_planning_chart_third_img_03 {
    text-align: center;
    width: 100%;
    float: none;
    margin-bottom: 0px;
  }
}
.tp_planning_chart_third_img_03 > span {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 28px;
  font-weight: bold;
  color: #0372a4;
  text-align: center;
  display: block;
}

@media screen and (max-width: 767px) {
  .tp_planning_chart_third_img_03 > span {
    text-align: left;
    font-size: 16px;
    width: 394px;
    display: inline-block;
  }
}
@media screen and (max-width: 667px) {
  .tp_planning_chart_third_img_03 > span {
    width: 294px;
  }
}
.tp_planning_arrow {
  text-align: center;
  margin-top: 60px;
}

@media screen and (max-width: 999px) {
  .tp_planning_arrow {
    margin-top: 40px;
  }
}
@media screen and (max-width: 667px) {
  .tp_planning_arrow {
    margin-top: 30px;
  }
}
.tp_planning_arrow > img {
  width: 120px;
}

@media screen and (max-width: 767px) {
  .tp_planning_arrow > img {
    width: 60px;
  }
}
.tp_planning_sub_text {
  text-align: center;
  width: 96%;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 999px) {
  .tp_planning_sub_text {
    margin-top: 40px;
  }
}
@media screen and (max-width: 667px) {
  .tp_planning_sub_text {
    margin-top: 30px;
  }
}
.tp_planning_sub_text_pc {
  display: inline;
}

@media screen and (max-width: 667px) {
  .tp_planning_sub_text_pc {
    display: none;
  }
}
.tp_planning_sub_text_sp {
  display: none;
}

@media screen and (max-width: 667px) {
  .tp_planning_sub_text_sp {
    width: 300px;
    display: inline;
  }
}
@media screen and (max-width: 999px) {
  .tp_planning_voice {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
  }
}
.tp_planning_voice_title {
  font-size: 28px;
  color: #0372a4;
}

@media screen and (max-width: 767px) {
  .tp_planning_voice_title {
    font-size: 22px;
  }
}
@media screen and (max-width: 667px) {
  .tp_planning_voice_title {
    font-size: 16px;
  }
}
.tp_planning_voice_title_wrap {
  text-align: center;
  font-weight: bold;
  max-width: 960px;
  border: 3px solid #0372a4;
  border-radius: 5px;
  margin-top: 70px;
  margin-left: auto;
  margin-right: auto;
  padding: 25px 30px;
  position: relative;
}

@media screen and (max-width: 999px) {
  .tp_planning_voice_title_wrap {
    margin-top: 50px;
  }
}
@media screen and (max-width: 667px) {
  .tp_planning_voice_title_wrap {
    margin-top: 45px;
  }
}
.tp_planning_voice_title_wrap_pc {
  display: inline;
}

@media screen and (max-width: 767px) {
  .tp_planning_voice_title_wrap_pc {
    display: none;
  }
}
.tp_planning_voice_title_wrap_sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .tp_planning_voice_title_wrap_sp {
    display: inline;
  }
}
@media screen and (max-width: 767px) {
  .tp_planning_voice_title_wrap {
    padding: 15px 20px;
    border: 1px solid #0372a4;
  }
}
.tp_planning_voice_title_wrap > img {
  position: absolute;
  left: 50%;
  right: 0px;
  bottom: -36px;
  width: 78px;
  margin-left: -37px;
}

@media screen and (max-width: 767px) {
  .tp_planning_voice_title_wrap > img {
    bottom: -17px;
    width: 39px;
    margin-left: -19.5px;
  }
}
.tp_planning_voice_inner_move_01 {
  float: left;
}

@media screen and (min-width: 668px) and (max-width: 999px) {
  .tp_planning_voice_inner_move_01 {
    width: 96%;
    height: 176px;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
}
@media screen and (max-width: 667px) {
  .tp_planning_voice_inner_move_01 {
    float: none;
  }
}
.tp_planning_voice_inner_move_02 {
  float: left;
  margin-left: 30px;
}

@media screen and (min-width: 668px) and (max-width: 999px) {
  .tp_planning_voice_inner_move_02 {
    width: 96%;
    height: 176px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
}
@media screen and (max-width: 667px) {
  .tp_planning_voice_inner_move_02 {
    margin-left: 0px;
    float: none;
  }
}
.tp_planning_voice_inner_move_03 {
  float: right;
}

@media screen and (min-width: 668px) and (max-width: 999px) {
  .tp_planning_voice_inner_move_03 {
    width: 96%;
    height: 176px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
}
@media screen and (max-width: 667px) {
  .tp_planning_voice_inner_move_03 {
    float: none;
  }
}
.tp_planning_voice_inner_wrap {
  width: 300px;
  height: 450px;
  margin-top: 40px;
  padding: 4px;
  border: 1px solid #0372a4;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (min-width: 668px) and (max-width: 999px) {
  .tp_planning_voice_inner_wrap {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 667px) {
  .tp_planning_voice_inner_wrap {
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
.tp_planning_voice_inner_wrap_text {
  color: #0372a4;
  width: 240px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 668px) and (max-width: 999px) {
  .tp_planning_voice_inner_wrap_text {
    width: 100%;
    height: auto;
    margin-left: 0px;
    padding-left: 265px;
    padding-right: 15px;
  }
}
.tp_planning_voice_inner_wrap_text_main {
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  height: 150px;
}

@media screen and (min-width: 668px) and (max-width: 999px) {
  .tp_planning_voice_inner_wrap_text_main {
    height: auto;
  }
}
@media screen and (max-width: 667px) {
  .tp_planning_voice_inner_wrap_text_main {
    height: auto;
  }
}
.tp_planning_voice_inner_wrap_text_name {
  font-size: 18px;
  text-align: center;
  width: 220px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid #0372a4;
  border-bottom: 1px solid #0372a4;
}

@media screen and (min-width: 668px) and (max-width: 999px) {
  .tp_planning_voice_inner_wrap_text_name {
    position: absolute;
    bottom: 15px;
    right: 15px;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-right: 0px;
    border-top: none;
    border-bottom: none;
  }
}
@media screen and (max-width: 667px) {
  .tp_planning_voice_inner_wrap_text_name {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 668px) and (max-width: 999px) {
  .tp_planning_voice_inner_wrap_img {
    float: left;
  }
}
.tp_planning_voice_inner_wrap_img > img {
  width: 290px;
}

@media screen and (min-width: 668px) and (max-width: 999px) {
  .tp_planning_voice_inner_wrap_img > img {
    width: 240px;
    display: block;
  }
}
/*********************
FLOW
*********************/
.tp_flow {
  margin-top: 70px;
}

@media screen and (max-width: 999px) {
  .tp_flow {
    width: 100%;
  }
}
.tp_flow_heading {
  color: #ffffff;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  position: relative;
  margin-bottom: 25px;
  padding-top: 25px;
  padding-bottom: 25px;
  background: #0372a4;
  border-radius: 5px;
}

@media screen and (max-width: 1000px) {
  .tp_flow_heading {
    border-radius: 0px;
  }
}
@media screen and (max-width: 667px) {
  .tp_flow_heading {
    font-size: 17px;
    padding-top: 17px;
    padding-bottom: 17px;
  }
}
.tp_flow_heading_text {
  position: relative;
  z-index: 2;
}

.tp_flow_heading_arrow {
  position: absolute;
  width: 120px;
  bottom: -25px;
  left: 50%;
  margin-left: -60px;
  z-index: 1;
}

.tp_flow_step_area {
  margin-top: 65px;
}

.tp_flow_step_wrap {
  margin-top: 35px;
  padding-left: 35px;
  padding-right: 35px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 999px) {
  .tp_flow_step_wrap {
    max-width: 960px;
    width: 96%;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
}
@media screen and (max-width: 667px) {
  .tp_flow_step_wrap {
    margin-top: 24px;
  }
}
@media screen and (max-width: 414px) {
  .tp_flow_step_wrap {
    margin-top: 12px;
  }
}
.tp_flow_step_num {
  float: left;
}

@media screen and (max-width: 667px) {
  .tp_flow_step_num {
    display: none;
  }
}
.tp_flow_step_num_last {
  float: left;
}

@media screen and (max-width: 667px) {
  .tp_flow_step_num_last {
    width: 11%;
    display: block;
    float: left;
  }
}
.tp_flow_step_num_sp {
  display: none;
}

@media screen and (max-width: 667px) {
  .tp_flow_step_num_sp {
    width: 11%;
    display: block;
    float: left;
  }
}
.tp_flow_step_detail {
  float: left;
  width: 100%;
  margin-left: -95px;
  padding-left: 130px;
}

@media screen and (max-width: 999px) {
  .tp_flow_step_detail {
    padding-left: 120px;
  }
}
@media screen and (max-width: 667px) {
  .tp_flow_step_detail {
    width: 86%;
    margin-left: 0;
    padding-left: 0;
    float: right;
  }
}
.tp_flow_step_detail_inner {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 55px;
  padding-right: 55px;
  border: 1px solid #0372a4;
  border-radius: 20px;
}

@media screen and (max-width: 999px) {
  .tp_flow_step_detail_inner {
    padding-top: 22px;
    padding-bottom: 22px;
    padding-left: 38px;
    padding-right: 38px;
  }
}
@media screen and (max-width: 667px) {
  .tp_flow_step_detail_inner {
    padding-top: 14px;
    padding-bottom: 15px;
    padding-left: 18px;
    padding-right: 18px;
    border: 2px solid #31bcfb;
    border-radius: 14px;
  }
}
.tp_flow_step_detail_inner_step02 {
  background: url("../images/flow_step_02_bg.png") no-repeat 100% 0%;
}

@media screen and (max-width: 768px) {
  .tp_flow_step_detail_inner_step02 {
    background: none;
  }
}
.tp_flow_step_detail_inner_step03 {
  background: url("../images/flow_step_03_bg.png") no-repeat 100% 0%;
}

@media screen and (max-width: 768px) {
  .tp_flow_step_detail_inner_step03 {
    background: none;
  }
}
.tp_flow_step_detail_heading {
  font-size: 26px;
  font-weight: bold;
}

@media screen and (max-width: 667px) {
  .tp_flow_step_detail_heading {
    color: #31bcfb;
    font-size: 18px;
  }
}
.tp_flow_step_detail_heading_br_pc {
  display: none;
}

@media screen and (min-width: 668px) and (max-width: 768px) {
  .tp_flow_step_detail_heading_br_pc {
    display: inline;
  }
}
.tp_flow_step_detail_leading {
  font-size: 18px;
  margin-top: 0.5em;
}

@media screen and (max-width: 667px) {
  .tp_flow_step_detail_leading {
    font-size: 15px;
  }
}
.tp_flow_step_detail_leading_br_tablet {
  display: inline;
}

@media screen and (max-width: 768px) {
  .tp_flow_step_detail_leading_br_tablet {
    display: none;
  }
}
.tp_flow_step_arrow {
  margin-top: 35px;
  padding-left: 35px;
}

@media screen and (max-width: 999px) {
  .tp_flow_step_arrow {
    max-width: 960px;
    width: 96%;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
}
@media screen and (max-width: 667px) {
  .tp_flow_step_arrow {
    display: none;
  }
}
.tp_flow_step_arrow_img {
  margin-left: 21px;
  display: block;
}

.tp_flow_info_area {
  margin-top: 70px;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 70px;
  padding-right: 70px;
  border: 1px solid #0372a4;
}

@media screen and (max-width: 999px) {
  .tp_flow_info_area {
    max-width: 960px;
    width: 96%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 667px) {
  .tp_flow_info_area {
    margin-left: 10px;
    margin-right: 10px;
    padding-top: 40px;
    padding-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
    border: none;
    border-top: 2px solid #31bcfb;
  }
}
.tp_flow_info_box {
  margin-top: 55px;
}

.tp_flow_info_box:first-child {
  margin-top: 0px;
}

@media screen and (max-width: 667px) {
  .tp_flow_info_box {
    margin-top: 24px;
  }
}
.tp_flow_info_box_heading {
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
  font-weight: bold;
  position: relative;
  width: 140px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 25px;
  background: #0372a4;
  display: inline-block;
}

.tp_flow_info_box_heading:after {
  content: '';
  position: absolute;
  width: 2px;
  height: 100%;
  top: 0px;
  left: 7px;
  background: #ffffff;
}

@media screen and (max-width: 667px) {
  .tp_flow_info_box_heading {
    font-size: 18px;
  }
}
.tp_flow_info_box_leading {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 1em;
}

@media screen and (max-width: 667px) {
  .tp_flow_info_box_leading {
    font-size: 15px;
  }
}
.tp_flow_info_box_leading_list {
  text-indent: -1em;
  margin-left: 1em;
}

/*********************
CAMPAIGN
*********************/
.tp_content_area.tp_info {
  margin-top: 70px;
}

@media screen and (max-width: 999px) {
  .tp_content_area .tp_info_banner_pc {
    width: 100%;
  }
}
@media screen and (max-width: 667px) {
  .tp_content_area .tp_info_banner_pc {
    display: none;
  }
}
.tp_content_area .tp_info_banner_sp {
  display: none;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_info_banner_sp {
    width: 100%;
    display: inline;
  }
}
.tp_content_area .tp_info_wrap {
  width: 100%;
  max-width: 960px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

@media screen and (max-width: 999px) {
  .tp_content_area .tp_info_wrap {
    max-width: 960px;
    width: 96%;
  }
}
.tp_content_area .tp_info_inner {
  letter-spacing: -1em;
  margin-left: -10px;
  margin-right: -10px;
}

@media screen and (max-width: 999px) {
  .tp_content_area .tp_info_inner {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
.tp_content_area .tp_info_inner_area {
  vertical-align: middle;
  letter-spacing: normal;
  width: 33.333%;
  margin-top: 30px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 24px;
  display: inline-block;
}

@media screen and (max-width: 999px) {
  .tp_content_area .tp_info_inner_area {
    text-align: center;
    min-width: 400px;
    width: 60%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 414px) {
  .tp_content_area .tp_info_inner_area {
    min-width: 100%;
    width: 100%;
  }
}
.tp_content_area .tp_info_article {
  text-align: center;
  border: 1px solid #0372a4;
  border-radius: 8px;
}

@media screen and (max-width: 414px) {
  .tp_content_area .tp_info_article {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #0372a4;
  }
}
.tp_content_area .tp_info_article_title {
  position: relative;
  margin-top: -24px;
}

@media screen and (max-width: 414px) {
  .tp_content_area .tp_info_article_title {
    margin-top: 0;
  }
}
@media screen and (max-width: 414px) {
  .tp_content_area .tp_info_article_title_pc {
    display: none;
  }
}
.tp_content_area .tp_info_article_title_sp {
  display: none;
}

@media screen and (max-width: 414px) {
  .tp_content_area .tp_info_article_title_sp {
    position: absolute;
    top: -30px;
    right: -20px;
    width: 109px;
    display: inline;
  }
}
.tp_content_area .tp_info_article_box {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 32px;
  padding-right: 32px;
}

@media screen and (max-width: 414px) {
  .tp_content_area .tp_info_article_box {
    padding-bottom: 10px;
  }
}
.tp_content_area .tp_info_article_prize {
  position: relative;
  margin-top: 10px;
  height: 175px;
}

.tp_content_area .tp_info_article_prize:first-child {
  margin-top: 0;
}

@media screen and (max-width: 414px) {
  .tp_content_area .tp_info_article_prize {
    height: auto;
  }
}
@media screen and (max-width: 414px) {
  .tp_content_area .tp_info_article_prize_goods {
    margin-left: -40px;
  }
}
.tp_content_area .tp_info_article_prize_goods.tp_prize_01 {
  margin-top: 25px;
}

.tp_content_area .tp_info_article_prize_goods.tp_prize_03 {
  left: 20%;
  margin-top: 0px;
}

.tp_content_area .tp_info_article_prize_goods.tp_prize_05 {
  margin-top: 20px;
}

.tp_content_area .tp_info_article_prize_num {
  position: absolute;
  right: 0;
}

.tp_content_area .tp_info_article_prize_num.tp_prize_num_07 {
  top: 20px;
  right: 70px;
}

.tp_content_area .tp_info_article_prize_name {
  color: #e6005f;
  font-size: 20px;
  font-weight: bold;
}

@media screen and (max-width: 414px) {
  .tp_content_area .tp_info_article_prize_name {
    font-size: 15px;
  }
}
.tp_content_area .tp_info_article_prize_name.tp_prize_name_small {
  font-size: 16px;
}

.tp_content_area .tp_info_article_prize.tp_campaign_article_prize_happy {
  height: 140px;
}

.tp_content_area .tp_info_article_btn_wrap {
  text-align: center;
  margin-top: 1em;
}

.tp_content_area .tp_info_article_btn {
  color: #ffffff;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  width: 306.5px;
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: #fe7a99;
  border-bottom: 4px solid #df6986;
  border-radius: 8px;
  display: block;
  text-decoration: none;
  opacity: 1;
  -webkit-transition: opacity 0.150s ease;
  transition: opacity 0.150s ease;
  -webkit-tap-highlight-color: transparent;
}

.tp_content_area .tp_info_article_btn:hover {
  text-decoration: none;
  opacity: 0.7;
  -webkit-tap-highlight-color: transparent;
}

.tp_content_area .tp_info_article_btn > span {
  font-size: 22px;
  display: block;
}

.tp_content_area .tp_info_article_btn > span:after {
  content: '';
  width: 10px;
  height: 17px;
  margin-left: 10px;
  display: inline-block;
  background: url("../images/arrow_r.png") no-repeat 0% 0%;
  background-size: 10px 17px;
}

@media screen and (max-width: 999px) {
  .tp_content_area .tp_info_article_btn {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 414px) {
  .tp_content_area .tp_info_article_btn {
    width: 100%;
  }
}
.tp_content_area .tp_info_lineup {
  text-align: right;
  font-size: 16px;
  margin-top: 25px;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_info_lineup {
    font-size: 14px;
  }
}
.tp_content_area .tp_info_lineup_pagetop {
  margin-top: 0px;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_info_lineup_pagetop {
    margin-bottom: 30px;
  }
}
.tp_content_area .tp_info_lineup_link {
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  opacity: 1;
  -webkit-transition: opacity 0.150s ease;
  transition: opacity 0.150s ease;
  -webkit-tap-highlight-color: transparent;
}

.tp_content_area .tp_info_lineup_link:hover {
  text-decoration: none;
  opacity: 0.7;
  -webkit-tap-highlight-color: transparent;
}

.tp_content_area .tp_info_lineup_link > span {
  border-bottom: 1px solid #222222;
  display: inline-block;
}

.tp_content_area .tp_info_lineup_link:after {
  content: '';
  width: 24px;
  height: 13px;
  margin-left: 8px;
  display: inline-block;
  background: url("../images/arrow_t.png") no-repeat 0% 0%;
  background-size: 24px 10px;
}

/*********************
CAMPAIGN
*********************/
.tp_content_area.tp_example {
  margin-top: 120px;
}

.tp_content_area .tp_example_balloon {
  position: relative;
  color: #31bcfb;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 34px;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-right: 80px;
  background: #ffffff;
  border: 3px solid #31bcfb;
  border-radius: 8px;
  z-index: 0;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_example_balloon {
    font-size: 14px;
    text-align: left;
    padding: 20px;
  }
}
.tp_content_area .tp_example_balloon:before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  margin-left: -32px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 24px 32px 0 32px;
  border-color: #ffffff transparent transparent transparent;
  z-index: 0;
}

.tp_content_area .tp_example_balloon:after {
  content: "";
  position: absolute;
  bottom: -28px;
  left: 50%;
  margin-left: -34px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 26px 34px 0 34px;
  border-color: #31bcfb transparent transparent transparent;
  z-index: -1;
}

@media screen and (max-width: 999px) {
  .tp_content_area .tp_example_balloon {
    max-width: 960px;
    width: 96%;
    margin-left: auto;
    margin-right: auto;
  }
}
.tp_content_area .tp_example_balloon_img {
  position: absolute;
  right: 80px;
  bottom: -1px;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_example_balloon_img {
    width: 48px;
    right: 30px;
  }
}
.tp_content_area .tp_example_balloon_br_sp {
  display: none;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_example_balloon_br_sp {
    display: inline;
  }
}
.tp_content_area .tp_example_wrap {
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  background-color: #d7f3ff;
  border-radius: 20px;
}

@media screen and (max-width: 999px) {
  .tp_content_area .tp_example_wrap {
    max-width: 960px;
    width: 96%;
  }
}
.tp_content_area .tp_example_inner {
  padding: 50px;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_example_inner {
    padding: 10px;
  }
}
.tp_content_area .tp_example_article {
  position: relative;
  background: #ffffff;
  margin-top: 12px;
  padding-left: 45px;
  padding-right: 280px;
  padding-top: 36px;
  padding-bottom: 35px;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_example_article {
    padding: 10px;
  }
}
.tp_content_area .tp_example_article:first-child {
  margin-top: 0px;
}

.tp_content_area .tp_example_article_name {
  font-size: 24px;
  font-weight: normal;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_example_article_name {
    font-size: 20px;
  }
}
.tp_content_area .tp_example_article_name.tp_example_article_split {
  font-size: 18px;
}

.tp_content_area .tp_example_article_conditions {
  font-size: 20px;
  font-weight: bold;
  margin-left: 1.5em;
  margin-top: 16px;
  display: inline-block;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_example_article_conditions {
    font-size: 14px;
    margin-top: 10px;
    margin-left: 0px;
    display: block;
  }
}
.tp_content_area .tp_example_article_conditions_l, .tp_content_area .tp_example_article_conditions_r {
  display: inline-block;
}

.tp_content_area .tp_example_article h3 + .tp_example_article_conditions {
  margin-left: 0;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_example_article h3 + .tp_example_article_conditions {
    margin-top: 0px;
  }
}
.tp_content_area .tp_example_article_price {
  color: #ffffff;
  margin-top: 5px;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 8px;
  padding-bottom: 10px;
  border-radius: 6px;
  background: url("./../images/example_white.png") no-repeat 0px 0px;
  background-size: 366px auto;
  background-color: #0372a4;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_example_article_price {
    padding: 10px;
    background: #0372a4;
  }
}
.tp_content_area .tp_example_article_price_inner {
  font-weight: bold;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_example_article_price_inner_box {
    margin-top: 10px;
  }

  .tp_content_area .tp_example_article_price_inner_box:first-child {
    margin-top: 0px;
  }
}
.tp_content_area .tp_example_article_price_note {
  font-size: 18px;
  padding-top: 8px;
  float: left;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_example_article_price_note {
    font-size: 14px;
    padding-top: 0px;
    width: 100%;
  }
}
.tp_content_area .tp_example_article_price_num {
  font-size: 26px;
  float: right;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_example_article_price_num {
    font-size: 18px;
  }
}
.tp_content_area .tp_example_article_img {
  position: absolute;
  right: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_example_article_img {
    width: 90px;
    top: 90px;
    right: 20px;
  }
}
.tp_content_area .tp_example_article_img.tp_example_article_split {
  top: 0;
  -webkit-transform: none;
  transform: none;
}

.tp_content_area .tp_example_article_comment {
  font-size: 18px;
  margin-top: 14px;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_example_article_comment {
    font-size: 14px;
  }
}
.tp_content_area .tp_example_article_split {
  position: relative;
  background: #ffffff;
  width: 49%;
  margin-top: 12px;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 36px;
  padding-bottom: 35px;
  float: right;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_example_article_split {
    padding: 10px;
  }
}
.tp_content_area .tp_example_article_split:first-child {
  float: left;
}

@media screen and (max-width: 999px) {
  .tp_content_area .tp_example_article_split {
    width: 100%;
    float: none;
  }

  .tp_content_area .tp_example_article_split:first-child {
    float: none;
  }
}
.tp_content_area .tp_example_article_split_name {
  font-size: 18px;
  font-weight: normal;
  width: 55%;
  padding-bottom: 1em;
  border-bottom: 3px dotted #31bcfb;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_example_article_split_name {
    font-size: 20px;
    width: 100%;
    border: none;
  }
}
.tp_content_area .tp_example_article_split_conditions {
  font-size: 18px;
  font-weight: bold;
  width: 38%;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_example_article_split_conditions {
    font-size: 14px;
    width: 90px;
  }
}
.tp_content_area .tp_example_article_split_conditions_l, .tp_content_area .tp_example_article_split_conditions_r {
  display: inline-block;
}

.tp_content_area .tp_example_article_split_conditions_l {
  float: left;
}

.tp_content_area .tp_example_article_split_conditions_r {
  float: right;
}

.tp_content_area .tp_example_article_split h3 + .tp_example_article_split_conditions {
  margin-left: 0;
  margin-top: 18px;
}

.tp_content_area .tp_example_article_split_price {
  color: #ffffff;
  margin-top: 30px;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 8px;
  padding-bottom: 10px;
  border-radius: 6px;
  background: url("./../images/example_white_s.png") no-repeat 0px 0px;
  background-size: 258px auto;
  background-color: #0372a4;
}

.tp_content_area .tp_example_article_split_price_inner {
  font-weight: bold;
}

.tp_content_area .tp_example_article_split_price_box {
  margin-top: 10px;
}

.tp_content_area .tp_example_article_split_price_box:first-child {
  margin-top: 0;
}

.tp_content_area .tp_example_article_split_price_note {
  font-size: 16px;
  float: left;
  display: inline-block;
}

.tp_content_area .tp_example_article_split_price_note.tp_t {
  padding-top: 9px;
}

.tp_content_area .tp_example_article_split_price_num {
  font-size: 24px;
  float: right;
  display: inline-block;
}

.tp_content_area .tp_example_article_split_price_num.tp_b {
  padding-top: 14px;
}

.tp_content_area .tp_example_article_split_img {
  position: absolute;
  right: 20px;
  top: 0;
  -webkit-transform: none;
  transform: none;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_example_article_split_img {
    width: 90px;
  }
}
/*********************
CONSULT
*********************/
.tp_unyou_preparation {
  border-top: 1px solid #cccccc;
}

@media screen and (max-width: 667px) {
  .tp_unyou_preparation {
    border-top: none;
  }
}
.tp_unyou_preparation .tp_unyou_preparation_graph {
  width: 960px;
}

.tp_unyou_preparation .tp_unyou_preparation_graph_wrap {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow-x: auto;
}

@media screen and (max-width: 999px) {
  .tp_unyou_preparation .tp_unyou_preparation_graph_wrap {
    width: 96%;
  }
}
.tp_unyou_preparation .tp_unyou_preparation_graph_wrap::-webkit-scrollbar {
  width: 5px;
  background: #f5f5f5;
  border-radius: 3px;
  overflow: hidden;
}

.tp_unyou_preparation .tp_unyou_preparation_graph_wrap::-webkit-scrollbar:horizontal {
  height: 5px;
  border-radius: 3px;
}

.tp_unyou_preparation .tp_unyou_preparation_graph_wrap::-webkit-scrollbar-corner, .tp_unyou_preparation .tp_unyou_preparation_graph_wrap::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 3px;
  overflow: hidden;
}

.tp_unyou_preparation .tp_unyou_preparation_graph_heading {
  margin-top: 15px;
}

.tp_unyou_preparation .tp_unyou_preparation_graph_heading_blank {
  height: 80px;
  width: 195px;
  border-top: 1px solid #e1e1e1;
  border-left: 1px solid #e1e1e1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  background: url(../images/unyou_graph_line.png) no-repeat 50% 50%;
}

.tp_unyou_preparation .tp_unyou_preparation_graph_heading_rate {
  height: 80px;
  width: 765px;
  float: right;
}

.tp_unyou_preparation .tp_unyou_preparation_graph_heading_rate_title {
  font-size: 18px;
  line-height: 1em;
  color: #ffffff;
  text-align: center;
  width: 100%;
  height: 48px;
  padding-top: 15px;
  background-color: #46a2cb;
  border-top: 1px solid #e1e1e1;
  border-right: 1px solid #e1e1e1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.tp_unyou_preparation .tp_unyou_preparation_graph_heading_rate_article {
  font-size: 14px;
  line-height: 1em;
  text-align: center;
  float: left;
  width: 255px;
  height: 32px;
  padding-top: 9px;
  border-right: 1px solid #e1e1e1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.tp_unyou_preparation .tp_unyou_preparation_graph_heading_rate_article:first-child {
  border-left: 1px solid #e1e1e1;
}

.tp_unyou_preparation .tp_unyou_preparation_graph_heading_rate_article_color_l {
  background-color: #e2cfe6;
}

.tp_unyou_preparation .tp_unyou_preparation_graph_heading_rate_article_color_c {
  background-color: #caa1d3;
}

.tp_unyou_preparation .tp_unyou_preparation_graph_heading_rate_article_color_r {
  background-color: #ffe591;
}

.tp_unyou_preparation .tp_unyou_preparation_graph_leading_period {
  width: 195px;
  float: left;
  border-bottom: 1px solid #e1e1e1;
}

.tp_unyou_preparation .tp_unyou_preparation_graph_leading_period_title {
  position: absolute;
  line-height: 1.8em;
  top: 0%;
  left: 0%;
  right: 0%;
  bottom: 0%;
  width: 1em;
  height: 107px;
  margin: auto;
}

.tp_unyou_preparation .tp_unyou_preparation_graph_leading_period_title_box {
  position: relative;
  width: 97px;
  height: 224px;
  border-top: 1px solid #e1e1e1;
  border-left: 1px solid #e1e1e1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
}

.tp_unyou_preparation .tp_unyou_preparation_graph_leading_period_title_vertically {
  font-size: 18px;
  width: 1em;
  display: block;
}

.tp_unyou_preparation .tp_unyou_preparation_graph_leading_period_year {
  float: left;
}

.tp_unyou_preparation .tp_unyou_preparation_graph_leading_period_year_article {
  font-size: 14px;
  line-height: 1em;
  text-align: center;
  width: 98px;
  height: 32px;
  padding-top: 9px;
  border-top: 1px solid #e1e1e1;
  border-left: 1px solid #e1e1e1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.tp_unyou_preparation .tp_unyou_preparation_graph_leading_period_year_article_color_l {
  background-color: #e2cfe6;
}

.tp_unyou_preparation .tp_unyou_preparation_graph_leading_period_year_article_color_c {
  background-color: #caa1d3;
}

.tp_unyou_preparation .tp_unyou_preparation_graph_leading_period_year_article_color_r {
  background-color: #ffe591;
}

.tp_unyou_preparation .tp_unyou_preparation_graph_leading_rate {
  height: 224px;
  width: 765px;
  float: right;
  border-top: 1px solid #e1e1e1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.tp_unyou_preparation .tp_unyou_preparation_graph_leading_rate_article {
  font-size: 14px;
  line-height: 1em;
  text-align: center;
  float: left;
  width: 255px;
  height: 32px;
  padding-top: 9px;
  border-right: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.tp_unyou_preparation .tp_unyou_preparation_graph_leading_rate_article:first-child {
  border-left: 1px solid #e1e1e1;
}

.tp_unyou_preparation .tp_unyou_preparation_graph_leading_rate_article_color_l {
  background-color: #e2cfe6;
}

.tp_unyou_preparation .tp_unyou_preparation_graph_leading_rate_article_color_c {
  background-color: #caa1d3;
}

.tp_unyou_preparation .tp_unyou_preparation_graph_leading_rate_article_color_r {
  background-color: #ffe591;
  border-right: 1px solid #e1e1e1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.tp_unyou_preparation .tp_unyou_preparation_graph_leading_rate_article_box {
  text-align: right;
  width: 80px;
  margin-left: auto;
  margin-right: auto;
}

.tp_unyou_preparation .tp_unyou_preparation_graph_note {
  font-size: 10px;
  margin-top: 15px;
  max-width: 960px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 999px) {
  .tp_unyou_preparation .tp_unyou_preparation_graph_note {
    width: 96%;
  }
}
.tp_unyou_preparation .tp_unyou_preparation_graph_note_l {
  letter-spacing: -0.05em;
  float: left;
}

@media screen and (max-width: 999px) {
  .tp_unyou_preparation .tp_unyou_preparation_graph_note_l {
    float: none;
  }
}
.tp_unyou_preparation .tp_unyou_preparation_graph_note_r {
  letter-spacing: -0.05em;
  float: right;
}

@media screen and (max-width: 999px) {
  .tp_unyou_preparation .tp_unyou_preparation_graph_note_r {
    float: none;
  }
}
.tp_unyou_preparation .tp_unyou_preparation_graph_note_c {
  font-size: 12px;
  text-align: center;
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 5px;
}

@media screen and (max-width: 999px) {
  .tp_unyou_preparation .tp_unyou_preparation_graph_note_c {
    text-align: left;
  }
}
.tp_unyou_preparation .tp_unyou_preparation_image {
  text-align: center;
  margin-top: 40px;
  max-width: 960px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 999px) {
  .tp_unyou_preparation .tp_unyou_preparation_image {
    width: 96%;
  }
}
.tp_unyou_preparation .tp_unyou_preparation_image_title {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.35em;
}

@media screen and (max-width: 999px) {
  .tp_unyou_preparation .tp_unyou_preparation_image_title {
    margin-top: 10px;
  }
}
@media screen and (max-width: 667px) {
  .tp_unyou_preparation .tp_unyou_preparation_image_title {
    font-size: 26px;
  }
}
.tp_unyou_preparation .tp_unyou_preparation_image_sub {
  font-size: 24px;
  line-height: 1.5em;
}

@media screen and (max-width: 667px) {
  .tp_unyou_preparation .tp_unyou_preparation_image_sub {
    font-size: 20px;
  }
}
.tp_unyou_preparation .tp_unyou_preparation_image_arrow {
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 999px) {
  .tp_unyou_preparation .tp_unyou_preparation_image_arrow {
    margin-bottom: 20px;
  }
}
.tp_unyou_preparation .tp_unyou_preparation_image_arrow_size {
  width: 68px;
}

.tp_unyou_preparation .tp_unyou_preparation_image_graph {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.tp_unyou_preparation .tp_unyou_preparation_image_graph .tp_content_image_btn {
  top: -15px;
  right: 5px;
}

.tp_unyou_preparation .tp_content_heading_title {
  margin-top: 40px;
}

@media screen and (max-width: 667px) {
  .tp_unyou_preparation .tp_content_heading_title {
    margin-top: 20px;
  }
}
/*********************
CONSULT
*********************/
.tp_unyou_risk .tp_unyou_risk_box_wrap {
  max-width: 960px;
  width: 100%;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 999px) {
  .tp_unyou_risk .tp_unyou_risk_box_wrap {
    width: 96%;
  }
}
.tp_unyou_risk .tp_unyou_risk_box_title {
  font-size: 18px;
  font-weight: bold;
  background-color: #97d4ef;
  line-height: 1.3em;
  width: 100%;
  padding-top: 11px;
  padding-bottom: 10px;
}

@media all and (-ms-high-contrast: none) {
  .tp_unyou_risk .tp_unyou_risk_box_title {
    padding-top: 15px;
    display: block;
  }
}
.tp_unyou_risk .tp_unyou_risk_box_title_inner {
  width: 240px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 999px) {
  .tp_unyou_risk .tp_unyou_risk_box_title_inner {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 667px) {
  .tp_unyou_risk .tp_unyou_risk_box_title_inner {
    width: 240px;
    text-align: left;
  }
}
.tp_unyou_risk .tp_unyou_risk_box_title_inner_blank {
  margin-left: -8px;
}

.tp_unyou_risk .tp_unyou_risk_box_text {
  font-size: 14px;
  letter-spacing: -0.05em;
  height: 277px;
  padding: 20px;
  border: 2px solid #97d4ef;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

@media screen and (max-width: 999px) {
  .tp_unyou_risk .tp_unyou_risk_box_text {
    height: auto;
  }
}
.tp_unyou_risk .tp_unyou_risk_box_text_bold {
  font-size: 16px;
  font-weight: bold;
}

.tp_unyou_risk .tp_unyou_risk_box_r {
  float: left;
  width: 33.333%;
  padding-right: 25px;
  display: block;
}

@media screen and (max-width: 999px) {
  .tp_unyou_risk .tp_unyou_risk_box_r {
    float: none;
    width: 100%;
    padding-right: 0px;
  }
}
.tp_unyou_risk .tp_unyou_risk_box_l {
  float: left;
  width: 33.333%;
  padding-left: 25px;
  display: block;
}

@media screen and (max-width: 999px) {
  .tp_unyou_risk .tp_unyou_risk_box_l {
    float: none;
    width: 100%;
    padding-left: 0px;
    margin-top: 20px;
  }
}
.tp_unyou_risk .tp_unyou_risk_box_c {
  float: left;
  width: 33.333%;
  padding-left: 15px;
  padding-right: 15px;
  display: block;
}

@media screen and (max-width: 999px) {
  .tp_unyou_risk .tp_unyou_risk_box_c {
    float: none;
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
    margin-top: 20px;
  }
}
.tp_unyou_risk .tp_unyou_risk_box_arrow {
  line-height: 0em;
  position: absolute;
  right: 0px;
  bottom: 0px;
}

.tp_unyou_risk .tp_unyou_risk_box_arrow_size {
  width: 52px;
}

/*********************
CONSULT
*********************/
.tp_unyou_control .tp_unyou_control_title {
  margin-top: 60px;
}

.tp_unyou_control .tp_unyou_control_title_main {
  font-size: 22px;
  color: #ffffff;
  line-height: 1.2em;
  width: 100%;
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
  background-color: #0372a4;
}

@media all and (-ms-high-contrast: none) {
  .tp_unyou_control .tp_unyou_control_title_main {
    padding-top: 14px;
    padding-bottom: 6px;
    display: block;
  }
}
@media screen and (max-width: 999px) {
  .tp_unyou_control .tp_unyou_control_title_main {
    text-align: center;
  }
}
@media screen and (max-width: 667px) {
  .tp_unyou_control .tp_unyou_control_title_main {
    font-size: 18px;
    line-height: 1.4em;
  }
}
.tp_unyou_control .tp_unyou_control_title_text {
  font-size: 16px;
  max-width: 960px;
  width: 100%;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 999px) {
  .tp_unyou_control .tp_unyou_control_title_text {
    width: 96%;
  }
}
@media screen and (max-width: 667px) {
  .tp_unyou_control .tp_unyou_control_title_text {
    font-size: 14px;
  }
}
.tp_unyou_control .tp_unyou_control_graph {
  margin-top: 15px;
  max-width: 960px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 999px) {
  .tp_unyou_control .tp_unyou_control_graph {
    width: 96%;
  }
}
.tp_unyou_control .tp_unyou_control_graph_title {
  position: absolute;
  width: 185px;
  height: 100%;
  left: 0px;
}

@media screen and (max-width: 999px) {
  .tp_unyou_control .tp_unyou_control_graph_title {
    width: 100%;
    height: 50px;
    left: 0px;
    top: 0px;
  }
}
.tp_unyou_control .tp_unyou_control_graph_title_01 {
  background: url(../images/unyou_risk_text_01.png) no-repeat 50% 50%;
  background-size: 80px 20px;
}

.tp_unyou_control .tp_unyou_control_graph_title_02 {
  background: url(../images/unyou_risk_text_02.png) no-repeat 50% 50%;
  background-size: 80px 20px;
}

.tp_unyou_control .tp_unyou_control_graph_title_03 {
  background: url(../images/unyou_risk_text_03.png) no-repeat 50% 50%;
  background-size: 80px 20px;
}

.tp_unyou_control .tp_unyou_control_graph_back {
  position: relative;
}

.tp_unyou_control .tp_unyou_control_graph_back_color_01 {
  background-color: #fea3b6;
}

.tp_unyou_control .tp_unyou_control_graph_back_color_02 {
  background-color: #46a2cb;
}

.tp_unyou_control .tp_unyou_control_graph_back_color_03 {
  background-color: #caa1d3;
}

.tp_unyou_control .tp_unyou_control_graph_box {
  height: 100%;
  padding-left: 185px;
  border-top: 1px solid #e1e1e1;
  border-left: 1px solid #e1e1e1;
  border-right: 1px solid #e1e1e1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 999px) {
  .tp_unyou_control .tp_unyou_control_graph_box {
    padding-top: 50px;
    padding-left: 0px;
  }
}
.tp_unyou_control .tp_unyou_control_graph_box_last {
  border-bottom: 1px solid #e1e1e1;
}

.tp_unyou_control .tp_unyou_control_graph_box_text {
  font-size: 14px;
  letter-spacing: -0.05em;
  padding: 20px;
  position: relative;
  border-left: 1px solid #e1e1e1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.tp_unyou_control .tp_unyou_control_graph_box_text_bold {
  font-size: 16px;
  font-weight: bold;
}

.tp_unyou_control .tp_unyou_control_graph_box_color_01 {
  background-color: #fff2f7;
}

.tp_unyou_control .tp_unyou_control_graph_box_color_02 {
  background-color: #d8f2fd;
}

.tp_unyou_control .tp_unyou_control_graph_box_color_03 {
  background-color: #e2cfe6;
}

/*********************
CONSULT
*********************/
.tp_unyou_return .tp_unyou_return_image {
  margin-top: 30px;
  max-width: 960px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (max-width: 999px) {
  .tp_unyou_return .tp_unyou_return_image {
    width: 96%;
  }
}
.tp_unyou_return .tp_unyou_return_image .tp_content_image_pc,
.tp_unyou_return .tp_unyou_return_image .tp_content_image_sp {
  margin-left: auto;
  margin-right: auto;
}

.tp_unyou_return .tp_unyou_return_image .tp_content_image_btn {
  top: -22px;
  right: 5px;
}

.tp_unyou_return .tp_unyou_return_product_title {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  line-height: 1.35em;
  margin-top: 120px;
}

@media screen and (max-width: 667px) {
  .tp_unyou_return .tp_unyou_return_product_title {
    margin-top: 60px;
    font-size: 26px;
  }
}
.tp_unyou_return .tp_unyou_return_product_box {
  max-width: 900px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 999px) {
  .tp_unyou_return .tp_unyou_return_product_box {
    width: 96%;
    padding-top: 25px;
    padding-left: 20px;
    padding-right: 18px;
    padding-bottom: 20px;
  }
}
.tp_unyou_return .tp_unyou_return_product_box_01 {
  border: 2px solid #fd7897;
  border-radius: 10px;
}

.tp_unyou_return .tp_unyou_return_product_box_02 {
  border: 2px solid #0372a4;
  border-radius: 10px;
}

.tp_unyou_return .tp_unyou_return_product_box_title {
  font-size: 18px;
  font-weight: bold;
  padding-left: 0px;
  vertical-align: bottom;
  display: inline-block;
}

@media screen and (max-width: 667px) {
  .tp_unyou_return .tp_unyou_return_product_box_title {
    float: left;
    width: 100%;
    padding-left: 40px;
    margin-left: -35px;
  }
}
.tp_unyou_return .tp_unyou_return_product_box_title_bold {
  font-size: 24px;
  color: #fd7897;
}

.tp_unyou_return .tp_unyou_return_product_box_title_bold_blue {
  font-size: 24px;
  color: #0372a4;
}

.tp_unyou_return .tp_unyou_return_product_box_title_no_01 {
  vertical-align: bottom;
  display: inline-block;
}

@media screen and (max-width: 667px) {
  .tp_unyou_return .tp_unyou_return_product_box_title_no_01 {
    float: left;
  }
}
.tp_unyou_return .tp_unyou_return_product_box_title_no_02 {
  vertical-align: bottom;
  display: inline-block;
}

@media screen and (max-width: 667px) {
  .tp_unyou_return .tp_unyou_return_product_box_title_no_02 {
    float: left;
  }
}
.tp_unyou_return .tp_unyou_return_product_box_title_no_size {
  width: 33px;
}

@media screen and (max-width: 667px) {
  .tp_unyou_return .tp_unyou_return_product_box_wrap {
    float: left;
  }
}
.tp_unyou_return .tp_unyou_return_product_box_text {
  font-size: 16px;
  line-height: 1.6em;
  position: relative;
  margin-top: 10px;
}

@media screen and (max-width: 667px) {
  .tp_unyou_return .tp_unyou_return_product_box_text {
    font-size: 14px;
    float: left;
  }
}
.tp_unyou_return .tp_unyou_return_product_box_text_list {
  position: absolute;
  width: 1em;
}

.tp_unyou_return .tp_unyou_return_product_box_text_block {
  display: inline-block;
  padding-left: 1em;
}

.tp_unyou_return .tp_unyou_return_product_box_main {
  font-size: 18px;
  font-weight: bold;
  color: #0372a4;
  margin-top: 30px;
}

.tp_unyou_return .tp_unyou_return_product_box_point {
  background-color: #f8f8f8;
  border-radius: 10px;
  margin-top: 30px;
  padding: 20px 25px;
}

@media screen and (max-width: 667px) {
  .tp_unyou_return .tp_unyou_return_product_box_point {
    float: left;
  }
}
.tp_unyou_return .tp_unyou_return_product_box_point_title {
  font-size: 16px;
  font-weight: bold;
}

.tp_unyou_return .tp_unyou_return_product_box_point_text {
  font-size: 13px;
  margin-top: 1em;
}

/*********************
CONSULT
*********************/
@media screen and (max-width: 667px) {
  .tp_unyou_lineup + .tp_content_area .tp_info_lineup {
    margin-bottom: 10px;
  }
}
/*********************
TESUURYOU
*********************/
.tp_content_area.tp_tesuuryou {
  border-top: 1px solid #cccccc;
}

@media screen and (max-width: 667px) {
  .tp_content_area.tp_tesuuryou {
    border-top: none;
  }
}
@media screen and (max-width: 667px) {
  .tp_content_area.tp_tesuuryou .tp_content_main_text {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
  }
}
.tp_content_area.tp_tesuuryou .tp_content_table {
  margin-top: 10px;
}

@media screen and (max-width: 667px) {
  .tp_content_area.tp_tesuuryou + .tp_content_area .tp_info_lineup {
    margin-bottom: 10px;
  }
}
.tp_content_area .tp_tesuuryou {
  /*basic_area*/
  /*procedures_area*/
  /*banner_area*/
}

.tp_content_area .tp_tesuuryou_lead {
  font-size: 16px;
  margin-top: 35px;
}

@media screen and (max-width: 999px) {
  .tp_content_area .tp_tesuuryou_lead {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 667px) {
  .tp_content_area .tp_tesuuryou_lead {
    font-size: 14px;
    margin-top: 20px;
  }
}
.tp_content_area .tp_tesuuryou_lead_note {
  font-size: 14px;
  margin-top: 1em;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_tesuuryou_lead_note {
    font-size: 13px;
  }
}
.tp_content_area .tp_tesuuryou_sub_title {
  font-size: 22px;
  color: #ffffff;
  line-height: 1em;
  width: 100%;
  height: 46px;
  padding-top: 12px;
  padding-left: 20px;
  background-color: #0372a4;
}

.tp_content_area .tp_tesuuryou_basic_area {
  margin-top: 35px;
}

.tp_content_area .tp_tesuuryou_procedures_area {
  margin-top: 35px;
}

.tp_content_area .tp_tesuuryou_banner_area {
  width: 100%;
  max-width: 770px;
  margin: 40px auto 0px auto;
}

@media screen and (max-width: 999px) {
  .tp_content_area .tp_tesuuryou_banner_area {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
  }
}
.tp_content_area .tp_tesuuryou_banner_area > a {
  text-decoration: none;
  opacity: 1;
  -webkit-transition: opacity 0.150s ease;
  transition: opacity 0.150s ease;
  -webkit-tap-highlight-color: transparent;
}

.tp_content_area .tp_tesuuryou_banner_area > a:hover {
  text-decoration: none;
  opacity: 0.7;
  -webkit-tap-highlight-color: transparent;
}

.tp_content_area .tp_info_area {
  margin-top: 30px;
}

@media screen and (max-width: 999px) {
  .tp_content_area .tp_info_area {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
  }
}
.tp_content_area .tp_info_section {
  float: right;
  width: 49%;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_info_section {
    float: none;
    width: 100%;
  }
}
.tp_content_area .tp_info_section:first-child {
  float: left;
}

@media screen and (max-width: 667px) {
  .tp_content_area .tp_info_section:first-child {
    float: none;
  }
}
.tp_content_area .tp_info_box {
  color: #737474;
  font-size: 12px;
}

.tp_content_area .tp_info_box_detail {
  text-indent: -2.5em;
  padding-left: 2.5em;
}

.tp_content_area .tp_info_box.tp_num {
  padding-left: 2em;
}

/*********************
SCROLL VISIBLE STYLES
*********************/
.tp_sv_fade {
  opacity: 0;
  -webkit-transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tp_sv_fade.tp_sv_cur {
  opacity: 1;
}

.tp_sv_b {
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
  opacity: 0;
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tp_sv_b.tp_sv_cur {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}

.tp_sv_l {
  -webkit-transform: translateX(-5%);
  transform: translateX(-5%);
  opacity: 0;
  -webkit-transition: -webkit-transform 2s cubic-bezier(0, 1, 0.15, 1), opacity 2s cubic-bezier(0, 1, 0.15, 1);
  -webkit-transition: opacity 2s cubic-bezier(0, 1, 0.15, 1), -webkit-transform 2s cubic-bezier(0, 1, 0.15, 1);
  transition: opacity 2s cubic-bezier(0, 1, 0.15, 1), -webkit-transform 2s cubic-bezier(0, 1, 0.15, 1);
  transition: transform 2s cubic-bezier(0, 1, 0.15, 1), opacity 2s cubic-bezier(0, 1, 0.15, 1);
  transition: transform 2s cubic-bezier(0, 1, 0.15, 1), opacity 2s cubic-bezier(0, 1, 0.15, 1), -webkit-transform 2s cubic-bezier(0, 1, 0.15, 1);
}

.tp_sv_l.tp_sv_cur {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  opacity: 1;
}

.tp_sv_balloon_l {
  -webkit-transform: translateX(-5%);
  transform: translateX(-5%);
  opacity: 0;
  -webkit-transition: -webkit-transform 2s cubic-bezier(0, 1, 0.15, 1), opacity 2s cubic-bezier(0, 1, 0.15, 1);
  -webkit-transition: opacity 2s cubic-bezier(0, 1, 0.15, 1), -webkit-transform 2s cubic-bezier(0, 1, 0.15, 1);
  transition: opacity 2s cubic-bezier(0, 1, 0.15, 1), -webkit-transform 2s cubic-bezier(0, 1, 0.15, 1);
  transition: transform 2s cubic-bezier(0, 1, 0.15, 1), opacity 2s cubic-bezier(0, 1, 0.15, 1);
  transition: transform 2s cubic-bezier(0, 1, 0.15, 1), opacity 2s cubic-bezier(0, 1, 0.15, 1), -webkit-transform 2s cubic-bezier(0, 1, 0.15, 1);
}

.tp_sv_balloon_l.tp_sv_cur {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
}

.tp_sv_balloon_r {
  -webkit-transform: translateX(5%);
  transform: translateX(5%);
  opacity: 0;
  -webkit-transition: -webkit-transform 2s cubic-bezier(0, 1, 0.15, 1), opacity 2s cubic-bezier(0, 1, 0.15, 1);
  -webkit-transition: opacity 2s cubic-bezier(0, 1, 0.15, 1), -webkit-transform 2s cubic-bezier(0, 1, 0.15, 1);
  transition: opacity 2s cubic-bezier(0, 1, 0.15, 1), -webkit-transform 2s cubic-bezier(0, 1, 0.15, 1);
  transition: transform 2s cubic-bezier(0, 1, 0.15, 1), opacity 2s cubic-bezier(0, 1, 0.15, 1);
  transition: transform 2s cubic-bezier(0, 1, 0.15, 1), opacity 2s cubic-bezier(0, 1, 0.15, 1), -webkit-transform 2s cubic-bezier(0, 1, 0.15, 1);
}

.tp_sv_balloon_r.tp_sv_cur {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
}

.tp_sv_glaph_r {
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: -webkit-transform 2s cubic-bezier(0, 1, 0.15, 1), opacity 2s cubic-bezier(0, 1, 0.15, 1);
  -webkit-transition: opacity 2s cubic-bezier(0, 1, 0.15, 1), -webkit-transform 2s cubic-bezier(0, 1, 0.15, 1);
  transition: opacity 2s cubic-bezier(0, 1, 0.15, 1), -webkit-transform 2s cubic-bezier(0, 1, 0.15, 1);
  transition: transform 2s cubic-bezier(0, 1, 0.15, 1), opacity 2s cubic-bezier(0, 1, 0.15, 1);
  transition: transform 2s cubic-bezier(0, 1, 0.15, 1), opacity 2s cubic-bezier(0, 1, 0.15, 1), -webkit-transform 2s cubic-bezier(0, 1, 0.15, 1);
}

.tp_sv_glaph_r.tp_sv_cur {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.tp_sv_ll {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
  -webkit-transition: -webkit-transform 0.9s cubic-bezier(0, 1, 0.15, 1), opacity 0.9s cubic-bezier(0, 1, 0.15, 1);
  -webkit-transition: opacity 0.9s cubic-bezier(0, 1, 0.15, 1), -webkit-transform 0.9s cubic-bezier(0, 1, 0.15, 1);
  transition: opacity 0.9s cubic-bezier(0, 1, 0.15, 1), -webkit-transform 0.9s cubic-bezier(0, 1, 0.15, 1);
  transition: transform 0.9s cubic-bezier(0, 1, 0.15, 1), opacity 0.9s cubic-bezier(0, 1, 0.15, 1);
  transition: transform 0.9s cubic-bezier(0, 1, 0.15, 1), opacity 0.9s cubic-bezier(0, 1, 0.15, 1), -webkit-transform 0.9s cubic-bezier(0, 1, 0.15, 1);
}

.tp_sv_ll.tp_sv_cur {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
}

.tp_sv_parallax_y {
  -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: block;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*********************
DATTAI
*********************/
.tp_dattai_intro .tp_content_heading_title {
  margin-top: 40px;
}

/*********************
HEADER
*********************/
.tp_header {
  position: relative;
  width: 100%;
  min-width: 320px;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .tp_header {
    height: 48px;
    width: 100%;
    top: 0px;
    left: 0px;
    margin-top: 0px;
    background: #ffffff;
    border-bottom: 2px solid #072e62;
    z-index: 201;
  }
}
.tp_header_inner {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 3px solid #0372a4;
}

@media screen and (max-width: 767px) {
  .tp_header_inner {
    height: 44px;
    border-bottom: none;
  }
}
.tp_header .tp_logo_wrap {
  float: left;
  width: auto;
  margin-left: 5px;
}

@media screen and (max-width: 767px) {
  .tp_header .tp_logo_wrap {
    margin-top: 5px;
    margin-bottom: 0px;
  }
}
.tp_header .tp_logo_wrap > a {
  margin-bottom: 5px;
  display: block;
  text-decoration: none;
  opacity: 1;
  -webkit-transition: opacity 0.150s ease;
  transition: opacity 0.150s ease;
  -webkit-tap-highlight-color: transparent;
}

.tp_header .tp_logo_wrap > a:hover {
  text-decoration: none;
  opacity: 0.7;
  -webkit-tap-highlight-color: transparent;
}

@media screen and (max-width: 767px) {
  .tp_header .tp_logo_wrap > a {
    margin-bottom: 0px;
  }
}
.tp_header .tp_logo_wrap > a > img {
  width: 120px;
  display: block;
}

@media screen and (max-width: 767px) {
  .tp_header .tp_logo_wrap > a > img {
    width: 104px;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .tp_header .tp_logo_wrap_inner {
    padding: 0px 0px 0px 0px;
  }
}
.tp_header .tp_header_tel {
  display: none;
}

@media screen and (max-width: 767px) {
  .tp_header .tp_header_tel {
    float: right;
    background: none;
    margin-right: 5px;
    padding: 0px;
    display: block;
  }

  .tp_header .tp_header_tel > a {
    width: 150px;
    margin-top: 8px;
    margin-right: 5px;
    display: block;
  }
}
.tp_header_menu_mask {
  position: fixed;
  width: 150%;
  height: 150%;
  top: 0px;
  left: 0px;
  background: #ffffff;
  z-index: 200;
  opacity: 0.7;
  display: none;
}

@media screen and (min-width: 768px) {
  .tp_header_menu_mask {
    display: none !important;
  }
}
.tp_header_menu_open {
  display: none;
}

@media screen and (max-width: 767px) {
  .tp_header_menu_open {
    float: right;
    height: 48px;
    padding: 8px 12px;
    border-left: 1px solid #000000;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    cursor: pointer;
  }

  .tp_header_menu_open > img {
    width: 20px;
  }
}
.tp_header_menu_open.tp_cur .tp_header_menu_open_icon {
  display: none;
}

.tp_header_menu_open.tp_cur .tp_header_menu_close_icon {
  display: block;
}

.tp_header_menu_close_icon {
  display: none;
}

.tp_header_menu_wrap {
  position: absolute;
  bottom: 0px;
  right: 0px;
  background: #fff;
}

@media screen and (min-width: 768px) {
  .tp_header_menu_wrap {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .tp_header_menu_wrap {
    width: 100%;
    margin-top: 0px;
    top: 48px;
    background: #ffffff;
    display: none;
    z-index: 300;
  }
}
.tp_header_menu_inner {
  width: 100%;
  max-width: 960px;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .tp_header_menu_inner {
    padding: 0px;
    border-bottom: 1px solid #cccccc;
  }
}
.tp_header_menu_box {
  position: relative;
  float: left;
  margin-right: 2px;
}

.tp_header_menu_box:last-child {
  margin-right: 0px;
}

@media screen and (max-width: 767px) {
  .tp_header_menu_box {
    text-align: left;
    float: none;
    width: 100%;
    height: auto;
    border-top: 1px solid #e0e6ed;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .tp_header_menu_box:first-child {
    border-top: none;
  }
}
.tp_header_menu_box_list {
  color: #000000;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  min-width: 130px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 14px;
  padding-right: 14px;
  border-radius: 6px 6px 0px 0px;
  background: #eaeaea;
  display: block;
  -webkit-transition: all 0.150s ease;
  transition: all 0.150s ease;
}

@media screen and (max-width: 767px) {
  .tp_header_menu_box_list {
    font-size: 16px;
    text-align: left;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 30px;
    border-radius: 0px;
    background: #ffffff;
    display: block;
  }
}
.tp_header_menu_box_list:hover {
  color: #ffffff;
  text-decoration: none;
  background: #0372a4;
}

.tp_header_menu_box_list_cur {
  color: #ffffff;
  background: #0372a4;
}

@media screen and (max-width: 767px) {
  .tp_header_menu_box_list_cur {
    color: #072e62;
    font-weight: bold;
    background: #ffffff;
  }
}
@media screen and (max-width: 767px) {
  .tp_header_menu_box_list_cur:before {
    content: '';
    position: absolute;
    left: 10px;
    right: auto;
    bottom: 14px;
    width: 6px;
    height: 26px;
    margin: auto;
    border-radius: 0px;
    background: #072e62;
    display: block;
  }
}
/*********************
FOOTER
*********************/
.add_footer_responsive footer.global {
  font-family: ".HiraKakuInterface-W2", "メイリオ", "Meiryo", verdana, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  background: #505050;
  color: white;
  padding: 30px 20px 0;
  font-size: 93%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
}

@media only screen and (max-width: 640px) {
  .add_footer_responsive footer.global {
    margin: 0 -5px;
    margin-top: 30px;
  }
}
.add_footer_responsive footer.global a {
  color: white;
  font-size: 13px;
}

.add_footer_responsive footer.global .externalIcon {
  margin-left: 5px;
  margin-right: 0;
}

.add_footer_responsive footer.global ul.footerNav {
  margin: 0 0 20px;
}

.add_footer_responsive .body-pop footer.global ul.footerNav {
  display: none;
}

.add_footer_responsive footer.global ul.footerNav li {
  float: left;
  margin: 0 20px 10px 0;
  *margin-right: 20px;
  white-space: nowrap;
}

.add_footer_responsive footer.global ul.footerNav li a {
  display: inline-block;
  padding: 0 0 0 14px;
  background: url(../images/mark_02.png) no-repeat 0 0.5em;
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .add_footer_responsive footer.global ul.footerNav li a {
    background-image: url(../images/mark_02@2x.png);
    background-position: 0 .6em;
    -ms-background-size: 7px auto;
    background-size: 7px auto;
  }
}
.add_footer_responsive footer.global .trademark p {
  display: table-cell;
  vertical-align: middle;
  line-height: 1;
  *zoom: 1;
  *display: inline;
  font-size: 12px;
}

.add_footer_responsive footer.global .trademark .img {
  padding-right: 10px;
}

.add_footer_responsive footer.global .trademark .img img {
  vertical-align: middle;
}

@media only screen and (max-width: 640px) {
  .add_footer_responsive footer.global .trademark p {
    display: block;
    text-align: center;
    line-height: 1.5;
  }

  .add_footer_responsive footer.global .trademark .img {
    padding: 0 0 5px;
  }
}
.add_footer_responsive footer.global .copyright {
  margin: 30px -20px 0;
  padding: 20px;
  background: black;
  text-align: left;
}

@media only screen and (max-width: 640px) {
  .add_footer_responsive footer.global .copyright {
    text-align: center;
  }
}
.add_footer_responsive footer.global .copyright small {
  font-size: 12px;
}

@media only screen and (max-width: 640px) {
  .add_footer_responsive footer.global .copyright small {
    font-size: 77%;
  }
}
/*********************
PAGE MENU
*********************/
.tp_page_menu {
  text-align: center;
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 667px) {
  .tp_page_menu {
    margin-top: 35px;
  }
}
.tp_page_menu_list {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .tp_page_menu_list {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}
.tp_page_menu_list li {
  text-align: center;
  float: left;
  padding-left: 35px;
  padding-right: 35px;
  border-left: 1px solid #333333;
}

@media screen and (max-width: 767px) {
  .tp_page_menu_list li {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
    border-left: none;
    border-bottom: 1px solid #cccccc;
  }
}
.tp_page_menu_list li.tp_cur {
  pointer-events: none;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .tp_page_menu_list li.tp_cur {
    text-decoration: none;
  }

  .tp_page_menu_list li.tp_cur a {
    position: relative;
  }

  .tp_page_menu_list li.tp_cur a:before {
    content: '';
    position: absolute;
    width: 6px;
    height: 26px;
    top: 50%;
    left: 10px;
    margin-top: -13px;
    background: #072e62;
  }
}
.tp_page_menu_list li:first-child {
  padding-left: 0px;
  border-left: none;
}

@media screen and (max-width: 767px) {
  .tp_page_menu_list li:first-child {
    border-top: 1px solid #cccccc;
  }
}
.tp_page_menu_list li:last-child {
  padding-right: 0px;
}

.tp_page_menu_list li a {
  color: #333333;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .tp_page_menu_list li a {
    font-size: 15px;
    text-align: left;
    width: 100%;
    padding-top: 14px;
    padding-bottom: 12px;
    padding-left: 32px;
    background: url("../images/page_menu_arrow.png") no-repeat 90% 50%/10px;
    display: block;
  }
}
.tp_footer_serial {
  font-size: 12px;
  text-align: right;
  width: 100%;
  max-width: 960px;
  margin-top: 70px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  border-top: 3px solid #072e62;
}

@media screen and (max-width: 767px) {
  .tp_footer_serial {
    margin-top: 0px;
    padding-left: 3%;
    padding-right: 3%;
  }
}
/*********************
add style
*********************/
.add_heading_banner {
  text-decoration: none;
  position: absolute;
  bottom: 0%;
  right: 0px;
  display: block;
  opacity: 1.0;
  -webkit-transition: opacity 0.150s ease;
  transition: opacity 0.150s ease;
}

.add_heading_banner:hover {
  text-decoration: none;
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .add_heading_banner {
    bottom: -65px;
    right: auto;
    left: 50%;
    margin-top: 0px;
    margin-left: -100px;
  }
}
.add_heading_banner_img {
  display: block;
}

@media screen and (max-width: 767px) {
  .add_heading_banner.add_type_allocation .add_heading_banner_img {
    width: 201px;
    height: 55px;
  }
}
.add_table_heading {
  line-height: 1;
}

.add_table_heading_text {
  font-size: 16px;
  vertical-align: middle;
  margin-left: 1em;
  display: inline-block;
}

@media screen and (max-width: 667px) {
  .add_table_heading_text {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 5px;
    margin-left: 0px;
    display: block;
  }
}
.add_table_foot_info {
  font-size: 12px;
  text-align: right;
  width: 960px;
  margin-top: 1em;
}

@media screen and (max-width: 999px) {
  .add_leading_wrap {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
  }
}
.add_leading_text {
  font-size: 16px;
  margin-top: 30px;
}

.add_leading_text_link {
  color: #3f63b5;
  position: relative;
  padding-left: 28px;
  display: inline-block;
}

.add_leading_text_link_icon {
  position: absolute;
  top: 50%;
  left: 0px;
  margin-top: -7px;
}

.add_leading_text_link_icon img {
  width: 13px;
  display: block;
}

.add_leading_text_heading {
  font-size: 20px;
  font-weight: bold;
  margin-top: 25px;
}

.add_leading_list {
  margin-top: 25px;
}

.add_leading_list li {
  font-size: 16px;
  text-indent: -1em;
  padding-left: 1em;
  display: block;
}

.add_icon_new {
  color: #ffffff;
  font-style: normal;
  font-size: 18px;
  line-height: 1;
  vertical-align: middle;
  padding: 4px 14px;
  background: #f94e76;
  display: inline-block;
}

@media screen and (max-width: 667px) {
  .add_icon_new {
    font-size: 14px;
  }
}
.add_banner_area {
  line-height: 1;
  text-align: center;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .add_banner_area.add_type_allocation .add_banner_img {
    width: 201px;
    height: 55px;
  }
}
.add_banner_link {
  text-decoration: none;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  opacity: 1.0;
  -webkit-transition: opacity 0.150s ease;
  transition: opacity 0.150s ease;
}

.add_banner_link:hover {
  text-decoration: none;
  opacity: 0.7;
}

.add_banner_img {
  display: block;
}

/*********************
UNYOU
*********************/
.tp_content_main_text.add_type_banner {
  margin-top: 110px;
}

@media screen and (max-width: 767px) {
  .tp_content_main_text.add_type_banner {
    margin-top: 30px;
    margin-bottom: 80px;
  }
}
.tp_content_table_wrap.add_type_fund {
  margin-top: 30px;
}

.tp_content_table_wrap.add_type_fund .tp_content_table {
  margin-top: 15px;
}

.tp_unyou_return_image_notes {
  font-size: 12px;
  width: 100%;
  max-width: 860px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 999px) {
  .tp_unyou_return_image_notes {
    width: 96%;
  }
}
/*********************
DATTAI
*********************/
.tp_content_heading_title_text .add_content_heading_title_text_color {
  color: #0372a4;
  font-weight: bold;
}

.tp_content_table.add_type_dattai {
  margin-top: 20px;
  border-bottom: 1px solid #e1e1e1;
}

.tp_content_table.add_type_dattai .add_table_info {
  text-indent: -1em;
  padding-left: 1em;
  display: block;
}

.tp_content_table.add_type_dattai .add_table_paragraph {
  margin-top: 1em;
  display: block;
}

.tp_content_table.add_type_dattai .tp_content_table_tr:first-child .tp_content_table_td {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding: 10px 8px;
  background: #e9f8ff;
}

.tp_content_table.add_type_dattai .tp_content_table_tr:first-child .tp_content_table_td:first-child {
  padding-left: 8px;
}

.tp_content_table.add_type_dattai .tp_content_table_tr .tp_content_table_td {
  font-size: 14px;
  text-align: left;
  width: 345px;
  padding: 20px 30px;
}

.tp_content_table.add_type_dattai .tp_content_table_tr .tp_content_table_td:first-child {
  width: 270px;
  padding-left: 25px;
  padding-right: 25px;
  background: #e9f8ff;
}

.tp_content_table.add_type_dattai .tp_content_table_tr .tp_content_table_td:first-child.add_nocolor {
  background: #ffffff;
}

.tp_content_table.add_type_simple {
  margin-top: 20px;
  border-bottom: 1px solid #e1e1e1;
}

.tp_content_table.add_type_simple .add_table_colortext {
  color: #0372a4;
  font-weight: bold;
}

.tp_content_table.add_type_simple .tp_content_table_tr .tp_content_table_td {
  font-size: 14px;
  text-align: left;
  padding: 25px 35px;
}

.tp_content_table.add_type_simple .tp_content_table_tr .tp_content_table_td:first-child {
  font-size: 20px;
  text-align: center;
  padding: 1em 1.3em;
}

/*********************
PAGE FOOT BANNER
*********************/
.tp_content_total .page_link li {
  margin-top: 20px;
}

.tp_content_total .page_link li:nth-child(1), .tp_content_total .page_link li:nth-child(2) {
  margin-top: 0px;
}

.tp_content_total .page_link li:nth-child(odd) {
  float: left;
}

@media screen and (max-width: 667px) {
  .tp_content_total .page_link li:nth-child(odd) {
    float: none;
  }
}
.tp_content_total .page_link li:nth-child(even) {
  float: right;
}

@media screen and (max-width: 667px) {
  .tp_content_total .page_link li:nth-child(even) {
    float: none;
  }
}
.page_index .add_campaign_bottom {
  margin-top: 80px;
}
@media screen and (max-width: 667px) {
  .page_index .add_campaign_bottom {
    margin-top: 40px;
  }
}

.tp_beginner_area {
  margin-bottom: 30px;
}

.tp_flow_step_area {
  margin-top: 60px;
  padding-top: 10px;
  background: #e1f5fe;
}

.tp_flow_step_detail_inner {
  background-color: #ffffff;
}

.tp_flow_info_area_wrap {
  padding-top: 70px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 35px;
  background: #e1f5fe;
}
@media screen and (max-width: 667px) {
  .tp_flow_info_area_wrap {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.tp_flow_info_area_wrap .tp_flow_info_area {
  margin-top: 0px;
  background-color: #ffffff;
}
@media screen and (max-width: 667px) {
  .tp_flow_info_area_wrap .tp_flow_info_area {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #31bcfb;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.content_mainvisual.tp_mainvisual {
  padding-top: 0px;
}

/*********************
add style
*********************/
.add_campaign {
  width: 100%;
  max-width: 960px;
  margin-top: 40px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  background: #fffee1;
}
@media screen and (max-width: 667px) {
  .add_campaign {
    margin-top: 0px;
    padding: 0px;
    background: #ffffff;
  }
}
.add_campaign_inner {
  border-radius: 8px;
  border: 1px solid #ffd337;
  overflow: hidden;
}
@media screen and (max-width: 667px) {
  .add_campaign_inner {
    border-radius: 0px;
    border: none;
  }
}
.add_campaign_heading {
  background: #ffd337;
}
.add_campaign_heading_sub {
  padding-top: 20px;
}
.add_campaign_heading_sub img {
  margin-left: auto;
  margin-right: auto;
}
.add_campaign_heading_sub_pc {
  display: block;
}
@media screen and (max-width: 667px) {
  .add_campaign_heading_sub_pc {
    display: none;
  }
}
.add_campaign_heading_sub_sp {
  display: none;
}
@media screen and (max-width: 667px) {
  .add_campaign_heading_sub_sp {
    width: 232px;
    display: block;
  }
}
.add_campaign_heading_main {
  margin-top: -10px;
  margin-left: 30px;
  margin-right: 30px;
  padding: 15px;
  border-radius: 8px;
  border: 6px solid #ffd337;
  background: #ffffff;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.add_campaign_heading_main img {
  margin-left: auto;
  margin-right: auto;
}
.add_campaign_heading_main_pc {
  display: block;
}
@media screen and (max-width: 667px) {
  .add_campaign_heading_main_pc {
    display: none;
  }
}
.add_campaign_heading_main_sp {
  display: none;
}
@media screen and (max-width: 667px) {
  .add_campaign_heading_main_sp {
    width: 315px;
    display: block;
  }
}
.add_campaign_content {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
@media screen and (max-width: 667px) {
  .add_campaign_content {
    padding-top: 35px;
    padding-bottom: 0px;
  }
}
.add_campaign_content_heading {
  font-size: 24px;
  letter-spacing: -3px;
  text-align: center;
}
@media screen and (max-width: 667px) {
  .add_campaign_content_heading {
    font-size: 17px;
    font-weight: bold;
  }
  .add_campaign_content_heading_phonehide {
    display: none;
  }
}
.add_campaign_content_heading_emphasis {
  font-size: 32px;
  font-weight: bold;
}
@media screen and (max-width: 667px) {
  .add_campaign_content_heading_emphasis {
    font-size: 17px;
    display: block;
  }
}
@media screen and (max-width: 667px) {
  .add_campaign_content_heading_block {
    display: inline-block;
  }
}
.add_campaign_content_heading_blacket_l {
  margin-left: -0.5em;
  display: inline-block;
}
.add_campaign_content_heading_blacket_r {
  margin-right: -0.5em;
  display: inline-block;
}
.add_campaign_content_leading {
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 667px) {
  .add_campaign_content_leading {
    font-size: 10px;
    letter-spacing: -1px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
.add_campaign_content_item {
  margin-top: 15px;
  padding-left: 25px;
  padding-right: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 667px) {
  .add_campaign_content_item {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.add_campaign_content_item_box {
  position: relative;
  width: 48%;
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 668px) {
  .add_campaign_content_item_box:last-child {
    width: 100%;
  }
  .add_campaign_content_item_box:last-child .add_campaign_content_item_box_inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 667px) {
  .add_campaign_content_item_box:first-child {
    width: 100%;
  }
  .add_campaign_content_item_box:first-child .add_campaign_content_item_dec {
    left: 15px;
  }
  .add_campaign_content_item_box:first-child .add_campaign_content_item_dec_sp {
    width: 78px;
  }
}
.add_campaign_content_item_box_inner {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  border: 6px solid #ffd337;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 90px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (max-width: 667px) {
  .add_campaign_content_item_box_inner {
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 20px;
  }
}
.add_campaign_content_item_dec {
  position: absolute;
  top: -25px;
  left: 15px;
}
@media screen and (max-width: 667px) {
  .add_campaign_content_item_dec {
    top: -15px;
    left: 0px;
  }
}
.add_campaign_content_item_dec_pc {
  display: block;
}
@media screen and (max-width: 667px) {
  .add_campaign_content_item_dec_pc {
    display: none;
  }
}
.add_campaign_content_item_dec_sp {
  display: none;
}
@media screen and (max-width: 667px) {
  .add_campaign_content_item_dec_sp {
    width: 55px;
    display: block;
  }
}
.add_campaign_content_item_img img {
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.add_campaign_content_item_info {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 667px) {
  .add_campaign_content_item_info {
    font-size: 13px;
  }
}
.add_campaign_content_item_info_br_hidephone {
  display: inline;
}
@media screen and (max-width: 667px) {
  .add_campaign_content_item_info_br_hidephone {
    display: none;
  }
}
.add_campaign_content_item_info_br_hidepc {
  display: none;
}
@media screen and (max-width: 667px) {
  .add_campaign_content_item_info_br_hidepc {
    display: inline;
  }
}
.add_campaign_content_item_notes {
  font-size: 12px;
  font-weight: normal;
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 667px) {
  .add_campaign_content_item_notes {
    font-size: 10px;
  }
}
.add_campaign_note {
  font-size: 12px;
  margin-top: 25px;
}
@media screen and (max-width: 667px) {
  .add_campaign_note {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.add_campaign_bottom {
  width: 100%;
  max-width: 960px;
  margin-top: 120px;
  margin-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 30px;
  background: #fffee1;
}
.add_campaign_bottom .tp_entry_more {
  margin-top: -30px;
  padding-top: 0px;
}
@media screen and (max-width: 667px) {
  .add_campaign_bottom {
    margin-top: 60px;
  }
  .add_campaign_bottom .tp_entry_more {
    margin-top: -15px;
    padding-top: 0px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.add_campaign_bottom_heading {
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
}
@media screen and (max-width: 667px) {
  .add_campaign_bottom_heading {
    -webkit-transform: translateY(-25px);
            transform: translateY(-25px);
  }
}
.add_campaign_bottom_heading_pc {
  display: block;
}
@media screen and (max-width: 667px) {
  .add_campaign_bottom_heading_pc {
    display: none;
  }
}
.add_campaign_bottom_heading_sp {
  display: none;
}
@media screen and (max-width: 667px) {
  .add_campaign_bottom_heading_sp {
    width: 100%;
    display: block;
  }
}
.add_anxiety {
  width: 100%;
  max-width: 960px;
  margin-top: 65px;
  margin-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
}
.add_anxiety_pc {
  display: block;
}
@media screen and (max-width: 667px) {
  .add_anxiety_pc {
    display: none;
  }
}
.add_anxiety_sp {
  display: none;
}
@media screen and (max-width: 667px) {
  .add_anxiety_sp {
    width: 100%;
    display: block;
  }
}
.add_limit_heading {
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  padding-top: 15px;
  padding-bottom: 15px;
  background: #1d72a1;
}
.add_limit_table {
  margin-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 667px) {
  .add_limit_table {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.add_limit_table img {
  margin-left: auto;
  margin-right: auto;
}
.add_limit_table_pc {
  display: block;
}
@media screen and (max-width: 667px) {
  .add_limit_table_pc {
    display: none;
  }
}
.add_limit_table_sp {
  display: none;
}
@media screen and (max-width: 667px) {
  .add_limit_table_sp {
    width: 100%;
    display: block;
  }
}
.add_limit_info {
  color: #333333;
  font-size: 12px;
  text-indent: -2em;
  padding-left: 2em;
}
.add_limit_info_wrap {
  width: 100%;
  max-width: 960px;
  margin: 10px auto 0;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 667px) {
  .add_limit_info_wrap {  
    padding: 0 15px;
  }
}
