@charset "UTF-8";
/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;

At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/
/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}

Example usage in HTML:

`display: block` sprite:
<div class="icon-home"></div>

To change `display` (e.g. `display: inline-block;`), we suggest using a common CSS class:

// CSS
.icon {
  display: inline-block;
}

// HTML
<i class="icon icon-home"></i>
*/
/*
The `sprites` mixin generates identical output to the CSS template
  but can be overridden inside of SCSS

@include sprites($spritesheet-sprites);
*/
/*=========================================================================
//
// Base
//
==========================================================================*/
/*-------------------------------------------------------------------------
 [Base] reset
--------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* HTML5 display-role reset for older browsers --------------------- */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  font-family: sans-serif;
      -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

:focus {
  outline: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

img {
  border: 0;
  vertical-align: top;
}

a {
  cursor: pointer;
  outline: none;
}

sub,
sup {
  font-size: 70%;
  line-height: 0;
  padding: 0 3px;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -.5em;
}

sub {
  bottom: -.25em;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  color: inherit;
  font: inherit;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="search"] {
  box-sizing: content-box;
}

/*-------------------------------------------------------------------------
 [Base] base setting
--------------------------------------------------------------------------*/
body, input, textarea, select, option, button {
  font-family: "UD新ゴシック", Meiryo, "Hiragino Kaku Gothic ProN","ＭＳ Ｐゴシック", sans-serif;
  font-style: normal;
  line-height: 1.5;
  font-size: 16px;
  color: #333;
}

@media screen and (max-width: 767px) {
  body, input, textarea, select, option, button {
    line-height: 1.7;
    font-size: 12px;
  }
}

body {
  position: relative;
  background-color: #fff;
  min-width: 1190px;
}

body.is-narrow {
  /* min-width: 930px; */
}

body.is-narrow .m-container {
  /* min-width: 930px; */
}

body.is-narrow .m-content {
  width: 890px;
}

@media screen and (max-width: 767px) {
  body:not(.notrwd) {
    min-width: 320px !important;
  }
  body:not(.notrwd).is-narrow {
    min-width: 100%;
  }
  body:not(.notrwd).is-narrow .m-container {
    min-width: 100%;
  }
  body:not(.notrwd).is-narrow .m-content {
    width: 100%;
  }
}

a:link,
a:visited {
  color: #007ab2;
  text-decoration: underline;
}

a:active,
a:hover {
  text-decoration: none;
}

input[type="text"],
input[type="search"],
input[type="password"],
input[type="tel"],
input[type="url"],
input[type="email"],
input[type="number"],
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"] {
  box-sizing: border-box;
  padding: 4px;
  -webkit-appearance: none;
  border-radius: 0;
  border: 1px solid #d2d2d2;
}

input[type="radio"],
input[type="checkbox"] {
  margin-right: 8px;
  vertical-align: middle;
}

textarea {
  width: 100%;
  display: block;
  resize: vertical;
  padding: 4px;
  border: 1px solid #d2d2d2;
  box-sizing: border-box;
}

select {
  padding: 3px;
  border: 1px solid #d2d2d2;
  box-sizing: border-box;
}

button {
  display: block;
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}

label {
  display: block;
  cursor: pointer;
}

p {
  margin-top: 1em;
  word-wrap: break-word;
}

p:first-child {
  margin-top: 0;
}

p.m-font-s, p.m-font-xs, p.m-font-xxs {
  margin-top: .6em;
}

ul, ol, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

/*=========================================================================
//
// Utility
//
==========================================================================*/
/*-------------------------------------------------------------------------
 utility
--------------------------------------------------------------------------*/
/* clearfix
----------------------------------------------------------- */
.g-clearfix {
  *zoom: 1;
}

.g-clearfix:after {
  content: ".";
  display: block;
  visibility: hidden;
  font-size: 0;
  height: 0;
  clear: both;
}

/* image
----------------------------------------------------------- */
.g-img-full {
  width: 100%;
  height: auto;
}

.g-img-max {
  max-width: 100%;
  height: auto;
}

/* hover
----------------------------------------------------------- */
.g-hover {
  -webkit-transition: opacity .3s;
          transition: opacity .3s;
}

/* display
----------------------------------------------------------- */
.g-block {
  display: block !important;
}

.g-inline-block {
  display: inline-block !important;
}

.g-inline {
  display: inline !important;
}

.g-table {
  display: table !important;
}

.g-nowrap {
  white-space: nowrap !important;
}

.g-tcenter {
  text-align: center !important;
}

.g-tleft {
  text-align: left !important;
}

.g-tright {
  text-align: right !important;
}

.g-tcenter-mq {
  text-align: center !important;
}

@media screen and (max-width: 767px) {
  .g-tcenter-mq {
    text-align: left !important;
  }
}

.g-center {
  display: table !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.g-left {
  display: table !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.g-right {
  display: table !important;
  margin-left: auto !important;
  margin-right: 0 !important;
}

.g-vtop {
  vertical-align: top !important;
}

.g-vmiddle {
  vertical-align: middle !important;
}

.g-vbtm {
  vertical-align: bottom !important;
}

.g-disp-s {
  display: none !important;
}

.g-disp-l {
  display: inline !important;
}

@media screen and (max-width: 767px) {
  .g-disp-s {
    display: inline !important;
  }
  .g-disp-l {
    display: none !important;
  }
}

@media print {
  .g-printoff {
    display: none !important;
  }
}

/* margin, padding
----------------------------------------------------------- */
.g-mt-m30 {
  margin-top: -30px !important;
}

.g-mt-m25 {
  margin-top: -25px !important;
}

.g-mt-m20 {
  margin-top: -20px !important;
}

.g-mt-m15 {
  margin-top: -15px !important;
}

.g-mt-m10 {
  margin-top: -10px !important;
}

.g-mt-m5 {
  margin-top: -5px !important;
}

.g-mb-m30 {
  margin-bottom: -30px !important;
}

.g-mb-m25 {
  margin-bottom: -25px !important;
}

.g-mb-m20 {
  margin-bottom: -20px !important;
}

.g-mb-m15 {
  margin-bottom: -15px !important;
}

.g-mb-m10 {
  margin-bottom: -10px !important;
}

.g-mb-m5 {
  margin-bottom: -5px !important;
}

.g-mt-0 {
  margin-top: 0 !important;
}

.g-mt-5 {
  margin-top: 5px !important;
}

.g-mt-10 {
  margin-top: 10px !important;
}

.g-mt-15 {
  margin-top: 15px !important;
}

.g-mt-20 {
  margin-top: 20px !important;
}

.g-mt-25 {
  margin-top: 25px !important;
}

.g-mt-30 {
  margin-top: 30px !important;
}

.g-mt-35 {
  margin-top: 35px !important;
}

.g-mt-40 {
  margin-top: 40px !important;
}

.g-mt-45 {
  margin-top: 45px !important;
}

.g-mt-50 {
  margin-top: 50px !important;
}

.g-mb-0 {
  margin-bottom: 0 !important;
}

.g-mb-5 {
  margin-bottom: 5px !important;
}

.g-mb-10 {
  margin-bottom: 10px !important;
}

.g-mb-15 {
  margin-bottom: 15px !important;
}

.g-mb-20 {
  margin-bottom: 20px !important;
}

.g-mb-25 {
  margin-bottom: 25px !important;
}

.g-mb-30 {
  margin-bottom: 30px !important;
}

.g-mb-35 {
  margin-bottom: 35px !important;
}

.g-mb-40 {
  margin-bottom: 40px !important;
}

.g-mb-45 {
  margin-bottom: 45px !important;
}

.g-mb-50 {
  margin-bottom: 50px !important;
}

.g-ml-0 {
  margin-left: 0 !important;
}

.g-ml-5 {
  margin-left: 5px !important;
}

.g-ml-10 {
  margin-left: 10px !important;
}

.g-ml-15 {
  margin-left: 15px !important;
}

.g-ml-20 {
  margin-left: 20px !important;
}

.g-ml-25 {
  margin-left: 25px !important;
}

.g-ml-30 {
  margin-left: 30px !important;
}

.g-ml-35 {
  margin-left: 35px !important;
}

.g-ml-40 {
  margin-left: 40px !important;
}

.g-ml-45 {
  margin-left: 45px !important;
}

.g-ml-50 {
  margin-left: 50px !important;
}

.g-mr-0 {
  margin-right: 0 !important;
}

.g-mr-5 {
  margin-right: 5px !important;
}

.g-mr-10 {
  margin-right: 10px !important;
}

.g-mr-15 {
  margin-right: 15px !important;
}

.g-mr-20 {
  margin-right: 20px !important;
}

.g-mr-25 {
  margin-right: 25px !important;
}

.g-mr-30 {
  margin-right: 30px !important;
}

.g-mr-35 {
  margin-right: 35px !important;
}

.g-mr-40 {
  margin-right: 40px !important;
}

.g-mr-45 {
  margin-right: 45px !important;
}

.g-mr-50 {
  margin-right: 50px !important;
}

.g-pt-0 {
  padding-top: 0 !important;
}

.g-pt-5 {
  padding-top: 5px !important;
}

.g-pt-10 {
  padding-top: 10px !important;
}

.g-pt-15 {
  padding-top: 15px !important;
}

.g-pt-20 {
  padding-top: 20px !important;
}

.g-pt-25 {
  padding-top: 25px !important;
}

.g-pt-30 {
  padding-top: 30px !important;
}

.g-pt-35 {
  padding-top: 35px !important;
}

.g-pt-40 {
  padding-top: 40px !important;
}

.g-pt-45 {
  padding-top: 45px !important;
}

.g-pt-50 {
  padding-top: 50px !important;
}

/* width
--------------------------------------------------------*/
.g-width-5 {
  width: 5% !important;
}

.g-width-10 {
  width: 10% !important;
}

.g-width-15 {
  width: 15% !important;
}

.g-width-20 {
  width: 20% !important;
}

.g-width-25 {
  width: 25% !important;
}

.g-width-30 {
  width: 30% !important;
}

.g-width-35 {
  width: 35% !important;
}

.g-width-40 {
  width: 40% !important;
}

.g-width-45 {
  width: 45% !important;
}

.g-width-50 {
  width: 50% !important;
}

.g-width-55 {
  width: 55% !important;
}

.g-width-60 {
  width: 60% !important;
}

.g-width-65 {
  width: 65% !important;
}

.g-width-70 {
  width: 70% !important;
}

.g-width-75 {
  width: 75% !important;
}

.g-width-80 {
  width: 80% !important;
}

.g-width-85 {
  width: 85% !important;
}

.g-width-90 {
  width: 90% !important;
}

.g-width-95 {
  width: 95% !important;
}

.g-width-100 {
  width: 100% !important;
}

.g-width-33 {
  width: 33% !important;
}

.g-width-full {
  width: 100% !important;
}

.g-width-auto {
  width: auto !important;
}

.g-width-pc-5 {
  width: 5% !important;
}

.g-width-pc-10 {
  width: 10% !important;
}

.g-width-pc-15 {
  width: 15% !important;
}

.g-width-pc-20 {
  width: 20% !important;
}

.g-width-pc-25 {
  width: 25% !important;
}

.g-width-pc-30 {
  width: 30% !important;
}

.g-width-pc-35 {
  width: 35% !important;
}

.g-width-pc-40 {
  width: 40% !important;
}

.g-width-pc-45 {
  width: 45% !important;
}

.g-width-pc-50 {
  width: 50% !important;
}

.g-width-pc-55 {
  width: 55% !important;
}

.g-width-pc-60 {
  width: 60% !important;
}

.g-width-pc-65 {
  width: 65% !important;
}

.g-width-pc-70 {
  width: 70% !important;
}

.g-width-pc-75 {
  width: 75% !important;
}

.g-width-pc-80 {
  width: 80% !important;
}

.g-width-pc-85 {
  width: 85% !important;
}

.g-width-pc-90 {
  width: 90% !important;
}

.g-width-pc-95 {
  width: 95% !important;
}

.g-width-pc-100 {
  width: 100% !important;
}

@media screen and (max-width: 767px) {
  .g-width-pc-5 {
    width: 100% !important;
  }
  .g-width-pc-10 {
    width: 100% !important;
  }
  .g-width-pc-15 {
    width: 100% !important;
  }
  .g-width-pc-20 {
    width: 100% !important;
  }
  .g-width-pc-25 {
    width: 100% !important;
  }
  .g-width-pc-30 {
    width: 100% !important;
  }
  .g-width-pc-35 {
    width: 100% !important;
  }
  .g-width-pc-40 {
    width: 100% !important;
  }
  .g-width-pc-45 {
    width: 100% !important;
  }
  .g-width-pc-50 {
    width: 100% !important;
  }
  .g-width-pc-55 {
    width: 100% !important;
  }
  .g-width-pc-60 {
    width: 100% !important;
  }
  .g-width-pc-65 {
    width: 100% !important;
  }
  .g-width-pc-70 {
    width: 100% !important;
  }
  .g-width-pc-75 {
    width: 100% !important;
  }
  .g-width-pc-80 {
    width: 100% !important;
  }
  .g-width-pc-85 {
    width: 100% !important;
  }
  .g-width-pc-90 {
    width: 100% !important;
  }
  .g-width-pc-95 {
    width: 100% !important;
  }
  .g-width-pc-100 {
    width: 100% !important;
  }
}

/*=========================================================================
//
// Layout
//
==========================================================================*/
/*-------------------------------------------------------------------------
 グループ共通ヘッダー・フッター
--------------------------------------------------------------------------*/
/* 接頭辞：#tbgc */
/* ==================================================
01.Common
================================================== */
/* clearfix */
#tbgcHeaderInner {
  *zoom: 1;
}

#tbgcHeaderInner:before,
#tbgcHeaderInner:after {
  display: table;
  content: "";
}

#tbgcHeaderInner:after {
  clear: both;
}

/* ==================================================
02.Foundation
================================================== */
#tbgcHeader,
#tbgcFooter {
  color: #333;
  font-size: 14px;
  line-height: 1.3;
}

#tbgcHeader,
#tbgcHeader input,
#tbgcFooter {
  font-family: "UD Shin Go Regular", Meiryo, "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif;
}

:lang(en) #tbgcHeader,
:lang(en) #tbgcHeader input,
:lang(en) #tbgcFooter {
  font-family: Univers, Arial, sans-serif;
}

#tbgcHeader *,
#tbgcFooter * {
  box-sizing: border-box;
}

#tbgcHeader img,
#tbgcFooter img {
  vertical-align: sub;
  border: none;
}

#tbgcHeader a,
#tbgcFooter a {
  color: #004e80;
}

#tbgcHeader a:hover,
#tbgcFooter a:hover {
  text-decoration: none;
}

#tbgcHeaderInner input {
  border: 1px solid #ccc;
  padding: 7px 7px 6px 7px;
  font-size: 12px;
}

/* ==================================================
03_Structure
================================================== */
/* Header */
#tbgcHeaderInner {
  width: 1190px;
  margin: 0 auto;
  padding: 0 20px;
  padding-bottom: 13px;
  background: #fff;
  font-size: 12px;
  position: relative;
  overflow: hidden;
}

#tbgcHeaderBland {
  text-align: right;
  margin: 0 auto;
  padding: 2px 0 0;
  background-color: #0074cc;
  background: -webkit-gradient(linear, left top, right top, from(#00b3fe), to(#039));
  background: -webkit-linear-gradient(left, #00b3fe, #039);
  background:         linear-gradient(left, #00b3fe, #039);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#00B3FE', endColorstr='#003399', GradientType=1)";
}

#tbgcHeaderBland img {
  display: block;
  margin-left: auto;
  width: 137px;
  height: 12px;
}

#tbgcHeaderLogo {
  margin: 0;
  float: left;
}

#tbgcHeaderLogo a,
#tbgcHeaderLogo span {
  padding: 10px 20px 10px 0;
  display: inline-block;
  vertical-align: bottom;
  *display: inline;
  *zoom: 1;
}

#tbgcHeaderLogo img {
  float: left;
  width: 317px;
  height: 37px;
}

#tbgcHeaderUtility {
  margin: 4px 0;
}

#tbgcHeaderUtility li {
  padding: 10px 0;
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

#tbgcHeaderUtility li a {
  display: block;
  padding: 1px 10px;
  color: inherit;
  text-decoration: none;
}

#tbgcHeaderUtility li:last-child a {
  padding-right: 0;
}

#tbgcHeaderUtility li a:hover {
  text-decoration: underline;
}

#tbgcHeaderUtility li.line {
  border-left: 1px solid #ccc;
  margin: 0 0 0 8px;
  padding: 0 0 0 10px;
}

#tbgcHeader.noSearch #tbgcHeaderUtility {
  margin: 20px 10px 0 -450px;
}

#tbgcHeaderSearch {
  float: right;
  text-align: right;
  display: inline-block;
  margin-right: 20px;
  margin-bottom: -1px;
  position: relative;
}

#tbgcHeaderSearch input {
  width: 217px;
  padding-right: 33px;
}

#tbgcHeaderSearch input[type="image"] {
  border: none;
  width: 26px;
  height: 27px;
  position: absolute;
  top: 3px;
  right: 7px;
  padding: 5px;
}

/* pc */
@media print, screen and (max-width: 1150px) {
  body.rwd #tbgcHeaderLogo a {
    padding: 10px 10px 10px 0;
    width: auto;
  }
  body.rwd #tbgcHeaderUtility {
    width: auto;
  }
}

/* sp */
@media screen and (max-width: 767px) {
  body.rwd #tbgcHeaderInner {
    width: 100%;
  }
  body.rwd #tbgcHeaderBland img {
    width: 103px;
    height: 9px;
  }
  body.rwd #tbgcHeaderInner {
    padding: 9px 15px;
  }
  body.rwd #tbgcHeaderLogo {
    margin: 0 55px 0 0;
    float: none;
  }
  body.rwd #tbgcHeaderLogo img {
    width: 160px;
    height: auto;
  }
  body.rwd #tbgcHeaderUtility {
    float: none;
    margin: 5px 20px 0 0;
  }
  body.rwd #tbgcHeaderUtility > li {
    margin: 0 0 0 10px;
    padding: 0;
  }
  body.rwd #tbgcHeaderUtility > li.line {
    border: none;
    padding: 0;
    display: inline-block;
    *display: inline;
    *zoom: 1;
  }
  body.rwd #tbgcHeaderUtility > li > a {
    padding: 0;
  }
  body.rwd #tbgcHeader.noSearch #tbgcHeaderUtility {
    margin: 0 20px;
  }
  body.rwd #tbgcHeaderSearch {
    float: none;
    margin: 20px;
  }
  body.rwd #tbgcHeaderSearch input[type="text"] {
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
  }
  body.rwd #tbgcHeaderSearch input[type="image"] {
    box-sizing: border-box;
  }
}

/* Footer */
#tbgcFooterUtility {
  margin: 0 auto;
  text-align: center;
  background-color: #0074cc;
  border: 1px solid #fff;
  border-width: 1px 0;
}

#tbgcFooterUtility > ul {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0;
}

#tbgcFooterUtility > ul > li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

#tbgcFooterUtility > ul > li.line {
  position: relative;
  padding-left: 5px;
}

#tbgcFooterUtility > ul > li.line:before {
  top: 50%;
  left: 0;
  width: 1px;
  height: 1.2em;
  content: "";
  margin-top: -.6em;
  background: #fff;
  position: absolute;
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

#tbgcFooterUtility > ul > li a {
  color: #fff;
  display: block;
  padding: 13px 12px 12px;
  font-size: 12px;
  text-decoration: none;
}

#tbgcFooterUtility > ul > li a:hover {
  text-decoration: underline;
}

#tbgcFooterInfo {
  margin: 0 auto;
  background-color: #0074cc;
  background: -webkit-gradient(linear, left top, right top, from(#00b3fe), to(#039));
  background: -ms-linear-gradient(left, #00b3fe, #039);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#00B3FE', endColorstr='#003399', GradientType=1)";
  position: relative;
  height: 61px;
  overflow: hidden;
}

#tbgcFooterGroup {
  max-width: 1190px;
  margin: 0 auto;
  padding: 27px 20px 0;
}

#tbgcFooterGroup img {
  width: auto;
  height: 17px;
}

#tbgcFooterBland {
  position: absolute;
  right: 0;
  top: 0;
  height: 61px;
  padding-top: 16px;
  padding-right: 134px;
}

#tbgcFooterBland:after {
  content: url(/resources/img/bland/footer_bland_02.png);
  width: 116px;
  height: 32px;
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

#tbgcFooterBland img {
  width: 239px;
  height: 25px;
}

#tbgcFooterCopy {
  font-size: 10px;
  color: #fff;
  text-align: right;
  padding-right: 134px;
  margin: -1px 0 0;
}

/* sp */
@media screen and (max-width: 767px) {
  body.rwd #tbgcFooterUtility ul {
    width: 100%;
    padding: 10px 0;
  }
  body.rwd #tbgcFooterUtility ul li a {
    padding: 6px 8px;
  }
  body.rwd #tbgcFooterInfo {
    padding: 15px 0 0;
    height: 62px;
  }
  body.rwd #tbgcFooterGroup {
    max-width: 100%;
    position: absolute;
    top: 15px;
    left: 10px;
    padding: 0;
  }
  :lang(en) body.rwd #tbgcFooterGroup {
    top: 17px;
  }
  body.rwd #tbgcFooterGroup img {
    width: auto;
    height: 10px;
    display: block;
  }
  body.rwd #tbgcFooterBland {
    position: static;
    height: auto;
    padding: 0 57px 0 0;
    text-align: right;
  }
  body.rwd #tbgcFooterBland img {
    position: relative;
    top: -2px;
    width: 142px;
    height: 15px;
  }
  body.rwd #tbgcFooterBland:after {
    content: "";
    width: 65px;
    height: 18px;
    background: url(/resources/img/bland/footer_bland_02.png) no-repeat 0 0;
    background-size: 100% 100%;
  }
  body.rwd #tbgcFooterCopy {
    padding-right: 57px;
    margin: -1px 0 0;
  }
}

/* hidden */
body.rwd .pcHidden {
  display: none !important;
}

@media screen and (max-width: 767px) {
  body.rwd .spHidden {
    display: none !important;
  }
  body.rwd .pcHidden {
    display: block !important;
  }
  :lang(en) body.rwd #tbgcHeaderLogo {
    margin-top: 4px;
  }
}

/*-------------------------------------------------------------------------
 header
--------------------------------------------------------------------------*/
.m-header__l {
  float: left;
}

.m-header__r {
  float: right;
  text-align: right;
}

.m-header__r .m-icon-blank:after {
  margin-top: -1px;
  margin-right: 0;
}

.m-header__tagline {
  padding: 15px 0 3px;
  font-size: 11px;
}

.m-header-rbtm {
  display: table;
  margin-top: 6px;
}

.m-header-rbtm__list {
  display: table-cell;
  vertical-align: middle;
  padding-right: 10px;
  overflow: hidden;
}

.m-header-rbtm__list > li {
  float: left;
}

.m-header-rbtm__list > li > a {
  display: block;
  padding-top: 2px;
  padding-right: 20px;
  text-decoration: none;
  color: #007ab2;
  font-size: 14px;
}

.m-header-rbtm__list > li > a:hover {
  text-decoration: underline !important;
}

.m-header-rbtm__search {
  display: table-cell;
  vertical-align: middle;
}

.m-header-rbtm__btn {
  display: table-cell;
  vertical-align: middle;
}

.m-header-rbtm__btn .m-btn-request > span:before {
  margin-top: -7px;
  width: 14px;
  height: 13px;
  background: url(/resources/img/icon_request_header.svg) no-repeat 0 0;
  background-size: 14px 13px;
}

.m-header.is-simple {
  border-bottom: 1px solid #ccc;
}

.is-narrow #tbgcHeaderInner {
  /* width: 930px; */
}

.is-narrow #tbgcHeaderSearch {
  /* margin-right: 12px; */
}

.is-narrow #tbgcHeaderSearch input[type="text"] {
  /* width: 180px; */
}

.m-header-menubtn {
  display: none;
}

@media screen and (max-width: 767px) {
  body:not(.notrwd) .m-header {
    border-bottom: 1px solid #ccc;
  }
  body:not(.notrwd) .m-header__l {
    float: none;
  }
  body:not(.notrwd) .m-header__r {
    display: none;
    float: none;
  }
  body:not(.notrwd) .m-header__tagline {
    display: none;
  }
  body:not(.notrwd) .m-header-rbtm {
    display: none;
  }
  body:not(.notrwd).is-narrow #tbgcHeaderInner {
    width: 100%;
  }
  body:not(.notrwd) .m-header-menubtn {
    display: block;
    position: absolute;
    top: 10px;
    right: 15px;
    width: 35px;
    height: 35px;
    margin-top: 0;
    background: url(/resources/img/btn_header_menu.svg) no-repeat 0 0;
    background-size: 35px 35px;
  }
  body:not(.notrwd) .m-header-menubtn.is-open {
    background-image: url(/resources/img/btn_header_menu_close.svg);
  }
  body:not(.notrwd) .m-header-menubtn > a {
    display: block;
    overflow: hidden;
    height: 0;
    text-indent: 100%;
    white-space: nowrap;
  }
}

/*-------------------------------------------------------------------------
 gnav
--------------------------------------------------------------------------*/
/* gnav
--------------------------------------------------------*/
.m-gnav {
  width: 100%;
  background: -webkit-linear-gradient(left, #009ce5, #03439b);
  background:         linear-gradient(to right, #009ce5, #03439b);
}

.m-gnav .m-gnav__menu {
  display: table;
  width: 1150px;
  margin: 0 auto;
}

.m-gnav .m-gnav__menu > li {
  display: table-cell;
  width: 230px;
  border-right: 1px solid rgba(0, 0, 0, .2);
  box-sizing: border-box;
  vertical-align: middle;
}

.m-gnav .m-gnav__menu > li:last-child {
  border-right: 0;
}

.m-gnav .m-gnav__menu > li > a {
  display: block;
  padding: 15px 10px;
  -webkit-transition: all .3s;
          transition: all .3s;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
}

.m-gnav .m-gnav__menu > li > a:hover, .m-gnav .m-gnav__menu > li > a.is-current {
  background-color: rgba(255, 255, 255, .3);
}

.m-gnav .m-gnav__menu > li > a.is-haschild > span {
  position: relative;
  padding-right: 16px;
}

.m-gnav .m-gnav__menu > li > a.is-haschild > span:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -5px;
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: all .3s;
          transition: all .3s;
}

.m-gnav .m-gnav__menu > li.is-active .is-haschild {
  background-color: rgba(255, 255, 255, .3);
}

.m-gnav .m-gnav__menu > li.is-active .is-haschild > span:after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.m-gnav-sp,
.m-gnav-sp__close {
  display: none;
}

@media screen and (max-width: 767px) {
  body:not(.notrwd) .m-gnav {
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 901;
    background: none;
  }
  body:not(.notrwd) .m-gnav__inner {
    background-color: #fff;
    border-width: 15px 15px 25px;
    border-color: #d9dadb;
    border-style: solid;
  }
  body:not(.notrwd) .m-gnav .m-gnav__menu,
  body:not(.notrwd) .m-gnav .m-gnav-sp__menu {
    display: block;
    width: 100%;
  }
  body:not(.notrwd) .m-gnav .m-gnav__menu > li,
  body:not(.notrwd) .m-gnav .m-gnav-sp__menu > li {
    display: block;
    width: 100%;
    border-right: 0;
    border-top: 2px dotted #ccc;
  }
  body:not(.notrwd) .m-gnav .m-gnav__menu > li:first-child,
  body:not(.notrwd) .m-gnav .m-gnav-sp__menu > li:first-child {
    border-top: 0;
  }
  body:not(.notrwd) .m-gnav .m-gnav__menu > li > a,
  body:not(.notrwd) .m-gnav .m-gnav-sp__menu > li > a {
    display: block;
    padding: 11px 15px 10px;
    text-align: left;
    font-weight: bold;
    font-size: 16px;
    color: #333;
  }
  body:not(.notrwd) .m-gnav .m-gnav__menu > li > a > span,
  body:not(.notrwd) .m-gnav .m-gnav-sp__menu > li > a > span {
    display: block;
    position: relative;
    padding-right: 15px;
  }
  body:not(.notrwd) .m-gnav .m-gnav__menu > li > a > span:before,
  body:not(.notrwd) .m-gnav .m-gnav-sp__menu > li > a > span:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 7px;
    right: 0;
    width: 5px;
    height: 5px;
    border-top: 2px solid #009ce5;
    border-right: 2px solid #009ce5;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  body:not(.notrwd) .m-gnav .m-gnav__menu > li > a > span:after,
  body:not(.notrwd) .m-gnav .m-gnav-sp__menu > li > a > span:after {
    content: none;
  }
  body:not(.notrwd) .m-gnav .m-gnav-sp {
    display: block;
  }
  body:not(.notrwd) .m-gnav .m-gnav-sp__menu {
    border-bottom: 2px dotted #ccc;
  }
  body:not(.notrwd) .m-gnav .m-gnav-sp__menu > li:first-child {
    border-top: 2px dotted #ccc;
  }
  body:not(.notrwd) .m-gnav .m-gnav-sp__menu > li > a {
    padding: 13px 15px 12px;
    text-decoration: none;
    font-weight: normal;
    font-size: 12px;
  }
  body:not(.notrwd) .m-gnav .m-gnav-sp__menu > li > a > span.m-icon-blank:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 3px;
    right: 0;
    border: 0;
    width: 12px;
    height: 12px;
    background: url(/resources/img/icon_blank.svg) no-repeat 0 0;
    background-size: 12px 12px;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  body:not(.notrwd) .m-gnav .m-gnav-sp__util {
    padding: 20px 15px;
  }
  body:not(.notrwd) .m-gnav .m-gnav-sp__util .m-linklist-s {
    margin-top: 20px;
  }
  body:not(.notrwd) .m-gnav .m-gnav-sp__util .m-linklist-s > li {
    margin-top: 10px;
  }
  body:not(.notrwd) .m-gnav .m-gnav-sp__search {
    position: relative;
  }
  body:not(.notrwd) .m-gnav .m-gnav-sp__searchbox {
    width: 95%;
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-right: 0;
  }
  body:not(.notrwd) .m-gnav .m-gnav-sp__searchbtn {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 34px;
    height: 34px;
    background-color: #009ce5;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    box-sizing: border-box;
    padding-top: 10px;
    text-align: center;
  }
  body:not(.notrwd) .m-gnav .m-gnav-sp__btn {
    margin-top: 20px;
    padding: 10px;
    background-color: #00adff;
  }
  body:not(.notrwd) .m-gnav .m-gnav-sp__btn .m-btn-request {
    border: 0;
  }
  body:not(.notrwd) .m-gnav .m-gnav-sp__close {
    display: block;
    margin-top: 0;
  }
  body:not(.notrwd) .m-gnav .m-gnav-sp__close a {
    display: block;
    padding: 10px;
    background-color: #009ce5;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    color: #fff;
  }
  body:not(.notrwd) .m-gnav .m-gnav-sp__close a span {
    position: relative;
    padding-left: 24px;
  }
  body:not(.notrwd) .m-gnav .m-gnav-sp__close a span:before {
    content: "×";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
    font-size: 20px;
    color: #fff;
  }
}

/* PCドロップメニュー
--------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .m-dropmenubox {
    display: none;
  }
}

.m-dropmenubox {
  position: absolute;
  width: 100%;
  min-width: 1150px;
  background-color: #fff;
  z-index: 901;
  overflow: hidden;
}

.m-dropmenu {
  display: none;
  width: 1150px;
  margin: 0 auto;
  padding: 30px 0 35px;
}

.m-dropmenu__toplink {
  display: table;
  width: 100%;
  font-size: 16px;
}

.m-dropmenu__toplink > p {
  display: table-cell;
  vertical-align: top;
}

.m-dropmenu__toplink > p:last-child {
  text-align: right;
}

.m-dropmenu__toplink > p:last-child > a {
  position: relative;
  padding-left: 20px;
  text-decoration: none;
}

.m-dropmenu__toplink > p:last-child > a:before {
  content: "×";
  display: inline-block;
  position: absolute;
  top: 2px;
  left: 0;
  line-height: 1;
  font-size: 20px;
  color: #009ce5;
}

.m-dropmenu__product {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: 20px;
}

.m-dropmenu__product > li {
  width: 137px;
}

.m-dropmenu__product > li > a {
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-height: 100px;
  position: relative;
  background-color: #fff;
  border: 1px solid #b3b3b3;
  padding: 60px 7px 8px;
  box-shadow: 0 2px 0 0 #b3b3b3;
  margin-bottom: 2px;
  border-radius: 6px;
  text-align: center;
  line-height: 1.3;
  font-weight: bold;
  font-size: 16px;
  color: #333 !important;
  text-decoration: none !important;
  cursor: pointer;
}

.m-dropmenu__product > li > a:hover {
  background-color: #f2f2f2;
}

.m-dropmenu__product > li > a:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 50%;
  width: 30px;
  height: 30px;
  margin-left: -15px;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 30px 30px;
}

.m-dropmenu__product > li > a.m-dropmenu__medical {
  padding-top: 55px;
  line-height: 1;
}

.m-dropmenu__product > li > a.m-dropmenu__medical span {
  font-size: 12px;
}

.m-dropmenu__product > li > a.m-dropmenu__medical:before {
  top: 14px;
  background-image: url(/resources/img/icon_product_medical_s.svg);
}

.m-dropmenu__product > li > a.m-dropmenu__cancer:before {
  background-image: url(/resources/img/icon_product_cancer_s.svg);
}

.m-dropmenu__product > li > a.m-dropmenu__life {
  padding-top: 55px;
  line-height: 1;
}

.m-dropmenu__product > li > a.m-dropmenu__life span {
  font-size: 12px;
}

.m-dropmenu__product > li > a.m-dropmenu__life:before {
  top: 14px;
  background-image: url(/resources/img/icon_product_life_s.svg);
}

.m-dropmenu__product > li > a.m-dropmenu__child:before {
  background-image: url(/resources/img/icon_product_child_s.svg);
}

.m-dropmenu__product > li > a.m-dropmenu__other:before {
  background-image: url(/resources/img/icon_product_other_s.svg);
}

.m-dropmenu__product > li > a.m-dropmenu__marketlink {
  font-size: 16px;
}

.m-dropmenu__product > li > a.m-dropmenu__marketlink:before {
  top: 18px;
  width: 28px;
  height: 28px;
  margin-left: -14px;
  background-image: url(/resources/img/icon_shisankeise.svg);
  background-size: 30px 30px;
}

.m-dropmenu__product > li > a.m-dropmenu__direct {
  padding: 55px 10px 6px;
  font-size: 14px;
}

.m-dropmenu__product > li > a.m-dropmenu__direct:before {
  top: 18px;
  width: 28px;
  height: 28px;
  margin-left: -14px;
  background-image: url(/resources/img/icon_direct.svg);
  background-size: 28px 28px;
}

.m-dropmenu__product > li > a.m-dropmenu__corporate {
  font-size: 14px;
}

.m-dropmenu__product > li > a.m-dropmenu__corporate:before {
  width: 32px;
  height: 26px;
  margin-left: -16px;
  background-image: url(/resources/img/icon_corporate.svg);
  background-size: 32px 26px;
}

.m-dropmenu__links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: 20px;
}

.m-dropmenu__links > li {
  display: table;
  width: 214px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
}

.m-dropmenu__links > li > a {
  display: table-cell;
  vertical-align: middle;
  box-sizing: border-box;
  position: relative;
  height: 60px;
  padding: 8px 10px 8px 27px;
  text-decoration: none;
}

.m-dropmenu__links > li > a:hover {
  text-decoration: underline !important;
}

.m-dropmenu__links > li > a:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 10px;
  width: 5px;
  height: 5px;
  margin-top: -5px;
  border-top: 2px solid #009ce5;
  border-right: 2px solid #009ce5;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.m-dropmenu__links > li > a.m-dropmenu__consul {
  padding-left: 30px;
}

.m-dropmenu__links > li > a.m-dropmenu__consul:before {
  top: 50%;
  left: 10px;
  width: 12px;
  height: 14px;
  margin-top: -8px;
  border: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  background: url(/resources/img/icon_consul.svg) no-repeat 0 0;
  background-size: 12px 14px;
}

.m-dropmenu__links > li > a.m-dropmenu__simulation {
  padding-left: 30px;
}

.m-dropmenu__links > li > a.m-dropmenu__simulation:before {
  top: 50%;
  left: 10px;
  width: 12px;
  height: 14px;
  margin-top: -8px;
  border: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  background: url(/resources/img/icon_simulation.svg) no-repeat 0 0;
  background-size: 12px 14px;
}

.m-dropmenu .m-btn-col3 {
  margin-top: 20px;
}

.m-dropmenu .m-btn-col3 > li {
  margin-top: 16px;
}

.m-dropmenu .m-btn-col3 > li:first-child {
  margin-left: 0;
}

.m-dropmenu .m-btn-col3 > li:nth-child(3n+1) {
  margin-left: 0;
}

.m-dropmenu .m-btn-col3 > li:nth-child(-n+3) {
  margin-top: 0;
}

.m-dropmenu .m-btn-col3 .m-btn, .m-dropmenu .m-btn-col3 .m-btn-back, .m-dropmenu .m-btn-col3 .m-btn-down {
  padding-left: 20px;
  padding-right: 15px;
  text-align: left;
  font-size: 16px;
}

.m-dropmenu .m-btn-col3 .m-btn.m-btn-mltrow {
  padding: 7px 15px 7px 20px;
}

/*-------------------------------------------------------------------------
 footer
--------------------------------------------------------------------------*/
.is-narrow .m-footer #tbgcFooterUtility > ul {
  width: 930px;
}

.is-narrow .m-footer #tbgcFooterGroup {
  max-width: 930px;
}

.is-narrow .m-footer__pagetop {
  width: 890px;
}

@media screen and (max-width: 767px) {
  body:not(.notrwd).is-narrow .m-footer #tbgcFooterUtility > ul {
    width: 100%;
  }
  body:not(.notrwd).is-narrow .m-footer #tbgcFooterGroup {
    width: 100%;
  }
  body:not(.notrwd).is-narrow .m-footer__pagetop {
    width: 100%;
  }
}

/* footer
--------------------------------------------------------*/
.m-footer-links {
  width: 100%;
  border-top: 1px solid #009ce5;
}

.m-footer-links__inner {
  width: 1190px;
  margin: 0 auto;
  padding: 28px 20px;
  box-sizing: border-box;
}

.m-footer-group {
  width: 100%;
  border-top: 1px solid #009ce5;
}

.m-footer-group__inner {
  width: 1190px;
  margin: 0 auto;
  padding: 18px 20px;
  box-sizing: border-box;
  display: table;
}

.m-footer-group__logo {
  display: table-cell;
  vertical-align: middle;
  width: 242px;
}

.m-footer-group__logo > img {
  width: 242px;
  height: auto;
}

.m-footer-group__link {
  display: table-cell;
  vertical-align: middle;
}

.m-footer-group__link > ul {
  overflow: hidden;
}

.m-footer-group__link > ul > li {
  float: left;
  margin-left: 60px;
}

.m-footer-group__link > ul > li > a {
  text-decoration: none;
  font-size: 12px;
  color: #333;
}

.m-footer-group__link > ul > li > a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  body:not(.notrwd) .m-footer-links {
    display: none;
  }
  body:not(.notrwd) .m-footer-group {
    width: 100%;
    border-top: 2px solid #009ce5;
  }
  body:not(.notrwd) .m-footer-group__inner {
    display: block;
    width: 100%;
    padding: 18px 10px 14px;
  }
  body:not(.notrwd) .m-footer-group__logo {
    display: block;
    width: 164px;
  }
  body:not(.notrwd) .m-footer-group__logo > img {
    width: 164px;
  }
  body:not(.notrwd) .m-footer-group__link {
    display: block;
  }
  body:not(.notrwd) .m-footer-group__link > ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
            align-items: stretch;
    margin-top: 7px;
    font-size: 0;
  }
  body:not(.notrwd) .m-footer-group__link > ul > li {
    float: none;
    display: inline-block;
    width: 46%;
    margin-left: 0;
    margin-top: 8px;
    padding-right: 8px;
    box-sizing: border-box;
    font-size: 12px;
  }
  body:not(.notrwd) .m-footer-group__link > ul > li:nth-child(even) {
    width: 54%;
    padding-right: 0;
  }
}

/* 関連リンク
--------------------------------------------------------*/
.m-footer-linkcol {
  display: table;
  margin-left: -30px;
}

.m-footer-linkcol__col {
  display: table-cell;
  width: 280px;
  padding-left: 30px;
}

.m-footer-linkcol__col:nth-child(3) {
  width: 300px;
}

.m-footer-linkcol__col:nth-child(4) {
  width: 200px;
}

.m-footer-linkcol__col > ul > li {
  margin-top: 30px;
  font-weight: bold;
  font-size: 16px;
}

.m-footer-linkcol__col > ul > li:first-child {
  margin-top: 0;
}

.m-footer-linkcol__col > ul > li a {
  text-decoration: none;
}

.m-footer-linkcol__col > ul > li a:hover {
  text-decoration: underline;
}

.m-footer-linkcol__col > ul > li > ul {
  margin-top: 14px;
}

.m-footer-linkcol__col > ul > li > ul > li {
  margin-top: 10px;
  line-height: 1.3;
  font-weight: normal;
  font-size: 14px;
}

.m-footer-linkcol__col > ul > li > ul > li > a {
  display: inline-block;
  position: relative;
  padding-left: 18px;
  text-decoration: none;
}

.m-footer-linkcol__col > ul > li > ul > li > a:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #009ce5;
  -webkit-transition: all .3s;
          transition: all .3s;
}

.m-footer-linkcol__col > ul > li > ul > li > a:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 3px;
  width: 3px;
  height: 3px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* floating pagetop
--------------------------------------------------------*/
.m-pagetop {
  clear: both;
  position: fixed;
  margin: 0;
  padding: 0;
  right: 30px;
  bottom: 30px;
  top: auto;
  z-index: 700;
  -webkit-transition: all .3s;
          transition: all .3s;
}

.m-pagetop > a {
  content: "";
  display: block;
  box-sizing: border-box;
  position: relative;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 12px;
  border-radius: 50%;
  border: 1px solid #009ce5;
  background-color: rgba(255, 255, 255, .6);
  -webkit-transition: opacity .3s;
          transition: opacity .3s;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .2);
  text-indent: -9999px;
}

.m-pagetop > a:hover {
  opacity: .6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
      filter: alpha(opacity=60);
}

.m-pagetop > a:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 18px;
  width: 8px;
  height: 8px;
  border-top: 3px solid #009ce5;
  border-right: 3px solid #009ce5;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media screen and (max-width: 767px) {
  body:not(.notrwd) .m-pagetop {
    right: 15px;
    bottom: 15px;
  }
  body:not(.notrwd) .m-pagetop > a {
    width: 40px;
    height: 40px;
  }
  body:not(.notrwd) .m-pagetop > a:after {
    top: 16px;
    left: 14px;
  }
}

/*-------------------------------------------------------------------------
 contents
--------------------------------------------------------------------------*/
.m-skipmenu {
  position: absolute;
  top: -1000px;
  left: -1000px;
}

.m-container {
  max-width: 1366px;
  min-width: 1190px;
  background-color: #fff;
  margin: 0 auto;
  position: relative;
}

.m-container.is-narrow {
  min-width: 930px;
}

.m-container.is-narrow .m-content {
  width: 890px;
}

.m-content {
  width: 1150px;
  min-height: 500px;
  margin: 0 auto;
  padding: 22px 20px 60px;
  *zoom: 1;
}

.m-content > :first-child {
  margin-top: 0;
}

.m-content > :last-child {
  margin-bottom: 0;
}

.m-content:after {
  content: ".";
  display: block;
  visibility: hidden;
  font-size: 0;
  height: 0;
  clear: both;
}

.m-content-main {
  float: left;
  width: 890px;
}

.m-content-side {
  float: right;
  width: 220px;
}

@media screen and (max-width: 767px) {
  body:not(.notrwd) .m-container {
    max-width: inherit;
    min-width: inherit;
    width: 100%;
    position: static;
  }
  body:not(.notrwd) .m-container.is-narrow {
    min-width: inherit;
    width: 100%;
  }
  body:not(.notrwd) .m-container.is-narrow .m-content {
    width: 100%;
  }
  body:not(.notrwd) .m-content {
    width: 100%;
    min-height: inherit;
    margin: 0 auto;
    padding: 10px 15px 30px;
    box-sizing: border-box;
  }
  body:not(.notrwd) .m-content-main {
    float: none;
    width: 100%;
  }
  body:not(.notrwd) .m-content-side {
    float: none;
    width: 100%;
    margin-top: 40px;
  }
}

/* path
--------------------------------------------------------*/
.m-path {
  width: 1150px;
  margin: 0 auto;
  padding: 22px 20px 0;
  font-size: 12px;
}

.m-path > ol {
  overflow: hidden;
}

.m-path > ol > li {
  float: left;
  position: relative;
  margin-right: 5px;
  padding-right: 17px;
}

.m-path > ol > li:after {
  content: ">";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
}

.m-path > ol > li:last-child:after {
  content: none;
}

.m-path > ol > li > a {
  text-decoration: underline;
}

.m-path > ol > li > a:hover {
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .m-path {
    width: 100%;
    margin-top: -8px;
    padding: 15px 15px 0;
    box-sizing: border-box;
    font-size: 10px;
  }
  .m-path > ol > li {
    margin-right: 5px;
    padding-right: 13px;
  }
  .m-path > ol > li > a:after {
    top: -3px;
  }
}

/*-------------------------------------------------------------------------
 side
--------------------------------------------------------------------------*/
/* サイドタイトル
--------------------------------------------------------*/
.m-sidettl {
  padding: 22px 8px 22px 15px;
  background-color: #009ce5;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  font-weight: bold;
  color: #fff;
}

.m-sidettl a {
  text-decoration: none;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .m-sidettl {
    margin: 0 -15px;
    padding: 15px 8px 15px 15px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    font-size: 18px;
  }
}

/* サイドメニュー
--------------------------------------------------------*/
.m-sidemenu {
  border-bottom: 1px solid #ccc;
}

.m-sidemenu > li {
  border-top: 1px solid #ccc;
}

.m-sidemenu > li > a,
.m-sidemenu > li > span {
  display: block;
  padding: 12px 10px 11px 12px;
  background-color: #fff;
  text-decoration: none;
}

.m-sidemenu > li > a:hover,
.m-sidemenu > li > span:hover {
  text-decoration: underline;
}

.m-sidemenu > li > a:hover > span:before,
.m-sidemenu > li > span:hover > span:before {
  left: 2px;
}

.m-sidemenu > li > a > span,
.m-sidemenu > li > span > span {
  display: block;
  position: relative;
  padding-left: 17px;
}

.m-sidemenu > li > a > span:before,
.m-sidemenu > li > span > span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 7px;
  left: 0;
  width: 5px;
  height: 5px;
  border-top: 2px solid #009ce5;
  border-right: 2px solid #009ce5;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.m-sidemenu > li > a.is-current,
.m-sidemenu > li > span.is-current {
  background-color: #d7d8d9;
  font-weight: bold;
}

.m-sidemenu > li > a.is-current > span:before,
.m-sidemenu > li > span.is-current > span:before {
  left: 2px;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}

.m-sidemenu > li > a.is-current + ul,
.m-sidemenu > li > span.is-current + ul {
  display: block;
}

.m-sidemenu > li > a.is-cur-nocld,
.m-sidemenu > li > span.is-cur-nocld {
  background-color: #d7d8d9;
  font-weight: bold;
}

.m-sidemenu > li > span:hover {
  text-decoration: none;
}

.m-sidemenu > li .m-icon-blank:after {
  margin-right: 0;
}

.m-sidemenu > li > ul {
  display: none;
}

.m-sidemenu > li > ul > li {
  border-top: 1px solid #ccc;
}

.m-sidemenu > li > ul > li > a {
  display: block;
  padding: 11px 12px 11px 30px;
  background-color: #f0f1f2;
  text-decoration: none;
  font-size: 14px;
}

.m-sidemenu > li > ul > li > a:hover {
  text-decoration: underline;
}

.m-sidemenu > li > ul > li > a:hover > span:before {
  left: 2px;
}

.m-sidemenu > li > ul > li > a > span {
  display: block;
  position: relative;
  padding-left: 14px;
}

.m-sidemenu > li > ul > li > a > span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 7px;
  left: 0;
  width: 4px;
  height: 4px;
  border-top: 1px solid #009ce5;
  border-right: 1px solid #009ce5;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.m-sidemenu > li > ul > li > a.is-current {
  pointer-events: none;
  font-weight: bold;
  color: #333;
}

@media screen and (max-width: 767px) {
  .m-sidemenu {
    margin: 0 -15px;
  }
  .m-sidemenu > li {
    font-size: 14px;
  }
  .m-sidemenu > li > a {
    padding: 11px 20px 11px 15px;
  }
  .m-sidemenu > li > a > span {
    padding-left: 0;
    padding-right: 15px;
  }
  .m-sidemenu > li > a > span:before {
    left: auto;
    right: 0;
  }
  .m-sidemenu > li > a:hover > span:before {
    right: 0;
    left: auto;
  }
  .m-sidemenu > li > a.is-current > span:before {
    left: auto;
    right: -2px;
  }
  .m-sidemenu > li > ul > li > a {
    padding: 11px 20px 11px 25px;
    font-size: 12px;
  }
  .m-sidemenu > li > ul > li > a > span {
    padding-left: 0;
    padding-right: 15px;
  }
  .m-sidemenu > li > ul > li > a > span:before {
    left: auto;
    right: 0;
  }
  .m-sidemenu > li > ul > li > a:hover > span:before {
    right: 0;
    left: auto;
  }
}

/* サイドリンク
--------------------------------------------------------*/
.m-sidelinks {
  margin-top: 22px;
  padding-top: 3px;
  border-top: 1px dashed #ccc;
}

@media screen and (max-width: 767px) {
  .m-sidelinks {
    margin-top: 17px;
    padding-top: 3px;
  }
  .m-sidelinks .m-linklist > li > a {
    font-size: 14px;
  }
  .m-sidelinks .m-linklist > li > a:before {
    top: 4px;
  }
  .m-sidelinks .m-linklist > li > a:after {
    top: 8px;
  }
}

/* サイド内のボタン
--------------------------------------------------------*/
.m-content-side .m-btn, .m-content-side .m-btn-back, .m-content-side .m-btn-down {
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
}

/* 商品一覧ページ
--------------------------------------------------------*/
.m-sidebox {
  margin-top: 20px;
  padding: 12px 15px 15px;
  border: 1px solid #d5d5d5;
}

.m-sidebox__ttl {
  padding-bottom: 8px;
  border-bottom: 1px solid #009ce5;
  font-weight: bold;
}

.m-sidebox__body {
  margin-top: 10px;
  font-size: 14px;
}

.m-sidebox__body > p {
  margin-top: .7em;
}

.m-sidebox__text {
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .m-sidebox {
    margin-top: 15px;
  }
  .m-sidebox__ttl {
    padding-bottom: 3px;
    font-size: 16px;
  }
  .m-sidebox__body {
    overflow: hidden;
    margin-top: 10px;
    font-size: 12px;
  }
  .m-sidebox__img {
    float: left;
    width: 124px;
    margin-right: 10px;
  }
  .m-sidebox__img img {
    width: 100%;
  }
  .m-sidebox__text {
    overflow: hidden;
    margin-top: 0;
  }
}

.m-sidecontact {
  margin-top: 20px;
  padding: 12px 15px 15px;
  border: 1px solid #d5d5d5;
  background-color: #f0f1f2;
  font-size: 14px;
}
.m-sidecontact__kojin {
  margin-top: 20px;
  padding: 12px 15px 8px;
  border: 1px solid #d5d5d5;
  background-color: #f0f1f2;
  font-size: 14px;
}

.m-sidecontact dt {
  margin-bottom: 18px;
  font-weight: bold;
}

.m-sidecontact__tel {
  font-weight: bold;
  line-height: 1;
  font-size: 18px;
}

.m-sidecontact__tel > span {
  display: inline-block;
  position: relative;
  padding-left: 46px;
}

.m-sidecontact__tel > span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -4px;
  left: 0;
  width: 42px;
  height: 24px;
  background: url(/resources/img/icon_freedial.svg) no-repeat 0 0;
  background-size: 42px 24px;
}

.m-sidecontact__time {
  margin-top: 15px;
  padding-left: 5.2em;
  text-indent: -5.2em;
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  .m-sidecontact {
    margin-top: 15px;
    font-size: 12px;
  }
  .m-sidecontact dt {
    margin-bottom: 12px;
    font-weight: bold;
  }
  .m-sidecontact__tel {
    font-size: 24px;
  }
  .m-sidecontact__tel > span:before {
    top: 0;
  }
  .m-sidecontact__time {
    margin-top: 12px;
  }
}

.m-content-side .m-dotline-btm {
  margin-bottom: 20px;
  padding-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .m-content-side .m-dotline-btm {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  .m-content-side .m-btn span.m-btn-corporate, .m-content-side .m-btn-back span.m-btn-corporate, .m-content-side .m-btn-down span.m-btn-corporate {
    padding-left: 27px;
    font-size: 16px;
  }
  .m-content-side .m-btn span.m-btn-corporate:before, .m-content-side .m-btn-back span.m-btn-corporate:before, .m-content-side .m-btn-down span.m-btn-corporate:before {
    margin-top: -8px;
    width: 16px;
    height: 13px;
    background-size: 16px 13px;
  }
}

/*=========================================================================
//
// Module
//
==========================================================================*/
/*-------------------------------------------------------------------------
 heading
--------------------------------------------------------------------------*/
.m-heading1 {
  margin-bottom: 30px;
  padding: 15px 20px;
  background-color: #f0f1f2;
  line-height: 1.3;
  font-weight: bold;
  font-size: 28px;
}

.m-heading1__sub {
  display: block;
  line-height: 1.5;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .m-heading1 {
    margin-bottom: 15px;
    font-size: 22px;
  }
  .m-heading1__sub {
    font-size: 16px;
  }
}

/* h2
--------------------------------------------------------*/
.m-heading2 {
  margin: 46px 0 18px;
  padding-bottom: 7px;
  border-bottom: 5px solid #009ce5;
  line-height: 1.3;
  font-weight: bold;
  font-size: 28px;
}

.m-heading2__sub {
  line-height: 1.5;
  font-size: 18px;
}

.m-heading2 + * {
  margin-top: 0 !important;
}

.m-heading2__em {
  color: #c00;
}

.m-heading2--row {
  padding-top: 36px;
}

.m-heading2--mt10 {
  margin-top: 10px !important;
}

.m-heading2--mt20 {
  margin-top: 20px !important;
}

.m-heading2--mt30 {
  margin-top: 30px !important;
}

.m-heading2-nrw {
  margin: 36px 0 18px;
  padding-bottom: 7px;
  border-bottom: 5px solid #009ce5;
  line-height: 1.3;
  font-weight: bold;
  font-size: 28px;
}

.m-heading2-nrw + * {
  margin-top: 0 !important;
}

@media screen and (max-width: 767px) {
  .m-heading2,
  .m-heading2-nrw {
    margin: 30px 0 12px;
    padding-bottom: 4px;
    border-width: 4px;
    font-size: 20px;
  }
  .m-heading2__sub,
  .m-heading2-nrw__sub {
    font-size: 16px;
  }
}

.m-heading2-num {
  margin: 46px 0 18px;
  padding: 0 0 7px 40px;
  border-bottom: 5px solid #009ce5;
  text-indent: -40px;
  line-height: 1.3;
  font-weight: bold;
  font-size: 28px;
}

.m-heading2-num > span:first-child {
  margin-right: 10px;
}

.m-heading2-num + * {
  margin-top: 0 !important;
}

@media screen and (max-width: 767px) {
  .m-heading2-num {
    margin: 30px 0 12px;
    padding: 0 0 4px 29px;
    border-width: 4px;
    text-indent: -29px;
    font-size: 20px;
  }
  .m-heading2-num > span:first-child {
    margin-right: 8px;
  }
}

.m-heading2-link {
  margin: 46px 0 18px;
  padding-bottom: 7px;
  border-bottom: 5px solid #009ce5;
  line-height: 1.3;
  font-weight: bold;
  font-size: 28px;
}

.m-heading2-link + * {
  margin-top: 0 !important;
}

.m-heading2-link > a {
  display: inline-block;
  position: relative;
  padding: 0 0 0 38px;
  text-decoration: none;
  color: #333;
}

.m-heading2-link > a:before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 28px;
  height: 28px;
  background-color: #fff;
  border: 1px solid #b3b3b3;
  box-shadow: 0 2px 0 0 #b3b3b3;
  border-radius: 6px;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: all .3s;
          transition: all .3s;
}

.m-heading2-link > a:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 12px;
  left: 8px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #009ce5;
  border-right: 2px solid #009ce5;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.m-heading2-link > a:hover:before {
  background-color: #f2f2f2;
}

@media screen and (max-width: 767px) {
  .m-heading2-link {
    margin: 30px 0 12px;
    padding-bottom: 4px;
    border-width: 4px;
    font-size: 20px;
  }
  .m-heading2-link + * {
    margin-top: 15px;
  }
  .m-heading2-link > a {
    min-height: 20px;
    padding: 0 0 0 30px;
  }
  .m-heading2-link > a:before {
    top: 1px;
    left: 0;
    width: 20px;
    height: 20px;
    box-shadow: 0 1px 0 0 #b3b3b3;
    border-radius: 4px;
  }
  .m-heading2-link > a:after {
    top: 8px;
    left: 5px;
    width: 5px;
    height: 5px;
  }
}

/* h3
--------------------------------------------------------*/
.m-heading3 {
  margin: 32px 0 18px;
  padding: 8px 15px 6px 35px;
  background-color: #009ce5;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  position: relative;
}

.m-heading3:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 12px;
  left: 15px;
  width: 4px;
  height: 19px;
  background-color: #fff;
}

.m-heading3 + * {
  margin-top: 0 !important;
}

@media screen and (max-width: 767px) {
  .m-heading3 {
    margin-top: 20px;
    padding: 8px 10px 6px 28px;
    line-height: 1.5;
    font-size: 18px;
  }
  .m-heading3:after {
    top: 11px;
    left: 12px;
    width: 3px;
  }
}

.m-heading3-num {
  margin: 32px 0 18px;
  padding: 8px 15px 6px 47px;
  background-color: #009ce5;
  text-indent: -32px;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
}

.m-heading3-num > span:first-child {
  margin-right: 10px;
}

.m-heading3-num + * {
  margin-top: 0 !important;
}

@media screen and (max-width: 767px) {
  .m-heading3-num {
    margin-top: 20px;
    padding: 8px 10px 6px 42px;
    text-indent: -32px;
    line-height: 1.5;
    font-size: 18px;
  }
  .m-heading3-num > span:first-child {
    margin-right: 8px;
  }
}

.m-heading3-link {
  margin: 32px 0 18px;
  padding: 8px 15px 6px 12px;
  background-color: #009ce5;
  font-weight: bold;
  font-size: 20px;
}

.m-heading3-link > a {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  text-decoration: none !important;
  color: #fff;
}

.m-heading3-link > a:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  box-shadow: 0 3px 0 0 #b3b3b3;
  background-color: #fff;
  -webkit-transition: all .3s;
          transition: all .3s;
}

.m-heading3-link > a:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 9px;
  left: 5px;
  width: 5px;
  height: 5px;
  border-top: 2px solid #009ce5;
  border-right: 2px solid #009ce5;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.m-heading3-link + * {
  margin-top: 0 !important;
}

@media screen and (max-width: 767px) {
  .m-heading3-link {
    margin-top: 20px;
    padding: 8px 10px 6px 12px;
    line-height: 1.5;
    font-size: 18px;
  }
  .m-heading3-link > a {
    padding-left: 28px;
    color: #fff;
  }
  .m-heading3-link > a:before {
    top: 3px;
  }
  .m-heading3-link > a:after {
    top: 9px;
  }
}

.m-heading3-s {
  margin: 32px 0 18px;
  padding: 7px 15px 6px 20px;
  background-color: #dcf0fa;
  font-weight: bold;
  font-size: 18px;
  position: relative;
}

.m-heading3-s > a {
  color: #333;
}

.m-heading3-s:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: #009ce5;
}

.m-heading3-s__em {
  color: #009ce5;
}

.m-heading3-s + * {
  margin-top: 0 !important;
}

@media screen and (max-width: 767px) {
  .m-heading3-s {
    margin-top: 20px;
    padding: 8px 10px 7px 15px;
    line-height: 1.5;
    font-size: 16px;
  }
}

/* h4
--------------------------------------------------------*/
.m-heading4 {
  margin: 30px 0 13px;
  padding: 6px 13px 5px;
  border: 1px solid #009ce5;
  font-weight: bold;
  font-size: 18px;
}

.m-heading4 + * {
  margin-top: 0 !important;
}

.m-heading4-num {
  margin: 30px 0 13px;
  padding: 6px 13px 5px 42px;
  border: 1px solid #009ce5;
  text-indent: -29px;
  font-weight: bold;
  font-size: 18px;
}

.m-heading4-num > span:first-child {
  margin-right: 10px;
}

.m-heading4-num + * {
  margin-top: 0 !important;
}

@media screen and (max-width: 767px) {
  .m-heading4 {
    margin-top: 20px;
    padding: 5px 8px 4px 10px;
    line-height: 1.5;
    font-size: 16px;
  }
  .m-heading4-num {
    margin-top: 20px;
    padding: 5px 8px 4px 37px;
    text-indent: -29px;
    line-height: 1.5;
    font-size: 16px;
  }
  .m-heading4-num > span:first-child {
    margin-right: 10px;
  }
}

.m-heading1 + .m-heading2 {
  margin-top: 25px !important;
}

.m-heading2 + .m-heading3 {
  margin-top: 30px !important;
}

.m-heading3 + .m-heading4,
.m-heading3 + .m-acc .m-heading4:first-child {
  margin-top: 20px !important;
}

/* 背景画像付き見出し
--------------------------------------------------------*/
.m-bgttl {
  display: table;
  width: 1150px;
  height: 160px;
}

.m-bgttl__inner {
  display: table-cell;
  vertical-align: middle;
  padding: 15px 25px;
}

.m-bgttl__ttl {
  line-height: 1.3;
  font-weight: bold;
  font-size: 28px;
}

.m-bgttl__subttl {
  margin-top: 5px;
}

.m-bgttl.is-about {
  background: url(/company/img/bg_bgttl.jpg) no-repeat 0 0;
}

.m-bgttl.is-product {
  background: url(/product/img/bg_bgttl.jpg) no-repeat 0 0;
}

.m-bgttl.is-consult {
  background: url(/kojin/consult/img/bg_bgttl.jpg) no-repeat 0 0;
}

.m-bgttl.is-kojin {
  background: url(/kojin/img/bg_bgttl.jpg) no-repeat 0 0;
}

@media screen and (max-width: 767px) {
  .m-bgttl {
    width: 100%;
    height: 0;
  }
  .m-bgttl__inner {
    padding: 10px;
    background-color: #f0f1f2;
  }
  .m-bgttl__ttl {
    font-size: 20px;
  }
  .m-bgttl__subttl {
    margin-top: 5px;
  }
  .m-bgttl.is-about {
    background: url(/company/img/bg_bgttl.jpg) no-repeat bottom right;
    padding-bottom: 13.91%;
    background-size: contain;
  }
  .m-bgttl.is-product {
    background: url(/product/img/bg_bgttl.jpg) no-repeat bottom right;
    padding-bottom: 17.97%;
    background-size: contain;
  }
  .m-bgttl.is-consult {
    background: url(/kojin/consult/img/bg_bgttl.jpg) no-repeat bottom right;
    padding-bottom: 17.97%;
    background-size: contain;
  }
  .m-bgttl.is-kojin {
    background: url(/kojin/img/bg_bgttl.jpg) no-repeat bottom right;
    padding-bottom: 17.97%;
    background-size: contain;
  }
}

/*-------------------------------------------------------------------------
 text
--------------------------------------------------------------------------*/
.m-xxxxxlarge {
  font-size: 28px !important;
}

.m-xxxxlarge {
  font-size: 26px !important;
}

.m-xxxlarge {
  font-size: 24px !important;
}

.m-xxlarge {
  font-size: 22px !important;
}

.m-xlarge {
  font-size: 20px !important;
}

.m-large {
  font-size: 18px !important;
}

.m-medium {
  font-size: 16px !important;
}

.m-small {
  font-size: 15px !important;
}

.m-xsmall {
  font-size: 14px !important;
}

.m-xxsmall {
  font-size: 13px !important;
}

.m-xxxsmall {
  font-size: 12px !important;
}

.m-xxxxsmall {
  font-size: 11px !important;
}

.m-xxxxxsmall {
  font-size: 10px !important;
}

.m-font-xxxl {
  font-size: 24px !important;
}

.m-font-xxl {
  font-size: 22px !important;
}

.m-font-xl {
  font-size: 20px !important;
}

.m-font-l {
  font-size: 18px !important;
}

.m-font-m {
  font-size: 16px !important;
}

.m-font-s {
  font-size: 14px !important;
}

.m-font-xs {
  font-size: 12px !important;
}

.m-font-mmq {
  font-size: 16px !important;
}

.m-font-smq {
  font-size: 14px !important;
}

@media screen and (max-width: 767px) {
  .m-font-xxxl {
    font-size: 20px !important;
  }
  .m-font-xxl {
    font-size: 18px !important;
  }
  .m-font-xl {
    font-size: 16px !important;
  }
  .m-font-l {
    font-size: 14px !important;
  }
  .m-font-m {
    font-size: 12px !important;
  }
  .m-font-s {
    font-size: 10px !important;
  }
  .m-font-xs {
    font-size: 10px !important;
  }
  .m-font-mmq {
    font-size: 14px !important;
  }
  .m-font-smq {
    font-size: 12px !important;
  }
}

.m-bold {
  font-weight: bold !important;
}

.m-normal {
  font-weight: normal !important;
}

.m-underline {
  text-decoration: underline !important;
}

.m-text-def {
  color: #333 !important;
}

.m-text-att {
  color: #c00 !important;
}

.m-text-key {
  color: #009ce5 !important;
}

.m-text-note {
  color: #666 !important;
}

.m-note {
  margin-top: .5em;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .m-note {
    margin-top: .5em;
    font-size: 10px;
  }
}

.m-text-emkey {
  font-weight: bold;
  font-size: 32px;
  color: #009ce5;
}

@media screen and (max-width: 767px) {
  .m-text-emkey {
    font-size: 22px;
  }
}

.m-signature {
  text-align: right;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .m-signature {
    margin-top: 12px;
    text-align: right;
    font-size: 11px;
  }
}

a.m-phonecall {
  pointer-events: none;
  text-decoration: none;
  color: #333;
}

@media screen and (max-width: 767px) {
  a.m-phonecall {
    pointer-events: auto;
    text-decoration: underline;
    color: #007ab2;
  }
}

.m-justify {
  text-align: justify;
  text-justify: inter-ideograph;
}

@media screen and (max-width: 767px) {
  .m-justify {
    text-align: justify;
    text-justify: inter-ideograph;
  }
}

.m-justify-center{
  -webkit-box-pack: center !important;
	-ms-flex-pack: center !important;
	justify-content: center !important;
}

/*-------------------------------------------------------------------------
 list
--------------------------------------------------------------------------*/
.m-list-dot, .m-index-list, .m-list-circle, .m-list-circle-s, .m-list-square, .m-list-nomark, .m-list-num, .m-list-alpha, .m-list-note, .m-list-numnote, .m-linklist,
.m-linklist-s {
  margin: 1em 0 0 0;
}

.m-font-s.m-list-dot, .m-font-s.m-index-list, .m-font-s.m-list-circle, .m-font-s.m-list-circle-s, .m-font-s.m-list-square, .m-font-s.m-list-nomark, .m-font-s.m-list-num, .m-font-s.m-list-alpha, .m-font-s.m-list-note, .m-font-s.m-list-numnote, .m-font-s.m-linklist,
.m-font-s.m-linklist-s, .m-font-smq.m-list-dot, .m-font-smq.m-index-list, .m-font-smq.m-list-circle, .m-font-smq.m-list-circle-s, .m-font-smq.m-list-square, .m-font-smq.m-list-nomark, .m-font-smq.m-list-num, .m-font-smq.m-list-alpha, .m-font-smq.m-list-note, .m-font-smq.m-list-numnote, .m-font-smq.m-linklist,
.m-font-smq.m-linklist-s {
  margin-top: .6em;
}

.m-list-dot > li, .m-index-list > li, .m-list-circle > li, .m-list-circle-s > li, .m-list-square > li, .m-list-nomark > li, .m-list-num > li, .m-list-alpha > li, .m-list-note > li, .m-list-numnote > li, .m-linklist > li,
.m-linklist-s > li {
  margin-top: .4em;
}

.m-list-dot > li:first-child, .m-index-list > li:first-child, .m-list-circle > li:first-child, .m-list-circle-s > li:first-child, .m-list-square > li:first-child, .m-list-nomark > li:first-child, .m-list-num > li:first-child, .m-list-alpha > li:first-child, .m-list-note > li:first-child, .m-list-numnote > li:first-child, .m-linklist > li:first-child,
.m-linklist-s > li:first-child {
  margin-top: 0;
}

.m-list-dot > li > ul, .m-index-list > li > ul, .m-list-circle > li > ul, .m-list-circle-s > li > ul, .m-list-square > li > ul, .m-list-nomark > li > ul, .m-list-num > li > ul, .m-list-alpha > li > ul, .m-list-note > li > ul, .m-list-numnote > li > ul, .m-linklist > li > ul,
.m-linklist-s > li > ul, .m-list-dot > li > ol, .m-index-list > li > ol, .m-list-circle > li > ol, .m-list-circle-s > li > ol, .m-list-square > li > ol, .m-list-nomark > li > ol, .m-list-num > li > ol, .m-list-alpha > li > ol, .m-list-note > li > ol, .m-list-numnote > li > ol, .m-linklist > li > ol,
.m-linklist-s > li > ol {
  margin-top: .5em;
  font-size: 14px;
}

.m-list-dot > li > ul > li, .m-index-list > li > ul > li, .m-list-circle > li > ul > li, .m-list-circle-s > li > ul > li, .m-list-square > li > ul > li, .m-list-nomark > li > ul > li, .m-list-num > li > ul > li, .m-list-alpha > li > ul > li, .m-list-note > li > ul > li, .m-list-numnote > li > ul > li, .m-linklist > li > ul > li,
.m-linklist-s > li > ul > li, .m-list-dot > li > ol > li, .m-index-list > li > ol > li, .m-list-circle > li > ol > li, .m-list-circle-s > li > ol > li, .m-list-square > li > ol > li, .m-list-nomark > li > ol > li, .m-list-num > li > ol > li, .m-list-alpha > li > ol > li, .m-list-note > li > ol > li, .m-list-numnote > li > ol > li, .m-linklist > li > ol > li,
.m-linklist-s > li > ol > li {
  margin-top: .3em;
}

.m-list--narrow.m-list-dot > li, .m-list--narrow.m-index-list > li, .m-list--narrow.m-list-circle > li, .m-list--narrow.m-list-circle-s > li, .m-list--narrow.m-list-square > li, .m-list--narrow.m-list-nomark > li, .m-list--narrow.m-list-num > li, .m-list--narrow.m-list-alpha > li, .m-list--narrow.m-list-note > li, .m-list--narrow.m-list-numnote > li, .m-list--narrow.m-linklist > li,
.m-list--narrow.m-linklist-s > li {
  margin-top: 0;
}

.m-list--narrow.m-list-dot > li:first-child, .m-list--narrow.m-index-list > li:first-child, .m-list--narrow.m-list-circle > li:first-child, .m-list--narrow.m-list-circle-s > li:first-child, .m-list--narrow.m-list-square > li:first-child, .m-list--narrow.m-list-nomark > li:first-child, .m-list--narrow.m-list-num > li:first-child, .m-list--narrow.m-list-alpha > li:first-child, .m-list--narrow.m-list-note > li:first-child, .m-list--narrow.m-list-numnote > li:first-child, .m-list--narrow.m-linklist > li:first-child,
.m-list--narrow.m-linklist-s > li:first-child {
  margin-top: 0;
}

.m-list--wide.m-list-dot > li, .m-list--wide.m-index-list > li, .m-list--wide.m-list-circle > li, .m-list--wide.m-list-circle-s > li, .m-list--wide.m-list-square > li, .m-list--wide.m-list-nomark > li, .m-list--wide.m-list-num > li, .m-list--wide.m-list-alpha > li, .m-list--wide.m-list-note > li, .m-list--wide.m-list-numnote > li, .m-list--wide.m-linklist > li,
.m-list--wide.m-linklist-s > li {
  margin-top: 1em;
}

.m-list--wide.m-list-dot > li:first-child, .m-list--wide.m-index-list > li:first-child, .m-list--wide.m-list-circle > li:first-child, .m-list--wide.m-list-circle-s > li:first-child, .m-list--wide.m-list-square > li:first-child, .m-list--wide.m-list-nomark > li:first-child, .m-list--wide.m-list-num > li:first-child, .m-list--wide.m-list-alpha > li:first-child, .m-list--wide.m-list-note > li:first-child, .m-list--wide.m-list-numnote > li:first-child, .m-list--wide.m-linklist > li:first-child,
.m-list--wide.m-linklist-s > li:first-child {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .m-list-dot, .m-index-list, .m-list-circle, .m-list-circle-s, .m-list-square, .m-list-nomark, .m-list-num, .m-list-alpha, .m-list-note, .m-list-numnote, .m-linklist,
  .m-linklist-s {
    margin: .6em 0 0 0;
  }
  .m-list-dot > li > ul, .m-index-list > li > ul, .m-list-circle > li > ul, .m-list-circle-s > li > ul, .m-list-square > li > ul, .m-list-nomark > li > ul, .m-list-num > li > ul, .m-list-alpha > li > ul, .m-list-note > li > ul, .m-list-numnote > li > ul, .m-linklist > li > ul,
  .m-linklist-s > li > ul, .m-list-dot > li > ol, .m-index-list > li > ol, .m-list-circle > li > ol, .m-list-circle-s > li > ol, .m-list-square > li > ol, .m-list-nomark > li > ol, .m-list-num > li > ol, .m-list-alpha > li > ol, .m-list-note > li > ol, .m-list-numnote > li > ol, .m-linklist > li > ol,
  .m-linklist-s > li > ol {
    margin-top: .4em;
    font-size: 11px;
  }
  .m-list-dot > li > ul > li, .m-index-list > li > ul > li, .m-list-circle > li > ul > li, .m-list-circle-s > li > ul > li, .m-list-square > li > ul > li, .m-list-nomark > li > ul > li, .m-list-num > li > ul > li, .m-list-alpha > li > ul > li, .m-list-note > li > ul > li, .m-list-numnote > li > ul > li, .m-linklist > li > ul > li,
  .m-linklist-s > li > ul > li, .m-list-dot > li > ol > li, .m-index-list > li > ol > li, .m-list-circle > li > ol > li, .m-list-circle-s > li > ol > li, .m-list-square > li > ol > li, .m-list-nomark > li > ol > li, .m-list-num > li > ol > li, .m-list-alpha > li > ol > li, .m-list-note > li > ol > li, .m-list-numnote > li > ol > li, .m-linklist > li > ol > li,
  .m-linklist-s > li > ol > li {
    margin-top: .2em;
  }
}

/* ドットリスト
--------------------------------------------------------*/
.m-list-dot > li {
  position: relative;
  padding-left: 1.2em;
}

.m-list-dot > li:before {
  content: "・";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

/* 目次リスト
--------------------------------------------------------*/
.m-index-list > li {
  display: table;
  width: 100%;
  padding-left: 1.2em;
  position: relative;
  box-sizing: border-box;
}

.m-index-list > li:before {
  content: "・";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.m-index-list > li > span:first-child {
  display: table-cell;
  vertical-align: top;
  padding-right: 15px;
  box-sizing: border-box;
}

.m-index-list > li > span:last-child {
  display: table-cell;
  vertical-align: bottom;
  text-align: right;
  white-space: nowrap;
  box-sizing: border-box;
}

.m-index-dl {
  margin-top: 15px;
}

.m-index-dl > dt {
  display: table;
  width: 100%;
  font-weight: bold;
  box-sizing: border-box;
}

.m-index-dl > dt > span:first-child {
  display: table-cell;
  vertical-align: top;
  padding-right: 15px;
  box-sizing: border-box;
}

.m-index-dl > dt > span:last-child {
  display: table-cell;
  vertical-align: bottom;
  text-align: right;
  white-space: nowrap;
  box-sizing: border-box;
}

.m-index-dl > dd {
  margin-top: 10px;
}

.m-index-dl > dd > :first-child {
  margin-top: 0;
}

.m-index-dl > dd.is-none {
  margin-top: 0;
  font-size: 0;
}

@media screen and (max-width: 767px) {
  .m-index-dl > dd {
    margin-top: 6px;
  }
}

/* ドットリスト（大）
--------------------------------------------------------*/
.m-list-circle > li {
  position: relative;
  padding-left: 1.2em;
}

.m-list-circle > li:before {
  content: "●";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  color: #666;
}

.m-list-circle.m-text-att > li:before {
  color: #c00;
}

.m-list-circle-s > li {
  list-style-type: circle;
  margin-left: 25px;
}

/* スクエアリスト
--------------------------------------------------------*/
.m-list-square > li {
  position: relative;
  padding-left: 1.2em;
}

.m-list-square > li:before {
  content: "■";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

/* アイコンなしリスト
--------------------------------------------------------*/
.m-list-nomark > li {
  margin-top: .4em;
  list-style: none;
}

@media screen and (max-width: 767px) {
  .m-list-nomark > li {
    margin-top: .2em;
  }
}

/* 数字リスト
--------------------------------------------------------*/
.m-list-num > li {
  list-style-type: decimal;
  margin-left: 1.5em;
  font-weight: bold;
}

.m-list-num > li > span {
  font-weight: normal;
}

.m-list-num > li li {
  font-weight: normal;
}

.m-list-num-none > li{
  list-style-type: none;
  margin-left: 0;
}

/* 小文字のアルファベットリスト
--------------------------------------------------------*/
.m-list-alpha > li {
  list-style-type: lower-alpha;
  margin-left: 1.5em;
  font-weight: bold;
}

.m-list-alpha > li > span {
  font-weight: normal;
}

.m-list-alpha > li li {
  font-weight: normal;
}

/* 注記リスト
--------------------------------------------------------*/
.m-list-note {
  margin-top: .7em;
  font-size: 14px;
}

.m-list-note > li {
  padding-left: 1em;
  text-indent: -1em;
}

@media screen and (max-width: 767px) {
  .m-list-note {
    font-size: 11px;
  }
}

/* 注記リスト （対応番号付き）
--------------------------------------------------------*/
.m-list-numnote {
  margin-top: .7em;
}

.m-list-numnote > li {
  padding-left: 2em;
  text-indent: -2em;
  font-size: 14px;
}

.m-list-numnote > li .m-list-numnote__cont {
  text-indent: 0;
  margin-top: 10px;
}

.m-list-numnote > li .m-list-numnote__cont > :first-child {
  margin-top: 0;
}

.m-list-numnote > li .m-list-numnote__cont > :last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .m-list-numnote > li {
    font-size: 10px;
  }
}

/* インラインリスト
--------------------------------------------------------*/
.m-list-inline,
.m-list-inline-mq {
  overflow: hidden;
}

.m-list-inline > li,
.m-list-inline-mq > li {
  float: left;
  margin-right: 30px;
  padding-top: 4px;
  padding-bottm: 4px;
}

.m-list-inline > li:last-child,
.m-list-inline-mq > li:last-child {
  margin-right: 0;
}

.m-list-inline.m-list-dot > li,
.m-list-inline-mq.m-list-dot > li {
  margin-top: 0;
}

.m-list-inline.m-list-dot > li:before,
.m-list-inline-mq.m-list-dot > li:before {
  top: 3px;
}

@media screen and (max-width: 767px) {
  .m-list-inline > li,
  .m-list-inline-mq > li {
    margin-right: 25px;
  }
  .m-list-inline-mq {
    overflow: hidden;
  }
  .m-list-inline-mq > li {
    float: none;
    margin: 0;
  }
  .m-list-inline-mq > li:first-child {
    margin-top: 0;
  }
}

/*--------------------------------------------------------
 リストオプション
--------------------------------------------------------*/
.m-list--float {
  overflow: hidden;
  margin-top: -4px !important;
  margin-bottom: -4px !important;
  margin-right: -50px;
}

.m-list--float > li {
  float: left;
  margin-top: 0;
  margin-right: 50px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.m-list--col2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
          align-items: stretch;
  margin-right: -30px;
}

.m-list--col2 > li {
  width: 50%;
  margin-top: 8px;
  padding-right: 30px;
  box-sizing: border-box;
}

.m-list--col2 > li:nth-child(-n+2) {
  margin-top: 0;
}

.m-list--col3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
          align-items: stretch;
  margin-right: -30px;
}

.m-list--col3 > li {
  width: 33.3333%;
  margin-top: 8px;
  padding-right: 30px;
  box-sizing: border-box;
}

.m-list--col3 > li:nth-child(-n+3) {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .m-list--float, .m-list--col2, .m-list--col3 {
    display: block;
    margin: 0;
    padding: 0;
  }
  .m-list--float > li, .m-list--col2 > li, .m-list--col3 > li {
    float: none;
    width: 100%;
    margin: 0;
    padding-right: 0;
  }
  .m-list--float > li:nth-child(-n+2), .m-list--float > li:nth-child(-n+3), .m-list--col2 > li:nth-child(-n+2), .m-list--col2 > li:nth-child(-n+3), .m-list--col3 > li:nth-child(-n+2), .m-list--col3 > li:nth-child(-n+3) {
    margin-top: 0;
  }
  .m-list--float > li:first-child, .m-list--col2 > li:first-child, .m-list--col3 > li:first-child {
    margin-top: 0;
  }
}

/*-------------------------------------------------------------------------
 dl
--------------------------------------------------------------------------*/
.m-dl {
  margin-top: 1em;
}

.m-dl > dt {
  margin-top: 15px;
  font-weight: bold;
}

.m-dl > dt:first-child {
  margin-top: 0;
}

.m-dl > dd {
  margin-top: 4px;
}

.m-dl > dd > :first-child {
  margin-top: 0;
}

.m-dl > dd > :last-child {
  margin-bottom: 0;
}

.m-dl-l {
  margin-top: 1em;
}

.m-dl-l > dt {
  margin-top: 15px;
  font-weight: bold;
  font-size: 18px;
}

.m-dl-l > dt:first-child {
  margin-top: 0;
}

.m-dl-l > dd {
  margin-top: 6px;
}

.m-dl-l > dd > :first-child {
  margin-top: 0;
}

.m-dl-l > dd > :last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .m-dl-l > dt {
    font-size: 14px;
  }
  .m-dl-l > dd {
    margin-top: 3px;
  }
}

.m-dl-s {
  margin-top: 1em;
}

.m-dl-s > dt {
  margin-top: 10px;
  font-weight: bold;
}

.m-dl-s > dt:first-child {
  margin-top: 0;
}

.m-dl-s > dd {
  margin-top: 4px;
  font-size: 14px;
}

.m-dl-s > dd > :first-child {
  margin-top: 0;
}

.m-dl-s > dd > :last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .m-dl-s > dt {
    font-size: 14px;
  }
  .m-dl-s > dd {
    font-size: 12px;
  }
}

/* 【オプション】 区切り点線
--------------------------------------------------------*/
.m-dl--line > dt {
  margin-top: 0;
  padding-top: 10px;
}

.m-dl--line > dt:first-child {
  padding-top: 0;
}

.m-dl--line > dd {
  padding-bottom: 10px;
  border-bottom: 1px dashed #ccc;
}

/*-------------------------------------------------------------------------
 link
--------------------------------------------------------------------------*/
.m-icon-arrow, .m-icon-arrow-s, .m-icon-back {
  display: inline-block;
  position: relative;
  padding-left: 22px;
  text-decoration: none !important;
}

.m-icon-arrow:hover, .m-icon-arrow-s:hover, .m-icon-back:hover {
  text-decoration: underline !important;
}

.m-icon-arrow.decnone:hover, .m-icon-arrow-s.decnone:hover, .m-icon-back.decnone:hover {
  text-decoration: none !important;
}

.m-icon-arrow:before, .m-icon-arrow-s:before, .m-icon-back:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #009ce5;
  -webkit-transition: all .3s;
          transition: all .3s;
}

.m-icon-arrow:after, .m-icon-arrow-s:after, .m-icon-back:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 4px;
  height: 4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

/* 基本リンク
--------------------------------------------------------*/
.m-icon-arrow:after {
  top: 8px;
  left: 4px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.m-icon-arrow-s {
  padding-left: 18px;
  font-size: 14px;
}

.m-icon-arrow-s:before {
  top: 4px;
  width: 12px;
  height: 12px;
}

.m-icon-arrow-s:after {
  top: 8px;
  left: 3px;
  width: 3px;
  height: 3px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .m-icon-arrow,
  .m-icon-arrow-s {
    padding-left: 18px;
    font-size: 12px;
  }
  .m-icon-arrow:before,
  .m-icon-arrow-s:before {
    top: 3px;
    width: 13px;
    height: 13px;
  }
  .m-icon-arrow:after,
  .m-icon-arrow-s:after {
    top: 7px;
    left: 3px;
    width: 4px;
    height: 4px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}

/* 戻るリンク
--------------------------------------------------------*/
.m-icon-back:after {
  top: 8px;
  left: 6px;
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

@media screen and (max-width: 767px) {
  .m-icon-back {
    padding-left: 18px;
    font-size: 12px;
  }
  .m-icon-back:before {
    top: 3px;
    width: 13px;
    height: 13px;
  }
  .m-icon-back:after {
    top: 7px;
    left: 5px;
    width: 4px;
    height: 4px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}

/* 説明を開くリンク
--------------------------------------------------------*/
.m-icon-q:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  height: 14px;
  background: url(/resources/img/icon_question.svg) no-repeat 0 0;
  background-size: 14px 14px;
  margin-top: -2px;
  margin-left: 7px;
  margin-right: 7px;
}

@media screen and (max-width: 767px) {
  .m-icon-q:after {
    width: 12px;
    height: 12px;
    background-size: 12px 12px;
    margin-left: 5px;
    margin-right: 5px;
  }
}

/* blank
--------------------------------------------------------*/
.m-icon-blank:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  margin-right: 8px;
  background: url(/resources/img/icon_blank.svg) no-repeat 0 0;
  background-size: 12px 12px;
}

.m-icon-blank-w:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  margin-right: 8px;
  background: url(/resources/img/icon_blank_w.svg) no-repeat 0 0;
  background-size: 12px 12px;
}

.m-icon-blank-b:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  margin-right: 8px;
  background: url(/resources/img/icon_blank_b.svg) no-repeat 0 0;
  background-size: 12px 12px;
}

/* pdf
--------------------------------------------------------*/
.m-icon-pdf:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 15px;
  margin: -1px 8px 0;
  background: url(/resources/img/icon_pdf.svg) no-repeat 0 0;
  background-size: 12px 15px;
}

/* リンクリスト
--------------------------------------------------------*/
.m-linklist > li > a,
.m-linklist-s > li > a {
  position: relative;
  display: inline-block;
  padding-left: 22px;
  text-decoration: none;
}

.m-linklist > li > a:hover,
.m-linklist-s > li > a:hover {
  text-decoration: underline;
}

.m-linklist > li > a:before,
.m-linklist-s > li > a:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #009ce5;
  -webkit-transition: all .3s;
          transition: all .3s;
}

.m-linklist > li > a:after,
.m-linklist-s > li > a:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 4px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.m-linklist > li > a.is-current,
.m-linklist-s > li > a.is-current {
  pointer-events: none;
  font-weight: bold;
  color: #333;
}

.m-linklist-s > li {
  margin-top: .1em;
}

.m-linklist-s > li > a {
  padding-left: 18px;
  font-size: 14px;
}

.m-linklist-s > li > a:before {
  top: 4px;
  width: 12px;
  height: 12px;
}

.m-linklist-s > li > a:after {
  left: 3px;
  width: 3px;
  height: 3px;
  border-top-width: 1px;
  border-right-width: 1px;
}

@media screen and (max-width: 767px) {
  .m-linklist > li,
  .m-linklist-s > li {
    margin-top: .4em;
  }
  .m-linklist > li > a,
  .m-linklist-s > li > a {
    padding-left: 18px;
    font-size: 12px;
  }
  .m-linklist > li > a:before,
  .m-linklist-s > li > a:before {
    top: 3px;
    width: 13px;
    height: 13px;
  }
  .m-linklist > li > a:after,
  .m-linklist-s > li > a:after {
    top: 7px;
    left: 3px;
    width: 4px;
    height: 4px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}

/* 【オプション】 区切り点線あり
--------------------------------------------------------*/
.m-linklist--line {
  margin-top: 10px;
}

.m-linklist--line > li {
  margin-top: 0;
  padding: 7px 0;
  border-bottom: 1px dashed #ccc;
}

@media screen and (max-width: 767px) {
  .m-linklist--line > li {
    padding: 8px 0;
  }
  .m-linklist--line > li:first-child {
    padding-top: 0;
  }
}

/* ページ内リンク
--------------------------------------------------------*/
.m-locallink > li > a {
  position: relative;
  display: inline-block;
  padding-left: 18px;
  text-decoration: none;
}

.m-locallink > li > a:hover {
  text-decoration: underline;
}

.m-locallink > li > a:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 7px;
  height: 7px;
  border-top: 2px solid #009ce5;
  border-right: 2px solid #009ce5;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}

@media screen and (max-width: 767px) {
  .m-locallink > li > a {
    padding-left: 16px;
    font-size: 12px;
  }
  .m-locallink > li > a:before {
    top: 5px;
    width: 5px;
    height: 5px;
  }
}

/* 日付つきリンク
--------------------------------------------------------*/
.m-datelink > dl {
  padding: 11px 0;
  border-bottom: 1px dashed #ccc;
  overflow: hidden;
}

.m-datelink > dl:first-child {
  padding-top: 0;
}

.m-datelink > dl > dt {
  width: 8em;
  float: left;
}

.m-datelink > dl > dd {
  overflow: hidden;
}

.m-datelink > dl > dd > a {
  text-decoration: none;
}

.m-datelink > dl > dd > a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .m-datelink > dl {
    padding: 10px 0;
    overflow: visible;
    line-height: 1.5;
    font-size: 14px;
  }
  .m-datelink > dl > dt {
    width: auto;
    float: none;
  }
  .m-datelink > dl > dd {
    overflow: visible;
  }
}

/*--------------------------------------------------------
 リンクオプション
--------------------------------------------------------*/
.m-link--float {
  overflow: hidden;
  margin-top: -4px !important;
  margin-bottom: -4px !important;
  margin-left: -50px;
}

.m-link--float > li {
  float: left;
  margin-top: 0;
  margin-left: 50px;
  padding: 4px 0;
}

.m-link--col2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
          align-items: stretch;
  margin-left: -30px;
}

.m-link--col2 > li {
  width: 50%;
  margin-top: 18px;
  padding-left: 30px;
  box-sizing: border-box;
}

.m-link--col2 > li:nth-child(-n+2) {
  margin-top: 0;
}

.m-link--col3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
          align-items: stretch;
  margin-left: -30px;
}

.m-link--col3 > li {
  width: 33.3333%;
  margin-top: 18px;
  padding-left: 30px;
  box-sizing: border-box;
}

.m-link--col3 > li:nth-child(-n+3) {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .m-link--float, .m-link--col2, .m-link--col3 {
    display: block;
    margin: 0;
    padding: 0;
  }
  .m-link--float > li, .m-link--col2 > li, .m-link--col3 > li {
    float: none;
    width: 100%;
    margin: 8px 0 0;
    padding: 0;
  }
  .m-link--float > li:nth-child(-n+2), .m-link--float > li:nth-child(-n+3), .m-link--col2 > li:nth-child(-n+2), .m-link--col2 > li:nth-child(-n+3), .m-link--col3 > li:nth-child(-n+2), .m-link--col3 > li:nth-child(-n+3) {
    margin-top: 8px;
  }
  .m-link--float > li:first-child, .m-link--col2 > li:first-child, .m-link--col3 > li:first-child {
    margin-top: 0;
  }
}

/*-------------------------------------------------------------------------
 icon
--------------------------------------------------------------------------*/
/* コメント
--------------------------------------------------------*/
.m-icon-comment {
  display: block;
  position: relative;
  padding-left: 24px;
  font-size: 14px;
}

.m-icon-comment:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background: url(/resources/img/icon_comment.svg) no-repeat 0 0;
  background-size: 16px 16px;
}

@media screen and (max-width: 767px) {
  .m-icon-comment {
    padding-left: 22px;
    font-size: 10px;
  }
}

/* 注意アイコン
--------------------------------------------------------*/
.m-icon-att {
  position: relative;
  padding-left: 38px;
  min-height: 26px;
}

.m-icon-att:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: -3px;
  left: 0;
  width: 28px;
  height: 26px;
  background: url(/resources/img/icon_att.svg) no-repeat 0 0;
  background-size: 28px 26px;
}

/* 通販アイコン
--------------------------------------------------------*/
.m-icon-direct {
  display: block;
  position: relative;
  padding-left: 22px;
}

.m-icon-direct:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 4px;
  left: 0;
  width: 14px;
  height: 14px;
  background: url(/resources/img/icon_direct.svg) no-repeat 0 0;
  background-size: 14px 14px;
}

@media screen and (max-width: 767px) {
  .m-icon-direct:after {
    top: 2px;
  }
}

/* 対面アイコン
--------------------------------------------------------*/
.m-icon-person {
  display: block;
  position: relative;
  padding-left: 22px;
}

.m-icon-person:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 13px;
  height: 16px;
  background: url(/resources/img/icon_person.svg) no-repeat 0 0;
  background-size: 13px 16px;
}

@media screen and (max-width: 767px) {
  .m-icon-person:after {
    top: 1px;
  }
}

/* ネット通販アイコン_20170301
--------------------------------------------------------*/
.m-icon-netapply {
  position: relative;
  padding-left: 25px;
}

.m-icon-netapply:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -1px;
  left: 3px;
  width: 18px;
  height: 19px;
  background: url(/resources/img/icon_netapply_b.svg) no-repeat 0 0;
  background-size: 18px 19px;
  padding-left: 10px;
}

@media screen and (max-width: 767px) {
  .m-icon-netapply:before {
    top: -2px;
  }
}


/* おすすめアイコン
--------------------------------------------------------*/
.m-icon-rmd {
  position: relative;
  padding-left: 135px;
  min-height: 36px;
  padding-top: 6px;
  box-sizing: border-box;
}

.m-icon-rmd:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 116px;
  height: 36px;
  background: url(/resources/img/icon_recommend.svg) no-repeat 0 0;
  background-size: 116px 36px;
}

@media screen and (max-width: 767px) {
  .m-icon-rmd {
    padding: 46px 0 0 0;
  }
}

/*-------------------------------------------------------------------------
 button
--------------------------------------------------------------------------*/
/* 基本ボタン
--------------------------------------------------------*/
.m-btn, .m-btn-back, .m-btn-down, .m-btn-close, .m-btn-cv, .m-btn-em, .m-btn-request, .m-btn-woman, .m-btn-contact-em, .m-btn-checkreq, .m-btn-consul, .m-btn-disabled {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #b3b3b3;
  margin-bottom: 1px;
  padding: 11px 30px 9px;
  box-shadow: 0 1px 0 0 #b3b3b3;
  border-radius: 6px;
  box-sizing: border-box;
  text-align: center;
  line-height: 1.3;
  font-weight: bold;
  font-size: 14px;
  color: #333 !important;
  text-decoration: none !important;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: all .3s;
          transition: all .3s;
}

.m-btn > span, .m-btn-back > span, .m-btn-down > span, .m-btn-close > span, .m-btn-cv > span, .m-btn-em > span, .m-btn-request > span, .m-btn-woman > span, .m-btn-contact-em > span, .m-btn-checkreq > span, .m-btn-consul > span {
  white-space: nowrap;
}

.m-btn:hover, .m-btn-back:hover, .m-btn-down:hover, .m-btn-close:hover, .m-btn-cv:hover, .m-btn-em:hover, .m-btn-request:hover, .m-btn-woman:hover, .m-btn-contact-em:hover, .m-btn-checkreq:hover, .m-btn-consul:hover, ..m-btn-disabled:hover {
  background-color: #f2f2f2;
}

.m-btn > span, .m-btn-back > span, .m-btn-down > span, .m-btn-cv > span, .m-btn-em > span {
  display: inline-block;
  position: relative;
  padding-left: 16px;
}

.m-btn > span:before, .m-btn-back > span:before, .m-btn-down > span:before, .m-btn-cv > span:before, .m-btn-em > span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -5px;
  width: 5px;
  height: 5px;
  border-top: 2px solid #009ce5;
  border-right: 2px solid #009ce5;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .m-btn, .m-btn-back, .m-btn-down, .m-btn-close, .m-btn-cv, .m-btn-em, .m-btn-request, .m-btn-woman, .m-btn-contact-em, .m-btn-checkreq, .m-btn-consul, .m-btn-disabled {
    width: 100%;
    min-width: inherit;
    padding: 9px 12px 8px;
  }
  .m-btn > span, .m-btn-back > span, .m-btn-down > span, .m-btn-close > span, .m-btn-cv > span, .m-btn-em > span, .m-btn-request > span, .m-btn-woman > span, .m-btn-contact-em > span, .m-btn-checkreq > span, .m-btn-consul > span {
    white-space: normal;
  }
  .m-btn > span:before, .m-btn-back > span:before, .m-btn-down > span:before, .m-btn-cv > span:before, .m-btn-em > span:before {
    margin-top: -4px;
  }
}

.m-btn.m-btn--l, .m-btn--l.m-btn-back, .m-btn--l.m-btn-down {
  margin-bottom: 2px;
  box-shadow: 0 2px 0 0 #b3b3b3;
}

.m-btn.m-btn--xl, .m-btn--xl.m-btn-back, .m-btn--xl.m-btn-down {
  margin-bottom: 4px !important;
  box-shadow: 0 4px 0 0 #b3b3b3;
}

/* close button
--------------------------------------------------------*/
.m-btn-close > span {
  display: inline-block;
  position: relative;
  padding-left: 20px;
}

.m-btn-close > span:before {
  content: "×";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -11px;
  font-size: 16px;
  color: #009ce5;
}

/* back button
--------------------------------------------------------*/
.m-btn-back > span {
  padding-left: 15px;
}

.m-btn-back > span:before {
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

/* down button
--------------------------------------------------------*/
.m-btn-down > span:before {
  margin-top: -6px;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}

.m-btn-down.m-btn--s > span:before {
  margin-top: -5px;
}

.m-btn-down.m-btn--l > span:before {
  margin-top: -8px;
}

/* cv button
--------------------------------------------------------*/
.m-btn-cv {
  background-color: #00adff;
  border: 1px solid #0083bf;
  box-shadow: 0 1px 0 0 #0083bf;
  color: #fff !important;
}

.m-btn-cv:hover {
  background-color: #0093d9;
}

.m-btn-cv.m-btn--l {
  margin-bottom: 2px;
  box-shadow: 0 2px 0 0 #0083bf;
}

.m-btn-cv > span:before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

/* em button
--------------------------------------------------------*/
.m-btn-em {
  background-color: #e76e30;
  border: 1px solid #930;
  box-shadow: 0 1px 0 0 #930;
  color: #fff !important;
}

.m-btn-em:hover {
  background-color: #d65d20;
}

.m-btn-em.m-btn--l {
  box-shadow: 0 2px 0 0 #930;
}

.m-btn-em > span:before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

/* attention button
--------------------------------------------------------*/
.m-btn-att {
  display: inline-block;
  padding: 16px 30px;
  background-color: #c00;
  border: 1px solid #c00;
  box-shadow: 0 2px 0 0 #c00;
  margin-bottom: 2px;
  border-radius: 6px;
  box-sizing: border-box;
  text-align: center;
  line-height: 1.3;
  font-weight: bold;
  font-size: 18px;
  color: #fff !important;
  text-decoration: none !important;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: all .3s;
          transition: all .3s;
}

.m-btn-att > span {
  display: inline-block;
  position: relative;
  padding-left: 40px;
}

.m-btn-att > span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -1px;
  left: 0;
  width: 30px;
  height: 24px;
  background: url(/resources/img/icon_att_w.svg) no-repeat 0 0;
  background-size: 30px 24px;
}

@media screen and (max-width: 767px) {
  .m-btn-att {
    padding: 16px 10px;
    font-size: 16px;
  }
  .m-btn-att > span {
    padding-left: 30px;
  }
  .m-btn-att > span:before {
    top: -1px;
    width: 25px;
    height: 20px;
    background-size: 25px 20px;
  }
}

/* 資料請求ボタン
--------------------------------------------------------*/
.m-btn-request {
  background-color: #fcdd2e;
  border: 1px solid #cab125;
  box-shadow: 0 1px 0 0 #cab125;
}

.m-btn-disabled {
  border: 1px solid #c5c5c5;
  box-shadow: 0 1px 0 0 #c5c5c5;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 0;
  cursor: default;
}

.m-btn-request:hover {
  background-color: #f0c424;
}

.m-btn-request > span {
  display: inline-block;
  position: relative;
  padding-left: 24px;
}

.m-btn-request > span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -8px;
  width: 16px;
  height: 14px;
  background: url(/resources/img/icon_request.svg) no-repeat 0 0;
  background-size: 16px 14px;
}

.m-btn-request > span > span {
  padding: 0 !important;
}

.m-btn-request > span > span:before, .m-btn-request > span > span:after {
  content: none;
}

.m-btn-request__text {
  height: 28px;
  padding: 0 30px !important;
  margin-top: 8px;
  background-color: #fff;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  line-height: 28px;
  font-size: 14px;
}

.m-btn-request__text:before {
  content: none !important;
}

.m-btn-request.m-btn--l {
  margin-bottom: 2px !important;
  box-shadow: 0 2px 0 0 #cab125;
}

.m-btn-request.m-btn--l > span {
  padding-left: 42px;
}

.m-btn-request.m-btn--l > span:before {
  margin-top: -15px;
  width: 32px;
  height: 28px;
  background-size: 32px 28px;
}

.m-btn-request.m-btn--xl {
  margin-bottom: 4px !important;
  box-shadow: 0 4px 0 0 #cab125;
  padding-top: 19px;
  padding-bottom: 17px;
  border-radius: 8px;
}

.m-btn-request.m-btn--xl > span {
  padding-left: 44px;
}

.m-btn-request.m-btn--xl > span:before {
  margin-top: -16px;
  width: 32px;
  height: 28px;
  background-size: 32px 28px;
}

/* 女性向けプラン資料請求ボタン
--------------------------------------------------------*/
.m-btn-woman {
  background-color: #fcdd2e;
  border: 1px solid #cab125;
  box-shadow: 0 1px 0 0 #cab125;
}

.m-btn-woman:hover {
  background-color: #f0c424;
}

.m-btn-woman > span {
  display: inline-block;
  position: relative;
  padding-left: 42px;
}

.m-btn-woman > span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -15px;
  width: 32px;
  height: 28px;
  background: url(/resources/img/icon_woman_btn.svg) no-repeat 0 0;
  background-size: 32px 28px;
}

.m-btn-woman > span > span {
  padding: 0 !important;
}

.m-btn-woman > span > span:before, .m-btn-woman > span > span:after {
  content: none;
}

.m-btn-woman.m-btn--l {
  margin-bottom: 2px;
  box-shadow: 0 2px 0 0 #cab125;
}

.m-btn-woman.m-btn--l > span {
  padding-left: 42px;
}

.m-btn-woman.m-btn--l > span:before {
  margin-top: -16px;
  width: 32px;
  height: 28px;
  background-size: 32px 28px;
}

.m-btn-woman.m-btn--l > span .m-btn-subtext {
  font-size: 14px;
}

/* お問合せフォームボタン
--------------------------------------------------------*/
.m-btn-contact-em {
  background-color: #fcbe2d;
  border: 1px solid #b38b20;
  box-shadow: 0 1px 0 0 #b38b20;
}

.m-btn-contact-em:hover {
  background-color: #ed9b1f;
}

.m-btn-contact-em > span {
  display: inline-block;
  position: relative;
  padding-left: 28px;
}

.m-btn-contact-em > span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -12px;
  width: 18px;
  height: 21px;
  background: url(/resources/img/icon_contact_em.svg) no-repeat 0 0;
  background-size: 18px 21px;
}

.m-btn-contact-em > span > span {
  padding: 0 !important;
}

.m-btn-contact-em > span > span:before, .m-btn-contact-em > span > span:after {
  content: none;
}

.m-btn-contact-em.m-btn--l {
  margin-bottom: 2px !important;
  box-shadow: 0 2px 0 0 #b38b20;
}

.m-btn-contact-em.m-btn--l > span {
  padding-left: 36px;
}

.m-btn-contact-em.m-btn--l > span:before {
  margin-top: -17px;
  width: 26px;
  height: 30px;
  background-size: 26px 30px;
}

.m-btn-contact-em.m-btn--xl {
  margin-bottom: 4px !important;
  box-shadow: 0 4px 0 0 #b38b20;
  border-radius: 8px;
}

.m-btn-contact-em.m-btn--xl > span {
  padding-left: 40px;
}

.m-btn-contact-em.m-btn--xl > span:before {
  margin-top: -18px;
  width: 26px;
  height: 30px;
  background-size: 26px 30px;
}

@media screen and (max-width: 767px) {
  .m-btn-contact-em.m-btn--l > span .m-btn-subtext {
    font-size: 12px;
  }
  .m-btn-contact-em.m-btn--xl > span .m-btn-subtext {
    font-size: 14px;
  }
}

/* まとめて資料請求ボタン
--------------------------------------------------------*/
.m-btn-checkreq {
  background-color: #fcdd2e;
  border: 0;
  box-shadow: 0 2px 0 0 #cab125;
  margin-bottom: 2px;
  padding-left: 20px;
  padding-right: 20px;
}

.m-btn-checkreq:hover {
  background-color: #f0c424;
}

.m-btn-checkreq > span {
  display: inline-block;
  position: relative;
  padding-left: 30px;
}

.m-btn-checkreq > span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -12px;
  width: 23px;
  height: 20px;
  background: url(/resources/img/icon_check.svg) no-repeat 0 0;
  background-size: 23px 20px;
}

.m-btn-checkreq > span > span {
  padding: 0 !important;
}

.m-btn-checkreq > span > span:before, .m-btn-checkreq > span > span:after {
  content: none;
}

.m-btn-checkreq.m-btn--l {
  margin-bottom: 3px;
  box-shadow: 0 3px 0 0 #cab125;
}

.m-btn-checkreq.m-btn--l > span {
  padding-left: 42px;
}

.m-btn-checkreq.m-btn--l > span:before {
  margin-top: -16px;
  width: 35px;
  height: 28px;
  background-size: 35px 28px;
}

.m-btn-checkreq.m-btn--l > span .m-btn-subtext {
  font-size: 14px;
}

/* 保険無料相談ボタン
--------------------------------------------------------*/
.m-btn-consul {
  background-color: #fcbe2d;
  border: 1px solid #b38b20;
  box-shadow: 0 1px 0 0 #b38b20;
}

.m-btn-consul:hover {
  background-color: #ed9b1f;
}

.m-btn-consul > span {
  display: inline-block;
  position: relative;
  padding-left: 20px;
}

.m-btn-consul > span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -8px;
  width: 12px;
  height: 14px;
  background: url(/resources/img/icon_consul.svg) no-repeat 0 0;
  background-size: 12px 14px;
}

.m-btn-consul > span > span {
  padding: 0 !important;
}

.m-btn-consul > span > span:before, .m-btn-consul > span > span:after {
  content: none;
}

.m-btn-consul.m-btn--l {
  margin-bottom: 2px !important;
  box-shadow: 0 2px 0 0 #b38b20;
}

.m-btn-consul.m-btn--l > span {
  padding-left: 34px;
}

.m-btn-consul.m-btn--l > span:before {
  margin-top: -16px;
  width: 24px;
  height: 28px;
  background-size: 24px 28px;
}

.m-btn-consul.m-btn--l > span .m-btn-subtext {
  padding-left: 0;
  font-size: 14px;
}

.m-btn-consul.m-btn--l > span .m-btn-subtext:before {
  content: none;
}

.m-btn-consul.m-btn--xl {
  margin-bottom: 4px !important;
  box-shadow: 0 4px 0 0 #b38b20;
  border-radius: 8px;
}

.m-btn-consul.m-btn--xl > span {
  padding-left: 36px;
}

.m-btn-consul.m-btn--xl > span:before {
  margin-top: -16px;
  width: 24px;
  height: 28px;
  background-size: 24px 28px;
}

.m-btn-consul.m-btn--xl > span .m-btn-subtext {
  padding-left: 0;
  font-size: 18px;
}

.m-btn-consul.m-btn--xl > span .m-btn-subtext:before {
  content: none;
}

@media screen and (max-width: 767px) {
  .m-btn-consul.m-btn--l > span .m-btn-subtext {
    font-size: 12px;
  }
  .m-btn-consul.m-btn--xl > span .m-btn-subtext {
    font-size: 14px;
  }
}

/* お申し込みチェックボタン
--------------------------------------------------------*/
.m-btn span.m-btn-check, .m-btn-back span.m-btn-check, .m-btn-down span.m-btn-check {
  display: inline-block;
  position: relative;
  padding-left: 36px;
}

.m-btn span.m-btn-check:before, .m-btn-back span.m-btn-check:before, .m-btn-down span.m-btn-check:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -13px;
  width: 24px;
  height: 24px;
  border: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  background: url(/resources/img/icon_check_application.svg) no-repeat 0 0;
  background-size: 24px 24px;
}

.m-btn span.m-btn-check > span, .m-btn-back span.m-btn-check > span, .m-btn-down span.m-btn-check > span {
  padding-left: 0;
}

@media screen and (max-width: 767px) {
  .m-btn span.m-btn-direct, .m-btn-back span.m-btn-direct, .m-btn-down span.m-btn-direct {
    padding-left: 40px;
  }
  .m-btn span.m-btn-direct:before, .m-btn-back span.m-btn-direct:before, .m-btn-down span.m-btn-direct:before {
    margin-top: -15px;
  }
}

/* シミュレーションボタン
--------------------------------------------------------*/
.m-btn .m-btn-simulation, .m-btn-back .m-btn-simulation, .m-btn-down .m-btn-simulation,
.m-btn-cv .m-btn-simulation {
  display: inline-block;
  position: relative;
  padding-left: 20px;
}

.m-btn .m-btn-simulation:before, .m-btn-back .m-btn-simulation:before, .m-btn-down .m-btn-simulation:before,
.m-btn-cv .m-btn-simulation:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -8px;
  width: 12px;
  height: 14px;
  border: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  background: url(/resources/img/icon_simulation.svg) no-repeat 0 0;
  background-size: 12px 14px;
}

.m-btn.m-btn--l .m-btn-simulation, .m-btn--l.m-btn-back .m-btn-simulation, .m-btn--l.m-btn-down .m-btn-simulation,
.m-btn-cv.m-btn--l .m-btn-simulation {
  padding-left: 34px;
}

.m-btn.m-btn--l .m-btn-simulation:before, .m-btn--l.m-btn-back .m-btn-simulation:before, .m-btn--l.m-btn-down .m-btn-simulation:before,
.m-btn-cv.m-btn--l .m-btn-simulation:before {
  margin-top: -16px;
  width: 24px;
  height: 28px;
  background-size: 24px 28px;
}

.m-btn-cv .m-btn-simulation:before {
  background: url(/resources/img/icon_simulation_w.svg) no-repeat 0 0;
}

.m-btn-cv.m-btn--s .m-btn-simulation {
  margin: 0 -5px;
  padding-left: 26px;
}

.m-btn-cv.m-btn--s .m-btn-simulation:before {
  margin-top: -10px;
  width: 16px;
  height: 19px;
  background-size: 16px 19px;
}

.m-btn-em .m-btn-simulation-w {
  display: inline-block;
  position: relative;
  padding-left: 34px;
}

.m-btn-em .m-btn-simulation-w:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -16px;
  width: 24px;
  height: 28px;
  border: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  background: url(/resources/img/icon_simulation_w.svg) no-repeat 0 0;
  background-size: 24px 28px;
}

@media screen and (max-width: 767px) {
  .m-btn-em .m-btn-simulation-w:before {
    margin-top: -14px;
  }
}

.m-btn-soon {
  position: relative;
  padding-top: 13px !important;
  padding-bottom: 28px !important;
}

.m-btn-soon:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 16px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid #009ce5;
  border-right: 2px solid #009ce5;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}

.m-btn-soon .m-icon-soon {
  display: inline-block;
  height: 34px;
  line-height: 34px;
  margin-right: 20px;
  padding: 0 10px 0 15px;
  background-color: #009ce5;
  border-radius: 17px;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
}

.m-btn-soon .m-icon-soon:before {
  content: none;
}

@media screen and (max-width: 767px) {
  .m-btn-soon {
    padding-top: 13px !important;
    padding-bottom: 28px !important;
  }
  .m-btn-soon:after {
    bottom: 16px;
  }
  .m-btn-soon .m-icon-soon {
    height: 30px;
    margin-bottom: 5px;
    line-height: 30px;
    margin-right: 20px;
    padding: 0 10px 0 15px;
    border-radius: 15px;
    font-size: 16px;
  }
}

/* よくあるご質問
--------------------------------------------------------*/
.m-btn span.m-btn-faq, .m-btn-back span.m-btn-faq, .m-btn-down span.m-btn-faq {
  display: inline-block;
  position: relative;
  padding-left: 39px;
}

.m-btn span.m-btn-faq:before, .m-btn-back span.m-btn-faq:before, .m-btn-down span.m-btn-faq:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -15px;
  width: 28px;
  height: 30px;
  border: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  background: url(/resources/img/icon_faq.svg) no-repeat 0 0;
  background-size: 28px 30px;
}

@media screen and (max-width: 767px) {
  .m-btn span.m-btn-faq, .m-btn-back span.m-btn-faq, .m-btn-down span.m-btn-faq {
    padding-left: 40px;
  }
}

/* お問合せフォームボタン
--------------------------------------------------------*/
.m-btn span.m-btn-contact, .m-btn-back span.m-btn-contact, .m-btn-down span.m-btn-contact {
  display: inline-block;
  position: relative;
  padding-left: 36px;
}

.m-btn span.m-btn-contact:before, .m-btn-back span.m-btn-contact:before, .m-btn-down span.m-btn-contact:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -17px;
  width: 26px;
  height: 30px;
  border: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  background: url(/resources/img/icon_contact.svg) no-repeat 0 0;
  background-size: 26px 30px;
}

@media screen and (max-width: 767px) {
  .m-btn span.m-btn-contact, .m-btn-back span.m-btn-contact, .m-btn-down span.m-btn-contact {
    padding-left: 40px;
  }
}

/* インターネット
--------------------------------------------------------*/
.m-btn span.m-btn-internet, .m-btn-back span.m-btn-internet, .m-btn-down span.m-btn-internet {
  display: inline-block;
  position: relative;
  padding-left: 42px;
}

.m-btn span.m-btn-internet:before, .m-btn-back span.m-btn-internet:before, .m-btn-down span.m-btn-internet:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -15px;
  width: 30px;
  height: 26px;
  border: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  background: url(/resources/img/icon_internet.svg) no-repeat 0 0;
  background-size: 30px 26px;
}

@media screen and (max-width: 767px) {
  .m-btn span.m-btn-internet, .m-btn-back span.m-btn-internet, .m-btn-down span.m-btn-internet {
    padding-left: 40px;
  }
}

/* お電話
--------------------------------------------------------*/
.m-btn span.m-btn-phone, .m-btn-back span.m-btn-phone, .m-btn-down span.m-btn-phone {
  display: inline-block;
  position: relative;
  padding-left: 34px;
}

.m-btn span.m-btn-phone:before, .m-btn-back span.m-btn-phone:before, .m-btn-down span.m-btn-phone:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -15px;
  width: 24px;
  height: 28px;
  border: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  background: url(/resources/img/icon_phone.svg) no-repeat 0 0;
  background-size: 24px 28px;
}


/* その他アイコン
--------------------------------------------------------*/
.m-btn span.m-btn-other, .m-btn-back span.m-btn-other, .m-btn-down span.m-btn-other {
  display: inline-block;
  position: relative;
  padding-left: 44px;
}

.m-btn span.m-btn-other:before, .m-btn-back span.m-btn-other:before, .m-btn-down span.m-btn-other:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -17px;
  width: 28px;
  height: 28px;
  border: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  background: url(/resources/img/icon_product_other_s.svg) no-repeat 0 0;
  background-size: 28px 28px;
}

@media screen and (max-width: 767px) {
  .m-btn span.m-btn-other, .m-btn-back span.m-btn-m-btn-other, .m-btn-down span.m-btn-other {
    padding-left: 40px;
  }
  .m-btn span.m-btn-other:before, .m-btn-back span.m-btn-other:before, .m-btn-down span.m-btn-other:before {
    margin-top: -15px;
  }
}

/* マーケットリンクアイコン
--------------------------------------------------------*/
.m-btn span.m-btn-marketlink, .m-btn-back span.m-btn-marketlink, .m-btn-down span.m-btn-marketlink {
  display: inline-block;
  position: relative;
  padding-left: 44px;
}

.m-btn span.m-btn-marketlink:before, .m-btn-back span.m-btn-marketlink:before, .m-btn-down span.m-btn-marketlink:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 60%;
  left: 0;
  margin-top: -17px;
  width: 28px;
  height: 28px;
  border: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  background: url(/resources/img/icon_shisankeise.svg) no-repeat 0 0;
  background-size: 28px 28px;
}

@media screen and (max-width: 767px) {
  .m-btn span.m-btn-marketlink, .m-btn-back span.m-btn-marketlink, .m-btn-down span.m-btn-marketlink {
    padding-left: 40px;
  }
  .m-btn span.m-btn-marketlink:before, .m-btn-back span.m-btn-marketlink:before, .m-btn-down span.m-btn-marketlink:before {
    margin-top: -15px;
  }
}



/* 通販アイコン
--------------------------------------------------------*/
.m-btn span.m-btn-direct, .m-btn-back span.m-btn-direct, .m-btn-down span.m-btn-direct {
  display: inline-block;
  position: relative;
  padding-left: 44px;
}

.m-btn span.m-btn-direct:before, .m-btn-back span.m-btn-direct:before, .m-btn-down span.m-btn-direct:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -17px;
  width: 28px;
  height: 28px;
  border: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  background: url(/resources/img/icon_direct.svg) no-repeat 0 0;
  background-size: 28px 28px;
}

@media screen and (max-width: 767px) {
  .m-btn span.m-btn-direct, .m-btn-back span.m-btn-direct, .m-btn-down span.m-btn-direct {
    padding-left: 40px;
  }
  .m-btn span.m-btn-direct:before, .m-btn-back span.m-btn-direct:before, .m-btn-down span.m-btn-direct:before {
    margin-top: -15px;
  }
}

/* 法人向けアイコン
--------------------------------------------------------*/
.m-btn span.m-btn-corporate, .m-btn-back span.m-btn-corporate, .m-btn-down span.m-btn-corporate {
  display: inline-block;
  position: relative;
  padding-left: 38px;
}

.m-btn span.m-btn-corporate:before, .m-btn-back span.m-btn-corporate:before, .m-btn-down span.m-btn-corporate:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -16px;
  width: 32px;
  height: 26px;
  border: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  background: url(/resources/img/icon_corporate.svg) no-repeat 0 0;
  background-size: 32px 26px;
}

@media screen and (max-width: 767px) {
  .m-btn span.m-btn-corporate, .m-btn-back span.m-btn-corporate, .m-btn-down span.m-btn-corporate {
    padding-left: 44px;
  }
  .m-btn span.m-btn-corporate:before, .m-btn-back span.m-btn-corporate:before, .m-btn-down span.m-btn-corporate:before {
    margin-top: -15px;
  }
}

/* 契約者さま専用ページ
--------------------------------------------------------*/
.m-btn span.m-btn-contractor, .m-btn-back span.m-btn-contractor, .m-btn-down span.m-btn-contractor {
  display: inline-block;
  position: relative;
  padding-left: 44px;
}

.m-btn span.m-btn-contractor:before, .m-btn-back span.m-btn-contractor:before, .m-btn-down span.m-btn-contractor:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -15px;
  width: 30px;
  height: 26px;
  border: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  background: url(/resources/img/icon_constractor.svg) no-repeat 0 0;
  background-size: 30px 26px;
}

@media screen and (max-width: 767px) {
  .m-btn span.m-btn-contractor, .m-btn-back span.m-btn-contractor, .m-btn-down span.m-btn-contractor {
    padding-left: 40px;
  }
}

/* 対面保険料シミュレーション
--------------------------------------------------------*/
.m-btn span.m-btn-person, .m-btn-back span.m-btn-person, .m-btn-down span.m-btn-person {
  display: inline-block;
  position: relative;
  padding-left: 38px;
}

.m-btn span.m-btn-person:before, .m-btn-back span.m-btn-person:before, .m-btn-down span.m-btn-person:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -17px;
  width: 26px;
  height: 32px;
  border: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  background: url(/resources/img/icon_person.svg) no-repeat 0 0;
  background-size: 26px 32px;
}

@media screen and (max-width: 767px) {
  .m-btn span.m-btn-contractor, .m-btn-back span.m-btn-contractor, .m-btn-down span.m-btn-contractor {
    padding-left: 35px;
  }
}

/* ネットでお申込み
--------------------------------------------------------*/
.m-btn-cv span.m-btn-netapply {
  display: inline-block;
  position: relative;
  padding-left: 42px;
}

.m-btn-cv span.m-btn-netapply:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -19px;
  width: 28px;
  height: 32px;
  border: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  background: url(/resources/img/icon_netapply.svg) no-repeat 0 0;
  background-size: 28px 32px;
}

@media screen and (max-width: 767px) {
  .m-btn-cv span.m-btn-netapply {
    padding-left: 40px;
  }
}

/* ボタン内のサブテキスト（文字サイズ小）
--------------------------------------------------------*/
.m-btn-subtext {
  display: inline !important;
  padding: 0 !important;
  vertical-align: middle;
}

.m-btn-subtext:before {
  display: inline !important;
  content: none !important;
}

@media screen and (max-width: 767px) {
  .m-btn-subtext {
    font-size: 12px;
  }
}

/* 約款ボタン
--------------------------------------------------------*/
.m-btn .m-btn-yakkan, .m-btn-back .m-btn-yakkan, .m-btn-down .m-btn-yakkan,
.m-btn-cv .m-btn-yakkan {
  display: inline-block;
  position: relative;
  padding-left: 30px;
}

.m-btn .m-btn-yakkan:before, .m-btn-back .m-btn-yakkan:before, .m-btn-down .m-btn-yakkan:before,
.m-btn-cv .m-btn-yakkan:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -7px;
  width: 20px;
  height: 13px;
  border: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  background: url(/resources/img/icon_yakkan.svg) no-repeat 0 0;
  background-size: 20px 13px;
}

.m-btn.m-btn--l .m-btn-yakkan, .m-btn--l.m-btn-back .m-btn-yakkan, .m-btn--l.m-btn-down .m-btn-yakkan,
.m-btn-cv.m-btn--l .m-btn-yakkan {
  padding-left: 50px;
}

.m-btn.m-btn--l .m-btn-yakkan:before, .m-btn--l.m-btn-back .m-btn-yakkan:before, .m-btn--l.m-btn-down .m-btn-yakkan:before,
.m-btn-cv.m-btn--l .m-btn-yakkan:before {
  margin-top: -15px;
  width: 40px;
  height: 26px;
  background-size: 40px 26px;
}

/*--------------------------------------------------------
 ボタンオプション
--------------------------------------------------------*/
/* ボタン（小）
--------------------------------------------------------*/
.m-btn--s {
  min-width: inherit;
  width: auto;
  padding: 6px 17px 5px;
  box-shadow: 0 1px 0 0 inherit;
  font-size: 12px;
}

.m-btn--s span {
  padding-left: 13px;
}

.m-btn--s span:before {
  margin-top: -4px;
  width: 4px;
  height: 4px;
}

@media screen and (max-width: 767px) {
  .m-btn--s {
    width: 100%;
    padding: 6px 12px 6px;
  }
  .m-btn--s span:before {
    margin-top: -3px;
  }
}

/* ボタン（大）
--------------------------------------------------------*/
.m-btn--l {
  padding: 18px 30px 17px;
  font-size: 18px;
}

.m-btn--l > span {
  padding-left: 20px;
}

.m-btn--l > span:before {
  margin-top: -6px;
  width: 7px;
  height: 7px;
}

.m-btn--l > span .m-btn-subtext {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .m-btn--l {
    padding: 14px 12px 13px;
    font-size: 16px;
  }
  .m-btn--l > span:before {
    margin-top: -5px;
  }
  .m-btn--l > span .m-btn-subtext {
    font-size: 12px;
  }
}

/* ボタン（特大）
--------------------------------------------------------*/
.m-btn--xl {
  padding: 21px 30px 19px;
  border-radius: 8px;
  line-height: 1.2;
  font-size: 24px;
}

.m-btn--xl > span {
  padding-left: 28px;
}

.m-btn--xl > span:before {
  margin-top: -8px;
  width: 10px;
  height: 10px;
}

@media screen and (max-width: 767px) {
  .m-btn--xl {
    padding: 15px 12px 13px;
    font-size: 20px;
  }
  .m-btn--xl > span {
    padding-left: 25px;
  }
  .m-btn--xl > span:before {
    margin-top: -7px;
  }
}

/* 複数行ボタン
--------------------------------------------------------*/
.m-btn--row > span {
  text-align: left;
}

.m-btn--row.m-btn, .m-btn--row.m-btn-back, .m-btn--row.m-btn-down {
  padding-left: 17px;
  padding-right: 17px;
}

.m-btn--row.m-btn--xl {
  padding-left: 30px;
  padding-right: 30px;
}

@media screen and (max-width: 767px) {
  .m-btn--row.m-btn, .m-btn--row.m-btn-back, .m-btn--row.m-btn-down {
    padding-left: 15px;
    padding-right: 15px;
  }
  .m-btn--row.m-btn--xl {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* アイコンなしボタン
--------------------------------------------------------*/
.m-btn--noicon > span {
  padding-left: 0;
}

.m-btn--noicon > span:before {
  content: none;
}

/* ボーダーなしボタン
--------------------------------------------------------*/
.m-btn--nobdr {
  border: 0 !important;
}

/*--------------------------------------------------------
 ボタンセットモジュール
--------------------------------------------------------*/
/* 横並び２つボタン / 横並び３つボタン
--------------------------------------------------------*/
.m-btn-col2,
.m-btn-col3 {
  margin: 0 auto;
  display: table;
  overflow: hidden;
}

.m-btn-col2 > li,
.m-btn-col3 > li {
  float: left;
  margin-left: 20px;
}

.m-btn-col2 > li:first-child,
.m-btn-col3 > li:first-child {
  margin-left: 0;
}

.m-btn-col2 > li a[class^="m-btn"],
.m-btn-col2 > li button[class^="m-btn"],
.m-btn-col3 > li a[class^="m-btn"],
.m-btn-col3 > li button[class^="m-btn"] {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.m-btn-col2-rv {
  margin: 0 auto;
  display: table;
  overflow: hidden;
}

.m-btn-col2-rv > li {
  float: right;
  margin-right: 20px;
}

.m-btn-col2-rv > li:first-child {
  margin-right: 0;
}

.m-btn-col2-rv > li a[class^="m-btn"],
.m-btn-col2-rv > li button[class^="m-btn"] {
  width: 100%;
}

.m-btn-col2 > li,
.m-btn-col2-rv > li {
  width: 534px;
}

.m-btn-col3 > li {
  width: 370px;
}

.is-narrow .m-btn-col2 > li,
.is-narrow .m-btn-col2-rv > li,
.m-content-main .m-btn-col2 > li,
.m-content-main .m-btn-col2-rv > li {
  width: 415px;
}

.is-narrow .m-btn-col3 > li,
.m-content-main .m-btn-col3 > li {
  width: 270px;
}

@media screen and (max-width: 767px) {
  .m-btn-col2,
  .m-btn-col3,
  .m-btn-col2-rv {
    width: 100%;
    overflow: visible;
  }
  .m-btn-col2 > li,
  .m-btn-col3 > li,
  .m-btn-col2-rv > li {
    float: none;
    width: 100% !important;
    margin: 10px 0 0;
  }
  .m-btn-col2 > li:first-child,
  .m-btn-col3 > li:first-child,
  .m-btn-col2-rv > li:first-child {
    margin-top: 0;
  }
}

/* ボタンエリア
--------------------------------------------------------*/
.m-btnarea {
  margin: 30px 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .m-btnarea {
    margin: 30px 0;
  }
}

/* アクションボタンエリア （資料請求・無料相談ボタン専用）
--------------------------------------------------------*/
.m-btnarea-ac {
  margin: 50px 0;
  padding: 20px;
  background-color: #009ce5;
}

.m-btnarea-ac > :first-child {
  margin-top: 0;
}

.m-btnarea-ac .m-btn, .m-btnarea-ac .m-btn-back, .m-btnarea-ac .m-btn-down,
.m-btnarea-ac .m-btn-cv,
.m-btnarea-ac .m-btn-consul,
.m-btnarea-ac .m-btn-request {
  border: 0;
}

.m-btnarea-ac .m-btn--xl.m-btn-consul, .m-btnarea-ac .m-btn--xl.m-btn-request {
  min-height: 96px;
}

.m-btnarea-ac .m-btn--xl.m-btn-request > span {
  margin-top: 17px;
  padding-left: 54px;
}

.m-btnarea-ac .m-btn--xl.m-btn-request > span:before {
  margin-top: -20px;
  width: 40px;
  height: 35px;
  background-size: 40px 35px;
}

.m-btnarea-ac .m-btn--xl.m-btn-consul span {
  padding-left: 48px;
}

.m-btnarea-ac .m-btn--xl.m-btn-consul span:before {
  margin-top: -22px;
  width: 32px;
  height: 37px;
  background-size: 32px 37px;
}

.m-btnarea-ac .m-btn--l.m-btn--rowh {
  min-height: 81px;
  padding-top: 29px;
}

.m-btnarea-ac .m-btn--l.m-btn, .m-btnarea-ac .m-btn--l.m-btn-back, .m-btnarea-ac .m-btn--l.m-btn-down {
  box-shadow: 0 3px 0 0 #b3b3b3;
  margin-bottom: 3px;
}

.m-btnarea-ac .m-btn--l.m-btn-cv {
  box-shadow: 0 3px 0 0 #0083bf;
  margin-bottom: 3px;
}

.m-btnarea-ac .m-btn--l.m-btn-consul {
  box-shadow: 0 3px 0 0 #b38b20;
  margin-bottom: 3px;
}

.m-btnarea-ac .m-btn--l.m-btn-request {
  box-shadow: 0 3px 0 0 #cab125;
  margin-bottom: 3px;
}

.m-btnarea-ac__ttl {
  margin-bottom: 18px;
  text-align: center;
  font-weight: bold;
  font-size: 28px;
  color: #fff;
}

.m-btnarea-ac__lead {
  margin: -15px 0 22px;
  text-align: center;
  font-size: 15px;
  color: #fff;
}

.m-btnarea-ac__subttl {
  margin: 0 0 12px;
  text-align: center;
  font-weight: bold;
  color: #fff;
}

.m-btnarea-ac__subttl:before {
  margin: -3px 6px 0 0;
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 16px;
  background-image: url("../img/sprite.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 8px 34px;
}

.m-btnarea-ac__subttl:after {
  margin: -3px 0 0 6px;
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 16px;
  background-image: url("../img/sprite.png");
  background-repeat: no-repeat;
  background-position: 0 -18px;
  background-size: 8px 34px;
}

.m-btnarea-ac__sign {
  margin-top: -45px;
  text-align: right;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .m-btnarea-ac {
    margin: 30px -15px;
    padding: 20px 15px;
  }
  .m-btnarea-ac .m-btn--xl.m-btn-consul, .m-btnarea-ac .m-btn--xl.m-btn-request {
    min-height: 76px;
  }
  .m-btnarea-ac .m-btn--xl.m-btn-request > span {
    margin-top: 10px;
    padding-left: 42px;
  }
  .m-btnarea-ac .m-btn--xl.m-btn-request > span:before {
    margin-top: -15px;
    width: 32px;
    height: 28px;
    background-size: 32px 28px;
  }
  .m-btnarea-ac .m-btn--xl.m-btn-consul span {
    padding-left: 40px;
  }
  .m-btnarea-ac .m-btn--xl.m-btn-consul span:before {
    margin-top: -18px;
    width: 28px;
    height: 33px;
    background-size: 28px 33px;
  }
  .m-btnarea-ac .m-btn--l.m-btn--rowh {
    min-height: 67px;
    padding-top: 24px;
  }
  .m-btnarea-ac__ttl {
    margin-bottom: 12px;
    line-height: 1.5;
    font-size: 20px;
  }
  .m-btnarea-ac__lead {
    margin: -8px 0 15px;
    font-size: 12px;
  }
  .m-btnarea-ac__subttl {
    margin-bottom: 10px;
  }
  .m-btnarea-ac__sign {
    margin-top: -25px;
    font-size: 10px;
  }
  .m-btnarea-ac .m-btn-col2 > li {
    margin-top: 20px;
  }
  .m-btnarea-ac .m-btn-col2 > li:first-child {
    margin-top: 0;
  }
}

/* 請求STOPボタン
--------------------------------------------------------*/
.m-btnarea-ac .m-btn-col2 .m-btn-stop{
  width: 100%;
  background-color: #ccc;
  -webkit-box-shadow: 0 4px 0 0 #ccc;
  box-shadow: none;
  cursor: default;
}

/*-------------------------------------------------------------------------
 line
--------------------------------------------------------------------------*/
/* 点線
--------------------------------------------------------*/
.m-dotline-top {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #ccc;
}

.m-dotline-btm {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #ccc;
}

.m-dotline-top-s {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #ccc;
}

/* 罫線
--------------------------------------------------------*/
.m-line-top {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ccc;
}

.m-line-btm {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}

/* 下線（青色）
--------------------------------------------------------*/
.m-dotline-btm-blue {
  border-bottom: 1px solid #0083bf;
  display: inline-block;
  text-indent: 0.5em;
}

@media screen and (max-width: 767px) {
  .m-dotline-btm-blue {
    border-bottom: none;
  }
}

/*-------------------------------------------------------------------------
 image
--------------------------------------------------------------------------*/
/* プレミアムマーク
--------------------------------------------------------*/
.m-img-premium {
  width: 84px;
  height: 86px;
}

.m-img-premium > img {
  width: 84px;
  height: 86px;
}

@media screen and (max-width: 767px) {
  .m-img-premium {
    width: 47px;
    height: 48px;
  }
  .m-img-premium > img {
    width: 47px;
    height: 48px;
  }
}

/* PC・SPで画像出し分け
--------------------------------------------------------*/
.m-img-mq {
  position: relative;
  margin: 35px 0 40px;
  text-align: center;
}

.m-img-mq picture source,
.m-img-mq picture img,
.m-img-mq img {
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .m-img-mq {
    margin: 20px 0;
  }
  .m-img-mq picture source,
  .m-img-mq picture img,
  .m-img-mq img {
    width: 100%;
  }
}

/* 画像にボーダー
--------------------------------------------------------*/
.m-img-border {
  display: table;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #ccc;
}

@media screen and (max-width: 767px) {
  .m-img-border {
    margin: 15px auto;
    padding: 10px;
  }
}

.m-ima-area {
  display: table;
  margin: 0 auto;
}

/* PC画像を半分サイズで表示
--------------------------------------------------------*/
.m-img-half {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .m-img-half {
    width: 100%;
  }
}

/* 画像hover
--------------------------------------------------------*/
.m-img-hover {
  -webkit-transition: all .3s;
          transition: all .3s;
}

.m-img-hover:hover {
  opacity: .75;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
      filter: alpha(opacity=75);
}

/*-------------------------------------------------------------------------
 table
--------------------------------------------------------------------------*/
.m-tbl {
  width: 100%;
  margin-top: 20px;
  border-top: 1px solid #d5d5d5;
  border-left: 1px solid #d5d5d5;
}

.m-tbl th, .m-tbl td {
  padding: 8px 20px;
  border-bottom: 1px solid #d5d5d5;
  border-right: 1px solid #d5d5d5;
  background-color: #fff;
  vertical-align: middle;
  text-align: left;
}

.m-tbl th > :first-child, .m-tbl td > :first-child {
  margin-top: 0;
}

.m-tbl th > :last-child, .m-tbl td > :last-child {
  margin-bottom: 0;
}

.m-tbl th {
  background-color: #dcf0fa;
  font-weight: bold;
}

.m-tbl .m-tblhead th,
.m-tbl .m-tblhead {
  padding: 8px 10px;
  background-color: #edf6fa;
  vertical-align: middle;
  text-align: center;
  font-weight: bold;
  white-space: nowrap;
}

.m-tbl .m-cell-bgem {
  background-color: #fff4c7;
}

.m-tbl.m-tbl--center td {
  text-align: center;
}

.m-tbl.m-tbl--right td {
  text-align: right;
}

.m-tbl.m-tbl--thcenter th {
  text-align: center;
}

.m-tbl.m-tbl--flex {
  width: auto;
}

.m-tbl.m-tbl--narrow th, .m-tbl.m-tbl--narrow td {
  padding-left: 5px;
  padding-right: 5px;
}

.m-content-table {
    width: 890px;
    overflow: auto;
}

.m-content-table-modal {
    width: 100%;
    overflow: auto;
}

.m-content-table-modal  .m-tbl.m-tbl-houjin01 {
    width: 1495px;
}

.m-content-table-modal .tbl-houjin-th01 {
    width: 80px;
}

.m-content-table-modal .tbl-houjin-td01 {
    width: 275px;
}

.m-content-table-modal .tbl-houjin-td02,
.m-content-table02 .tbl-houjin-td02 {
    width: 265px;
}

.m-content-table-modal .tbl-houjin-td03 {
    width: 215px;
}

.m-content-table-modal .tbl-houjin-td04 {
    width: 155px;
}

.m-tbl dl .tbl_dd_pl {
  padding-left: 0.7em;
}

@media screen and (max-width: 767px) {
  .m-tbl {
    margin: 10px auto 0;
  }
  .m-tbl th, .m-tbl td {
    padding: 5px 7px;
    line-height: 1.5;
    font-size: 12px;
  }
  .m-tbl .m-tblhead th,
  .m-tbl .m-tblhead {
    padding: 5px;
    white-space: inherit;
  }
  .m-tbl.m-tbl--s th, .m-tbl.m-tbl--s td {
    font-size: 11px;
  }
  .m-tbl.m-tbl--xs th, .m-tbl.m-tbl--xs td {
    font-size: 10px;
  }

  .m-content-table02 .tbl-houjin-td02 {
    width: auto;
  }
}

/* テーブルのキャプション
--------------------------------------------------------*/
caption.m-tbl-caption {
  margin-bottom: 5px;
  text-align: left;
  font-weight: bold;
  font-size: 18px;
  overflow: hidden;
}

caption.m-tbl-caption .m-tbl-caption__r {
  display: inline-block;
  float: right;
  margin-top: 5px;
  font-weight: normal;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  caption.m-tbl-caption {
    margin-bottom: 4px;
    font-size: 12px;
  }
  caption.m-tbl-caption .m-tbl-caption__r {
    margin-top: 4px;
    font-size: 10px;
  }
}

.m-tblcap {
  display: table;
  width: 100%;
  margin-bottom: -5px;
  font-size: 14px;
}

.m-tblcap__l {
  display: table-cell;
  vertical-align: bottom;
}

.m-tblcap__r {
  display: table-cell;
  vertical-align: bottom;
  text-align: right;
  padding-left: 15px;
  box-sizing: border-box;
}

.m-tblcap__ttl {
  font-weight: bold;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .m-tblcap {
    display: block;
    font-size: 10px;
  }
  .m-tblcap__l {
    display: block;
  }
  .m-tblcap__r {
    display: block;
    padding-left: 0;
  }
  .m-tblcap__ttl {
    font-weight: bold;
    font-size: 12px;
  }
}

/* テーブルの横スクロール
--------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .m-scroll-x {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
  }
  .m-scroll-x::-webkit-scrollbar {
    height: 5px;
  }
  .m-scroll-x::-webkit-scrollbar-track {
    background: #eee;
  }
  .m-scroll-x::-webkit-scrollbar-thumb {
    background: #666;
  }
  .m-scroll-x__icon {
    position: absolute;
    top: 100px;
    left: 50%;
    width: 100px;
    height: 100px;
    background-color: rgba(0, 0, 0, .3);
    margin: 0 0 0 -50px;
  }
  .m-scroll-x__icon:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 23px;
    left: 23px;
    width: 56px;
    height: 56px;
    background: url(/resources/img/icon_scroll.svg) no-repeat 0 0;
    background-size: 56px 56px;
  }
  .m-scroll-x.is-active .m-scroll-x__icon {
    display: none;
  }
}

/*-------------------------------------------------------------------------
 box
--------------------------------------------------------------------------*/
.m-box {
  margin-top: 30px;
  padding: 18px 20px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.m-box > :first-child {
  margin-top: 0;
}

.m-box > :last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .m-box {
    margin-top: 15px;
    padding: 13px 15px;
  }
}

.m-infobox {
  margin-top: 30px;
  padding: 18px 20px;
  border: 1px solid #ccc;
  background-color: #f0f1f2;
  box-sizing: border-box;
}

.m-infobox > :first-child {
  margin-top: 0;
}

.m-infobox > :last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .m-infobox {
    margin-top: 20px;
    padding: 13px 15px;
  }
}

.m-embox {
  margin: 30px auto;
  padding: 18px 20px;
  background-color: #dcf0fa;
  box-sizing: border-box;
}

.m-embox > :first-child {
  margin-top: 0;
}

.m-embox > :last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .m-embox {
    padding: 13px 15px;
  }
}

.m-bdrbox {
  margin-top: 30px;
  padding: 18px 20px;
  border: 5px solid #dcf0fa;
  border-radius: 5px;
  background-color: #fff;
  box-sizing: border-box;
}

.m-bdrbox > :first-child {
  margin-top: 0;
}

.m-bdrbox > :last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .m-bdrbox {
    margin-top: 15px;
    padding: 10px 12px;
    border-width: 4px;
  }
  .m-bdrbox .m-heading2 {
    font-size: 16px;
  }
  .m-bdrbox.m-bdrbox--horizontal{
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .m-bdrbox.m-bdrbox--horizontal > :first-child{
    width: 65%;
    margin-right:5%;
  }
  .m-bdrbox.m-bdrbox--horizontal-item{
    align-self: center;
  }
}

.m-embdrbox {
  margin-top: 40px;
  padding: 18px 20px;
  border: 3px solid #009ce5;
  background-color: #fff;
  box-sizing: border-box;
}

.m-embdrbox > :first-child {
  margin-top: 0;
}

.m-embdrbox > :last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .m-embdrbox {
    margin-top: 30px;
    padding: 13px 15px;
  }
}

.m-attbox {
  margin-top: 30px;
  padding: 18px 20px;
  border: 1px solid #c00;
  background-color: #fff5f5;
  box-sizing: border-box;
}

.m-attbox > :first-child {
  margin-top: 0;
}

.m-attbox > :last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .m-attbox {
    margin-top: 15px;
    padding: 13px 15px;
  }
}

.m-box--pad-l {
  padding: 30px;
}

@media screen and (max-width: 767px) {
  .m-box--pad-l {
    padding: 15px;
  }
}

/* お問合せBOX
--------------------------------------------------------*/
.m-contactbox {
  margin-top: 30px;
  padding: 18px 20px;
  border: 1px solid #ccc;
  background-color: #f0f1f2;
  box-sizing: border-box;
  text-align: center;
}

.m-contactbox dt {
  font-weight: bold;
}

.m-contactbox dd {
  margin-top: 5px;
}

.m-contactbox__tel {
  margin: 10px 0 !important;
  font-weight: bold;
  line-height: 1;
  font-size: 32px;
}

.m-contactbox__tel > span {
  display: inline-block;
  position: relative;
  padding-left: 52px;
}

.m-contactbox__tel > span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 42px;
  height: 24px;
  background: url(/resources/img/icon_freedial.svg) no-repeat 0 0;
  background-size: 42px 24px;
}

@media screen and (max-width: 767px) {
  .m-contactbox {
    margin-top: 20px;
    padding: 18px 18px;
  }
  .m-contactbox__tel {
    font-size: 26px;
  }
  .m-contactbox__tel > span {
    padding-left: 50px;
  }
  .m-contactbox__tel > span:before {
    top: 0;
  }
}

/* adobe reader
--------------------------------------------------------*/
.m-adobebox {
  display: table;
  width: 890px;
  margin: 50px auto 0;
  padding: 18px 20px;
  border: 1px solid #ccc;
  background-color: #f0f1f2;
  box-sizing: border-box;
}

.m-adobebox > :first-child {
  margin-top: 0;
}

.m-adobebox > :last-child {
  margin-bottom: 0;
}

.m-adobebox__bnr {
  display: table-cell;
  vertical-align: top;
  width: 178px;
  padding-top: 2px;
}

.m-adobebox__bnr img {
  width: 158px;
  height: auto;
}

.m-adobebox__text {
  display: table-cell;
  vertical-align: top;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .m-adobebox {
    display: block;
    width: 100%;
    margin-top: 35px;
    padding: 13px 15px;
  }
  .m-adobebox__bnr {
    display: block;
    width: 100%;
    text-align: center;
  }
  .m-adobebox__bnr img {
    width: 79px;
  }
  .m-adobebox__text {
    display: block;
    margin-top: 10px;
    font-size: 12px;
  }
}

/* ステップボックス
--------------------------------------------------------*/
.m-stepbox {
  margin-top: 40px;
}

.m-stepbox__item > dt {
  padding-bottom: 15px;
  border-bottom: 1px dashed #ccc;
  font-weight: bold;
  font-size: 18px;
}

.m-stepbox__item > dt > span {
  display: inline-block;
  vertical-align: middle;
  min-width: 110px;
  margin-right: 15px;
  border-radius: 6px;
  padding: 5px 10px;
  box-sizing: border-box;
  text-align: center;
  font-weight: normal;
  font-size: 14px;
  color: #fff;
}

.m-stepbox__item > dt > span.m-stepbox__num {
  min-width: inherit;
  min-width: auto;
  padding: 4px 10px;
  font-weight: bold;
}

.m-stepbox__item > dd {
  margin-top: 12px;
}

.m-stepbox__item > dd .m-icon-comment {
  margin-top: 5px;
}

.m-stepbox > li {
  position: relative;
  margin-bottom: 34px;
}

.m-stepbox > li:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -24px;
  left: 50%;
  border-style: solid;
  border-color: transparent;
  border-width: 14px 20px 0 20px;
  margin-left: -20px;
}

.m-stepbox > li:last-child {
  margin-bottom: 0;
}

.m-stepbox > li:last-child:after {
  content: none;
}

.m-stepbox > li:first-child .m-bdrbox {
  margin-top: 0;
}

.m-stepbox > li.m-stepbox__key:after {
  border-top-color: #009ce5;
}

.m-stepbox > li.m-stepbox__key .m-stepbox__item > dt > span {
  background-color: #009ce5;
}

.m-stepbox > li.m-stepbox__dark:after {
  border-top-color: #0260b3;
}

.m-stepbox > li.m-stepbox__dark .m-stepbox__item > dt > span {
  background-color: #0260b3;
}

@media screen and (max-width: 767px) {
  .m-stepbox {
    margin-top: 20px;
  }
  .m-stepbox__item > dt {
    padding-bottom: 12px;
    font-size: 14px;
  }
  .m-stepbox__item > dt > span {
    min-width: 80px;
    margin-right: 12px;
    padding: 5px 10px;
    font-size: 10px;
  }
}

/* 【オプション】
--------------------------------------------------------*/
.m-box--l {
  padding: 30px;
}

@media screen and (max-width: 767px) {
  .m-box--l {
    padding: 13px 15px;
  }
}

/*-------------------------------------------------------------------------
 media + text
--------------------------------------------------------------------------*/
/* テキストの回り込みなし
  PC、SPでカラムレイアウトは変わらず
--------------------------------------------------------*/
.m-media-l {
  overflow: hidden;
}

.m-media-l .m-media__thum {
  float: left;
  margin-right: 20px;
  display: table;
  width: 30px;
}

.m-media-l .m-media__thum > img {
  width: auto !important;
  max-width: inherit !important;
}

.m-media-l .m-media__body {
  overflow: hidden;
}

.m-media-l .m-media__body > :first-child {
  margin-top: 0;
}

.m-media-l .m-media__body > :last-child {
  margin-bottom: 0;
}

.m-media-r {
  overflow: hidden;
}

.m-media-r .m-media__thum {
  float: right;
  margin-left: 20px;
  display: table;
  width: 30px;
}

.m-media-r .m-media__thum > img {
  width: auto !important;
  max-width: inherit !important;
}

.m-media-r .m-media__body {
  overflow: hidden;
}

.m-media-r .m-media__body > :first-child {
  margin-top: 0;
}

.m-media-r .m-media__body > :last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .m-media-l .m-media__thum {
    margin-right: 10px;
  }
  .m-media-r .m-media__thum {
    margin-left: 10px;
  }
}

.m-media__caption {
  margin-top: 10px;
  line-height: 1.3;
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  .m-media__caption {
    margin-top: 6px;
    line-height: 1.5;
    font-size: 10px;
  }
}

/* テキストの回り込みなし（テーブル仕様：天地中央）
  PC、SPでカラムレイアウトは変わらず
--------------------------------------------------------*/
.m-media-tbl {
  display: table;
  width: 100%;
}

.m-media-tbl .m-media__thum {
  display: table-cell;
  vertical-align: middle;
  width: 1%;
  padding-right: 20px;
}

.m-media-tbl .m-media__body {
  display: table-cell;
  vertical-align: middle;
}

.m-media-tbl .m-media__body > :first-child {
  margin-top: 0;
}

.m-media-tbl .m-media__body > :last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .m-media-tbl .m-media__thum {
    padding-right: 10px;
  }
}

/* テキストの回り込みなし
  SPでは画像とテキストは上下になる
--------------------------------------------------------*/
.m-media {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
}

.m-media .m-media__thum {
  margin-right: 20px;
}

.m-media .m-media__thum > :first-child {
  margin-top: 0;
}

.m-media .m-media__thum > :last-child {
  margin-bottom: 0;
}

.m-media .m-media__body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.m-media .m-media__body > :first-child {
  margin-top: 0;
}

.m-media .m-media__body > :last-child {
  margin-bottom: 0;
}

.m-media.m-media--vmiddle {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
          align-items: center;
}

.m-media-rv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.m-media-rv .m-media__thum {
  margin-right: 0;
  margin-left: 20px;
}

.m-media-rv .m-media__body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.m-media-rv .m-media__body > :first-child {
  margin-top: 0;
}

.m-media-rv .m-media__body > :last-child {
  margin-bottom: 0;
}

.m-media-rv.m-media--vmiddle {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .m-media,
  .m-media-rv {
    display: block;
  }
  .m-media .m-media__thum,
  .m-media-rv .m-media__thum {
    margin: 0 0 10px 0;
    text-align: center;
  }
  .m-media .m-media__thum > img,
  .m-media-rv .m-media__thum > img {
    width: 100%;
    height: auto;
  }
}

/* テキストの回り込みあり
  SPでは画像とテキストは上下になる
--------------------------------------------------------*/
.m-media-fl {
  overflow: hidden;
}

.m-media-fl .m-media__thum {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
  display: table;
  width: 100px;
}

.m-media-fl .m-media__thum > img {
  width: auto !important;
  max-width: inherit !important;
}

.m-media-fl .m-media__body > :first-child {
  margin-top: 0;
}

.m-media-fl .m-media__body > :last-child {
  margin-bottom: 0;
}

.m-media-fl-rv {
  overflow: hidden;
}

.m-media-fl-rv .m-media__thum {
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
  display: table;
  width: 100px;
}

.m-media-fl-rv .m-media__thum > img {
  width: auto !important;
  max-width: inherit !important;
}

.m-media-fl-rv .m-media__body > :first-child {
  margin-top: 0;
}

.m-media-fl-rv .m-media__body > :last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .m-media,
  .m-media-rv,
  .m-media-fl,
  .m-media-fl-rv {
    width: 100%;
  }
  .m-media .m-media__thum,
  .m-media-rv .m-media__thum,
  .m-media-fl .m-media__thum,
  .m-media-fl-rv .m-media__thum {
    width: 100%;
    display: block;
    float: none;
    margin: 0;
    margin-bottom: 10px;
  }
  .m-media .m-media__thum > img,
  .m-media-rv .m-media__thum > img,
  .m-media-fl .m-media__thum > img,
  .m-media-fl-rv .m-media__thum > img {
    width: 100% !important;
  }
  .m-media.m-media--imgmax .m-media__thum,
  .m-media-rv.m-media--imgmax .m-media__thum,
  .m-media-fl.m-media--imgmax .m-media__thum,
  .m-media-fl-rv.m-media--imgmax .m-media__thum {
    text-align: center;
  }
  .m-media.m-media--imgmax .m-media__thum > img,
  .m-media-rv.m-media--imgmax .m-media__thum > img,
  .m-media-fl.m-media--imgmax .m-media__thum > img,
  .m-media-fl-rv.m-media--imgmax .m-media__thum > img {
    width: auto !important;
    max-width: 100% !important;
  }
}

/* 【オプション】 左右マージンを大きくする（20px ⇒ 30px）
--------------------------------------------------------*/
.m-media--l .m-media__thum {
  margin-right: 30px;
}

@media screen and (max-width: 767px) {
  .m-media--l .m-media__thum {
    margin-right: 0;
  }
}

/*-------------------------------------------------------------------------
 column
--------------------------------------------------------------------------*/
.m-cols__col {
  box-sizing: border-box;
  padding-left: 30px;
}

.m-cols2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: 30px;
  margin-left: -30px;
}

.m-cols2 .m-cols__col {
  width: 50%;
}

.m-cols2 .m-cols__col > :first-child {
  margin-top: 0;
}

.m-cols2 .m-cols__col > :last-child {
  margin-bottom: 0;
}

.m-cols2.m-cols--border {
  margin-left: -20px;
  margin-right: -20px;
}

.m-cols2.m-cols--border > .m-cols__col {
  padding: 0 20px;
  border-left: 1px dashed #ccc;
}

.m-cols2.m-cols--border > .m-cols__col:first-child {
  border-left: 0;
}

.m-cols3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: 30px;
  margin-left: -30px;
}

.m-cols3 .m-cols__col {
  width: 33.33333%;
}

.m-cols3 .m-cols__col > :first-child {
  margin-top: 0;
}

.m-cols3 .m-cols__col > :last-child {
  margin-bottom: 0;
}

.m-cols3.m-cols--border {
  margin-left: -20px;
  margin-right: -20px;
}

.m-cols3.m-cols--border > .m-cols__col {
  padding: 0 20px;
  border-left: 1px dashed #ccc;
}

.m-cols3.m-cols--border > .m-cols__col:first-child {
  border-left: 0;
}

.m-cols4 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: 30px;
  margin-left: -30px;
}

.m-cols4 .m-cols__col {
  width: 25%;
}

.m-cols4 .m-cols__col > :first-child {
  margin-top: 0;
}

.m-cols4 .m-cols__col > :last-child {
  margin-bottom: 0;
}

.m-cols4.m-cols--border {
  margin-left: -20px;
  margin-right: -20px;
}

.m-cols4.m-cols--border > .m-cols__col {
  padding: 0 20px;
  border-left: 1px dashed #ccc;
}

.m-cols4.m-cols--border > .m-cols__col:first-child {
  border-left: 0;
}

@media screen and (max-width: 767px) {
  .m-cols__col {
    margin: 15px 0 0 0;
    padding-left: 0;
  }
  .m-cols2 {
    display: block;
    margin-top: 0;
    margin-left: 0;
  }
  .m-cols2 .m-cols__col {
    width: 100%;
  }
  .m-cols2.m-cols--border {
    margin: 0;
  }
  .m-cols2.m-cols--border > .m-cols__col {
    margin-top: 10px;
    padding: 10px 0 0;
    border-left: 0;
    border-top: 1px dashed #ccc;
  }
  .m-cols2.m-cols--border > .m-cols__col:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }
  .m-cols3 {
    display: block;
    margin-top: 0;
    margin-left: 0;
  }
  .m-cols3 .m-cols__col {
    width: 100%;
  }
  .m-cols3.m-cols--border {
    margin: 0;
  }
  .m-cols3.m-cols--border > .m-cols__col {
    margin-top: 10px;
    padding: 10px 0 0;
    border-left: 0;
    border-top: 1px dashed #ccc;
  }
  .m-cols3.m-cols--border > .m-cols__col:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }
  .m-cols4 {
    display: block;
    margin-top: 0;
    margin-left: 0;
  }
  .m-cols4 .m-cols__col {
    width: 100%;
  }
  .m-cols4.m-cols--border {
    margin: 0;
  }
  .m-cols4.m-cols--border > .m-cols__col {
    margin-top: 10px;
    padding: 10px 0 0;
    border-left: 0;
    border-top: 1px dashed #ccc;
  }
  .m-cols4.m-cols--border > .m-cols__col:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }
}

/* カラム間の幅オプション
--------------------------------------------------------*/
.m-cols--l {
  margin-left: -38px;
}

.m-cols--l .m-cols__col {
  padding-left: 38px;
}

.m-cols--s {
  margin-left: -20px;
}

.m-cols--s .m-cols__col {
  padding-left: 20px;
}

/* 幅なりゆきのカラム
--------------------------------------------------------*/
.m-coltbl {
  display: table;
  width: 100%;
  margin-top: 20px;
}

.m-coltbl__col {
  display: table-cell;
  vertical-align: top;
  box-sizing: border-box;
}

.m-coltbl__col > :first-child {
  margin-top: 0;
}

.m-coltbl__col > :last-child {
  margin-bottom: 0;
}

.m-coltbl__col:last-child {
  padding-left: 30px;
}

.m-coltbl.m-coltbl--s .m-coltbl__col:last-child {
  padding-left: 20px;
}

.m-coltbl.m-coltbl--center {
  width: auto;
  margin-left: auto;
  margin-right: auto;
}

.m-coltbl.m-coltbl--vmiddle .m-coltbl__col {
  vertical-align: middle;
}

.m-coltbl.m-coltbl--border > .m-coltbl__col:first-child {
  padding-right: 20px;
  border-right: 1px dashed #ccc;
}

.m-coltbl.m-coltbl--border > .m-coltbl__col:last-child {
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .m-coltbl {
    display: block;
    margin-top: 15px;
  }
  .m-coltbl__col {
    display: block;
    margin-top: 10px;
  }
  .m-coltbl__col:first-child {
    margin-top: 0;
  }
  .m-coltbl__col:last-child {
    padding-left: 0;
  }
  .m-coltbl.m-coltbl--border .m-coltbl__col:first-child {
    padding-right: 0;
    border-right: 0;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ccc;
  }
  .m-coltbl.m-coltbl--border .m-coltbl__col:last-child {
    padding-left: 0;
  }
}

/*-------------------------------------------------------------------------
 block
--------------------------------------------------------------------------*/
.m-block-s {
  margin-top: 30px;
}

.m-block {
  margin-top: 50px;
}

.m-block-l {
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .m-block-s {
    margin-top: 20px;
  }
  .m-block {
    margin-top: 30px;
  }
  .m-block-l {
    margin-top: 40px;
  }
}

/*-------------------------------------------------------------------------
 tab
--------------------------------------------------------------------------*/
.m-tab > ul,
.m-tablink > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  margin-top: 20px;
  border-bottom: 5px solid #009ce5;
}

.m-tab > ul > li,
.m-tablink > ul > li {
  width: 50%;
  vertical-align: middle;
  box-sizing: border-box;
  margin-bottom: -1px;
}

.m-tab > ul > li:first-child > a,
.m-tablink > ul > li:first-child > a {
  border-left: 1px solid #b3b3b3;
}

.m-tab > ul > li > a,
.m-tablink > ul > li > a {
  display: table;
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
  border-top: 1px solid #b3b3b3;
  border-right: 1px solid #b3b3b3;
  text-align: center;
  text-decoration: none;
  line-height: 1.3;
  font-weight: bold;
  font-size: 18px;
  -webkit-transition: all .3s;
          transition: all .3s;
}

.m-tab > ul > li > a:hover,
.m-tablink > ul > li > a:hover {
  background-color: #f2f2f2;
}

.m-tab > ul > li > a > div,
.m-tablink > ul > li > a > div {
  display: table-cell;
  height: 58px;
  padding: 0 10px;
  vertical-align: middle;
  box-sizing: border-box;
}

.m-tab > ul > li > a > div > span,
.m-tablink > ul > li > a > div > span {
  display: inline-block;
  position: relative;
  padding: 5px 0 5px 22px;
  box-sizing: border-box;
}

.m-tab > ul > li > a > div > span:before,
.m-tablink > ul > li > a > div > span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  margin-top: -6px;
  border-top: 2px solid #009ce5;
  border-right: 2px solid #009ce5;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.m-tab > ul > li > a:hover span,
.m-tablink > ul > li > a:hover span {
  text-decoration: underline;
}

.m-tab > ul > li > a.is-current,
.m-tablink > ul > li > a.is-current {
  background-color: #009ce5;
  border-color: #009ce5;
  color: #fff;
  pointer-events: none;
  position: relative;
}

.m-tab > ul > li > a.is-current > div > span:before,
.m-tablink > ul > li > a.is-current > div > span:before {
  margin-top: -8px;
  border-color: #fff;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}

.m-tab > ul > li > a.is-current:after,
.m-tablink > ul > li > a.is-current:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -18px;
  left: 50%;
  border-style: solid;
  border-color: transparent;
  border-width: 15px 11px 0 11px;
  border-top-color: #009ce5;
  margin-left: -11px;
}

.m-tab > ul > li:first-child > a,
.m-tablink > ul > li:first-child > a {
  border-top-left-radius: 5px;
}

.m-tab > ul > li:last-child > a,
.m-tablink > ul > li:last-child > a {
  border-top-right-radius: 5px;
}

.m-tab.m-tab--tab3 > ul > li,
.m-tablink.m-tab--tab3 > ul > li {
  box-sizing: border-box;
  width: 33.3333%;
}

@media screen and (max-width: 767px) {
  .m-tab > ul,
  .m-tablink > ul {
    margin-top: 15px;
    margin-bottom: 20px;
  }
  .m-tab > ul > li > a,
  .m-tablink > ul > li > a {
    line-height: 1.5;
    font-size: 12px;
  }
  .m-tab > ul > li > a > div,
  .m-tablink > ul > li > a > div {
    display: table-cell;
    height: 60px;
    padding: 0 5px;
  }
  .m-tab > ul > li > a > div > span,
  .m-tablink > ul > li > a > div > span {
    padding: 5px 0 5px 18px;
  }
  .m-tab > ul > li > a > div > span:before,
  .m-tablink > ul > li > a > div > span:before {
    width: 5px;
    height: 5px;
    margin-top: -3px;
  }
  .m-tab > ul > li > a.is-current > div > span:before,
  .m-tablink > ul > li > a.is-current > div > span:before {
    margin-top: -6px;
  }
  .m-tab > ul > li:first-child > a,
  .m-tablink > ul > li:first-child > a {
    border-top-left-radius: 10px;
  }
  .m-tab > ul > li:last-child > a,
  .m-tablink > ul > li:last-child > a {
    border-top-right-radius: 10px;
  }
}

/*-------------------------------------------------------------------------
 panel
--------------------------------------------------------------------------*/
/* パネルリンクエリア
--------------------------------------------------------*/
.m-link-area {
  display: block;
  color: #333 !important;
}

.m-link-area:link {
  text-decoration: none;
}

.m-link-area img {
  -webkit-transition: all .3s;
          transition: all .3s;
}

.m-link-area:hover img {
  opacity: .75;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
      filter: alpha(opacity=75);
}

/* パネル
--------------------------------------------------------*/
.m-panel {
  background-color: #fff;
  border: 1px solid #b3b3b3;
  border-radius: 6px;
  box-shadow: 0 2px 0 0 #b3b3b3;
  box-sizing: border-box;
  overflow: hidden;
}

.m-panel__img {
  float: left;
  padding: 7px 0 7px 7px;
}

.m-panel__img > img {
  width: 165px;
}

.m-panel__body {
  overflow: hidden;
  padding: 10px 10px 10px 15px;
  font-size: 14px;
}

.m-panel__wrap {
  overflow: hidden;
}

.m-panel__woman {
  margin: 0 10px;
  padding: 12px 10px 10px;
  border-top: 1px dashed #ccc;
}

.m-panel__ttl {
  margin-bottom: 3px;
  font-weight: bold;
  font-size: 18px;
}

.m-panel__ttl .m-icon-premium-s {
  display: block;
  position: relative;
  overflow: hidden;
  height: 0;
  width: 0;
  text-indent: 100%;
  white-space: nowrap;
  width: 106px;
  height: 22px;
}

.m-panel__ttl .m-icon-premium-s:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 106px;
  height: 16px;
  background: url(/resources/img/img_premium_s.svg) no-repeat 0 0;
  background: url(/resources/img/img_premium_s.svg) no-repeat 0 0;
  background-size: 106px 16px;
}

@media screen and (max-width: 767px) {
  .m-panel__img {
    padding: 5px 0 5px 5px;
  }
  .m-panel__img > img {
    width: 82px;
  }
  .m-panel__body {
    padding: 10px;
    font-size: 12px;
  }
  .m-panel__ttl {
    margin-bottom: 5px;
    line-height: 1.5;
    font-size: 14px;
  }
  .m-panel__ttl .m-icon-premium-s {
    height: 22px;
  }
}

/* パネルオリコンバナー設定_20170301
--------------------------------------------------------*/
.m-panel__oricon{
  padding: 0 10px 10px 10px;
}


/* パネル（2カラム）
--------------------------------------------------------*/
.m-panel2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
          align-items: stretch;
  margin-left: -20px;
  overflow: hidden;
}

.m-panel2.js-slider-panel2 {
  margin-left: -19px;
}

.m-panel2.js-slider-panel2 .m-panel2__item {
  margin: 20px 1px 2px 19px;
}

.m-panel2__item {
  width: 435px;
  margin: 20px 0 2px 20px;
  background-color: #fff;
  border: 1px solid #b3b3b3;
  border-radius: 6px;
  box-shadow: 0 2px 0 0 #b3b3b3;
  box-sizing: border-box;
  overflow: hidden;
}

.m-panel2__img {
  float: left;
  padding: 7px 0 7px 7px;
}

.m-panel2__img > img {
  width: 165px;
}

.m-panel2__body {
  overflow: hidden;
  padding: 10px 10px 10px 15px;
  font-size: 14px;
}

.m-panel2__ttl {
  margin-bottom: 3px;
  font-weight: bold;
  font-size: 18px;
}

.m-panel2__ttl .m-icon-premium-s {
  display: block;
  position: relative;
  overflow: hidden;
  height: 0;
  width: 0;
  text-indent: 100%;
  white-space: nowrap;
  width: 106px;
  height: 22px;
}

.m-panel2__ttl .m-icon-premium-s:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 106px;
  height: 16px;
  background: url(/resources/img/img_premium_s.svg) no-repeat 0 0;
  background: url(/resources/img/img_premium_s.svg) no-repeat 0 0;
  background-size: 106px 16px;
}

@media screen and (max-width: 767px) {
  .m-panel2 {
    display: block;
    margin-left: 0;
  }
  .m-panel2.js-slider-panel2 {
    margin-left: 0;
  }
  .m-panel2.js-slider-panel2 .m-panel2__item {
    margin: 0 0 2px 0;
  }
  .m-panel2__item {
    float: none;
    width: 100%;
    margin: 0 0 2px 0;
  }
  .m-panel2__img {
    padding: 5px 0 5px 5px;
  }
  .m-panel2__img > img {
    width: 82px;
  }
  .m-panel2__body {
    padding: 10px 10px 10px 10px;
    font-size: 12px;
  }
  .m-panel2__ttl {
    margin-bottom: 3px;
    font-size: 14px;
  }
  .m-panel2__ttl .m-icon-premium-s {
    height: 22px;
  }
}

/* パネル（4カラム）
--------------------------------------------------------*/
.m-panel4 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
          align-items: stretch;
  margin-left: -22px;
}

.m-panel4.js-slider-panel4 {
  margin-left: -21px;
}

.m-panel4.js-slider-panel4 .m-panel4__item {
  margin: 20px 1px 2px 21px;
}

.m-panel4__item {
  width: 271px;
  margin: 20px 0 2px 22px;
  background-color: #fff;
  border: 1px solid #b3b3b3;
  border-radius: 6px;
  box-shadow: 0 2px 0 0 #b3b3b3;
  box-sizing: border-box;
}

.m-panel4__img {
  padding: 7px 7px 0;
}

.m-panel4__img > img {
  width: 100%;
}

.m-panel4__body {
  padding: 15px 12px;
  font-size: 14px;
}

.m-panel4__ttl {
  margin-bottom: 5px;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}

.m-content-main .m-panel4__item {
  width: 206px;
}

@media screen and (max-width: 767px) {
  .m-panel4 {
    width: 100%;
    margin-left: 0;
    font-size: 0;
    overflow: hidden;
  }
  .m-panel4.js-slider-panel4 {
    margin-left: 0;
  }
  .m-panel4.js-slider-panel4 .m-panel4__item {
    margin: 15px 0 2px 3.6%;
  }
  .m-panel4__item {
    width: 48%;
    display: inline-block;
    vertical-align: top;
    margin-top: 15px;
    margin-left: 3.6%;
  }
  .m-panel4__item:nth-child(2n+1) {
    margin-left: 0;
  }
  .m-panel4__img {
    padding: 5px 5px 0;
  }
  .m-panel4__body {
    padding: 12px 10px;
    font-size: 12px;
  }
  .m-panel4__ttl {
    line-height: 1.5;
    font-size: 14px;
  }
  .m-panel4.m-panel-service .m-panel4__item {
    min-height: 226px;
  }
  .m-panel4.m-panel-lifeevent {
    display: block;
  }
  .m-content-main .m-panel4__item {
    width: 48%;
  }
}

/*-------------------------------------------------------------------------
 Q＆A
--------------------------------------------------------------------------*/
.m-qa {
  padding: 15px 0;
  border-top: 1px dashed #ccc;
}

.m-qa:first-child {
  border-top: 0;
  padding-top: 0;
}

.m-qa:first-child.m-qa--border {
  padding: 15px 0;
  border-top: 1px dashed #ccc;
}

.m-qa__icon {
  margin-right: 5px;
  font-weight: bold;
  font-size: 18px;
}

.m-qa > dt {
  padding-left: 2em;
  text-indent: -2em;
  font-weight: bold;
}

.m-qa > dt .m-qa__icon {
  color: #0260b3;
}

.m-qa > dd {
  margin-top: 7px;
  padding-left: 2em;
  text-indent: -2em;
}

.m-qa > dd .m-qa__icon {
  color: #009ce5;
}

.m-qa > dd > ul,
.m-qa > dd > ol {
  margin-left: 2em;
}

.m-qa > dd .m-qa__cont {
  display: inline-block;
  vertical-align: top;
  text-indent: 0;
  margin-top: 2px;
}

.m-qa > dd .m-qa__cont > :first-child {
  margin-top: 0;
}

.m-qa > dd .m-qa__cont > :last-child {
  margin-bottom: 0;
}

.m-heading1 + .m-qa,
.m-heading2 + .m-qa,
.m-heading2 + .m-qa,
.m-modal__h2 + .m-qa {
  border-top: 0;
  padding-top: 0;
}

@media screen and (max-width: 767px) {
  .m-qa > dd {
    margin-top: 5px;
  }
}

/* QAアコーディオン
--------------------------------------------------------*/
.m-qa-acc {
  margin-top: 15px;
  border: 1px solid #ccc;
}

.m-qa-acc > dt {
  padding: 7px 10px;
  font-weight: bold;
}

.m-qa-acc > dt > span {
  display: block;
  padding-left: 60px;
  text-indent: -30px;
}

.m-qa-acc > dt > span:before {
  margin-top: 2px;
}

.m-qa-acc > dt > span .m-qa__icon {
  margin-right: 7px;
  vertical-align: text-bottom;
  color: #0260b3;
}

.m-qa-acc > dt > span .m-qa__icon:before, .m-qa-acc > dt > span .m-qa__icon:after {
  margin-top: 2px;
}

.m-qa-acc > dd {
  margin-top: 0 !important;
  border-top: 1px dashed #ccc;
  padding: 12px 10px 12px 40px;
}

.m-qa-acc > dd > div {
  padding-left: 28px;
  text-indent: -28px;
}

.m-qa-acc > dd > div .m-qa__icon {
  margin-right: 7px;
  color: #009ce5;
}

.m-qa-acc > dd > ul,
.m-qa-acc > dd > ol {
  margin-left: 28px;
}

@media screen and (max-width: 767px) {
  .m-qa-acc > dt > span .m-qa__icon {
    vertical-align: middle;
  }
  .m-qa-acc > dd {
    padding: 8px 10px 8px 40px;
  }
  .m-qa-acc > dd > div {
    padding-left: 30px;
    text-indent: -27px;
  }
  .m-qa-acc > dd > div .m-qa__icon {
    vertical-align: middle;
  }
  .m-qa-acc > dd > ul,
  .m-qa-acc > dd > ol {
    margin-left: 30px;
  }
}

/*-------------------------------------------------------------------------
 news
--------------------------------------------------------------------------*/
.m-topics-contents {
  margin-top: 18px;
}

@media screen and (max-width: 767px) {
  .m-topics-contents {
    margin-top: 15px;
  }
}

/*-------------------------------------------------------------------------
 form
--------------------------------------------------------------------------*/
/* フォームテーブル
--------------------------------------------------------*/
.m-form {
  margin: 20px auto 0;
  border-bottom: 1px dashed #ccc;
}

.m-form__required {
  margin-left: 1px;
  color: #c00;
}

.m-form__requiredtext {
  padding-bottom: 5px;
  font-size: 14px;
  color: #c00;
  font-weight: bold;
}

.m-form__thnote {
  font-weight: normal;
  font-size: 14px;
}

.m-form > dl {
  display: table;
  width: 100%;
  box-sizing: border-box;
  border-top: 1px dashed #ccc;
  padding: 10px 0;
}

.m-form > dl > dt {
  display: table-cell;
  vertical-align: middle;
  width: 33%;
  box-sizing: border-box;
  padding: 10px 20px 10px 17px;
  background-color: #dcf0fa;
  border-right: 2px solid #fff;
  border-left: 3px solid #009ce5;
  font-weight: bold;
}

.m-form > dl > dd {
  display: table-cell;
  vertical-align: middle;
  width: 67%;
  box-sizing: border-box;
  padding: 0 0 0 20px;
}

.m-form > dl > dd > :first-child {
  margin-top: 0;
}

.m-form > dl > dd > :last-child {
  margin-bottom: 0;
}

.m-form > dl.m-form__subs {
  padding: 9px 0;
}

.m-form > dl.m-form__subs:first-child {
  padding-top: 10px;
}

.m-form > dl.m-form__subs > dt {
  width: 16%;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.m-form > dl.m-form__subs > dd {
  width: 84%;
  padding: 0;
}

.m-form > dl.m-form__subs > dd > dl {
  display: table;
  width: 100%;
  box-sizing: border-box;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.m-form > dl.m-form__subs > dd > dl > dt {
  display: table-cell;
  vertical-align: middle;
  width: 20%;
  box-sizing: border-box;
  padding: 10px 10px 10px 20px;
  background-color: #dcf0fa;
  border-right: 2px solid #fff;
  font-weight: bold;
  font-size: 14px;
}

.m-form > dl.m-form__subs > dd > dl > dd {
  display: table-cell;
  vertical-align: middle;
  width: 80%;
  box-sizing: border-box;
  padding: 0 0 0 20px;
}

.m-form > dl.m-form__subs > dd > dl > dd > :first-child {
  margin-top: 0;
}

.m-form > dl.m-form__subs > dd > dl > dd > :last-child {
  margin-bottom: 0;
}

.m-form > dl.m-form__row {
  padding: 10px 0 0;
  display: block;
}

.m-form > dl.m-form__row > dt {
  display: block;
  width: 100%;
  border-right: 0;
}

.m-form > dl.m-form__row > dd {
  display: block;
  width: 100%;
  padding: 10px 0 10px 20px;
}

.m-form > dl.m-form__row > dd > :first-child {
  margin-top: 0;
}

.m-form > dl.m-form__row > dd > :last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .m-form {
    margin: 15px auto 0;
  }
  .m-form__requiredtext {
    padding-bottom: 7px;
    font-size: 10px;
  }
  .m-form__thnote {
    font-size: 12px;
  }
  .m-form > dl {
    display: block;
    padding: 10px 0 15px;
  }
  .m-form > dl > dt {
    display: block;
    width: 100%;
    padding: 10px 10px 10px 12px;
    border-right: 0;
    font-weight: bold;
    font-size: 14px;
  }
  .m-form > dl > dd {
    display: block;
    width: 100%;
    padding: 15px 0 0;
  }
  .m-form > dl.m-form__subs {
    padding: 9px 0 15px;
  }
  .m-form > dl.m-form__subs > dt {
    width: 100%;
    border-right: 0;
    border-top: 0;
    border-bottom: 0;
    font-size: 14px;
  }
  .m-form > dl.m-form__subs > dd {
    width: 100%;
    padding: 0;
  }
  .m-form > dl.m-form__subs > dd > dl {
    display: block;
    width: 100%;
    border: 0;
  }
  .m-form > dl.m-form__subs > dd > dl > dt {
    display: block;
    width: 100%;
    padding: 10px 10px 10px 15px;
    border-right: 0;
  }
  .m-form > dl.m-form__subs > dd > dl > dd {
    display: block;
    width: 100%;
    padding: 15px 0;
  }
  .m-form > dl.m-form__subs > dd > dl:first-child > dt {
    margin-top: 5px;
  }
  .m-form > dl.m-form__subs > dd > dl:last-child > dd {
    padding-bottom: 0;
  }
  .m-form > dl.m-form__row {
    display: block;
  }
  .m-form > dl.m-form__row > dt {
    display: block;
    width: 100%;
    border-right: 0;
  }
  .m-form > dl.m-form__row > dd {
    display: block;
    width: 100%;
    padding: 15px 0;
  }
  .m-form > dl.m-form__row.m-form--narrow > dd {
    padding: 10px 0;
  }
}

/* フォームパーツ
--------------------------------------------------------*/
input[type="text"],
input[type="search"],
input[type="password"],
input[type="tel"],
input[type="url"],
input[type="email"],
input[type="number"],
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"] {
  border: 1px solid #b3b3b3;
  padding: 4px 12px;
  box-sizing: border-box;
}

textarea {
  border: 1px solid #b3b3b3;
  width: 100%;
  min-height: 100px;
  box-sizing: border-box;
}

select {
  width: 100%;
  padding: 4px 24px 4px 12px;
  border: 1px solid #b3b3b3;
  border-radius: 5px;
  background-color: #fff;
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

.m-form-select {
  display: inline-block;
  box-sizing: border-box;
  position: relative;
}

.m-form-select:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 8px;
  margin-top: -4px;
  border-style: solid;
  border-color: transparent;
  border-width: 7px 4px 0 4px;
  border-top-color: #666;
  pointer-events: none;
}

.m-form-check {
  display: block;
  padding-left: 21px;
}

.m-form-check > input[type="radio"],
.m-form-check > input[type="checkbox"] {
  margin-left: -20px;
  vertical-align: baseline;
}

@media screen and (max-width: 767px) {
  input[type="text"],
  input[type="search"],
  input[type="password"],
  input[type="tel"],
  input[type="url"],
  input[type="email"],
  input[type="number"],
  input[type="datetime"],
  input[type="date"],
  input[type="month"],
  input[type="week"],
  input[type="time"] {
    width: 100%;
    padding: 8px 12px;
  }
  select {
    padding: 6px 24px 6px 10px;
  }
  .m-form-select {
    width: 100%;
  }
}

:placeholder-shown {
  color: #999;
}

::-webkit-input-placeholder {
  color: #999;
}

::-moz-placeholder {
  color: #999;
}

:-ms-input-placeholder {
  color: #999;
}

.m-form-note {
  margin: 16px 0 8px;
  font-size: 14px;
}

.m-form-notebtm {
  margin: 8px 0 16px;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .m-form-note {
    margin: 16px 0 8px;
    font-size: 10px;
  }
  .m-form-notebtm {
    margin: 8px 0 16px;
    font-size: 10px;
  }
}

.m-form-num {
  display: inline-block;
  width: 115px;
  margin: 0 8px;
}

@media screen and (max-width: 767px) {
  .m-form-num {
    width: 28% !important;
    margin: 0 4px;
  }
}

.m-form-radio {
  display: inline-block;
  padding: 0 20px;
  vertical-align: bottom;
}

.m-form-radio.m-list-nomark {
  padding-top: 8px;
  padding-bottom: 8px;
}

.m-form__row > dd .m-form-radio {
  margin-left: -20px !important;
}

@media screen and (max-width: 767px) {
  .m-form-radio {
    padding: 6px 10px 6px;
  }
  .m-form__row > dd .m-form-radio {
    margin-left: 0 !important;
  }
}

.m-required {
  background-color: #fff4c7;
}

.m-form-name > dd .m-form-nameset {
  display: inline-block;
  margin-left: 20px;
}

.m-form-name > dd .m-form-nameset > span {
  display: inline-block;
}

.m-form-name > dd .m-form-nameset > span:nth-child(1) {
  width: 2.5em;
  white-space: nowrap;
}

.m-form-name > dd .m-form-nameset:first-child {
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .m-form-name > dd .m-form-nameset {
    display: table;
    width: 100%;
    margin: 10px 0 0 0;
  }
  .m-form-name > dd .m-form-nameset > span {
    display: table-cell;
  }
  .m-form-name > dd .m-form-nameset > span:nth-child(1) {
    width: 10%;
    padding-right: 5px;
    box-sizing: border-box;
  }
  .m-form-name > dd .m-form-nameset > span:nth-child(2) {
    width: 90%;
  }
  .m-form-name > dd .m-form-nameset:first-child {
    margin-top: 0;
  }
}

.m-form-birthday .m-form-select {
  width: 80px;
  margin: 0 8px 0 15px;
}

.m-form-birthday .m-form-select > select {
  width: 100%;
}

.m-form-birthday .m-birth-year {
  width: 200px;
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .m-form-birthday .m-form-select {
    width: 20%;
    margin: 0 5px 0 5px;
  }
  .m-form-birthday .m-birth-year {
    width: 30%;
    margin-left: 0;
  }
}

.m-form-prefecture {
  margin-right: 15px;
}

@media screen and (max-width: 767px) {
  .m-form-prefecture {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.m-form-addbtn {
  display: inline-block;
  vertical-align: middle;
  margin-top: -1px;
  margin-left: 10px;
}

@media screen and (max-width: 767px) {
  .m-form-addbtn {
    display: block;
    margin-top: 15px;
    margin-left: 0;
  }
}

.m-form-tel :first-child {
  margin-left: 0;
}

.m-info-check {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
}

.m-info-check input {
  position: absolute;
  top: 3px;
  left: 0;
}

@media screen and (max-width: 767px) {
  .m-info-check {
    padding-left: 20px;
    font-size: 12px;
  }
  .m-info-check input {
    position: absolute;
    top: 1px;
    left: 0;
  }
}

/* フォームパーツ用 width
--------------------------------------------------------*/
.m-form-w--s {
  width: 165px;
}

.m-form-w--m {
  width: 370px;
}

.m-form-w--half {
  width: 50%;
}

.m-form-w--full {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .m-form-w--s {
    width: 100%;
  }
  .m-form-w--m {
    width: 100%;
  }
  .m-form-w--half {
    width: 100%;
  }
  .m-form-w--full {
    width: 100%;
  }
}

/* 個人情報に関するご案内
--------------------------------------------------------*/
.m-privacy-info {
  margin-bottom: 15px;
}

.m-privacy-info > dt {
  font-weight: bold;
}

.m-privacy-info > dd {
  margin-top: 3px;
  font-size: 14px;
}

.m-privacy-info > dd .m-privacy-link {
  margin-top: 5px;
}

@media screen and (max-width: 767px) {
  .m-privacy-info {
    margin-bottom: 15px;
    font-size: 12px;
  }
  .m-privacy-info > dd {
    font-size: 12px;
  }
}

/* 強調チェック
--------------------------------------------------------*/
.m-emcheck {
  margin-top: 20px;
  padding: 15px 20px 10px;
  background-color: #fff4c7;
  font-weight: bold;
  font-size: 18px;
}

.m-emcheck__note {
  font-weight: normal;
  font-size: 16px;
}

.m-emcheck__check {
  display: block;
  position: relative;
  padding-left: 45px;
}

.m-emcheck__check:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -3px;
  left: 0;
  width: 35px;
  height: 28px;
  background: url(/resources/img/icon_check_off.svg) no-repeat 0 0;
  background-size: 35px 28px;
}

.m-emcheck input[type=checkbox] {
  display: none;
}

.m-emcheck input[type=checkbox]:checked + .m-emcheck__check:before {
  background: url(/resources/img/icon_check.svg) no-repeat 0 0;
  background-size: 35px 28px;
}

@media screen and (max-width: 767px) {
  .m-emcheck {
    padding: 15px 10px 10px;
    font-size: 15px;
  }
}

/* 確認・完了画面のメッセージ
--------------------------------------------------------*/
.m-form-msg {
  margin-top: 30px;
  line-height: 1.3;
  font-weight: bold;
  font-size: 24px;
}

.m-form-msglead {
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .m-form-msg {
    margin-top: 15px;
    font-size: 16px;
  }
  .m-form-msglead {
    margin-top: 7px;
  }
}

/* 完了画面メッセージ
--------------------------------------------------------*/
.m-thanks-msg {
  width: 750px;
  diaplsy: table;
  margin: 90px auto;
}

.m-thanks-msg .m-media__thum {
  margin-right: 40px;
}

.m-thanks-msg__img {
  display: inline-block;
  padding-bottom: 10px;
}

.m-thanks-msg__img > img {
  width: 122px;
  height: auto;
}

@media screen and (max-width: 767px) {
  .m-thanks-msg {
    width: 100%;
    diaplsy: block;
    margin: 30px auto;
  }
  .m-thanks-msg .m-media__thum {
    margin-right: 0;
  }
}

/*-------------------------------------------------------------------------
 movie
--------------------------------------------------------------------------*/
/* movie
--------------------------------------------------------*/
.m-movie video {
  border: 2px solid #666;
  border-radius: 2px;
}

@media screen and (max-width: 767px) {
  .m-movie video {
    width: 100%;
    height: auto;
  }
}

/* youtube
--------------------------------------------------------*/
.m-youtube {
  margin: 30px auto 0;
}

.m-youtube iframe {
  border: 2px solid #666;
  border-radius: 2px;
}

@media screen and (max-width: 767px) {
  .m-youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    height: 0;
    overflow: hidden;
  }
  .m-youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
}

/*-------------------------------------------------------------------------
 modal
--------------------------------------------------------------------------*/
.m-modal {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  width: 800px;
  margin: auto;
  padding-top: 2px;
  background-color: #fff;
  box-sizing: border-box;
  overflow-y: auto;
  z-index: 1000;
}

.m-modal__h1 {
  margin: 0 2px;
  padding: 7px 15px 6px 35px;
  background-color: #009ce5;
  font-weight: bold;
  font-size: 22px;
  color: #fff;
  position: relative;
}

.m-modal__h1:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 12px;
  left: 15px;
  width: 4px;
  height: 22px;
  background-color: #fff;
}

.m-modal__h2 {
  margin: 30px 0 13px;
  padding: 6px 13px 5px;
  border: 1px solid #009ce5;
  font-weight: bold;
  font-size: 18px;
}

.m-modal__h2 + * {
  margin-top: 0 !important;
}

.m-modal__body {
  padding: 20px 27px 27px;
}

.m-modal__body .m-modal__h2:first-child {
  margin-top: 10px;
}

.m-modal__close {
  margin-top: 25px;
  text-align: center;
  cursor: pointer;
}

.m-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .7);
  z-index: 900;
  cursor: pointer;
}

.is-overlay-show .m-modal-overlay {
  display: block;
}

.m-modal-iframe {
  width: 100%;
  height: 480px;
}

@media screen and (max-width: 767px) {
  .m-modal {
    width: 92%;
  }
  .m-modal__h1 {
    padding: 10px 10px 10px 28px;
    line-height: 1.5;
    font-size: 18px;
  }
  .m-modal__h1:after {
    top: 10px;
    left: 12px;
    width: 3px;
  }
  .m-modal__h2 {
    margin-top: 20px;
    padding: 4px 8px 3px 10px;
    font-size: 16px;
  }
  .m-modal__body {
    padding: 12px 15px 20px;
  }
  .m-modal__close {
    margin-top: 20px;
  }
  .m-modal__close .m-btn-close {
    width: auto;
  }
}

/* モーダル内のモジュール： ポイント
--------------------------------------------------------*/
.m-pointlist {
  overflow: hidden;
  margin: 5px 0 20px -15px;
}

.m-pointlist > li {
  float: left;
  margin: 10px 0 0 15px;
  border: 2px solid #009ce5;
  border-radius: 6px;
  padding: 12px 20px;
  line-height: 1.3;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  color: #009ce5;
}

.m-pointlist > li > span {
  font-weight: normal;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .m-pointlist {
    margin: 5px 0 15px -10px;
  }
  .m-pointlist > li {
    margin: 8px 0 0 10px;
    padding: 5px 10px;
    font-size: 14px;
  }
  .m-pointlist > li > span {
    font-size: 12px;
  }
}

/*-------------------------------------------------------------------------
 js module
--------------------------------------------------------------------------*/
/*--------------------------------------------------------
 accordion
--------------------------------------------------------*/
/* 開閉エリア制御
--------------------------------------------------------*/
.m-acc .m-acc__cont {
  display: none;
  box-sizing: border-box;
}

.m-acc .m-acc__cont > :first-child {
  margin-top: 0;
}

.m-acc.is-open .m-acc__ctl > span:after,
.m-acc.is-open .m-acc__ctl-r > span:after,
.m-acc.is-open .m-acc__ctlbox > span:after, .m-acc.is-open-mq .m-acc__ctl > span:after,
.m-acc.is-open-mq .m-acc__ctl-r > span:after,
.m-acc.is-open-mq .m-acc__ctlbox > span:after {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}

.m-acc.is-open .m-acc__cont, .m-acc.is-open-mq .m-acc__cont {
  display: block;
  margin-top: 15px;
}

@media screen and (max-width: 767px) {
  .m-acc.is-open .m-acc__ctl > span:after,
  .m-acc.is-open .m-acc__ctl-r > span:after, .m-acc.is-close-mq .m-acc__ctl > span:after,
  .m-acc.is-close-mq .m-acc__ctl-r > span:after {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .m-acc.is-open .m-acc__cont, .m-acc.is-close-mq .m-acc__cont {
    display: block;
    margin-top: 10px;
  }
  .m-acc.is-open-mq .m-acc__ctl > span:after,
  .m-acc.is-open-mq .m-acc__ctl-r > span:after {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .m-acc.is-open-mq .m-acc__cont {
    display: none;
  }
}

/* 開閉ボタンのマウスオーバー
--------------------------------------------------------*/
[class*="m-acc__ctl"]:hover:before {
  background-color: #f2f2f2;
}

@media screen and (max-width: 767px) {
  [class*="m-acc__ctl"]:hover:before {
    background-color: #fff;
  }
}

/* 開閉ボタン （右）
--------------------------------------------------------*/
.m-acc__ctl-r {
  position: relative;
  cursor: pointer;
  padding-right: 30px;
}

.m-acc__ctl-r:before {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  right: 0;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #b3b3b3;
  box-shadow: 0 1px 0 0 #b3b3b3;
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: all .3s;
          transition: all .3s;
}

.m-acc__ctl-r > span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 10px;
  right: 5px;
  width: 10px;
  height: 2px;
  background-color: #009ce5;
}

.m-acc__ctl-r > span:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 10px;
  right: 5px;
  width: 10px;
  height: 2px;
  background-color: #009ce5;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: all .3s;
          transition: all .3s;
}

@media screen and (max-width: 767px) {
  .m-acc__ctl-r:before {
    top: 0;
  }
  .m-acc__ctl-r > span:before {
    top: 9px;
  }
  .m-acc__ctl-r > span:after {
    top: 9px;
  }
}

/* 開閉ボタン （左）
--------------------------------------------------------*/
.m-acc__ctl {
  position: relative;
  cursor: pointer;
  padding-left: 30px;
}

.m-acc__ctl:before {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #b3b3b3;
  box-shadow: 0 1px 0 0 #b3b3b3;
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: all .3s;
          transition: all .3s;
}

.m-acc__ctl > span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 5px;
  width: 10px;
  height: 2px;
  background-color: #009ce5;
}

.m-acc__ctl > span:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 5px;
  width: 10px;
  height: 2px;
  background-color: #009ce5;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: all .3s;
          transition: all .3s;
}

@media screen and (max-width: 767px) {
  .m-acc__ctl:before {
    top: 0;
  }
  .m-acc__ctl > span:before {
    top: 9px;
  }
  .m-acc__ctl > span:after {
    top: 9px;
  }
}

/* 枠線付き開閉ボックス
--------------------------------------------------------*/
.m-acc__ctlbox {
  position: relative;
  cursor: pointer;
  margin: 15px 0 13px;
  padding: 6px 13px 5px 42px;
  border: 1px solid #ccc;
  font-weight: bold;
  font-size: 18px;
}

.m-acc__ctlbox:before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 10px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #b3b3b3;
  box-shadow: 0 1px 0 0 #b3b3b3;
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: all .3s;
          transition: all .3s;
}

.m-acc__ctlbox > span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 17px;
  left: 15px;
  width: 10px;
  height: 2px;
  background-color: #009ce5;
}

.m-acc__ctlbox > span:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 17px;
  left: 15px;
  width: 10px;
  height: 2px;
  background-color: #009ce5;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: all .3s;
          transition: all .3s;
}

.m-acc__ctlbox:hover:before {
  background-color: #f2f2f2;
}

@media screen and (max-width: 767px) {
  .m-acc__ctlbox {
    padding: 5px 5px 4px 42px;
    line-height: 1.5;
    font-size: 16px;
  }
  .m-acc__ctlbox:before {
    top: 6px;
  }
  .m-acc__ctlbox > span:before {
    top: 15px;
  }
  .m-acc__ctlbox > span:after {
    top: 15px;
  }
  .m-acc__ctlbox:hover:before {
    background-color: #fff;
  }
}

/* 開閉ボタン （H2に付く場合）
--------------------------------------------------------*/
.m-heading2.m-acc__ctl {
  padding-left: 42px;
}

.m-heading2.m-acc__ctl:before {
  top: 2px;
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.m-heading2.m-acc__ctl > span:before {
  top: 15px;
  left: 8px;
  width: 12px;
  height: 2px;
}

.m-heading2.m-acc__ctl > span:after {
  top: 15px;
  left: 8px;
  width: 12px;
  height: 2px;
}

@media screen and (max-width: 767px) {
  .m-heading2.m-acc__ctl {
    padding-left: 30px;
  }
  .m-heading2.m-acc__ctl:before {
    top: 1px;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    box-shadow: 0 1px 0 0 #b3b3b3;
  }
  .m-heading2.m-acc__ctl > span:before {
    top: 10px;
    left: 5px;
    width: 10px;
  }
  .m-heading2.m-acc__ctl > span:after {
    top: 10px;
    left: 5px;
    width: 10px;
  }
}

/* 開閉ボタン （商品ページ「特長」タイトルに付く場合）
--------------------------------------------------------*/
.m-feature-ttl__text.m-acc__ctl-r {
  padding-right: 45px;
}

.m-feature-ttl__text.m-acc__ctl-r:before {
  top: 50%;
  width: 32px;
  height: 32px;
  margin-top: -18px;
  box-shadow: 0 2px 0 0 #b3b3b3;
  border-radius: 6px;
}

.m-feature-ttl__text.m-acc__ctl-r > span:before {
  top: 50%;
  right: 10px;
  width: 12px;
  height: 2px;
  margin-top: -3px;
}

.m-feature-ttl__text.m-acc__ctl-r > span:after {
  top: 50%;
  right: 10px;
  width: 12px;
  height: 2px;
  margin-top: -3px;
}

@media screen and (max-width: 767px) {
  .m-feature-ttl__text.m-acc__ctl-r {
    padding-right: 30px;
  }
  .m-feature-ttl__text.m-acc__ctl-r:before {
    width: 20px;
    height: 20px;
    margin-top: -12px;
    border-radius: 4px;
    box-shadow: 0 1px 0 0 #b3b3b3;
  }
  .m-feature-ttl__text.m-acc__ctl-r > span:before {
    right: 5px;
    width: 10px;
  }
  .m-feature-ttl__text.m-acc__ctl-r > span:after {
    right: 5px;
    width: 10px;
  }
  .m-feature-ttl__text.m-acc__ctl-r:hover:before {
    background-color: #fff;
  }
}

/* SPのみ開閉エリア
--------------------------------------------------------*/
.m-acc-sp__ctl {
  pointer-events: none;
}

.m-acc-sp__ctl .m-acc-sp__ctl-icon {
  display: none;
}

.m-acc-sp__cont {
  display: block;
}

@media screen and (max-width: 767px) {
  .m-acc-sp__ctl {
    pointer-events: auto;
    position: relative;
  }
  .m-acc-sp__ctl .m-heading2 {
    padding-right: 28px;
  }
  .m-acc-sp__ctl .m-acc-sp__ctl-icon {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid #b3b3b3;
    box-shadow: 0 1px 0 0 #b3b3b3;
    border-radius: 4px;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    -webkit-transition: all .3s;
            transition: all .3s;
  }
  .m-acc-sp__ctl .m-acc-sp__ctl-icon:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 8px;
    right: 4px;
    width: 10px;
    height: 2px;
    background-color: #009ce5;
  }
  .m-acc-sp__ctl .m-acc-sp__ctl-icon:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 8px;
    right: 4px;
    width: 10px;
    height: 2px;
    background-color: #009ce5;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transition: all .3s;
            transition: all .3s;
  }
  .m-acc-sp__cont {
    display: none;
    box-sizing: border-box;
  }
  .m-acc-sp__cont > :first-child {
    margin-top: 0;
  }
  .m-acc-sp.is-open .m-acc-sp__ctl .m-acc-sp__ctl-icon:after {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .m-acc-sp.is-open .m-acc-sp__cont {
    display: block;
    margin-top: 15px;
  }
}

/*--------------------------------------------------------
 tab
--------------------------------------------------------*/
.m-tab__body {
  margin-top: 30px;
}

.m-tab__cont {
  display: none;
}

.m-tab__cont:first-child {
  display: block;
}

/*-------------------------------------------------------------------------
 試算ページ
--------------------------------------------------------------------------*/
.m-form-note {
  display: none;
}

.js-modallink-hidden {
  display: none;
}

.js-modal-body p {
  white-space: pre-wrap;
}

.js-option {
  display: none;
}

.js-option + * {
  display: table;
}

.js-option.is-option-disabled {
  display: table;
}

.js-option.is-option-disabled + * {
  display: none;
}

#m-modal-simulation.m-modal,
#m-modal-simulation_01.m-modal {
  position: fixed;
}

/*-------------------------------------------------------------------------
 noscript
--------------------------------------------------------------------------*/
.m-noscript {
  max-width: 1150px;
  margin: 0 auto;
}

.m-noscript__inner {
  margin: 30px 20px;
  padding: 20px;
  border: 1px solid #009ce5;
  text-align: center;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .m-noscript {
    width: 100%;
  }
  .m-noscript__inner {
    margin: 15px 15px;
    padding: 15px;
  }
}

/*-------------------------------------------------------------------------
 slick slider
--------------------------------------------------------------------------*/
.slick-slider {
  position: relative;
  display: block;
  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);
      -ms-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;
}

/* slider
--------------------------------------------------------*/
.m-panel4.js-slider-panel4,
.m-panel2.js-slider-panel2,
.js-slider-mainarea {
  display: block;
  position: relative;
}

.m-panel4.js-slider-panel4 .m-panel2__item,
.m-panel2.js-slider-panel2 .m-panel2__item,
.js-slider-mainarea .m-panel2__item {
  margin-top: 0;
}

.m-panel4.js-slider-panel4.slick-dotted,
.m-panel2.js-slider-panel2.slick-dotted,
.js-slider-mainarea.slick-dotted {
  padding-bottom: 30px;
}

.m-panel4.js-slider-panel4 .slick-dots,
.m-panel2.js-slider-panel2 .slick-dots,
.js-slider-mainarea .slick-dots {
  position: absolute;
  bottom: 0;
  display: block;
  width: 1150px;
  margin-left: 22px;
  list-style: none;
  text-align: center;
}

.m-panel4.js-slider-panel4 .slick-dots li,
.m-panel2.js-slider-panel2 .slick-dots li,
.js-slider-mainarea .slick-dots li {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 8px;
  margin: 0 8px;
  padding: 0;
  cursor: pointer;
}

.m-panel4.js-slider-panel4 .slick-dots li button,
.m-panel2.js-slider-panel2 .slick-dots li button,
.js-slider-mainarea .slick-dots li button {
  display: block;
  width: 36px;
  height: 8px;
  background-color: #ccc;
  outline: none;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.m-panel4.js-slider-panel4 .slick-dots li button:before,
.m-panel2.js-slider-panel2 .slick-dots li button:before,
.js-slider-mainarea .slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 36px;
  height: 8px;
  text-align: center;
  color: #ccc;
}

.m-panel4.js-slider-panel4 .slick-dots li.slick-active button:before,
.m-panel2.js-slider-panel2 .slick-dots li.slick-active button:before,
.js-slider-mainarea .slick-dots li.slick-active button:before {
  background-color: #009ce5;
}

.m-content-main .m-panel4.js-slider-panel4 .slick-dots,
.m-content-main .m-panel2.js-slider-panel2 .slick-dots {
  width: 890px;
}

.js-slider-mainarea .slick-dots {
  width: 860px;
}

@media screen and (max-width: 767px) {
  .m-panel4.js-slider-panel4 .m-panel4__item,
  .m-panel2.js-slider-panel2 .m-panel4__item,
  .js-slider-mainarea .m-panel4__item {
    margin-left: 5px;
    margin-right: 5px;
  }
  .m-panel4.js-slider-panel4.slick-dotted,
  .m-panel2.js-slider-panel2.slick-dotted,
  .js-slider-mainarea.slick-dotted {
    padding-bottom: 25px;
  }
  .m-panel4.js-slider-panel4 .slick-dots,
  .m-panel2.js-slider-panel2 .slick-dots,
  .js-slider-mainarea .slick-dots {
    width: 100% !important;
    margin-left: 0;
  }
  .m-panel4.js-slider-panel4 .slick-dots li,
  .m-panel2.js-slider-panel2 .slick-dots li,
  .js-slider-mainarea .slick-dots li {
    width: 25px;
    height: 6px;
    margin: 0 5px;
  }
  .m-panel4.js-slider-panel4 .slick-dots li button,
  .m-panel2.js-slider-panel2 .slick-dots li button,
  .js-slider-mainarea .slick-dots li button {
    width: 25px;
    height: 6px;
  }
  .m-panel4.js-slider-panel4 .slick-dots li button:before,
  .m-panel2.js-slider-panel2 .slick-dots li button:before,
  .js-slider-mainarea .slick-dots li button:before {
    width: 25px;
    height: 6px;
  }
}

/*-------------------------------------------------------------------------
 local ： /index.html
 トップページ
--------------------------------------------------------------------------*/
/* 緊急告知エリア
--------------------------------------------------------*/
.m-attinfo {
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 20px;
}

.m-attinfo > :first-child {
  margin-top: 0;
}

.m-attinfo > p {
  margin-top: .2em;
}

/* フッター上のテキスト
--------------------------------------------------------*/
.m-lead-btm {
  margin-top: 30px;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .m-lead-btm {
    margin-top: 20px;
    font-size: 12px;
  }
}

/* 重要なお知らせ
--------------------------------------------------------*/
.m-ifm-important-info {
  width: 1150px;
  height: 110px;
  margin: 20px 0 0;
}

@media screen and (min-width: 600px) and (max-width: 767px) {
  .m-ifm-important-info {
    width: 100%;
    height: 100px;
  }
}

@media screen and (max-width: 599px) {
  .m-ifm-important-info {
    width: 100%;
    height: 140px;
  }
}

/* トピックス / プレスリリース
--------------------------------------------------------*/
.m-topnews {
  overflow: hidden;
}

.m-topnews__col {
  width: 556px;
  float: left;
  margin-left: 38px;
}

.m-topnews__col:first-child {
  margin-left: 0;
}

.m-topnews__col iframe {
  width: 100%;
  height: 225px;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .m-topnews__col {
    width: 100%;
    float: none;
    margin-left: 0;
  }
  .m-topnews__col .m-heading2-link {
    font-size: 20px;
  }
  .m-topnews__col iframe {
    height: 215px;
  }
}

/* メインエリア
--------------------------------------------------------*/
.m-topmain {
  padding-top: 5px;
  overflow: hidden;
}

.m-topmain__img {
  float: left;
  width: 860px;
}

.m-topmain__img > ul {
  max-height: 430px;
}

.m-keiyaku {
  float: right;
  width: 268px;
  min-height: 400px;
  padding: 18px 20px 20px;
  background-color: #009ce5;
  border-radius: 6px;
  box-sizing: border-box;
}

.m-keiyaku__ttl {
  padding-bottom: 10px;
  border-bottom: 1px solid #6fd1ff;
  text-align: center;
  line-height: 1.3;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
}

.m-keiyaku__body {
  margin-top: 15px;
  font-size: 14px;
  color: #fff;
}

.m-keiyaku__body a[class^="m-btn"] {
  width: 100%;
  border: 0;
  box-shadow: 0 3px 0 0 #b3b3b3;
}

.m-keiyaku__body > p {
  margin-top: 11px;
}

.m-keiyaku__body .m-keiyaku__line {
  margin-top: 12px;
  padding-top: 15px;
  border-top: 1px dashed #6fd1ff;
}

@media screen and (max-width: 767px) {
  .m-topmain {
    padding-top: 0;
    margin: -10px -15px 0 !important;
  }
  .m-topmain__img {
    float: none;
    width: auto;
    margin: 0;
  }
  .m-topmain__img img {
    width: 100%;
  }
  .m-keiyaku {
    float: none;
    width: 100%;
    min-height: inherit;
    margin-top: 15px;
    padding: 0;
    background-color: inherit;
    border-radius: 0;
  }
  .m-keiyaku__ttl {
    box-sizing: border-box;
    padding: 13px 10px 11px;
    background-color: #00adff;
    border: 1px solid #0083bf;
    box-shadow: 0 2px 0 0 #0083bf;
    margin-bottom: 2px;
    border-radius: 6px;
    text-align: center;
    line-height: 1.3;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    position: relative;
  }
  .m-keiyaku__ttl:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    width: 20px;
    height: 20px;
    margin-top: -11px;
    background-color: #fff;
    border-radius: 5px;
    box-sizing: border-box;
    -webkit-transition: all .3s;
            transition: all .3s;
  }
  .m-keiyaku__ttl > span:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 15px;
    width: 10px;
    height: 2px;
    margin-top: -2px;
    background-color: #00adff;
  }
  .m-keiyaku__ttl > span:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 15px;
    width: 10px;
    height: 2px;
    margin-top: -2px;
    background-color: #00adff;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transition: all .3s;
            transition: all .3s;
  }
  .m-keiyaku__body {
    display: none;
    margin-top: 15px;
    padding: 15px;
    border: 1px solid #ccc;
    background-color: #f0f1f2;
    box-sizing: border-box;
    font-size: 12px;
    color: #333;
  }
  .m-keiyaku__body > :first-child {
    margin-top: 0;
  }
  .m-keiyaku__body > p {
    margin-top: 8px;
  }
  .m-keiyaku__body .m-keiyaku__line {
    margin-top: 12px;
    padding-top: 15px;
    border-top: 1px dashed #ccc;
  }
  .m-keiyaku.is-open .m-keiyaku__ttl > span:after {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .m-keiyaku.is-open .m-keiyaku__body {
    display: block;
  }
}

/* あんしん生命の保険商品
--------------------------------------------------------*/
.m-mainproduct {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 20px;
}

.m-mainproduct > li {
  width: 257px;
}

.m-mainproduct > li > a {
  display: block;
  box-sizing: border-box;
  width: 100%;
  position: relative;
  background-color: #fff;
  border: 1px solid #b3b3b3;
  padding: 80px 10px 20px;
  box-shadow: 0 4px 0 0 #b3b3b3;
  margin-bottom: 4px;
  border-radius: 6px;
  text-align: center;
  line-height: 1.1;
  font-weight: bold;
  font-size: 32px;
  color: #333 !important;
  text-decoration: none !important;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.m-mainproduct > li > a:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 40px 40px;
}

.m-mainproduct > li > a.m-mainproduct__medical {
  padding-top: 71px;
  padding-bottom: 14px;
}
.m-mainproduct > li > a.m-mainproduct__medical:before {
  background-image: url(/resources/img/icon_product_medical.svg);
  top: 15px;
}

.m-mainproduct > li > a.m-mainproduct__cancer:before {
  background-image: url(/resources/img/icon_product_cancer.svg);
}

.m-mainproduct > li > a.m-mainproduct__life {
  padding-top: 71px;
  padding-bottom: 14px;
}

.m-mainproduct > li > a.m-mainproduct__life:before {
  background-image: url(/resources/img/icon_product_life.svg);
  top: 15px;
}

.m-mainproduct > li > a.m-mainproduct__child:before {
  background-image: url(/resources/img/icon_product_child.svg);
}

.m-mainproduct > li > a.m-mainproduct__other:before {
  background-image: url(/resources/img/icon_product_other.svg);
}

.m-mainproduct > li > a .m-mainproduct__sub {
  display: block;
  padding: 0;
  vertical-align: top;
  font-size: 14px;
}

.m-mainproduct > li > a .m-mainproduct__sub:before {
  content: none;
}

.m-mainproduct > li > a:hover {
  background-color: #f2f2f2;
}

@media screen and (max-width: 767px) {
  .m-mainproduct {
    display: block;
    overflow: hidden;
    margin: 0 -5px 15px;
  }
  .m-mainproduct > li {
    float: left;
    width: 50%;
    margin-top: 10px;
    padding: 0 5px;
    box-sizing: border-box;
  }
  .m-mainproduct > li:nth-child(-n+2) {
    margin-top: 0;
  }
  .m-mainproduct > li > a {
    min-height: 106px;
    padding: 67px 6px 6px;
    box-shadow: 0 3px 0 0 #b3b3b3;
    margin-bottom: 3px;
    line-height: 1.3;
    font-size: 18px;
  }
  .m-mainproduct > li > a:before {
    top: 15px;
  }
  .m-mainproduct > li > a.m-mainproduct__medical {
    padding-top: 57px;
    padding-bottom: 6px;
  }
  .m-mainproduct > li > a.m-mainproduct__medical:before {
    top: 10px;
  }
  .m-mainproduct > li > a.m-mainproduct__life {
    padding-top: 57px;
    padding-bottom: 6px;
  }
  .m-mainproduct > li > a.m-mainproduct__life:before {
    top: 10px;
  }
  .m-mainproduct > li > a .m-mainproduct__sub {
    font-size: 12px;
  }
  .m-subproduct > li .m-btn, .m-subproduct > li .m-btn-back, .m-subproduct > li .m-btn-down {
    box-shadow: 0 2px 0 0 #b3b3b3;
    font-size: 16px;
  }
}

.m-acbtn-col2,
.m-acbtn-col3 {
  margin: 20px auto 0;
  padding-top: 20px;
  border-top: 1px dashed #ccc;
  overflow: hidden;
}

.m-acbtn-col2__market,
.m-acbtn-col3__market {
  padding-top: 0;
  border-top: none;
}

.m-acbtn-col2 > li,
.m-acbtn-col3 > li {
  float: left;
}

.m-acbtn-col2 > li {
  width: 534px;
  margin-left: 20px;
}

.m-acbtn-col3 > li {
  width: 330px;
  margin-left: 19px;
}

.m-acbtn-col2 > li:first-child,
.m-acbtn-col2__market > li:first-child,
.m-acbtn-col2 > li:nth-child(2n+1),
.m-acbtn-col3 > li:first-child,
.m-acbtn-col3__market > li:first-child {
  margin-left: 0;
}

.m-acbtn-col2 > li:nth-child(n+3) {
  margin-top: 20px;
}

.m-acbtn-col2 > li.m-acbtn-col2__sim {
  width: 534px;
}

.m-acbtn-col3 > li.m-acbtn-col3__sim {
  width: 390px;
}

.m-acbtn-col2 > li.m-acbtn-col2__market {
  width: 534px;
}

.m-acbtn-col3 > li.m-acbtn-col3__market {
  width: 350px;
}

.m-acbtn-col2 > li a[class^="m-btn"],
.m-acbtn-col3 > li a[class^="m-btn"] {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .m-acbtn-col2,
  .m-acbtn-col3 {
    margin: 15px auto 0;
    padding-top: 0;
  }
  .m-acbtn-col2 > li,
  .m-acbtn-col3 > li {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-top: 15px;
  }
  .m-acbtn-col2 > li.m-acbtn-col2__sim,
  .m-acbtn-col2 > li.m-acbtn-col2__market,
  .m-acbtn-col3 > li.m-acbtn-col3__sim,
  .m-acbtn-col3 > li.m-acbtn-col3__market {
    width: 100%;
  }
}

/* 生命保険の選び方
--------------------------------------------------------*/
.m-tab-solution .m-tab__head {
  margin-top: 15px;
}

.m-tab-solution .m-tab__body {
  margin-top: 0;
  padding: 25px 30px 30px;
  border: 1px solid #ccc;
  background-color: #f0f1f2;
  box-sizing: border-box;
}

.m-tab-solution .m-tab__body > :first-child {
  margin-top: 0;
}

.m-tab-solution .m-tab__body > :last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .m-tab-solution .m-tab__head {
    margin: 10px 0 0;
  }
  .m-tab-solution .m-tab__head > li:nth-child(1) {
    width: 28%;
  }
  .m-tab-solution .m-tab__head > li:nth-child(2) {
    width: 42%;
  }
  .m-tab-solution .m-tab__head > li:nth-child(3) {
    width: 30%;
  }
  .m-tab-solution .m-tab__head > li > a > div > span {
    padding-left: 15px;
    text-align: left;
  }
  .m-tab-solution .m-tab__body {
    margin-top: 0;
    padding: 22px 15px 15px;
  }
}

/* 生命保険の選び方 ： 保険の基本
--------------------------------------------------------*/
.m-tab-solution .m-solboard {
  box-sizing: border-box;
  background: #1d514d url(/solution/img/bg_solboard_btm.svg) repeat-x bottom left;
}

.m-tab-solution .m-solboard__inner {
  background: url(/solution/img/bg_solboard.svg) no-repeat bottom right;
  padding: 30px 30px 35px;
}

.m-tab-solution .m-solboard__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.m-tab-solution .m-solboard__list > li {
  width: 50%;
  display: table;
  margin-top: 25px;
}

.m-tab-solution .m-solboard__list > li:nth-child(-n+2) {
  margin-top: 0;
}

.m-tab-solution .m-solboard__list > li > span {
  display: table-cell;
  box-sizing: border-box;
  width: 55px;
  position: relative;
  padding-right: 15px;
  font-weight: bold;
  color: #dedcab;
}

.m-tab-solution .m-solboard__list > li > span:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 15px;
  width: 2px;
  height: 21px;
  background-color: #87788a;
}

.m-tab-solution .m-solboard__list > li > a {
  display: table-cell;
  box-sizing: border-box;
  position: relative;
  padding: 0 60px 0 22px;
  font-weight: bold;
  color: #fff;
}

.m-tab-solution .m-solboard__list > li > a:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: all .3s;
          transition: all .3s;
}

.m-tab-solution .m-solboard__list > li > a:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 4px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #1d514d;
  border-right: 1px solid #1d514d;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .m-tab-solution .m-solboard__inner {
    padding: 15px 15px 38px;
  }
  .m-tab-solution .m-solboard__list {
    display: block;
  }
  .m-tab-solution .m-solboard__list > li {
    width: 100%;
    margin-top: 16px;
  }
  .m-tab-solution .m-solboard__list > li:nth-child(2) {
    margin-top: 16px;
  }
  .m-tab-solution .m-solboard__list > li > span {
    width: 46px;
    padding-right: 13px;
  }
  .m-tab-solution .m-solboard__list > li > span:after {
    right: 13px;
    height: 20px;
  }
  .m-tab-solution .m-solboard__list > li > a {
    padding: 0 0 0 18px;
  }
  .m-tab-solution .m-solboard__list > li > a:before {
    top: 4px;
    width: 12px;
    height: 12px;
  }
  .m-tab-solution .m-solboard__list > li > a:after {
    top: 8px;
    left: 3px;
    width: 3px;
    height: 3px;
  }
}

/* 生命保険の選び方 ： ライフイベントから選ぶ
--------------------------------------------------------*/
.m-tab-solution .m-panel4 {
  margin-left: -20px;
}

.m-tab-solution .m-panel4__item {
  width: 257px;
  margin: 0 0 2px 20px;
}

.m-tab-solution .m-panel4__topttl {
  text-align: center;
  font-size: 16px;
}

.m-tab-solution .m-panel4__topttl > span {
  font-weight: bold;
  font-size: 24px;
}

@media screen and (max-width: 767px) {
  .m-tab-solution .m-panel4 {
    margin-left: 0;
  }
  .m-tab-solution .m-panel4__item {
    float: left;
    min-height: inherit;
    width: 48%;
    margin: 10px 0 2px 4%;
    box-sizing: border-box;
  }
  .m-tab-solution .m-panel4__item:nth-child(-n+2) {
    margin-top: 0;
  }
  .m-tab-solution .m-panel4__item:nth-child(odd) {
    margin-left: 0;
  }
  .m-tab-solution .m-panel4__topttl {
    line-height: 1.3;
    font-size: 12px;
  }
  .m-tab-solution .m-panel4__topttl > span {
    font-size: 16px;
  }
}

/* 生命保険の選び方 ： 心配事から選ぶ
--------------------------------------------------------*/
.m-tab-solution .m-cols3 {
  margin-top: 20px;
}

.m-tab-solution .m-cols3:first-child {
  margin-top: 0;
}

.m-tab-solution .m-panel {
  display: table;
  width: 100%;
}

.m-tab-solution .m-panel__img {
  float: none;
  display: table-cell;
  padding: 4px 0 4px 4px;
}

.m-tab-solution .m-panel__img > img {
  width: 128px;
}

.m-tab-solution .m-panel__body {
  display: table-cell;
  vertical-align: middle;
}

.m-tab-solution .m-panel__topttl {
  line-height: 1.3;
  font-size: 14px;
}

.m-tab-solution .m-panel__topttl > span {
  font-weight: bold;
  font-size: 20px;
}

.m-tab-solution .m-panel-woman {
  display: table;
  width: 100%;
  min-height: 96px;
  margin-top: 20px;
  background-color: #fff;
  border: 1px solid #d5d5d5;
  box-sizing: border-box;
}

.m-tab-solution .m-panel-woman__ttl {
  display: table-cell;
  vertical-align: middle;
  box-sizing: border-box;
  width: 544px;
  padding-left: 147px;
  border-right: 1px dashed #ccc;
  font-size: 14px;
  position: relative;
}

.m-tab-solution .m-panel-woman__ttl .m-panel-woman__img {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 128px;
  height: 94px;
}

.m-tab-solution .m-panel-woman__ttl .m-panel-woman__img > img {
  width: 128px;
}

.m-tab-solution .m-panel-woman__ttl .m-icon-arrow:before {
  top: 5px;
}

.m-tab-solution .m-panel-woman__ttl .m-icon-arrow:after {
  top: 10px;
}

.m-tab-solution .m-panel-woman__ttl span {
  font-weight: bold;
  font-size: 20px;
}

.m-tab-solution .m-panel-woman__cont {
  display: table-cell;
  vertical-align: middle;
  box-sizing: border-box;
  padding-left: 20px;
  font-size: 14px;
}

.m-tab-solution .m-panel-woman__cont ul {
  margin-top: 2px;
  padding: 8px 0;
}

.m-tab-solution .m-panel-woman__cont ul > li span {
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .m-tab-solution .m-cols3 {
    margin-top: 0;
  }
  .m-tab-solution .m-cols3:first-child .m-cols__col:first-child {
    margin-top: 0;
  }
  .m-tab-solution .m-panel__img > img {
    width: 103px;
  }
  .m-tab-solution .m-panel__topttl {
    line-height: 1.3;
    font-size: 12px;
  }
  .m-tab-solution .m-panel__topttl > span {
    font-size: 16px;
  }
  .m-tab-solution .m-panel-woman {
    display: block;
    min-height: inherit;
    margin-top: 15px;
  }
  .m-tab-solution .m-panel-woman__ttl {
    overflow: hidden;
    display: block;
    width: auto;
    padding: 0 0 15px 0;
    border-right: 0;
    border-bottom: 1px dashed #ccc;
    font-size: 12px;
  }
  .m-tab-solution .m-panel-woman__ttl .m-panel-woman__img {
    float: left;
    position: static;
    width: 103px;
    height: auto;
    margin-right: 10px;
    padding: 4px 0 0 4px;
  }
  .m-tab-solution .m-panel-woman__ttl .m-panel-woman__img > img {
    width: 103px;
  }
  .m-tab-solution .m-panel-woman__ttl .m-panel-woman__text {
    overflow: hidden;
    padding: 10px 10px 0 0;
    line-height: 1.3;
  }
  .m-tab-solution .m-panel-woman__ttl .m-icon-arrow:before {
    top: 2px;
  }
  .m-tab-solution .m-panel-woman__ttl .m-icon-arrow:after {
    top: 6px;
  }
  .m-tab-solution .m-panel-woman__ttl span {
    font-size: 16px;
  }
  .m-tab-solution .m-panel-woman__cont {
    display: block;
    padding: 10px 15px 15px;
    font-size: 14px;
  }
  .m-tab-solution .m-panel-woman__cont ul {
    margin-top: 0;
    padding: 8px 0;
  }
  .m-tab-solution .m-panel-woman__cont ul > li {
    margin-top: 12px;
  }
  .m-tab-solution .m-panel-woman__cont ul > li:first-child {
    margin-top: 0;
  }
  .m-tab-solution .m-panel-woman__cont ul > li > a {
    line-height: 1.5;
    font-size: 14px;
  }
}

/* あんしん生命について
--------------------------------------------------------*/
.m-companyarea {
  display: table;
  width: 100%;
}

.m-companyarea__item {
  display: table-cell;
  vertical-align: top;
  width: 241px;
  padding: 0 20px;
  border-left: 1px dashed #ccc;
}

.m-companyarea__item:first-child {
  padding-left: 0;
  border-left: 0;
}

.m-companyarea__item:last-child {
  padding-right: 0;
}

.m-companyarea__item > dl {
  margin-top: 18px;
}

.m-companyarea__item > dl > dt {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}

.m-companyarea__item > dl > dt a {
  text-decoration: none;
}

.m-companyarea__item > dl > dt a:hover {
  text-decoration: underline;
}

.m-companyarea__item > dl > dd {
  margin-top: 6px;
  font-size: 14px;
}

.m-companyarea__img {
  text-align: center;
}

.m-companyarea__img img {
  -webkit-transition: all .3s;
          transition: all .3s;
}

.m-companyarea__img:hover img {
  opacity: .75;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
      filter: alpha(opacity=75);
}

.m-companyarea__rating {
  position: relative;
}

.m-companyarea__rating > a > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  margin: -35px 0 0 -70px;
  font-weight: bold;
  font-size: 48px;
  color: #fff;
}

.m-companyarea__rating > a > span > span {
  font-size: 24px;
}

.m-companyarea__corp > li {
  display: table;
  width: 100%;
  margin-top: 20px;
}

.m-companyarea__corp > li:first-child {
  margin-top: 0;
}

.m-companyarea__corpimg {
  display: table-cell;
  width: 90px;
  padding-right: 20px;
}

.m-companyarea__corpimg img {
  -webkit-transition: all .3s;
          transition: all .3s;
}

.m-companyarea__corpimg:hover img {
  opacity: .75;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
      filter: alpha(opacity=75);
}

.m-companyarea__corptxt {
  display: table-cell;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .m-companyarea {
    display: block;
    padding: 0;
  }
  .m-companyarea__item {
    display: block;
    overflow: hidden;
    width: 100%;
    padding: 15px 0;
    border-left: 0;
    border-top: 1px dashed #ccc;
  }
  .m-companyarea__item:first-child {
    padding-top: 0;
    border-top: 0;
  }
  .m-companyarea__item:last-child {
    padding-bottom: 0;
  }
  .m-companyarea__item > dl {
    margin-top: 0;
    overflow: hidden;
  }
  .m-companyarea__item > dl > dt {
    text-align: left;
    line-height: 1.5;
    font-size: 16px;
  }
  .m-companyarea__item > dl > dd {
    margin-top: 6px;
    font-size: 12px;
  }
  .m-companyarea__img {
    float: left;
    margin-right: 15px;
  }
  .m-companyarea__img img {
    width: 70px;
  }
  .m-companyarea__rating > a > span {
    width: 70px;
    margin: -17px 0 0 -35px;
    font-size: 24px;
  }
  .m-companyarea__rating > a > span > span {
    font-size: 12px;
  }
  .m-companyarea__corp > li {
    margin-top: 15px;
  }
  .m-companyarea__corpimg {
    width: 45px;
    padding-right: 15px;
  }
  .m-companyarea__corpimg img {
    width: 45px;
  }
}

/* バナーエリア
--------------------------------------------------------*/
.m-bannerarea {
  margin-top: 50px;
  padding: 15px 20px;
  border: 1px solid #ccc;
  background-color: #f0f1f2;
  box-sizing: border-box;
}

.m-bannerarea > :first-child {
  margin-top: 0;
}

.m-bannerarea > :last-child {
  margin-bottom: 0;
}

.m-bannerarea > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 0 12px;
}

.m-bannerarea > ul > li {
  padding: 5px 10px;
}

@media screen and (max-width: 767px) {
  .m-bannerarea {
    margin: 30px -15px 0;
    padding: 15px 10px;
    border: 0;
  }
  .m-bannerarea > ul {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    padding: 0;
    font-size: 0;
  }
  .m-bannerarea > ul > li {
    width: 48%;
    display: inline-block;
    box-sizing: border-box;
    vertical-align: top;
    margin-left: 3.6%;
    padding: 5px 0;
  }
  .m-bannerarea > ul > li:nth-child(2n+1) {
    margin-left: 0;
  }
  .m-bannerarea > ul > li img {
    width: 100%;
  }
}

/* 資料請求エリア
--------------------------------------------------------*/
.m-requestarea {
  margin-top: 50px;
  padding: 30px 0;
  background-color: #009ce5;
  display: table;
  width: 100%;
}

.m-requestarea__col {
  display: table-cell;
  vertical-align: middle;
  width: 50%;
  padding: 0 50px;
  box-sizing: border-box;
  text-align: center;
  color: #fff;
}

.m-requestarea__col > :first-child {
  margin-top: 0;
}

.m-requestarea__col .m-btn-request {
  width: 100%;
  border: 0;
}

.m-requestarea__col:first-child {
  border-right: 1px dashed #6fd1ff;
}

.m-requestarea__tel {
  font-weight: bold;
  line-height: 1;
  font-size: 32px;
}

.m-requestarea__tel a.m-phonecall {
  color: #fff;
}

.m-requestarea__tel > span {
  display: inline-block;
  position: relative;
  padding-left: 52px;
}

.m-requestarea__tel > span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 42px;
  height: 24px;
  background: url(/resources/img/icon_freedial_w.svg) no-repeat 0 0;
  background-size: 42px 24px;
}

.m-requestarea__time {
  margin-top: 8px;
  font-weight: bold;
}

.m-requestarea__annotation {
  margin-top: 8px;
  font-weight: bold;
}

.m-requestarea__annotation a.m-contactlink {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .m-requestarea {
    margin: 35px -15px 0;
    padding: 0 15px;
    display: block;
    width: 100%;
  }
  .m-requestarea__col {
    display: block;
    width: 100%;
    padding: 20px 0;
    text-align: center;
  }
  .m-requestarea__col:first-child {
    border-right: 0;
    border-bottom: 1px dashed #fff;
  }
  .m-requestarea__tel {
    font-size: 26px;
  }
  .m-requestarea__tel > span {
    padding-left: 50px;
  }
  .m-requestarea__tel > span:before {
    top: 0;
  }
  .m-requestarea__time {
    margin-top: 12px;
    font-weight: normal;
  }
}

/*-------------------------------------------------------------------------
 local ： /kojin/
 保険をお考えのお客様
--------------------------------------------------------------------------*/
/* 商品ページの見出し
--------------------------------------------------------*/
.m-idxheading1 {
  width: 890px;
  border: 1px solid #d5d5d5;
  box-sizing: border-box;
}

.m-idxheading1__bg {
  display: table;
  width: 100%;
  background-repeat: repeat;
  background-position: 0 0;
}

.m-idxheading1__bginner {
  display: table-cell;
  vertical-align: middle;
  height: 145px;
  padding: 10px 220px 10px 30px;
  box-sizing: border-box;
}

.m-idxheading1__tbl {
  display: table;
}

.m-idxheading1__text {
  display: table-cell;
}

.m-idxheading1__ttl {
  line-height: 1.3;
  font-weight: bold;
  font-size: 26px;
}

.m-idxheading1__sub {
  margin: 8px 0 0 0;
  line-height: 1.3;
  font-size: 14px;
}

.m-idxheading1__dir {
  display: inline-block;
  margin: 6px 0 0 0;
  border: 1px solid #4d4d4d;
  background-color: #fff;
  padding: 2px 15px;
  font-weight: bold;
  font-size: 14px;
}

.m-idxheading1__premium {
  display: table-cell;
  vertical-align: top;
  width: 114px;
  height: 66px;
  margin-top: 0;
}

.m-idxheading1__premium > span {
  display: block;
  text-indent: -9999px;
  font-size: 0;
  position: relative;
}

.m-idxheading1__premium > span:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: -10px;
  right: 0;
  width: 84px;
  height: 86px;
  background: url(/resources/img/img_premium.svg) no-repeat 0 0;
  background: url(/resources/img/img_premium.svg) no-repeat 0 0;
  background-size: 84px 86px;
}

.m-idxheading1__lead {
  margin: 0;
  padding: 13px 20px 10px;
  font-size: 18px;
}

.m-idxheading1__lead-s {
  font-size: 12px;
}

.m-idxheading1.is-medicalkit-neo .m-idxheading1__bg {
  background-image: url(/kojin/goods_medical/kit_neo/img/bg_h1_medicalkit_neo.png);
}

.m-idxheading1.is-medicalkit-neo .m-idxheading1__bginner {
  background: url(/kojin/goods_medical/kit_neo/img/img_semei_medicalkit_neo.png) no-repeat 700px 0px;
  background-size: auto 145px;
}

.m-idxheading1.is-medicalkit-r .m-idxheading1__bg {
  background-image: url(/kojin/goods_medical/kit_r/img/bg_h1_medicalkit_r.png);
}

.m-idxheading1.is-medicalkit-r .m-idxheading1__bginner {
  background: url(/kojin/goods_medical/kit_r/img/img_semei_medicalkit_r.png) no-repeat 690px bottom;
  background-size: 149px 128px;
}

.m-idxheading1.is-medicalkit-love-r .m-idxheading1__bg {
  background-image: url(/kojin/goods_medical/kit_love_r/img/bg_h1_medicalkit_love_r.png);
}

.m-idxheading1.is-medicalkit-love-r .m-idxheading1__bginner {
  background: url(/kojin/goods_medical/kit_love_r/img/img_semei_medicalkit_love_r.png) no-repeat 690px bottom;
  background-size: 152px 130px;
}

.m-idxheading1.is-medicalkit-love .m-idxheading1__bg {
  background-image: url(/kojin/goods_medical/kit_love/img/bg_h1_medicalkit_love.png);
}

.m-idxheading1.is-medicalkit-love .m-idxheading1__bginner {
  background: url(/kojin/goods_medical/kit_love/img/img_semei_medicalkit_love.png) no-repeat 690px 13px;
  background-size: 147px 121px;
}

.m-idxheading1.is-cancer-neo .m-idxheading1__bg {
  background-image: url(/kojin/goods_cancer/cancer_neo/img/bg_h1_cancer_neo.png);
}

.m-idxheading1.is-cancer-neo .m-idxheading1__bginner {
  background: url(/kojin/goods_cancer/cancer_neo/img/img_semei_cancer_neo.png) no-repeat 690px bottom;
  background-size: 161px 123px;
}

.m-idxheading1.is-cancer-r .m-idxheading1__bg {
  background-image: url(/kojin/goods_cancer/cancer_r/img/bg_h1_cancer_r.png);
}

.m-idxheading1.is-cancer-r .m-idxheading1__bginner {
  background: url(/kojin/goods_cancer/cancer_r/img/img_semei_cancer_r.png) no-repeat 690px bottom;
  background-size: 174px 123px;
}

.m-idxheading1.is-disability .m-idxheading1__bg {
  background-image: url(/kojin/goods_shibou/kakei_support/img/bg_h1_kakei.png);
}

.m-idxheading1.is-disability .m-idxheading1__bginner {
  background: url(/kojin/goods_shibou/kakei_support/img/img_semei_kakei.png) no-repeat 680px bottom;
  background-size: 141px 168px;
}

.m-idxheading1.is-disability .m-idxheading1__premium > span:after {
  top: 0 !important;
}

.m-idxheading1.is-longlife .m-idxheading1__bg {
  background-image: url(/kojin/goods_shibou/nagaiki/img/bg_h1_longlife.png);
}

.m-idxheading1.is-longlife .m-idxheading1__bginner {
  background: url(/kojin/goods_shibou/nagaiki/img/img_semei_longlife.png) no-repeat 720px 10px;
  background-size: 115px 128px;
}

.m-idxheading1.is-kodomo .m-idxheading1__bg {
  background-image: url(/kojin/goods_kodomo/kodomo/img/bg_h1_kodomo.png);
}

.m-idxheading1.is-kodomo .m-idxheading1__bginner {
  background: url(/kojin/goods_kodomo/kodomo/img/img_semei_kodomo.png) no-repeat 690px bottom;
  background-size: 142px 127px;
}

.m-idxheading1.is-toku_teiki .m-idxheading1__bg {
  background-image: url(/kojin/goods_medical/toku_teiki/img/bg_h1_toku_teiki.png);
}

.m-idxheading1.is-toku_teiki .m-idxheading1__bginner {
  background: url(/kojin/goods_medical/toku_teiki/img/img_semei_toku_teiki.png) no-repeat 740px bottom;
  background-size: 89px 136px;
}

.m-idxheading1.is-syushin .m-idxheading1__bg {
  background-image: url(/kojin/goods_shibou/syushin/img/bg_h1_syushin.png);
}

.m-idxheading1.is-syushin .m-idxheading1__bginner {
  background: url(/kojin/goods_shibou/syushin/img/img_semei_syushin.png) no-repeat 690px 10px;
  background-size: 116px 128px;
}

.m-idxheading1.is-teiki .m-idxheading1__bg {
  background-image: url(/kojin/goods_shibou/teiki/img/bg_h1_teiki.png);
}

.m-idxheading1.is-teiki .m-idxheading1__bginner {
  background: url(/kojin/goods_shibou/teiki/img/img_semei_teiki.png) no-repeat 710px bottom;
  background-size: 96px 131px;
}

.m-idxheading1.is-medicalkit-yell-r .m-idxheading1__bg {
  background-image: url(/kojin/goods_medical/kit_yell_r/img/bg_h1_medicalkit_yell_r.png);
}

.m-idxheading1.is-medicalkit-yell-r .m-idxheading1__bginner {
  background: url(/kojin/goods_medical/kit_yell_r/img/img_semei_medicalkit_yell_r.png) no-repeat 690px bottom;
  background-size: 152px 130px;
}

.m-idxheading1.is-medicalkit-yell .m-idxheading1__bg {
  background-image: url(/kojin/goods_medical/kit_yell/img/bg_h1_medicalkit_yell.png);
}

.m-idxheading1.is-medicalkit-yell .m-idxheading1__bginner {
  background: url(/kojin/goods_medical/kit_yell/img/img_semei_medicalkit_yell.png) no-repeat 690px bottom;
  background-size: 133px 142px;
}

/* 一時払逓増終身保険
--------------------------------------------------------*/
.m-idxheading1.is-ichiji .m-idxheading1__bg {
  background-image: url(/kojin/goods_shibou/ichiji_teizou/img/bg_h1_ichiji.png);
}

/* マーケットリンク
--------------------------------------------------------*/
.m-idxheading1.is-marketlink .m-idxheading1__bg {
  background-image: url(/kojin/hengaku/marketlink/img/bg_h1_marketlink.png);
}

@media screen and (max-width: 767px) {
  .m-idxheading1 {
    width: 100%;
  }
  .m-idxheading1__bginner {
    height: auto;
    padding: 12px 15px !important;
    background: none !important;
  }
  .m-idxheading1__tbl {
    display: block;
    position: relative;
  }
  .m-idxheading1__text {
    display: block;
    padding-right: 58px;
  }
  .m-idxheading1__ttl {
    line-height: 1.5;
    font-size: 20px;
  }
  .m-idxheading1__sub {
    margin-top: 4px;
    line-height: 1.5;
    font-size: 12px;
  }
  .m-idxheading1__dir {
    margin-top: 6px;
    padding: 2px 10px;
    font-size: 12px;
  }
  .m-idxheading1__premium {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 58px;
    height: auto;
  }
  .m-idxheading1__premium > span:after {
    top: 3px;
    width: 47px;
    height: 48px;
    background-size: 47px 48px;
  }
  .m-idxheading1__lead {
    padding: 10px 15px;
    line-height: 1.5;
    font-size: 14px;
  }
  .m-idxheading1__lead-s {
    font-size: 10px;
  }
}

/* メディカルＫｉｔ ＮＥＯ　商品ページオリコンアイコン調整（商品・共通）
--------------------------------------------------------*/
.m-media-r__oricon {
  line-height: 68px;
}

.m-media-r .m-media__thum__oricon {
  padding: 12px 15px 10px 0;
  margin-left: 0;
}

.m-media-r .m-media__thum__oricon img {
  width: 70px !important;
  height: 70px;
}

@media screen and (max-width: 767px) {
  .m-media-r__oricon {
    line-height: 0;
  }
  .m-media-r .m-media__thum__oricon img {
    width: 55px;
    height: 55px;
  }
}

/* 商品の特長： 開閉エリア
--------------------------------------------------------*/
.m-feature-ttl__inner {
  display: table;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  height: 75px;
  padding-left: 95px;
  padding-right: 15px;
}

.m-feature-ttl__text {
  display: table-cell;
  vertical-align: middle;
  line-height: 1.3;
  font-weight: bold;
  font-size: 28px;
}

.m-feature-ttl__text:before {
  top: 37px;
}

.m-feature-ttl__text > span:before {
  top: 37px;
}

.m-feature-ttl__text > span:after {
  top: 37px;
}

.m-feature-ttl__text > span > span {
  color: #c00;
}

.m-feature-ttl__text > span .m-feature-ttl__text-s {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
  color: #333;
}

.m-feature-ttl__num {
  position: absolute;
  top: 0;
  left: 0;
  display: table;
  width: 75px;
  height: 75px;
  box-sizing: border-box;
  background-color: #009ce5;
  border-radius: 3px;
  text-align: center;
  line-height: 1.3;
  color: #fff;
}

.m-feature-ttl__num > div {
  display: table-cell;
  vertical-align: middle;
  font-weight: bold;
}

.m-feature-ttl__num > div > span {
  display: block;
  margin-top: 1px;
  line-height: 1;
  font-weight: normal;
  font-size: 32px;
}

.m-feature-cont {
  margin-top: 15px;
  padding-top: 18px;
  border-top: 6px solid #009ce5;
}

@media screen and (max-width: 767px) {
  .m-feature-ttl__inner {
    height: 40px;
    padding-left: 50px;
    padding-right: 0;
  }
  .m-feature-ttl__text {
    font-size: 16px;
  }
  .m-feature-ttl__text:before {
    top: 22px;
  }
  .m-feature-ttl__text > span:before {
    top: 22px;
  }
  .m-feature-ttl__text > span:after {
    top: 22px;
  }
  .m-feature-ttl__text > span .m-feature-ttl__text-s {
    font-size: 12px;
  }
  .m-feature-ttl__num {
    width: 40px;
    height: 40px;
  }
  .m-feature-ttl__num > div {
    font-size: 11px;
  }
  .m-feature-ttl__num > div > span {
    font-size: 18px;
  }
  .m-feature-cont {
    margin-top: 8px;
    padding-top: 14px;
    border-top-width: 4px;
  }
}

/* 商品の特長： item コンテンツ
--------------------------------------------------------*/
.m-featurecol {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
          align-items: stretch;
  margin-left: -10px;
}

.m-featurecol__col {
  width: 50%;
  padding-left: 10px;
  box-sizing: border-box;
  vertical-align: top;
}

.m-feature-box {
  margin-top: 20px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.m-feature-box:first-child {
  margin-top: 0;
}

.m-feature-box__tbl {
  display: table;
  width: 100%;
  table-layout: auto;
  border-spacing: 0;
}

.m-feature-box__tbl-img {
  display: table-cell;
  vertical-align: middle;
  box-sizing: border-box;
  width: 110px;
  height: 100px;
  text-align: center;
}

.m-feature-box__tbl-img > img {
  width: 70px;
  height: auto;
}

.m-feature-box__tbl-text {
  display: table-cell;
  vertical-align: middle;
  box-sizing: border-box;
  padding-right: 8px;
  line-height: 1.3;
  font-weight: bold;
  font-size: 14px;
}

.m-feature-box__tbl-text > span {
  font-size: 22px;
}

.m-feature-box__inner {
  padding: 15px;
  box-sizing: border-box;
}

.m-feature-box__inner > :first-child {
  margin-top: 0;
}

.m-feature-box__ttl {
  margin-bottom: 18px;
  border-left: 3px solid #009ce5;
  padding-left: 10px;
  font-weight: bold;
  font-size: 14px;
}

.m-feature-box__img {
  margin-top: 12px;
  text-align: center;
}

.m-feature-box__imgbg {
  padding: 20px 15px;
  background-color: #fffeee;
  text-align: center;
}

.m-feature-box__imgbg2 {
  padding: 20px 15px;
  background-color: #eefcde;
  text-align: center;
}

.m-feature-box__cap {
  margin-top: 15px;
  font-size: 12px;
}

.m-feature-box__capbtm {
  margin-top: 10px;
  font-size: 11px;
}

.m-feature-box__example {
  margin-right: 10px;
  padding: 2px 1px 2px 10px;
  border: 1px solid #9e5e9f;
  background-color: #fff;
  vertical-align: middle;
  line-height: 1;
  font-weight: bold;
  font-size: 14px;
  color: #9e5e9f;
}

@media screen and (max-width: 767px) {
  .m-feature-box {
    width: 100%;
    box-sizing: border-box;
  }
  .m-feature-box__tbl {
    display: table;
    width: 100%;
    padding: 12px 0;
    table-layout: auto;
    border-spacing: 0;
  }
  .m-feature-box__tbl-img {
    width: 35%;
    height: 50px;
    padding: 0 8px 0 5px;
    box-sizing: border-box;
  }
  .m-feature-box__tbl-img > img {
    width: 35px;
    height: auto;
  }
  .m-feature-box__tbl-text {
    width: auto;
    padding-right: 4px;
    font-size: 11px;
  }
  .m-feature-box__tbl-text > span {
    font-size: 16px;
  }
  .m-feature-box__inner {
    padding: 10px;
  }
  .m-feature-box__ttl {
    margin-bottom: 12px;
    padding-left: 8px;
    font-size: 12px;
  }
  .m-feature-box__img {
    margin-top: 10px;
  }
  .m-feature-box__img > img {
    width: 100%;
  }
  .m-feature-box__imgbg, .m-feature-box__imgbg2 {
    padding: 15px 10px;
  }
  .m-feature-box__cap {
    margin-top: 12px;
    line-height: 1.5;
    font-size: 10px;
  }
  .m-feature-box__capbtm {
    margin-top: 10px;
    line-height: 1.5;
    font-size: 10px;
  }
  .m-feature-box__example {
    margin-right: 6px;
    padding: 1px 1px 1px 8px;
    font-size: 14px;
  }
}

.m-feature-text1 {
  color: #52bec6;
}

.m-feature-text2 {
  color: #ee869a;
}

.m-feature-text3 {
  color: #609e29;
}

.m-feature-em1 {
  line-height: 1.3;
  font-weight: bold;
  font-size: 30px;
  color: #52bec6;
}

.m-feature-em2 {
  line-height: 1.3;
  font-weight: bold;
  font-size: 30px;
  color: #ee869a;
}

.m-feature-em3 {
  line-height: 1.3;
  font-weight: bold;
  font-size: 30px;
  color: #609e29;
}

@media screen and (max-width: 767px) {
  .m-feature-em1,
  .m-feature-em2,
  .m-feature-em3 {
    font-size: 24px;
  }
}

.m-itemlist {
  display: table;
  margin: 0 auto;
}

.m-itemlist > li {
  margin-top: 15px;
  text-align: left;
}

.m-itemlist > li > span {
  display: inline-block;
  box-sizing: border-box;
  width: 220px;
  background-color: #ee869a;
  border-radius: 6px;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
}

.m-itemlist > li:first-child {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .m-itemlist > li {
    margin-top: 10px;
  }
  .m-itemlist > li > span {
    width: 180px;
    box-sizing: border-box;
    padding: 5px 10px;
    font-size: 16px;
  }
}

.m-itemtbl {
  margin-top: 15px;
  display: table;
  width: 100%;
}

.m-itemtbl:first-child {
  margin-top: 0;
}

.m-itemtbl > dt {
  display: table-cell;
  vertical-align: middle;
  width: 220px;
  height: 64px;
  box-sizing: border-box;
  background-color: #ee869a;
  border-radius: 6px;
  padding: 10px;
  text-align: center;
  line-height: 1.1;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
}

.m-itemtbl > dt > span {
  font-size: 14px;
}

.m-itemtbl > dd {
  display: table-cell;
  vertical-align: middle;
  padding-left: 20px;
  box-sizing: border-box;
  text-align: left;
}

.m-itemtbl__plus {
  margin-top: 55px;
  position: relative;
}

.m-itemtbl__plus:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -40px;
  left: 50%;
  width: 26px;
  height: 26px;
  margin-left: -13px;
  background: url(/resources/img/icon_circle_plus.svg) no-repeat 0 0;
  background-size: 26px 26px;
}

@media screen and (max-width: 767px) {
  .m-itemtbl {
    margin-top: 15px;
    display: block;
  }
  .m-itemtbl > dt {
    display: block;
    width: 100%;
    height: inherit;
    padding: 10px;
    font-size: 16px;
  }
  .m-itemtbl > dt > span {
    font-size: 12px;
  }
  .m-itemtbl > dd {
    display: block;
    margin-top: 10px;
    padding-left: 0;
  }
  .m-itemtbl__plus {
    margin-top: 50px;
  }
  .m-itemtbl__plus:before {
    top: -38px;
  }
}

.m-feature-moneygift__text {
  font-size: 20px;
}

.m-feature-moneygift__col {
  display: table;
  margin: 15px auto 0;
}

.m-feature-moneygift__col-img {
  display: table-cell;
}

.m-feature-moneygift__col-text {
  display: table-cell;
  padding-left: 5px;
  text-align: left;
  vertical-align: middle;
  font-weight: bold;
  font-size: 24px;
}

.m-feature-moneygift__col-note {
  margin-top: 0;
  font-weight: normal;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .m-feature-moneygift__text {
    font-size: 14px;
  }
  .m-feature-moneygift__col {
    display: block;
    margin-top: 10px;
  }
  .m-feature-moneygift__col-img {
    display: block;
  }
  .m-feature-moneygift__col-text {
    display: block;
    margin-top: 10px;
    padding-left: 0;
    text-align: center;
    line-height: 1.3;
    font-size: 16px;
  }
  .m-feature-moneygift__col-note {
    margin-top: 5px;
    font-size: 12px;
  }
}

.m-feature-plus {
  position: relative;
  padding-left: 38px !important;
}

.m-feature-plus:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 6px;
  margin-top: -13px;
  width: 26px;
  height: 26px;
  background: url(/resources/img/icon_circle_plus.svg) no-repeat 0 0;
  background-size: 26px 26px;
}

.m-feature-plus-aft {
  position: relative;
  padding-right: 38px !important;
}

.m-feature-plus-aft:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 6px;
  margin-top: -13px;
  width: 26px;
  height: 26px;
  background: url(/resources/img/icon_circle_plus.svg) no-repeat 0 0;
  background-size: 26px 26px;
}

.m-feature-plus-aft + .m-coltbl__col {
  padding-left: 0;
}

@media screen and (max-width: 767px) {
  .m-feature-plus {
    margin-left: 12%;
    margin-right: 16%;
  }
  .m-feature-plus:before {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
  }
  .m-feature-plus-aft {
    margin-left: 16%;
    margin-right: 12%;
  }
  .m-feature-plus-aft:before {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
  }
}

/* 商品の特長： feature list （こども保険）
--------------------------------------------------------*/
.m-featurelist > li {
  position: relative;
  min-height: 60px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed #ccc;
}

.m-featurelist > li:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.m-featurelist > li:first-child .m-featurelist__num {
  top: 0;
}

.m-featurelist__num {
  position: absolute;
  top: 20px;
  left: 0;
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  background-color: #009ce5;
  border-radius: 3px;
  text-align: center;
  line-height: 60px;
  font-size: 28px;
  color: #fff;
}

.m-featurelist__body {
  padding-left: 80px;
}

.m-featurelist__ttl {
  margin-bottom: 5px;
  line-height: 1.3;
  font-weight: bold;
  font-size: 28px;
}

.m-featurelist__ttl + p {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .m-featurelist > li {
    min-height: 30px;
    margin-top: 15px;
    padding-top: 15px;
  }
  .m-featurelist__num {
    top: 15px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 18px;
  }
  .m-featurelist__body {
    padding-left: 40px;
  }
  .m-featurelist__ttl {
    margin-bottom: 5px;
    line-height: 1.5;
    font-size: 16px;
  }
}

/* 商品の特長： boxlist
--------------------------------------------------------*/
.m-boxlist {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
          align-items: stretch;
  margin: 15px 0 10px -30px;
}

.m-boxlist > li {
  width: 50%;
  margin-top: 30px;
  padding-left: 30px;
  box-sizing: border-box;
}

.m-boxlist > li:nth-child(-n+2) {
  margin-top: 0;
}

.m-boxlist > li > dl > dt {
  padding: 10px;
  border: 1px solid #ccc;
  border-bottom: 0;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  background-color: #fff4c7;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}

.m-boxlist > li > dl > dt > span {
  font-weight: normal;
  font-size: 14px;
}

.m-boxlist > li > dl > dd {
  padding: 12px 10px;
  border: 1px solid #ccc;
  border-top: 0;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  text-align: center;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .m-boxlist {
    display: block;
    margin: 10px 0 5px 0;
  }
  .m-boxlist > li {
    width: 100%;
    margin-top: 15px;
    padding-left: 0;
  }
  .m-boxlist > li:nth-child(-n+2) {
    margin-top: 15px;
  }
  .m-boxlist > li > dl > dt {
    padding: 6px 10px;
    font-size: 14px;
  }
  .m-boxlist > li > dl > dt > span {
    font-size: 12px;
  }
  .m-boxlist > li > dl > dd {
    padding: 8px 10px;
    font-size: 12px;
  }
}

/* 保険料例（メディカルＫｉｔ ＮＥＯ 通販）
--------------------------------------------------------*/
.m-planname {
  border-bottom: 0 !important;
}

.m-plantype1 {
  background-color: #dcfaed !important;
}

.m-plantype2 {
  background-color: #f0fadc !important;
}

.m-plantype3 {
  background-color: #fff0fc !important;
}

@media screen and (max-width: 767px) {
  .m-tbl-insurance th {
    white-space: nowrap;
  }
}

/* 3つの告知項目
--------------------------------------------------------*/
.m-checklist {
  margin-top: 25px;
  border: 2px solid #009ce5;
}

.m-checklist__item {
  border-top: 1px dashed #ccc;
  padding: 20px;
}

.m-checklist__item:first-child {
  border-top: 0;
}

.m-checklist__col {
  display: table;
  width: 100%;
}

.m-checklist__col + * {
  margin-top: 20px;
}

.m-checklist__num {
  display: table-cell;
  vertical-align: top;
  width: 70px;
}

.m-checklist__num > span {
  display: inline-block;
  width: 48px;
  height: 48px;
  background-color: #009ce5;
  border-radius: 50%;
  text-align: center;
  line-height: 48px;
  font-weight: bold;
  font-size: 24px;
  color: #fff;
}

.m-checklist__text {
  display: table-cell;
  vertical-align: middle;
  font-weight: bold;
  font-size: 18px;
}

.m-checklist__check {
  display: table-cell;
  vertical-align: top;
  width: 120px;
  padding-right: 20px;
}

.m-checklist__check > ul {
  overflow: hidden;
  display: table;
  margin-left: auto;
}

.m-checklist__check > ul > li {
  position: relative;
  float: left;
  min-width: 30px;
  margin-bottom: 33px;
  margin-left: 20px;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
}

.m-checklist__check > ul > li:first-child {
  margin-left: 0;
}

.m-checklist__check > ul > li:after {
  content: "";
  display: inline-block;
  position: absolute;
  box-sizing: border-box;
  bottom: -33px;
  left: 50%;
  margin-left: -15px;
  width: 30px;
  height: 30px;
  border: 2px solid #c00;
}

@media screen and (max-width: 767px) {
  .m-checklist {
    margin-top: 15px;
  }
  .m-checklist__item {
    padding: 10px;
  }
  .m-checklist__col {
    display: block;
    overflow: hidden;
  }
  .m-checklist__col + * {
    margin-top: 15px;
  }
  .m-checklist__num {
    display: block;
    float: left;
    width: 35px;
  }
  .m-checklist__num > span {
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 18px;
  }
  .m-checklist__text {
    display: block;
    overflow: hidden;
    font-size: 14px;
  }
  .m-checklist__check {
    display: block;
    width: 100%;
    padding-right: 0;
  }
  .m-checklist__check > ul {
    overflow: hidden;
    display: block;
    margin: 6px 0 0 35px;
  }
  .m-checklist__check > ul > li {
    float: left;
    min-width: inherit;
    min-width: auto;
    margin-bottom: 0;
    padding-left: 25px;
    text-align: left;
    font-size: 12px;
  }
  .m-checklist__check > ul > li:first-child {
    margin-left: 0;
  }
  .m-checklist__check > ul > li:after {
    top: 0;
    left: 0;
    margin-left: 0;
    width: 20px;
    height: 20px;
  }
}

/* 別デザインパターン */ 
.m-checklist--grey {
  margin-top: 25px;
  border: 2px solid #ccc;
}

.m-checklist--grey__item {
  border-top: 1px dashed #ccc;
  padding: 20px;
}

.m-checklist--grey__item:first-child {
  border-top: 0;
}

.m-checklist--grey__col {
  display: table;
  width: 100%;
}

.m-checklist--grey__col + * {
  margin-top: 20px;
}

.m-checklist--grey__num {
  display: table-cell;
  vertical-align: top;
  width: 70px;
}

.m-checklist--grey__num > span {
  display: inline-block;
  width: 48px;
  height: 48px;
  background-color: #009ce5;
  border-radius: 50%;
  text-align: center;
  line-height: 48px;
  font-weight: bold;
  font-size: 24px;
  color: #fff;
}

.m-checklist--grey__text {
  display: table-cell;
  vertical-align: middle;
  font-weight: bold;
  font-size: 18px;
}

.m-checklist--grey__check {
  display: table-cell;
  vertical-align: top;
  width: 120px;
  padding-right: 20px;
}

.m-checklist--grey__check > ul {
  overflow: hidden;
  display: table;
  margin-left: auto;
}

.m-checklist--grey__check > ul > li {
  position: relative;
  float: left;
  min-width: 30px;
  margin-bottom: 33px;
  margin-left: 20px;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
}

.m-checklist--grey__check > ul > li:first-child {
  margin-left: 0;
}

.m-checklist--grey__check > ul > li:after {
  content: "";
  display: inline-block;
  position: absolute;
  box-sizing: border-box;
  bottom: -33px;
  left: 50%;
  margin-left: -15px;
  width: 30px;
  height: 30px;
  border: 2px solid #c00;
}

@media screen and (max-width: 767px) {
  .m-checklist--grey {
    margin-top: 15px;
  }
  .m-checklist--grey__item {
    padding: 10px;
  }
  .m-checklist--grey__col {
    display: block;
    overflow: hidden;
  }
  .m-checklist--grey__col + * {
    margin-top: 15px;
  }
  .m-checklist--grey__num {
    display: block;
    float: left;
    width: 35px;
  }
  .m-checklist--grey__num > span {
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 18px;
  }
  .m-checklist--grey__text {
    display: block;
    overflow: hidden;
    font-size: 14px;
  }
  .m-checklist--grey__check {
    display: block;
    width: 100%;
    padding-right: 0;
  }
  .m-checklist--grey__check > ul {
    overflow: hidden;
    display: block;
    margin: 6px 0 0 35px;
  }
  .m-checklist--grey__check > ul > li {
    float: left;
    min-width: inherit;
    min-width: auto;
    margin-bottom: 0;
    padding-left: 25px;
    text-align: left;
    font-size: 12px;
  }
  .m-checklist--grey__check > ul > li:first-child {
    margin-left: 0;
  }
  .m-checklist--grey__check > ul > li:after {
    top: 0;
    left: 0;
    margin-left: 0;
    width: 20px;
    height: 20px;
  }
}

/*=======================================================

 保険料試算

=======================================================*/
/* 入力エリア
--------------------------------------------------------*/
.m-sim-input {
  display: table;
  width: 100%;
}

.m-sim-input__btn {
  display: table-cell;
  vertical-align: middle;
  box-sizing: border-box;
  border-left: 1px dashed #ccc;
  padding-left: 20px;
}

.m-sim-input__form {
  display: table-cell;
  vertical-align: middle;
  box-sizing: border-box;
}

.m-sim-input__form > dl {
  display: table;
  width: 100%;
  box-sizing: border-box;
  margin-top: 10px;
  font-size: 14px;
}

.m-sim-input__form > dl > dt {
  display: table-cell;
  vertical-align: middle;
  width: 38%;
  box-sizing: border-box;
  padding: 6px 20px 6px 10px;
  background-color: #dcf0fa;
  border-left: 3px solid #009ce5;
  font-weight: bold;
  white-space: nowrap;
}

.m-sim-input__form > dl > dd {
  display: table-cell;
  vertical-align: middle;
  width: 62%;
  box-sizing: border-box;
  padding: 0 0 0 15px;
}

.m-sim-input__form > dl > dd .m-list-inline > li {
  margin-right: 20px;
}

.m-sim-input__form > dl > dd .m-list-inline > li:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .m-sim-input {
    display: block;
    padding: 3px 0;
  }
  .m-sim-input__btn {
    display: block;
    box-sizing: border-box;
    border-left: 0;
    border-top: 1px dashed #ccc;
    padding: 15px 0 0 0;
  }
  .m-sim-input__form {
    display: block;
  }
  .m-sim-input__form > dl {
    display: block;
    width: 100%;
    margin-top: 0;
    font-size: 12px;
  }
  .m-sim-input__form > dl > dt {
    display: block;
    width: 100%;
    padding: 6px 8px 6px 10px;
    white-space: normal;
  }
  .m-sim-input__form > dl > dd {
    display: block;
    width: 100%;
    padding: 15px 0;
  }
  .m-sim-input__form > dl > dd select {
    margin-bottom: 5px;
  }
  .m-sim-input__form > dl > dd .m-list-inline > li {
    padding: 0;
  }
}

/* 試算
--------------------------------------------------------*/
.m-simulation__ttl {
  margin-top: 5px;
  padding: 6px 10px;
  background-color: #009ce5;
  font-weight: bold;
  color: #fff;
}

.m-simulation__ttl-em {
  color: #ffe787;
}

.m-simulation__plus {
  margin-top: 36px;
  position: relative;
}

.m-simulation__plus:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -31px;
  right: 282px;
  width: 26px;
  height: 26px;
  background: url(/resources/img/icon_circle_plus.svg) no-repeat 0 0;
  background-size: 26px 26px;
}

@media screen and (max-width: 767px) {
  .m-simulation__ttl {
    padding: 3px 10px;
  }
  .m-simulation__plus {
    margin-top: 30px;
  }
  .m-simulation__plus:before {
    top: -25px;
    right: 32%;
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
  }
}

/* 試算： 合計額
--------------------------------------------------------*/
.m-simtotal {
  display: table;
  width: 100%;
  margin-top: 20px;
}

.m-simtotal > dt {
  display: table-cell;
  vertical-align: bottom;
  box-sizing: border-box;
}

.m-simtotal > dd {
  display: table-cell;
  vertical-align: bottom;
  box-sizing: border-box;
  position: relative;
}

.m-simtotal > dd:nth-child(2):before {
  background-color: #009ce5;
}

.m-simtotal > dd:nth-child(2) .m-simtotal__typeinner {
  border-color: #009ce5;
}

.m-simtotal > dd:nth-child(2) .m-simtotal__typettl {
  background-color: #009ce5;
}

.m-simtotal > dd:nth-child(3):before {
  background-color: #0260b3;
}

.m-simtotal > dd:nth-child(3) .m-simtotal__typeinner {
  border-color: #0260b3;
}

.m-simtotal > dd:nth-child(3) .m-simtotal__typettl {
  background-color: #0260b3;
}

.m-simtotal > dd:nth-child(4):before {
  background-color: #189e9e;
}

.m-simtotal > dd:nth-child(4) .m-simtotal__typeinner {
  border-color: #189e9e;
}

.m-simtotal > dd:nth-child(4) .m-simtotal__typettl {
  background-color: #189e9e;
}

.m-simtotal__ttl {
  display: table;
  width: 100%;
  box-sizing: border-box;
  background-color: #fff4c7;
  border: 1px solid #d5d5d5;
  margin-bottom: 2px;
}

.m-simtotal__ttl > span {
  display: table-cell;
  vertical-align: middle;
  box-sizing: border-box;
  height: 70px;
  padding: 5px 20px;
  font-weight: bold;
  font-size: 18px;
}

.m-simtotal__note {
  margin-bottom: 10px;
  font-size: 12px;
}

.m-simtotal__typeinner {
  width: 94%;
  margin: 0 auto;
  box-sizing: border-box;
  border-width: 3px;
  border-style: solid;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.m-simtotal__typettl {
  padding: 20px 10px;
  text-align: center;
  line-height: 1.2;
  font-weight: bold;
  color: #fff;
}

.m-simtotal__typettl > span {
  font-size: 32px;
}

.m-simtotal__typettl .m-simtotal__typettl--row {
  box-sizing: border-box;
  min-height: 57px;
  display: table;
  width: 100%;
}

.m-simtotal__typettl .m-simtotal__typettl--row > span {
  display: table-cell;
  vertical-align: middle;
}

.m-simtotal__price {
  display: table;
  width: 100%;
  background-color: #fff4c7;
}

.m-simtotal__price > span {
  display: table-cell;
  vertical-align: middle;
  box-sizing: border-box;
  height: 70px;
  padding: 5px 20px;
  text-align: right;
  font-size: 18px;
  color: #c00;
}

.m-simtotal__price > span > span {
  font-weight: bold;
  font-size: 36px;
}

@media screen and (max-width: 767px) {
  .m-simtotal {
    margin-top: 15px;
  }
  .m-simtotal > dd:before {
    bottom: -6px;
    left: 50%;
    margin-left: -29px;
    width: 58px;
    height: 6px;
  }
  .m-simtotal > dd:after {
    bottom: -21px;
    left: 50%;
    margin-left: -42px;
    border-width: 15px 42px 0 42px;
  }
  .m-simtotal__typeinner {
    border-width: 2px;
  }
  .m-simtotal__ttl > span {
    height: 40px;
    padding: 5px 10px;
    font-size: 10px;
  }
  .m-simtotal__note {
    margin-bottom: 4px;
    font-size: 10px;
  }
  .m-simtotal__typettl {
    padding: 10px 4px 8px;
    line-height: 1.2;
    font-weight: bold;
    font-size: 11px;
  }
  .m-simtotal__typettl > span {
    font-size: 18px;
  }
  .m-simtotal__typettl .m-simtotal__typettl--row {
    min-height: 47px;
  }
  .m-simtotal__price > span {
    height: 40px;
    padding: 5px 3px 5px 1px;
    font-size: 10px;
  }
  .m-simtotal__price > span > span {
    font-size: 18px;
  }
}

/* 試算： 保険料詳細
--------------------------------------------------------*/
.m-simtbl {
  display: table;
  width: 100%;
}

.m-simtbl:first-child {
  margin-top: 5px;
}

.m-simtbl:first-child > dt {
  border-top-width: 1px;
}

.m-simtbl:first-child > dd {
  border-top-width: 3px;
}

.m-simtbl > dt {
  display: table-cell;
  vertical-align: middle;
  box-sizing: border-box;
  border: 1px solid #d5d5d5;
  border-top-width: 0;
  background-color: #f7f9fa;
}

.m-simtbl > dd {
  display: table-cell;
  vertical-align: middle;
  box-sizing: border-box;
  border: 3px solid #d5d5d5;
  border-top-width: 0;
  background-color: #fff;
}

.m-simtbl > dd:nth-child(2) {
  border-color: #009ce5;
}

.m-simtbl > dd:nth-child(3) {
  border-color: #0260b3;
}

.m-simtbl > dd:nth-child(4) {
  border-color: #189e9e;
}

.m-simtbl__inner {
  display: table;
  width: 100%;
  padding: 10px 0;
}

.m-simtbl__img {
  display: table-cell;
  vertical-align: middle;
  width: 76px;
}

.m-simtbl__img > img {
  width: auto;
  height: 58px;
}

.m-simtbl__text {
  display: table-cell;
  vertical-align: middle;
}

.m-simtbl__ttl {
  margin-top: 0;
  line-height: 1.4;
  font-weight: bold;
  font-size: 18px;
}

.m-simtbl__recommend {
  display: inline-block;
  margin-bottom: 5px;
  padding: 1px 6px;
  background-color: #e56527;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
}

.m-simtbl__detail {
  margin-top: 2px;
  font-size: 14px;
}

.m-simtbl__detail > a {
  text-decoration: none;
}

.m-simtbl__detail > a:hover {
  text-decoration: underline;
}

.m-simtbl__unit {
  vertical-align: middle;
  font-weight: bold;
}

.m-simtbl__price {
  line-height: 1.3;
  vertical-align: middle;
  text-align: right;
  border-bottom: 4px solid #ffdb4c;
}

.m-simtbl__price > span {
  font-weight: bold;
  font-size: 28px;
}

.m-simtbl__price > span.m-simtbl__price-s {
  font-size: 24px;
}

.m-simtbl__tbl {
  display: table;
  width: 100%;
  border-bottom: 4px solid #ffdb4c;
}

.m-simtbl__tbl .m-simtbl__unit {
  display: table-cell;
}

.m-simtbl__tbl .m-simtbl__price {
  display: table-cell;
  border-bottom: 0;
}

.m-simtbl__border {
  margin: 13px -30px 0;
  padding: 13px 30px 0;
  border-top: 1px dashed #009ce5;
}

.m-simtbl__border .m-simtbl__border-mid {
  padding-top: 20px;
}

.m-simtbl__border-tbl {
  display: table-cell;
  vertical-align: middle;
}

.m-simtbl__after {
  margin: 0 0 8px;
  padding: 2px 10px;
  background-color: #f0f1f2;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
}

.m-simtbl__msg {
  margin: 0 -10px;
}

.m-optotal + .m-simtbl > dt {
  border-top-width: 1px;
}

.m-optotal + .m-simtbl > dd {
  border-top-width: 3px;
}

@media screen and (max-width: 767px) {
  .m-simtbl:first-child > dd {
    border-top-width: 2px;
  }
  .m-simtbl:last-child > dd {
    border-bottom-width: 2px;
  }
  .m-simtbl > dd {
    border-left-width: 2px;
    border-right-width: 2px;
    border-bottom-width: 1px;
  }
  .m-simtbl > dd > div {
    display: block;
    padding-bottom: 2px;
    border-bottom-width: 3px;
  }
  .m-simtbl > dd .m-form-select:after {
    right: 4px;
  }
  .m-simtbl > dd .m-form-select select {
    padding: 6px 16px 6px 4px;
    font-size: 10px;
  }
  .m-simtbl__inner {
    padding: 10px 0;
  }
  .m-simtbl__img {
    display: none;
  }
  .m-simtbl__ttl {
    font-size: 10px;
  }
  .m-simtbl__recommend {
    margin-bottom: 2px;
    font-size: 10px;
  }
  .m-simtbl__detail {
    font-size: 10px;
  }
  .m-simtbl__unit {
    display: block;
    line-height: 1.3;
    font-size: 10px;
  }
  .m-simtbl__price {
    display: block;
    margin-top: 2px;
    line-height: 1.3;
    font-size: 10px;
  }
  .m-simtbl__price > span {
    font-size: 13px;
  }
  .m-simtbl__price > span.m-simtbl__price-s {
    font-size: 13px;
  }
  .m-simtbl__tbl {
    display: block;
  }
  .m-simtbl__tbl .m-simtbl__unit {
    display: block;
  }
  .m-simtbl__tbl .m-simtbl__price {
    display: block;
  }
  .m-simtbl__border {
    margin: 10px -8px 0;
    padding: 10px 5px 0;
  }
  .m-simtbl__border .m-simtbl__border-mid {
    padding-top: 0;
  }
  .m-simtbl__after {
    margin: 0 0 8px;
    padding: 4px 5px;
    line-height: 1.5;
    font-size: 11px;
  }
  .m-simtbl__msg {
    margin: 0;
    font-size: 10px;
  }
  .m-optotal + .m-simtbl > dd {
    border-top-width: 2px;
  }
}

/* 試算： オプション合計額
--------------------------------------------------------*/
.m-optotal {
  display: table;
  width: 100%;
  margin: 5px 0;
}

.m-optotal > dt {
  display: table-cell;
  vertical-align: middle;
  box-sizing: border-box;
  height: 60px;
  border: 1px solid #d5d5d5;
  background-color: #fff4c7;
}

.m-optotal > dd {
  display: table-cell;
  vertical-align: middle;
  box-sizing: border-box;
  height: 60px;
  background-color: #fff4c7;
  border-width: 3px;
  border-style: solid;
}

.m-optotal > dd:nth-child(2) {
  border-color: #009ce5;
}

.m-optotal > dd:nth-child(3) {
  border-color: #0260b3;
}

.m-optotal > dd:nth-child(4) {
  border-color: #189e9e;
}

.m-optotal__ttl {
  display: table;
  width: 100%;
}

.m-optotal__ttl > span {
  display: table-cell;
  vertical-align: middle;
  box-sizing: border-box;
  padding: 5px 20px;
  font-weight: bold;
  font-size: 18px;
}

.m-optotal__price {
  display: table;
  width: 100%;
}

.m-optotal__price > span {
  display: table-cell;
  vertical-align: middle;
  box-sizing: border-box;
  padding: 5px 20px;
  text-align: right;
  font-size: 18px;
  color: #c00;
}

.m-optotal__price > span > span {
  font-weight: bold;
  font-size: 28px;
}

@media screen and (max-width: 767px) {
  .m-optotal > dt {
    height: 40px;
  }
  .m-optotal > dd {
    height: 40px;
    border-width: 2px;
  }
  .m-optotal__ttl > span {
    padding: 5px 10px;
    font-size: 10px;
  }
  .m-optotal__price > span {
    padding: 5px 10px;
    font-size: 10px;
  }
  .m-optotal__price > span > span {
    font-size: 13px;
  }
}

/* 試算： 表の横幅設定
--------------------------------------------------------*/
.m-simulation.is-type2 .m-simtbl > dt {
  width: 302px;
  padding: 0 10px 0 25px;
}

.m-simulation.is-type2 .m-simtbl > dd {
  width: 294px;
  padding: 10px 30px;
}

.m-simulation.is-type2 .m-simtotal > dt,
.m-simulation.is-type2 .m-optotal > dt {
  width: 302px;
  padding: 0;
}

.m-simulation.is-type2 .m-simtotal > dd,
.m-simulation.is-type2 .m-optotal > dd {
  width: 294px;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .m-simulation.is-type2 .m-simtbl > dt {
    width: 30%;
    padding: 0 5px 0 8px;
  }
  .m-simulation.is-type2 .m-simtbl > dd {
    width: 35%;
    padding: 8px 6px;
  }
  .m-simulation.is-type2 .m-simtotal > dt,
  .m-simulation.is-type2 .m-optotal > dt {
    width: 30%;
    padding: 0;
  }
  .m-simulation.is-type2 .m-simtotal > dd,
  .m-simulation.is-type2 .m-optotal > dd {
    width: 35%;
    padding: 0;
  }
}

.m-simulation.is-type3 .m-simtbl > dt {
  width: 260px;
  padding: 0 10px 0 18px;
}

.m-simulation.is-type3 .m-simtbl > dd {
  width: 210px;
  padding: 10px 15px;
}

.m-simulation.is-type3 .m-simtbl__msg {
  margin: 0;
}

.m-simulation.is-type3 .m-simtbl__border {
  margin: 13px -15px 0;
  padding-left: 15px;
  padding-right: 15px;
}

.m-simulation.is-type3 .m-simtotal > dt,
.m-simulation.is-type3 .m-optotal > dt {
  width: 260px;
  padding: 0;
}

.m-simulation.is-type3 .m-simtotal > dd,
.m-simulation.is-type3 .m-optotal > dd {
  width: 210px;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .m-simulation.is-type3 {
    min-width: 384px;
  }
  .m-simulation.is-type3 .m-simtbl > dt {
    width: 22%;
    padding: 0 5px 0 8px;
  }
  .m-simulation.is-type3 .m-simtbl > dd {
    width: 26%;
    padding: 8px 6px;
  }
  .m-simulation.is-type3 .m-simtbl__border {
    margin: 10px -8px 0;
    padding-top: 10px;
  }
  .m-simulation.is-type3 .m-simtotal > dt,
  .m-simulation.is-type3 .m-optotal > dt {
    width: 22%;
    padding: 0;
  }
  .m-simulation.is-type3 .m-simtotal > dd,
  .m-simulation.is-type3 .m-optotal > dd {
    width: 26%;
    padding: 0;
  }
}

@media (min-width: 414px) {
  .m-simulation-scroll .m-scroll-x__icon {
    display: none;
  }
}

/* 試算： 試算ページ内のプルダウンの拡大機能回避
--------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .m-simulation .m-form-select,
  .m-sim-input__form .m-form-select {
    -webkit-transform: scale(.8);
        -ms-transform: scale(.8);
            transform: scale(.8);
  }
  .m-simulation .m-form-select select,
  .m-sim-input__form .m-form-select select {
    font-size: 16px !important;
  }
}

/* 試算： 試算中モーダル
--------------------------------------------------------*/
#m-modal-simulation {
  width: 480px;
}

#m-modal-simulation .m-modal__body {
  text-align: center;
}

#m-modal-simulation .m-loading__img {
  margin-top: 15px;
}

#m-modal-simulation .m-loading__img img {
  width: 34px;
}

#m-modal-simulation .m-loading__text {
  margin-top: 18px;
  font-weight: bold;
  font-size: 20px;
}

#m-modal-simulation .m-loading__cancel > span {
  padding-left: 20px;
}

#m-modal-simulation .m-loading__cancel > span:before {
  content: "×";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  width: auto;
  height: auto;
  margin-top: -12px;
  font-size: 16px;
  color: #fff;
  border: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

@media screen and (max-width: 767px) {
  #m-modal-simulation {
    width: 92%;
  }
}

/*=======================================================

 カテゴリTOP

=======================================================*/
/* H1タイトルのアイコン
--------------------------------------------------------*/
.m-heading1.m-ttl-medical {
  padding-left: 75px;
  background: #f0f1f2 url(/resources/img/icon_product_medical.svg) no-repeat 20px 11px;
  background-size: 40px 40px;
}

.m-heading1.m-ttl-cancer {
  padding-left: 75px;
  background: #f0f1f2 url(/resources/img/icon_product_cancer.svg) no-repeat 20px 11px;
  background-size: 40px 40px;
}

.m-heading1.m-ttl-life {
  padding-left: 75px;
  background: #f0f1f2 url(/resources/img/icon_product_life.svg) no-repeat 20px 11px;
  background-size: 40px 40px;
}

@media screen and (max-width: 767px) {
  .m-heading1.m-ttl-medical {
    padding-left: 38px;
    background-position: 10px 17px;
    background-size: 20px 20px;
  }
  .m-heading1.m-ttl-cancer {
    padding-left: 38px;
    background-position: 10px 17px;
    background-size: 20px 20px;
  }
  .m-heading1.m-ttl-life {
    padding-left: 38px;
    background-position: 10px 17px;
    background-size: 20px 20px;
  }
}

/* 商品のご契約方法
--------------------------------------------------------*/
.m-dl-contract {
  font-size: 14px;
}

.m-dl-contract > dt {
  height: 32px;
  margin-bottom: 15px;
}

.m-dl-contract > dt > span {
  font-weight: bold;
  font-size: 18px;
}

.m-dl-contract__person {
  padding: 3px 0 0 37px;
  background: url(/resources/img/icon_person.svg) no-repeat 0 0;
  background-size: 26px 32px;
}

.m-dl-contract__direct {
  padding: 0 0 0 37px;
  background: url(/resources/img/icon_direct.svg) no-repeat 0 0;
  background-size: 28px 28px;
}

@media screen and (max-width: 767px) {
  .m-dl-contract {
    font-size: 12px;
  }
  .m-dl-contract > dt {
    height: 25px;
    margin-bottom: 6px;
  }
  .m-dl-contract > dt > span {
    font-size: 14px;
  }
  .m-dl-contract__person {
    padding: 3px 0 0 30px;
    background-size: 20px 25px;
  }
  .m-dl-contract__direct {
    padding: 0 0 0 30px;
    background-size: 22px 22px;
  }
}

/* 商品カテゴリトップ - その他お取扱い中の保険
--------------------------------------------------------*/
.m-seime-col .m-media__thum {
  vertical-align: top;
}

.m-seime-col .m-media__thum img {
  width: 165px;
}

.m-seime-col .m-media__body .m-icon-premium-s {
  display: block;
  position: relative;
  overflow: hidden;
  height: 0;
  width: 0;
  text-indent: 100%;
  white-space: nowrap;
  width: 106px;
  height: 25px;
}

.m-seime-col .m-media__body .m-icon-premium-s:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 106px;
  height: 17px;
  background: url(/resources/img/img_premium_s.svg) no-repeat 0 0;
  background: url(/resources/img/img_premium_s.svg) no-repeat 0 0;
  background-size: 106px 16px;
}

@media screen and (max-width: 767px) {
  .m-seime-col .m-media__thum {
    vertical-align: top;
  }
  .m-seime-col .m-media__thum img {
    width: 80px;
  }
  .m-seime-col .m-media__body dt {
    line-height: 1.3;
  }
}

/* 通販で加入いただける保険商品 オリコンアイコン調整
--------------------------------------------------------*/
.m-seime-col .m-media__thum {
  vertical-align: top;
}

.m-seime-col .m-media__thum img {
  width: 165px;
}

.m-seime-col .m-media__thum .m-img-oricon__thum img {
  width: 70px;
}

.m-media-r .m-img-oricon {
  width: 13%;
}

@media screen and (max-width: 767px) {
  .m-seime-col .m-media__thum {
    vertical-align: top;
  }
  .m-seime-col .m-media__thum img {
    width: 80px;
  }
  .m-seime-col .m-media__thum .m-img-oricon__thum img {
    width: 50px;
  }
  .m-seime-col .m-media__body dt {
    line-height: 1.3;
  }
  .m-media-r .m-img-oricon {
    width: 17%;
  }
}

/* insurance カテゴリトップ - プレミアム商品
--------------------------------------------------------*/
.m-premiumcol {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}

.m-premiumcol__col {
  background-repeat: repeat;
  background-position: 0 0;
  border-radius: 6px;
  padding-bottom: 4px;
  box-sizing: border-box;
}

.m-premiumcol__col.is-kit-neo {
  background-image: url(/kojin/goods_medical/kit_neo/img/bg_h1_medicalkit_neo.png);
}

.m-premiumcol__col.is-kit-neo .m-premiumcol__ttl {
  background-image: url(/kojin/goods_medical/kit_neo/img/img_semei_medicalkit_neo.png);
  background-size: 135px auto;
}

.m-premiumcol__col.is-kit-neo .m-premiumcol__ttl > a {
  min-height: 225px;
}

.m-premiumcol__col.is-kit-neo .m-premiumcol__lead {
  min-height: 122px;
}

.m-premiumcol__col.is-kit-r {
  background-image: url(/kojin/goods_medical/kit_r/img/bg_h1_medicalkit_r.png);
}

.m-premiumcol__col.is-kit-r .m-premiumcol__ttl {
  background-image: url(/kojin/goods_medical/kit_r/img/img_semei_medicalkit_r.png);
  background-size: 149px auto;
}

.m-premiumcol__col.is-kit-r .m-premiumcol__ttl > a {
  min-height: 225px;
}

.m-premiumcol__col.is-kit-r .m-premiumcol__lead {
  min-height: 122px;
}

.m-premiumcol__col.is-walk {
  background-image: url(/kojin/goods_medical/walk/img/bg_h1_walk.png);
}

.m-premiumcol__col.is-walk .m-premiumcol__ttl {
  background-image: url(/kojin/goods_medical/walk/img/img_semei_walk.png);
  background-size: 115px auto;
  background-position: center 65px;
}

.m-premiumcol__col.is-walk .m-premiumcol__ttl > a {
  min-height: 225px;
}

.m-premiumcol__col.is-walk .m-premiumcol__lead {
  min-height: 122px;
}

.m-premiumcol__col.is-kit-love-r {
  background-image: url(/kojin/goods_medical/kit_love_r/img/bg_h1_medicalkit_love_r.png);
}

.m-premiumcol__col.is-kit-love-r .m-premiumcol__ttl {
  background-image: url(/kojin/goods_medical/kit_love_r/img/img_semei_medicalkit_love_r.png);
  background-size: 152px auto;
}

.m-premiumcol__col.is-kit-love-r .m-premiumcol__ttl > a {
  min-height: 225px;
}

.m-premiumcol__col.is-kit-love-r .m-premiumcol__lead {
  min-height: 153px;
}

.m-premiumcol__col.is-cancer-neo {
  background-image: url(/kojin/goods_cancer/cancer_neo/img/bg_h1_cancer_neo.png);
}

.m-premiumcol__col.is-cancer-neo .m-premiumcol__ttl {
  background-image: url(/kojin/goods_cancer/cancer_neo/img/img_semei_cancer_neo.png);
  background-size: 161px auto;
}

.m-premiumcol__col.is-cancer-r {
  background-image: url(/kojin/goods_cancer/cancer_r/img/bg_h1_cancer_r.png);
}

.m-premiumcol__col.is-cancer-r .m-premiumcol__ttl {
  background-image: url(/kojin/goods_cancer/cancer_r/img/img_semei_cancer_r.png);
  background-size: 174px auto;
}

.m-premiumcol__col.is-nagaiki {
  background-image: url(/kojin/goods_shibou/nagaiki/img/bg_h1_longlife.png);
}

.m-premiumcol__col.is-nagaiki .m-premiumcol__ttl {
  background-image: url(/kojin/goods_shibou/nagaiki/img/img_semei_longlife.png);
  background-size: 115px auto;
  background-position: center 65px;
}

.m-premiumcol__col.is-kakei {
  background-image: url(/kojin/goods_shibou/kakei_support/img/bg_h1_kakei.png);
}

.m-premiumcol__col.is-kakei .m-premiumcol__ttl {
  background-image: url(/kojin/goods_shibou/kakei_support/img/img_semei_kakei.png);
  background-size: 131px auto;
}

.m-premiumcol__col.is-kit-yell {
  background-image: url(/kojin/goods_medical/kit_yell/img/bg_h1_medicalkit_yell.png);
}

.m-premiumcol__col.is-kit-yell .m-premiumcol__ttl {
  background-image: url(/kojin/goods_medical/kit_yell/img/img_semei_medicalkit_yell.png);
  background-size: 152px auto;
}

.m-premiumcol__col.is-kit-yell .m-premiumcol__ttl > a {
  min-height: 225px;
}

.m-premiumcol__col.is-kit-yell .m-premiumcol__lead {
  min-height: 104px;
}

.m-premiumcol__col.is-kit-yell-r {
  background-image: url(/kojin/goods_medical/kit_yell_r/img/bg_h1_medicalkit_yell_r.png);
}

.m-premiumcol__col.is-kit-yell-r .m-premiumcol__ttl {
  background-image: url(/kojin/goods_medical/kit_yell_r/img/img_semei_medicalkit_yell_r.png);
  background-size: 152px auto;
}

.m-premiumcol__col.is-kit-yell-r .m-premiumcol__ttl > a {
  min-height: 225px;
}

.m-premiumcol__col.is-kit-yell-r .m-premiumcol__lead {
  min-height: 104px;
}

.m-premiumcol__ttl {
  background-repeat: no-repeat;
  background-position: bottom center;
  text-align: center;
  line-height: 1.3;
  font-size: 24px;
}

.m-premiumcol__ttl h3 {
  font-weight: bold;
}

.m-premiumcol__ttl > a {
  display: block;
  min-height: 205px;
  padding: 20px 15px;
  box-sizing: border-box;
  position: relative;
  text-decoration: none;
  color: #333;
}

.m-premiumcol__ttl > a:before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 8px;
  width: 28px;
  height: 28px;
  background-color: #fff;
  border: 1px solid #b3b3b3;
  box-shadow: 0 2px 0 0 #b3b3b3;
  border-radius: 6px;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.m-premiumcol__ttl > a:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 18px;
  left: 16px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #009ce5;
  border-right: 2px solid #009ce5;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.m-premiumcol__body {
  margin: 0 4px;
  padding: 20px;
  background-color: #fff;
  border-radius: 6px;
}

.m-premiumcol__body .m-btn span.m-btn-direct, .m-premiumcol__body .m-btn-back span.m-btn-direct, .m-premiumcol__body .m-btn-down span.m-btn-direct {
  padding-left: 38px;
}

.m-premiumcol__body .m-btn--l {
  padding-left: 10px;
  padding-right: 10px;
}

.m-premiumcol__lead {
  padding-top: 30px;
  box-sizing: border-box;
  background: url(/resources/img/img_premium_s.svg) no-repeat 0 0;
  background: url(/resources/img/img_premium_s.svg) no-repeat 0 0;
  background-size: 106px 16px;
  line-height: 1.3;
  font-weight: bold;
  font-size: 18px;
}

.m-premiumcol__lead > span {
  display: inline-block;
  overflow: hidden;
  height: 0;
  width: 0;
  text-indent: 100%;
  white-space: nowrap;
  text-indent: -9999px;
}

.m-premiumcol__ttl-s {
  margin: 28px 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid #009ce5;
  line-height: 1.3;
  font-weight: bold;
}

.m-premiumcol__ttl-s.m-premiumcol__ttl-feature {
  padding-left: 22px;
  background: url(/resources/img/icon_feature.svg) no-repeat 0 0;
  background-size: 16px 16px;
}

.m-premiumcol__ttl-s.m-premiumcol__ttl-recommend {
  padding-left: 22px;
  background: url(/resources/img/icon_recstar.svg) no-repeat 0 0;
  background-size: 16px 16px;
}

.m-premiumcol.is-col3 .m-premiumcol__col {
  width: 282px;
}

.m-premiumcol.is-col2 .m-premiumcol__col {
  width: 434px;
}

@media screen and (max-width: 767px) {
  .m-premiumcol {
    display: block;
    margin-top: 0;
  }
  .m-premiumcol__col {
    width: 100% !important;
    margin-top: 20px;
  }
  .m-premiumcol__col.is-kit-neo .m-premiumcol__ttl {
    background-size: 90px auto;
  }
  .m-premiumcol__col.is-kit-r .m-premiumcol__ttl {
    background-size: 105px auto;
  }
  .m-premiumcol__col.is-walk .m-premiumcol__ttl {
    background-size: 71px auto;
  }
  .m-premiumcol__col.is-kit-love-r .m-premiumcol__ttl {
    background-size: 105px auto;
  }
  .m-premiumcol__col.is-cancer-neo .m-premiumcol__ttl {
    background-size: 115px auto;
  }
  .m-premiumcol__col.is-cancer-r .m-premiumcol__ttl {
    background-size: 110px auto;
  }
  .m-premiumcol__col.is-nagaiki .m-premiumcol__ttl {
    background-size: 85px auto;
    background-position: center bottom;
  }
  .m-premiumcol__col.is-kakei .m-premiumcol__ttl {
    background-size: 60px auto;
  }
  .m-premiumcol__col.is-kit-yell .m-premiumcol__ttl {
    background-size: 115px auto;
  }
  .m-premiumcol__col.is-kit-yell-r .m-premiumcol__ttl {
    background-size:115px auto;
  }
  .m-premiumcol__ttl {
    background-repeat: no-repeat;
    background-position: bottom center;
    text-align: center;
    line-height: 1.3;
    font-size: 20px;
  }
  .m-premiumcol__ttl h3 {
    font-weight: bold;
  }
  .m-premiumcol__ttl > a {
    display: block;
    min-height: inherit !important;
    padding: 28px 10px 105px;
  }
  .m-premiumcol__ttl > a:before {
    top: 5px;
    left: 5px;
    width: 20px;
    height: 20px;
    box-shadow: 0 1px 0 0 #b3b3b3;
    border-radius: 4px;
  }
  .m-premiumcol__ttl > a:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 11px;
    left: 10px;
    width: 5px;
    height: 5px;
    border-top: 2px solid #009ce5;
    border-right: 2px solid #009ce5;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .m-premiumcol__body {
    padding: 15px;
  }
  .m-premiumcol__lead {
    min-height: inherit !important;
    padding-top: 25px;
    line-height: 1.5;
  }
  .m-premiumcol__ttl-s {
    margin: 24px 0 10px;
    padding-bottom: 6px;
    font-size: 16px;
  }
}

/* ご契約の流れ
--------------------------------------------------------*/
.m-flowcol .m-media__thum {
  display: table;
  width: 120px;
}

.m-flowcol__img {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 120px;
  height: 120px;
  border: 1px solid #d5d5d5;
  box-sizing: border-box;
}

.m-flowcol__img > img {
  width: 64px;
  height: 64px;
}

@media screen and (max-width: 767px) {
  .m-flowcol .m-media__thum {
    display: table;
    width: 80px;
  }
  .m-flowcol__img {
    width: 80px;
    height: 80px;
  }
  .m-flowcol__img > img {
    width: 64px;
    height: 64px;
  }
}

.m-tab .m-tab-person,
.m-tablink .m-tab-person {
  padding-left: 46px;
}

.m-tab .m-tab-person:before,
.m-tablink .m-tab-person:before {
  top: 50%;
  left: 0;
  margin-top: -16px !important;
  width: 28px;
  height: 32px;
  background: url(/resources/img/icon_person.svg) no-repeat 0 0;
  background-size: 28px 32px;
  border: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.m-tab .m-tab-direct,
.m-tablink .m-tab-direct {
  padding-left: 40px;
}

.m-tab .m-tab-direct:before,
.m-tablink .m-tab-direct:before {
  top: 50%;
  left: 0;
  margin-top: -16px !important;
  width: 28px;
  height: 28px;
  background: url(/resources/img/icon_direct.svg) no-repeat 0 0;
  background-size: 28px 28px;
  border: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.m-tab .is-current .m-tab-person:before,
.m-tablink .is-current .m-tab-person:before {
  background: url(/resources/img/icon_person_w.svg) no-repeat 0 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.m-tab .is-current .m-tab-direct:before,
.m-tablink .is-current .m-tab-direct:before {
  background: url(/resources/img/icon_direct_w.svg) no-repeat 0 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

/* 保険の無料相談
--------------------------------------------------------*/
.m-contactbox-mb {
  margin-bottom: -20px;
}

@media screen and (max-width: 767px) {
  .m-contactbox-mb {
    margin-bottom: -10px;
  }
}

/* 保険をお考えのお客様 ： あんしん生命の保険商品
--------------------------------------------------------*/
.m-productbtn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
          justify-content: space-between;
}

.m-productbtn > li {
  margin-top: 20px;
}

.m-productbtn > li:nth-child(-n+2) {
  margin-top: 0;
}

.m-productbtn > li .m-btn, .m-productbtn > li .m-btn-back, .m-productbtn > li .m-btn-down {
  width: 415px;
  min-height: 116px;
  box-sizing: border-box;
  padding: 20px 16px 16px 18px;
  text-align: left;
  line-height: 1.5;
  font-weight: normal;
  font-size: 14px;
}

.m-productbtn > li .m-btn > div, .m-productbtn > li .m-btn-back > div, .m-productbtn > li .m-btn-down > div {
  padding-left: 56px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 40px 40px;
}

.m-productbtn > li .m-btn p, .m-productbtn > li .m-btn-back p, .m-productbtn > li .m-btn-down p {
  margin-top: 0;
}

.m-productbtn > li.m-productbtn__sub li {
  margin-top: 10px;
}

.m-productbtn > li.m-productbtn__sub li:first-child {
  margin-top: 0;
}

.m-productbtn > li.m-productbtn__sub .m-btn, .m-productbtn > li.m-productbtn__sub .m-btn-back, .m-productbtn > li.m-productbtn__sub .m-btn-down {
  min-height: inherit;
  padding: 20px 16px 16px 18px;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}

.m-productbtn__ttl {
  margin-bottom: 8px;
  line-height: 1.2;
  font-weight: bold;
  font-size: 24px;
}

.m-productbtn__ttl-s {
  font-size: 20px;
}

.m-productbtn-medical {
  background-image: url(/resources/img/icon_product_medical.svg);
}

.m-productbtn-cancer {
  background-image: url(/resources/img/icon_product_cancer.svg);
}

.m-productbtn-life {
  background-image: url(/resources/img/icon_product_life.svg);
}

.m-productbtn-child {
  background-image: url(/resources/img/icon_product_child.svg);
}

.m-productbtn-other {
  background-image: url(/resources/img/icon_product_other.svg);
  background-position: 0 45% !important;
  display: table-cell;
  vertical-align: middle;
}

.m-productbtn-other .m-productbtn__ttl {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .m-productbtn {
    display: block;
  }
  .m-productbtn > li {
    margin-top: 15px;
  }
  .m-productbtn > li:nth-child(-n+2) {
    margin-top: 15px;
  }
  .m-productbtn > li .m-btn, .m-productbtn > li .m-btn-back, .m-productbtn > li .m-btn-down {
    width: 100%;
    min-height: inherit;
    padding: 15px 12px 12px 15px;
    line-height: 1.7;
    font-size: 12px;
  }
  .m-productbtn > li .m-btn > div, .m-productbtn > li .m-btn-back > div, .m-productbtn > li .m-btn-down > div {
    padding-left: 53px;
  }
  .m-productbtn > li.m-productbtn__sub {
    margin-top: 19px;
  }
  .m-productbtn > li.m-productbtn__sub li {
    margin-top: 15px;
  }
  .m-productbtn > li.m-productbtn__sub .m-btn, .m-productbtn > li.m-productbtn__sub .m-btn-back, .m-productbtn > li.m-productbtn__sub .m-btn-down {
    padding: 15px;
    line-height: 1.3;
    font-size: 16px;
  }
  .m-productbtn__ttl {
    margin-bottom: 8px;
    line-height: 1.2;
    font-size: 16px;
  }
  .m-productbtn__ttl-s {
    font-size: 14px;
  }
  .m-productbtn-other {
    height: 40px;
    background-position: 0 50% !important;
  }
}

/* 保険をお考えのお客様 ： 生命保険の選び方
--------------------------------------------------------*/
.m-solutionfrm {
  padding: 20px;
  background: url(/solution/img/bg_solcont.png) repeat 0 0;
}

.m-solutionfrm__cols {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
          justify-content: space-between;
}

.m-solutionfrm__col {
  width: 415px;
  background-color: #fff;
  border: 1px solid #d5d5d5;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, .1);
  box-sizing: border-box;
}

.m-solutionfrm__box {
  margin-top: 20px;
  background-color: #fff;
  border: 1px solid #d5d5d5;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, .1);
}

.m-solutionfrm__ttl {
  position: relative;
  box-sizing: border-box;
  min-height: 40px;
  margin-top: 15px;
}

.m-solutionfrm__ttl > span {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 97%;
  height: 40px;
  padding: 7px 20px 0 15px;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
}

.m-solutionfrm__ttl > span .m-solutionfrm__ttl-s {
  font-size: 14px;
}

.m-solutionfrm__ttl > span:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 20px 10px 20px 0;
  border-right-color: #fff;
}

.m-solutionfrm__ttl.m-solutionfrm__ttl-event > span {
  background-color: #f08bce;
}

.m-solutionfrm__ttl.m-solutionfrm__ttl-purpose > span {
  background-color: #8ec227;
}

.m-solutionfrm__ttl.m-solutionfrm__ttl-basic > span {
  background-color: #efa71b;
}

.m-solutionfrm__body {
  padding: 15px;
}

.m-solutionfrm__body > :first-child {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .m-solutionfrm {
    padding: 10px;
  }
  .m-solutionfrm__cols {
    display: block;
  }
  .m-solutionfrm__col {
    width: 100%;
    margin-top: 20px;
  }
  .m-solutionfrm__col:first-child {
    margin-top: 0;
  }
  .m-solutionfrm__ttl {
    margin-top: 10px;
  }
  .m-solutionfrm__ttl > span {
    width: 96%;
    padding: 8px 20px 0 15px;
    font-size: 16px;
  }
  .m-solutionfrm__ttl > span .m-solutionfrm__ttl-s {
    font-size: 12px;
  }
  .m-solutionfrm__body {
    padding: 10px;
  }
}

/* 保険をお考えのお客様 ： イベントから選ぶ
--------------------------------------------------------*/
.m-soleventlist {
  overflow: hidden;
  margin-left: -15px;
}

.m-soleventlist > li {
  float: left;
  width: 50%;
  margin-top: 15px;
}

.m-soleventlist > li:nth-child(-n+2) {
  margin-top: 0;
}

.m-soleventlist > li > a {
  display: block;
  margin-left: 15px;
  background-color: #fff;
  border: 1px solid #b3b3b3;
  margin-bottom: 2px;
  padding: 7px 7px 10px;
  box-shadow: 0 2px 0 0 #b3b3b3;
  border-radius: 6px;
  box-sizing: border-box;
}

.m-soleventlist__img > img {
  width: 168px;
}

.m-soleventlist__ttl {
  margin-top: 10px;
  text-align: center;
  line-height: 1.3;
  font-weight: bold;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .m-soleventlist {
    margin-left: -10px;
  }
  .m-soleventlist > li {
    margin-top: 10px;
  }
  .m-soleventlist > li > a {
    margin-left: 10px;
    padding: 5px 5px 10px;
  }
  .m-soleventlist__img > img {
    width: 100%;
  }
  .m-soleventlist__ttl {
    margin-top: 10px;
    line-height: 1.3;
    font-size: 14px;
  }
}

/* 保険をお考えのお客様 ： 心配ごとから選ぶ
--------------------------------------------------------*/
.m-solpurposelist {
  overflow: hidden;
  margin-left: -15px;
}

.m-solpurposelist > li {
  float: left;
  width: 184px;
  margin: 15px 0 0 15px;
}

.m-solpurposelist > li:nth-child(-n+2) {
  margin-top: 0;
}

.m-solpurposelist > li .m-btn, .m-solpurposelist > li .m-btn-back, .m-solpurposelist > li .m-btn-down {
  width: 100%;
}

.m-solpurposelist > li.m-solpurposelist__full {
  width: 383px;
}

@media screen and (max-width: 767px) {
  .m-solpurposelist {
    margin-left: 0;
  }
  .m-solpurposelist > li {
    float: none;
    width: 100%;
    margin: 10px 0 0 0;
  }
  .m-solpurposelist > li:nth-child(-n+2) {
    margin-top: 10px;
  }
  .m-solpurposelist > li:first-child {
    margin-top: 0;
  }
  .m-solpurposelist > li .m-btn, .m-solpurposelist > li .m-btn-back, .m-solpurposelist > li .m-btn-down {
    width: 100%;
    text-align: left;
    font-size: 14px;
  }
  .m-solpurposelist > li.m-solpurposelist__full {
    width: 100%;
  }
}

/* 保険をお考えのお客様 ： 保険の基本
--------------------------------------------------------*/
.m-solutionfrm__box .m-solboard {
  margin-top: 12px;
  box-sizing: border-box;
  background: #1d514d url(/solution/img/bg_solboard_btm.svg) repeat-x bottom left;
}

.m-solutionfrm__box .m-solboard__inner {
  background: url(/solution/img/bg_solboard.svg) no-repeat bottom right;
  padding: 30px 30px 35px;
}

.m-solutionfrm__box .m-solboard__list > li {
  display: table;
  margin-top: 20px;
}

.m-solutionfrm__box .m-solboard__list > li:first-child {
  margin-top: 0;
}

.m-solutionfrm__box .m-solboard__list > li > span {
  display: table-cell;
  box-sizing: border-box;
  width: 55px;
  position: relative;
  padding-right: 15px;
  font-weight: bold;
  color: #dedcab;
}

.m-solutionfrm__box .m-solboard__list > li > span:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 15px;
  width: 2px;
  height: 21px;
  background-color: #87788a;
}

.m-solutionfrm__box .m-solboard__list > li > a {
  display: table-cell;
  box-sizing: border-box;
  position: relative;
  padding: 0 60px 0 22px;
  font-weight: bold;
  color: #fff;
}

.m-solutionfrm__box .m-solboard__list > li > a:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: all .3s;
          transition: all .3s;
}

.m-solutionfrm__box .m-solboard__list > li > a:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 4px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #1d514d;
  border-right: 1px solid #1d514d;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .m-solutionfrm__box .m-solboard__inner {
    padding: 15px 15px 38px;
  }
  .m-solutionfrm__box .m-solboard__list > li {
    margin-top: 16px;
  }
  .m-solutionfrm__box .m-solboard__list > li > span {
    width: 46px;
    padding-right: 13px;
  }
  .m-solutionfrm__box .m-solboard__list > li > span:after {
    right: 13px;
    height: 20px;
  }
  .m-solutionfrm__box .m-solboard__list > li > a {
    padding: 0 0 0 18px;
  }
  .m-solutionfrm__box .m-solboard__list > li > a:before {
    top: 4px;
    width: 12px;
    height: 12px;
  }
  .m-solutionfrm__box .m-solboard__list > li > a:after {
    top: 8px;
    left: 3px;
    width: 3px;
    height: 3px;
  }
}

/*-------------------------------------------------------------------------
 local ： /solution/
 生命保険の選び方
--------------------------------------------------------------------------*/
/* メインタイトル
--------------------------------------------------------*/
.m-solheading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  position: relative;
  width: 890px;
  border: 1px solid #d5d5d5;
  box-sizing: border-box;
}

.m-solheading__body {
  width: 454px;
  vertical-align: middle;
  padding: 36px 30px 10px;
  box-sizing: border-box;
}

.m-solheading__img {
  width: 434px;
  box-sizing: border-box;
  padding: 1px 1px 1px 0;
}

.m-solheading__cate {
  position: absolute;
  top: 0;
  left: -1px;
}

.m-solheading__cate > p {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  height: 34px;
  padding: 7px 20px 0 15px;
  font-size: 14px;
  color: #fff;
}

.m-solheading__cate > p:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 17px 10px 17px 0;
  border-right-color: #fff;
}

.m-solheading__ttl {
  line-height: 1.3;
  font-size: 32px;
}

.m-solheading__ttl-q {
  margin-right: 10px;
  font-weight: bold;
  color: #efa71b;
}

.m-solheading__sub {
  margin: 5px 0 0 0;
  line-height: 1.3;
  font-size: 20px;
}

span.m-solheading__sub {
  display: block;
}

.m-solheading__sns {
  overflow: hidden;
  margin-top: 14px;
}

.m-solheading__sns > li {
  float: left;
  margin-right: 10px;
}

@media screen and (max-width: 767px) {
  .m-solheading {
    position: static;
    display: block;
    width: 100%;
  }
  .m-solheading__body {
    position: relative;
    width: 100%;
    padding: 55px 10px 10px;
  }
  .m-solheading__img {
    width: 100%;
  }
  .m-solheading__img img {
    width: 100%;
  }
  .m-solheading__cate {
    top: 10px;
    left: 0;
  }
  .m-solheading__ttl {
    line-height: 1.5;
    font-size: 20px;
  }
  .m-solheading__sub {
    margin: 5px 0 0 0;
    line-height: 1.5;
    font-size: 14px;
  }
  span.m-solheading__sub {
    display: block;
}
  .m-solheading__sns {
    margin-top: 10px;
  }
}

.m-solution-area.is-basic .m-solheading__cate > p {
  background-color: #efa71b;
}

.m-solution-area.is-purpose .m-solheading__cate > p {
  background-color: #8ec227;
}

.m-solution-area.is-event .m-solheading__cate > p {
  background-color: #f08bce;
}

/* コンテンツエリア
--------------------------------------------------------*/
.m-solcont {
  margin-top: 20px;
  padding: 20px;
  background: url(/solution/img/bg_solcont.png) repeat 0 0;
}

.m-solcont > :first-child {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .m-solcont {
    margin-top: 15px;
    padding: 10px;
  }
}

/* 回答吹き出し
--------------------------------------------------------*/
.m-solanswer {
  position: relative;
  background-color: #fff;
  border-radius: 6px;
  margin-bottom: 30px;
  padding: 20px;
  font-size: 14px;
}

.m-solanswer > :first-child {
  margin-top: 0;
}

.m-solanswer:before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -20px;
  left: 50%;
  border-style: solid;
  border-color: transparent;
  border-width: 20px 20px 0 20px;
  margin-left: -20px;
}

.m-solanswer:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -19px;
  left: 50%;
  border-style: solid;
  border-color: transparent;
  border-width: 20px 20px 0 20px;
  border-top-color: #fff;
  margin-left: -20px;
}

.m-solanswer .m-media__thum {
  margin-left: 10px;
}

.m-solanswer .m-media__thum img {
  width: 102px;
  height: 28px;
}

.m-solanswer .m-media__thum.m-solanswer__semei img {
  width: 103px;
  height: 98px;
}

@media screen and (max-width: 767px) {
  .m-solanswer {
    padding: 15px;
    font-size: 12px;
  }
  .m-solanswer .m-media__thum {
    margin-left: 0;
  }
  .m-solanswer .m-media__thum.m-solanswer__semei {
    display: none;
  }
}

.m-solution-area.is-basic .m-solanswer {
  border: 1px solid #efa71b;
}

.m-solution-area.is-basic .m-solanswer:before {
  border-top-color: #efa71b;
}

.m-solution-area.is-purpose .m-solanswer {
  border: 1px solid #8ec227;
}

.m-solution-area.is-purpose .m-solanswer:before {
  border-top-color: #8ec227;
}

.m-solution-area.is-event .m-solanswer {
  border: 1px solid #f08bce;
}

.m-solution-area.is-event .m-solanswer:before {
  border-top-color: #f08bce;
}

/* ローカルリンク
--------------------------------------------------------*/
.m-sol-locallink {
  position: relative;
  background-color: #fff;
  border: 1px solid #d5d5d5;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, .1);
  margin-top: 30px;
  padding: 10px 0 0 0;
}

.m-sol-locallink > dt {
  font-weight: bold;
}

.m-sol-locallink > dt > span {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  height: 34px;
  margin-right: 12px;
  padding: 7px 20px 0 15px;
  font-weight: normal;
  font-size: 14px;
  color: #fff;
}

.m-sol-locallink > dt > span:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 17px 10px 17px 0;
  border-right-color: #fff;
}

.m-sol-locallink > dd {
  padding: 0 20px 20px;
}

.m-sol-locallink > dd > ul {
  overflow: hidden;
  margin-left: -20px;
}

.m-sol-locallink > dd > ul > li {
  display: table;
  float: left;
  margin: 15px 0 0 20px;
  padding-bottom: 1px;
}

.m-sol-locallink > dd > ul > li > a {
  display: table-cell;
  vertical-align: middle;
  box-sizing: border-box;
  position: relative;
  width: 394px;
  height: 36px;
  background-color: #fff;
  border: 1px solid #b3b3b3;
  border-radius: 18px;
  box-shadow: 0 1px 0 0 #b3b3b3;
  padding: 5px 10px 5px 32px;
  text-decoration: none;
}

.m-sol-locallink > dd > ul > li > a:hover {
  text-decoration: underline;
}

.m-sol-locallink > dd > ul > li > a:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 9px;
  left: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #009ce5;
  -webkit-transition: all .3s;
          transition: all .3s;
}

.m-sol-locallink > dd > ul > li > a:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 13px;
  left: 15px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}

@media screen and (max-width: 767px) {
  .m-sol-locallink {
    display: none;
  }
}

.m-solution-area.is-basic .m-sol-locallink > dt > span {
  background-color: #efa71b;
}

.m-solution-area.is-purpose .m-sol-locallink > dt > span {
  background-color: #8ec227;
}

.m-solution-area.is-event .m-sol-locallink > dt > span {
  background-color: #f08bce;
}

/* solbox
--------------------------------------------------------*/
.m-solbox {
  background-color: #fff;
  border: 1px solid #d5d5d5;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, .1);
  margin-top: 30px;
}

.m-solbox__ttl {
  position: relative;
  box-sizing: border-box;
  min-height: 100px;
  padding: 35px 30px 15px 70px;
  line-height: 1.3;
  font-weight: bold;
  font-size: 24px;
}

.m-solbox__ttl-num {
  position: relative;
  box-sizing: border-box;
  min-height: 100px;
  padding: 35px 30px 15px 115px;
  line-height: 1.3;
  font-weight: bold;
  font-size: 24px;
}

.m-solbox__ttl-num .m-solbox__ttl-rib {
  width: 100px;
}

.m-solbox__ttl--row {
  padding-top: 20px;
}

.m-solbox__ttl-sub {
  display: block;
  margin-top: 6px;
  font-size: 16px;
}

.m-solbox__ttl-rib {
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 0;
  box-sizing: border-box;
  width: 60px;
  height: 56px;
  margin: 0 15px 0 0;
  padding: 9px 20px 0 15px;
  text-align: center;
  font-weight: normal;
  font-size: 32px;
  color: #fff;
}

.m-solbox__ttl-rib:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 28px 13px 28px 0;
  border-right-color: #fff;
}

.m-solbox__body {
  margin: 0 5px;
  padding: 20px 15px;
  background-repeat: repeat-x;
  background-position: 0 0;
  background-image: url(/solution/basic/img/bg_solbox_ttl.svg);
}

.m-solbox__body > :first-child {
  margin-top: 0;
}

.m-solbox__img {
  width: 260px;
}

.m-solbox__point {
  width: 300px;
  min-height: 180px;
  box-sizing: border-box;
  background: #1d514d url(/solution/img/bg_solboard.svg) no-repeat bottom right;
  padding: 20px 30px 32px;
}

.m-solbox__point > dt {
  text-align: center;
}

.m-solbox__point > dt > span {
  display: inline-block;
  padding: 0 20px 3px;
  border-bottom: 2px solid #87788a;
  font-weight: bold;
  color: #dedcab;
}

.m-solbox__point .m-list-num > li {
  font-weight: normal;
  font-style: italic;
  color: #fff;
}

.m-solbox__point .m-list-num > li > span {
  font-style: normal;
}

.m-solbox__link {
  margin-top: 10px;
  padding: 10px 15px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.m-solbox__link > :first-child {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .m-solbox {
    margin-top: 20px;
  }
  .m-solbox__ttl {
    min-height: inherit;
    padding: 15px 6px 15px 38px;
    line-height: 1.5;
    font-size: 16px;
  }
  .m-solbox__ttl-num {
    min-height: inherit;
    padding: 15px 6px 12px 48px;
    line-height: 1.5;
    font-size: 16px;
  }
  .m-solbox__ttl-num .m-solbox__ttl-rib {
    width: 40px;
  }
  .m-solbox__ttl--row {
    padding-top: 10px;
  }
  .m-solbox__ttl-sub {
    margin-top: 4px;
    font-weight: normal;
    font-size: 12px;
  }
  .m-solbox__ttl-rib {
    top: 10px;
    width: 30px;
    height: 28px;
    margin: 0;
    padding: 4px 10px 0 0;
    line-height: 1;
    font-size: 22px;
  }
  .m-solbox__ttl-rib:after {
    border-width: 14px 10px 14px 0;
  }
  .m-solbox .m-acc-sp .m-solbox__ttl,
  .m-solbox .m-acc-sp .m-solbox__ttl-num {
    padding-right: 35px;
  }
  .m-solbox .m-acc-sp .m-acc-sp__ctl-icon {
    top: 16px;
    right: 10px;
  }
  .m-solbox .m-acc-sp .m-acc-sp__cont {
    margin-top: 0;
  }
  .m-solbox__body {
    padding: 15px 10px;
  }
  .m-solbox__img img {
    width: 100%;
  }
  .m-solbox__point {
    width: 100%;
    min-height: inherit;
    padding: 15px 15px 40px;
  }
  .m-solbox__point > dt {
    text-align: center;
  }
  .m-solbox__point > dd {
    margin-top: 10px;
    text-align: left;
  }
}

.m-solution-area.is-basic .m-solbox__body {
  background-image: url(/solution/basic/img/bg_solbox_ttl.svg);
}

.m-solution-area.is-basic .m-solbox__ttl-rib {
  background-color: #efa71b;
}

.m-solution-area.is-purpose .m-solbox__body {
  background-image: url(/solution/purpose/img/bg_solbox_ttl.svg);
}

.m-solution-area.is-purpose .m-solbox__ttl-rib {
  background-color: #8ec227;
}

.m-solution-area.is-event .m-solbox__body {
  background-image: url(/solution/life-event/img/bg_solbox_ttl.svg);
}

.m-solution-area.is-event .m-solbox__ttl-rib {
  background-color: #f08bce;
}

/* ワンポイントアドバイス
--------------------------------------------------------*/
.m-advicebox {
  margin-top: 30px;
  padding-top: 30px;
  border: 1px solid #d5d5d5;
  border-top: 0;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, .1);
  position: relative;
}

.m-advicebox:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 848px;
  height: 30px;
  background: url(/solution/img/bg_advicebox_top.svg) repeat-x 3px 0;
  background-size: 24px 30px;
}

.m-advicebox__inner {
  display: table;
  width: 100%;
  box-sizing: border-box;
  background: url(/solution/img/bg_advicebox.svg) repeat 0 0;
  padding: 20px 20px 25px;
}

.m-advicebox__left {
  display: table-cell;
  vertical-align: middle;
  width: 185px;
  padding-right: 30px;
}

.m-advicebox__right {
  display: table-cell;
  vertical-align: middle;
}

.m-advicebox__ttl {
  display: inline-block;
  background-color: #fff;
  border-left: 8px solid #ef7a1b;
  padding: 5px 12px 5px 10px;
  font-weight: bold;
  font-size: 14px;
  color: #ef7a1b;
}

.m-advicebox__img {
  text-align: center;
}

.m-advicebox__img > img {
  width: 129px;
  height: 137px;
}

@media screen and (max-width: 767px) {
  .m-advicebox {
    margin-top: 20px;
  }
  .m-advicebox:before {
    width: 100%;
  }
  .m-advicebox__inner {
    display: block;
    width: 100%;
    padding: 0 15px 15px;
  }
  .m-advicebox__left {
    display: block;
    width: 100%;
    padding-right: 0;
  }
  .m-advicebox__right {
    display: block;
    margin-top: 12px;
  }
  .m-advicebox__img {
    display: none;
  }
}

/* 関連情報
--------------------------------------------------------*/
.m-relatedbox {
  margin-top: 30px;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, .1);
  background-color: #fff;
}

.m-relatedbox > dt {
  padding: 8px 15px;
  background-color: #dcf0fa;
  border-top: 2px solid #009ce5;
  font-weight: bold;
}

.m-relatedbox > dd {
  padding: 0 20px;
}

.m-relatedbox > dd > ul {
  margin-top: 0;
  padding: 5px 0;
}

.m-relatedbox > dd > ul > li {
  margin-top: 0;
  padding: 12px 0;
  border-top: 1px dashed #ccc;
}

.m-relatedbox > dd > ul > li:first-child {
  border-top: 0;
}

@media screen and (max-width: 767px) {
  .m-relatedbox {
    margin-top: 20px;
  }
  .m-relatedbox > dt {
    padding: 8px 15px;
    font-size: 14px;
  }
  .m-relatedbox > dd {
    padding: 0 10px;
  }
  .m-relatedbox > dd > ul {
    padding: 0;
  }
  .m-relatedbox > dd > ul > li {
    padding: 12px 0;
  }
}

/* 関連情報2（枠線あり）
--------------------------------------------------------*/
.m-relatedbox2 {
  margin-top: 30px;
  border: 1px solid #ccc;
  background-color: #fff;
}

.m-relatedbox2 > dt {
  padding: 8px 15px;
  background-color: #dcf0fa;
  border-top: 2px solid #009ce5;
  font-weight: bold;
}

.m-relatedbox2 > dd {
  padding: 0 20px;
}

.m-relatedbox2 > dd > ul {
  margin-top: 0;
  padding: 5px 0;
}

.m-relatedbox2 > dd > ul > li {
  margin-top: 0;
  padding: 12px 0;
  border-top: 1px dashed #ccc;
}

.m-relatedbox2 > dd > ul > li:first-child {
  border-top: 0;
}

@media screen and (max-width: 767px) {
  .m-relatedbox2 {
    margin-top: 20px;
  }
  .m-relatedbox2 > dt {
    padding: 8px 15px;
    font-size: 14px;
  }
  .m-relatedbox2 > dd {
    padding: 0 10px;
  }
  .m-relatedbox2 > dd > ul {
    padding: 0;
  }
  .m-relatedbox2 > dd > ul > li {
    padding: 12px 0;
  }
}

/* カテゴリリンク
--------------------------------------------------------*/
.m-sollinks {
  margin-top: 30px;
}

.m-sollinks > dt {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  height: 34px;
  padding: 7px 22px 0 15px;
  font-weight: bold;
  color: #fff;
}

.m-sollinks > dt:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 17px 10px 17px 0;
  border-right-color: #fff;
}

.m-sollinks > dd {
  background-color: #fff;
  overflow: hidden;
}

.m-sollinks > dd > ul {
  margin-top: 0;
  margin-bottom: -1px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
          align-items: stretch;
}

.m-sollinks > dd > ul > li {
  width: 50%;
  box-sizing: border-box;
  margin-top: 0;
  border-bottom: 1px dashed #ccc;
  padding: 12px 15px;
}

.m-sollinks > dd > ul > li:nth-child(odd) {
  border-right: 1px dashed #ccc;
}

.m-sollinks > dd > ul > li.is-current {
  background-color: #f0f1f2;
  font-weight: bold;
}

.m-sollinks > dd > ul > li.is-current a {
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .m-sollinks {
    margin-top: 20px;
  }
  .m-sollinks > dt {
    font-size: 14px;
  }
  .m-sollinks > dd > ul {
    display: block;
  }
  .m-sollinks > dd > ul > li {
    width: 100%;
    border-top: 1px dashed #ccc;
    border-left: 0 !important;
    padding: 12px 10px;
  }
  .m-sollinks > dd > ul > li:nth-child(-n+2) {
    border-top: 1px dashed #ccc;
    border-top: 0;
  }
  .m-sollinks > dd > ul > li:first-child {
    border-top: 0;
  }
}

.m-solution-area.is-basic .m-sollinks > dt {
  background-color: #efa71b;
}

.m-solution-area.is-basic .m-sollinks > dd {
  border: 2px solid #efa71b;
}

.m-solution-area.is-purpose .m-sollinks > dt {
  background-color: #8ec227;
}

.m-solution-area.is-purpose .m-sollinks > dd {
  border: 2px solid #8ec227;
}

.m-solution-area.is-event .m-sollinks > dt {
  background-color: #f08bce;
}

.m-solution-area.is-event .m-sollinks > dd {
  border: 2px solid #f08bce;
}

/* モーダル
--------------------------------------------------------*/
.m-oldage__total {
  text-align: center;
  font-size: 24px;
}

.m-oldage__price {
  font-weight: bold;
  font-size: 32px;
}

.m-oldage__plus {
  position: relative;
  padding-left: 38px;
}

.m-oldage__plus:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 6px;
  margin-top: -13px;
  width: 26px;
  height: 26px;
  background: url(/resources/img/icon_circle_plus.svg) no-repeat 0 0;
  background-size: 26px 26px;
}

@media screen and (max-width: 767px) {
  .m-oldage__total {
    line-height: 1.5;
    font-size: 18px;
  }
  .m-oldage__price {
    font-size: 28px;
  }
  .m-oldage__plus {
    margin: 50px 0 0 0;
    padding-left: 0;
  }
  .m-oldage__plus:before {
    top: -38px;
    left: 50%;
    margin: 0 0 0 -13px;
  }
}

.m-dl-em {
  text-align: center;
}

.m-dl-em > dt {
  font-weight: bold;
}

.m-dl-em > dd {
  font-size: 20px;
}

.m-dl-em__point {
  font-weight: bold;
  font-size: 32px;
}

@media screen and (max-width: 767px) {
  .m-dl-em > dt {
    font-size: 14px;
  }
  .m-dl-em > dd {
    font-size: 16px;
  }
  .m-dl-em__point {
    font-size: 28px;
  }
}

.m-emtextbox {
  margin: 20px 0 10px;
  padding: 12px 20px;
  background-color: #dcf0fa;
  box-sizing: border-box;
  text-align: center;
}

.m-emtextbox__text {
  font-size: 24px;
}

.m-emtextbox__text-l {
  font-size: 28px;
}

.m-emtextbox__arrow {
  margin-top: 75px;
  position: relative;
}

.m-emtextbox__arrow:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -50px;
  left: 50%;
  margin-left: -95px;
  border-style: solid;
  border-color: transparent;
  border-width: 32px 95px 0 95px;
  border-top-color: #009ce5;
}

@media screen and (max-width: 767px) {
  .m-emtextbox {
    padding: 12px 10px;
    line-height: 1.5;
  }
  .m-emtextbox__text {
    font-size: 16px;
  }
  .m-emtextbox__text-l {
    font-size: 18px;
  }
}

.m-text-yes,
.m-text-no {
  margin-top: 0;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  position: relative;
  margin-bottom: 65px;
}

.m-text-yes:after,
.m-text-no:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -45px;
  left: 50%;
  border-style: solid;
  border-color: transparent;
  border-width: 35px 100px 0 100px;
  border-top-color: #009ce5;
  margin-left: -100px;
}

.m-text-yes {
  color: #0260b3;
}

.m-text-no {
  color: #c00;
}

table .m-cell-em {
  background-color: #fff4c7;
  text-align: center;
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  table .m-cell-em {
    font-size: 16px;
  }
}

/*--------------------------------------------------------
 「保険の選び方」 index
--------------------------------------------------------*/
.m-solcont__ttl {
  position: relative;
  margin-top: 12px !important;
  padding-left: 25px;
  line-height: 1.3;
  font-weight: bold;
  font-size: 24px;
}

.m-solcont__ttl:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 13px;
  height: 14px;
  background: url(/solution/img/bg_mainttl.svg) no-repeat 0 0;
  background-size: 13px 14px;
}

.m-solcont__ttl > span {
  font-size: 16px;
}

.m-solcont__ttl + .m-idxsolbox {
  margin-top: 15px;
}

@media screen and (max-width: 767px) {
  .m-solcont__ttl {
    margin-top: 5px !important;
    padding-left: 22px;
    font-size: 18px;
  }
  .m-solcont__ttl:before {
    top: 2px;
  }
  .m-solcont__ttl > span {
    font-size: 16px;
  }
  .m-solcont__ttl + .m-idxsolbox {
    margin-top: 10px;
  }
}

.m-idxsolbox {
  background-color: #fff;
  border: 1px solid #d5d5d5;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, .1);
  margin-top: 30px;
  padding: 20px;
}

.m-idxsolbox__ttl {
  position: relative;
  box-sizing: border-box;
  height: 60px;
  margin: 0 0 0 -20px;
  padding: 16px 20px 0 20px;
  line-height: 1.3;
  font-weight: bold;
  font-size: 24px;
  color: #fff;
}

.m-idxsolbox__ttl.is-basic {
  background-color: #efa71b;
}

.m-idxsolbox__ttl.is-purpose {
  background-color: #8ec227;
}

.m-idxsolbox__ttl.is-event {
  background-color: #f08bce;
}

.m-idxsolbox__ttl > span {
  font-size: 16px;
}

.m-idxsolbox__ttl:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 30px 15px 30px 0;
  border-right-color: #fff;
}

@media screen and (max-width: 767px) {
  .m-idxsolbox {
    margin-top: 20px;
    padding: 15px 10px 10px;
  }
  .m-idxsolbox__ttl {
    height: 40px;
    margin: 0 0 0 -10px;
    padding: 10px 10px 0 10px;
    font-size: 18px;
  }
  .m-idxsolbox__ttl > span {
    font-size: 14px;
  }
  .m-idxsolbox__ttl:after {
    border-width: 20px 10px 20px 0;
  }
  .m-idxsolbox__ttl.is-basic {
    height: 62px;
  }
  .m-idxsolbox__ttl.is-basic:after {
    border-width: 31px 15px 31px 0;
  }
}

/* 「保険の選び方」 index ： ライフイベントから選ぶ
--------------------------------------------------------*/
.m-eventpanel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
          align-items: stretch;
  margin-left: -20px;
}

.m-eventpanel__item {
  width: 187px;
  margin: 20px 0 0 20px;
  background-color: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 6px;
  box-sizing: border-box;
}

.m-eventpanel__img {
  padding: 4px 4px 0;
}

.m-eventpanel__img > img {
  width: 177px;
}

.m-eventpanel__body {
  display: table;
  width: 100%;
  height: 85px;
  padding: 15px 12px;
  box-sizing: border-box;
  position: relative;
  text-align: center;
}

.m-eventpanel__body:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 12px;
  width: 7px;
  height: 7px;
  margin-top: -6px;
  border-top: 2px solid #009ce5;
  border-right: 2px solid #009ce5;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.m-eventpanel__ttl {
  display: table-cell;
  vertical-align: middle;
  line-height: 1.3;
  font-size: 14px;
}

.m-eventpanel__ttl > span {
  font-weight: bold;
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .m-eventpanel {
    width: 100%;
    margin-left: 0;
    font-size: 0;
    overflow: hidden;
  }
  .m-eventpanel__item {
    width: 48%;
    min-height: inherit;
    display: inline-block;
    vertical-align: top;
    margin-top: 10px;
    margin-left: 3.6%;
  }
  .m-eventpanel__item:nth-child(2n+1) {
    margin-left: 0;
  }
  .m-eventpanel__img > img {
    width: 100%;
  }
  .m-eventpanel__body {
    height: 64px;
    padding: 12px 14px 12px 10px;
  }
  .m-eventpanel__body:after {
    right: 7px;
    width: 5px;
    height: 5px;
    margin-top: -4px;
  }
  .m-eventpanel__ttl {
    font-size: 12px;
  }
  .m-eventpanel__ttl > span {
    font-size: 16px;
  }
}

/* 「保険の選び方」 index ： 心配ごとから選ぶ
--------------------------------------------------------*/
.m-purposepanel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: 5px;
  margin-left: -20px;
}

.m-purposepanel__item {
  display: table;
  width: 394px;
  margin: 15px 0 0 20px;
  background-color: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 6px;
  box-sizing: border-box;
}

.m-purposepanel__img {
  display: table-cell;
  padding: 4px 0 4px 4px;
}

.m-purposepanel__img > img {
  width: 128px;
}

.m-purposepanel__body {
  display: table-cell;
  width: 260px;
  vertical-align: middle;
  padding: 10px 10px 10px 15px;
  box-sizing: border-box;
  position: relative;
}

.m-purposepanel__body:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 12px;
  width: 7px;
  height: 7px;
  margin-top: -5px;
  border-top: 2px solid #009ce5;
  border-right: 2px solid #009ce5;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.m-purposepanel__ttl {
  line-height: 1.3;
  font-size: 14px;
}

.m-purposepanel__ttl > span {
  font-weight: bold;
  font-size: 20px;
}

.m-purposepanel__subttl {
  display: inline-block;
  height: 22px;
  box-sizing: border-box;
  margin-top: 4px;
  padding: 0 20px 0 6px;
  border: 1px solid #d5d5d5;
  line-height: 22px;
  font-size: 11px;
  position: relative;
}

.m-purposepanel__subttl:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 10px 6px 10px 0;
  border-right-color: #d5d5d5;
}

.m-purposepanel__subttl:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: -2px;
  border-style: solid;
  border-color: transparent;
  border-width: 10px 6px 10px 0;
  border-right-color: #fff;
}

@media screen and (max-width: 767px) {
  .m-purposepanel {
    display: block;
    margin: 0;
  }
  .m-purposepanel__item {
    width: 100%;
    margin: 15px 0 0 0;
  }
  .m-purposepanel__img > img {
    width: 80px;
  }
  .m-purposepanel__body {
    width: 90%;
    padding: 8px 15px 8px 10px;
  }
  .m-purposepanel__body:after {
    right: 7px;
    width: 5px;
    height: 5px;
    margin-top: -4px;
  }
  .m-purposepanel__ttl {
    line-height: 1.5;
    font-size: 12px;
  }
  .m-purposepanel__ttl > span {
    font-size: 15px;
  }
  .m-purposepanel__subttl {
    height: inherit;
    padding: 0;
    border: 0;
    line-height: 1.3;
    font-size: 10px;
  }
  .m-purposepanel__subttl:before {
    content: none;
  }
  .m-purposepanel__subttl:after {
    content: none;
  }
}

.m-purposewoman {
  display: table;
  width: 100%;
  margin-top: 15px;
  background-color: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 6px;
  box-sizing: border-box;
}

.m-purposewoman__main {
  display: table-cell;
  vertical-align: middle;
  box-sizing: border-box;
  width: 394px;
  padding: 8px 30px 8px 147px;
  border-right: 1px dashed #ccc;
  font-size: 14px;
  position: relative;
}

.m-purposewoman__main:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 12px;
  width: 7px;
  height: 7px;
  margin-top: -5px;
  border-top: 2px solid #009ce5;
  border-right: 2px solid #009ce5;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.m-purposewoman__img {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 128px;
  height: 94px;
}

.m-purposewoman__img > img {
  width: 128px;
}

.m-purposewoman__ttl {
  margin-top: 0;
  line-height: 1.3;
  font-size: 14px;
}

.m-purposewoman__ttl > span {
  font-weight: bold;
  font-size: 20px;
}

.m-purposewoman__sub {
  display: table-cell;
  vertical-align: middle;
  box-sizing: border-box;
  width: 414px;
  padding: 8px 10px 8px 20px;
  font-size: 14px;
}

.m-purposewoman__sub ul {
  margin-top: 0;
}

.m-purposewoman__sub ul > li span {
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .m-purposewoman {
    display: block;
    width: 100%;
    margin-top: 15px;
    background-color: #fff;
    border: 1px solid #d5d5d5;
    border-radius: 6px;
    box-sizing: border-box;
  }
  .m-purposewoman__main {
    display: block;
    width: 100%;
    padding: 8px 15px 10px 95px;
    border-right: 0;
    border-bottom: 1px dashed #ccc;
    font-size: 12px;
  }
  .m-purposewoman__main:after {
    right: 7px;
    width: 5px;
    height: 5px;
    margin-top: -4px;
  }
  .m-purposewoman__img {
    width: 80px;
    height: auto;
  }
  .m-purposewoman__img > img {
    width: 80px;
  }
  .m-purposewoman__ttl {
    margin-top: 0;
    line-height: 1.5;
    font-size: 12px;
  }
  .m-purposewoman__ttl > span {
    font-size: 16px;
  }
  .m-purposewoman__sub {
    display: block;
    width: 100%;
    padding: 10px;
  }
}

/* 「保険の選び方」 index ： YES or NO
--------------------------------------------------------*/
.m-solbasicbox {
  display: table;
  width: 100%;
  box-sizing: border-box;
  margin-top: 20px;
  padding: 18px 20px 18px 30px;
  background: url(/solution/img/bg_advicebox.svg) repeat 0 0;
}

.m-solbasicbox__left {
  display: table-cell;
  vertical-align: middle;
  padding-right: 30px;
}

.m-solbasicbox__left img {
  display: block;
  margin-top: 13px;
  width: 102px;
  height: 28px;
}

.m-solbasicbox__left img:first-child {
  margin-top: 0;
}

.m-solbasicbox__right {
  display: table-cell;
  vertical-align: middle;
}

.m-solbasicbox__right dl {
  margin-top: 0;
}

.m-solbasicbox__right dt {
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .m-solbasicbox {
    display: block;
    margin-top: 15px;
    padding: 15px 10px 10px;
  }
  .m-solbasicbox__left {
    display: block;
    margin-bottom: 12px;
    padding-right: 0;
    text-align: center;
  }
  .m-solbasicbox__left img {
    display: inline-block;
    margin: 0 0 0 10px;
  }
  .m-solbasicbox__left img:first-child {
    margin-left: 0;
  }
  .m-solbasicbox__right {
    display: block;
  }
  .m-solbasicbox__right dt {
    font-size: 14px;
  }
}

/* 「保険の選び方」 index ： 保険の基本
--------------------------------------------------------*/
.m-idxsolbox .m-solboard {
  margin-top: 20px;
  box-sizing: border-box;
  background: #1d514d url(/solution/img/bg_solboard_btm.svg) repeat-x bottom left;
}

.m-idxsolbox .m-solboard__inner {
  background: url(/solution/img/bg_solboard.svg) no-repeat bottom right;
  padding: 28px 30px 35px;
}

.m-idxsolbox .m-solboard__list > li {
  display: table;
  width: 100%;
  margin-top: 20px;
}

.m-idxsolbox .m-solboard__list > li:first-child {
  margin-top: 0;
}

.m-idxsolbox .m-solboard__list > li > span {
  display: table-cell;
  box-sizing: border-box;
  width: 55px;
  position: relative;
  padding-right: 15px;
  font-weight: bold;
  color: #dedcab;
}

.m-idxsolbox .m-solboard__list > li > span:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 15px;
  width: 2px;
  height: 21px;
  background-color: #87788a;
}

.m-idxsolbox .m-solboard__list > li > a {
  display: table-cell;
  box-sizing: border-box;
  position: relative;
  padding: 0 60px 0 22px;
  font-weight: bold;
  color: #fff;
}

.m-idxsolbox .m-solboard__list > li > a:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: all .3s;
          transition: all .3s;
}

.m-idxsolbox .m-solboard__list > li > a:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 4px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #1d514d;
  border-right: 1px solid #1d514d;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.m-idxsolbox .m-solboard__subttl {
  display: inline-block;
  vertical-align: middle;
  height: 21px;
  box-sizing: border-box;
  margin: 0 0 0 15px;
  padding: 5px 20px 0 6px;
  background-color: #bccbca;
  line-height: 1;
  font-weight: bold;
  font-size: 11px;
  color: #1d514d;
  position: relative;
}

.m-idxsolbox .m-solboard__subttl:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 10px 6px 10px 0;
  border-right-color: #1d514d;
}

@media screen and (max-width: 767px) {
  .m-idxsolbox .m-solboard {
    margin-top: 15px;
  }
  .m-idxsolbox .m-solboard__inner {
    padding: 15px 15px 38px;
  }
  .m-idxsolbox .m-solboard__list > li {
    display: table;
    width: 100%;
    margin-top: 16px;
  }
  .m-idxsolbox .m-solboard__list > li > span {
    width: 46px;
    padding-right: 13px;
  }
  .m-idxsolbox .m-solboard__list > li > span:after {
    right: 13px;
    height: 20px;
  }
  .m-idxsolbox .m-solboard__list > li > a {
    padding: 0 0 0 18px;
  }
  .m-idxsolbox .m-solboard__list > li > a:before {
    top: 4px;
    width: 12px;
    height: 12px;
  }
  .m-idxsolbox .m-solboard__list > li > a:after {
    top: 8px;
    left: 3px;
    width: 3px;
    height: 3px;
  }
  .m-idxsolbox .m-solboard__subttl {
    height: 21px;
    margin: 5px 0 0 0;
    padding: 5px 15px 0 6px;
    text-decoration: none !important;
  }
  .m-idxsolbox .m-solboard__subttl:after {
    border-width: 10px 6px 10px 0;
  }
}

/* 女性のさまざまな心配ごとに備えたい ： タイトル
--------------------------------------------------------*/
.m-solheading-woman {
  display: block;
}

.m-solheading-woman .m-solheading__body {
  overflow: hidden;
  width: 100%;
  padding: 48px 30px 12px;
}

.m-solheading-woman .m-solheading__ttl {
  float: left;
}

.m-solheading-woman .m-solheading__sub {
  float: left;
  display: inline-block;
  height: 34px;
  box-sizing: border-box;
  margin: 0 0 0 15px;
  padding: 0 20px 0 6px;
  border: 1px solid #d5d5d5;
  line-height: 34px;
  font-size: 14px;
  position: relative;
}

.m-solheading-woman .m-solheading__sub:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 16px 8px 16px 0;
  border-right-color: #d5d5d5;
}

.m-solheading-woman .m-solheading__sub:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: -1px;
  border-style: solid;
  border-color: transparent;
  border-width: 16px 8px 16px 0;
  border-right-color: #fff;
}

@media screen and (max-width: 767px) {
  .m-solheading-woman .m-solheading__body {
    padding: 50px 15px 12px;
  }
  .m-solheading-woman .m-solheading__ttl {
    float: none;
    font-size: 18px;
  }
  .m-solheading-woman .m-solheading__sub {
    float: none;
    height: 30px;
    margin: 4px 0 0 0;
    padding: 0 20px 0 6px;
    line-height: 30px;
    font-size: 14px;
  }
  .m-solheading-woman .m-solheading__sub:before {
    border-width: 15px 7px 15px 0;
  }
  .m-solheading-woman .m-solheading__sub:after {
    border-width: 15px 7px 15px 0;
  }
  .m-idxsolbox__ttl-woman {
    height: 62px;
    padding-right: 20px;
  }
  .m-idxsolbox__ttl-woman:after {
    border-width: 31px 15px 31px 0;
  }
}

/* 女性のさまざまな心配ごとに備えたい ： パネル
--------------------------------------------------------*/
.m-womanpanel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
          align-items: stretch;
  margin-left: -20px;
}

.m-womanpanel__item {
  width: 256px;
  margin: 20px 0 0 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

.m-womanpanel__img {
  padding: 4px 4px 0;
}

.m-womanpanel__img img {
  width: 100%;
}

.m-womanpanel__ttl {
  display: table;
  height: 109px;
  box-sizing: border-box;
  width: 100%;
  padding: 20px 25px 20px 15px;
  font-size: 14px;
  position: relative;
}

.m-womanpanel__ttl:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 15px;
  width: 7px;
  height: 7px;
  margin-top: -5px;
  border-top: 2px solid #009ce5;
  border-right: 2px solid #009ce5;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.m-womanpanel__ttl-inner {
  display: table-cell;
  vertical-align: middle;
}

.m-womanpanel__ttl-inner > span {
  font-weight: bold;
  font-size: 16px;
}

.m-womanpanel__body {
  margin: 0 14px;
  padding: 15px 0;
  border-top: 1px dashed #ccc;
}

.m-womanpanel__list {
  counter-reset: num;
}

.m-womanpanel__list > li {
  position: relative;
  margin-top: 18px;
  padding-left: 30px;
  font-size: 14px;
  color: #8ec227;
}

.m-womanpanel__list > li:first-child {
  margin-top: 0;
}

.m-womanpanel__list > li:before {
  content: counter(num);
  counter-increment: num;
  display: inline-block;
  position: absolute;
  top: -1px;
  left: 0;
  width: 22px;
  height: 22px;
  padding-top: 4px;
  line-height: 1;
  border: 2px solid #8ec227;
  border-radius: 50%;
  box-sizing: border-box;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
}

.m-womanpanel__list > li > span {
  color: #333;
}

@media screen and (max-width: 767px) {
  .m-womanpanel {
    display: block;
    margin-left: 0;
  }
  .m-womanpanel__item {
    width: 100%;
    margin: 15px 0 0 0;
  }
  .m-womanpanel__ttl {
    display: table;
    height: inherit;
    width: 100%;
    padding: 15px 22px 15px 15px;
    font-size: 14px;
  }
  .m-womanpanel__ttl:after {
    right: 10px;
    width: 5px;
    height: 5px;
    margin-top: -4px;
  }
  .m-womanpanel__body {
    margin: 0 12px;
    padding: 15px 0;
  }
  .m-womanpanel__list > li {
    margin-top: 12px;
    font-size: 12px;
  }
}

/*-------------------------------------------------------------------------
 local ： /keiyaku/
 ご契約者様
--------------------------------------------------------------------------*/
/* キャンペーンのリボン
--------------------------------------------------------*/
.m-camp-ribbon {
  display: table;
  position: relative;
  box-sizing: border-box;
  height: 44px;
  padding: 2px 0;
  margin-top: 10px;
  background-color: #f279b6;
  text-align: center;
  line-height: 1.3;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
}

.m-camp-ribbon > span {
  display: table-cell;
  vertical-align: middle;
  padding: 0 50px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.m-camp-ribbon:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 22px 0 22px 10px;
  border-left-color: #fff;
}

.m-camp-ribbon:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 22px 10px 22px 0;
  border-right-color: #fff;
}

@media screen and (max-width: 767px) {
  .m-camp-ribbon {
    width: 100%;
    margin: 10px auto 15px !important;
    font-size: 15px;
  }
  .m-camp-ribbon > span {
    padding: 0 15px;
  }
}

/* ライフイベントごとのお手続き
--------------------------------------------------------*/
.m-eventbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
          align-items: stretch;
  margin-left: -20px;
}

.m-eventbox > li {
  width: 262px;
  margin: 20px 0 2px 20px;
  border: 1px solid #b3b3b3;
  border-radius: 6px;
  box-shadow: 0 2px 0 0 #b3b3b3;
  background-color: #fff;
  box-sizing: border-box;
  text-align: center;
}

.m-eventbox > li:nth-child(-n+4) {
  margin-top: 0;
}

.m-eventbox > li > a {
  display: block;
  padding: 15px 5px;
  text-decoration: none;
  line-height: 1.3;
  font-weight: bold;
  font-size: 18px;
  color: #333;
  -webkit-transition: all .3s;
          transition: all .3s;
}

.m-eventbox > li > a:hover {
  background-color: #f2f2f2;
}

.m-eventbox > li > a > span:first-child {
  display: table;
  margin: 0 auto;
  width: 60px;
  height: 64px;
}

.m-eventbox > li > a > span:first-child > img {
  width: 60px;
  height: 62px;
}

.m-eventbox > li > a > span:last-child {
  display: block;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .m-eventbox {
    display: block;
    margin-left: 0;
  }
  .m-eventbox > li {
    width: 100%;
    margin: 10px 0 2px 0;
  }
  .m-eventbox > li:nth-child(-n+4) {
    margin-top: 10px;
  }
  .m-eventbox > li:first-child {
    margin-top: 0;
  }
  .m-eventbox > li > a {
    display: table;
    width: 100%;
    box-sizing: border-box;
    padding: 8px 15px;
  }
  .m-eventbox > li > a > span:first-child {
    display: table-cell;
    vertical-align: middle;
    margin: 0 auto;
  }
  .m-eventbox > li > a > span:last-child {
    display: table-cell;
    vertical-align: middle;
    padding-left: 15px;
    text-align: left;
    margin-top: 0;
  }
}

/* 目的ごとのお手続きのご案内
--------------------------------------------------------*/
.m-contactbtn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -20px;
}

.m-contactbtn > li {
  width: 50%;
  padding-left: 20px;
  box-sizing: border-box;
}

.m-contactbtn > li .m-btn, .m-contactbtn > li .m-btn-back, .m-contactbtn > li .m-btn-down {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .m-contactbtn {
    display: block;
    margin-left: 0;
  }
  .m-contactbtn > li {
    width: 100%;
    margin-top: 15px;
    padding-left: 0;
  }
  .m-contactbtn > li:first-child {
    margin-top: 0;
  }
}

.m-contactbtn-dl > dt {
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
}

.m-contactbtn-dl > dt .m-note {
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .m-contactbtn-dl > dt {
    font-size: 14px;
  }
}

/* ライフイベントごとのお手続き： 詳細ページのカラム
--------------------------------------------------------*/
.m-eventcol .m-media__thum {
  width: 120px;
}

.m-eventcol .m-media__body {
  width: 750px;
}

.m-eventcol__img {
  display: table;
}

.m-eventcol__img-inner {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 120px;
  height: 120px;
  border: 1px solid #d5d5d5;
  box-sizing: border-box;
}

.m-eventcol__img-inner > img {
  width: 64px;
  height: 64px;
}

@media screen and (max-width: 767px) {
  .m-eventcol .m-media__thum {
    width: 80px;
  }
  .m-eventcol .m-media__body {
    width: auto;
  }
  .m-eventcol__img-inner {
    width: 80px;
    height: 80px;
  }
  .m-eventcol__img-inner > img {
    width: 64px;
    height: 64px;
  }
}

/* 契約者さま専用ページ
--------------------------------------------------------*/
.m-mypagebox {
  padding: 25px 30px;
}

.m-mypagebox .m-bdrbox{
  border: 2px solid #009ce5;
  border-radius: 20px;
}

.m-mypagebox .m-embox {
  margin-top: 18px;
  background-color: rgba(220, 240, 250, 0.5);
}

.m-mypagebox .m-embox--login {
  background-color: #e4f5e4;
}

.m-mypagebox__btns {
  display: table;
  margin: 0 auto;
  padding: 2px 0;
}

.m-mypagebox__btns>li {
  margin-top: 15px;
}

.m-mypagebox__btns>li:first-child {
  margin-top: 0;
}

.m-mypagebox__btns a[class^="m-btn"] {
  width: 280px;
}

.m-mypagebox .m-mypageservice .m-balloon {
  min-width: 70px;
}

.m-mypagebox .m-mypageservice .m-media-tbl .m-media__thum{
  padding-right: 0;
}

.m-mypagebox .m-cols3 {
  margin-left: 0;
}

.m-mypagebox .m-cols3 .m-cols__col {
  width: 32%;
  padding-left: 0;
}

.m-mypagebox .m-cols3 .m-bdrbox{
  border-radius: 15px;
  padding-top: 0;
  padding-bottom: 5px;
}

.m-mypagebox .m-cols3 .m-media .m-media__thum{
  margin-right: 0;
}

.m-mypagebox .m-cols3 .m-media .m-media__body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.m-mypagebox .m-mypageservice .m-cols2 {
  margin-left: 0;
  margin-top: 0;
}
.m-mypagebox .m-mypageservice .m-bdrbox{
  padding-right: 0;
  padding-bottom: 0;
}

.m-mypagebox .m-mypageservice .m-cols2 .m-media__body{
  font-size: 18px;
}

.m-mypagebox .m-mypageservice .m-locallink>li>a:before {
  top: 22px;
  left: 0;
  width: 8px;
  height: 8px;
}

.m-mypagebox .m-mypageservice .m-cols2 .m-cols__col {
  width: 48%;
}

.m-mypagebox .m-mypagelogin .m-tbl {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 29px;
  margin-bottom: 24px;
}

.m-mypagebox .m-mypagelogin .m-text{
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .m-mypagebox {
    padding: 12px 15px;
  }
  .m-mypagebox .m-embox {
    margin-top: 15px;
  }
  .m-mypagebox__btns, .m-embox .m-btn {
    width: 97%;
  }
  .m-mypagebox__btns a[class^="m-btn"] {
    width: 100%;
  }
  .m-balloon+p {
    margin-top: 5px;
  }
  .m-mypagebox .m-cols3 {
    display: flex;
  }
  .m-mypagebox .m-cols3 .m-cols__col {
    padding: 0 5px;
    width: 35%;
  }
  .m-mypagebox .m-cols3 .m-media .m-media__thum {
    margin: 0 auto;
  }
  .m-mypagebox .m-cols3 .m-bdrbox{
    padding: 0 5px 5px;
  }
  .m-mypagebox .m-cols3 .m-media .m-media__thum{
    width: 56%!important;
  }
  .m-mypagebox .m-mypageservice .m-block-s{
    margin-top: 15px;
  }
  .m-mypagebox .m-mypageservice .m-cols2 .m-cols__col {
    width: 100%;
    padding-left: 20px;
  }
  .m-mypagebox .m-mypageservice .m-cols2 .m-media__body{
    font-size: 13px;
  }
  .m-mypagebox .m-mypagelogin .m-heading3, .m-mypagebox .m-mypageregister .m-heading3{
    margin-bottom: 8px;
  }
  .m-mypagebox .m-mypagelogin .m-embox{
    padding: 5px 5px 10px;
  }
  .m-mypagebox .m-mypagelogin .m-tbl {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .m-mypagebox .m-mypagelogin .m-text{
    margin-top: -10px;
  }
}

/*-------------------------------------------------------------------------
 local ： /company/
 あんしん生命について
--------------------------------------------------------------------------*/
/* 扉ページのカラム
--------------------------------------------------------*/
.m-aboutcol {
  overflow: hidden;
  margin-top: 50px;
}

.m-aboutcol__col {
  float: left;
  margin-left: 38px;
}

.m-aboutcol__col:first-child {
  margin-left: 0;
}

.m-aboutcol.m-aboutcol3 .m-aboutcol__col {
  width: 358px;
}

.m-aboutcol.m-aboutcol2 .m-aboutcol__col {
  width: 556px;
}

.m-aboutcol__ttl {
  margin: 0 0 18px;
  padding-bottom: 9px;
  border-bottom: 5px solid #009ce5;
  line-height: 1.3;
  font-weight: bold;
  font-size: 24px;
}

.m-aboutcol__ttl + * {
  margin-top: 20px;
}

.m-aboutcol__ttl > a {
  display: inline-block;
  position: relative;
  padding: 2px 0 0 38px;
  text-decoration: none;
  color: #333;
}

.m-aboutcol__ttl > a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  background-color: #fff;
  border: 1px solid #b3b3b3;
  box-shadow: 0 2px 0 0 #b3b3b3;
  border-radius: 6px;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.m-aboutcol__ttl > a:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 8px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #009ce5;
  border-right: 2px solid #009ce5;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.m-aboutcol__ttl-s {
  margin: 0 0 18px;
  padding-bottom: 9px;
  border-bottom: 3px solid #009ce5;
  line-height: 1.3;
  font-weight: bold;
  font-size: 18px;
}

.m-aboutcol__ttl-s > a {
  display: inline-block;
  position: relative;
  min-height: 20px;
  padding-left: 30px;
  text-decoration: none;
  color: #333;
}

.m-aboutcol__ttl-s > a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #b3b3b3;
  box-shadow: 0 1px 0 0 #b3b3b3;
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.m-aboutcol__ttl-s > a:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 7px;
  left: 5px;
  width: 5px;
  height: 5px;
  border-top: 2px solid #009ce5;
  border-right: 2px solid #009ce5;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.m-aboutcol .m-media__thum img {
  width: 120px !important;
}

@media screen and (max-width: 767px) {
  .m-aboutcol {
    margin-top: 0;
  }
  .m-aboutcol__col {
    float: none;
    margin: 40px 0 0 0;
  }
  .m-aboutcol.m-aboutcol3 .m-aboutcol__col, .m-aboutcol.m-aboutcol2 .m-aboutcol__col {
    width: 100%;
  }
  .m-aboutcol__ttl {
    margin: 0 0 12px;
    padding-bottom: 4px;
    border-bottom: 4px solid #009ce5;
    line-height: 1.3;
    font-size: 20px;
  }
  .m-aboutcol__ttl + * {
    margin-top: 15px;
  }
  .m-aboutcol__ttl > a {
    padding: 0 0 0 30px;
  }
  .m-aboutcol__ttl > a:before {
    top: 1px;
    left: 0;
    width: 20px;
    height: 20px;
    box-shadow: 0 1px 0 0 #b3b3b3;
    border-radius: 4px;
  }
  .m-aboutcol__ttl > a:after {
    top: 8px;
    left: 5px;
    width: 5px;
    height: 5px;
  }
/*セイメイの部屋サムネイル横並び 20170601 */
  .m-media-seemee .m-media__thum-seemee img {
    width: 145px !important;
  }
}

/*-------------------------------------------------------------------------
 local ： /product/
 商品一覧
--------------------------------------------------------------------------*/
/* 商品へのページ内リンク
--------------------------------------------------------*/
.m-product-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: 20px;
}

.m-product-nav > li > a {
  display: inline-block;
  box-sizing: border-box;
  position: relative;
  min-width: 156px;
  margin-bottom: 2px;
  background-color: #fff;
  border: 1px solid #b3b3b3;
  padding: 47px 18px 12px;
  box-shadow: 0 2px 0 0 #b3b3b3;
  border-radius: 6px;
  text-align: center;
  line-height: 1.3;
  font-weight: bold;
  font-size: 18px;
  color: #333 !important;
  text-decoration: none !important;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: all .3s;
          transition: all .3s;
}

.m-product-nav > li > a:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 50%;
  width: 30px;
  height: 30px;
  margin-left: -15px;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 30px 30px;
}

.m-product-nav > li > a.m-product-nav__medical:before {
  background-image: url(/resources/img/icon_product_medical_s.svg);
}

.m-product-nav > li > a.m-product-nav__cancer:before {
  background-image: url(/resources/img/icon_product_cancer_s.svg);
}

.m-product-nav > li > a.m-product-nav__life:before {
  background-image: url(/resources/img/icon_product_life_s.svg);
}

.m-product-nav > li > a.m-product-nav__child:before {
  background-image: url(/resources/img/icon_product_child_s.svg);
}

.m-product-nav > li > a.m-product-nav__other:before {
  background-image: url(/resources/img/icon_product_other_s.svg);
}

.m-product-nav > li > a > span {
  display: inline-block;
  position: relative;
  padding-bottom: 14px;
}

.m-product-nav > li > a > span:before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #009ce5;
  border-right: 2px solid #009ce5;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}

.m-product-nav > li > a .m-product-nav__sub {
  padding: 0;
  font-size: 12px;
}

.m-product-nav > li > a .m-product-nav__sub:before {
  content: none;
}

.m-product-nav > li > a:hover {
  background-color: #f2f2f2;
}

@media screen and (max-width: 767px) {
  .m-product-nav {
    display: none;
  }
}

/* h2アイコン
--------------------------------------------------------*/
.m-heading2__icon {
  display: block;
  position: relative;
  padding-left: 54px;
}

.m-heading2__icon:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 40px 40px;
}

.m-heading2#ttl_medical {
  margin-bottom: 0;
}

.m-heading2#ttl_medical .m-heading2__icon:before {
  background-image: url(/resources/img/icon_product_medical.svg);
  top: -6px;
}

.m-heading2#ttl_cancer {
  margin-bottom: 0;
}

.m-heading2#ttl_cancer .m-heading2__icon:before {
  background-image: url(/resources/img/icon_product_cancer.svg);
  top: -2px;
}

.m-heading2#ttl_life {
  margin-bottom: 0;
}

.m-heading2#ttl_life .m-heading2__icon:before {
  background-image: url(/resources/img/icon_product_life.svg);
  top: -4px;
}

.m-heading2#ttl_child {
  margin-bottom: 0;
}

.m-heading2#ttl_child .m-heading2__icon:before {
  background-image: url(/resources/img/icon_product_child.svg);
  top: -2px;
}

.m-heading2#ttl_other {
  margin-bottom: 0;
}

.m-heading2#ttl_other .m-heading2__icon:before {
  background-image: url(/resources/img/icon_product_other.svg);
  top: -2px;
}

@media screen and (max-width: 767px) {
  .m-heading2__icon {
    padding-left: 28px;
  }
  .m-heading2__icon:before {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
  }
  .m-heading2#ttl_medical .m-heading2__icon:before {
    top: 0;
  }
  .m-heading2#ttl_cancer .m-heading2__icon:before {
    top: 1px;
  }
  .m-heading2#ttl_life .m-heading2__icon:before {
    top: 1px;
  }
  .m-heading2#ttl_child .m-heading2__icon:before {
    top: 2px;
  }
  .m-heading2#ttl_other .m-heading2__icon:before {
    top: 1px;
  }
}

/* 吹き出しリード文
--------------------------------------------------------*/
.m-request-lead {
  position: relative;
  margin-top: 30px;
  padding: 20px;
  background-color: #009ce5;
  color: #fff;
}

.m-request-lead > :first-child {
  margin-top: 0;
}

.m-request-lead__main {
  margin-top: 0;
  font-weight: bold;
  font-size: 24px;
}

.m-request-lead__main > span {
  font-size: 32px;
  color: #ffe787;
}

.m-request-lead__sub {
  margin-top: 0;
  font-size: 14px;
}

.m-request-lead:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -34px;
  right: 45px;
  border-style: solid;
  border-color: transparent;
  border-width: 35px 26px 0 26px;
  border-top-color: #009ce5;
}

@media screen and (max-width: 767px) {
  .m-request-lead {
    margin-top: 20px;
    padding: 15px;
  }
  .m-request-lead__main {
    line-height: 1.3;
    font-size: 18px;
  }
  .m-request-lead__main > span {
    font-size: 24px;
  }
  .m-request-lead__sub {
    margin-top: 5px;
    font-size: 12px;
  }
  .m-request-lead:after {
    bottom: -34px;
    right: 35px;
    border-style: solid;
    border-color: transparent;
    border-width: 35px 26px 0 26px;
    border-top-color: #009ce5;
  }
}

/* 商品カラム
--------------------------------------------------------*/
.m-requestcol {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #009ce5;
}

.m-requestcol.m-requestcol--nobdr {
  border-bottom: 0;
}

.m-requestcol__product {
  width: 380px;
  padding: 20px 0;
}

.m-requestcol__body {
  width: 442px;
}

.m-requestcol__ttl {
  padding-left: 20px;
  line-height: 1.3;
  font-weight: bold;
  font-size: 24px;
  position: relative;
}

.m-requestcol__ttl:before {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #009ce5;
  border-radius: 2px;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.m-requestcol__icons {
  display: block;
  margin-bottom: 12px;
  line-height: 1;
  font-size: 1;
}

.m-requestcol__premium {
  display: inline-block;
  vertical-align: middle;
  width: 106px;
  height: 17px;
  background: url(/resources/img/img_premium_s.svg) no-repeat 0 0;
  background: url(/resources/img/img_premium_s.svg) no-repeat 0 0;
  background-size: 106px 16px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.m-requestcol__new {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  padding: 4px 8px 3px;
  background-color: #c00;
  font-size: 12px;
  color: #fff;
}

.m-requestcol__lead {
  font-size: 14px;
}

.m-requestcol.m-requestcol--woman {
  border-top: 1px dashed #ccc;
}

.m-requestcol.m-requestcol--woman .m-requestcol__ttl {
  padding-left: 50px;
  line-height: 1.5;
  font-weight: normal;
  font-size: 18px;
}

.m-requestcol.m-requestcol--woman .m-requestcol__ttl > span {
  font-weight: bold;
}

.m-requestcol.m-requestcol--woman .m-requestcol__ttl:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 28px;
  background: url(/resources/img/icon_woman.svg) no-repeat 0 0;
  background-size: 32px 28px;
}

.m-requestcol.m-requestcol--woman .m-requestcol__body {
  width: 307px;
}

@media screen and (max-width: 767px) {
  .m-requestcol {
    display: block;
    padding: 15px 0 20px;
    border-bottom: 1px solid #009ce5;
  }
  .m-requestcol:first-child {
    padding-top: 0;
  }
  .m-requestcol__product {
    width: 100%;
    padding: 0;
  }
  .m-requestcol__body {
    width: 100%;
  }
  .m-requestcol__ttl {
    padding-left: 15px;
    font-size: 18px;
  }
  .m-requestcol__icons {
    margin-bottom: 10px;
  }
  .m-requestcol__new {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    padding: 4px 8px 3px;
    background-color: #c00;
    font-size: 12px;
    color: #fff;
  }
  .m-requestcol__lead {
    font-size: 12px;
  }
  .m-requestcol.m-requestcol--woman {
    padding-bottom: 5px;
  }
  .m-requestcol.m-requestcol--woman .m-requestcol__ttl {
    padding-left: 45px;
    line-height: 1.5;
    font-size: 16px;
  }
  .m-requestcol.m-requestcol--woman .m-requestcol__body {
    width: 100%;
  }
  .m-requestcol.m-requestcol--woman .m-requestcol__body .m-checkcol {
    display: table;
    width: 100%;
    margin: 0 auto;
    padding: 15px;
    box-sizing: border-box;
  }
  .m-requestcol.m-requestcol--woman .m-requestcol__body .m-checkcol > dt {
    display: table-cell;
    vertical-align: middle;
    width: 55%;
    padding-right: 10px;
  }
  .m-requestcol.m-requestcol--woman .m-requestcol__body .m-checkcol > dd {
    display: table-cell;
    vertical-align: middle;
    float: none;
    width: 45%;
  }
}

/* チェックカラム
--------------------------------------------------------*/
.m-checkcol {
  display: table;
  border-top: 1px dashed #ccc;
}

.m-checkcol:first-child {
  border-top: 0;
}

.m-checkcol > dt {
  display: table-cell;
  vertical-align: middle;
  box-sizing: border-box;
  width: 167px;
  padding-right: 12px;
}

.m-checkcol > dt.m-checkcol__person, .m-checkcol > dt.m-checkcol__direct,
.m-checkcol > dt .m-checkcol__person,
.m-checkcol > dt .m-checkcol__direct {
  padding-left: 38px;
  background: url(/resources/img/icon_person.svg) no-repeat 0 50%;
  background-size: 28px 32px;
  font-size: 14px;
}

.m-checkcol > dt.m-checkcol__person > span, .m-checkcol > dt.m-checkcol__direct > span,
.m-checkcol > dt .m-checkcol__person > span,
.m-checkcol > dt .m-checkcol__direct > span {
  font-weight: bold;
  font-size: 18px;
}

.m-checkcol > dt.m-checkcol__direct,
.m-checkcol > dt .m-checkcol__direct {
  background: url(/resources/img/icon_direct.svg) no-repeat 0 50%;
  background-size: 28px 28px;
}

.m-checkcol > dt .m-checkcol__note {
  margin-top: 8px;
  font-weight: normal;
  font-size: 12px;
}

.m-checkcol > dd {
  display: table-cell;
  vertical-align: middle;
  box-sizing: border-box;
}

.m-checkcol__link {
  width: 115px;
  padding: 20px 20px 20px 0;
}

.m-checkcol__link li {
  margin-top: 10px;
}

.m-checkcol__link li:first-child {
  margin-top: 0;
}

.m-checkcol__link .m-btn, .m-checkcol__link .m-btn-back, .m-checkcol__link .m-btn-down {
  width: 115px;
  padding-left: 10px;
  padding-right: 10px;
}

.m-checkcol__request {
  width: 140px;
  padding: 20px 10px;
  background-color: #fff4c7;
  text-align: center;
  font-weight: bold;
}

.m-checkcol__request > input[type=checkbox] {
  display: none;
}

.m-checkcol__request > input[type=checkbox]:checked + .m-checkcol__check:before {
  background-image: url(/resources/img/icon_check.svg);
}

.m-checkcol__check {
  position: relative;
  padding-top: 36px;
}

.m-checkcol__check:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 35px;
  height: 28px;
  margin-left: -14px;
  background-image: url(/resources/img/icon_check_off.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 35px 28px;
}

.m-checkcol.m-checkcol--btn > dt {
  width: 282px;
  padding: 20px 20px 20px 0;
}

.m-checkcol.m-checkcol--btn > dt .m-btn-cv {
  width: 282px;
  padding-left: 12px;
  padding-right: 12px;
}

@media screen and (max-width: 767px) {
  .m-checkcol {
    display: block;
    overflow: hidden;
    margin-top: 15px;
  }
  .m-checkcol:first-child {
    margin-top: 0;
  }
  .m-checkcol > dt {
    display: block;
    width: 100%;
    margin: 10px 0 10px;
    padding: 0;
    line-height: 1.3;
  }
  .m-checkcol > dt.m-checkcol__person, .m-checkcol > dt.m-checkcol__direct,
  .m-checkcol > dt .m-checkcol__person,
  .m-checkcol > dt .m-checkcol__direct {
    padding-top: 1px;
    padding-left: 22px;
    background-size: 14px 16px;
    font-size: 10px;
  }
  .m-checkcol > dt.m-checkcol__person > span, .m-checkcol > dt.m-checkcol__direct > span,
  .m-checkcol > dt .m-checkcol__person > span,
  .m-checkcol > dt .m-checkcol__direct > span {
    font-size: 16px;
  }
  .m-checkcol > dt.m-checkcol__direct:before,
  .m-checkcol > dt .m-checkcol__direct:before {
    background-size: 14px 14px;
  }
  .m-checkcol > dt .m-checkcol__note {
    font-size: 10px;
  }
  .m-checkcol__link {
    float: left;
    width: 55%;
    padding: 0 10px 0 0;
  }
  .m-checkcol__link .m-btn, .m-checkcol__link .m-btn-back, .m-checkcol__link .m-btn-down {
    width: 100%;
  }
  .m-checkcol__tbl {
    min-height: 86px;
    display: table;
    width: 100%;
  }
  .m-checkcol__tbl > li {
    display: table-cell;
    vertical-align: middle;
  }
  .m-checkcol__request {
    float: left;
    width: 45%;
    padding: 18px 10px 13px;
    font-size: 16px;
  }
  .m-checkcol__check {
    padding-top: 28px;
  }
  .m-checkcol__check:before {
    width: 26px;
    height: 21px;
    margin-left: -13px;
    background-size: 26px 21px;
  }
  .m-checkcol.m-checkcol--btn > dt {
    width: 100%;
    margin: 15px 0 0;
    padding: 0;
  }
  .m-checkcol.m-checkcol--btn > dt .m-btn-cv {
    width: 100%;
  }
  .m-checkcol.m-checkcol--btn .m-checkcol__request {
    display: none;
  }
}

/* チェックした商品をまとめて資料請求
--------------------------------------------------------*/
.m-checksubmit {
  margin-top: 30px;
  padding: 20px 20px 16px;
  background-color: #009ce5;
}

.m-checksubmit__inner {
  display: table;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .m-checksubmit {
    margin-top: 20px;
    padding: 15px 15px 10px;
  }
  .m-checksubmit__inner {
    display: block;
  }
}

/* すべてのチェックを外す
--------------------------------------------------------*/
.m-remove-check {
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
}

.m-remove-check > a {
  color: #fff !important;
}

@media screen and (max-width: 767px) {
  .m-remove-check {
    margin-top: 5px;
    font-size: 12px;
  }
}

/* 商品カラム：　保険料見積もり・シミュレーション
--------------------------------------------------------*/
.is-simulation .m-requestcol__product {
  width: 480px;
}

.is-simulation .m-requestcol__body {
  width: 342px;
}

.is-simulation .m-checkcol > dt {
  width: 177px;
}

.is-simulation .m-checkcol__link {
  width: 175px;
}

.is-simulation .m-checkcol__link .m-btn, .is-simulation .m-checkcol__link .m-btn-back, .is-simulation .m-checkcol__link .m-btn-down {
  width: 100%;
}

.is-simulation .m-checkcol.m-checkcol--btn {
  width: 342px;
  padding: 20px 20px 20px 0;
  box-sizing: border-box;
}

.is-simulation .m-checkcol.m-checkcol--btn .m-btn-cv {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .is-simulation .m-requestcol__product {
    width: 100%;
  }
  .is-simulation .m-requestcol__body {
    width: 100%;
  }
  .is-simulation .m-checkcol {
    display: table;
    width: 100%;
    padding-top: 15px;
  }
  .is-simulation .m-checkcol > dt {
    display: table-cell;
    vertical-align: middle;
    box-sizing: border-box;
    width: 50%;
    padding-right: 10px;
  }
  .is-simulation .m-checkcol__link {
    float: none;
    display: table-cell;
    vertical-align: middle;
    width: 50%;
    padding-right: 0;
  }
  .is-simulation .m-checkcol__tbl {
    min-height: inherit;
    display: block;
  }
  .is-simulation .m-checkcol__tbl > li {
    display: block;
  }
  .is-simulation .m-checkcol.m-checkcol--btn {
    width: 100%;
    padding: 15px 0 0;
  }
  .is-simulation .m-checkcol.m-checkcol--btn .m-btn-cv {
    width: 100%;
  }
}

/* オリコン受賞アイコン
--------------------------------------------------------*/
.m-img-oricon {
  width: 64px;
  height: 66px;
}

.m-img-oricon > img {
  width: 64px;
  height: 66px;
}

.m-oricon__lead {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .m-img-oricon {
    width: 50px;
    height: 51px;
  }
  .m-img-oricon > img {
    width: 50px;
    height: 51px;
  }
  .m-oricon__lead {
    font-size: 12px;
  }
}

/* 商品一覧チェックボックスSTOP
--------------------------------------------------------*/
.m-checkcol .m-request-stop{
  background-color: transparent;
}

/*-------------------------------------------------------------------------
 local ： /contact-us/
 お問合せ
--------------------------------------------------------------------------*/
/* お問合せカラム
--------------------------------------------------------*/
.m-contactcol {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 10px 0;
  margin: 20px 0 0 -10px;
}

.m-contactcol__col {
  display: table-cell;
  vertical-align: middle;
  width: 570px;
  padding: 18px 20px;
  border: 1px solid #ccc;
  background-color: #f0f1f2;
  box-sizing: border-box;
  text-align: center;
}

.m-contactcol__col > :first-child {
  margin-top: 0;
}

.m-contactcol__col > :last-child {
  margin-bottom: 0;
}

.m-contactcol__col:first-child {
  margin-right: 10px;
}

.m-contactcol__col.m-contactcol--cv {
  background-color: #009ce5;
  border: 0;
}

.m-contactcol__col a[class^="m-btn"] {
  min-width: 300px;
}

.m-content-main .m-contactcol__col {
  width: 440px;
}

@media screen and (max-width: 767px) {
  .m-contactcol {
    display: block;
    margin: 15px 0 0;
  }
  .m-contactcol__col {
    display: block;
    width: 100% !important;
    margin-top: 10px;
    padding: 13px 15px;
  }
  .m-contactcol__col:first-child {
    margin-top: 0;
  }
  .m-contactcol__col a[class^="m-btn"] {
    min-width: 100%;
  }
}

/* お手続き番号
--------------------------------------------------------*/
.m-number {
  display: table;
  margin: 0 auto;
}

.m-number > span {
  display: table-cell;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  background-color: #009ce5;
  border-radius: 6px;
  text-align: center;
  font-weight: bold;
  color: #fff;
}

.m-number--circle{
  display: table;
  margin: 0 auto;
}

.m-number--circle .num {
  display: table-cell;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  background-color: #009ce5;
  border-radius: 50%;
  text-align: center;
  font-weight: bold;
  color: #fff;
}

/*-------------------------------------------------------------------------
 local ： /words/
 用語集
--------------------------------------------------------------------------*/
/* 用語集テーブル
--------------------------------------------------------*/
.m-tbl--words th, .m-tbl--words td {
  padding: 15px 20px;
}

.m-tbl--words th {
  vertical-align: top;
}

.m-tbl--words td .m-infobox {
  margin-top: 10px;
  font-size: 14px;
}

.m-words-kana {
  font-weight: normal;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .m-tbl--words th, .m-tbl--words td {
    padding: 10px 8px;
  }
  .m-tbl--words td .m-infobox {
    margin-top: 8px;
    padding: 8px 10px;
    font-size: 12px;
  }
  .m-words-kana {
    font-size: 10px;
  }
}

/* 用語集「例」アイコン
--------------------------------------------------------*/
.m-icon-ex {
  display: inline-block;
  margin-right: 6px;
  padding: 0 3px;
  background-color: #009ce5;
  border-radius: 4px;
  vertical-align: top;
  font-weight: normal !important;
  font-size: 14px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .m-icon-ex {
    margin-right: 6px;
    padding: 0 3px;
    font-size: 12px;
  }
}

/*-------------------------------------------------------------------------
 local ： /sitemap/
 その他ページ（サイトマップ）
--------------------------------------------------------------------------*/
/* サイトマップ
--------------------------------------------------------*/
.m-sitemap .m-heading3 {
  padding-left: 30px;
  font-size: 18px;
}

.m-sitemap .m-heading3:after {
  height: 17px;
}

.m-sitemap .m-linklist {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .m-sitemap .m-linklist {
    font-size: 12px;
  }
}

.m-sitemapcol {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
          justify-content: space-between;
}

.m-sitemapcol__col {
  width: 556px;
}

@media screen and (max-width: 767px) {
  .m-sitemapcol__col {
    width: 100%;
  }
}

/* ヘッダー 改修
--------------------------------------------------------*/
.m-header-sp__info,
.m-header-sp__search_open,
body .m-header-sp__search-wrap {
  display: none;
}

@media screen and (max-width: 767px) {
  body .m-header-fix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 901;
  }
  body .m-header-ex #tbgcHeaderLogo a {
    padding: 0;
  }
  body .m-header-ex #tbgcHeaderLogo {
    position: absolute;
    left: -10px;
    right: 0;
    z-index: 901;
    margin: 0 auto;
    width: 115px;
  }
  body .m-header-ex #tbgcHeaderLogo img {
    width: 115px;
  }
  body .m-header-ex .m-header__l {
    overflow: hidden;
  }
  .m-header-sp__info,
  .m-header-sp__search_open {
    display: block;
    float: left;
  }
  .m-header-sp__info a,
  .m-header-sp__search_open a {
    display: block;
  }
  .m-header-sp__info img,
  .m-header-sp__search_open img {
    width: 100%;
    vertical-align: middle!important;
  }

  .m-header-sp__info ul {
    overflow: hidden;
  }
  .m-header-sp__info li {
    float: left;
    width: 37px;
  }
  .m-header-sp__info li:nth-child(n+2) {
    margin-left: 6px;
  }

  .m-header-sp__search_open {
    float: right;
    width: 37px;
    margin-right: 39px;
  }
  .m-header-sp__search_open a {
    display: block;
  }

  body .m-header-sp__search-wrap {
    position: absolute;
    padding: 10px 15px;
    width: 100%;
    background-color: #ccc;
    box-sizing: border-box;
    z-index: 902;
  }
  body .m-header-sp__search-wrap.is-open {
    display: block;
  }
  body .m-header-sp__search {
    position: relative;
  }
  _::-webkit-full-page-media, _:future, :root body .m-header-sp__search form {
    height: 34px;
  }
  body .m-header-sp__searchbox {
    width: 91%;
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-right: 0;
  }
  _::-webkit-full-page-media, _:future, :root body .m-header-sp__searchbox {
    width: 108%;
    font-size: 16px;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scale(0.84);
    transform: scale(0.84);
  }
  body .m-header-sp__searchbtn {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 34px;
    height: 34px;
    background-color: #009ce5;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    box-sizing: border-box;
    padding-top: 10px;
    text-align: center;
  }

  body .m-header-fix .m-gnav {
    overflow: auto;
    height: calc(100vh - 64px);
  }
  body .m-header-fix .m-gnav-sp__close {
    margin-bottom: 40vh;
  }
}

/* TOP SPコンテンツ改修 モジュール
--------------------------------------------------------*/
@media screen and (min-width: 768px) {
  .m-important_info-sp__wrap {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  body .m-container-fix {
    padding-top: 65px;
  }

  .m-important_info-sp__wrap {
    margin-bottom: 20px;
  }
  .m-important_info-sp__wrap.is-open {
    margin-bottom: 15px;
  }
  .m-important_info-sp__ttl {
    position: relative;
    font-size: 16px;
    padding: 5px 40px 4px 15px;
    background-color: #edf6fa;
  }
  .m-important_info-sp__ttl:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 15px;
    width: 7px;
    height: 7px;
    margin-top: -7px;
    border-top: 2px solid #009ce5;
    border-right: 2px solid #009ce5;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .is-open .m-important_info-sp__ttl:before {
    margin-top: -2px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .m-important_info-sp__inner {
    display: none;
  }
  .is-open .m-important_info-sp__inner {
    display: block;
  }
  .m-important_info-sp__wrap .m-ifm-important-info {
    height: 185px;
    margin: 0;
  }

  /* tab */
  .m-tab-guide {
    margin: 0 -15px;
  }
  .m-tab-guide > ul {
    margin-top: 25px;
    margin-bottom: 20px;
    border-bottom-width: 3px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .m-tab-guide > ul > li {
    width: 43.75%;
    margin-bottom: -3px;
  }
  .m-tab-guide > ul > li:nth-child(n+2) {
    margin-left: 10px;
  }
  .m-tab-guide > ul > li > a {
    position: relative;
    font-size: 16px;
    border: 3px solid #ccc;
    border-bottom: 0;
  }
  .m-tab-guide > ul > li > a:after {
    content: '';
    position: absolute;
    width: 105%;
    height: 3px;
    background: #009ce5;
    bottom: 0;
    left: -3px;
  }
  .m-tab-guide > ul > li > a:link,
  .m-tab-guide > ul > li > a:visited {
    color: #333;
    text-decoration: none;
  }
  .m-tab-guide > ul > li:first-child > a {
    border-left-width: 3px;
    border-radius: 7px 7px 0 0;
  }
  .m-tab-guide > ul > li:last-child > a {
    border-radius: 7px 7px 0 0;
  }
  .m-tab-guide > ul > li > a > div {
    padding: 0 5px;
  }
  .m-tab-guide > ul > li > a > div > span {
    padding: 0;
  }
  .m-tab-guide > ul > li > a > div > span:before {
    content: none;
  }
  .m-tab-guide > ul > li > a:hover span {
    text-decoration: none;
  }
  .m-tab-guide > ul > li > a.is-current {
    background-color: #fff;
    border-color: #009ce5;
    color: #333;
  }
  .m-tab-guide > ul > li > a.is-current:after {
    content: none;
  }
  .m-tab-guide .m-tab__body {
    padding: 0 15px;
    margin-top: 20px;
  }

  .m-etc__link ul {
    overflow: hidden;
  }
  .m-etc__link li {
    float: left;
    width: 50%;
    box-sizing: border-box;
    padding-right: 5px;
  }
  .m-etc__link li:nth-child(2n) {
    padding-left: 5px;
    padding-right: 0;
  }
  .m-etc__link li:nth-child(n+3) {
    margin-top: 10px;
  }
  .m-etc__link .m-btn--l,
  .m-etc__link .m-btn-cv {
    padding: 10px 9px 9px;
  }
  .m-etc__link .m-btn-request.m-btn--l,
  .m-etc__link .m-btn-consul.m-btn--l {
    padding: 16px 12px 15px;
  }
  .m-etc__link .m-btn--flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .m-etc__link .m-btn--flex-c {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .m-etc__link .m-btn-consul.m-btn--l > span {
    padding-left: 21px;
  }
  .m-etc__link .m-btn-request.m-btn--l > span {
    padding-left: 26px;
  }
  .m-etc__link .m-btn-request.m-btn--l > span:before {
    margin-top: -8px;
    width: 19px;
    height: 17px;
    background-size: 19px auto;
  }
  .m-etc__link .m-btn-consul.m-btn--l > span {
    padding-left: 21px;
  }
  .m-etc__link .m-btn-consul.m-btn--l > span:before {
    margin-top: -8px;
    width: 14px;
    height: 17px;
    background-size: 14px auto;
  }
  .m-etc__link .m-btn.m-btn--l .m-btn-simulation,
  .m-etc__link .m-btn-cv .m-btn-simulation {
    padding-left: 21px;
  }
  .m-etc__link .m-btn.m-btn--l .m-btn-simulation:before,
  .m-etc__link .m-btn-cv .m-btn-simulation:before {
    margin-top: -8px;
    width: 14px;
    height: 17px;
    background: url(/resources/img/icon_simulation_w.svg) no-repeat 0 0;
    background-size: 14px auto;
  }
  .m-etc__link .m-btn span.m-btn-direct {
    padding-left: 24px;
  }
  .m-etc__link .m-btn span.m-btn-direct:before {
    margin-top: -8px;
    width: 17px;
    height: 17px;
    background-size: 17px auto;
  }

  .m-products__list ul > li:nth-child(n+2) {
    margin-top: 13px;
  }
  .m-products__list .m-acc__ctl-r {
    text-align: center;
    border: 1px solid #b3b3b3;
    box-shadow: 0 3px 0 0 #b3b3b3;
    background-color: #fff;
    border-radius: 6px;
  }
  .m-products__list .m-acc__ctl-r,
  .m-products__list .m-btn--l {
    padding: 13px 12px 12px;
    font-size: 16px;
    line-height: 1.3;
    font-weight: bold;
  }
  .m-products__list .is-open .m-acc__ctl-r {
    text-align: center;
    border-bottom: 0 none;
    box-shadow: none;
    border-radius: 6px 6px 0 0;
  }
  .m-products__list .m-acc__ctl-r:before {
    top: 50%;
    margin-top: -10px;
    right: 10px;
  }
  .m-products__list .m-acc__ctl-r > span:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -1px;
  }
  .m-products__list .m-acc__ctl-r > span:after {
    top: 50%;
    right: 15px;
    margin-top: -1px;
  }
  .m-products__list .m-products__icn {
    position: relative;
    padding-left: 30px;
  }
  .m-products__list .m-products__icn:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 22px;
    height: 22px;
    margin-top: -11px;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 22px auto;
  }
  .m-products__medical .m-products__icn:before {
    background-image: url(/resources/img/icon_product_medical.svg);
  }
  .m-products__cancer .m-products__icn:before {
    background-image: url(/resources/img/icon_product_cancer.svg);
  }
  .m-products__life .m-products__icn:before {
    background-image: url(/resources/img/icon_product_life.svg);
  }
  .m-products__list .m-btn span {
    display: inline-block;
    position: relative;
    padding-left: 30px;
  }
  .m-products__list .m-btn > span:before {
    content: "";
    display: inline-block;
    top: 50%;
    border: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    background-repeat: no-repeat;
  }
  .m-products__list .m-btn span.m-btn-marketlink:before {
    margin-top: -12px;
    width: 23px;
    height: 24px;
    background-size: 23px auto;
  }
  .m-products__list .m-btn span.m-btn-child:before {
    margin-top: -12px;
    width: 23px;
    height: 24px;
    background-size: 23px auto;
    background-image: url(/resources/img/icon_product_child.svg);
  }
  .m-products__list .m-btn span.m-btn-corporate:before {
    margin-top: -10px;
    width: 24px;
    height: 20px;
    background-image: url(/resources/img/icon_corporate.svg);
    background-size: 24px auto;
  }
  .m-products__other .m-products__icn:before {
    background-image: url(/resources/img/icon_product_other.svg);
  }

  .m-products__list .m-acc.is-open .m-acc__cont {
    padding: 0 10px 15px;
    margin-top: 0;
    background: #fff;
    border: 1px solid #b3b3b3;
    border-top: 0 none;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 3px 0 0 #b3b3b3;
  }
  .m-products__list .m-panel2__item {
    margin: 0;
    border: 0 none;
    border-top: solid 1px #ccc;
    border-radius: 0;
    box-shadow: none;
  }
  .m-products__list .m-panel2__item:last-of-type {
    border-bottom: solid 1px #ccc;
  }
  .m-products__list .m-panel2__item:last-child {
    border-bottom: 0 none;
  }
  .m-products__list .m-panel2__img {
    padding: 15px 0 15px 5px;
  }
  .m-products__list .m-panel2__body {
    padding: 15px 5px 15px 10px;
    line-height: 1.41;
  }

  .m-contractor span.m-btn-contractor {
    padding-left: 25px;
  }
  .m-contractor .m-btn span.m-btn-contractor:before {
    margin-top: -8px;
    width: 18px;
    height: 16px;
    background-size: 18px auto;
  }
}

/*-------------------------------------------------------------------------
 local ： /advice/
 専門家に聞いてみよう！
--------------------------------------------------------------------------*/
/* 扉ページ
--------------------------------------------------------*/
.m-idxsolbox__ttl.is-advice {
  background-color: #efa71b;
}

.m-idxsolbox__ttl.is-interview {
  background-color: #f08bce;
}

.m-eventpanel__small .m-eventpanel__ttl > span{
  font-size: 18px;
}

@media screen and (max-width: 767px){
  .m-eventpanel__small .m-eventpanel__ttl > span {
    font-size: 13px;
  }
  .m-idxsolbox__ttl.is-interview {
    height: 62px;
  }
  .m-idxsolbox__ttl.is-interview:after {
    border-width: 31px 15px 31px 0;
  }
}

/* メインタイトル
--------------------------------------------------------*/
.m-advheading {
  position: relative;
  width: 100%;
  border: 1px solid #d5d5d5;
  box-sizing: border-box;
  background-color: #fff;
}

.m-advheading__body {
  vertical-align: middle;
  padding: 36px 30px 10px;
  box-sizing: border-box;
}

.m-advheading__cate {
  position: absolute;
  top: 0;
  left: -1px;
}

.m-advheading__cate > p {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  height: 34px;
  padding: 7px 20px 0 15px;
  font-size: 14px;
  color: #fff;
}

.m-advheading__cate > p:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 17px 10px 17px 0;
  border-right-color: #fff;
}

.m-advheading__ttl {
  padding-top: 6px;
  background-color: #fff;
  line-height: 1.3;
  font-weight: bold;
  font-size: 28px;
}

span.m-advheading__sub {
  display: block;
  line-height: 1.5;
  font-size: 18px;
}

.is-advice .m-advheading__cate > p {
  background-color: #efa71b;
}

.is-interview .m-advheading__cate > p {
  background-color: #f08bce;
}

@media screen and (max-width: 767px) {
  .m-advheading {
    display: block;
    width: 100%;
  }
  .m-advheading__body {
    width: 100%;
    padding: 36px 10px 10px;
  }
  .m-advheading__cate {
    left: 0;
  }
  .m-advheading__ttl {
    font-size: 22px;
  }
  span.m-advheading__sub {
    margin: 5px 0 0 0;
    font-size: 16px;
  }
}

/* コンテンツエリア
--------------------------------------------------------*/
.m-advcont {
  margin-top: 20px;
  padding: 20px;
  background: url(/solution/img/bg_solcont.png) repeat 0 0;
}

.m-advcont > :first-child {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .m-advcont {
    margin-top: 15px;
    padding: 10px;
  }
}

/* 概要テキスト
--------------------------------------------------------*/
.m-advintro{
  background-color: #fff;
  padding: 20px;
}

.m-advice-area.is-advice .m-advintro {
  border: 1px solid #efa71b;
}

.m-advice-area .is-interview .m-advintro {
  border: 1px solid #f08bce;
}

/* 目次
--------------------------------------------------------*/
.m-advindex {
  margin-top: 30px;
}
.m-advindex .m-advheading__cate {
  top: 10px;
}

.m-advindex .m-advheading__body {
  padding-top: 40px;
  padding-bottom: 30px;
}

.m-advindex .m-linklist > li > a:after {
  top: 8px;
  left: 5px;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.m-advindex .m-linklist > li > .m-linklist > li > a:before {
  content: "";
  background-color: transparent;
}
.m-advindex .m-linklist > li > .m-linklist > li > a:after {
  display: none;
}

@media screen and (max-width: 767px) {
  .m-advindex {
    margin-top: 20px;
  }

  .m-advindex .m-advheading__body {
    padding-top: 45px;
    padding-bottom: 20px;
  }

  .m-advindex .m-linklist > li > a:after {
    top: 6px;
    left: 4px;
  }
}


/* advbox
--------------------------------------------------------*/
.m-advbox {
  background-color: #fff;
  border: 1px solid #d5d5d5;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, .1);
  margin-top: 30px;
}

.m-advbox__ttl {
  position: relative;
  box-sizing: border-box;
  min-height: 75px;
  padding: 20px 30px 15px 20px;
  line-height: 1.3;
  font-weight: bold;
  font-size: 28px;
}

.m-advbox__body {
  margin: 0 5px;
  padding: 20px 15px;
  background-repeat: repeat-x;
  background-position: 0 0;
  background-image: url(/solution/basic/img/bg_solbox_ttl.svg);
}

.m-advbox__body > :first-child {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .m-advbox {
    margin-top: 20px;
  }

  .m-advbox__ttl {
    min-height: inherit;
    padding: 15px 6px 15px 15px;
    line-height: 1.5;
    font-size: 16px;
  }

  .m-advbox__body {
    padding: 15px 10px;
  }

}
/* インタビュー記事
--------------------------------------------------------*/
.is-interview .m-advbox__body{
  background-image: url(/solution/life-event/img/bg_solbox_ttl.svg);
}

.is-interview .m-box{
  margin-top: 0;
  border: none;
}

.is-interview .m-interview-profile .m-media-l .m-media__thum{
  margin-bottom: 0;
  padding-top: 10px;
}

.is-interview .m-interview-profile .m-media-l .m-media__thum >img{
  min-width: 60px;
  width: 100%!important;
}

.is-interview .m-media-l .m-line-btm{
  padding-bottom: 8px;
}

.is-interview .m-list-numnote > li {
  padding-left: 4em;
  text-indent: -4em;
}

.is-interview .m-advbox .m-block-s p{
  text-indent: -3em;
  padding-left: 50px;
}

.is-interview .m-advbox .m-block-s .m-list-numnote{
  padding-left: 42px;
}

.m-advice-area .m-sollinks > dt {
  background-color: #efa71b;
}

.m-advice-area .m-sollinks > dd {
  border: 2px solid #efa71b;
}

@media screen and (max-width: 768px) {
  .is-interview .m-advbox .m-block-s p{
    padding-left: 36px;
  }
  .is-interview .m-advbox .m-block-s .m-list-numnote{
    padding-left: 32px;
  }
}


/* 執筆ライタープロフィール
--------------------------------------------------------*/
 .m-advice-area .m-advicebox {
  margin-top: 30px;
  padding-top: 30px;
  border: 1px solid #d5d5d5;
  border-top: 0;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, .1);
  position: relative;
}

.m-advice-area .m-advicebox:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 848px;
  height: 30px;
  background: url(/solution/img/bg_advicebox_top.svg) repeat-x 3px 0;
  background-size: 24px 30px;
}

.m-advice-area .m-advicebox .m-media-l{
  background-color: #fff;
  padding-right: 10px;
}

.m-advice-area .m-advicebox .m-media-l .m-media__thum > img {
  width: 100% !important;
}
.m-advice-area .m-advicebox .m-writer-profile{
  overflow: hidden;
  padding-bottom: 10px;
}
.m-advice-area .m-advicebox .m-line-btm{
  padding-bottom: 1px;
}

@media screen and (max-width: 768px) {
  .m-advicebox {
    margin-top: 20px;
  }
  .m-advicebox:before {
    width: 100% !important;
  }
  .m-advicebox__inner {
    display: block;
    width: 100%;
    padding: 0 15px 15px;
  }
  .m-advice-area .m-advicebox .m-media-l{
    padding: 10px;
  }

  .m-advice-area .m-writer-profile{
    clear: both;
    padding-top: 10px;
    padding-bottom: 0;
  }
}

/* 2020/10/06  NEW PAGE */
.m-idxheading1.is-anshu .m-idxheading1__bg {
  background-image: url(/kojin/goods_kakei/anshu/img/bg_h1_anshu.png);
}
.m-idxheading1.is-anshu .m-idxheading1__bginner {
  background: url(/kojin/goods_kakei/anshu/img/img_anshu.png) no-repeat 680px bottom;
  background-size: 141px auto;
}
.m-idxheading1.is-kakeho .m-idxheading1__bg {
  background-image: url(/kojin/goods_kakei/kakeho/img/bg_h1_kakeho.png);
}
.m-idxheading1.is-kakeho .m-idxheading1__bginner {
  background: url(/kojin/goods_kakei/kakeho/img/img_kakeho.png) no-repeat 730px bottom;
  background-size: 121px auto;
}
.m-dropmenu__product > li{
  display:flex;
  width: inherit;
  min-width: 110px;
}
.m-dropmenu__product > li > a.m-dropmenu__kakei {
  padding-top: 54px;
  font-size:14px;
}
.m-dropmenu__product > li > a.m-dropmenu__kakei:before {
  top: 16px;
  background-image: url(/resources/img/icon_product_kakei_s.svg);
}
.m-mainproduct > li > a.m-mainproduct__kakei {
  padding-top: 71px;
  padding-bottom: 14px;
  font-size:25px;
}
.m-mainproduct > li > a.m-mainproduct__kakei:before {
  background-image: url(/resources/img/icon_product_kakei.svg);
  top: 17px;
}
.m-mainproduct > li {
  width: inherit;
  display: flex;
  min-width: 198px;
}
.m-product-nav > li {
  display: flex;
}
.m-product-nav > li a {
  display: flex;
  justify-content:center;
  padding: 47px 4px 12px;
  min-width: 143px;
}
.m-product-nav > li > a.m-product-nav__kakei:before {
  background-image: url(/resources/img/icon_product_kakei_s.svg);
}
.m-heading2#ttl_kakei .m-heading2__icon:before {
  background-image: url(/resources/img/icon_product_kakei.svg);
  top: -4px;
}
.m-simtotal__typettl__compact{
  padding-left:5px;
  padding-right:5px;
}
.m-productbtn-goods_kakei{
  background-image: url(/resources/img/icon_product_kakei.svg);
}
.m-productbtn-marketlink{
  background-image: url(/resources/img/icon_shisankeise.svg);
}
.m-premiumcol__col.is-kakeho {
  background-image: url(/kojin/goods_kakei/kakeho/img/bg_h1_kakeho.png);
}
.m-premiumcol__col.is-kakeho .m-premiumcol__ttl {
  background-image: url(/kojin/goods_kakei/kakeho/img/img_kakeho.png);
  background-size: 131px auto;
}

.m-premiumcol__col.is-anshu {
  background-image: url(/kojin/goods_kakei/anshu/img/bg_h1_anshu.png);
}
.m-premiumcol__col.is-anshu .m-premiumcol__ttl {
  background-image: url(/kojin/goods_kakei/anshu/img/img_anshu.png);
  background-size: 160px auto;
}

.m-heading1.m-ttl-goods_kakei {
  padding-left: 75px;
  background: #f0f1f2 url(/resources/img/icon_product_kakei.svg) no-repeat 20px 11px;
  background-size: 40px 40px;
}

.m-list-numnote.m-large-list > li{
  padding-left: 3.1em;
  text-indent: -2.9em;
}

@media screen and (min-width: 768px){
  .m-productbtn > li.m-productbtn__sub.m-productbtn__full-center{
    width:100%;
  }
  .m-productbtn > li.m-productbtn__sub.m-productbtn__full-center > ul{
    width:100%;
    display:flex;
    align-items:stretch;
    flex-wrap:wrap;
    justify-content:space-between;
  }
  .m-productbtn > li.m-productbtn__sub.m-productbtn__full-center > ul > li{
    margin-top:0;
    width:calc(33.3333% - 6px);
    display: flex;
  }
  .m-productbtn > li.m-productbtn__sub.m-productbtn__full-center > ul > li .m-btn{
    width:100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1.4;
  }
  .m-productbtn > li.m-productbtn__sub.m-productbtn__full-center > ul > li .m-btn span.m-btn-corporate{
    padding-left: 48px;
  }
}

@media screen and (max-width: 767px){
  .m-products__kakei .m-products__icn:before {
    background-image: url(/resources/img/icon_product_kakei.svg);
  }
  .m-heading2#ttl_kakei .m-heading2__icon:before {
    top: 1px;
  }
  
  .m-premiumcol__col.is-kakeho .m-premiumcol__ttl {
    background-size: 85px auto;
  } 
  .m-premiumcol__col.is-anshu .m-premiumcol__ttl {
    background-size: 105px auto;
  }
  .m-heading1.m-ttl-goods_kakei {
    padding-left: 38px;
    background-position: 10px 17px;
    background-size: 20px auto;
  }
  
  .is-kojin-osusume-slider.m-panel2.js-slider-panel2 .slick-dots li,
  .is-kojin-osusume-slider.m-panel2.js-slider-panel2 .slick-dots li button,
  .is-kojin-osusume-slider.m-panel2.js-slider-panel2 .slick-dots li button::before{
    width:9px;
    height:9px;
    border-radius:100%;
  }
  
} 
 /* 2020/10/06  NEW PAGE */  